diff --git a/CMIP7_VARIABLE_MAPPING_README.md b/CMIP7_VARIABLE_MAPPING_README.md new file mode 100644 index 00000000..76e372e4 --- /dev/null +++ b/CMIP7_VARIABLE_MAPPING_README.md @@ -0,0 +1,269 @@ +# CMIP7 Variable Mapping Workflow + +This directory contains tools for mapping CMIP7 variables to model-specific variables (FESOM, OIFS, REcoM, LPJ-Guess) for use in the pycmor CMORization pipeline. + +## Overview + +The workflow provides a user-friendly Excel interface for collaborative variable mapping, which can be converted to YAML for programmatic use in pycmor. + +## Files + +### Data Files + +- **`dreq_v1.2.2.2.json`** - CMIP7 Data Request with experiments and priority levels (required by create script) +- **`dreq_v1.2.2.2_metadata.json`** - CMIP7 variable metadata with compound names, units, standard names (required by create script) +- **`cmip7_variable_mapping.xlsx`** - Excel file with pre-populated CMIP7 variables (1,974 compound names covering 987 unique variables) + +### Scripts + +- **`create_cmip7_variable_mapping.py`** - Script to generate the Excel file from CMIP7 data request JSON files +- **`excel_to_yaml.py`** - Script to convert filled Excel to YAML format + +### Output + +- **`cmip7_variable_mapping.yaml`** - Generated YAML file for use in pycmor (created after filling Excel) + +## Quick Start + +### 1. Create the Excel File (Already Done) + +The Excel file has been created with 1,974 compound names covering 987 unique CMIP7 variables: + +```bash +conda run -n pycmor-dev python create_cmip7_variable_mapping.py +``` + +**Note:** The script requires `dreq_v1.2.2.2.json` and `dreq_v1.2.2.2_metadata.json` to be present in the same directory. + +**What are compound names?** +Each CMIP7 variable can appear in multiple contexts with different frequencies, regions, or methods. For example: +- `atmos.tas.tavg-h2m-hxy-u.day.GLB` (daily mean) +- `atmos.tas.tavg-h2m-hxy-u.mon.GLB` (monthly mean) +- `atmos.tas.tmax-h2m-hxy-u.day.GLB` (daily maximum) + +Each compound name may require different preprocessing, so they are listed separately in the Excel file. + +### 2. Fill in the Excel File + +Open `cmip7_variable_mapping.xlsx` in Excel or LibreOffice: + +**Column Structure:** + +| Color | Columns | Description | Action | +|-------|---------|-------------|--------| +| ⬜ Gray | `compound_name`, `table`, `variable_id` | Unique identifiers | **DO NOT EDIT** | +| šŸ”µ Blue | `standard_name`, `units`, `frequency`, `modeling_realm`, `region`, `method_level_grid`, `dreq_priority` | CMIP7 metadata (pre-populated) | **DO NOT EDIT** | +| 🟢 Green | `fesom`, `oifs`, `recom`, `lpj_guess` | Model-specific variable names | **Fill in as needed** | +| 🟔 Yellow | `preprocess`, `formula`, `comment`, `status`, `user_priority` | Processing information | **Fill in as needed** | + +**Example Entries:** + +| variable_id | fesom | oifs | recom | lpj_guess | preprocess | status | +|-------------|-------|------|-------|-----------|------------|--------| +| tas | | t2m | | | daily_mean | completed | +| thetao | temp | | | | direct | completed | +| sos | salt | | | | surface_extraction | in_progress | +| so | salt | | | | direct | completed | +| fgco2 | | | co2_flux | | direct | completed | + +**Dropdown Values:** +- **status**: `pending`, `in_progress`, `completed`, `not_applicable` +- **user_priority**: `high`, `medium`, `low` (your implementation priority) + +**CMIP7 Data Request Priority Levels (read-only):** +- **dreq_priority**: Shows the priority level from CMIP7 experiments + - **Core** (131 variables): Essential for all CMIP7 experiments + - **High** (1,038 variables): High priority for most experiments + - **Medium** (469 variables): Medium priority + - **Low** (112 variables): Lower priority + - Some variables have multiple priorities across different experiments (e.g., "High, Medium") + +### 3. Convert Excel to YAML + +After filling in the Excel file, convert it to YAML: + +```bash +# Convert all variables +conda run -n pycmor-dev python excel_to_yaml.py + +# Or filter by status (e.g., only completed mappings) +conda run -n pycmor-dev python excel_to_yaml.py --filter-status completed +``` + +This creates `cmip7_variable_mapping.yaml` for use in pycmor. + +## Excel File Details + +### Pre-populated CMIP7 Metadata + +The following columns are automatically filled from the CMIP7 data request: + +- **variable_id**: CMIP7 variable name (e.g., `tas`, `thetao`, `pr`) +- **standard_name**: CF standard name +- **long_name**: Descriptive name +- **units**: Physical units +- **frequency**: Temporal frequency (e.g., `mon`, `day`, `6hr`) +- **modeling_realm**: Realm (e.g., `atmos`, `ocean`, `land`, `aerosol`) + +### User Input Columns + +#### Model Mappings (Green) +- **fesom**: FESOM ocean model variable name +- **oifs**: OIFS atmosphere model variable name +- **recom**: REcoM biogeochemistry model variable name +- **lpj_guess**: LPJ-Guess land model variable name + +#### Processing Information (Yellow) +- **preprocess**: Preprocessing method + - Examples: `direct`, `avg24h`, `surface_extraction`, `vertical_integration` +- **formula**: Calculation formula for derived variables + - Example: `var1 + var2`, `sqrt(uas**2 + vas**2)` +- **comment**: Additional notes +- **status**: Mapping status (dropdown) +- **priority**: Priority level (dropdown) + +## YAML Output Format + +The generated YAML file has the following structure: + +```yaml +cmip7_variables: + tas: + standard_name: air_temperature + long_name: Near-Surface Air Temperature + units: K + frequency: day, mon + modeling_realm: atmos + model_mappings: + oifs: t2m + processing: + preprocess: daily_mean + status: completed + + thetao: + standard_name: sea_water_potential_temperature + long_name: Sea Water Potential Temperature + units: degC + frequency: mon + modeling_realm: ocean + model_mappings: + fesom: temp + processing: + preprocess: direct + status: completed +``` + +## Using the YAML in pycmor + +```python +import yaml + +# Load the variable mapping +with open('cmip7_variable_mapping.yaml', 'r') as f: + var_mapping = yaml.safe_load(f) + +variables = var_mapping['cmip7_variables'] + +# Get FESOM mapping for a CMIP7 variable +if 'thetao' in variables: + fesom_var = variables['thetao']['model_mappings']['fesom'] + preprocess = variables['thetao']['processing']['preprocess'] + print(f"CMIP7 'thetao' -> FESOM '{fesom_var}' (method: {preprocess})") + +# Get all ocean variables mapped to FESOM +ocean_fesom_vars = { + var_id: var_info + for var_id, var_info in variables.items() + if 'ocean' in var_info.get('modeling_realm', '') + and 'model_mappings' in var_info + and 'fesom' in var_info['model_mappings'] +} + +print(f"Found {len(ocean_fesom_vars)} ocean variables mapped to FESOM") +``` + +## Workflow for Collaborative Mapping + +1. **Initial Setup** (Done) + - Excel file created with all CMIP7 variables + - Shared in pycmor repository + +2. **Collaborative Filling** + - Team members fill in their model-specific mappings + - Use status column to track progress + - Use priority column for important variables + +3. **Version Control** + - Commit both Excel and YAML files to repository + - Track changes via Git + - Use pull requests for review + +4. **Continuous Updates** + - As mappings are completed, update status + - Regenerate YAML file + - Integrate into pycmor workflows + +## Data Source + +The CMIP7 variable list is extracted from: +- **`dreq_v1.2.2.2_metadata.json`** - CMIP7 Data Request metadata (compound names, units, standard names) +- **`dreq_v1.2.2.2.json`** - Full CMIP7 Data Request (experiments and priority levels) +- Total: **1,974 compound names** covering **987 unique CMIP7 variables** + +### Fetching the Data Request Files + +The JSON files are included in this repository, but you can also fetch them directly using the CMIP7 Data Request API: + +```bash +pip install CMIP7-data-request-api +export_dreq_lists_json -a -m dreq_v1.2.2.2_metadata.json v1.2.2.2 dreq_v1.2.2.2.json +``` + +This will download the latest version of the CMIP7 Data Request files. + +## Preprocessing Method Examples + +Common preprocessing methods to use: + +- **`direct`**: Direct mapping, no transformation +- **`avg24h`**: 24-hour average +- **`surface_extraction`**: Extract surface level from 3D field +- **`vertical_integration`**: Integrate over vertical levels +- **`time_mean`**: Temporal mean +- **`spatial_mean`**: Spatial mean +- **`regrid`**: Regrid to different grid +- **`unit_conversion`**: Convert units + +## Tips + +1. **Leave empty if not applicable**: If a CMIP7 variable doesn't apply to your model, leave the model column empty +2. **Use comments**: Add notes about special cases or uncertainties +3. **Set priorities**: Mark high-priority variables for experiments +4. **Track status**: Update status as you progress +5. **Collaborate**: Multiple people can work on different realms simultaneously + +## Regenerating the Excel File + +If you need to regenerate the Excel file (e.g., after CMIP7 data request update): + +```bash +# Backup your current mappings +cp cmip7_variable_mapping.xlsx cmip7_variable_mapping_backup.xlsx + +# Regenerate from updated data request +conda run -n pycmor-dev python create_cmip7_variable_mapping.py + +# Merge your previous mappings back in (manual step) +``` + +## Questions or Issues + +For questions about: +- **CMIP7 variables**: Check the CMIP7 data request documentation +- **Model variables**: Contact the respective model team +- **pycmor integration**: Open an issue in the pycmor repository + +## Related Files + +- Conversation history: `cmip7_variable_model_mapping.md` +- CMIP7 data request: `dreq_v1.2.2.2.json`, `dreq_v1.2.2.2_metadata.json` diff --git a/cmip7_variable_mapping.xlsx b/cmip7_variable_mapping.xlsx new file mode 100644 index 00000000..51854ac3 Binary files /dev/null and b/cmip7_variable_mapping.xlsx differ diff --git a/create_cmip7_variable_mapping.py b/create_cmip7_variable_mapping.py new file mode 100644 index 00000000..8ca06735 --- /dev/null +++ b/create_cmip7_variable_mapping.py @@ -0,0 +1,280 @@ +#!/usr/bin/env python3 +""" +Create Excel file with CMIP7 variables pre-populated from data request. +Uses compound names as unique identifiers to handle duplicate variable names +across different contexts (frequency, region, method, etc.). +""" + +import json + +import pandas as pd + +print("=" * 80) +print("CREATING CMIP7 VARIABLE MAPPING EXCEL FILE") +print("=" * 80) + +# Load the data request metadata +print("\nLoading CMIP7 Data Request JSON files...") +with open("dreq_v1.2.2.2_metadata.json", "r") as f: + dreq_metadata = json.load(f) + +with open("dreq_v1.2.2.2.json", "r") as f: + dreq_full = json.load(f) + +compound_names = dreq_metadata.get("Compound Name", {}) +print(f"Total compound names found: {len(compound_names)}") + +# Build priority mapping from the full dreq file +print("\nBuilding priority mapping from experiments...") +priority_map = {} # compound_name -> set of priorities +experiments = dreq_full.get("experiment", {}) + +for exp_name, exp_data in experiments.items(): + for priority_level in ["Core", "High", "Medium", "Low"]: + if priority_level in exp_data: + for compound_name in exp_data[priority_level]: + if compound_name not in priority_map: + priority_map[compound_name] = set() + priority_map[compound_name].add(priority_level) + +print(f"Priority mappings found for {len(priority_map)} compound names") + +# Create DataFrame with compound names as the primary key +print("\nCreating DataFrame with compound names...") +data = [] + +for compound_name, details in sorted(compound_names.items()): + # Parse compound name: realm.variable.method-level-grid-type.frequency.region + parts = compound_name.split(".") + + if len(parts) >= 2: + realm = parts[0] + variable = parts[1] + method_info = parts[2] if len(parts) > 2 else "" + frequency = parts[3] if len(parts) > 3 else "" + region = parts[4] if len(parts) > 4 else "GLB" + + # Extract table name (typically realm + frequency) + # Common CMIP tables: Amon, Omon, Lmon, day, 6hr, etc. + table = f"{realm[0].upper()}{frequency}" if frequency else realm + + # Get priority levels for this compound name + priorities = priority_map.get(compound_name, set()) + # Convert to sorted string (Core > High > Medium > Low) + priority_order = ["Core", "High", "Medium", "Low"] + priority_str = ", ".join(p for p in priority_order if p in priorities) + + row = { + # Primary identifier + "compound_name": compound_name, + "table": table, + "variable_id": variable, + # CMIP7 metadata (pre-populated) + "standard_name": ( + details.get("standard_name", "") if isinstance(details, dict) else "" + ), + "units": details.get("units", "") if isinstance(details, dict) else "", + "frequency": frequency, + "modeling_realm": realm, + "region": region, + "method_level_grid": method_info, + "dreq_priority": priority_str, # CMIP7 Data Request priority levels + # Model-specific mappings (empty - for user input) + "fesom": "", + "oifs": "", + "recom": "", + "lpj_guess": "", + # Processing information (empty - for user input) + "preprocess": "", + "formula": "", + "comment": "", + "status": "pending", + "user_priority": "", # User-defined priority for implementation + } + data.append(row) + +df = pd.DataFrame(data) + +print(f"Total compound names (rows): {len(df)}") +print(f"Unique variable names: {df['variable_id'].nunique()}") +print(f"Unique tables: {df['table'].nunique()}") + +# Create Excel file with formatting +output_file = "cmip7_variable_mapping.xlsx" +print(f"\nWriting to {output_file}...") + +with pd.ExcelWriter(output_file, engine="openpyxl") as writer: + df.to_excel(writer, sheet_name="Variable Mapping", index=False) + + # Get the worksheet + worksheet = writer.sheets["Variable Mapping"] + + # Set column widths for better readability + column_widths = { + "A": 50, # compound_name + "B": 15, # table + "C": 20, # variable_id + "D": 40, # standard_name + "E": 15, # units + "F": 12, # frequency + "G": 20, # modeling_realm + "H": 12, # region + "I": 30, # method_level_grid + "J": 25, # dreq_priority + "K": 20, # fesom + "L": 20, # oifs + "M": 20, # recom + "N": 20, # lpj_guess + "O": 30, # preprocess + "P": 40, # formula + "Q": 50, # comment + "R": 15, # status + "S": 15, # user_priority + } + + for col, width in column_widths.items(): + worksheet.column_dimensions[col].width = width + + # Freeze the header row and first 3 columns + worksheet.freeze_panes = "D2" + + # Add data validation for status column + from openpyxl.worksheet.datavalidation import DataValidation + + status_validation = DataValidation( + type="list", + formula1='"pending,in_progress,completed,not_applicable"', + allow_blank=True, + ) + status_validation.error = "Please select from the dropdown list" + status_validation.errorTitle = "Invalid Status" + worksheet.add_data_validation(status_validation) + status_validation.add(f"R2:R{len(df)+1}") + + # Add data validation for user_priority column + user_priority_validation = DataValidation( + type="list", formula1='"high,medium,low"', allow_blank=True + ) + user_priority_validation.error = "Please select from the dropdown list" + user_priority_validation.errorTitle = "Invalid Priority" + worksheet.add_data_validation(user_priority_validation) + user_priority_validation.add(f"S2:S{len(df)+1}") + + # Style the header row + from openpyxl.styles import Alignment, Font, PatternFill + + header_fill = PatternFill( + start_color="366092", end_color="366092", fill_type="solid" + ) + header_font = Font(bold=True, color="FFFFFF") + header_alignment = Alignment(horizontal="center", vertical="center", wrap_text=True) + + for cell in worksheet[1]: + cell.fill = header_fill + cell.font = header_font + cell.alignment = header_alignment + + # Color code different column groups + # Identifier columns (light gray) + id_fill = PatternFill(start_color="F0F0F0", end_color="F0F0F0", fill_type="solid") + for row in range(2, len(df) + 2): + for col in ["A", "B", "C"]: + worksheet[f"{col}{row}"].fill = id_fill + + # CMIP7 metadata columns (light blue) + cmip7_fill = PatternFill( + start_color="E7F3FF", end_color="E7F3FF", fill_type="solid" + ) + for row in range(2, len(df) + 2): + for col in ["D", "E", "F", "G", "H", "I", "J"]: + worksheet[f"{col}{row}"].fill = cmip7_fill + + # Model mapping columns (light green) + model_fill = PatternFill( + start_color="E8F5E9", end_color="E8F5E9", fill_type="solid" + ) + for row in range(2, len(df) + 2): + for col in ["K", "L", "M", "N"]: + worksheet[f"{col}{row}"].fill = model_fill + + # Processing columns (light yellow) + process_fill = PatternFill( + start_color="FFF9E6", end_color="FFF9E6", fill_type="solid" + ) + for row in range(2, len(df) + 2): + for col in ["O", "P", "Q", "R", "S"]: + worksheet[f"{col}{row}"].fill = process_fill + +print(f"\nāœ“ Excel file created successfully: {output_file}") +print(f" - Total compound names (rows): {len(df)}") +print(f" - Unique variable names: {df['variable_id'].nunique()}") +print(f" - Total columns: {len(df.columns)}") +print(" - Identifier columns (gray): 3 (compound_name, table, variable_id)") +print(" - CMIP7 metadata columns (blue): 7 (includes dreq_priority)") +print(" - Model mapping columns (green): 4") +print(" - Processing columns (yellow): 5 (includes user_priority)") +print(" - Header row and first 3 columns frozen for easier navigation") + +# Show some statistics +print("\n" + "=" * 80) +print("STATISTICS") +print("=" * 80) + +print("\nVariables with multiple compound names (top 10):") +var_counts = df["variable_id"].value_counts() +for var, count in var_counts.head(10).items(): + print(f" {var}: {count} compound names") + +print("\nFrequency distribution:") +freq_counts = df["frequency"].value_counts() +for freq, count in freq_counts.head(10).items(): + print(f" {freq}: {count}") + +print("\nRealm distribution:") +realm_counts = df["modeling_realm"].value_counts() +for realm, count in realm_counts.items(): + print(f" {realm}: {count}") + +print("\nData Request Priority distribution:") +priority_counts = df["dreq_priority"].value_counts() +for priority, count in priority_counts.head(10).items(): + print(f" {priority}: {count}") + +print("\n" + "=" * 80) +print("USAGE INSTRUCTIONS") +print("=" * 80) +print( + """ +1. Open cmip7_variable_mapping.xlsx in Excel or LibreOffice +2. Identifier columns (gray) show the unique compound name - DO NOT EDIT + - compound_name: Full identifier (realm.variable.method.frequency.region) + - table: CMIP table name + - variable_id: CMIP7 variable name +3. CMIP7 metadata columns (blue) are pre-populated - DO NOT EDIT + - dreq_priority: CMIP7 Data Request priority (Core, High, Medium, Low) +4. Fill in model-specific variable names in green columns: + - fesom: FESOM variable name + - oifs: OIFS variable name + - recom: REcoM variable name + - lpj_guess: LPJ-Guess variable name +5. Fill in processing information in yellow columns: + - user_priority: Your implementation priority (high, medium, low) +6. Use filters to work on specific: + - Variables (e.g., all 'tas' entries) + - Frequencies (e.g., only 'mon') + - Realms (e.g., only 'ocean') + - Tables (e.g., only 'Omon') + - Priorities (e.g., only 'Core' or 'High') + +Example: The variable 'tas' appears in multiple compound names: + - atmos.tas.tavg-h2m-hxy-u.day.GLB (daily) + - atmos.tas.tavg-h2m-hxy-u.mon.GLB (monthly) + - atmos.tas.tmax-h2m-hxy-u.day.GLB (daily maximum) + +Each needs to be mapped separately as they may require different preprocessing. +""" +) + +print("=" * 80) +print("Next step: Use excel_to_yaml.py to convert the filled Excel to YAML") +print("=" * 80) diff --git a/dreq_v1.2.2.2.json b/dreq_v1.2.2.2.json new file mode 100644 index 00000000..cc3ec7f3 --- /dev/null +++ b/dreq_v1.2.2.2.json @@ -0,0 +1,89135 @@ +{ + "Header": { + "Description": "This file gives the names of output variables that are requested from CMIP experiments by the supported Opportunities. The variables requested from each experiment are listed under each experiment name, grouped according to the priority level at which they are requested. For each experiment, the prioritized list of variables was determined by compiling together all requests made by the supported Opportunities for output from that experiment.", + "Opportunities supported": [ + "Accurate assessment of land-atmosphere coupling", + "Advancing Wind Wave Climate Modelling for Coastal Zone Dynamics, Impacts, and Risk Assessment", + "Agriculture and Food System Impacts", + "Assessments for Hydrological Processes, Water Resources, and Freshwater Systems", + "Atmospheric dynamics and variability", + "Baseline Climate Variables for Earth System Modelling", + "Benchmarking and Attributing Changes to Global Carbon and other Biogeochemical Cycles", + "Bias-adjustment for impacts modeling and analysis", + "Causality of Polar Amplification", + "Changes in marine biogeochemical cycles and ecosystem processes", + "Climate impacts on marine biodiversity and ecosystems", + "Clouds, circulation and climate sensitivity: baseline", + "Clouds, circulation and climate sensitivity: extension for process-level studies", + "Clouds, radiation & precipitation", + "Constructing a Global Carbon Budget", + "Core Climate Services", + "Detection and Attribution", + "Diagnosing Radiative Forcing", + "Diagnosing temperature variability and extremes", + "Dynamical Downscaling", + "Earth's Energy Budget", + "Effects and Feedbacks of Wind-Driven Ocean Surface Waves Coupled Within Earth System Models", + "Empirical Statistical Downscaling and Emulators", + "Energy System Impacts", + "Glacier changes, drivers, and impacts", + "Health Impacts", + "Ice sheet mass loss, contributions to sea level rise and freshwater flux input to the climate system", + "Impacts of climate change on aviation", + "Impacts of climate change on transport infrastructure", + "Land use change", + "Multi-annual-to-decadal predictability of the Earth System and risk assessment of climate extremes", + "Ocean Changes, Drivers and Impacts", + "Ocean Extremes", + "Paleoclimate Research at the Interface between Past, Present, and Future", + "Plant Phenology", + "Rapid Evaluation Framework", + "Robust Risk Assessment of Tipping Points", + "Role of fire in the Earth system", + "Sea Ice Changes, Drivers and Impacts", + "Southern Ocean Biogeochemistry to Clouds", + "Synoptic systems", + "Terrestrial Biodiversity", + "Understanding the role of atmospheric composition for air quality and climate change", + "Vulnerability of urban systems, infrastructure and populations", + "Water cycle/budget assessment", + "Water Security and Freshwater Ecosystem Services" + ], + "Priority levels supported": [ + "Core", + "High", + "Medium", + "Low" + ], + "Experiments included": [ + "1pctCO2", + "1pctCO2-bgc", + "1pctCO2-rad", + "abrupt-0p5CO2", + "abrupt-127k", + "abrupt-2xCO2", + "abrupt-4xCO2", + "amip", + "amip-irr", + "amip-m4K", + "amip-noirr", + "amip-p4k", + "amip-p4K-SST-rad", + "amip-p4K-SST-turb", + "amip-piForcing", + "dcppA-assim", + "dcppA-hindcast", + "dcppB-forecast", + "dcppB-forecast-cmip6", + "esm-flat10", + "esm-flat10-cdr", + "esm-flat10-zec", + "esm-hist", + "esm-piControl", + "esm-s7h-noFireChange", + "esm-scen7-h-Aer", + "esm-scen7-h-AQ", + "esm-scen7-vlho-Aer", + "esm-scen7-vlho-AQ", + "esm-up2p0", + "esm-up2p0-gwl1p5", + "esm-up2p0-gwl2p0", + "esm-up2p0-gwl2p0-50y-dn2p0", + "esm-up2p0-gwl3p0", + "esm-up2p0-gwl4p0", + "esm-up2p0-gwl4p0-50y-dn2p0", + "esm-up2p0-gwl4p0-50y-dn2p0-gwl2p0", + "esm-up2p0-gwl5p0", + "g7-1p5K-sai", + "highres-future-xxx", + "highresSST-pxxkpat", + "hist-1950", + "hist-aer", + "hist-GHG", + "hist-irr", + "hist-nat", + "hist-noFire", + "hist-noirr", + "hist-piAer", + "hist-piAQ", + "historical", + "land-hist", + "piClim-4xCO2", + "piClim-aer", + "piClim-anthro", + "piClim-CH4", + "piClim-control", + "piClim-histaer", + "piClim-histall", + "piClim-N2O", + "piClim-NOX", + "piClim-ODS", + "piClim-SO2", + "piControl", + "scenariomip10", + "scenariomip11", + "scenariomip12", + "scenariomip13", + "scenariomip14", + "scenariomip15", + "scenariomip16", + "scenariomip17", + "scenariomip18", + "scenariomip19", + "scenariomip2", + "scenariomip20", + "scenariomip21", + "scenariomip22", + "scenariomip23", + "scenariomip24", + "scenariomip25", + "scenariomip26", + "scenariomip27", + "scenariomip3", + "scenariomip4", + "scenariomip5", + "scenariomip6", + "scenariomip7", + "scenariomip8", + "scenariomip9" + ], + "dreq content version": "v1.2.2.2", + "dreq content file": "dreq_release_export.json", + "dreq content sha256 hash": "d396e3f8ef2ef1c3a184612cf50476cdda26101c734afd92f2fdfb373aceac6a", + "dreq api version": "1.2.3.dev15+g2a4a56cb9" + }, + "experiment": { + "1pctCO2": { + "Core": [ + "atmos.areacella.ti-u-hxy-u.fx.GLB", + "atmos.cl.tavg-al-hxy-u.mon.GLB", + "atmos.cli.tavg-al-hxy-u.mon.GLB", + "atmos.clivi.tavg-u-hxy-u.mon.GLB", + "atmos.clt.tavg-u-hxy-u.day.GLB", + "atmos.clt.tavg-u-hxy-u.mon.GLB", + "atmos.clw.tavg-al-hxy-u.mon.GLB", + "atmos.clwvi.tavg-u-hxy-u.mon.GLB", + "atmos.evspsbl.tavg-u-hxy-u.mon.GLB", + "atmos.hfls.tavg-u-hxy-u.mon.GLB", + "atmos.hfss.tavg-u-hxy-u.mon.GLB", + "atmos.hur.tavg-p19-hxy-air.mon.GLB", + "atmos.hur.tavg-p19-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.6hr.GLB", + "atmos.hurs.tavg-h2m-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.mon.GLB", + "atmos.hus.tavg-p19-hxy-u.day.GLB", + "atmos.hus.tavg-p19-hxy-u.mon.GLB", + "atmos.huss.tavg-h2m-hxy-u.day.GLB", + "atmos.huss.tavg-h2m-hxy-u.mon.GLB", + "atmos.huss.tpt-h2m-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.1hr.GLB", + "atmos.pr.tavg-u-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.day.GLB", + "atmos.pr.tavg-u-hxy-u.mon.GLB", + "atmos.prc.tavg-u-hxy-u.mon.GLB", + "atmos.prsn.tavg-u-hxy-u.mon.GLB", + "atmos.prw.tavg-u-hxy-u.mon.GLB", + "atmos.ps.tavg-u-hxy-u.day.GLB", + "atmos.ps.tavg-u-hxy-u.mon.GLB", + "atmos.psl.tavg-u-hxy-u.day.GLB", + "atmos.psl.tavg-u-hxy-u.mon.GLB", + "atmos.rlds.tavg-u-hxy-u.mon.GLB", + "atmos.rldscs.tavg-u-hxy-u.mon.GLB", + "atmos.rlus.tavg-u-hxy-u.mon.GLB", + "atmos.rluscs.tavg-u-hxy-u.mon.GLB", + "atmos.rlut.tavg-u-hxy-u.mon.GLB", + "atmos.rlutcs.tavg-u-hxy-u.mon.GLB", + "atmos.rsds.tavg-u-hxy-u.day.GLB", + "atmos.rsds.tavg-u-hxy-u.mon.GLB", + "atmos.rsdscs.tavg-u-hxy-u.mon.GLB", + "atmos.rsdt.tavg-u-hxy-u.mon.GLB", + "atmos.rsus.tavg-u-hxy-u.mon.GLB", + "atmos.rsuscs.tavg-u-hxy-u.mon.GLB", + "atmos.rsut.tavg-u-hxy-u.mon.GLB", + "atmos.rsutcs.tavg-u-hxy-u.mon.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.day.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.mon.GLB", + "atmos.sftlf.ti-u-hxy-u.fx.GLB", + "atmos.ta.tavg-p19-hxy-air.day.GLB", + "atmos.ta.tavg-p19-hxy-air.mon.GLB", + "atmos.ta.tpt-p3-hxy-air.6hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.day.GLB", + "atmos.tas.tavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tmax-h2m-hxy-u.day.GLB", + "atmos.tas.tmaxavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tmin-h2m-hxy-u.day.GLB", + "atmos.tas.tminavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tpt-h2m-hxy-u.3hr.GLB", + "atmos.tauu.tavg-u-hxy-u.mon.GLB", + "atmos.tauv.tavg-u-hxy-u.mon.GLB", + "atmos.ts.tavg-u-hxy-u.mon.GLB", + "atmos.ua.tavg-p19-hxy-air.day.GLB", + "atmos.ua.tavg-p19-hxy-air.mon.GLB", + "atmos.ua.tpt-p3-hxy-air.6hr.GLB", + "atmos.uas.tavg-h10m-hxy-u.day.GLB", + "atmos.uas.tavg-h10m-hxy-u.mon.GLB", + "atmos.uas.tpt-h10m-hxy-u.3hr.GLB", + "atmos.va.tavg-p19-hxy-air.day.GLB", + "atmos.va.tavg-p19-hxy-air.mon.GLB", + "atmos.va.tpt-p3-hxy-air.6hr.GLB", + "atmos.vas.tavg-h10m-hxy-u.day.GLB", + "atmos.vas.tavg-h10m-hxy-u.mon.GLB", + "atmos.vas.tpt-h10m-hxy-u.3hr.GLB", + "atmos.wap.tavg-p19-hxy-air.mon.GLB", + "atmos.wap.tavg-p19-hxy-u.day.GLB", + "atmos.zg.tavg-p19-hxy-air.day.GLB", + "atmos.zg.tavg-p19-hxy-air.mon.GLB", + "land.evspsblsoi.tavg-u-hxy-lnd.mon.GLB", + "land.evspsblveg.tavg-u-hxy-lnd.mon.GLB", + "land.lai.tavg-u-hxy-lnd.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.mon.GLB", + "land.mrros.tavg-u-hxy-lnd.mon.GLB", + "land.mrso.tavg-u-hxy-lnd.mon.GLB", + "land.mrsofc.ti-u-hxy-lnd.fx.GLB", + "land.mrsol.tavg-d10cm-hxy-lnd.mon.GLB", + "land.orog.ti-u-hxy-u.fx.GLB", + "land.rootd.ti-u-hxy-lnd.fx.GLB", + "land.sftgif.ti-u-hxy-u.fx.GLB", + "land.slthick.ti-sl-hxy-lnd.fx.GLB", + "landIce.mrfso.tavg-u-hxy-lnd.mon.GLB", + "landIce.snc.tavg-u-hxy-lnd.mon.GLB", + "landIce.snw.tavg-u-hxy-lnd.mon.GLB", + "ocean.areacello.ti-u-hxy-u.fx.GLB", + "ocean.basin.ti-u-hxy-u.fx.GLB", + "ocean.bigthetao.tavg-ol-hxy-sea.mon.GLB", + "ocean.deptho.ti-u-hxy-sea.fx.GLB", + "ocean.hfds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfgeou.ti-u-hxy-sea.fx.GLB", + "ocean.masscello.tavg-ol-hxy-sea.mon.GLB", + "ocean.masscello.ti-ol-hxy-sea.fx.GLB", + "ocean.mlotst.tavg-u-hxy-sea.mon.GLB", + "ocean.sftof.ti-u-hxy-u.fx.GLB", + "ocean.so.tavg-ol-hxy-sea.mon.GLB", + "ocean.sos.tavg-u-hxy-sea.day.GLB", + "ocean.sos.tavg-u-hxy-sea.mon.GLB", + "ocean.tauuo.tavg-u-hxy-sea.mon.GLB", + "ocean.tauvo.tavg-u-hxy-sea.mon.GLB", + "ocean.thetao.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcello.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcello.ti-ol-hxy-sea.fx.GLB", + "ocean.tos.tavg-u-hxy-sea.day.GLB", + "ocean.tos.tavg-u-hxy-sea.mon.GLB", + "ocean.umo.tavg-ol-hxy-sea.mon.GLB", + "ocean.uo.tavg-ol-hxy-sea.mon.GLB", + "ocean.vmo.tavg-ol-hxy-sea.mon.GLB", + "ocean.vo.tavg-ol-hxy-sea.mon.GLB", + "ocean.wmo.tavg-ol-hxy-sea.mon.GLB", + "ocean.wo.tavg-ol-hxy-sea.mon.GLB", + "ocean.zos.tavg-u-hxy-sea.day.GLB", + "ocean.zos.tavg-u-hxy-sea.mon.GLB", + "ocean.zostoga.tavg-u-hm-sea.mon.GLB", + "seaIce.siconc.tavg-u-hxy-u.day.GLB", + "seaIce.siconc.tavg-u-hxy-u.mon.GLB", + "seaIce.simass.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-si.mon.GLB", + "seaIce.sitimefrac.tavg-u-hxy-sea.mon.GLB", + "seaIce.siu.tavg-u-hxy-si.mon.GLB", + "seaIce.siv.tavg-u-hxy-si.mon.GLB", + "seaIce.snd.tavg-u-hxy-sn.mon.GLB", + "seaIce.ts.tavg-u-hxy-si.mon.GLB" + ], + "High": [ + "aerosol.abs550aer.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550bc.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550dust.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550no3.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550oa.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550so4.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550ss.tavg-u-hxy-u.mon.GLB", + "aerosol.airmass.tavg-al-hxy-u.mon.GLB", + "aerosol.aoanh.tavg-al-hxy-u.mon.NH", + "aerosol.bry.tavg-p39-hy-air.mon.GLB", + "aerosol.bs550aer.tpt-al-hxy-u.6hr.GLB", + "aerosol.c2h6.tavg-al-hxy-u.mon.GLB", + "aerosol.c3h6.tavg-al-hxy-u.mon.GLB", + "aerosol.c3h8.tavg-al-hxy-u.mon.GLB", + "aerosol.ccldncl.tavg-u-hxy-ccl.mon.GLB", + "aerosol.ccn.tavg-u-hxy-ccl.mon.30S-90S", + "aerosol.ccn.tavg-u-hxy-ccl.mon.GLB", + "aerosol.ccn1.tavg-al-hxy-u.mon.30S-90S", + "aerosol.ccn1.tavg-al-hxy-u.mon.GLB", + "aerosol.ccnp02.tavg-al-hxy-u.mon.30S-90S", + "aerosol.ccnp02.tavg-al-hxy-u.mon.GLB", + "aerosol.cdnc.tavg-al-hxy-u.mon.30S-90S", + "aerosol.cdnc.tavg-al-hxy-u.mon.GLB", + "aerosol.ch3coch3.tavg-al-hxy-u.mon.GLB", + "aerosol.cheaqpso4.tavg-al-hxy-u.mon.GLB", + "aerosol.chegpso4.tavg-al-hxy-u.mon.GLB", + "aerosol.chepasoa.tavg-u-hxy-u.mon.GLB", + "aerosol.chepsoa.tavg-u-hxy-u.mon.GLB", + "aerosol.cly.tavg-p39-hy-air.mon.GLB", + "aerosol.co.tavg-al-hxy-u.mon.GLB", + "aerosol.co.tavg-h2m-hxy-u.day.GLB", + "aerosol.cod.tavg-u-hxy-u.day.GLB", + "aerosol.cod.tavg-u-hxy-u.mon.30S-90S", + "aerosol.cod.tavg-u-hxy-u.mon.GLB", + "aerosol.conccn.tavg-al-hxy-u.mon.GLB", + "aerosol.conccn.tpt-u-hs-u.3hr.GLB", + "aerosol.depdust.tavg-u-hxy-u.mon.GLB", + "aerosol.drybc.tavg-u-hxy-u.mon.GLB", + "aerosol.drydust.tavg-u-hxy-u.mon.GLB", + "aerosol.dryno3.tavg-u-hxy-u.mon.GLB", + "aerosol.dryo3.tavg-u-hxy-u.mon.GLB", + "aerosol.dryoa.tavg-u-hxy-u.mon.GLB", + "aerosol.dryso2.tavg-u-hxy-u.mon.GLB", + "aerosol.dryso4.tavg-u-hxy-u.mon.GLB", + "aerosol.dryss.tavg-u-hxy-u.mon.GLB", + "aerosol.ec550aer.tavg-al-hxy-u.mon.GLB", + "aerosol.ec550aer.tpt-u-hxy-u.6hr.GLB", + "aerosol.emiaco.tavg-u-hxy-u.mon.GLB", + "aerosol.emianox.tavg-u-hxy-u.mon.GLB", + "aerosol.emiaoa.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbbc.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbch4.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbco.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbdms.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbnh3.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbnox.tavg-u-hxy-u.mon.GLB", + "aerosol.emibboa.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbso2.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbvoc.tavg-u-hxy-u.mon.GLB", + "aerosol.emibc.tavg-u-hxy-u.mon.GLB", + "aerosol.emibvoc.tavg-u-hxy-u.mon.GLB", + "aerosol.emico.tavg-u-hxy-u.mon.GLB", + "aerosol.emidms.tavg-u-hxy-u.mon.30S-90S", + "aerosol.emidms.tavg-u-hxy-u.mon.GLB", + "aerosol.emidust.tavg-u-hxy-u.mon.GLB", + "aerosol.emiisop.tavg-u-hxy-u.mon.GLB", + "aerosol.emilnox.tavg-al-hxy-u.mon.GLB", + "aerosol.eminh3.tavg-u-hxy-u.mon.GLB", + "aerosol.eminox.tavg-u-hxy-u.mon.GLB", + "aerosol.emioa.tavg-u-hxy-u.mon.GLB", + "aerosol.emiso2.tavg-u-hxy-u.mon.GLB", + "aerosol.emiso4.tavg-u-hxy-u.mon.GLB", + "aerosol.emiss.tavg-u-hxy-u.mon.30S-90S", + "aerosol.emiss.tavg-u-hxy-u.mon.GLB", + "aerosol.emivoc.tavg-u-hxy-u.mon.GLB", + "aerosol.h2o.tavg-al-hxy-u.mon.GLB", + "aerosol.h2o.tavg-p39-hy-air.mon.GLB", + "aerosol.hcho.tavg-al-hxy-u.mon.GLB", + "aerosol.hcl.tavg-al-hxy-u.mon.GLB", + "aerosol.hcl.tavg-p39-hy-air.mon.GLB", + "aerosol.hno3.tavg-al-hxy-u.mon.GLB", + "aerosol.hno3.tavg-p39-hy-air.mon.GLB", + "aerosol.ho2.tavg-p39-hy-air.mon.GLB", + "aerosol.isop.tavg-al-hxy-u.mon.GLB", + "aerosol.jno2.tavg-al-hxy-u.mon.GLB", + "aerosol.lossch4.tavg-al-hxy-u.mon.GLB", + "aerosol.lossco.tavg-al-hxy-u.mon.GLB", + "aerosol.lossn2o.tavg-al-hxy-u.mon.GLB", + "aerosol.lwp.tavg-u-hxy-u.mon.GLB", + "aerosol.mmraerh2o.tavg-al-hxy-u.mon.GLB", + "aerosol.mmraerh2o.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmraerh2o.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrbc.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrbc.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrbc.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrbc.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrdust.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrdust.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrdust.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrdust.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrnh4.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrnh4.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrnh4.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrnh4.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrno3.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrno3.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrno3.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrno3.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmroa.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmroa.tavg-al-hxy-u.mon.GLB", + "aerosol.mmroa.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmroa.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrpm1.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrpm1.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrpm2p5.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrpm2p5.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrso4.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrso4.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrso4.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrso4.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrsoa.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrsoa.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrsoa.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrss.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrss.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrss.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrss.tpt-h2m-hs-u.3hr.GLB", + "aerosol.nh50.tavg-al-hxy-u.mon.GLB", + "aerosol.no.tavg-al-hxy-u.mon.GLB", + "aerosol.no2.tavg-al-hxy-u.mon.GLB", + "aerosol.no2.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.noy.tavg-p39-hy-air.mon.GLB", + "aerosol.o3.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.o3.tmax-h2m-hxy-u.day.GLB", + "aerosol.o3loss.tavg-al-hxy-u.mon.GLB", + "aerosol.o3prod.tavg-al-hxy-u.mon.GLB", + "aerosol.od443aer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550aer.tavg-u-hxy-u.day.GLB", + "aerosol.od550aer.tavg-u-hxy-u.mon.30S-90S", + "aerosol.od550aer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550aerh2o.tavg-u-hxy-u.mon.GLB", + "aerosol.od550bb.tavg-u-hxy-u.mon.GLB", + "aerosol.od550bc.tavg-u-hxy-u.mon.GLB", + "aerosol.od550csaer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550dust.tavg-u-hxy-u.mon.GLB", + "aerosol.od550lt1aer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550no3.tavg-u-hxy-u.mon.GLB", + "aerosol.od550oa.tavg-u-hxy-u.mon.GLB", + "aerosol.od550so4.tavg-u-hxy-u.mon.GLB", + "aerosol.od550soa.tavg-u-hxy-u.mon.GLB", + "aerosol.od550ss.tavg-u-hxy-u.mon.GLB", + "aerosol.od865aer.tavg-u-hxy-u.mon.GLB", + "aerosol.oh.tavg-al-hxy-u.mon.GLB", + "aerosol.oh.tavg-p39-hy-air.mon.GLB", + "aerosol.pan.tavg-al-hxy-u.mon.GLB", + "aerosol.photo1d.tavg-al-hxy-u.mon.GLB", + "aerosol.pod0.tsum-u-hxy-u.mon.GLB", + "aerosol.reffccwctop.tavg-u-hxy-cl.mon.GLB", + "aerosol.reffclwtop.tavg-u-hxy-cl.mon.30S-90S", + "aerosol.reffclwtop.tavg-u-hxy-cl.mon.GLB", + "aerosol.rluscsaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rlutaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rlutcsaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rsutaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rsutcsaf.tavg-u-hxy-u.mon.GLB", + "aerosol.sfpm1.tavg-h2m-hxy-u.day.GLB", + "aerosol.sfpm10.tavg-al-hxy-u.mon.30S-90S", + "aerosol.sfpm10.tavg-al-hxy-u.mon.GLB", + "aerosol.sfpm10.tavg-h2m-hxy-u.day.GLB", + "aerosol.sfpm25.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.sfpm25.tavg-h2m-hxy-u.day.GLB", + "aerosol.so2.tavg-al-hxy-u.mon.30S-90S", + "aerosol.so2.tavg-al-hxy-u.mon.GLB", + "aerosol.so2.tavg-h2m-hxy-u.day.GLB", + "aerosol.so2.tpt-h2m-hs-u.3hr.GLB", + "aerosol.tatp.tavg-u-hxy-u.mon.GLB", + "aerosol.toz.tavg-u-hxy-u.day.GLB", + "aerosol.toz.tavg-u-hxy-u.mon.GLB", + "aerosol.tropoz.tavg-u-hxy-u.mon.GLB", + "aerosol.ttop.tavg-u-hxy-cl.mon.GLB", + "aerosol.ua.tavg-10hPa-hxy-air.day.GLB", + "aerosol.vt100.tavg-100hPa-hy-air.mon.GLB", + "aerosol.wa.tavg-al-hxy-u.mon.GLB", + "aerosol.wetbc.tavg-u-hxy-u.mon.GLB", + "aerosol.wetdust.tavg-u-hxy-u.mon.GLB", + "aerosol.wetoa.tavg-u-hxy-u.mon.GLB", + "aerosol.wetso2.tavg-u-hxy-u.mon.GLB", + "aerosol.wetso4.tavg-u-hxy-u.mon.GLB", + "aerosol.wetss.tavg-u-hxy-u.mon.GLB", + "aerosol.zg.tavg-10hPa-hxy-air.day.GLB", + "atmos.albisccp.tavg-u-hxy-cl.day.GLB", + "atmos.albisccp.tavg-u-hxy-cl.mon.30S-90S", + "atmos.albisccp.tavg-u-hxy-cl.mon.GLB", + "atmos.aod550volso4.tavg-u-hxy-u.mon.GLB", + "atmos.bldep.tavg-u-hxy-u.mon.GLB", + "atmos.bldep.tmax-u-hxy-u.day.GLB", + "atmos.bldep.tmin-u-hxy-u.day.GLB", + "atmos.ccb.tavg-u-hxy-ccl.day.GLB", + "atmos.ccb.tavg-u-hxy-ccl.mon.GLB", + "atmos.cct.tavg-u-hxy-ccl.day.GLB", + "atmos.cct.tavg-u-hxy-ccl.mon.GLB", + "atmos.ci.tavg-u-hxy-u.mon.GLB", + "atmos.cl.tavg-al-hxy-u.day.GLB", + "atmos.cl.tavg-al-hxy-u.mon.30S-90S", + "atmos.clc.tavg-al-hxy-u.mon.30S-90S", + "atmos.clc.tavg-al-hxy-u.mon.GLB", + "atmos.clcalipso.tavg-220hPa-hxy-air.day.GLB", + "atmos.clcalipso.tavg-220hPa-hxy-air.mon.30S-90S", + "atmos.clcalipso.tavg-220hPa-hxy-air.mon.GLB", + "atmos.clcalipso.tavg-560hPa-hxy-air.day.GLB", + "atmos.clcalipso.tavg-560hPa-hxy-air.mon.30S-90S", + "atmos.clcalipso.tavg-560hPa-hxy-air.mon.GLB", + "atmos.clcalipso.tavg-840hPa-hxy-air.day.GLB", + "atmos.clcalipso.tavg-840hPa-hxy-air.mon.30S-90S", + "atmos.clcalipso.tavg-840hPa-hxy-air.mon.GLB", + "atmos.clcalipso.tavg-h40-hxy-air.mon.30S-90S", + "atmos.clcalipso.tavg-h40-hxy-air.mon.GLB", + "atmos.cldnci.tavg-u-hxy-cl.mon.GLB", + "atmos.cldncl.tavg-u-hxy-cl.mon.GLB", + "atmos.cldnvi.tavg-u-hxy-u.mon.GLB", + "atmos.cli.tavg-al-hxy-u.mon.30S-90S", + "atmos.clic.tavg-al-hxy-u.mon.30S-90S", + "atmos.clic.tavg-al-hxy-u.mon.GLB", + "atmos.clis.tavg-al-hxy-u.mon.30S-90S", + "atmos.clis.tavg-al-hxy-u.mon.GLB", + "atmos.clisccp.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clisccp.tavg-p7c-hxy-air.mon.GLB", + "atmos.clivi.tavg-u-hxy-u.day.GLB", + "atmos.clivi.tavg-u-hxy-u.mon.30S-90S", + "atmos.clivic.tavg-u-hxy-u.day.GLB", + "atmos.clivimodis.tavg-u-hxy-u.mon.30S-90S", + "atmos.clmisr.tavg-h16-hxy-air.mon.GLB", + "atmos.clmodis.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clmodis.tavg-p7c-hxy-air.mon.GLB", + "atmos.clmodisice.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clmodisice.tavg-p7c-hxy-air.mon.GLB", + "atmos.clmodisiceReff.tavg-u-hxy-u.mon.GLB", + "atmos.clmodisliquid.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clmodisliquid.tavg-p7c-hxy-air.mon.GLB", + "atmos.clmodisliquidReff.tavg-u-hxy-u.mon.GLB", + "atmos.cls.tavg-al-hxy-u.mon.30S-90S", + "atmos.cls.tavg-al-hxy-u.mon.GLB", + "atmos.clt.tavg-u-hxy-lnd.day.GLB", + "atmos.clt.tavg-u-hxy-u.mon.30S-90S", + "atmos.cltc.tavg-u-hxy-u.mon.GLB", + "atmos.cltcalipso.tavg-u-hxy-u.day.GLB", + "atmos.cltcalipso.tavg-u-hxy-u.mon.30S-90S", + "atmos.cltcalipso.tavg-u-hxy-u.mon.GLB", + "atmos.cltisccp.tavg-u-hxy-u.day.GLB", + "atmos.cltisccp.tavg-u-hxy-u.mon.30S-90S", + "atmos.cltisccp.tavg-u-hxy-u.mon.GLB", + "atmos.cltmodis.tavg-u-hxy-u.mon.30S-90S", + "atmos.clw.tavg-al-hxy-u.mon.30S-90S", + "atmos.clwc.tavg-al-hxy-u.mon.30S-90S", + "atmos.clwc.tavg-al-hxy-u.mon.GLB", + "atmos.clws.tavg-al-hxy-u.mon.30S-90S", + "atmos.clws.tavg-al-hxy-u.mon.GLB", + "atmos.clwvi.tavg-u-hxy-u.day.GLB", + "atmos.clwvi.tavg-u-hxy-u.mon.30S-90S", + "atmos.clwvic.tavg-u-hxy-u.day.GLB", + "atmos.clwvimodis.tavg-u-hxy-u.mon.30S-90S", + "atmos.co2.tavg-al-hxy-u.mon.GLB", + "atmos.co2.tavg-h2m-hxy-u.mon.GLB", + "atmos.co2.tavg-p19-hxy-air.mon.GLB", + "atmos.co2.tclm-p19-hxy-air.mon.GLB", + "atmos.co2.tclm-u-hm-u.mon.GLB", + "atmos.co2mass.tavg-u-hm-u.mon.GLB", + "atmos.dmc.tavg-alh-hxy-u.mon.30S-90S", + "atmos.dmc.tavg-alh-hxy-u.mon.GLB", + "atmos.edt.tavg-al-hxy-u.mon.30S-90S", + "atmos.edt.tavg-al-hxy-u.mon.GLB", + "atmos.epfy.tavg-p39-hy-air.day.GLB", + "atmos.epfy.tavg-p39-hy-air.mon.GLB", + "atmos.epfz.tavg-p39-hy-air.day.GLB", + "atmos.epfz.tavg-p39-hy-air.mon.GLB", + "atmos.evspsbl.tavg-u-hxy-lnd.day.GLB", + "atmos.evu.tavg-al-hxy-u.mon.30S-90S", + "atmos.evu.tavg-al-hxy-u.mon.GLB", + "atmos.fco2antt.tavg-u-hxy-u.mon.GLB", + "atmos.hfls.tavg-u-hxy-u.day.GLB", + "atmos.hfls.tavg-u-hxy-u.mon.30S-90S", + "atmos.hfss.tavg-u-hxy-u.day.GLB", + "atmos.hfss.tavg-u-hxy-u.mon.30S-90S", + "atmos.hur.tavg-al-hxy-u.mon.30S-90S", + "atmos.hur.tavg-al-hxy-u.mon.GLB", + "atmos.hur.tavg-p19-hxy-air.mon.30S-90S", + "atmos.hurs.tavg-h2m-hxy-u.mon.30S-90S", + "atmos.hurs.tmax-h2m-hxy-u.day.GLB", + "atmos.hurs.tmin-h2m-hxy-u.day.GLB", + "atmos.hus.tavg-al-hxy-u.mon.30S-90S", + "atmos.hus.tavg-al-hxy-u.mon.GLB", + "atmos.hus.tavg-p19-hxy-u.mon.30S-90S", + "atmos.hus.tpt-p7h-hxy-air.6hr.GLB", + "atmos.huss.tavg-h2m-hxy-u.mon.30S-90S", + "atmos.intuadse.tavg-u-hxy-u.day.GLB", + "atmos.intuadse.tavg-u-hxy-u.mon.GLB", + "atmos.intuaw.tavg-u-hxy-u.day.GLB", + "atmos.intuaw.tavg-u-hxy-u.mon.GLB", + "atmos.intuaw.tpt-u-hxy-u.6hr.GLB", + "atmos.intvadse.tavg-u-hxy-u.day.GLB", + "atmos.intvadse.tavg-u-hxy-u.mon.GLB", + "atmos.intvaw.tavg-u-hxy-u.day.GLB", + "atmos.intvaw.tavg-u-hxy-u.mon.GLB", + "atmos.intvaw.tpt-u-hxy-u.6hr.GLB", + "atmos.loadso4.tavg-u-hxy-u.mon.GLB", + "atmos.mc.tavg-alh-hxy-u.mon.GLB", + "atmos.mcd.tavg-alh-hxy-u.mon.30S-90S", + "atmos.mcd.tavg-alh-hxy-u.mon.GLB", + "atmos.mcu.tavg-alh-hxy-u.mon.30S-90S", + "atmos.mcu.tavg-alh-hxy-u.mon.GLB", + "atmos.pctisccp.tavg-u-hxy-cl.day.GLB", + "atmos.pctisccp.tavg-u-hxy-cl.mon.30S-90S", + "atmos.pctisccp.tavg-u-hxy-cl.mon.GLB", + "atmos.pfull.tavg-al-hxy-u.mon.GLB", + "atmos.pfull.tclm-al-hxy-u.mon.30S-90S", + "atmos.pfull.tclm-al-hxy-u.mon.GLB", + "atmos.phalf.tavg-alh-hxy-u.mon.GLB", + "atmos.phalf.tclm-alh-hxy-u.mon.GLB", + "atmos.pr.tavg-u-hxy-u.mon.30S-90S", + "atmos.pr.tmax-u-hxy-u.day.GLB", + "atmos.pr.tpt-u-hxy-u.6hr.GLB", + "atmos.pr17O.tavg-u-hxy-u.mon.GLB", + "atmos.pr18O.tavg-u-hxy-u.mon.GLB", + "atmos.pr2h.tavg-u-hxy-u.mon.GLB", + "atmos.prc.tavg-u-hxy-u.day.GLB", + "atmos.prc.tavg-u-hxy-u.mon.30S-90S", + "atmos.prra.tavg-u-hxy-lnd.day.GLB", + "atmos.prra.tavg-u-hxy-u.mon.30S-90S", + "atmos.prra.tavg-u-hxy-u.mon.GLB", + "atmos.prsn.tavg-u-hxy-u.3hr.GLB", + "atmos.prsn.tavg-u-hxy-u.day.GLB", + "atmos.prsn.tavg-u-hxy-u.mon.30S-90S", + "atmos.prsn18O.tavg-u-hxy-u.mon.GLB", + "atmos.prsn2h.tavg-u-hxy-u.mon.GLB", + "atmos.prw.tavg-u-hxy-u.day.GLB", + "atmos.prw.tavg-u-hxy-u.mon.30S-90S", + "atmos.prw.tpt-u-hxy-u.6hr.GLB", + "atmos.ps.tavg-u-hxy-u.1hr.GLB", + "atmos.ps.tavg-u-hxy-u.mon.30S-90S", + "atmos.psl.tavg-u-hxy-u.mon.30S-90S", + "atmos.psl.tpt-u-hxy-u.1hr.GLB", + "atmos.psl.tpt-u-hxy-u.6hr.GLB", + "atmos.ptp.tavg-u-hxy-u.mon.GLB", + "atmos.reffcclwtop.tavg-u-hxy-ccl.mon.GLB", + "atmos.reffclic.tavg-al-hxy-ccl.mon.30S-90S", + "atmos.reffclic.tavg-al-hxy-ccl.mon.GLB", + "atmos.reffclis.tavg-al-hxy-scl.mon.30S-90S", + "atmos.reffclis.tavg-al-hxy-scl.mon.GLB", + "atmos.reffclwc.tavg-al-hxy-ccl.mon.30S-90S", + "atmos.reffclwc.tavg-al-hxy-ccl.mon.GLB", + "atmos.reffclws.tavg-al-hxy-scl.mon.30S-90S", + "atmos.reffclws.tavg-al-hxy-scl.mon.GLB", + "atmos.reffsclwtop.tavg-u-hxy-scl.mon.GLB", + "atmos.rld.tavg-alh-hxy-u.mon.GLB", + "atmos.rld4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rldcs.tavg-alh-hxy-u.mon.GLB", + "atmos.rldcs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rlds.tavg-u-hxy-u.day.GLB", + "atmos.rlds.tavg-u-hxy-u.mon.30S-90S", + "atmos.rldscs.tavg-u-hxy-u.day.GLB", + "atmos.rldscs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rlu.tavg-alh-hxy-u.mon.GLB", + "atmos.rlu4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rlucs.tavg-alh-hxy-u.mon.GLB", + "atmos.rlucs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rlus.tavg-u-hxy-u.day.GLB", + "atmos.rlus.tavg-u-hxy-u.mon.30S-90S", + "atmos.rluscs.tavg-u-hxy-u.day.GLB", + "atmos.rlut.tavg-u-hxy-u.day.GLB", + "atmos.rlut.tavg-u-hxy-u.mon.30S-90S", + "atmos.rlut4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rlutcs.tavg-u-hxy-u.day.GLB", + "atmos.rlutcs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rlutcs4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rsd.tavg-alh-hxy-u.mon.GLB", + "atmos.rsd4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsdcs.tavg-alh-hxy-u.mon.GLB", + "atmos.rsdcs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsds.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsdscs.tavg-u-hxy-u.day.GLB", + "atmos.rsdscs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsdt.tavg-u-hxy-u.day.GLB", + "atmos.rsdt.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsu.tavg-alh-hxy-u.mon.GLB", + "atmos.rsu4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsucs.tavg-alh-hxy-u.mon.GLB", + "atmos.rsucs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsus.tavg-u-hxy-u.day.GLB", + "atmos.rsus.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsuscs.tavg-u-hxy-u.day.GLB", + "atmos.rsuscs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsut.tavg-u-hxy-u.day.GLB", + "atmos.rsut.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsut4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rsutcs.tavg-u-hxy-u.day.GLB", + "atmos.rsutcs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsutcs4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rtmt.tavg-u-hxy-u.mon.GLB", + "atmos.rv850.tpt-850hPa-hxy-air.6hr.GLB", + "atmos.sci.tavg-u-hxy-u.mon.GLB", + "atmos.scldncl.tavg-u-hxy-scl.mon.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.mon.30S-90S", + "atmos.sfcWind.tmax-h10m-hxy-u.day.GLB", + "atmos.smc.tavg-alh-hxy-u.mon.GLB", + "atmos.ta.tavg-700hPa-hxy-air.day.GLB", + "atmos.ta.tavg-al-hxy-u.mon.30S-90S", + "atmos.ta.tavg-al-hxy-u.mon.GLB", + "atmos.ta.tavg-p19-hxy-air.mon.30S-90S", + "atmos.ta.tavg-p39-hy-air.day.GLB", + "atmos.ta.tavg-p39-hy-air.mon.GLB", + "atmos.tas.tavg-h2m-hxy-u.1hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.mon.30S-90S", + "atmos.tas.tmaxavg-h2m-hxy-u.mon.30S-90S", + "atmos.tas.tminavg-h2m-hxy-u.mon.30S-90S", + "atmos.tauu.tavg-u-hxy-u.day.GLB", + "atmos.tauunoegw.tavg-p39-hy-air.day.GLB", + "atmos.tauunowgw.tavg-p39-hy-air.day.GLB", + "atmos.tauuogw.tavg-p39-hy-air.day.GLB", + "atmos.tauv.tavg-u-hxy-u.day.GLB", + "atmos.tauvnogw.tavg-p39-hy-air.day.GLB", + "atmos.tauvogw.tavg-p39-hy-air.day.GLB", + "atmos.tdps.tavg-h2m-hxy-u.mon.GLB", + "atmos.tnhus.tavg-al-hxy-u.mon.GLB", + "atmos.tnhusa.tavg-al-hxy-u.mon.GLB", + "atmos.tnhusc.tavg-al-hxy-u.mon.GLB", + "atmos.tnhusd.tavg-al-hxy-u.mon.GLB", + "atmos.tnhusmp.tavg-al-hxy-u.mon.GLB", + "atmos.tnhuspbl.tavg-al-hxy-u.mon.GLB", + "atmos.tnhusscp.tavg-al-hxy-u.mon.GLB", + "atmos.tnhusscpbl.tavg-al-hxy-u.mon.GLB", + "atmos.tnt.tavg-al-hxy-u.mon.GLB", + "atmos.tnta.tavg-al-hxy-u.mon.GLB", + "atmos.tntc.tavg-al-hxy-u.mon.GLB", + "atmos.tntd.tavg-al-hxy-u.mon.GLB", + "atmos.tntmp.tavg-al-hxy-u.mon.GLB", + "atmos.tntmp.tavg-p39-hy-air.day.GLB", + "atmos.tntmp.tavg-p39-hy-air.mon.GLB", + "atmos.tntpbl.tavg-al-hxy-u.mon.GLB", + "atmos.tntr.tavg-al-hxy-u.mon.GLB", + "atmos.tntrl.tavg-al-hxy-u.mon.GLB", + "atmos.tntrl.tavg-p39-hy-air.day.GLB", + "atmos.tntrl.tavg-p39-hy-air.mon.GLB", + "atmos.tntrlcs.tavg-al-hxy-u.mon.GLB", + "atmos.tntrs.tavg-al-hxy-u.mon.GLB", + "atmos.tntrs.tavg-p39-hy-air.day.GLB", + "atmos.tntrs.tavg-p39-hy-air.mon.GLB", + "atmos.tntrscs.tavg-al-hxy-u.mon.GLB", + "atmos.tntscp.tavg-al-hxy-u.mon.GLB", + "atmos.tntscpbl.tavg-al-hxy-u.mon.GLB", + "atmos.ts.tavg-u-hxy-u.day.GLB", + "atmos.ts.tavg-u-hxy-u.mon.30S-90S", + "atmos.ua.tavg-al-hxy-u.mon.GLB", + "atmos.ua.tavg-p19-hxy-air.mon.30S-90S", + "atmos.ua.tavg-p39-hy-air.day.GLB", + "atmos.ua.tavg-p39-hy-air.mon.GLB", + "atmos.ua.tpt-h100m-hxy-u.1hr.GLB", + "atmos.uas.tavg-h10m-hxy-u.mon.30S-90S", + "atmos.uas.tpt-h10m-hxy-u.1hr.GLB", + "atmos.uas.tpt-h10m-hxy-u.6hr.GLB", + "atmos.utendepfd.tavg-p39-hy-air.day.GLB", + "atmos.utendepfd.tavg-p39-hy-air.mon.GLB", + "atmos.utendnogw.tavg-p39-hy-air.day.GLB", + "atmos.utendnogw.tavg-p39-hy-air.mon.GLB", + "atmos.utendogw.tavg-p39-hy-air.day.GLB", + "atmos.utendogw.tavg-p39-hy-air.mon.GLB", + "atmos.utendvtem.tavg-p39-hy-air.day.GLB", + "atmos.utendwtem.tavg-p39-hy-air.day.GLB", + "atmos.va.tavg-al-hxy-u.mon.GLB", + "atmos.va.tavg-p19-hxy-air.mon.30S-90S", + "atmos.va.tavg-p39-hy-air.mon.GLB", + "atmos.va.tpt-h100m-hxy-u.1hr.GLB", + "atmos.vas.tavg-h10m-hxy-u.mon.30S-90S", + "atmos.vas.tpt-h10m-hxy-u.1hr.GLB", + "atmos.vas.tpt-h10m-hxy-u.6hr.GLB", + "atmos.vtem.tavg-p39-hy-air.day.GLB", + "atmos.vtem.tavg-p39-hy-air.mon.GLB", + "atmos.wap.tavg-500hPa-hxy-air.day.GLB", + "atmos.wap.tavg-p19-hxy-air.mon.30S-90S", + "atmos.wtem.tavg-p39-hy-air.day.GLB", + "atmos.wtem.tavg-p39-hy-air.mon.GLB", + "atmos.zg.tavg-1000hPa-hxy-air.day.GLB", + "atmos.zg.tavg-500hPa-hxy-air.day.GLB", + "atmos.zg.tavg-al-hxy-u.mon.GLB", + "atmos.zg.tavg-p19-hxy-air.mon.30S-90S", + "atmos.zg.tavg-p39-hy-air.day.GLB", + "atmos.zg.tavg-p39-hy-air.mon.GLB", + "atmos.zg.tpt-500hPa-hxy-air.6hr.GLB", + "atmos.zg.tpt-p3-hxy-air.6hr.GLB", + "atmos.zg.tpt-p7h-hxy-air.6hr.GLB", + "atmos.ztp.tavg-u-hxy-u.mon.GLB", + "atmosChem.c2h4.tavg-al-hxy-u.mon.GLB", + "atmosChem.c2h5oh.tavg-al-hxy-u.mon.GLB", + "atmosChem.c4h10.tavg-al-hxy-u.mon.GLB", + "atmosChem.cfc11.tavg-u-hm-u.mon.GLB", + "atmosChem.cfc113.tavg-u-hm-u.mon.GLB", + "atmosChem.cfc12.tavg-u-hm-u.mon.GLB", + "atmosChem.ch3oh.tavg-al-hxy-u.mon.GLB", + "atmosChem.ch4.tavg-al-hxy-u.mon.GLB", + "atmosChem.ch4.tavg-p19-hxy-air.mon.GLB", + "atmosChem.ch4.tavg-p39-hy-air.mon.GLB", + "atmosChem.ch4.tavg-u-hm-u.mon.GLB", + "atmosChem.ch4.tclm-p19-hxy-air.mon.GLB", + "atmosChem.ch4.tclm-u-hm-u.mon.GLB", + "atmosChem.ch4losssoil.tavg-u-hxy-u.mon.GLB", + "atmosChem.ch4ref.ti-al-hxy-u.fx.GLB", + "atmosChem.chegph2oo1d.tavg-al-hxy-u.mon.GLB", + "atmosChem.chepnh4.tavg-al-hxy-u.mon.GLB", + "atmosChem.chepno3.tavg-al-hxy-u.mon.GLB", + "atmosChem.dms.tavg-al-hxy-u.mon.30S-90S", + "atmosChem.dms.tavg-al-hxy-u.mon.GLB", + "atmosChem.do3chm.tavg-al-hxy-u.mon.GLB", + "atmosChem.dryh2.tavg-u-hxy-u.mon.GLB", + "atmosChem.dryhno3.tavg-u-hxy-u.mon.GLB", + "atmosChem.drynh3.tavg-u-hxy-u.mon.GLB", + "atmosChem.drynh4.tavg-u-hxy-u.mon.GLB", + "atmosChem.drynoy.tavg-u-hxy-u.mon.GLB", + "atmosChem.e90inst.tpt-al-hxy-u.mon.GLB", + "atmosChem.emiach4.tavg-u-hxy-u.mon.GLB", + "atmosChem.emiavnox.tavg-al-hxy-u.mon.GLB", + "atmosChem.emic2h4.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic2h5oh.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic2h6.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic3h6.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic3h8.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic4h10.tavg-u-hxy-u.mon.GLB", + "atmosChem.emich3oh.tavg-u-hxy-u.mon.GLB", + "atmosChem.emich4.tavg-u-hxy-u.mon.GLB", + "atmosChem.emih2.tavg-u-hxy-u.mon.GLB", + "atmosChem.emilkch4.tavg-u-hxy-u.mon.GLB", + "atmosChem.h2.tavg-al-hxy-u.mon.GLB", + "atmosChem.h2loss.tavg-al-hxy-u.mon.GLB", + "atmosChem.h2prod.tavg-al-hxy-u.mon.GLB", + "atmosChem.hcfc22.tavg-u-hm-u.mon.GLB", + "atmosChem.meanage.tavg-al-hxy-u.mon.GLB", + "atmosChem.meanage.tavg-p39-hy-air.mon.GLB", + "atmosChem.n2o.tavg-al-hxy-u.mon.GLB", + "atmosChem.n2o.tavg-p19-hxy-air.mon.GLB", + "atmosChem.n2o.tavg-p39-hy-air.mon.GLB", + "atmosChem.n2o.tavg-u-hm-u.mon.GLB", + "atmosChem.n2o.tclm-p19-hxy-air.mon.GLB", + "atmosChem.n2o.tclm-u-hm-u.mon.GLB", + "atmosChem.o3.tavg-al-hxy-u.mon.GLB", + "atmosChem.o3.tavg-p19-hxy-air.mon.GLB", + "atmosChem.o3.tavg-p39-hy-air.mon.GLB", + "atmosChem.o3.tclm-p19-hxy-air.mon.GLB", + "atmosChem.o3.tpt-al-hxy-u.mon.GLB", + "atmosChem.o3ref.tclm-al-hxy-u.fx.GLB", + "atmosChem.o3ref.ti-al-hxy-u.fx.GLB", + "atmosChem.o3ste.tavg-al-hxy-u.mon.GLB", + "atmosChem.rlutch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rlutcsch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rlutcso3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rluto3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsutch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsutcsch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsutcso3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsuto3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.stratch4loss.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropch4loss.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropch4lossoh.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropdo3chm.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropo3ste.tavg-al-hxy-u.mon.GLB", + "atmosChem.wethno3.tavg-al-hxy-u.mon.GLB", + "atmosChem.wetnh3.tavg-u-hxy-u.mon.GLB", + "atmosChem.wetnh4.tavg-u-hxy-u.mon.GLB", + "atmosChem.wetno3.tavg-al-hxy-u.mon.GLB", + "atmosChem.wetnoy.tavg-u-hxy-u.mon.GLB", + "land.areacellr.ti-u-hxy-u.fx.GLB", + "land.burntFractionAll.tavg-u-hxy-u.mon.GLB", + "land.cLand.tavg-u-hxy-lnd.mon.GLB", + "land.cSoil.tavg-d100cm-hxy-lnd.mon.GLB", + "land.cSoil.tavg-sl-hxy-lnd.mon.GLB", + "land.cSoil.tavg-u-hxy-lnd.mon.GLB", + "land.cVeg.tavg-u-hxy-lnd.mon.GLB", + "land.dcw.tavg-u-hxy-lnd.day.GLB", + "land.depthl.ti-u-hxy-u.fx.GLB", + "land.depthsl.ti-u-hxy-u.fx.GLB", + "land.dslw.tavg-u-hxy-lnd.day.GLB", + "land.evspsblpot.tavg-u-hxy-lnd.day.GLB", + "land.evspsblpot.tavg-u-hxy-lnd.mon.GLB", + "land.evspsblsoi.tavg-u-hxy-u.day.GLB", + "land.evspsblveg.tavg-u-hxy-u.day.GLB", + "land.fFire.tavg-u-hxy-lnd.mon.GLB", + "land.fFireAll.tavg-u-hxy-lnd.mon.GLB", + "land.fFireNat.tavg-u-hxy-lnd.mon.GLB", + "land.gpp.tavg-u-hxy-lnd.mon.GLB", + "land.grassFrac.tavg-u-hxy-u.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.day.GLB", + "land.mrrob.tavg-u-hxy-lnd.day.GLB", + "land.mrros.tavg-u-hxy-lnd.day.GLB", + "land.mrsfl.tavg-sl-hxy-lnd.day.GLB", + "land.mrsfl.tavg-sl-hxy-lnd.mon.GLB", + "land.mrsll.tavg-sl-hxy-lnd.day.GLB", + "land.mrsll.tavg-sl-hxy-lnd.mon.GLB", + "land.mrso.tavg-u-hxy-lnd.day.GLB", + "land.mrsol.tavg-d10cm-hxy-lnd.day.GLB", + "land.mrsol.tavg-sl-hxy-lnd.day.GLB", + "land.mrsol.tavg-sl-hxy-lnd.mon.GLB", + "land.mrsow.tavg-u-hxy-lnd.day.GLB", + "land.mrtws.tavg-u-hxy-lnd.day.GLB", + "land.nbp.tavg-u-hxy-lnd.mon.GLB", + "land.nep.tavg-u-hxy-lnd.mon.GLB", + "land.npp.tavg-u-hxy-lnd.mon.GLB", + "land.ra.tavg-u-hxy-lnd.mon.GLB", + "land.rh.tavg-u-hxy-lnd.mon.GLB", + "land.rivi.tavg-u-hxy-lnd.day.GLB", + "land.rivo.tavg-u-hxy-lnd.day.GLB", + "land.rsds.tavg-u-hxy-lnd.mon.GLB", + "land.rsds.tavg-u-hxy-sn.mon.GLB", + "land.rsus.tavg-u-hxy-lnd.mon.GLB", + "land.rsus.tavg-u-hxy-sn.mon.GLB", + "land.sftgif.tavg-u-hxy-u.mon.GLB", + "land.sftlaf.ti-u-hxy-u.fx.GLB", + "land.shrubFrac.tavg-u-hxy-u.mon.GLB", + "land.treeFrac.tavg-u-hxy-u.mon.GLB", + "land.tsl.tavg-sl-hxy-lnd.day.GLB", + "land.tsl.tavg-sl-hxy-lnd.mon.GLB", + "land.tslsi.tavg-u-hxy-u.day.GLB", + "land.vegFrac.tavg-u-hxy-u.mon.GLB", + "land.vegHeight.tavg-u-hxy-veg.mon.GLB", + "land.wetlandCH4.tavg-u-hxy-lnd.mon.GLB", + "land.wtd.tavg-u-hxy-lnd.day.GLB", + "landIce.acabf.tavg-u-hxy-is.mon.GLB", + "landIce.hfls.tavg-u-hxy-is.mon.GLB", + "landIce.hfss.tavg-u-hxy-is.mon.GLB", + "landIce.icem.tavg-u-hxy-is.mon.GLB", + "landIce.litemptop.tavg-u-hxy-is.mon.GLB", + "landIce.lithk.ti-u-hxy-u.fx.GLB", + "landIce.mrro.tavg-u-hxy-is.mon.GLB", + "landIce.orog.tavg-u-hxy-is.mon.GLB", + "landIce.prra.tavg-u-hxy-is.mon.GLB", + "landIce.prsn.tavg-u-hxy-is.mon.GLB", + "landIce.rlds.tavg-u-hxy-is.mon.GLB", + "landIce.rlus.tavg-u-hxy-is.mon.GLB", + "landIce.rsds.tavg-u-hxy-is.mon.GLB", + "landIce.rsus.tavg-u-hxy-is.mon.GLB", + "landIce.sbl.tavg-u-hxy-is.mon.GLB", + "landIce.sbl.tavg-u-hxy-u.mon.GLB", + "landIce.sftflf.tavg-u-hxy-u.mon.GLB", + "landIce.sftflf.ti-u-hxy-u.fx.GLB", + "landIce.sftgrf.tavg-u-hxy-u.mon.GLB", + "landIce.sftgrf.ti-u-hxy-u.fx.GLB", + "landIce.snc.tavg-u-hxy-is.mon.GLB", + "landIce.snc.tavg-u-hxy-lnd.day.GLB", + "landIce.snd.tavg-u-hxy-lnd.mon.GLB", + "landIce.snicem.tavg-u-hxy-is.mon.GLB", + "landIce.snm.tavg-u-hxy-is.mon.GLB", + "landIce.snm.tavg-u-hxy-lnd.mon.GLB", + "landIce.snrefr.tavg-u-hxy-is.mon.GLB", + "landIce.snw.tavg-u-hxy-lnd.day.GLB", + "landIce.tas.tavg-u-hxy-is.mon.GLB", + "landIce.ts.tavg-u-hxy-is.mon.GLB", + "landIce.tsn.tavg-u-hxy-is.mon.GLB", + "landIce.tsn.tavg-u-hxy-lnd.mon.GLB", + "ocean.absscint.tavg-op4-hxy-sea.mon.GLB", + "ocean.agessc.tavg-ol-hxy-sea.mon.GLB", + "ocean.bigthetao.tavg-ol-hm-sea.mon.GLB", + "ocean.bigthetao.tavg-ol-hxy-sea.dec.GLB", + "ocean.bigthetao.tavg-op20bar-hxy-sea.day.GLB", + "ocean.chcint.tavg-op4-hxy-sea.mon.GLB", + "ocean.ficeberg.tavg-u-hxy-sea.mon.GLB", + "ocean.flandice.tavg-u-hxy-sea.mon.GLB", + "ocean.hfbasin.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpmadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpmdiff.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpsmadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfds.tavg-u-hxy-sea.mon.30S-90S", + "ocean.hfgeou.tavg-u-hxy-sea.mon.GLB", + "ocean.hfx.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfx.tavg-u-hxy-sea.day.GLB", + "ocean.hfx.tavg-u-hxy-sea.mon.GLB", + "ocean.hfy.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfy.tavg-u-hxy-sea.day.GLB", + "ocean.hfy.tavg-u-hxy-sea.mon.GLB", + "ocean.htovgyre.tavg-u-hyb-sea.mon.GLB", + "ocean.htovovrt.tavg-u-hyb-sea.mon.GLB", + "ocean.masscello.tavg-ol-hxy-sea.dec.GLB", + "ocean.masso.tavg-u-hm-sea.dec.GLB", + "ocean.masso.tavg-u-hm-sea.mon.GLB", + "ocean.mlotst.tavg-u-hxy-sea.day.GLB", + "ocean.mlotst.tavg-u-hxy-sea.mon.30S-90S", + "ocean.mlotst.tmax-u-hxy-sea.mon.GLB", + "ocean.mlotst.tmin-u-hxy-sea.mon.GLB", + "ocean.mpw.tavg-u-hxy-sea.mon.GLB", + "ocean.mpw.tpt-u-hxy-sea.3hr.GLB", + "ocean.mpwswell.tavg-u-hxy-sea.mon.GLB", + "ocean.mpwswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.mpwwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.mpwwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.msftbarot.tavg-u-hxy-sea.mon.GLB", + "ocean.msftm.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftm.tavg-rho-hyb-sea.mon.GLB", + "ocean.msfty.tavg-ol-ht-sea.mon.GLB", + "ocean.msfty.tavg-rho-ht-sea.mon.GLB", + "ocean.obvfsq.tavg-ol-hxy-sea.mon.GLB", + "ocean.opottemptend.tavg-ol-hxy-sea.yr.GLB", + "ocean.pbo.tavg-u-hxy-sea.mon.GLB", + "ocean.pfscint.tavg-op4-hxy-sea.mon.GLB", + "ocean.phcint.tavg-op4-hxy-sea.mon.GLB", + "ocean.pso.tavg-u-hxy-sea.mon.GLB", + "ocean.rsds.tavg-u-hxy-ifs.mon.GLB", + "ocean.rsus.tavg-u-hxy-ifs.mon.GLB", + "ocean.scint.tavg-op4-hxy-sea.mon.GLB", + "ocean.sduo.tavg-u-hxy-sea.mon.GLB", + "ocean.sduo.tpt-u-hxy-sea.3hr.GLB", + "ocean.sdvo.tavg-u-hxy-sea.mon.GLB", + "ocean.sdvo.tpt-u-hxy-sea.3hr.GLB", + "ocean.sfx.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfx.tavg-u-hxy-sea.mon.GLB", + "ocean.sfy.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfy.tavg-u-hxy-sea.mon.GLB", + "ocean.sltbasin.tavg-u-hyb-sea.mon.GLB", + "ocean.sltovgyre.tavg-u-hyb-sea.mon.GLB", + "ocean.sltovovrt.tavg-u-hyb-sea.mon.GLB", + "ocean.so.tavg-ol-hm-sea.mon.GLB", + "ocean.so.tavg-ol-hxy-sea.dec.GLB", + "ocean.so.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.sob.tavg-u-hxy-sea.mon.GLB", + "ocean.sos.tavg-u-hm-sea.mon.30S-90S", + "ocean.sos.tavg-u-hm-sea.mon.GLB", + "ocean.sw17O.tavg-ol-hxy-sea.mon.GLB", + "ocean.sw18O.tavg-ol-hxy-sea.mon.GLB", + "ocean.sw2H.tavg-ol-hxy-sea.mon.GLB", + "ocean.swh.tavg-u-hxy-sea.mon.GLB", + "ocean.swh.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhmax.tmax-u-hxy-sea.mon.GLB", + "ocean.swhmax.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhswell.tavg-u-hxy-sea.mon.GLB", + "ocean.swhswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.swhwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.tauuo.tavg-u-hxy-sea.dec.GLB", + "ocean.tauvo.tavg-u-hxy-sea.dec.GLB", + "ocean.thetao.tavg-ol-hm-sea.mon.GLB", + "ocean.thetao.tavg-ol-hxy-sea.dec.GLB", + "ocean.thetao.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.thetao.tavg-op20bar-hxy-sea.day.GLB", + "ocean.thkcello.tavg-ol-hxy-sea.dec.GLB", + "ocean.tob.tavg-u-hxy-sea.mon.GLB", + "ocean.tos.tavg-u-hm-sea.mon.GLB", + "ocean.tos.tavg-u-hxy-sea.mon.30S-90S", + "ocean.tos.tpt-u-hxy-sea.3hr.GLB", + "ocean.tossq.tavg-u-hxy-sea.day.GLB", + "ocean.umo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.uo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.uos.tavg-u-hxy-sea.day.GLB", + "ocean.vmo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.vo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.volcello.tavg-ol-hxy-sea.dec.GLB", + "ocean.volcello.tavg-ol-hxy-sea.mon.GLB", + "ocean.volcello.tavg-ol-hxy-sea.yr.GLB", + "ocean.volcello.ti-ol-hxy-sea.fx.GLB", + "ocean.volo.tavg-u-hm-sea.dec.GLB", + "ocean.volo.tavg-u-hm-sea.mon.GLB", + "ocean.vos.tavg-u-hxy-sea.day.GLB", + "ocean.wdir.tavg-u-hxy-sea.mon.GLB", + "ocean.wdir.tpt-u-hxy-sea.3hr.GLB", + "ocean.wdirswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wdirswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wdirwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wdirwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.wfcorr.tavg-u-hxy-sea.mon.GLB", + "ocean.wfo.tavg-u-hxy-sea.mon.GLB", + "ocean.wmo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.wo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.wpdir.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdir.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpdirswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdirswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpdirwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdirwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpp.tavg-u-hxy-sea.mon.GLB", + "ocean.wpp.tpt-u-hxy-sea.3hr.GLB", + "ocean.wppswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wppswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wppwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wppwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.zos.tavg-u-hxy-sea.mon.30S-90S", + "ocean.zossq.tavg-u-hxy-sea.mon.GLB", + "ocean.zostoga.tavg-u-hm-sea.day.GLB", + "ocnBgchem.bacc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.calc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chl.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chlcalc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chldiat.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chldiaz.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chlmisc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chlpico.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.dfe.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.dissic.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.dmso.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.fgco2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.graz.tavg-ol-hxy-sea.mon.30S-90S", + "ocnBgchem.intdic.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intdoc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intparag.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbfe.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbn.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbp.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbsi.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpcalcite.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpn2.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpoc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpp.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppcalc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppdiat.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppdiaz.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppmisc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppnitrate.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpppico.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.nh4.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.no3.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.ph.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phyc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phycalc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phydiat.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phydiaz.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phymisc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phypico.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.pp.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.spco2.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.zmeso.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zmicro.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zmisc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zooc.tavg-d0m-hxy-sea.mon.30S-90S", + "seaIce.evspsbl.tavg-u-hxy-si.mon.GLB", + "seaIce.prra.tavg-u-hxy-si.mon.GLB", + "seaIce.prsn.tavg-u-hxy-si.mon.GLB", + "seaIce.rlds.tavg-u-hxy-si.day.GLB", + "seaIce.rlds.tavg-u-hxy-si.mon.GLB", + "seaIce.rlus.tavg-u-hxy-si.day.GLB", + "seaIce.rlus.tavg-u-hxy-si.mon.GLB", + "seaIce.rsds.tavg-u-hxy-si.day.GLB", + "seaIce.rsds.tavg-u-hxy-si.mon.GLB", + "seaIce.rsus.tavg-u-hxy-si.day.GLB", + "seaIce.rsus.tavg-u-hxy-si.mon.GLB", + "seaIce.sbl.tavg-u-hxy-si.mon.GLB", + "seaIce.siage.tavg-u-hxy-si.day.GLB", + "seaIce.siage.tavg-u-hxy-si.mon.30S-90S", + "seaIce.siarea.tavg-u-hm-u.mon.NH", + "seaIce.siarea.tavg-u-hm-u.mon.SH", + "seaIce.siareaacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.siconc.tavg-u-hxy-u.mon.30S-90S", + "seaIce.siconca.tavg-u-hxy-u.day.GLB", + "seaIce.siconca.tavg-u-hxy-u.mon.GLB", + "seaIce.sidconcdyn.tavg-u-hxy-sea.mon.GLB", + "seaIce.sidconcth.tavg-u-hxy-sea.mon.GLB", + "seaIce.sidmassdyn.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthsi.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthwat.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmeltbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmeltlat.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmelttop.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassth.tavg-u-hxy-si.mon.GLB", + "seaIce.sieqthick.tavg-u-hxy-si.mon.GLB", + "seaIce.siextent.tavg-u-hm-u.mon.NH", + "seaIce.siextent.tavg-u-hm-u.mon.SH", + "seaIce.siflcondbot.tavg-u-hxy-si.day.GLB", + "seaIce.siflcondbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflcondtop.tavg-u-hxy-si.day.GLB", + "seaIce.siflcondtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sifllattop.tavg-u-hxy-si.day.GLB", + "seaIce.sifllattop.tavg-u-hxy-si.mon.GLB", + "seaIce.siflsensbot.tavg-u-hxy-si.day.GLB", + "seaIce.siflsensbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflsenstop.tavg-u-hxy-si.day.GLB", + "seaIce.siflsenstop.tavg-u-hxy-si.mon.GLB", + "seaIce.siflswdbot.tavg-u-hxy-si.day.GLB", + "seaIce.siflswdbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sihc.tavg-u-hxy-sea.day.GLB", + "seaIce.sihc.tavg-u-hxy-sea.mon.GLB", + "seaIce.siitdconc.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdsnconc.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdsnthick.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdthick.tavg-u-hxy-si.mon.GLB", + "seaIce.simassacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.simpconc.tavg-u-hxy-si.mon.GLB", + "seaIce.sirdgconc.tavg-u-hxy-si.mon.GLB", + "seaIce.sisaltmass.tavg-u-hxy-si.mon.GLB", + "seaIce.sisndmassdyn.tavg-u-hxy-si.mon.GLB", + "seaIce.sisndmasssi.tavg-u-hxy-si.mon.GLB", + "seaIce.sisndmasswind.tavg-u-hxy-si.mon.GLB", + "seaIce.sisnhc.tavg-u-hxy-si.day.GLB", + "seaIce.sisnhc.tavg-u-hxy-si.mon.GLB", + "seaIce.sisnmass.tavg-u-hm-u.mon.NH", + "seaIce.sisnmass.tavg-u-hm-u.mon.SH", + "seaIce.sisnmassacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.sispeed.tavg-u-hxy-si.day.GLB", + "seaIce.sispeed.tavg-u-hxy-si.mon.GLB", + "seaIce.sistressave.tpt-u-hxy-si.mon.GLB", + "seaIce.sistressmax.tpt-u-hxy-si.mon.GLB", + "seaIce.sistrxdtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sistrxubot.tavg-u-hxy-si.mon.GLB", + "seaIce.sistrydtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sistryubot.tavg-u-hxy-si.mon.GLB", + "seaIce.sitempsnic.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-si.day.GLB", + "seaIce.sithick.tavg-u-hxy-si.mon.30S-90S", + "seaIce.sitimefrac.tavg-u-hxy-sea.day.GLB", + "seaIce.sitimefrac.tavg-u-hxy-sea.mon.30S-90S", + "seaIce.siu.tavg-u-hxy-si.day.GLB", + "seaIce.siu.tavg-u-hxy-si.mon.30S-90S", + "seaIce.siv.tavg-u-hxy-si.day.GLB", + "seaIce.siv.tavg-u-hxy-si.mon.30S-90S", + "seaIce.sivol.tavg-u-hm-u.mon.NH", + "seaIce.sivol.tavg-u-hm-u.mon.SH", + "seaIce.snc.tavg-u-hxy-si.mon.GLB", + "seaIce.snd.tavg-u-hxy-sn.day.GLB", + "seaIce.snd.tavg-u-hxy-sn.mon.30S-90S", + "seaIce.snm.tavg-u-hxy-si.mon.GLB", + "seaIce.snw.tavg-u-hxy-si.mon.GLB", + "seaIce.ts.tavg-u-hxy-si.day.GLB", + "seaIce.ts.tavg-u-hxy-si.mon.30S-90S" + ], + "Medium": [ + "atmos.hur.tavg-700hPa-hxy-air.day.GLB", + "atmos.hur.tpt-100hPa-hxy-u.6hr.GLB", + "atmos.hur.tpt-500hPa-hxy-air.6hr.GLB", + "atmos.hur.tpt-850hPa-hxy-air.6hr.GLB", + "atmos.hurs.tpt-h2m-hxy-u.3hr.GLB", + "atmos.noaahi2m.tavg-h2m-hxy-u.day.GLB", + "atmos.noaahi2m.tmax-h2m-hxy-u.day.GLB", + "atmos.ps.tpt-u-hxy-u.3hr.GLB", + "atmos.psitem.tavg-p39-hy-air.day.GLB", + "atmos.rlds.tavg-u-hxy-u.3hr.GLB", + "atmos.rls.tavg-u-hxy-u.day.GLB", + "atmos.rls.tavg-u-hxy-u.mon.GLB", + "atmos.rsds.tavg-u-hxy-u.3hr.GLB", + "atmos.rsdsdiff.tavg-u-hxy-u.day.GLB", + "atmos.rss.tavg-u-hxy-u.day.GLB", + "atmos.rss.tavg-u-hxy-u.mon.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.3hr.GLB", + "atmos.tauunoegw.tavg-p19-hxy-air.mon.GLB", + "atmos.tauunowgw.tavg-p19-hxy-air.mon.GLB", + "atmos.tauuogw.tavg-p19-hxy-air.mon.GLB", + "atmos.tauupbl.tavg-u-hxy-u.day.GLB", + "atmos.tauvnogw.tavg-p19-hxy-air.mon.GLB", + "atmos.tauvogw.tavg-p19-hxy-air.mon.GLB", + "atmos.tauvpbl.tavg-u-hxy-u.day.GLB", + "atmos.tntc.tavg-p39-hy-air.mon.GLB", + "atmos.tntnogw.tavg-p39-hy-air.mon.GLB", + "atmos.tntogw.tavg-p39-hy-air.mon.GLB", + "atmos.tntrlcs.tavg-p39-hy-air.mon.GLB", + "atmos.tntrscs.tavg-p39-hy-air.mon.GLB", + "atmos.tntscp.tavg-p39-hy-air.mon.GLB", + "atmos.ua.tavg-h100m-hxy-u.3hr.GLB", + "atmos.ua.tpt-200hPa-hxy-u.6hr.GLB", + "atmos.utendnogw.tavg-p19-hxy-air.day.GLB", + "atmos.utendnogw.tavg-p19-hxy-air.mon.GLB", + "atmos.utendogw.tavg-p19-hxy-air.day.GLB", + "atmos.utendogw.tavg-p19-hxy-air.mon.GLB", + "atmos.va.tavg-h100m-hxy-u.3hr.GLB", + "atmos.va.tpt-200hPa-hxy-u.6hr.GLB", + "atmos.vtendnogw.tavg-p19-hxy-air.day.GLB", + "atmos.vtendnogw.tavg-p19-hxy-air.mon.GLB", + "atmos.vtendogw.tavg-p19-hxy-air.day.GLB", + "atmos.vtendogw.tavg-p19-hxy-air.mon.GLB", + "atmos.wbgt.tavg-h2m-hxy-u.day.GLB", + "atmos.wbgt.tmax-h2m-hxy-u.day.GLB", + "atmos.zg.tpt-700hPa-hxy-u.6hr.GLB", + "atmos.zg.tpt-925hPa-hxy-u.6hr.GLB", + "land.irrDem.tavg-u-hxy-u.day.GLB", + "land.irrGw.tavg-u-hxy-u.day.GLB", + "land.irrLut.tavg-u-hxy-u.day.GLB", + "land.irrSurf.tavg-u-hxy-u.day.GLB", + "land.mrro.tavg-u-hxy-lnd.3hr.GLB", + "land.mrros.tavg-u-hxy-lnd.3hr.GLB", + "land.mrsol.tpt-d10cm-hxy-lnd.3hr.GLB", + "land.rzwc.tavg-u-hxy-lnd.day.GLB", + "ocean.evspsbl.tavg-u-hxy-ifs.mon.GLB", + "ocean.ficeberg.tavg-ol-hxy-sea.mon.GLB", + "ocean.friver.tavg-u-hxy-sea.mon.GLB", + "ocean.hfacrossline.tavg-u-ht-sea.mon.GLB", + "ocean.hfevapds.tavg-u-hxy-ifs.mon.GLB", + "ocean.hfibthermds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfibthermds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfrainds.tavg-u-hxy-ifs.mon.GLB", + "ocean.hfrunoffds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfrunoffds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfsnthermds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfsnthermds.tavg-u-hxy-sea.mon.GLB", + "ocean.mfo.tavg-u-ht-sea.mon.GLB", + "ocean.sfacrossline.tavg-u-ht-sea.mon.GLB", + "ocean.sfdsi.tavg-u-hxy-sea.mon.GLB", + "ocean.sfriver.tavg-u-hxy-sea.mon.GLB", + "ocean.siflfwbot.tavg-u-hxy-sea.mon.GLB", + "ocean.so.tavg-ol-hxy-sea.day.GLB", + "ocean.tnkebto.tavg-u-hxy-sea.yr.GLB", + "ocean.vsf.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfcorr.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfevap.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfpr.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfriver.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfsit.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.arag.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.arag.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.calc.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.calc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chl.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.dissic.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.o2.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.ph.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.talk.tavg-ol-hxy-sea.mon.GLB", + "seaIce.sfdsi.tavg-u-hxy-si.mon.GLB", + "seaIce.siage.tavg-u-hxy-si.mon.GLB", + "seaIce.siarea.tavg-u-hm-u.day.NH", + "seaIce.siarea.tavg-u-hm-u.day.SH", + "seaIce.sicompstren.tavg-u-hxy-si.mon.GLB", + "seaIce.sidivvel.tpt-u-hxy-si.mon.GLB", + "seaIce.sidmasstranx.tavg-u-hxy-u.mon.GLB", + "seaIce.sidmasstrany.tavg-u-hxy-u.mon.GLB", + "seaIce.sidragbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidragtop.tavg-u-hxy-si.mon.GLB", + "seaIce.siextent.tavg-u-hm-u.day.NH", + "seaIce.siextent.tavg-u-hm-u.day.SH", + "seaIce.sifb.tavg-u-hxy-si.day.GLB", + "seaIce.sifb.tavg-u-hxy-si.mon.GLB", + "seaIce.siflfwbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflfwdrain.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcecoriolx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcecorioly.tavg-u-hxy-si.mon.GLB", + "seaIce.siforceintstrx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforceintstry.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcetiltx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcetilty.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdconc.tavg-u-hxy-si.day.GLB", + "seaIce.siitdsnconc.tavg-u-hxy-si.day.GLB", + "seaIce.siitdsnthick.tavg-u-hxy-si.day.GLB", + "seaIce.siitdthick.tavg-u-hxy-si.day.GLB", + "seaIce.simpconc.tavg-u-hxy-si.day.GLB", + "seaIce.simpeffconc.tavg-u-hxy-si.day.GLB", + "seaIce.simpeffconc.tavg-u-hxy-si.mon.GLB", + "seaIce.simprefrozen.tavg-u-hxy-simp.day.GLB", + "seaIce.simprefrozen.tavg-u-hxy-simp.mon.GLB", + "seaIce.simpthick.tavg-u-hxy-si.day.GLB", + "seaIce.simpthick.tavg-u-hxy-simp.mon.GLB", + "seaIce.sirdgconc.tavg-u-hxy-si.day.GLB", + "seaIce.sisali.tavg-u-hxy-si.day.GLB", + "seaIce.sisali.tavg-u-hxy-si.mon.GLB", + "seaIce.sisaltmass.tavg-u-hxy-si.day.GLB", + "seaIce.sishearvel.tpt-u-hxy-si.mon.GLB", + "seaIce.sisnmass.tavg-u-hm-u.day.NH", + "seaIce.sisnmass.tavg-u-hm-u.day.SH", + "seaIce.sitempbot.tavg-u-hxy-si.day.GLB", + "seaIce.sitempbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sitempsnic.tavg-u-hxy-si.day.GLB", + "seaIce.sithick.tavg-u-hxy-sir.day.GLB", + "seaIce.sithick.tavg-u-hxy-sir.mon.GLB", + "seaIce.sivol.tavg-u-hm-u.day.NH", + "seaIce.sivol.tavg-u-hm-u.day.SH" + ], + "Low": [ + "aerosol.ccldncl.tavg-u-hxy-ccl.day.GLB", + "aerosol.sfpm1.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.sfpm10.tavg-h2m-hxy-u.1hr.GLB", + "atmos.cldnci.tavg-u-hxy-cl.day.GLB", + "atmos.cldnvi.tavg-u-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.1hr.GLB", + "atmos.hurs.tmin-h2m-hxy-crp.day.GLB", + "atmos.loadbc.tavg-u-hxy-u.day.GLB", + "atmos.loaddust.tavg-u-hxy-u.day.GLB", + "atmos.loadnh4.tavg-u-hxy-u.day.GLB", + "atmos.loadno3.tavg-u-hxy-u.day.GLB", + "atmos.loadoa.tavg-u-hxy-u.day.GLB", + "atmos.loadpoa.tavg-u-hxy-u.day.GLB", + "atmos.loadso4.tavg-u-hxy-u.day.GLB", + "atmos.loadsoa.tavg-u-hxy-u.day.GLB", + "atmos.loadss.tavg-u-hxy-u.day.GLB", + "atmos.pr.tavg-u-hxy-crp.day.GLB", + "atmos.reffcclwtop.tavg-u-hxy-ccl.day.GLB", + "atmos.reffsclwtop.tavg-u-hxy-scl.day.GLB", + "atmos.rsds.tavg-u-hxy-u.1hr.GLB", + "atmos.rsdscsdiff.tavg-u-hxy-u.day.GLB", + "atmos.scldncl.tavg-u-hxy-scl.day.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.1hr.GLB", + "atmos.tas.tmax-h2m-hxy-crp.day.GLB", + "atmos.tas.tmin-h2m-hxy-crp.day.GLB", + "atmos.zfull.ti-al-hxy-u.fx.GLB", + "atmosChem.drynh3.tavg-u-hxy-u.day.GLB", + "atmosChem.drynh4.tavg-u-hxy-u.day.GLB", + "atmosChem.drynoy.tavg-u-hxy-u.day.GLB", + "atmosChem.wetnh3.tavg-u-hxy-u.day.GLB", + "atmosChem.wetnh4.tavg-u-hxy-u.day.GLB", + "atmosChem.wetnoy.tavg-u-hxy-u.day.GLB", + "land.baresoilFrac.tavg-u-hxy-u.mon.GLB", + "land.c3PftFrac.tavg-u-hxy-u.mon.GLB", + "land.c4PftFrac.tavg-u-hxy-u.mon.GLB", + "land.cropFrac.tavg-u-hxy-u.mon.GLB", + "land.cropFracC3.tavg-u-hxy-u.mon.GLB", + "land.cropFracC4.tavg-u-hxy-u.mon.GLB", + "land.fHarvestToAtmos.tavg-u-hxy-lnd.mon.GLB", + "land.irrLut.tavg-u-hxy-multi.mon.GLB", + "land.lai.tavg-u-hxy-lnd.day.GLB", + "land.pastureFrac.tavg-u-hxy-u.mon.GLB", + "land.pastureFracC3.tavg-u-hxy-u.mon.GLB", + "land.pastureFracC4.tavg-u-hxy-u.mon.GLB", + "land.prveg.tavg-u-hxy-lnd.mon.GLB", + "land.residualFrac.tavg-u-hxy-u.mon.GLB", + "land.tas.tavg-u-hxy-u.1hr.GLB", + "land.tran.tavg-u-hxy-lnd.mon.GLB", + "ocean.difmxybo.tavg-ol-hxy-sea.yr.GLB", + "ocean.difmxylo.tavg-ol-hxy-sea.yr.GLB", + "ocean.diftrblo.tavg-ol-hxy-sea.yr.GLB", + "ocean.diftrelo.tavg-ol-hxy-sea.yr.GLB", + "ocean.difvho.tavg-ol-hxy-sea.yr.GLB", + "ocean.difvso.tavg-ol-hxy-sea.yr.GLB", + "ocean.dispkexyfo.tavg-u-hxy-sea.yr.GLB", + "ocean.dxto.ti-u-hxy-u.fx.GLB", + "ocean.dxuo.ti-u-hxy-u.fx.GLB", + "ocean.dxvo.ti-u-hxy-u.fx.GLB", + "ocean.dyto.ti-u-hxy-u.fx.GLB", + "ocean.dyuo.ti-u-hxy-u.fx.GLB", + "ocean.dyvo.ti-u-hxy-u.fx.GLB", + "ocean.mlotstsq.tavg-u-hxy-sea.mon.GLB", + "ocean.msftmmpa.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftmmpa.tavg-rho-hyb-sea.mon.GLB", + "ocean.msftmsmpa.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftypa.tavg-ol-ht-sea.mon.GLB", + "ocean.msftypa.tavg-rho-ht-sea.mon.GLB", + "ocean.ocontempdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontempmint.tavg-u-hxy-sea.yr.GLB", + "ocean.ocontemppadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemppmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemppsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemprmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemptend.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottempdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottempmint.tavg-u-hxy-sea.yr.GLB", + "ocean.opottemppadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemppmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemppsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemprmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemptend.tavg-ol-hxy-sea.dec.GLB", + "ocean.osaltdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpsmadvect.tavg-ol-hxy-sea.mon.GLB", + "ocean.osaltpsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltrmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osalttend.tavg-ol-hxy-sea.yr.GLB", + "ocean.rsdoabsorb.tavg-ol-hxy-sea.yr.GLB", + "ocean.somint.tavg-u-hxy-sea.yr.GLB", + "ocean.sossq.tavg-u-hxy-sea.mon.GLB", + "ocean.thkcelluo.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcellvo.tavg-ol-hxy-sea.mon.GLB", + "ocean.tnpeo.tavg-u-hxy-sea.yr.GLB", + "ocean.tossq.tavg-u-hxy-sea.mon.GLB" + ] + }, + "1pctCO2-bgc": { + "Core": [ + "atmos.areacella.ti-u-hxy-u.fx.GLB", + "atmos.cl.tavg-al-hxy-u.mon.GLB", + "atmos.cli.tavg-al-hxy-u.mon.GLB", + "atmos.clivi.tavg-u-hxy-u.mon.GLB", + "atmos.clt.tavg-u-hxy-u.day.GLB", + "atmos.clt.tavg-u-hxy-u.mon.GLB", + "atmos.clw.tavg-al-hxy-u.mon.GLB", + "atmos.clwvi.tavg-u-hxy-u.mon.GLB", + "atmos.evspsbl.tavg-u-hxy-u.mon.GLB", + "atmos.hfls.tavg-u-hxy-u.mon.GLB", + "atmos.hfss.tavg-u-hxy-u.mon.GLB", + "atmos.hur.tavg-p19-hxy-air.mon.GLB", + "atmos.hur.tavg-p19-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.6hr.GLB", + "atmos.hurs.tavg-h2m-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.mon.GLB", + "atmos.hus.tavg-p19-hxy-u.day.GLB", + "atmos.hus.tavg-p19-hxy-u.mon.GLB", + "atmos.huss.tavg-h2m-hxy-u.day.GLB", + "atmos.huss.tavg-h2m-hxy-u.mon.GLB", + "atmos.huss.tpt-h2m-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.1hr.GLB", + "atmos.pr.tavg-u-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.day.GLB", + "atmos.pr.tavg-u-hxy-u.mon.GLB", + "atmos.prc.tavg-u-hxy-u.mon.GLB", + "atmos.prsn.tavg-u-hxy-u.mon.GLB", + "atmos.prw.tavg-u-hxy-u.mon.GLB", + "atmos.ps.tavg-u-hxy-u.day.GLB", + "atmos.ps.tavg-u-hxy-u.mon.GLB", + "atmos.psl.tavg-u-hxy-u.day.GLB", + "atmos.psl.tavg-u-hxy-u.mon.GLB", + "atmos.rlds.tavg-u-hxy-u.mon.GLB", + "atmos.rldscs.tavg-u-hxy-u.mon.GLB", + "atmos.rlus.tavg-u-hxy-u.mon.GLB", + "atmos.rluscs.tavg-u-hxy-u.mon.GLB", + "atmos.rlut.tavg-u-hxy-u.mon.GLB", + "atmos.rlutcs.tavg-u-hxy-u.mon.GLB", + "atmos.rsds.tavg-u-hxy-u.day.GLB", + "atmos.rsds.tavg-u-hxy-u.mon.GLB", + "atmos.rsdscs.tavg-u-hxy-u.mon.GLB", + "atmos.rsdt.tavg-u-hxy-u.mon.GLB", + "atmos.rsus.tavg-u-hxy-u.mon.GLB", + "atmos.rsuscs.tavg-u-hxy-u.mon.GLB", + "atmos.rsut.tavg-u-hxy-u.mon.GLB", + "atmos.rsutcs.tavg-u-hxy-u.mon.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.day.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.mon.GLB", + "atmos.sftlf.ti-u-hxy-u.fx.GLB", + "atmos.ta.tavg-p19-hxy-air.day.GLB", + "atmos.ta.tavg-p19-hxy-air.mon.GLB", + "atmos.ta.tpt-p3-hxy-air.6hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.day.GLB", + "atmos.tas.tavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tmax-h2m-hxy-u.day.GLB", + "atmos.tas.tmaxavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tmin-h2m-hxy-u.day.GLB", + "atmos.tas.tminavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tpt-h2m-hxy-u.3hr.GLB", + "atmos.tauu.tavg-u-hxy-u.mon.GLB", + "atmos.tauv.tavg-u-hxy-u.mon.GLB", + "atmos.ts.tavg-u-hxy-u.mon.GLB", + "atmos.ua.tavg-p19-hxy-air.day.GLB", + "atmos.ua.tavg-p19-hxy-air.mon.GLB", + "atmos.ua.tpt-p3-hxy-air.6hr.GLB", + "atmos.uas.tavg-h10m-hxy-u.day.GLB", + "atmos.uas.tavg-h10m-hxy-u.mon.GLB", + "atmos.uas.tpt-h10m-hxy-u.3hr.GLB", + "atmos.va.tavg-p19-hxy-air.day.GLB", + "atmos.va.tavg-p19-hxy-air.mon.GLB", + "atmos.va.tpt-p3-hxy-air.6hr.GLB", + "atmos.vas.tavg-h10m-hxy-u.day.GLB", + "atmos.vas.tavg-h10m-hxy-u.mon.GLB", + "atmos.vas.tpt-h10m-hxy-u.3hr.GLB", + "atmos.wap.tavg-p19-hxy-air.mon.GLB", + "atmos.wap.tavg-p19-hxy-u.day.GLB", + "atmos.zg.tavg-p19-hxy-air.day.GLB", + "atmos.zg.tavg-p19-hxy-air.mon.GLB", + "land.evspsblsoi.tavg-u-hxy-lnd.mon.GLB", + "land.evspsblveg.tavg-u-hxy-lnd.mon.GLB", + "land.lai.tavg-u-hxy-lnd.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.mon.GLB", + "land.mrros.tavg-u-hxy-lnd.mon.GLB", + "land.mrso.tavg-u-hxy-lnd.mon.GLB", + "land.mrsofc.ti-u-hxy-lnd.fx.GLB", + "land.mrsol.tavg-d10cm-hxy-lnd.mon.GLB", + "land.orog.ti-u-hxy-u.fx.GLB", + "land.rootd.ti-u-hxy-lnd.fx.GLB", + "land.sftgif.ti-u-hxy-u.fx.GLB", + "land.slthick.ti-sl-hxy-lnd.fx.GLB", + "landIce.mrfso.tavg-u-hxy-lnd.mon.GLB", + "landIce.snc.tavg-u-hxy-lnd.mon.GLB", + "landIce.snw.tavg-u-hxy-lnd.mon.GLB", + "ocean.areacello.ti-u-hxy-u.fx.GLB", + "ocean.basin.ti-u-hxy-u.fx.GLB", + "ocean.bigthetao.tavg-ol-hxy-sea.mon.GLB", + "ocean.deptho.ti-u-hxy-sea.fx.GLB", + "ocean.hfds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfgeou.ti-u-hxy-sea.fx.GLB", + "ocean.masscello.tavg-ol-hxy-sea.mon.GLB", + "ocean.masscello.ti-ol-hxy-sea.fx.GLB", + "ocean.mlotst.tavg-u-hxy-sea.mon.GLB", + "ocean.sftof.ti-u-hxy-u.fx.GLB", + "ocean.so.tavg-ol-hxy-sea.mon.GLB", + "ocean.sos.tavg-u-hxy-sea.day.GLB", + "ocean.sos.tavg-u-hxy-sea.mon.GLB", + "ocean.tauuo.tavg-u-hxy-sea.mon.GLB", + "ocean.tauvo.tavg-u-hxy-sea.mon.GLB", + "ocean.thetao.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcello.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcello.ti-ol-hxy-sea.fx.GLB", + "ocean.tos.tavg-u-hxy-sea.day.GLB", + "ocean.tos.tavg-u-hxy-sea.mon.GLB", + "ocean.umo.tavg-ol-hxy-sea.mon.GLB", + "ocean.uo.tavg-ol-hxy-sea.mon.GLB", + "ocean.vmo.tavg-ol-hxy-sea.mon.GLB", + "ocean.vo.tavg-ol-hxy-sea.mon.GLB", + "ocean.wmo.tavg-ol-hxy-sea.mon.GLB", + "ocean.wo.tavg-ol-hxy-sea.mon.GLB", + "ocean.zos.tavg-u-hxy-sea.day.GLB", + "ocean.zos.tavg-u-hxy-sea.mon.GLB", + "ocean.zostoga.tavg-u-hm-sea.mon.GLB", + "seaIce.siconc.tavg-u-hxy-u.day.GLB", + "seaIce.siconc.tavg-u-hxy-u.mon.GLB", + "seaIce.simass.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-si.mon.GLB", + "seaIce.sitimefrac.tavg-u-hxy-sea.mon.GLB", + "seaIce.siu.tavg-u-hxy-si.mon.GLB", + "seaIce.siv.tavg-u-hxy-si.mon.GLB", + "seaIce.snd.tavg-u-hxy-sn.mon.GLB", + "seaIce.ts.tavg-u-hxy-si.mon.GLB" + ], + "High": [ + "aerosol.abs550aer.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550bc.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550dust.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550no3.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550oa.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550so4.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550ss.tavg-u-hxy-u.mon.GLB", + "aerosol.airmass.tavg-al-hxy-u.mon.GLB", + "aerosol.aoanh.tavg-al-hxy-u.mon.NH", + "aerosol.bry.tavg-p39-hy-air.mon.GLB", + "aerosol.bs550aer.tpt-al-hxy-u.6hr.GLB", + "aerosol.c2h6.tavg-al-hxy-u.mon.GLB", + "aerosol.c3h6.tavg-al-hxy-u.mon.GLB", + "aerosol.c3h8.tavg-al-hxy-u.mon.GLB", + "aerosol.ccldncl.tavg-u-hxy-ccl.mon.GLB", + "aerosol.ccn.tavg-u-hxy-ccl.mon.30S-90S", + "aerosol.ccn.tavg-u-hxy-ccl.mon.GLB", + "aerosol.ccn1.tavg-al-hxy-u.mon.30S-90S", + "aerosol.ccn1.tavg-al-hxy-u.mon.GLB", + "aerosol.ccnp02.tavg-al-hxy-u.mon.30S-90S", + "aerosol.ccnp02.tavg-al-hxy-u.mon.GLB", + "aerosol.cdnc.tavg-al-hxy-u.mon.30S-90S", + "aerosol.cdnc.tavg-al-hxy-u.mon.GLB", + "aerosol.cfc114.tavg-al-hxy-u.mon.GLB", + "aerosol.ch3coch3.tavg-al-hxy-u.mon.GLB", + "aerosol.cheaqpso4.tavg-al-hxy-u.mon.GLB", + "aerosol.chegpso4.tavg-al-hxy-u.mon.GLB", + "aerosol.chepasoa.tavg-u-hxy-u.mon.GLB", + "aerosol.chepsoa.tavg-u-hxy-u.mon.GLB", + "aerosol.cly.tavg-p39-hy-air.mon.GLB", + "aerosol.co.tavg-al-hxy-u.mon.GLB", + "aerosol.co.tavg-h2m-hxy-u.day.GLB", + "aerosol.cod.tavg-u-hxy-u.day.GLB", + "aerosol.cod.tavg-u-hxy-u.mon.30S-90S", + "aerosol.cod.tavg-u-hxy-u.mon.GLB", + "aerosol.conccn.tavg-al-hxy-u.mon.GLB", + "aerosol.conccn.tpt-u-hs-u.3hr.GLB", + "aerosol.drybc.tavg-u-hxy-u.mon.GLB", + "aerosol.drydust.tavg-u-hxy-u.mon.GLB", + "aerosol.dryno3.tavg-u-hxy-u.mon.GLB", + "aerosol.dryo3.tavg-u-hxy-u.mon.GLB", + "aerosol.dryoa.tavg-u-hxy-u.mon.GLB", + "aerosol.dryso2.tavg-u-hxy-u.mon.GLB", + "aerosol.dryso4.tavg-u-hxy-u.mon.GLB", + "aerosol.dryss.tavg-u-hxy-u.mon.GLB", + "aerosol.ec550aer.tavg-al-hxy-u.mon.GLB", + "aerosol.ec550aer.tpt-u-hxy-u.6hr.GLB", + "aerosol.emiaco.tavg-u-hxy-u.mon.GLB", + "aerosol.emianox.tavg-u-hxy-u.mon.GLB", + "aerosol.emiaoa.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbbc.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbch4.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbco.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbdms.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbnh3.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbnox.tavg-u-hxy-u.mon.GLB", + "aerosol.emibboa.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbso2.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbvoc.tavg-u-hxy-u.mon.GLB", + "aerosol.emibc.tavg-u-hxy-u.mon.GLB", + "aerosol.emibvoc.tavg-u-hxy-u.mon.GLB", + "aerosol.emico.tavg-u-hxy-u.mon.GLB", + "aerosol.emidms.tavg-u-hxy-u.mon.30S-90S", + "aerosol.emidms.tavg-u-hxy-u.mon.GLB", + "aerosol.emidust.tavg-u-hxy-u.mon.GLB", + "aerosol.emiisop.tavg-u-hxy-u.mon.GLB", + "aerosol.emilnox.tavg-al-hxy-u.mon.GLB", + "aerosol.eminh3.tavg-u-hxy-u.mon.GLB", + "aerosol.eminox.tavg-u-hxy-u.mon.GLB", + "aerosol.emioa.tavg-u-hxy-u.mon.GLB", + "aerosol.emiso2.tavg-u-hxy-u.mon.GLB", + "aerosol.emiso4.tavg-u-hxy-u.mon.GLB", + "aerosol.emiss.tavg-u-hxy-u.mon.30S-90S", + "aerosol.emiss.tavg-u-hxy-u.mon.GLB", + "aerosol.emivoc.tavg-u-hxy-u.mon.GLB", + "aerosol.h2o.tavg-al-hxy-u.mon.GLB", + "aerosol.h2o.tavg-p39-hy-air.mon.GLB", + "aerosol.hcfc22.tavg-al-hxy-u.mon.GLB", + "aerosol.hcho.tavg-al-hxy-u.mon.GLB", + "aerosol.hcl.tavg-al-hxy-u.mon.GLB", + "aerosol.hcl.tavg-p39-hy-air.mon.GLB", + "aerosol.hfc125.tavg-al-hxy-u.mon.GLB", + "aerosol.hfc134a.tavg-al-hxy-u.mon.GLB", + "aerosol.hno3.tavg-al-hxy-u.mon.GLB", + "aerosol.hno3.tavg-p39-hy-air.mon.GLB", + "aerosol.ho2.tavg-p39-hy-air.mon.GLB", + "aerosol.isop.tavg-al-hxy-u.mon.GLB", + "aerosol.jno2.tavg-al-hxy-u.mon.GLB", + "aerosol.lossch4.tavg-al-hxy-u.mon.GLB", + "aerosol.lossco.tavg-al-hxy-u.mon.GLB", + "aerosol.lossn2o.tavg-al-hxy-u.mon.GLB", + "aerosol.lwp.tavg-u-hxy-u.mon.GLB", + "aerosol.mmraerh2o.tavg-al-hxy-u.mon.GLB", + "aerosol.mmraerh2o.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmraerh2o.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrbc.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrbc.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrbc.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrbc.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrdust.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrdust.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrdust.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrdust.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrnh4.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrnh4.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrnh4.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrnh4.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrno3.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrno3.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrno3.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrno3.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmroa.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmroa.tavg-al-hxy-u.mon.GLB", + "aerosol.mmroa.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmroa.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrpm1.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrpm1.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrpm2p5.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrpm2p5.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrso4.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrso4.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrso4.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrso4.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrsoa.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrsoa.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrsoa.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrss.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrss.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrss.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrss.tpt-h2m-hs-u.3hr.GLB", + "aerosol.nh50.tavg-al-hxy-u.mon.GLB", + "aerosol.no.tavg-al-hxy-u.mon.GLB", + "aerosol.no2.tavg-al-hxy-u.mon.GLB", + "aerosol.no2.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.noy.tavg-p39-hy-air.mon.GLB", + "aerosol.o3.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.o3.tmax-h2m-hxy-u.day.GLB", + "aerosol.o3loss.tavg-al-hxy-u.mon.GLB", + "aerosol.o3prod.tavg-al-hxy-u.mon.GLB", + "aerosol.od443aer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550aer.tavg-u-hxy-u.day.GLB", + "aerosol.od550aer.tavg-u-hxy-u.mon.30S-90S", + "aerosol.od550aer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550aerh2o.tavg-u-hxy-u.mon.GLB", + "aerosol.od550bb.tavg-u-hxy-u.mon.GLB", + "aerosol.od550bc.tavg-u-hxy-u.mon.GLB", + "aerosol.od550csaer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550dust.tavg-u-hxy-u.mon.GLB", + "aerosol.od550lt1aer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550no3.tavg-u-hxy-u.mon.GLB", + "aerosol.od550oa.tavg-u-hxy-u.mon.GLB", + "aerosol.od550so4.tavg-u-hxy-u.mon.GLB", + "aerosol.od550soa.tavg-u-hxy-u.mon.GLB", + "aerosol.od550ss.tavg-u-hxy-u.mon.GLB", + "aerosol.od865aer.tavg-u-hxy-u.mon.GLB", + "aerosol.oh.tavg-al-hxy-u.mon.GLB", + "aerosol.oh.tavg-p39-hy-air.mon.GLB", + "aerosol.pan.tavg-al-hxy-u.mon.GLB", + "aerosol.photo1d.tavg-al-hxy-u.mon.GLB", + "aerosol.pod0.tsum-u-hxy-u.mon.GLB", + "aerosol.reffccwctop.tavg-u-hxy-cl.mon.GLB", + "aerosol.reffclwtop.tavg-u-hxy-cl.mon.30S-90S", + "aerosol.reffclwtop.tavg-u-hxy-cl.mon.GLB", + "aerosol.rluscsaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rlutaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rlutcsaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rsutaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rsutcsaf.tavg-u-hxy-u.mon.GLB", + "aerosol.sfpm1.tavg-h2m-hxy-u.day.GLB", + "aerosol.sfpm10.tavg-al-hxy-u.mon.30S-90S", + "aerosol.sfpm10.tavg-al-hxy-u.mon.GLB", + "aerosol.sfpm10.tavg-h2m-hxy-u.day.GLB", + "aerosol.sfpm25.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.sfpm25.tavg-h2m-hxy-u.day.GLB", + "aerosol.so2.tavg-al-hxy-u.mon.30S-90S", + "aerosol.so2.tavg-al-hxy-u.mon.GLB", + "aerosol.so2.tavg-h2m-hxy-u.day.GLB", + "aerosol.so2.tpt-h2m-hs-u.3hr.GLB", + "aerosol.tatp.tavg-u-hxy-u.mon.GLB", + "aerosol.toz.tavg-u-hxy-u.day.GLB", + "aerosol.toz.tavg-u-hxy-u.mon.GLB", + "aerosol.tropoz.tavg-u-hxy-u.mon.GLB", + "aerosol.ttop.tavg-u-hxy-cl.mon.GLB", + "aerosol.ua.tavg-10hPa-hxy-air.day.GLB", + "aerosol.vt100.tavg-100hPa-hy-air.mon.GLB", + "aerosol.wa.tavg-al-hxy-u.mon.GLB", + "aerosol.wetbc.tavg-u-hxy-u.mon.GLB", + "aerosol.wetdust.tavg-u-hxy-u.mon.GLB", + "aerosol.wetoa.tavg-u-hxy-u.mon.GLB", + "aerosol.wetso2.tavg-u-hxy-u.mon.GLB", + "aerosol.wetso4.tavg-u-hxy-u.mon.GLB", + "aerosol.wetss.tavg-u-hxy-u.mon.GLB", + "aerosol.zg.tavg-10hPa-hxy-air.day.GLB", + "atmos.albisccp.tavg-u-hxy-cl.mon.30S-90S", + "atmos.aod550volso4.tavg-u-hxy-u.mon.GLB", + "atmos.bldep.tavg-u-hxy-u.mon.GLB", + "atmos.bldep.tmax-u-hxy-u.day.GLB", + "atmos.bldep.tmin-u-hxy-u.day.GLB", + "atmos.cl.tavg-al-hxy-u.day.GLB", + "atmos.cl.tavg-al-hxy-u.mon.30S-90S", + "atmos.clc.tavg-al-hxy-u.mon.30S-90S", + "atmos.clc.tavg-al-hxy-u.mon.GLB", + "atmos.clcalipso.tavg-220hPa-hxy-air.mon.30S-90S", + "atmos.clcalipso.tavg-220hPa-hxy-air.mon.GLB", + "atmos.clcalipso.tavg-560hPa-hxy-air.mon.30S-90S", + "atmos.clcalipso.tavg-560hPa-hxy-air.mon.GLB", + "atmos.clcalipso.tavg-840hPa-hxy-air.mon.30S-90S", + "atmos.clcalipso.tavg-840hPa-hxy-air.mon.GLB", + "atmos.clcalipso.tavg-h40-hxy-air.mon.30S-90S", + "atmos.cldnci.tavg-u-hxy-cl.mon.GLB", + "atmos.cldncl.tavg-u-hxy-cl.mon.GLB", + "atmos.cldnvi.tavg-u-hxy-u.mon.GLB", + "atmos.cli.tavg-al-hxy-u.mon.30S-90S", + "atmos.clic.tavg-al-hxy-u.mon.30S-90S", + "atmos.clis.tavg-al-hxy-u.mon.30S-90S", + "atmos.clisccp.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clisccp.tavg-p7c-hxy-air.mon.GLB", + "atmos.clivi.tavg-u-hxy-u.mon.30S-90S", + "atmos.clivimodis.tavg-u-hxy-u.mon.30S-90S", + "atmos.clmodis.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clmodis.tavg-p7c-hxy-air.mon.GLB", + "atmos.clmodisice.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clmodisice.tavg-p7c-hxy-air.mon.GLB", + "atmos.clmodisiceReff.tavg-u-hxy-u.mon.GLB", + "atmos.clmodisliquid.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clmodisliquid.tavg-p7c-hxy-air.mon.GLB", + "atmos.clmodisliquidReff.tavg-u-hxy-u.mon.GLB", + "atmos.cls.tavg-al-hxy-u.mon.30S-90S", + "atmos.clt.tavg-u-hxy-lnd.day.GLB", + "atmos.clt.tavg-u-hxy-u.mon.30S-90S", + "atmos.cltc.tavg-u-hxy-u.mon.GLB", + "atmos.cltcalipso.tavg-u-hxy-u.mon.30S-90S", + "atmos.cltisccp.tavg-u-hxy-u.mon.30S-90S", + "atmos.cltmodis.tavg-u-hxy-u.mon.30S-90S", + "atmos.clw.tavg-al-hxy-u.mon.30S-90S", + "atmos.clwc.tavg-al-hxy-u.mon.30S-90S", + "atmos.clws.tavg-al-hxy-u.mon.30S-90S", + "atmos.clwvi.tavg-u-hxy-u.mon.30S-90S", + "atmos.clwvimodis.tavg-u-hxy-u.mon.30S-90S", + "atmos.co2.tavg-al-hxy-u.mon.GLB", + "atmos.co2.tavg-p19-hxy-air.mon.GLB", + "atmos.co2.tclm-u-hm-u.mon.GLB", + "atmos.co23D.tavg-al-hxy-u.mon.GLB", + "atmos.co2mass.tavg-u-hm-u.mon.GLB", + "atmos.dmc.tavg-alh-hxy-u.mon.30S-90S", + "atmos.edt.tavg-al-hxy-u.mon.30S-90S", + "atmos.evspsbl.tavg-u-hxy-lnd.day.GLB", + "atmos.evu.tavg-al-hxy-u.mon.30S-90S", + "atmos.fco2antt.tavg-u-hxy-u.mon.GLB", + "atmos.fco2fos.tavg-u-hxy-u.mon.GLB", + "atmos.fco2nat.tavg-u-hxy-u.mon.GLB", + "atmos.hfls.tavg-u-hxy-u.day.GLB", + "atmos.hfls.tavg-u-hxy-u.mon.30S-90S", + "atmos.hfss.tavg-u-hxy-u.day.GLB", + "atmos.hfss.tavg-u-hxy-u.mon.30S-90S", + "atmos.hur.tavg-al-hxy-u.mon.30S-90S", + "atmos.hur.tavg-al-hxy-u.mon.GLB", + "atmos.hur.tavg-p19-hxy-air.mon.30S-90S", + "atmos.hurs.tavg-h2m-hxy-u.mon.30S-90S", + "atmos.hurs.tmax-h2m-hxy-u.day.GLB", + "atmos.hurs.tmin-h2m-hxy-u.day.GLB", + "atmos.hus.tavg-al-hxy-u.mon.30S-90S", + "atmos.hus.tavg-al-hxy-u.mon.GLB", + "atmos.hus.tavg-p19-hxy-u.mon.30S-90S", + "atmos.hus.tpt-al-hxy-u.6hr.GLB", + "atmos.hus.tpt-p7h-hxy-air.6hr.GLB", + "atmos.huss.tavg-h2m-hxy-u.mon.30S-90S", + "atmos.huss.tpt-h2m-hxy-u.1hr.GLB", + "atmos.loadso4.tavg-u-hxy-u.mon.GLB", + "atmos.mc.tavg-alh-hxy-u.mon.GLB", + "atmos.mcd.tavg-alh-hxy-u.mon.30S-90S", + "atmos.mcu.tavg-alh-hxy-u.mon.30S-90S", + "atmos.mcu.tavg-alh-hxy-u.mon.GLB", + "atmos.pctisccp.tavg-u-hxy-cl.mon.30S-90S", + "atmos.pfull.tavg-al-hxy-u.mon.GLB", + "atmos.pfull.tclm-al-hxy-u.mon.30S-90S", + "atmos.phalf.tavg-alh-hxy-u.mon.GLB", + "atmos.pr.tavg-u-hxy-u.mon.30S-90S", + "atmos.pr.tmax-u-hxy-u.day.GLB", + "atmos.pr.tpt-u-hxy-u.6hr.GLB", + "atmos.prc.tavg-u-hxy-u.mon.30S-90S", + "atmos.prra.tavg-u-hxy-lnd.day.GLB", + "atmos.prra.tavg-u-hxy-u.mon.30S-90S", + "atmos.prsn.tavg-u-hxy-u.3hr.GLB", + "atmos.prsn.tavg-u-hxy-u.day.GLB", + "atmos.prsn.tavg-u-hxy-u.mon.30S-90S", + "atmos.prw.tavg-u-hxy-u.day.GLB", + "atmos.prw.tavg-u-hxy-u.mon.30S-90S", + "atmos.ps.tavg-u-hxy-u.1hr.GLB", + "atmos.ps.tavg-u-hxy-u.mon.30S-90S", + "atmos.ps.tpt-u-hxy-u.6hr.GLB", + "atmos.psl.tavg-u-hxy-u.mon.30S-90S", + "atmos.psl.tpt-u-hxy-u.1hr.GLB", + "atmos.psl.tpt-u-hxy-u.6hr.GLB", + "atmos.ptp.tavg-u-hxy-u.mon.GLB", + "atmos.reffcclwtop.tavg-u-hxy-ccl.mon.GLB", + "atmos.reffclic.tavg-al-hxy-ccl.mon.30S-90S", + "atmos.reffclis.tavg-al-hxy-scl.mon.30S-90S", + "atmos.reffclwc.tavg-al-hxy-ccl.mon.30S-90S", + "atmos.reffclws.tavg-al-hxy-scl.mon.30S-90S", + "atmos.reffsclwtop.tavg-u-hxy-scl.mon.GLB", + "atmos.rld.tavg-alh-hxy-u.mon.GLB", + "atmos.rld4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rldcs.tavg-alh-hxy-u.mon.GLB", + "atmos.rldcs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rlds.tavg-u-hxy-u.1hr.GLB", + "atmos.rlds.tavg-u-hxy-u.day.GLB", + "atmos.rlds.tavg-u-hxy-u.mon.30S-90S", + "atmos.rldscs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rlu.tavg-alh-hxy-u.mon.GLB", + "atmos.rlu4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rlucs.tavg-alh-hxy-u.mon.GLB", + "atmos.rlucs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rlus.tavg-u-hxy-u.day.GLB", + "atmos.rlus.tavg-u-hxy-u.mon.30S-90S", + "atmos.rlut.tavg-u-hxy-u.mon.30S-90S", + "atmos.rlut4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rlutcs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rlutcs4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rsd.tavg-alh-hxy-u.mon.GLB", + "atmos.rsd4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsdcs.tavg-alh-hxy-u.mon.GLB", + "atmos.rsdcs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsds.tavg-u-hxy-u.1hr.GLB", + "atmos.rsds.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsdscs.tavg-u-hxy-u.day.GLB", + "atmos.rsdscs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsdt.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsu.tavg-alh-hxy-u.mon.GLB", + "atmos.rsu4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsucs.tavg-alh-hxy-u.mon.GLB", + "atmos.rsucs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsus.tavg-u-hxy-u.day.GLB", + "atmos.rsus.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsuscs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsut.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsut4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rsutcs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsutcs4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rtmt.tavg-u-hxy-u.mon.GLB", + "atmos.rv850.tpt-850hPa-hxy-air.6hr.GLB", + "atmos.scldncl.tavg-u-hxy-scl.mon.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.mon.30S-90S", + "atmos.sfcWind.tmax-h10m-hxy-u.day.GLB", + "atmos.ta.tavg-al-hxy-u.mon.30S-90S", + "atmos.ta.tavg-al-hxy-u.mon.GLB", + "atmos.ta.tavg-p19-hxy-air.mon.30S-90S", + "atmos.ta.tavg-p39-hy-air.mon.GLB", + "atmos.ta.tpt-al-hxy-u.6hr.GLB", + "atmos.ta.tpt-p7h-hxy-air.6hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.1hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.mon.30S-90S", + "atmos.tas.tmaxavg-h2m-hxy-u.mon.30S-90S", + "atmos.tas.tminavg-h2m-hxy-u.mon.30S-90S", + "atmos.tnt.tavg-al-hxy-u.mon.GLB", + "atmos.tntrl.tavg-al-hxy-u.mon.GLB", + "atmos.tntrs.tavg-al-hxy-u.mon.GLB", + "atmos.ts.tavg-u-hxy-u.mon.30S-90S", + "atmos.ts.tpt-u-hxy-u.6hr.GLB", + "atmos.ua.tavg-al-hxy-u.mon.GLB", + "atmos.ua.tavg-p19-hxy-air.mon.30S-90S", + "atmos.ua.tavg-p39-hy-air.mon.GLB", + "atmos.ua.tpt-al-hxy-u.6hr.GLB", + "atmos.ua.tpt-p7h-hxy-air.6hr.GLB", + "atmos.uas.tavg-h10m-hxy-u.mon.30S-90S", + "atmos.uas.tpt-h10m-hxy-u.1hr.GLB", + "atmos.va.tavg-al-hxy-u.mon.GLB", + "atmos.va.tavg-p19-hxy-air.mon.30S-90S", + "atmos.va.tavg-p39-hy-air.mon.GLB", + "atmos.va.tpt-al-hxy-u.6hr.GLB", + "atmos.va.tpt-p7h-hxy-air.6hr.GLB", + "atmos.vas.tavg-h10m-hxy-u.mon.30S-90S", + "atmos.vas.tpt-h10m-hxy-u.1hr.GLB", + "atmos.wap.tavg-p19-hxy-air.mon.30S-90S", + "atmos.zg.tavg-1000hPa-hxy-air.day.GLB", + "atmos.zg.tavg-500hPa-hxy-air.day.GLB", + "atmos.zg.tavg-al-hxy-u.mon.GLB", + "atmos.zg.tavg-p19-hxy-air.mon.30S-90S", + "atmos.zg.tavg-p39-hy-air.mon.GLB", + "atmos.zg.tpt-500hPa-hxy-air.6hr.GLB", + "atmos.zg.tpt-al-hxy-u.6hr.GLB", + "atmos.zg.tpt-p7h-hxy-air.6hr.GLB", + "atmos.ztp.tavg-u-hxy-u.mon.GLB", + "atmosChem.c2h4.tavg-al-hxy-u.mon.GLB", + "atmosChem.c2h5oh.tavg-al-hxy-u.mon.GLB", + "atmosChem.c4h10.tavg-al-hxy-u.mon.GLB", + "atmosChem.cfc11.tavg-u-hm-u.mon.GLB", + "atmosChem.cfc113.tavg-u-hm-u.mon.GLB", + "atmosChem.cfc12.tavg-u-hm-u.mon.GLB", + "atmosChem.ch3oh.tavg-al-hxy-u.mon.GLB", + "atmosChem.ch4.tavg-al-hxy-u.mon.GLB", + "atmosChem.ch4.tavg-p39-hy-air.mon.GLB", + "atmosChem.ch4losssoil.tavg-u-hxy-u.mon.GLB", + "atmosChem.ch4ref.ti-al-hxy-u.fx.GLB", + "atmosChem.chegph2oo1d.tavg-al-hxy-u.mon.GLB", + "atmosChem.chepnh4.tavg-al-hxy-u.mon.GLB", + "atmosChem.chepno3.tavg-al-hxy-u.mon.GLB", + "atmosChem.dms.tavg-al-hxy-u.mon.30S-90S", + "atmosChem.dms.tavg-al-hxy-u.mon.GLB", + "atmosChem.do3chm.tavg-al-hxy-u.mon.GLB", + "atmosChem.dryh2.tavg-u-hxy-u.mon.GLB", + "atmosChem.dryhno3.tavg-u-hxy-u.mon.GLB", + "atmosChem.drynh3.tavg-u-hxy-u.mon.GLB", + "atmosChem.drynh4.tavg-u-hxy-u.mon.GLB", + "atmosChem.drynoy.tavg-u-hxy-u.mon.GLB", + "atmosChem.e90inst.tpt-al-hxy-u.mon.GLB", + "atmosChem.emiach4.tavg-u-hxy-u.mon.GLB", + "atmosChem.emiavnox.tavg-al-hxy-u.mon.GLB", + "atmosChem.emic2h4.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic2h5oh.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic2h6.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic3h6.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic3h8.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic4h10.tavg-u-hxy-u.mon.GLB", + "atmosChem.emich3oh.tavg-u-hxy-u.mon.GLB", + "atmosChem.emich4.tavg-u-hxy-u.mon.GLB", + "atmosChem.emih2.tavg-u-hxy-u.mon.GLB", + "atmosChem.emilkch4.tavg-u-hxy-u.mon.GLB", + "atmosChem.h2.tavg-al-hxy-u.mon.GLB", + "atmosChem.h2loss.tavg-al-hxy-u.mon.GLB", + "atmosChem.h2prod.tavg-al-hxy-u.mon.GLB", + "atmosChem.hcfc22.tavg-u-hm-u.mon.GLB", + "atmosChem.meanage.tavg-al-hxy-u.mon.GLB", + "atmosChem.meanage.tavg-p39-hy-air.mon.GLB", + "atmosChem.n2o.tavg-al-hxy-u.mon.GLB", + "atmosChem.n2o.tavg-p39-hy-air.mon.GLB", + "atmosChem.o3.tavg-al-hxy-u.mon.GLB", + "atmosChem.o3.tavg-p19-hxy-air.mon.GLB", + "atmosChem.o3.tavg-p39-hy-air.mon.GLB", + "atmosChem.o3.tpt-al-hxy-u.mon.GLB", + "atmosChem.o3ref.tclm-al-hxy-u.fx.GLB", + "atmosChem.o3ref.ti-al-hxy-u.fx.GLB", + "atmosChem.o3ste.tavg-al-hxy-u.mon.GLB", + "atmosChem.rlutch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rlutcsch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rlutcso3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rluto3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsutch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsutcsch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsutcso3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsuto3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.stratch4loss.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropch4loss.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropch4lossoh.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropdo3chm.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropo3ste.tavg-al-hxy-u.mon.GLB", + "atmosChem.wethno3.tavg-al-hxy-u.mon.GLB", + "atmosChem.wetnh3.tavg-u-hxy-u.mon.GLB", + "atmosChem.wetnh4.tavg-u-hxy-u.mon.GLB", + "atmosChem.wetno3.tavg-al-hxy-u.mon.GLB", + "atmosChem.wetnoy.tavg-u-hxy-u.mon.GLB", + "land.albc.tavg-u-hxy-veg.mon.GLB", + "land.areacellr.ti-u-hxy-u.fx.GLB", + "land.baresoilFrac.tavg-u-hxy-u.mon.GLB", + "land.burntFractionAll.tavg-u-hxy-u.mon.GLB", + "land.cGeologicStorage.tavg-u-hxy-u.mon.GLB", + "land.cLand.tavg-u-hxy-lnd.mon.GLB", + "land.cLitter.tavg-u-hxy-lnd.mon.GLB", + "land.cnc.tavg-u-hxy-u.mon.GLB", + "land.cProduct.tavg-u-hxy-lnd.mon.GLB", + "land.cropFrac.tavg-u-hxy-u.mon.GLB", + "land.cSoil.tavg-d100cm-hxy-lnd.mon.GLB", + "land.cSoil.tavg-u-hxy-lnd.mon.GLB", + "land.cVeg.tavg-u-hxy-lnd.mon.GLB", + "land.dcw.tavg-u-hxy-lnd.day.GLB", + "land.dslw.tavg-u-hxy-lnd.day.GLB", + "land.evspsblpot.tavg-u-hxy-lnd.day.GLB", + "land.evspsblpot.tavg-u-hxy-lnd.mon.GLB", + "land.evspsblsoi.tavg-u-hxy-u.day.GLB", + "land.evspsblveg.tavg-u-hxy-u.day.GLB", + "land.fAnthDisturb.tavg-u-hxy-lnd.mon.GLB", + "land.fBNF.tavg-u-hxy-lnd.mon.GLB", + "land.fCLandToOcean.tavg-u-hxy-lnd.mon.GLB", + "land.fDeforestToAtmos.tavg-u-hxy-lnd.mon.GLB", + "land.fDeforestToProduct.tavg-u-hxy-lnd.mon.GLB", + "land.fFire.tavg-u-hxy-lnd.mon.GLB", + "land.fFireAll.tavg-u-hxy-lnd.mon.GLB", + "land.fFireNat.tavg-u-hxy-lnd.mon.GLB", + "land.fHarvestToAtmos.tavg-u-hxy-lnd.mon.GLB", + "land.fHarvestToGeologicStorage.tavg-u-hxy-lnd.mon.GLB", + "land.fHarvestToProduct.tavg-u-hxy-lnd.mon.GLB", + "land.fLitterSoil.tavg-u-hxy-lnd.mon.GLB", + "land.fN2O.tavg-u-hxy-lnd.mon.GLB", + "land.fNAnthDisturb.tavg-u-hxy-lnd.mon.GLB", + "land.fNdep.tavg-u-hxy-lnd.mon.GLB", + "land.fNfert.tavg-u-hxy-lnd.mon.GLB", + "land.fNLandToOcean.tavg-u-hxy-lnd.mon.GLB", + "land.fNLitterSoil.tavg-u-hxy-lnd.mon.GLB", + "land.fNloss.tavg-u-hxy-lnd.mon.GLB", + "land.fNnetmin.tavg-u-hxy-lnd.mon.GLB", + "land.fNOx.tavg-u-hxy-lnd.mon.GLB", + "land.fNProduct.tavg-u-hxy-lnd.mon.GLB", + "land.fNup.tavg-u-hxy-lnd.mon.GLB", + "land.fNVegLitter.tavg-u-hxy-lnd.mon.GLB", + "land.fNVegSoil.tavg-u-hxy-lnd.mon.GLB", + "land.fProductDecomp.tavg-u-hxy-lnd.mon.GLB", + "land.fVegLitter.tavg-u-hxy-lnd.mon.GLB", + "land.fVegSoil.tavg-u-hxy-lnd.mon.GLB", + "land.gpp.tavg-u-hxy-lnd.mon.GLB", + "land.grassFrac.tavg-u-hxy-u.mon.GLB", + "land.landCoverFrac.tavg-u-hxy-u.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.day.GLB", + "land.mrrob.tavg-u-hxy-lnd.day.GLB", + "land.mrros.tavg-u-hxy-lnd.day.GLB", + "land.mrsfl.tavg-sl-hxy-lnd.day.GLB", + "land.mrsfl.tavg-sl-hxy-lnd.mon.GLB", + "land.mrsll.tavg-sl-hxy-lnd.day.GLB", + "land.mrsll.tavg-sl-hxy-lnd.mon.GLB", + "land.mrso.tavg-u-hxy-lnd.day.GLB", + "land.mrsol.tavg-d10cm-hxy-lnd.day.GLB", + "land.mrsol.tavg-sl-hxy-lnd.day.GLB", + "land.mrsol.tavg-sl-hxy-lnd.mon.GLB", + "land.mrsow.tavg-u-hxy-lnd.day.GLB", + "land.mrtws.tavg-u-hxy-lnd.day.GLB", + "land.mrtws.tavg-u-hxy-lnd.mon.GLB", + "land.nbp.tavg-u-hxy-lnd.mon.GLB", + "land.nep.tavg-u-hxy-lnd.mon.GLB", + "land.nLand.tavg-u-hxy-lnd.mon.GLB", + "land.nLitter.tavg-u-hxy-lnd.mon.GLB", + "land.nMineral.tavg-u-hxy-lnd.mon.GLB", + "land.npp.tavg-u-hxy-lnd.mon.GLB", + "land.nProduct.tavg-u-hxy-lnd.mon.GLB", + "land.nSoil.tavg-u-hxy-lnd.mon.GLB", + "land.nVeg.tavg-u-hxy-lnd.mon.GLB", + "land.pastureFrac.tavg-u-hxy-u.mon.GLB", + "land.prveg.tavg-u-hxy-lnd.mon.GLB", + "land.ra.tavg-u-hxy-lnd.mon.GLB", + "land.residualFrac.tavg-u-hxy-u.mon.GLB", + "land.rh.tavg-u-hxy-lnd.mon.GLB", + "land.rivi.tavg-u-hxy-lnd.day.GLB", + "land.rivo.tavg-u-hxy-lnd.day.GLB", + "land.rsds.tavg-u-hxy-sn.mon.GLB", + "land.rsus.tavg-u-hxy-sn.mon.GLB", + "land.shrubFrac.tavg-u-hxy-u.mon.GLB", + "land.tas.tavg-u-hxy-u.1hr.GLB", + "land.tran.tavg-u-hxy-lnd.mon.GLB", + "land.treeFrac.tavg-u-hxy-u.mon.GLB", + "land.tsl.tavg-sl-hxy-lnd.mon.GLB", + "land.tslsi.tavg-u-hxy-u.day.GLB", + "land.vegFrac.tavg-u-hxy-u.mon.GLB", + "land.vegHeight.tavg-u-hxy-veg.mon.GLB", + "land.wetlandCH4.tavg-u-hxy-lnd.mon.GLB", + "land.wtd.tavg-u-hxy-lnd.day.GLB", + "landIce.snd.tavg-u-hxy-lnd.mon.GLB", + "landIce.snw.tavg-u-hxy-lnd.day.GLB", + "ocean.absscint.tavg-op4-hxy-sea.mon.GLB", + "ocean.agessc.tavg-ol-hxy-sea.mon.GLB", + "ocean.bigthetao.tavg-ol-hm-sea.mon.GLB", + "ocean.bigthetao.tavg-ol-hxy-sea.dec.GLB", + "ocean.bigthetao.tavg-op20bar-hxy-sea.day.GLB", + "ocean.chcint.tavg-op4-hxy-sea.mon.GLB", + "ocean.ficeberg.tavg-ol-hxy-sea.mon.GLB", + "ocean.friver.tavg-u-hxy-sea.mon.GLB", + "ocean.hfbasin.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpmadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpmdiff.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpsmadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfds.tavg-u-hxy-sea.mon.30S-90S", + "ocean.hfx.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfx.tavg-u-hxy-sea.day.GLB", + "ocean.hfx.tavg-u-hxy-sea.mon.GLB", + "ocean.hfy.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfy.tavg-u-hxy-sea.day.GLB", + "ocean.hfy.tavg-u-hxy-sea.mon.GLB", + "ocean.htovgyre.tavg-u-hyb-sea.mon.GLB", + "ocean.htovovrt.tavg-u-hyb-sea.mon.GLB", + "ocean.masscello.tavg-ol-hxy-sea.dec.GLB", + "ocean.masso.tavg-u-hm-sea.dec.GLB", + "ocean.masso.tavg-u-hm-sea.mon.GLB", + "ocean.mlotst.tavg-u-hxy-sea.day.GLB", + "ocean.mlotst.tavg-u-hxy-sea.mon.30S-90S", + "ocean.mlotst.tmax-u-hxy-sea.mon.GLB", + "ocean.mlotst.tmin-u-hxy-sea.mon.GLB", + "ocean.mpw.tavg-u-hxy-sea.mon.GLB", + "ocean.mpw.tpt-u-hxy-sea.3hr.GLB", + "ocean.mpwswell.tavg-u-hxy-sea.mon.GLB", + "ocean.mpwswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.mpwwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.mpwwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.msftbarot.tavg-u-hxy-sea.mon.GLB", + "ocean.msftm.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftm.tavg-rho-hyb-sea.mon.GLB", + "ocean.msfty.tavg-ol-ht-sea.mon.GLB", + "ocean.msfty.tavg-rho-ht-sea.mon.GLB", + "ocean.obvfsq.tavg-ol-hxy-sea.mon.GLB", + "ocean.pbo.tavg-u-hxy-sea.mon.GLB", + "ocean.pfscint.tavg-op4-hxy-sea.mon.GLB", + "ocean.phcint.tavg-op4-hxy-sea.mon.GLB", + "ocean.pso.tavg-u-hxy-sea.mon.GLB", + "ocean.scint.tavg-op4-hxy-sea.mon.GLB", + "ocean.sduo.tavg-u-hxy-sea.mon.GLB", + "ocean.sduo.tpt-u-hxy-sea.3hr.GLB", + "ocean.sdvo.tavg-u-hxy-sea.mon.GLB", + "ocean.sdvo.tpt-u-hxy-sea.3hr.GLB", + "ocean.sfx.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfx.tavg-u-hxy-sea.mon.GLB", + "ocean.sfy.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfy.tavg-u-hxy-sea.mon.GLB", + "ocean.sltbasin.tavg-u-hyb-sea.mon.GLB", + "ocean.sltovgyre.tavg-u-hyb-sea.mon.GLB", + "ocean.sltovovrt.tavg-u-hyb-sea.mon.GLB", + "ocean.so.tavg-ol-hm-sea.mon.GLB", + "ocean.so.tavg-ol-hxy-sea.dec.GLB", + "ocean.so.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.sob.tavg-u-hxy-sea.mon.GLB", + "ocean.sos.tavg-u-hm-sea.mon.30S-90S", + "ocean.sos.tavg-u-hm-sea.mon.GLB", + "ocean.swh.tavg-u-hxy-sea.mon.GLB", + "ocean.swh.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhmax.tmax-u-hxy-sea.mon.GLB", + "ocean.swhmax.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhswell.tavg-u-hxy-sea.mon.GLB", + "ocean.swhswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.swhwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.tauuo.tavg-u-hxy-sea.3hr.GLB", + "ocean.tauuo.tavg-u-hxy-sea.dec.GLB", + "ocean.tauvo.tavg-u-hxy-sea.3hr.GLB", + "ocean.tauvo.tavg-u-hxy-sea.dec.GLB", + "ocean.thetao.tavg-ol-hm-sea.mon.GLB", + "ocean.thetao.tavg-ol-hxy-sea.dec.GLB", + "ocean.thetao.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.thetao.tavg-op20bar-hxy-sea.day.GLB", + "ocean.thkcello.tavg-ol-hxy-sea.dec.GLB", + "ocean.tob.tavg-u-hxy-sea.mon.GLB", + "ocean.tos.tavg-u-hm-sea.mon.GLB", + "ocean.tos.tavg-u-hxy-sea.mon.30S-90S", + "ocean.tos.tpt-u-hxy-sea.3hr.GLB", + "ocean.tossq.tavg-u-hxy-sea.day.GLB", + "ocean.umo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.uo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.uos.tavg-u-hxy-sea.day.GLB", + "ocean.vmo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.vo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.volcello.tavg-ol-hxy-sea.dec.GLB", + "ocean.volcello.tavg-ol-hxy-sea.mon.GLB", + "ocean.volcello.tavg-ol-hxy-sea.yr.GLB", + "ocean.volcello.ti-ol-hxy-sea.fx.GLB", + "ocean.volo.tavg-u-hm-sea.dec.GLB", + "ocean.volo.tavg-u-hm-sea.mon.GLB", + "ocean.vos.tavg-u-hxy-sea.day.GLB", + "ocean.wdir.tavg-u-hxy-sea.mon.GLB", + "ocean.wdir.tpt-u-hxy-sea.3hr.GLB", + "ocean.wdirswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wdirswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wdirwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wdirwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.wfcorr.tavg-u-hxy-sea.mon.GLB", + "ocean.wfo.tavg-u-hxy-sea.mon.GLB", + "ocean.wmo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.wo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.wpdir.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdir.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpdirswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdirswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpdirwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdirwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpp.tavg-u-hxy-sea.mon.GLB", + "ocean.wpp.tpt-u-hxy-sea.3hr.GLB", + "ocean.wppswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wppswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wppwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wppwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.zos.tavg-u-hxy-sea.mon.30S-90S", + "ocean.zossq.tavg-u-hxy-sea.mon.GLB", + "ocean.zostoga.tavg-u-hm-sea.day.GLB", + "ocnBgchem.bacc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.calc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chl.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chl.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chlcalc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chldiat.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chldiat.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chldiaz.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chldiaz.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chlmisc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chlmisc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chlpico.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chlpico.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.detoc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dfe.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.dfe.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissic.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.dissic.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissoc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dmso.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.expc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.expcalc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.fgco2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fsfe.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fsn.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.graz.tavg-ol-hxy-sea.mon.30S-90S", + "ocnBgchem.icfriver.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intdic.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intdoc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intparag.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbfe.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbn.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbp.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbsi.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpcalcite.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpn2.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpoc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpp.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpp.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppcalc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppdiat.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppdiaz.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppmisc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppnitrate.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpppico.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.nh4.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.nh4.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.no3.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.no3.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.o2.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.ocfriver.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.ph.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.ph.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phyc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phyc.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.phyc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phycalc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phycalc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phydiat.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phydiat.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phydiaz.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phydiaz.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phymisc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phymisc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phypico.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phypico.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.po4.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.pp.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.si.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.spco2.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.spco2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.talk.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zmeso.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zmeso.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zmicro.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zmicro.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zmisc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zmisc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zooc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zooc.tavg-ol-hxy-sea.mon.GLB", + "seaIce.evspsbl.tavg-u-hxy-si.mon.GLB", + "seaIce.prra.tavg-u-hxy-si.mon.GLB", + "seaIce.prsn.tavg-u-hxy-si.mon.GLB", + "seaIce.rlds.tavg-u-hxy-si.mon.GLB", + "seaIce.rlus.tavg-u-hxy-si.mon.GLB", + "seaIce.rsds.tavg-u-hxy-si.day.GLB", + "seaIce.rsds.tavg-u-hxy-si.mon.GLB", + "seaIce.rsus.tavg-u-hxy-si.day.GLB", + "seaIce.rsus.tavg-u-hxy-si.mon.GLB", + "seaIce.sbl.tavg-u-hxy-si.mon.GLB", + "seaIce.siage.tavg-u-hxy-si.day.GLB", + "seaIce.siage.tavg-u-hxy-si.mon.30S-90S", + "seaIce.siarea.tavg-u-hm-u.mon.NH", + "seaIce.siarea.tavg-u-hm-u.mon.SH", + "seaIce.siconc.tavg-u-hxy-u.mon.30S-90S", + "seaIce.siconca.tavg-u-hxy-u.day.GLB", + "seaIce.siconca.tavg-u-hxy-u.mon.GLB", + "seaIce.sidconcdyn.tavg-u-hxy-sea.mon.GLB", + "seaIce.sidconcth.tavg-u-hxy-sea.mon.GLB", + "seaIce.sidmassdyn.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthsi.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthwat.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmeltbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmeltlat.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmelttop.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassth.tavg-u-hxy-si.mon.GLB", + "seaIce.sieqthick.tavg-u-hxy-si.mon.GLB", + "seaIce.siextent.tavg-u-hm-u.mon.NH", + "seaIce.siextent.tavg-u-hm-u.mon.SH", + "seaIce.siflcondbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflcondtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sifllattop.tavg-u-hxy-si.mon.GLB", + "seaIce.siflsensbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflsenstop.tavg-u-hxy-si.mon.GLB", + "seaIce.siflswdbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sihc.tavg-u-hxy-sea.mon.GLB", + "seaIce.sisndmassdyn.tavg-u-hxy-si.mon.GLB", + "seaIce.sisndmasssi.tavg-u-hxy-si.mon.GLB", + "seaIce.sisndmasswind.tavg-u-hxy-si.mon.GLB", + "seaIce.sisnhc.tavg-u-hxy-si.mon.GLB", + "seaIce.sisnmass.tavg-u-hm-u.mon.NH", + "seaIce.sisnmass.tavg-u-hm-u.mon.SH", + "seaIce.sispeed.tavg-u-hxy-si.day.GLB", + "seaIce.sispeed.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-si.day.GLB", + "seaIce.sithick.tavg-u-hxy-si.mon.30S-90S", + "seaIce.sitimefrac.tavg-u-hxy-sea.day.GLB", + "seaIce.sitimefrac.tavg-u-hxy-sea.mon.30S-90S", + "seaIce.siu.tavg-u-hxy-si.day.GLB", + "seaIce.siu.tavg-u-hxy-si.mon.30S-90S", + "seaIce.siv.tavg-u-hxy-si.day.GLB", + "seaIce.siv.tavg-u-hxy-si.mon.30S-90S", + "seaIce.sivol.tavg-u-hm-u.mon.NH", + "seaIce.sivol.tavg-u-hm-u.mon.SH", + "seaIce.snc.tavg-u-hxy-si.mon.GLB", + "seaIce.snd.tavg-u-hxy-sn.day.GLB", + "seaIce.snd.tavg-u-hxy-sn.mon.30S-90S", + "seaIce.snm.tavg-u-hxy-si.mon.GLB", + "seaIce.snw.tavg-u-hxy-si.mon.GLB", + "seaIce.ts.tavg-u-hxy-si.day.GLB", + "seaIce.ts.tavg-u-hxy-si.mon.30S-90S" + ], + "Medium": [ + "atmos.hurs.tpt-h2m-hxy-u.3hr.GLB", + "atmos.noaahi2m.tavg-h2m-hxy-u.day.GLB", + "atmos.noaahi2m.tmax-h2m-hxy-u.day.GLB", + "atmos.ps.tpt-u-hxy-u.3hr.GLB", + "atmos.rlds.tavg-u-hxy-u.3hr.GLB", + "atmos.rldscs.tavg-u-hxy-u.day.GLB", + "atmos.rls.tavg-u-hxy-u.day.GLB", + "atmos.rls.tavg-u-hxy-u.mon.GLB", + "atmos.rsds.tavg-u-hxy-u.3hr.GLB", + "atmos.rss.tavg-u-hxy-u.day.GLB", + "atmos.rss.tavg-u-hxy-u.mon.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.3hr.GLB", + "atmos.ts.tavg-u-hxy-u.day.GLB", + "atmos.ua.tavg-h100m-hxy-u.3hr.GLB", + "atmos.va.tavg-h100m-hxy-u.3hr.GLB", + "atmos.wbgt.tavg-h2m-hxy-u.day.GLB", + "atmos.wbgt.tmax-h2m-hxy-u.day.GLB", + "land.cLeaf.tavg-u-hxy-lnd.mon.GLB", + "land.cLitterCwd.tavg-u-hxy-lnd.mon.GLB", + "land.cLitterSubSurf.tavg-u-hxy-lnd.mon.GLB", + "land.cLitterSurf.tavg-u-hxy-lnd.mon.GLB", + "land.cOther.tavg-u-hxy-lnd.mon.GLB", + "land.cRoot.tavg-u-hxy-lnd.mon.GLB", + "land.cropFracC3.tavg-u-hxy-u.mon.GLB", + "land.cropFracC4.tavg-u-hxy-u.mon.GLB", + "land.cSoil.tavg-sl-hxy-lnd.mon.GLB", + "land.cSoilPools.tavg-u-hxy-lnd.mon.GLB", + "land.cStem.tavg-u-hxy-lnd.mon.GLB", + "land.cVeg.tavg-u-hxy-ng.mon.GLB", + "land.cVeg.tavg-u-hxy-shb.mon.GLB", + "land.cVeg.tavg-u-hxy-tree.mon.GLB", + "land.fLitterFire.tavg-u-hxy-lnd.mon.GLB", + "land.fNgas.tavg-u-hxy-lnd.mon.GLB", + "land.fNgasFire.tavg-u-hxy-lnd.mon.GLB", + "land.fNgasNonFire.tavg-u-hxy-lnd.mon.GLB", + "land.fNleach.tavg-u-hxy-lnd.mon.GLB", + "land.fVegFire.tavg-u-hxy-lnd.mon.GLB", + "land.fVegLitterMortality.tavg-u-hxy-lnd.mon.GLB", + "land.fVegLitterSenescence.tavg-u-hxy-lnd.mon.GLB", + "land.fVegSoilMortality.tavg-u-hxy-lnd.mon.GLB", + "land.fVegSoilSenescence.tavg-u-hxy-lnd.mon.GLB", + "land.gpp.tavg-u-hxy-ng.mon.GLB", + "land.gpp.tavg-u-hxy-shb.mon.GLB", + "land.gpp.tavg-u-hxy-tree.mon.GLB", + "land.grassFracC3.tavg-u-hxy-u.mon.GLB", + "land.grassFracC4.tavg-u-hxy-u.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.3hr.GLB", + "land.mrros.tavg-u-hxy-lnd.3hr.GLB", + "land.mrsol.tpt-d10cm-hxy-lnd.3hr.GLB", + "land.nLeaf.tavg-u-hxy-lnd.mon.GLB", + "land.nLitterCwd.tavg-u-hxy-lnd.mon.GLB", + "land.nLitterSubSurf.tavg-u-hxy-lnd.mon.GLB", + "land.nLitterSurf.tavg-u-hxy-lnd.mon.GLB", + "land.nMineralNH4.tavg-u-hxy-lnd.mon.GLB", + "land.nMineralNO3.tavg-u-hxy-lnd.mon.GLB", + "land.nOther.tavg-u-hxy-lnd.mon.GLB", + "land.npp.tavg-u-hxy-ng.mon.GLB", + "land.npp.tavg-u-hxy-shb.mon.GLB", + "land.npp.tavg-u-hxy-tree.mon.GLB", + "land.nppLeaf.tavg-u-hxy-lnd.mon.GLB", + "land.nppOther.tavg-u-hxy-lnd.mon.GLB", + "land.nppRoot.tavg-u-hxy-lnd.mon.GLB", + "land.nppStem.tavg-u-hxy-lnd.mon.GLB", + "land.nRoot.tavg-u-hxy-lnd.mon.GLB", + "land.nStem.tavg-u-hxy-lnd.mon.GLB", + "land.pastureFracC3.tavg-u-hxy-u.mon.GLB", + "land.pastureFracC4.tavg-u-hxy-u.mon.GLB", + "land.ra.tavg-u-hxy-ng.mon.GLB", + "land.ra.tavg-u-hxy-shb.mon.GLB", + "land.ra.tavg-u-hxy-tree.mon.GLB", + "land.raLeaf.tavg-u-hxy-lnd.mon.GLB", + "land.raOther.tavg-u-hxy-lnd.mon.GLB", + "land.raRoot.tavg-u-hxy-lnd.mon.GLB", + "land.raStem.tavg-u-hxy-lnd.mon.GLB", + "land.rh.tavg-u-hxy-ng.mon.GLB", + "land.rh.tavg-u-hxy-shb.mon.GLB", + "land.rh.tavg-u-hxy-tree.mon.GLB", + "land.rhLitter.tavg-u-hxy-lnd.mon.GLB", + "land.rhSoil.tavg-u-hxy-lnd.mon.GLB", + "land.treeFracBdlDcd.tavg-u-hxy-u.mon.GLB", + "land.treeFracBdlEvg.tavg-u-hxy-u.mon.GLB", + "land.treeFracNdlDcd.tavg-u-hxy-u.mon.GLB", + "land.treeFracNdlEvg.tavg-u-hxy-u.mon.GLB", + "land.vegHeight.tavg-u-hxy-ng.mon.GLB", + "land.vegHeight.tavg-u-hxy-shb.mon.GLB", + "land.vegHeight.tavg-u-hxy-tree.mon.GLB", + "land.wetlandCH4cons.tavg-u-hxy-lnd.mon.GLB", + "land.wetlandCH4prod.tavg-u-hxy-lnd.mon.GLB", + "land.wetlandFrac.tavg-u-hxy-u.mon.GLB", + "ocean.evspsbl.tavg-u-hxy-ifs.mon.GLB", + "ocean.ficeberg.tavg-u-hxy-sea.mon.GLB", + "ocean.hfacrossline.tavg-u-ht-sea.mon.GLB", + "ocean.hfevapds.tavg-u-hxy-ifs.mon.GLB", + "ocean.hfibthermds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfibthermds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfrainds.tavg-u-hxy-ifs.mon.GLB", + "ocean.hfrunoffds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfrunoffds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfsnthermds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfsnthermds.tavg-u-hxy-sea.mon.GLB", + "ocean.mfo.tavg-u-ht-sea.mon.GLB", + "ocean.sf6.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfacrossline.tavg-u-ht-sea.mon.GLB", + "ocean.sfdsi.tavg-u-hxy-sea.mon.GLB", + "ocean.sfriver.tavg-u-hxy-sea.mon.GLB", + "ocean.siflfwbot.tavg-u-hxy-sea.mon.GLB", + "ocean.so.tavg-ol-hxy-sea.day.GLB", + "ocean.tnkebto.tavg-u-hxy-sea.yr.GLB", + "ocean.vsf.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfcorr.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfevap.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfpr.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfriver.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfsit.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.arag.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.arag.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.calc.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.calc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chl.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.chlcalc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dmso.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.epn.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.epp.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.expc.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.expcalc.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.fgdms.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fric.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.froc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.graz.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.intppcalc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppdiat.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppdiaz.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppmisc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppnitrate.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intpppico.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.o2.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.ph.tavg-op20bar-hxy-sea.day.GLB", + "seaIce.sfdsi.tavg-u-hxy-si.mon.GLB", + "seaIce.siage.tavg-u-hxy-si.mon.GLB", + "seaIce.siarea.tavg-u-hm-u.day.NH", + "seaIce.siarea.tavg-u-hm-u.day.SH", + "seaIce.siareaacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.sicompstren.tavg-u-hxy-si.mon.GLB", + "seaIce.sidivvel.tpt-u-hxy-si.mon.GLB", + "seaIce.sidmasstranx.tavg-u-hxy-u.mon.GLB", + "seaIce.sidmasstrany.tavg-u-hxy-u.mon.GLB", + "seaIce.sidragbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidragtop.tavg-u-hxy-si.mon.GLB", + "seaIce.siextent.tavg-u-hm-u.day.NH", + "seaIce.siextent.tavg-u-hm-u.day.SH", + "seaIce.sifb.tavg-u-hxy-si.mon.GLB", + "seaIce.siflfwbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflfwdrain.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcecoriolx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcecorioly.tavg-u-hxy-si.mon.GLB", + "seaIce.siforceintstrx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforceintstry.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcetiltx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcetilty.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdconc.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdsnconc.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdsnthick.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdthick.tavg-u-hxy-si.mon.GLB", + "seaIce.simassacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.simpconc.tavg-u-hxy-si.mon.GLB", + "seaIce.simpeffconc.tavg-u-hxy-si.mon.GLB", + "seaIce.simprefrozen.tavg-u-hxy-simp.mon.GLB", + "seaIce.simpthick.tavg-u-hxy-simp.mon.GLB", + "seaIce.sirdgconc.tavg-u-hxy-si.mon.GLB", + "seaIce.sisali.tavg-u-hxy-si.mon.GLB", + "seaIce.sisaltmass.tavg-u-hxy-si.mon.GLB", + "seaIce.sishearvel.tpt-u-hxy-si.mon.GLB", + "seaIce.sisnmass.tavg-u-hm-u.day.NH", + "seaIce.sisnmass.tavg-u-hm-u.day.SH", + "seaIce.sisnmassacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.sistressave.tpt-u-hxy-si.mon.GLB", + "seaIce.sistressmax.tpt-u-hxy-si.mon.GLB", + "seaIce.sistrxdtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sistrxubot.tavg-u-hxy-si.mon.GLB", + "seaIce.sistrydtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sistryubot.tavg-u-hxy-si.mon.GLB", + "seaIce.sitempbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sitempsnic.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-sir.mon.GLB", + "seaIce.sivol.tavg-u-hm-u.day.NH", + "seaIce.sivol.tavg-u-hm-u.day.SH" + ], + "Low": [ + "aerosol.sfpm1.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.sfpm10.tavg-h2m-hxy-u.1hr.GLB", + "atmos.hurs.tavg-h2m-hxy-u.1hr.GLB", + "atmosChem.drynh3.tavg-u-hxy-u.day.GLB", + "atmosChem.drynh4.tavg-u-hxy-u.day.GLB", + "atmosChem.drynoy.tavg-u-hxy-u.day.GLB", + "atmosChem.wetnh3.tavg-u-hxy-u.day.GLB", + "atmosChem.wetnh4.tavg-u-hxy-u.day.GLB", + "atmosChem.wetnoy.tavg-u-hxy-u.day.GLB", + "land.c13Land.tavg-u-hxy-lnd.mon.GLB", + "land.c13Litter.tavg-u-hxy-lnd.mon.GLB", + "land.c13Soil.tavg-u-hxy-lnd.mon.GLB", + "land.c13Veg.tavg-u-hxy-lnd.mon.GLB", + "land.c14Land.tavg-u-hxy-lnd.mon.GLB", + "land.c14Litter.tavg-u-hxy-lnd.mon.GLB", + "land.c14Soil.tavg-u-hxy-lnd.mon.GLB", + "land.c14Veg.tavg-u-hxy-lnd.mon.GLB", + "land.gppc13.tavg-u-hxy-lnd.mon.GLB", + "land.gppc14.tavg-u-hxy-lnd.mon.GLB", + "land.netAtmosLandC13Flux.tavg-u-hxy-lnd.mon.GLB", + "land.netAtmosLandC14Flux.tavg-u-hxy-lnd.mon.GLB", + "land.rac13.tavg-u-hxy-lnd.mon.GLB", + "land.rac14.tavg-u-hxy-lnd.mon.GLB", + "land.rhc13.tavg-u-hxy-lnd.mon.GLB", + "land.rhc14.tavg-u-hxy-lnd.mon.GLB", + "ocean.difmxybo.tavg-ol-hxy-sea.yr.GLB", + "ocean.difmxylo.tavg-ol-hxy-sea.yr.GLB", + "ocean.diftrblo.tavg-ol-hxy-sea.yr.GLB", + "ocean.diftrelo.tavg-ol-hxy-sea.yr.GLB", + "ocean.difvho.tavg-ol-hxy-sea.yr.GLB", + "ocean.difvso.tavg-ol-hxy-sea.yr.GLB", + "ocean.dispkexyfo.tavg-u-hxy-sea.yr.GLB", + "ocean.dxto.ti-u-hxy-u.fx.GLB", + "ocean.dxuo.ti-u-hxy-u.fx.GLB", + "ocean.dxvo.ti-u-hxy-u.fx.GLB", + "ocean.dyto.ti-u-hxy-u.fx.GLB", + "ocean.dyuo.ti-u-hxy-u.fx.GLB", + "ocean.dyvo.ti-u-hxy-u.fx.GLB", + "ocean.mlotstsq.tavg-u-hxy-sea.mon.GLB", + "ocean.msftmmpa.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftmmpa.tavg-rho-hyb-sea.mon.GLB", + "ocean.msftmsmpa.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftypa.tavg-ol-ht-sea.mon.GLB", + "ocean.msftypa.tavg-rho-ht-sea.mon.GLB", + "ocean.ocontempdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontempmint.tavg-u-hxy-sea.yr.GLB", + "ocean.ocontemppadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemppmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemppsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemprmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemptend.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottempdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottempmint.tavg-u-hxy-sea.yr.GLB", + "ocean.opottemppadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemppmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemppsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemprmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemptend.tavg-ol-hxy-sea.dec.GLB", + "ocean.osaltdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpsmadvect.tavg-ol-hxy-sea.mon.GLB", + "ocean.osaltpsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltrmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osalttend.tavg-ol-hxy-sea.yr.GLB", + "ocean.rsdoabsorb.tavg-ol-hxy-sea.yr.GLB", + "ocean.somint.tavg-u-hxy-sea.yr.GLB", + "ocean.sossq.tavg-u-hxy-sea.mon.GLB", + "ocean.thkcelluo.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcellvo.tavg-ol-hxy-sea.mon.GLB", + "ocean.tnpeo.tavg-u-hxy-sea.yr.GLB", + "ocean.tossq.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.dissi13c.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.dissi13c.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissi14c.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissi14cabio.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.dissi14cabio.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.fg13co2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fg14co2abio.tavg-u-hxy-sea.mon.GLB" + ] + }, + "1pctCO2-rad": { + "Core": [ + "atmos.areacella.ti-u-hxy-u.fx.GLB", + "atmos.cl.tavg-al-hxy-u.mon.GLB", + "atmos.cli.tavg-al-hxy-u.mon.GLB", + "atmos.clivi.tavg-u-hxy-u.mon.GLB", + "atmos.clt.tavg-u-hxy-u.day.GLB", + "atmos.clt.tavg-u-hxy-u.mon.GLB", + "atmos.clw.tavg-al-hxy-u.mon.GLB", + "atmos.clwvi.tavg-u-hxy-u.mon.GLB", + "atmos.evspsbl.tavg-u-hxy-u.mon.GLB", + "atmos.hfls.tavg-u-hxy-u.mon.GLB", + "atmos.hfss.tavg-u-hxy-u.mon.GLB", + "atmos.hur.tavg-p19-hxy-air.mon.GLB", + "atmos.hur.tavg-p19-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.6hr.GLB", + "atmos.hurs.tavg-h2m-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.mon.GLB", + "atmos.hus.tavg-p19-hxy-u.day.GLB", + "atmos.hus.tavg-p19-hxy-u.mon.GLB", + "atmos.huss.tavg-h2m-hxy-u.day.GLB", + "atmos.huss.tavg-h2m-hxy-u.mon.GLB", + "atmos.huss.tpt-h2m-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.1hr.GLB", + "atmos.pr.tavg-u-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.day.GLB", + "atmos.pr.tavg-u-hxy-u.mon.GLB", + "atmos.prc.tavg-u-hxy-u.mon.GLB", + "atmos.prsn.tavg-u-hxy-u.mon.GLB", + "atmos.prw.tavg-u-hxy-u.mon.GLB", + "atmos.ps.tavg-u-hxy-u.day.GLB", + "atmos.ps.tavg-u-hxy-u.mon.GLB", + "atmos.psl.tavg-u-hxy-u.day.GLB", + "atmos.psl.tavg-u-hxy-u.mon.GLB", + "atmos.rlds.tavg-u-hxy-u.mon.GLB", + "atmos.rldscs.tavg-u-hxy-u.mon.GLB", + "atmos.rlus.tavg-u-hxy-u.mon.GLB", + "atmos.rluscs.tavg-u-hxy-u.mon.GLB", + "atmos.rlut.tavg-u-hxy-u.mon.GLB", + "atmos.rlutcs.tavg-u-hxy-u.mon.GLB", + "atmos.rsds.tavg-u-hxy-u.day.GLB", + "atmos.rsds.tavg-u-hxy-u.mon.GLB", + "atmos.rsdscs.tavg-u-hxy-u.mon.GLB", + "atmos.rsdt.tavg-u-hxy-u.mon.GLB", + "atmos.rsus.tavg-u-hxy-u.mon.GLB", + "atmos.rsuscs.tavg-u-hxy-u.mon.GLB", + "atmos.rsut.tavg-u-hxy-u.mon.GLB", + "atmos.rsutcs.tavg-u-hxy-u.mon.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.day.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.mon.GLB", + "atmos.sftlf.ti-u-hxy-u.fx.GLB", + "atmos.ta.tavg-p19-hxy-air.day.GLB", + "atmos.ta.tavg-p19-hxy-air.mon.GLB", + "atmos.ta.tpt-p3-hxy-air.6hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.day.GLB", + "atmos.tas.tavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tmax-h2m-hxy-u.day.GLB", + "atmos.tas.tmaxavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tmin-h2m-hxy-u.day.GLB", + "atmos.tas.tminavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tpt-h2m-hxy-u.3hr.GLB", + "atmos.tauu.tavg-u-hxy-u.mon.GLB", + "atmos.tauv.tavg-u-hxy-u.mon.GLB", + "atmos.ts.tavg-u-hxy-u.mon.GLB", + "atmos.ua.tavg-p19-hxy-air.day.GLB", + "atmos.ua.tavg-p19-hxy-air.mon.GLB", + "atmos.ua.tpt-p3-hxy-air.6hr.GLB", + "atmos.uas.tavg-h10m-hxy-u.day.GLB", + "atmos.uas.tavg-h10m-hxy-u.mon.GLB", + "atmos.uas.tpt-h10m-hxy-u.3hr.GLB", + "atmos.va.tavg-p19-hxy-air.day.GLB", + "atmos.va.tavg-p19-hxy-air.mon.GLB", + "atmos.va.tpt-p3-hxy-air.6hr.GLB", + "atmos.vas.tavg-h10m-hxy-u.day.GLB", + "atmos.vas.tavg-h10m-hxy-u.mon.GLB", + "atmos.vas.tpt-h10m-hxy-u.3hr.GLB", + "atmos.wap.tavg-p19-hxy-air.mon.GLB", + "atmos.wap.tavg-p19-hxy-u.day.GLB", + "atmos.zg.tavg-p19-hxy-air.day.GLB", + "atmos.zg.tavg-p19-hxy-air.mon.GLB", + "land.evspsblsoi.tavg-u-hxy-lnd.mon.GLB", + "land.evspsblveg.tavg-u-hxy-lnd.mon.GLB", + "land.lai.tavg-u-hxy-lnd.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.mon.GLB", + "land.mrros.tavg-u-hxy-lnd.mon.GLB", + "land.mrso.tavg-u-hxy-lnd.mon.GLB", + "land.mrsofc.ti-u-hxy-lnd.fx.GLB", + "land.mrsol.tavg-d10cm-hxy-lnd.mon.GLB", + "land.orog.ti-u-hxy-u.fx.GLB", + "land.rootd.ti-u-hxy-lnd.fx.GLB", + "land.sftgif.ti-u-hxy-u.fx.GLB", + "land.slthick.ti-sl-hxy-lnd.fx.GLB", + "landIce.mrfso.tavg-u-hxy-lnd.mon.GLB", + "landIce.snc.tavg-u-hxy-lnd.mon.GLB", + "landIce.snw.tavg-u-hxy-lnd.mon.GLB", + "ocean.areacello.ti-u-hxy-u.fx.GLB", + "ocean.basin.ti-u-hxy-u.fx.GLB", + "ocean.bigthetao.tavg-ol-hxy-sea.mon.GLB", + "ocean.deptho.ti-u-hxy-sea.fx.GLB", + "ocean.hfds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfgeou.ti-u-hxy-sea.fx.GLB", + "ocean.masscello.tavg-ol-hxy-sea.mon.GLB", + "ocean.masscello.ti-ol-hxy-sea.fx.GLB", + "ocean.mlotst.tavg-u-hxy-sea.mon.GLB", + "ocean.sftof.ti-u-hxy-u.fx.GLB", + "ocean.so.tavg-ol-hxy-sea.mon.GLB", + "ocean.sos.tavg-u-hxy-sea.day.GLB", + "ocean.sos.tavg-u-hxy-sea.mon.GLB", + "ocean.tauuo.tavg-u-hxy-sea.mon.GLB", + "ocean.tauvo.tavg-u-hxy-sea.mon.GLB", + "ocean.thetao.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcello.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcello.ti-ol-hxy-sea.fx.GLB", + "ocean.tos.tavg-u-hxy-sea.day.GLB", + "ocean.tos.tavg-u-hxy-sea.mon.GLB", + "ocean.umo.tavg-ol-hxy-sea.mon.GLB", + "ocean.uo.tavg-ol-hxy-sea.mon.GLB", + "ocean.vmo.tavg-ol-hxy-sea.mon.GLB", + "ocean.vo.tavg-ol-hxy-sea.mon.GLB", + "ocean.wmo.tavg-ol-hxy-sea.mon.GLB", + "ocean.wo.tavg-ol-hxy-sea.mon.GLB", + "ocean.zos.tavg-u-hxy-sea.day.GLB", + "ocean.zos.tavg-u-hxy-sea.mon.GLB", + "ocean.zostoga.tavg-u-hm-sea.mon.GLB", + "seaIce.siconc.tavg-u-hxy-u.day.GLB", + "seaIce.siconc.tavg-u-hxy-u.mon.GLB", + "seaIce.simass.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-si.mon.GLB", + "seaIce.sitimefrac.tavg-u-hxy-sea.mon.GLB", + "seaIce.siu.tavg-u-hxy-si.mon.GLB", + "seaIce.siv.tavg-u-hxy-si.mon.GLB", + "seaIce.snd.tavg-u-hxy-sn.mon.GLB", + "seaIce.ts.tavg-u-hxy-si.mon.GLB" + ], + "High": [ + "aerosol.abs550aer.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550bc.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550dust.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550no3.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550oa.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550so4.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550ss.tavg-u-hxy-u.mon.GLB", + "aerosol.airmass.tavg-al-hxy-u.mon.GLB", + "aerosol.aoanh.tavg-al-hxy-u.mon.NH", + "aerosol.bry.tavg-p39-hy-air.mon.GLB", + "aerosol.bs550aer.tpt-al-hxy-u.6hr.GLB", + "aerosol.c2h6.tavg-al-hxy-u.mon.GLB", + "aerosol.c3h6.tavg-al-hxy-u.mon.GLB", + "aerosol.c3h8.tavg-al-hxy-u.mon.GLB", + "aerosol.ccldncl.tavg-u-hxy-ccl.mon.GLB", + "aerosol.ccn.tavg-u-hxy-ccl.mon.30S-90S", + "aerosol.ccn.tavg-u-hxy-ccl.mon.GLB", + "aerosol.ccn1.tavg-al-hxy-u.mon.30S-90S", + "aerosol.ccn1.tavg-al-hxy-u.mon.GLB", + "aerosol.ccnp02.tavg-al-hxy-u.mon.30S-90S", + "aerosol.ccnp02.tavg-al-hxy-u.mon.GLB", + "aerosol.cdnc.tavg-al-hxy-u.mon.30S-90S", + "aerosol.cdnc.tavg-al-hxy-u.mon.GLB", + "aerosol.cfc114.tavg-al-hxy-u.mon.GLB", + "aerosol.ch3coch3.tavg-al-hxy-u.mon.GLB", + "aerosol.cheaqpso4.tavg-al-hxy-u.mon.GLB", + "aerosol.chegpso4.tavg-al-hxy-u.mon.GLB", + "aerosol.chepasoa.tavg-u-hxy-u.mon.GLB", + "aerosol.chepsoa.tavg-u-hxy-u.mon.GLB", + "aerosol.cly.tavg-p39-hy-air.mon.GLB", + "aerosol.co.tavg-al-hxy-u.mon.GLB", + "aerosol.co.tavg-h2m-hxy-u.day.GLB", + "aerosol.cod.tavg-u-hxy-u.day.GLB", + "aerosol.cod.tavg-u-hxy-u.mon.30S-90S", + "aerosol.cod.tavg-u-hxy-u.mon.GLB", + "aerosol.conccn.tavg-al-hxy-u.mon.GLB", + "aerosol.conccn.tpt-u-hs-u.3hr.GLB", + "aerosol.drybc.tavg-u-hxy-u.mon.GLB", + "aerosol.drydust.tavg-u-hxy-u.mon.GLB", + "aerosol.dryno3.tavg-u-hxy-u.mon.GLB", + "aerosol.dryo3.tavg-u-hxy-u.mon.GLB", + "aerosol.dryoa.tavg-u-hxy-u.mon.GLB", + "aerosol.dryso2.tavg-u-hxy-u.mon.GLB", + "aerosol.dryso4.tavg-u-hxy-u.mon.GLB", + "aerosol.dryss.tavg-u-hxy-u.mon.GLB", + "aerosol.ec550aer.tavg-al-hxy-u.mon.GLB", + "aerosol.ec550aer.tpt-u-hxy-u.6hr.GLB", + "aerosol.emiaco.tavg-u-hxy-u.mon.GLB", + "aerosol.emianox.tavg-u-hxy-u.mon.GLB", + "aerosol.emiaoa.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbbc.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbch4.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbco.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbdms.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbnh3.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbnox.tavg-u-hxy-u.mon.GLB", + "aerosol.emibboa.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbso2.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbvoc.tavg-u-hxy-u.mon.GLB", + "aerosol.emibc.tavg-u-hxy-u.mon.GLB", + "aerosol.emibvoc.tavg-u-hxy-u.mon.GLB", + "aerosol.emico.tavg-u-hxy-u.mon.GLB", + "aerosol.emidms.tavg-u-hxy-u.mon.30S-90S", + "aerosol.emidms.tavg-u-hxy-u.mon.GLB", + "aerosol.emidust.tavg-u-hxy-u.mon.GLB", + "aerosol.emiisop.tavg-u-hxy-u.mon.GLB", + "aerosol.emilnox.tavg-al-hxy-u.mon.GLB", + "aerosol.eminh3.tavg-u-hxy-u.mon.GLB", + "aerosol.eminox.tavg-u-hxy-u.mon.GLB", + "aerosol.emioa.tavg-u-hxy-u.mon.GLB", + "aerosol.emiso2.tavg-u-hxy-u.mon.GLB", + "aerosol.emiso4.tavg-u-hxy-u.mon.GLB", + "aerosol.emiss.tavg-u-hxy-u.mon.30S-90S", + "aerosol.emiss.tavg-u-hxy-u.mon.GLB", + "aerosol.emivoc.tavg-u-hxy-u.mon.GLB", + "aerosol.h2o.tavg-al-hxy-u.mon.GLB", + "aerosol.h2o.tavg-p39-hy-air.mon.GLB", + "aerosol.hcfc22.tavg-al-hxy-u.mon.GLB", + "aerosol.hcho.tavg-al-hxy-u.mon.GLB", + "aerosol.hcl.tavg-al-hxy-u.mon.GLB", + "aerosol.hcl.tavg-p39-hy-air.mon.GLB", + "aerosol.hfc125.tavg-al-hxy-u.mon.GLB", + "aerosol.hfc134a.tavg-al-hxy-u.mon.GLB", + "aerosol.hno3.tavg-al-hxy-u.mon.GLB", + "aerosol.hno3.tavg-p39-hy-air.mon.GLB", + "aerosol.ho2.tavg-p39-hy-air.mon.GLB", + "aerosol.isop.tavg-al-hxy-u.mon.GLB", + "aerosol.jno2.tavg-al-hxy-u.mon.GLB", + "aerosol.lossch4.tavg-al-hxy-u.mon.GLB", + "aerosol.lossco.tavg-al-hxy-u.mon.GLB", + "aerosol.lossn2o.tavg-al-hxy-u.mon.GLB", + "aerosol.lwp.tavg-u-hxy-u.mon.GLB", + "aerosol.mmraerh2o.tavg-al-hxy-u.mon.GLB", + "aerosol.mmraerh2o.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmraerh2o.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrbc.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrbc.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrbc.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrbc.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrdust.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrdust.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrdust.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrdust.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrnh4.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrnh4.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrnh4.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrnh4.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrno3.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrno3.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrno3.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrno3.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmroa.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmroa.tavg-al-hxy-u.mon.GLB", + "aerosol.mmroa.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmroa.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrpm1.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrpm1.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrpm2p5.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrpm2p5.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrso4.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrso4.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrso4.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrso4.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrsoa.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrsoa.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrsoa.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrss.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrss.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrss.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrss.tpt-h2m-hs-u.3hr.GLB", + "aerosol.nh50.tavg-al-hxy-u.mon.GLB", + "aerosol.no.tavg-al-hxy-u.mon.GLB", + "aerosol.no2.tavg-al-hxy-u.mon.GLB", + "aerosol.no2.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.noy.tavg-p39-hy-air.mon.GLB", + "aerosol.o3.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.o3.tmax-h2m-hxy-u.day.GLB", + "aerosol.o3loss.tavg-al-hxy-u.mon.GLB", + "aerosol.o3prod.tavg-al-hxy-u.mon.GLB", + "aerosol.od443aer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550aer.tavg-u-hxy-u.day.GLB", + "aerosol.od550aer.tavg-u-hxy-u.mon.30S-90S", + "aerosol.od550aer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550aerh2o.tavg-u-hxy-u.mon.GLB", + "aerosol.od550bb.tavg-u-hxy-u.mon.GLB", + "aerosol.od550bc.tavg-u-hxy-u.mon.GLB", + "aerosol.od550csaer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550dust.tavg-u-hxy-u.mon.GLB", + "aerosol.od550lt1aer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550no3.tavg-u-hxy-u.mon.GLB", + "aerosol.od550oa.tavg-u-hxy-u.mon.GLB", + "aerosol.od550so4.tavg-u-hxy-u.mon.GLB", + "aerosol.od550soa.tavg-u-hxy-u.mon.GLB", + "aerosol.od550ss.tavg-u-hxy-u.mon.GLB", + "aerosol.od865aer.tavg-u-hxy-u.mon.GLB", + "aerosol.oh.tavg-al-hxy-u.mon.GLB", + "aerosol.oh.tavg-p39-hy-air.mon.GLB", + "aerosol.pan.tavg-al-hxy-u.mon.GLB", + "aerosol.photo1d.tavg-al-hxy-u.mon.GLB", + "aerosol.pod0.tsum-u-hxy-u.mon.GLB", + "aerosol.reffccwctop.tavg-u-hxy-cl.mon.GLB", + "aerosol.reffclwtop.tavg-u-hxy-cl.mon.30S-90S", + "aerosol.reffclwtop.tavg-u-hxy-cl.mon.GLB", + "aerosol.rluscsaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rlutaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rlutcsaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rsutaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rsutcsaf.tavg-u-hxy-u.mon.GLB", + "aerosol.sfpm1.tavg-h2m-hxy-u.day.GLB", + "aerosol.sfpm10.tavg-al-hxy-u.mon.30S-90S", + "aerosol.sfpm10.tavg-al-hxy-u.mon.GLB", + "aerosol.sfpm10.tavg-h2m-hxy-u.day.GLB", + "aerosol.sfpm25.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.sfpm25.tavg-h2m-hxy-u.day.GLB", + "aerosol.so2.tavg-al-hxy-u.mon.30S-90S", + "aerosol.so2.tavg-al-hxy-u.mon.GLB", + "aerosol.so2.tavg-h2m-hxy-u.day.GLB", + "aerosol.so2.tpt-h2m-hs-u.3hr.GLB", + "aerosol.tatp.tavg-u-hxy-u.mon.GLB", + "aerosol.toz.tavg-u-hxy-u.day.GLB", + "aerosol.toz.tavg-u-hxy-u.mon.GLB", + "aerosol.tropoz.tavg-u-hxy-u.mon.GLB", + "aerosol.ttop.tavg-u-hxy-cl.mon.GLB", + "aerosol.ua.tavg-10hPa-hxy-air.day.GLB", + "aerosol.vt100.tavg-100hPa-hy-air.mon.GLB", + "aerosol.wa.tavg-al-hxy-u.mon.GLB", + "aerosol.wetbc.tavg-u-hxy-u.mon.GLB", + "aerosol.wetdust.tavg-u-hxy-u.mon.GLB", + "aerosol.wetoa.tavg-u-hxy-u.mon.GLB", + "aerosol.wetso2.tavg-u-hxy-u.mon.GLB", + "aerosol.wetso4.tavg-u-hxy-u.mon.GLB", + "aerosol.wetss.tavg-u-hxy-u.mon.GLB", + "aerosol.zg.tavg-10hPa-hxy-air.day.GLB", + "atmos.albisccp.tavg-u-hxy-cl.mon.30S-90S", + "atmos.aod550volso4.tavg-u-hxy-u.mon.GLB", + "atmos.bldep.tavg-u-hxy-u.mon.GLB", + "atmos.bldep.tmax-u-hxy-u.day.GLB", + "atmos.bldep.tmin-u-hxy-u.day.GLB", + "atmos.cl.tavg-al-hxy-u.day.GLB", + "atmos.cl.tavg-al-hxy-u.mon.30S-90S", + "atmos.clc.tavg-al-hxy-u.mon.30S-90S", + "atmos.clc.tavg-al-hxy-u.mon.GLB", + "atmos.clcalipso.tavg-220hPa-hxy-air.mon.30S-90S", + "atmos.clcalipso.tavg-220hPa-hxy-air.mon.GLB", + "atmos.clcalipso.tavg-560hPa-hxy-air.mon.30S-90S", + "atmos.clcalipso.tavg-560hPa-hxy-air.mon.GLB", + "atmos.clcalipso.tavg-840hPa-hxy-air.mon.30S-90S", + "atmos.clcalipso.tavg-840hPa-hxy-air.mon.GLB", + "atmos.clcalipso.tavg-h40-hxy-air.mon.30S-90S", + "atmos.cldnci.tavg-u-hxy-cl.mon.GLB", + "atmos.cldncl.tavg-u-hxy-cl.mon.GLB", + "atmos.cldnvi.tavg-u-hxy-u.mon.GLB", + "atmos.cli.tavg-al-hxy-u.mon.30S-90S", + "atmos.clic.tavg-al-hxy-u.mon.30S-90S", + "atmos.clis.tavg-al-hxy-u.mon.30S-90S", + "atmos.clisccp.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clisccp.tavg-p7c-hxy-air.mon.GLB", + "atmos.clivi.tavg-u-hxy-u.mon.30S-90S", + "atmos.clivimodis.tavg-u-hxy-u.mon.30S-90S", + "atmos.clmodis.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clmodis.tavg-p7c-hxy-air.mon.GLB", + "atmos.clmodisice.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clmodisice.tavg-p7c-hxy-air.mon.GLB", + "atmos.clmodisiceReff.tavg-u-hxy-u.mon.GLB", + "atmos.clmodisliquid.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clmodisliquid.tavg-p7c-hxy-air.mon.GLB", + "atmos.clmodisliquidReff.tavg-u-hxy-u.mon.GLB", + "atmos.cls.tavg-al-hxy-u.mon.30S-90S", + "atmos.clt.tavg-u-hxy-lnd.day.GLB", + "atmos.clt.tavg-u-hxy-u.mon.30S-90S", + "atmos.cltc.tavg-u-hxy-u.mon.GLB", + "atmos.cltcalipso.tavg-u-hxy-u.mon.30S-90S", + "atmos.cltisccp.tavg-u-hxy-u.mon.30S-90S", + "atmos.cltmodis.tavg-u-hxy-u.mon.30S-90S", + "atmos.clw.tavg-al-hxy-u.mon.30S-90S", + "atmos.clwc.tavg-al-hxy-u.mon.30S-90S", + "atmos.clws.tavg-al-hxy-u.mon.30S-90S", + "atmos.clwvi.tavg-u-hxy-u.mon.30S-90S", + "atmos.clwvimodis.tavg-u-hxy-u.mon.30S-90S", + "atmos.co2.tavg-al-hxy-u.mon.GLB", + "atmos.co2.tavg-p19-hxy-air.mon.GLB", + "atmos.co2.tclm-u-hm-u.mon.GLB", + "atmos.co23D.tavg-al-hxy-u.mon.GLB", + "atmos.co2mass.tavg-u-hm-u.mon.GLB", + "atmos.dmc.tavg-alh-hxy-u.mon.30S-90S", + "atmos.edt.tavg-al-hxy-u.mon.30S-90S", + "atmos.evspsbl.tavg-u-hxy-lnd.day.GLB", + "atmos.evu.tavg-al-hxy-u.mon.30S-90S", + "atmos.fco2antt.tavg-u-hxy-u.mon.GLB", + "atmos.fco2fos.tavg-u-hxy-u.mon.GLB", + "atmos.fco2nat.tavg-u-hxy-u.mon.GLB", + "atmos.hfls.tavg-u-hxy-u.day.GLB", + "atmos.hfls.tavg-u-hxy-u.mon.30S-90S", + "atmos.hfss.tavg-u-hxy-u.day.GLB", + "atmos.hfss.tavg-u-hxy-u.mon.30S-90S", + "atmos.hur.tavg-al-hxy-u.mon.30S-90S", + "atmos.hur.tavg-al-hxy-u.mon.GLB", + "atmos.hur.tavg-p19-hxy-air.mon.30S-90S", + "atmos.hurs.tavg-h2m-hxy-u.mon.30S-90S", + "atmos.hurs.tmax-h2m-hxy-u.day.GLB", + "atmos.hurs.tmin-h2m-hxy-u.day.GLB", + "atmos.hus.tavg-al-hxy-u.mon.30S-90S", + "atmos.hus.tavg-al-hxy-u.mon.GLB", + "atmos.hus.tavg-p19-hxy-u.mon.30S-90S", + "atmos.hus.tpt-al-hxy-u.6hr.GLB", + "atmos.hus.tpt-p7h-hxy-air.6hr.GLB", + "atmos.huss.tavg-h2m-hxy-u.mon.30S-90S", + "atmos.huss.tpt-h2m-hxy-u.1hr.GLB", + "atmos.loadso4.tavg-u-hxy-u.mon.GLB", + "atmos.mc.tavg-alh-hxy-u.mon.GLB", + "atmos.mcd.tavg-alh-hxy-u.mon.30S-90S", + "atmos.mcu.tavg-alh-hxy-u.mon.30S-90S", + "atmos.mcu.tavg-alh-hxy-u.mon.GLB", + "atmos.pctisccp.tavg-u-hxy-cl.mon.30S-90S", + "atmos.pfull.tavg-al-hxy-u.mon.GLB", + "atmos.pfull.tclm-al-hxy-u.mon.30S-90S", + "atmos.phalf.tavg-alh-hxy-u.mon.GLB", + "atmos.pr.tavg-u-hxy-u.mon.30S-90S", + "atmos.pr.tmax-u-hxy-u.day.GLB", + "atmos.pr.tpt-u-hxy-u.6hr.GLB", + "atmos.prc.tavg-u-hxy-u.mon.30S-90S", + "atmos.prra.tavg-u-hxy-lnd.day.GLB", + "atmos.prra.tavg-u-hxy-u.mon.30S-90S", + "atmos.prsn.tavg-u-hxy-u.3hr.GLB", + "atmos.prsn.tavg-u-hxy-u.day.GLB", + "atmos.prsn.tavg-u-hxy-u.mon.30S-90S", + "atmos.prw.tavg-u-hxy-u.day.GLB", + "atmos.prw.tavg-u-hxy-u.mon.30S-90S", + "atmos.ps.tavg-u-hxy-u.1hr.GLB", + "atmos.ps.tavg-u-hxy-u.mon.30S-90S", + "atmos.ps.tpt-u-hxy-u.6hr.GLB", + "atmos.psl.tavg-u-hxy-u.mon.30S-90S", + "atmos.psl.tpt-u-hxy-u.1hr.GLB", + "atmos.psl.tpt-u-hxy-u.6hr.GLB", + "atmos.ptp.tavg-u-hxy-u.mon.GLB", + "atmos.reffcclwtop.tavg-u-hxy-ccl.mon.GLB", + "atmos.reffclic.tavg-al-hxy-ccl.mon.30S-90S", + "atmos.reffclis.tavg-al-hxy-scl.mon.30S-90S", + "atmos.reffclwc.tavg-al-hxy-ccl.mon.30S-90S", + "atmos.reffclws.tavg-al-hxy-scl.mon.30S-90S", + "atmos.reffsclwtop.tavg-u-hxy-scl.mon.GLB", + "atmos.rld.tavg-alh-hxy-u.mon.GLB", + "atmos.rld4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rldcs.tavg-alh-hxy-u.mon.GLB", + "atmos.rldcs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rlds.tavg-u-hxy-u.1hr.GLB", + "atmos.rlds.tavg-u-hxy-u.day.GLB", + "atmos.rlds.tavg-u-hxy-u.mon.30S-90S", + "atmos.rldscs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rlu.tavg-alh-hxy-u.mon.GLB", + "atmos.rlu4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rlucs.tavg-alh-hxy-u.mon.GLB", + "atmos.rlucs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rlus.tavg-u-hxy-u.day.GLB", + "atmos.rlus.tavg-u-hxy-u.mon.30S-90S", + "atmos.rlut.tavg-u-hxy-u.mon.30S-90S", + "atmos.rlut4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rlutcs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rlutcs4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rsd.tavg-alh-hxy-u.mon.GLB", + "atmos.rsd4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsdcs.tavg-alh-hxy-u.mon.GLB", + "atmos.rsdcs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsds.tavg-u-hxy-u.1hr.GLB", + "atmos.rsds.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsdscs.tavg-u-hxy-u.day.GLB", + "atmos.rsdscs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsdt.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsu.tavg-alh-hxy-u.mon.GLB", + "atmos.rsu4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsucs.tavg-alh-hxy-u.mon.GLB", + "atmos.rsucs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsus.tavg-u-hxy-u.day.GLB", + "atmos.rsus.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsuscs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsut.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsut4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rsutcs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsutcs4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rtmt.tavg-u-hxy-u.mon.GLB", + "atmos.rv850.tpt-850hPa-hxy-air.6hr.GLB", + "atmos.scldncl.tavg-u-hxy-scl.mon.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.mon.30S-90S", + "atmos.sfcWind.tmax-h10m-hxy-u.day.GLB", + "atmos.ta.tavg-al-hxy-u.mon.30S-90S", + "atmos.ta.tavg-al-hxy-u.mon.GLB", + "atmos.ta.tavg-p19-hxy-air.mon.30S-90S", + "atmos.ta.tavg-p39-hy-air.mon.GLB", + "atmos.ta.tpt-al-hxy-u.6hr.GLB", + "atmos.ta.tpt-p7h-hxy-air.6hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.1hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.mon.30S-90S", + "atmos.tas.tmaxavg-h2m-hxy-u.mon.30S-90S", + "atmos.tas.tminavg-h2m-hxy-u.mon.30S-90S", + "atmos.tnt.tavg-al-hxy-u.mon.GLB", + "atmos.tntrl.tavg-al-hxy-u.mon.GLB", + "atmos.tntrs.tavg-al-hxy-u.mon.GLB", + "atmos.ts.tavg-u-hxy-u.mon.30S-90S", + "atmos.ts.tpt-u-hxy-u.6hr.GLB", + "atmos.ua.tavg-al-hxy-u.mon.GLB", + "atmos.ua.tavg-p19-hxy-air.mon.30S-90S", + "atmos.ua.tavg-p39-hy-air.mon.GLB", + "atmos.ua.tpt-al-hxy-u.6hr.GLB", + "atmos.ua.tpt-p7h-hxy-air.6hr.GLB", + "atmos.uas.tavg-h10m-hxy-u.mon.30S-90S", + "atmos.uas.tpt-h10m-hxy-u.1hr.GLB", + "atmos.va.tavg-al-hxy-u.mon.GLB", + "atmos.va.tavg-p19-hxy-air.mon.30S-90S", + "atmos.va.tavg-p39-hy-air.mon.GLB", + "atmos.va.tpt-al-hxy-u.6hr.GLB", + "atmos.va.tpt-p7h-hxy-air.6hr.GLB", + "atmos.vas.tavg-h10m-hxy-u.mon.30S-90S", + "atmos.vas.tpt-h10m-hxy-u.1hr.GLB", + "atmos.wap.tavg-p19-hxy-air.mon.30S-90S", + "atmos.zg.tavg-1000hPa-hxy-air.day.GLB", + "atmos.zg.tavg-500hPa-hxy-air.day.GLB", + "atmos.zg.tavg-al-hxy-u.mon.GLB", + "atmos.zg.tavg-p19-hxy-air.mon.30S-90S", + "atmos.zg.tavg-p39-hy-air.mon.GLB", + "atmos.zg.tpt-500hPa-hxy-air.6hr.GLB", + "atmos.zg.tpt-al-hxy-u.6hr.GLB", + "atmos.zg.tpt-p7h-hxy-air.6hr.GLB", + "atmos.ztp.tavg-u-hxy-u.mon.GLB", + "atmosChem.c2h4.tavg-al-hxy-u.mon.GLB", + "atmosChem.c2h5oh.tavg-al-hxy-u.mon.GLB", + "atmosChem.c4h10.tavg-al-hxy-u.mon.GLB", + "atmosChem.cfc11.tavg-u-hm-u.mon.GLB", + "atmosChem.cfc113.tavg-u-hm-u.mon.GLB", + "atmosChem.cfc12.tavg-u-hm-u.mon.GLB", + "atmosChem.ch3oh.tavg-al-hxy-u.mon.GLB", + "atmosChem.ch4.tavg-al-hxy-u.mon.GLB", + "atmosChem.ch4.tavg-p39-hy-air.mon.GLB", + "atmosChem.ch4losssoil.tavg-u-hxy-u.mon.GLB", + "atmosChem.ch4ref.ti-al-hxy-u.fx.GLB", + "atmosChem.chegph2oo1d.tavg-al-hxy-u.mon.GLB", + "atmosChem.chepnh4.tavg-al-hxy-u.mon.GLB", + "atmosChem.chepno3.tavg-al-hxy-u.mon.GLB", + "atmosChem.dms.tavg-al-hxy-u.mon.30S-90S", + "atmosChem.dms.tavg-al-hxy-u.mon.GLB", + "atmosChem.do3chm.tavg-al-hxy-u.mon.GLB", + "atmosChem.dryh2.tavg-u-hxy-u.mon.GLB", + "atmosChem.dryhno3.tavg-u-hxy-u.mon.GLB", + "atmosChem.drynh3.tavg-u-hxy-u.mon.GLB", + "atmosChem.drynh4.tavg-u-hxy-u.mon.GLB", + "atmosChem.drynoy.tavg-u-hxy-u.mon.GLB", + "atmosChem.e90inst.tpt-al-hxy-u.mon.GLB", + "atmosChem.emiach4.tavg-u-hxy-u.mon.GLB", + "atmosChem.emiavnox.tavg-al-hxy-u.mon.GLB", + "atmosChem.emic2h4.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic2h5oh.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic2h6.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic3h6.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic3h8.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic4h10.tavg-u-hxy-u.mon.GLB", + "atmosChem.emich3oh.tavg-u-hxy-u.mon.GLB", + "atmosChem.emich4.tavg-u-hxy-u.mon.GLB", + "atmosChem.emih2.tavg-u-hxy-u.mon.GLB", + "atmosChem.emilkch4.tavg-u-hxy-u.mon.GLB", + "atmosChem.h2.tavg-al-hxy-u.mon.GLB", + "atmosChem.h2loss.tavg-al-hxy-u.mon.GLB", + "atmosChem.h2prod.tavg-al-hxy-u.mon.GLB", + "atmosChem.hcfc22.tavg-u-hm-u.mon.GLB", + "atmosChem.meanage.tavg-al-hxy-u.mon.GLB", + "atmosChem.meanage.tavg-p39-hy-air.mon.GLB", + "atmosChem.n2o.tavg-al-hxy-u.mon.GLB", + "atmosChem.n2o.tavg-p39-hy-air.mon.GLB", + "atmosChem.o3.tavg-al-hxy-u.mon.GLB", + "atmosChem.o3.tavg-p19-hxy-air.mon.GLB", + "atmosChem.o3.tavg-p39-hy-air.mon.GLB", + "atmosChem.o3.tpt-al-hxy-u.mon.GLB", + "atmosChem.o3ref.tclm-al-hxy-u.fx.GLB", + "atmosChem.o3ref.ti-al-hxy-u.fx.GLB", + "atmosChem.o3ste.tavg-al-hxy-u.mon.GLB", + "atmosChem.rlutch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rlutcsch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rlutcso3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rluto3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsutch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsutcsch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsutcso3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsuto3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.stratch4loss.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropch4loss.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropch4lossoh.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropdo3chm.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropo3ste.tavg-al-hxy-u.mon.GLB", + "atmosChem.wethno3.tavg-al-hxy-u.mon.GLB", + "atmosChem.wetnh3.tavg-u-hxy-u.mon.GLB", + "atmosChem.wetnh4.tavg-u-hxy-u.mon.GLB", + "atmosChem.wetno3.tavg-al-hxy-u.mon.GLB", + "atmosChem.wetnoy.tavg-u-hxy-u.mon.GLB", + "land.albc.tavg-u-hxy-veg.mon.GLB", + "land.areacellr.ti-u-hxy-u.fx.GLB", + "land.baresoilFrac.tavg-u-hxy-u.mon.GLB", + "land.burntFractionAll.tavg-u-hxy-u.mon.GLB", + "land.cGeologicStorage.tavg-u-hxy-u.mon.GLB", + "land.cLand.tavg-u-hxy-lnd.mon.GLB", + "land.cLitter.tavg-u-hxy-lnd.mon.GLB", + "land.cnc.tavg-u-hxy-u.mon.GLB", + "land.cProduct.tavg-u-hxy-lnd.mon.GLB", + "land.cropFrac.tavg-u-hxy-u.mon.GLB", + "land.cSoil.tavg-d100cm-hxy-lnd.mon.GLB", + "land.cSoil.tavg-u-hxy-lnd.mon.GLB", + "land.cVeg.tavg-u-hxy-lnd.mon.GLB", + "land.dcw.tavg-u-hxy-lnd.day.GLB", + "land.dslw.tavg-u-hxy-lnd.day.GLB", + "land.evspsblpot.tavg-u-hxy-lnd.day.GLB", + "land.evspsblpot.tavg-u-hxy-lnd.mon.GLB", + "land.evspsblsoi.tavg-u-hxy-u.day.GLB", + "land.evspsblveg.tavg-u-hxy-u.day.GLB", + "land.fAnthDisturb.tavg-u-hxy-lnd.mon.GLB", + "land.fBNF.tavg-u-hxy-lnd.mon.GLB", + "land.fCLandToOcean.tavg-u-hxy-lnd.mon.GLB", + "land.fDeforestToAtmos.tavg-u-hxy-lnd.mon.GLB", + "land.fDeforestToProduct.tavg-u-hxy-lnd.mon.GLB", + "land.fFire.tavg-u-hxy-lnd.mon.GLB", + "land.fFireAll.tavg-u-hxy-lnd.mon.GLB", + "land.fFireNat.tavg-u-hxy-lnd.mon.GLB", + "land.fHarvestToAtmos.tavg-u-hxy-lnd.mon.GLB", + "land.fHarvestToGeologicStorage.tavg-u-hxy-lnd.mon.GLB", + "land.fHarvestToProduct.tavg-u-hxy-lnd.mon.GLB", + "land.fLitterSoil.tavg-u-hxy-lnd.mon.GLB", + "land.fN2O.tavg-u-hxy-lnd.mon.GLB", + "land.fNAnthDisturb.tavg-u-hxy-lnd.mon.GLB", + "land.fNdep.tavg-u-hxy-lnd.mon.GLB", + "land.fNfert.tavg-u-hxy-lnd.mon.GLB", + "land.fNLandToOcean.tavg-u-hxy-lnd.mon.GLB", + "land.fNLitterSoil.tavg-u-hxy-lnd.mon.GLB", + "land.fNloss.tavg-u-hxy-lnd.mon.GLB", + "land.fNnetmin.tavg-u-hxy-lnd.mon.GLB", + "land.fNOx.tavg-u-hxy-lnd.mon.GLB", + "land.fNProduct.tavg-u-hxy-lnd.mon.GLB", + "land.fNup.tavg-u-hxy-lnd.mon.GLB", + "land.fNVegLitter.tavg-u-hxy-lnd.mon.GLB", + "land.fNVegSoil.tavg-u-hxy-lnd.mon.GLB", + "land.fProductDecomp.tavg-u-hxy-lnd.mon.GLB", + "land.fVegLitter.tavg-u-hxy-lnd.mon.GLB", + "land.fVegSoil.tavg-u-hxy-lnd.mon.GLB", + "land.gpp.tavg-u-hxy-lnd.mon.GLB", + "land.grassFrac.tavg-u-hxy-u.mon.GLB", + "land.landCoverFrac.tavg-u-hxy-u.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.day.GLB", + "land.mrrob.tavg-u-hxy-lnd.day.GLB", + "land.mrros.tavg-u-hxy-lnd.day.GLB", + "land.mrsfl.tavg-sl-hxy-lnd.day.GLB", + "land.mrsfl.tavg-sl-hxy-lnd.mon.GLB", + "land.mrsll.tavg-sl-hxy-lnd.day.GLB", + "land.mrsll.tavg-sl-hxy-lnd.mon.GLB", + "land.mrso.tavg-u-hxy-lnd.day.GLB", + "land.mrsol.tavg-d10cm-hxy-lnd.day.GLB", + "land.mrsol.tavg-sl-hxy-lnd.day.GLB", + "land.mrsol.tavg-sl-hxy-lnd.mon.GLB", + "land.mrsow.tavg-u-hxy-lnd.day.GLB", + "land.mrtws.tavg-u-hxy-lnd.day.GLB", + "land.mrtws.tavg-u-hxy-lnd.mon.GLB", + "land.nbp.tavg-u-hxy-lnd.mon.GLB", + "land.nep.tavg-u-hxy-lnd.mon.GLB", + "land.nLand.tavg-u-hxy-lnd.mon.GLB", + "land.nLitter.tavg-u-hxy-lnd.mon.GLB", + "land.nMineral.tavg-u-hxy-lnd.mon.GLB", + "land.npp.tavg-u-hxy-lnd.mon.GLB", + "land.nProduct.tavg-u-hxy-lnd.mon.GLB", + "land.nSoil.tavg-u-hxy-lnd.mon.GLB", + "land.nVeg.tavg-u-hxy-lnd.mon.GLB", + "land.pastureFrac.tavg-u-hxy-u.mon.GLB", + "land.prveg.tavg-u-hxy-lnd.mon.GLB", + "land.ra.tavg-u-hxy-lnd.mon.GLB", + "land.residualFrac.tavg-u-hxy-u.mon.GLB", + "land.rh.tavg-u-hxy-lnd.mon.GLB", + "land.rivi.tavg-u-hxy-lnd.day.GLB", + "land.rivo.tavg-u-hxy-lnd.day.GLB", + "land.rsds.tavg-u-hxy-sn.mon.GLB", + "land.rsus.tavg-u-hxy-sn.mon.GLB", + "land.shrubFrac.tavg-u-hxy-u.mon.GLB", + "land.tas.tavg-u-hxy-u.1hr.GLB", + "land.tran.tavg-u-hxy-lnd.mon.GLB", + "land.treeFrac.tavg-u-hxy-u.mon.GLB", + "land.tsl.tavg-sl-hxy-lnd.mon.GLB", + "land.tslsi.tavg-u-hxy-u.day.GLB", + "land.vegFrac.tavg-u-hxy-u.mon.GLB", + "land.vegHeight.tavg-u-hxy-veg.mon.GLB", + "land.wetlandCH4.tavg-u-hxy-lnd.mon.GLB", + "land.wtd.tavg-u-hxy-lnd.day.GLB", + "landIce.snd.tavg-u-hxy-lnd.mon.GLB", + "landIce.snw.tavg-u-hxy-lnd.day.GLB", + "ocean.absscint.tavg-op4-hxy-sea.mon.GLB", + "ocean.agessc.tavg-ol-hxy-sea.mon.GLB", + "ocean.bigthetao.tavg-ol-hm-sea.mon.GLB", + "ocean.bigthetao.tavg-ol-hxy-sea.dec.GLB", + "ocean.bigthetao.tavg-op20bar-hxy-sea.day.GLB", + "ocean.chcint.tavg-op4-hxy-sea.mon.GLB", + "ocean.ficeberg.tavg-ol-hxy-sea.mon.GLB", + "ocean.friver.tavg-u-hxy-sea.mon.GLB", + "ocean.hfbasin.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpmadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpmdiff.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpsmadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfds.tavg-u-hxy-sea.mon.30S-90S", + "ocean.hfx.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfx.tavg-u-hxy-sea.day.GLB", + "ocean.hfx.tavg-u-hxy-sea.mon.GLB", + "ocean.hfy.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfy.tavg-u-hxy-sea.day.GLB", + "ocean.hfy.tavg-u-hxy-sea.mon.GLB", + "ocean.htovgyre.tavg-u-hyb-sea.mon.GLB", + "ocean.htovovrt.tavg-u-hyb-sea.mon.GLB", + "ocean.masscello.tavg-ol-hxy-sea.dec.GLB", + "ocean.masso.tavg-u-hm-sea.dec.GLB", + "ocean.masso.tavg-u-hm-sea.mon.GLB", + "ocean.mlotst.tavg-u-hxy-sea.day.GLB", + "ocean.mlotst.tavg-u-hxy-sea.mon.30S-90S", + "ocean.mlotst.tmax-u-hxy-sea.mon.GLB", + "ocean.mlotst.tmin-u-hxy-sea.mon.GLB", + "ocean.mpw.tavg-u-hxy-sea.mon.GLB", + "ocean.mpw.tpt-u-hxy-sea.3hr.GLB", + "ocean.mpwswell.tavg-u-hxy-sea.mon.GLB", + "ocean.mpwswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.mpwwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.mpwwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.msftbarot.tavg-u-hxy-sea.mon.GLB", + "ocean.msftm.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftm.tavg-rho-hyb-sea.mon.GLB", + "ocean.msfty.tavg-ol-ht-sea.mon.GLB", + "ocean.msfty.tavg-rho-ht-sea.mon.GLB", + "ocean.obvfsq.tavg-ol-hxy-sea.mon.GLB", + "ocean.pbo.tavg-u-hxy-sea.mon.GLB", + "ocean.pfscint.tavg-op4-hxy-sea.mon.GLB", + "ocean.phcint.tavg-op4-hxy-sea.mon.GLB", + "ocean.pso.tavg-u-hxy-sea.mon.GLB", + "ocean.scint.tavg-op4-hxy-sea.mon.GLB", + "ocean.sduo.tavg-u-hxy-sea.mon.GLB", + "ocean.sduo.tpt-u-hxy-sea.3hr.GLB", + "ocean.sdvo.tavg-u-hxy-sea.mon.GLB", + "ocean.sdvo.tpt-u-hxy-sea.3hr.GLB", + "ocean.sfx.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfx.tavg-u-hxy-sea.mon.GLB", + "ocean.sfy.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfy.tavg-u-hxy-sea.mon.GLB", + "ocean.sltbasin.tavg-u-hyb-sea.mon.GLB", + "ocean.sltovgyre.tavg-u-hyb-sea.mon.GLB", + "ocean.sltovovrt.tavg-u-hyb-sea.mon.GLB", + "ocean.so.tavg-ol-hm-sea.mon.GLB", + "ocean.so.tavg-ol-hxy-sea.dec.GLB", + "ocean.so.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.sob.tavg-u-hxy-sea.mon.GLB", + "ocean.sos.tavg-u-hm-sea.mon.30S-90S", + "ocean.sos.tavg-u-hm-sea.mon.GLB", + "ocean.swh.tavg-u-hxy-sea.mon.GLB", + "ocean.swh.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhmax.tmax-u-hxy-sea.mon.GLB", + "ocean.swhmax.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhswell.tavg-u-hxy-sea.mon.GLB", + "ocean.swhswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.swhwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.tauuo.tavg-u-hxy-sea.3hr.GLB", + "ocean.tauuo.tavg-u-hxy-sea.dec.GLB", + "ocean.tauvo.tavg-u-hxy-sea.3hr.GLB", + "ocean.tauvo.tavg-u-hxy-sea.dec.GLB", + "ocean.thetao.tavg-ol-hm-sea.mon.GLB", + "ocean.thetao.tavg-ol-hxy-sea.dec.GLB", + "ocean.thetao.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.thetao.tavg-op20bar-hxy-sea.day.GLB", + "ocean.thkcello.tavg-ol-hxy-sea.dec.GLB", + "ocean.tob.tavg-u-hxy-sea.mon.GLB", + "ocean.tos.tavg-u-hm-sea.mon.GLB", + "ocean.tos.tavg-u-hxy-sea.mon.30S-90S", + "ocean.tos.tpt-u-hxy-sea.3hr.GLB", + "ocean.tossq.tavg-u-hxy-sea.day.GLB", + "ocean.umo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.uo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.uos.tavg-u-hxy-sea.day.GLB", + "ocean.vmo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.vo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.volcello.tavg-ol-hxy-sea.dec.GLB", + "ocean.volcello.tavg-ol-hxy-sea.mon.GLB", + "ocean.volcello.tavg-ol-hxy-sea.yr.GLB", + "ocean.volcello.ti-ol-hxy-sea.fx.GLB", + "ocean.volo.tavg-u-hm-sea.dec.GLB", + "ocean.volo.tavg-u-hm-sea.mon.GLB", + "ocean.vos.tavg-u-hxy-sea.day.GLB", + "ocean.wdir.tavg-u-hxy-sea.mon.GLB", + "ocean.wdir.tpt-u-hxy-sea.3hr.GLB", + "ocean.wdirswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wdirswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wdirwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wdirwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.wfcorr.tavg-u-hxy-sea.mon.GLB", + "ocean.wfo.tavg-u-hxy-sea.mon.GLB", + "ocean.wmo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.wo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.wpdir.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdir.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpdirswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdirswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpdirwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdirwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpp.tavg-u-hxy-sea.mon.GLB", + "ocean.wpp.tpt-u-hxy-sea.3hr.GLB", + "ocean.wppswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wppswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wppwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wppwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.zos.tavg-u-hxy-sea.mon.30S-90S", + "ocean.zossq.tavg-u-hxy-sea.mon.GLB", + "ocean.zostoga.tavg-u-hm-sea.day.GLB", + "ocnBgchem.bacc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.calc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chl.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chl.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chlcalc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chldiat.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chldiat.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chldiaz.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chldiaz.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chlmisc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chlmisc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chlpico.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chlpico.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.detoc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dfe.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.dfe.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissic.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.dissic.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissoc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dmso.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.expc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.expcalc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.fgco2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fsfe.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fsn.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.graz.tavg-ol-hxy-sea.mon.30S-90S", + "ocnBgchem.icfriver.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intdic.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intdoc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intparag.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbfe.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbn.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbp.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbsi.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpcalcite.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpn2.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpoc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpp.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpp.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppcalc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppdiat.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppdiaz.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppmisc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppnitrate.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpppico.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.nh4.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.nh4.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.no3.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.no3.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.o2.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.ocfriver.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.ph.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.ph.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phyc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phyc.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.phyc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phycalc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phycalc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phydiat.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phydiat.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phydiaz.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phydiaz.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phymisc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phymisc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phypico.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phypico.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.po4.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.pp.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.si.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.spco2.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.spco2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.talk.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zmeso.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zmeso.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zmicro.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zmicro.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zmisc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zmisc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zooc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zooc.tavg-ol-hxy-sea.mon.GLB", + "seaIce.evspsbl.tavg-u-hxy-si.mon.GLB", + "seaIce.prra.tavg-u-hxy-si.mon.GLB", + "seaIce.prsn.tavg-u-hxy-si.mon.GLB", + "seaIce.rlds.tavg-u-hxy-si.mon.GLB", + "seaIce.rlus.tavg-u-hxy-si.mon.GLB", + "seaIce.rsds.tavg-u-hxy-si.day.GLB", + "seaIce.rsds.tavg-u-hxy-si.mon.GLB", + "seaIce.rsus.tavg-u-hxy-si.day.GLB", + "seaIce.rsus.tavg-u-hxy-si.mon.GLB", + "seaIce.sbl.tavg-u-hxy-si.mon.GLB", + "seaIce.siage.tavg-u-hxy-si.day.GLB", + "seaIce.siage.tavg-u-hxy-si.mon.30S-90S", + "seaIce.siarea.tavg-u-hm-u.mon.NH", + "seaIce.siarea.tavg-u-hm-u.mon.SH", + "seaIce.siconc.tavg-u-hxy-u.mon.30S-90S", + "seaIce.siconca.tavg-u-hxy-u.day.GLB", + "seaIce.siconca.tavg-u-hxy-u.mon.GLB", + "seaIce.sidconcdyn.tavg-u-hxy-sea.mon.GLB", + "seaIce.sidconcth.tavg-u-hxy-sea.mon.GLB", + "seaIce.sidmassdyn.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthsi.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthwat.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmeltbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmeltlat.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmelttop.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassth.tavg-u-hxy-si.mon.GLB", + "seaIce.sieqthick.tavg-u-hxy-si.mon.GLB", + "seaIce.siextent.tavg-u-hm-u.mon.NH", + "seaIce.siextent.tavg-u-hm-u.mon.SH", + "seaIce.siflcondbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflcondtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sifllattop.tavg-u-hxy-si.mon.GLB", + "seaIce.siflsensbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflsenstop.tavg-u-hxy-si.mon.GLB", + "seaIce.siflswdbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sihc.tavg-u-hxy-sea.mon.GLB", + "seaIce.sisndmassdyn.tavg-u-hxy-si.mon.GLB", + "seaIce.sisndmasssi.tavg-u-hxy-si.mon.GLB", + "seaIce.sisndmasswind.tavg-u-hxy-si.mon.GLB", + "seaIce.sisnhc.tavg-u-hxy-si.mon.GLB", + "seaIce.sisnmass.tavg-u-hm-u.mon.NH", + "seaIce.sisnmass.tavg-u-hm-u.mon.SH", + "seaIce.sispeed.tavg-u-hxy-si.day.GLB", + "seaIce.sispeed.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-si.day.GLB", + "seaIce.sithick.tavg-u-hxy-si.mon.30S-90S", + "seaIce.sitimefrac.tavg-u-hxy-sea.day.GLB", + "seaIce.sitimefrac.tavg-u-hxy-sea.mon.30S-90S", + "seaIce.siu.tavg-u-hxy-si.day.GLB", + "seaIce.siu.tavg-u-hxy-si.mon.30S-90S", + "seaIce.siv.tavg-u-hxy-si.day.GLB", + "seaIce.siv.tavg-u-hxy-si.mon.30S-90S", + "seaIce.sivol.tavg-u-hm-u.mon.NH", + "seaIce.sivol.tavg-u-hm-u.mon.SH", + "seaIce.snc.tavg-u-hxy-si.mon.GLB", + "seaIce.snd.tavg-u-hxy-sn.day.GLB", + "seaIce.snd.tavg-u-hxy-sn.mon.30S-90S", + "seaIce.snm.tavg-u-hxy-si.mon.GLB", + "seaIce.snw.tavg-u-hxy-si.mon.GLB", + "seaIce.ts.tavg-u-hxy-si.day.GLB", + "seaIce.ts.tavg-u-hxy-si.mon.30S-90S" + ], + "Medium": [ + "atmos.hurs.tpt-h2m-hxy-u.3hr.GLB", + "atmos.noaahi2m.tavg-h2m-hxy-u.day.GLB", + "atmos.noaahi2m.tmax-h2m-hxy-u.day.GLB", + "atmos.ps.tpt-u-hxy-u.3hr.GLB", + "atmos.rlds.tavg-u-hxy-u.3hr.GLB", + "atmos.rldscs.tavg-u-hxy-u.day.GLB", + "atmos.rls.tavg-u-hxy-u.day.GLB", + "atmos.rls.tavg-u-hxy-u.mon.GLB", + "atmos.rsds.tavg-u-hxy-u.3hr.GLB", + "atmos.rss.tavg-u-hxy-u.day.GLB", + "atmos.rss.tavg-u-hxy-u.mon.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.3hr.GLB", + "atmos.ts.tavg-u-hxy-u.day.GLB", + "atmos.ua.tavg-h100m-hxy-u.3hr.GLB", + "atmos.va.tavg-h100m-hxy-u.3hr.GLB", + "atmos.wbgt.tavg-h2m-hxy-u.day.GLB", + "atmos.wbgt.tmax-h2m-hxy-u.day.GLB", + "land.cLeaf.tavg-u-hxy-lnd.mon.GLB", + "land.cLitterCwd.tavg-u-hxy-lnd.mon.GLB", + "land.cLitterSubSurf.tavg-u-hxy-lnd.mon.GLB", + "land.cLitterSurf.tavg-u-hxy-lnd.mon.GLB", + "land.cOther.tavg-u-hxy-lnd.mon.GLB", + "land.cRoot.tavg-u-hxy-lnd.mon.GLB", + "land.cropFracC3.tavg-u-hxy-u.mon.GLB", + "land.cropFracC4.tavg-u-hxy-u.mon.GLB", + "land.cSoil.tavg-sl-hxy-lnd.mon.GLB", + "land.cSoilPools.tavg-u-hxy-lnd.mon.GLB", + "land.cStem.tavg-u-hxy-lnd.mon.GLB", + "land.cVeg.tavg-u-hxy-ng.mon.GLB", + "land.cVeg.tavg-u-hxy-shb.mon.GLB", + "land.cVeg.tavg-u-hxy-tree.mon.GLB", + "land.fLitterFire.tavg-u-hxy-lnd.mon.GLB", + "land.fNgas.tavg-u-hxy-lnd.mon.GLB", + "land.fNgasFire.tavg-u-hxy-lnd.mon.GLB", + "land.fNgasNonFire.tavg-u-hxy-lnd.mon.GLB", + "land.fNleach.tavg-u-hxy-lnd.mon.GLB", + "land.fVegFire.tavg-u-hxy-lnd.mon.GLB", + "land.fVegLitterMortality.tavg-u-hxy-lnd.mon.GLB", + "land.fVegLitterSenescence.tavg-u-hxy-lnd.mon.GLB", + "land.fVegSoilMortality.tavg-u-hxy-lnd.mon.GLB", + "land.fVegSoilSenescence.tavg-u-hxy-lnd.mon.GLB", + "land.gpp.tavg-u-hxy-ng.mon.GLB", + "land.gpp.tavg-u-hxy-shb.mon.GLB", + "land.gpp.tavg-u-hxy-tree.mon.GLB", + "land.grassFracC3.tavg-u-hxy-u.mon.GLB", + "land.grassFracC4.tavg-u-hxy-u.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.3hr.GLB", + "land.mrros.tavg-u-hxy-lnd.3hr.GLB", + "land.mrsol.tpt-d10cm-hxy-lnd.3hr.GLB", + "land.nLeaf.tavg-u-hxy-lnd.mon.GLB", + "land.nLitterCwd.tavg-u-hxy-lnd.mon.GLB", + "land.nLitterSubSurf.tavg-u-hxy-lnd.mon.GLB", + "land.nLitterSurf.tavg-u-hxy-lnd.mon.GLB", + "land.nMineralNH4.tavg-u-hxy-lnd.mon.GLB", + "land.nMineralNO3.tavg-u-hxy-lnd.mon.GLB", + "land.nOther.tavg-u-hxy-lnd.mon.GLB", + "land.npp.tavg-u-hxy-ng.mon.GLB", + "land.npp.tavg-u-hxy-shb.mon.GLB", + "land.npp.tavg-u-hxy-tree.mon.GLB", + "land.nppLeaf.tavg-u-hxy-lnd.mon.GLB", + "land.nppOther.tavg-u-hxy-lnd.mon.GLB", + "land.nppRoot.tavg-u-hxy-lnd.mon.GLB", + "land.nppStem.tavg-u-hxy-lnd.mon.GLB", + "land.nRoot.tavg-u-hxy-lnd.mon.GLB", + "land.nStem.tavg-u-hxy-lnd.mon.GLB", + "land.pastureFracC3.tavg-u-hxy-u.mon.GLB", + "land.pastureFracC4.tavg-u-hxy-u.mon.GLB", + "land.ra.tavg-u-hxy-ng.mon.GLB", + "land.ra.tavg-u-hxy-shb.mon.GLB", + "land.ra.tavg-u-hxy-tree.mon.GLB", + "land.raLeaf.tavg-u-hxy-lnd.mon.GLB", + "land.raOther.tavg-u-hxy-lnd.mon.GLB", + "land.raRoot.tavg-u-hxy-lnd.mon.GLB", + "land.raStem.tavg-u-hxy-lnd.mon.GLB", + "land.rh.tavg-u-hxy-ng.mon.GLB", + "land.rh.tavg-u-hxy-shb.mon.GLB", + "land.rh.tavg-u-hxy-tree.mon.GLB", + "land.rhLitter.tavg-u-hxy-lnd.mon.GLB", + "land.rhSoil.tavg-u-hxy-lnd.mon.GLB", + "land.treeFracBdlDcd.tavg-u-hxy-u.mon.GLB", + "land.treeFracBdlEvg.tavg-u-hxy-u.mon.GLB", + "land.treeFracNdlDcd.tavg-u-hxy-u.mon.GLB", + "land.treeFracNdlEvg.tavg-u-hxy-u.mon.GLB", + "land.vegHeight.tavg-u-hxy-ng.mon.GLB", + "land.vegHeight.tavg-u-hxy-shb.mon.GLB", + "land.vegHeight.tavg-u-hxy-tree.mon.GLB", + "land.wetlandCH4cons.tavg-u-hxy-lnd.mon.GLB", + "land.wetlandCH4prod.tavg-u-hxy-lnd.mon.GLB", + "land.wetlandFrac.tavg-u-hxy-u.mon.GLB", + "ocean.evspsbl.tavg-u-hxy-ifs.mon.GLB", + "ocean.ficeberg.tavg-u-hxy-sea.mon.GLB", + "ocean.hfacrossline.tavg-u-ht-sea.mon.GLB", + "ocean.hfevapds.tavg-u-hxy-ifs.mon.GLB", + "ocean.hfibthermds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfibthermds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfrainds.tavg-u-hxy-ifs.mon.GLB", + "ocean.hfrunoffds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfrunoffds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfsnthermds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfsnthermds.tavg-u-hxy-sea.mon.GLB", + "ocean.mfo.tavg-u-ht-sea.mon.GLB", + "ocean.sf6.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfacrossline.tavg-u-ht-sea.mon.GLB", + "ocean.sfdsi.tavg-u-hxy-sea.mon.GLB", + "ocean.sfriver.tavg-u-hxy-sea.mon.GLB", + "ocean.siflfwbot.tavg-u-hxy-sea.mon.GLB", + "ocean.so.tavg-ol-hxy-sea.day.GLB", + "ocean.tnkebto.tavg-u-hxy-sea.yr.GLB", + "ocean.vsf.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfcorr.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfevap.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfpr.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfriver.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfsit.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.arag.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.arag.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.calc.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.calc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chl.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.chlcalc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dmso.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.epn.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.epp.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.expc.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.expcalc.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.fgdms.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fric.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.froc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.graz.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.intppcalc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppdiat.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppdiaz.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppmisc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppnitrate.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intpppico.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.o2.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.ph.tavg-op20bar-hxy-sea.day.GLB", + "seaIce.sfdsi.tavg-u-hxy-si.mon.GLB", + "seaIce.siage.tavg-u-hxy-si.mon.GLB", + "seaIce.siarea.tavg-u-hm-u.day.NH", + "seaIce.siarea.tavg-u-hm-u.day.SH", + "seaIce.siareaacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.sicompstren.tavg-u-hxy-si.mon.GLB", + "seaIce.sidivvel.tpt-u-hxy-si.mon.GLB", + "seaIce.sidmasstranx.tavg-u-hxy-u.mon.GLB", + "seaIce.sidmasstrany.tavg-u-hxy-u.mon.GLB", + "seaIce.sidragbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidragtop.tavg-u-hxy-si.mon.GLB", + "seaIce.siextent.tavg-u-hm-u.day.NH", + "seaIce.siextent.tavg-u-hm-u.day.SH", + "seaIce.sifb.tavg-u-hxy-si.mon.GLB", + "seaIce.siflfwbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflfwdrain.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcecoriolx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcecorioly.tavg-u-hxy-si.mon.GLB", + "seaIce.siforceintstrx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforceintstry.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcetiltx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcetilty.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdconc.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdsnconc.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdsnthick.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdthick.tavg-u-hxy-si.mon.GLB", + "seaIce.simassacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.simpconc.tavg-u-hxy-si.mon.GLB", + "seaIce.simpeffconc.tavg-u-hxy-si.mon.GLB", + "seaIce.simprefrozen.tavg-u-hxy-simp.mon.GLB", + "seaIce.simpthick.tavg-u-hxy-simp.mon.GLB", + "seaIce.sirdgconc.tavg-u-hxy-si.mon.GLB", + "seaIce.sisali.tavg-u-hxy-si.mon.GLB", + "seaIce.sisaltmass.tavg-u-hxy-si.mon.GLB", + "seaIce.sishearvel.tpt-u-hxy-si.mon.GLB", + "seaIce.sisnmass.tavg-u-hm-u.day.NH", + "seaIce.sisnmass.tavg-u-hm-u.day.SH", + "seaIce.sisnmassacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.sistressave.tpt-u-hxy-si.mon.GLB", + "seaIce.sistressmax.tpt-u-hxy-si.mon.GLB", + "seaIce.sistrxdtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sistrxubot.tavg-u-hxy-si.mon.GLB", + "seaIce.sistrydtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sistryubot.tavg-u-hxy-si.mon.GLB", + "seaIce.sitempbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sitempsnic.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-sir.mon.GLB", + "seaIce.sivol.tavg-u-hm-u.day.NH", + "seaIce.sivol.tavg-u-hm-u.day.SH" + ], + "Low": [ + "aerosol.sfpm1.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.sfpm10.tavg-h2m-hxy-u.1hr.GLB", + "atmos.hurs.tavg-h2m-hxy-u.1hr.GLB", + "atmosChem.drynh3.tavg-u-hxy-u.day.GLB", + "atmosChem.drynh4.tavg-u-hxy-u.day.GLB", + "atmosChem.drynoy.tavg-u-hxy-u.day.GLB", + "atmosChem.wetnh3.tavg-u-hxy-u.day.GLB", + "atmosChem.wetnh4.tavg-u-hxy-u.day.GLB", + "atmosChem.wetnoy.tavg-u-hxy-u.day.GLB", + "land.c13Land.tavg-u-hxy-lnd.mon.GLB", + "land.c13Litter.tavg-u-hxy-lnd.mon.GLB", + "land.c13Soil.tavg-u-hxy-lnd.mon.GLB", + "land.c13Veg.tavg-u-hxy-lnd.mon.GLB", + "land.c14Land.tavg-u-hxy-lnd.mon.GLB", + "land.c14Litter.tavg-u-hxy-lnd.mon.GLB", + "land.c14Soil.tavg-u-hxy-lnd.mon.GLB", + "land.c14Veg.tavg-u-hxy-lnd.mon.GLB", + "land.gppc13.tavg-u-hxy-lnd.mon.GLB", + "land.gppc14.tavg-u-hxy-lnd.mon.GLB", + "land.netAtmosLandC13Flux.tavg-u-hxy-lnd.mon.GLB", + "land.netAtmosLandC14Flux.tavg-u-hxy-lnd.mon.GLB", + "land.rac13.tavg-u-hxy-lnd.mon.GLB", + "land.rac14.tavg-u-hxy-lnd.mon.GLB", + "land.rhc13.tavg-u-hxy-lnd.mon.GLB", + "land.rhc14.tavg-u-hxy-lnd.mon.GLB", + "ocean.difmxybo.tavg-ol-hxy-sea.yr.GLB", + "ocean.difmxylo.tavg-ol-hxy-sea.yr.GLB", + "ocean.diftrblo.tavg-ol-hxy-sea.yr.GLB", + "ocean.diftrelo.tavg-ol-hxy-sea.yr.GLB", + "ocean.difvho.tavg-ol-hxy-sea.yr.GLB", + "ocean.difvso.tavg-ol-hxy-sea.yr.GLB", + "ocean.dispkexyfo.tavg-u-hxy-sea.yr.GLB", + "ocean.dxto.ti-u-hxy-u.fx.GLB", + "ocean.dxuo.ti-u-hxy-u.fx.GLB", + "ocean.dxvo.ti-u-hxy-u.fx.GLB", + "ocean.dyto.ti-u-hxy-u.fx.GLB", + "ocean.dyuo.ti-u-hxy-u.fx.GLB", + "ocean.dyvo.ti-u-hxy-u.fx.GLB", + "ocean.mlotstsq.tavg-u-hxy-sea.mon.GLB", + "ocean.msftmmpa.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftmmpa.tavg-rho-hyb-sea.mon.GLB", + "ocean.msftmsmpa.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftypa.tavg-ol-ht-sea.mon.GLB", + "ocean.msftypa.tavg-rho-ht-sea.mon.GLB", + "ocean.ocontempdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontempmint.tavg-u-hxy-sea.yr.GLB", + "ocean.ocontemppadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemppmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemppsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemprmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemptend.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottempdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottempmint.tavg-u-hxy-sea.yr.GLB", + "ocean.opottemppadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemppmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemppsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemprmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemptend.tavg-ol-hxy-sea.dec.GLB", + "ocean.osaltdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpsmadvect.tavg-ol-hxy-sea.mon.GLB", + "ocean.osaltpsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltrmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osalttend.tavg-ol-hxy-sea.yr.GLB", + "ocean.rsdoabsorb.tavg-ol-hxy-sea.yr.GLB", + "ocean.somint.tavg-u-hxy-sea.yr.GLB", + "ocean.sossq.tavg-u-hxy-sea.mon.GLB", + "ocean.thkcelluo.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcellvo.tavg-ol-hxy-sea.mon.GLB", + "ocean.tnpeo.tavg-u-hxy-sea.yr.GLB", + "ocean.tossq.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.dissi13c.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.dissi13c.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissi14c.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissi14cabio.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.dissi14cabio.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.fg13co2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fg14co2abio.tavg-u-hxy-sea.mon.GLB" + ] + }, + "abrupt-0p5CO2": { + "Core": [ + "atmos.areacella.ti-u-hxy-u.fx.GLB", + "atmos.cl.tavg-al-hxy-u.mon.GLB", + "atmos.cli.tavg-al-hxy-u.mon.GLB", + "atmos.clivi.tavg-u-hxy-u.mon.GLB", + "atmos.clt.tavg-u-hxy-u.day.GLB", + "atmos.clt.tavg-u-hxy-u.mon.GLB", + "atmos.clw.tavg-al-hxy-u.mon.GLB", + "atmos.clwvi.tavg-u-hxy-u.mon.GLB", + "atmos.evspsbl.tavg-u-hxy-u.mon.GLB", + "atmos.hfls.tavg-u-hxy-u.mon.GLB", + "atmos.hfss.tavg-u-hxy-u.mon.GLB", + "atmos.hur.tavg-p19-hxy-air.mon.GLB", + "atmos.hur.tavg-p19-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.6hr.GLB", + "atmos.hurs.tavg-h2m-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.mon.GLB", + "atmos.hus.tavg-p19-hxy-u.day.GLB", + "atmos.hus.tavg-p19-hxy-u.mon.GLB", + "atmos.huss.tavg-h2m-hxy-u.day.GLB", + "atmos.huss.tavg-h2m-hxy-u.mon.GLB", + "atmos.huss.tpt-h2m-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.1hr.GLB", + "atmos.pr.tavg-u-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.day.GLB", + "atmos.pr.tavg-u-hxy-u.mon.GLB", + "atmos.prc.tavg-u-hxy-u.mon.GLB", + "atmos.prsn.tavg-u-hxy-u.mon.GLB", + "atmos.prw.tavg-u-hxy-u.mon.GLB", + "atmos.ps.tavg-u-hxy-u.day.GLB", + "atmos.ps.tavg-u-hxy-u.mon.GLB", + "atmos.psl.tavg-u-hxy-u.day.GLB", + "atmos.psl.tavg-u-hxy-u.mon.GLB", + "atmos.rlds.tavg-u-hxy-u.mon.GLB", + "atmos.rldscs.tavg-u-hxy-u.mon.GLB", + "atmos.rlus.tavg-u-hxy-u.mon.GLB", + "atmos.rluscs.tavg-u-hxy-u.mon.GLB", + "atmos.rlut.tavg-u-hxy-u.mon.GLB", + "atmos.rlutcs.tavg-u-hxy-u.mon.GLB", + "atmos.rsds.tavg-u-hxy-u.day.GLB", + "atmos.rsds.tavg-u-hxy-u.mon.GLB", + "atmos.rsdscs.tavg-u-hxy-u.mon.GLB", + "atmos.rsdt.tavg-u-hxy-u.mon.GLB", + "atmos.rsus.tavg-u-hxy-u.mon.GLB", + "atmos.rsuscs.tavg-u-hxy-u.mon.GLB", + "atmos.rsut.tavg-u-hxy-u.mon.GLB", + "atmos.rsutcs.tavg-u-hxy-u.mon.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.day.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.mon.GLB", + "atmos.sftlf.ti-u-hxy-u.fx.GLB", + "atmos.ta.tavg-p19-hxy-air.day.GLB", + "atmos.ta.tavg-p19-hxy-air.mon.GLB", + "atmos.ta.tpt-p3-hxy-air.6hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.day.GLB", + "atmos.tas.tavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tmax-h2m-hxy-u.day.GLB", + "atmos.tas.tmaxavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tmin-h2m-hxy-u.day.GLB", + "atmos.tas.tminavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tpt-h2m-hxy-u.3hr.GLB", + "atmos.tauu.tavg-u-hxy-u.mon.GLB", + "atmos.tauv.tavg-u-hxy-u.mon.GLB", + "atmos.ts.tavg-u-hxy-u.mon.GLB", + "atmos.ua.tavg-p19-hxy-air.day.GLB", + "atmos.ua.tavg-p19-hxy-air.mon.GLB", + "atmos.ua.tpt-p3-hxy-air.6hr.GLB", + "atmos.uas.tavg-h10m-hxy-u.day.GLB", + "atmos.uas.tavg-h10m-hxy-u.mon.GLB", + "atmos.uas.tpt-h10m-hxy-u.3hr.GLB", + "atmos.va.tavg-p19-hxy-air.day.GLB", + "atmos.va.tavg-p19-hxy-air.mon.GLB", + "atmos.va.tpt-p3-hxy-air.6hr.GLB", + "atmos.vas.tavg-h10m-hxy-u.day.GLB", + "atmos.vas.tavg-h10m-hxy-u.mon.GLB", + "atmos.vas.tpt-h10m-hxy-u.3hr.GLB", + "atmos.wap.tavg-p19-hxy-air.mon.GLB", + "atmos.wap.tavg-p19-hxy-u.day.GLB", + "atmos.zg.tavg-p19-hxy-air.day.GLB", + "atmos.zg.tavg-p19-hxy-air.mon.GLB", + "land.evspsblsoi.tavg-u-hxy-lnd.mon.GLB", + "land.evspsblveg.tavg-u-hxy-lnd.mon.GLB", + "land.lai.tavg-u-hxy-lnd.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.mon.GLB", + "land.mrros.tavg-u-hxy-lnd.mon.GLB", + "land.mrso.tavg-u-hxy-lnd.mon.GLB", + "land.mrsofc.ti-u-hxy-lnd.fx.GLB", + "land.mrsol.tavg-d10cm-hxy-lnd.mon.GLB", + "land.orog.ti-u-hxy-u.fx.GLB", + "land.rootd.ti-u-hxy-lnd.fx.GLB", + "land.sftgif.ti-u-hxy-u.fx.GLB", + "land.slthick.ti-sl-hxy-lnd.fx.GLB", + "landIce.mrfso.tavg-u-hxy-lnd.mon.GLB", + "landIce.snc.tavg-u-hxy-lnd.mon.GLB", + "landIce.snw.tavg-u-hxy-lnd.mon.GLB", + "ocean.areacello.ti-u-hxy-u.fx.GLB", + "ocean.basin.ti-u-hxy-u.fx.GLB", + "ocean.bigthetao.tavg-ol-hxy-sea.mon.GLB", + "ocean.deptho.ti-u-hxy-sea.fx.GLB", + "ocean.hfds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfgeou.ti-u-hxy-sea.fx.GLB", + "ocean.masscello.tavg-ol-hxy-sea.mon.GLB", + "ocean.masscello.ti-ol-hxy-sea.fx.GLB", + "ocean.mlotst.tavg-u-hxy-sea.mon.GLB", + "ocean.sftof.ti-u-hxy-u.fx.GLB", + "ocean.so.tavg-ol-hxy-sea.mon.GLB", + "ocean.sos.tavg-u-hxy-sea.day.GLB", + "ocean.sos.tavg-u-hxy-sea.mon.GLB", + "ocean.tauuo.tavg-u-hxy-sea.mon.GLB", + "ocean.tauvo.tavg-u-hxy-sea.mon.GLB", + "ocean.thetao.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcello.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcello.ti-ol-hxy-sea.fx.GLB", + "ocean.tos.tavg-u-hxy-sea.day.GLB", + "ocean.tos.tavg-u-hxy-sea.mon.GLB", + "ocean.umo.tavg-ol-hxy-sea.mon.GLB", + "ocean.uo.tavg-ol-hxy-sea.mon.GLB", + "ocean.vmo.tavg-ol-hxy-sea.mon.GLB", + "ocean.vo.tavg-ol-hxy-sea.mon.GLB", + "ocean.wmo.tavg-ol-hxy-sea.mon.GLB", + "ocean.wo.tavg-ol-hxy-sea.mon.GLB", + "ocean.zos.tavg-u-hxy-sea.day.GLB", + "ocean.zos.tavg-u-hxy-sea.mon.GLB", + "ocean.zostoga.tavg-u-hm-sea.mon.GLB", + "seaIce.siconc.tavg-u-hxy-u.day.GLB", + "seaIce.siconc.tavg-u-hxy-u.mon.GLB", + "seaIce.simass.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-si.mon.GLB", + "seaIce.sitimefrac.tavg-u-hxy-sea.mon.GLB", + "seaIce.siu.tavg-u-hxy-si.mon.GLB", + "seaIce.siv.tavg-u-hxy-si.mon.GLB", + "seaIce.snd.tavg-u-hxy-sn.mon.GLB", + "seaIce.ts.tavg-u-hxy-si.mon.GLB" + ], + "High": [ + "aerosol.abs550aer.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550bc.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550dust.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550no3.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550oa.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550so4.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550ss.tavg-u-hxy-u.mon.GLB", + "aerosol.airmass.tavg-al-hxy-u.mon.GLB", + "aerosol.aoanh.tavg-al-hxy-u.mon.NH", + "aerosol.bry.tavg-p39-hy-air.mon.GLB", + "aerosol.bs550aer.tpt-al-hxy-u.6hr.GLB", + "aerosol.c2h6.tavg-al-hxy-u.mon.GLB", + "aerosol.c3h6.tavg-al-hxy-u.mon.GLB", + "aerosol.c3h8.tavg-al-hxy-u.mon.GLB", + "aerosol.ccldncl.tavg-u-hxy-ccl.mon.GLB", + "aerosol.ccn.tavg-u-hxy-ccl.mon.30S-90S", + "aerosol.ccn.tavg-u-hxy-ccl.mon.GLB", + "aerosol.ccn1.tavg-al-hxy-u.mon.30S-90S", + "aerosol.ccn1.tavg-al-hxy-u.mon.GLB", + "aerosol.ccnp02.tavg-al-hxy-u.mon.30S-90S", + "aerosol.ccnp02.tavg-al-hxy-u.mon.GLB", + "aerosol.cdnc.tavg-al-hxy-u.mon.30S-90S", + "aerosol.cdnc.tavg-al-hxy-u.mon.GLB", + "aerosol.cfc114.tavg-al-hxy-u.mon.GLB", + "aerosol.ch3coch3.tavg-al-hxy-u.mon.GLB", + "aerosol.cheaqpso4.tavg-al-hxy-u.mon.GLB", + "aerosol.chegpso4.tavg-al-hxy-u.mon.GLB", + "aerosol.chepasoa.tavg-u-hxy-u.mon.GLB", + "aerosol.chepsoa.tavg-u-hxy-u.mon.GLB", + "aerosol.cly.tavg-p39-hy-air.mon.GLB", + "aerosol.co.tavg-al-hxy-u.mon.GLB", + "aerosol.co.tavg-h2m-hxy-u.day.GLB", + "aerosol.cod.tavg-u-hxy-u.day.GLB", + "aerosol.cod.tavg-u-hxy-u.mon.30S-90S", + "aerosol.cod.tavg-u-hxy-u.mon.GLB", + "aerosol.conccn.tavg-al-hxy-u.mon.GLB", + "aerosol.conccn.tpt-u-hs-u.3hr.GLB", + "aerosol.depdust.tavg-u-hxy-u.mon.GLB", + "aerosol.drybc.tavg-u-hxy-u.mon.GLB", + "aerosol.drydust.tavg-u-hxy-u.mon.GLB", + "aerosol.dryno3.tavg-u-hxy-u.mon.GLB", + "aerosol.dryo3.tavg-u-hxy-u.mon.GLB", + "aerosol.dryoa.tavg-u-hxy-u.mon.GLB", + "aerosol.dryso2.tavg-u-hxy-u.mon.GLB", + "aerosol.dryso4.tavg-u-hxy-u.mon.GLB", + "aerosol.dryss.tavg-u-hxy-u.mon.GLB", + "aerosol.ec550aer.tavg-al-hxy-u.mon.GLB", + "aerosol.ec550aer.tpt-u-hxy-u.6hr.GLB", + "aerosol.emiaco.tavg-u-hxy-u.mon.GLB", + "aerosol.emianox.tavg-u-hxy-u.mon.GLB", + "aerosol.emiaoa.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbbc.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbch4.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbco.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbdms.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbnh3.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbnox.tavg-u-hxy-u.mon.GLB", + "aerosol.emibboa.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbso2.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbvoc.tavg-u-hxy-u.mon.GLB", + "aerosol.emibc.tavg-u-hxy-u.mon.GLB", + "aerosol.emibvoc.tavg-u-hxy-u.mon.GLB", + "aerosol.emico.tavg-u-hxy-u.mon.GLB", + "aerosol.emidms.tavg-u-hxy-u.mon.30S-90S", + "aerosol.emidms.tavg-u-hxy-u.mon.GLB", + "aerosol.emidust.tavg-u-hxy-u.mon.GLB", + "aerosol.emiisop.tavg-u-hxy-u.mon.GLB", + "aerosol.emilnox.tavg-al-hxy-u.mon.GLB", + "aerosol.eminh3.tavg-u-hxy-u.mon.GLB", + "aerosol.eminox.tavg-u-hxy-u.mon.GLB", + "aerosol.emioa.tavg-u-hxy-u.mon.GLB", + "aerosol.emiso2.tavg-u-hxy-u.mon.GLB", + "aerosol.emiso4.tavg-u-hxy-u.mon.GLB", + "aerosol.emiss.tavg-u-hxy-u.mon.30S-90S", + "aerosol.emiss.tavg-u-hxy-u.mon.GLB", + "aerosol.emivoc.tavg-u-hxy-u.mon.GLB", + "aerosol.h2o.tavg-al-hxy-u.mon.GLB", + "aerosol.h2o.tavg-p39-hy-air.mon.GLB", + "aerosol.hcfc22.tavg-al-hxy-u.mon.GLB", + "aerosol.hcho.tavg-al-hxy-u.mon.GLB", + "aerosol.hcl.tavg-al-hxy-u.mon.GLB", + "aerosol.hcl.tavg-p39-hy-air.mon.GLB", + "aerosol.hfc125.tavg-al-hxy-u.mon.GLB", + "aerosol.hfc134a.tavg-al-hxy-u.mon.GLB", + "aerosol.hno3.tavg-al-hxy-u.mon.GLB", + "aerosol.hno3.tavg-p39-hy-air.mon.GLB", + "aerosol.ho2.tavg-p39-hy-air.mon.GLB", + "aerosol.isop.tavg-al-hxy-u.mon.GLB", + "aerosol.jno2.tavg-al-hxy-u.mon.GLB", + "aerosol.lossch4.tavg-al-hxy-u.mon.GLB", + "aerosol.lossco.tavg-al-hxy-u.mon.GLB", + "aerosol.lossn2o.tavg-al-hxy-u.mon.GLB", + "aerosol.lwp.tavg-u-hxy-u.mon.GLB", + "aerosol.mmraerh2o.tavg-al-hxy-u.mon.GLB", + "aerosol.mmraerh2o.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmraerh2o.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrbc.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrbc.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrbc.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrbc.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrdust.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrdust.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrdust.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrdust.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrnh4.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrnh4.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrnh4.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrnh4.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrno3.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrno3.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrno3.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrno3.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmroa.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmroa.tavg-al-hxy-u.mon.GLB", + "aerosol.mmroa.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmroa.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrpm1.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrpm1.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrpm2p5.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrpm2p5.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrso4.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrso4.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrso4.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrso4.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrsoa.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrsoa.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrsoa.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrss.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrss.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrss.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrss.tpt-h2m-hs-u.3hr.GLB", + "aerosol.nh50.tavg-al-hxy-u.mon.GLB", + "aerosol.no.tavg-al-hxy-u.mon.GLB", + "aerosol.no2.tavg-al-hxy-u.mon.GLB", + "aerosol.no2.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.noy.tavg-p39-hy-air.mon.GLB", + "aerosol.o3.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.o3loss.tavg-al-hxy-u.mon.GLB", + "aerosol.o3prod.tavg-al-hxy-u.mon.GLB", + "aerosol.od443aer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550aer.tavg-u-hxy-u.day.GLB", + "aerosol.od550aer.tavg-u-hxy-u.mon.30S-90S", + "aerosol.od550aer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550aerh2o.tavg-u-hxy-u.mon.GLB", + "aerosol.od550bb.tavg-u-hxy-u.mon.GLB", + "aerosol.od550bc.tavg-u-hxy-u.mon.GLB", + "aerosol.od550csaer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550dust.tavg-u-hxy-u.mon.GLB", + "aerosol.od550lt1aer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550no3.tavg-u-hxy-u.mon.GLB", + "aerosol.od550oa.tavg-u-hxy-u.mon.GLB", + "aerosol.od550so4.tavg-u-hxy-u.mon.GLB", + "aerosol.od550soa.tavg-u-hxy-u.mon.GLB", + "aerosol.od550ss.tavg-u-hxy-u.mon.GLB", + "aerosol.od865aer.tavg-u-hxy-u.mon.GLB", + "aerosol.oh.tavg-al-hxy-u.mon.GLB", + "aerosol.oh.tavg-p39-hy-air.mon.GLB", + "aerosol.pan.tavg-al-hxy-u.mon.GLB", + "aerosol.photo1d.tavg-al-hxy-u.mon.GLB", + "aerosol.pod0.tsum-u-hxy-u.mon.GLB", + "aerosol.reffccwctop.tavg-u-hxy-cl.mon.GLB", + "aerosol.reffclwtop.tavg-u-hxy-cl.mon.30S-90S", + "aerosol.reffclwtop.tavg-u-hxy-cl.mon.GLB", + "aerosol.rluscsaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rlutaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rlutcsaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rsutaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rsutcsaf.tavg-u-hxy-u.mon.GLB", + "aerosol.sfpm1.tavg-h2m-hxy-u.day.GLB", + "aerosol.sfpm10.tavg-al-hxy-u.mon.30S-90S", + "aerosol.sfpm10.tavg-al-hxy-u.mon.GLB", + "aerosol.sfpm10.tavg-h2m-hxy-u.day.GLB", + "aerosol.sfpm25.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.sfpm25.tavg-h2m-hxy-u.day.GLB", + "aerosol.so2.tavg-al-hxy-u.mon.30S-90S", + "aerosol.so2.tavg-al-hxy-u.mon.GLB", + "aerosol.so2.tavg-h2m-hxy-u.day.GLB", + "aerosol.so2.tpt-h2m-hs-u.3hr.GLB", + "aerosol.tatp.tavg-u-hxy-u.mon.GLB", + "aerosol.toz.tavg-u-hxy-u.day.GLB", + "aerosol.toz.tavg-u-hxy-u.mon.GLB", + "aerosol.tropoz.tavg-u-hxy-u.mon.GLB", + "aerosol.ttop.tavg-u-hxy-cl.mon.GLB", + "aerosol.ua.tavg-10hPa-hxy-air.day.GLB", + "aerosol.vt100.tavg-100hPa-hy-air.mon.GLB", + "aerosol.wa.tavg-al-hxy-u.mon.GLB", + "aerosol.wetbc.tavg-u-hxy-u.mon.GLB", + "aerosol.wetdust.tavg-u-hxy-u.mon.GLB", + "aerosol.wetoa.tavg-u-hxy-u.mon.GLB", + "aerosol.wetso2.tavg-u-hxy-u.mon.GLB", + "aerosol.wetso4.tavg-u-hxy-u.mon.GLB", + "aerosol.wetss.tavg-u-hxy-u.mon.GLB", + "aerosol.zg.tavg-10hPa-hxy-air.day.GLB", + "atmos.albisccp.tavg-u-hxy-cl.day.GLB", + "atmos.albisccp.tavg-u-hxy-cl.mon.30S-90S", + "atmos.albisccp.tavg-u-hxy-cl.mon.GLB", + "atmos.bldep.tavg-u-hxy-u.mon.GLB", + "atmos.bldep.tmax-u-hxy-u.day.GLB", + "atmos.bldep.tmin-u-hxy-u.day.GLB", + "atmos.ccb.tavg-u-hxy-ccl.day.GLB", + "atmos.ccb.tavg-u-hxy-ccl.mon.GLB", + "atmos.cct.tavg-u-hxy-ccl.day.GLB", + "atmos.cct.tavg-u-hxy-ccl.mon.GLB", + "atmos.ci.tavg-u-hxy-u.mon.GLB", + "atmos.cl.tavg-al-hxy-u.mon.30S-90S", + "atmos.clc.tavg-al-hxy-u.mon.30S-90S", + "atmos.clc.tavg-al-hxy-u.mon.GLB", + "atmos.clcalipso.tavg-220hPa-hxy-air.day.GLB", + "atmos.clcalipso.tavg-220hPa-hxy-air.mon.30S-90S", + "atmos.clcalipso.tavg-220hPa-hxy-air.mon.GLB", + "atmos.clcalipso.tavg-560hPa-hxy-air.day.GLB", + "atmos.clcalipso.tavg-560hPa-hxy-air.mon.30S-90S", + "atmos.clcalipso.tavg-560hPa-hxy-air.mon.GLB", + "atmos.clcalipso.tavg-840hPa-hxy-air.day.GLB", + "atmos.clcalipso.tavg-840hPa-hxy-air.mon.30S-90S", + "atmos.clcalipso.tavg-840hPa-hxy-air.mon.GLB", + "atmos.clcalipso.tavg-h40-hxy-air.mon.30S-90S", + "atmos.clcalipso.tavg-h40-hxy-air.mon.GLB", + "atmos.cldnci.tavg-u-hxy-cl.mon.GLB", + "atmos.cldncl.tavg-u-hxy-cl.mon.GLB", + "atmos.cldnvi.tavg-u-hxy-u.mon.GLB", + "atmos.cli.tavg-al-hxy-u.mon.30S-90S", + "atmos.clic.tavg-al-hxy-u.mon.30S-90S", + "atmos.clic.tavg-al-hxy-u.mon.GLB", + "atmos.clis.tavg-al-hxy-u.mon.30S-90S", + "atmos.clis.tavg-al-hxy-u.mon.GLB", + "atmos.clisccp.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clisccp.tavg-p7c-hxy-air.mon.GLB", + "atmos.clivi.tavg-u-hxy-u.day.GLB", + "atmos.clivi.tavg-u-hxy-u.mon.30S-90S", + "atmos.clivic.tavg-u-hxy-u.day.GLB", + "atmos.clivimodis.tavg-u-hxy-u.mon.30S-90S", + "atmos.clmisr.tavg-h16-hxy-air.mon.GLB", + "atmos.clmodis.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clmodis.tavg-p7c-hxy-air.mon.GLB", + "atmos.clmodisice.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clmodisice.tavg-p7c-hxy-air.mon.GLB", + "atmos.clmodisiceReff.tavg-u-hxy-u.mon.GLB", + "atmos.clmodisliquid.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clmodisliquid.tavg-p7c-hxy-air.mon.GLB", + "atmos.clmodisliquidReff.tavg-u-hxy-u.mon.GLB", + "atmos.cls.tavg-al-hxy-u.mon.30S-90S", + "atmos.cls.tavg-al-hxy-u.mon.GLB", + "atmos.clt.tavg-u-hxy-u.mon.30S-90S", + "atmos.cltc.tavg-u-hxy-u.mon.GLB", + "atmos.cltcalipso.tavg-u-hxy-u.day.GLB", + "atmos.cltcalipso.tavg-u-hxy-u.mon.30S-90S", + "atmos.cltcalipso.tavg-u-hxy-u.mon.GLB", + "atmos.cltisccp.tavg-u-hxy-u.day.GLB", + "atmos.cltisccp.tavg-u-hxy-u.mon.30S-90S", + "atmos.cltisccp.tavg-u-hxy-u.mon.GLB", + "atmos.cltmodis.tavg-u-hxy-u.mon.30S-90S", + "atmos.clw.tavg-al-hxy-u.mon.30S-90S", + "atmos.clwc.tavg-al-hxy-u.mon.30S-90S", + "atmos.clwc.tavg-al-hxy-u.mon.GLB", + "atmos.clws.tavg-al-hxy-u.mon.30S-90S", + "atmos.clws.tavg-al-hxy-u.mon.GLB", + "atmos.clwvi.tavg-u-hxy-u.day.GLB", + "atmos.clwvi.tavg-u-hxy-u.mon.30S-90S", + "atmos.clwvic.tavg-u-hxy-u.day.GLB", + "atmos.clwvimodis.tavg-u-hxy-u.mon.30S-90S", + "atmos.co2.tavg-al-hxy-u.mon.GLB", + "atmos.co2.tavg-h2m-hxy-u.mon.GLB", + "atmos.co2.tavg-p19-hxy-air.mon.GLB", + "atmos.co2.tclm-p19-hxy-air.mon.GLB", + "atmos.co2.tclm-u-hm-u.mon.GLB", + "atmos.co23D.tavg-al-hxy-u.mon.GLB", + "atmos.co2mass.tavg-u-hm-u.mon.GLB", + "atmos.dmc.tavg-alh-hxy-u.mon.30S-90S", + "atmos.dmc.tavg-alh-hxy-u.mon.GLB", + "atmos.edt.tavg-al-hxy-u.mon.30S-90S", + "atmos.edt.tavg-al-hxy-u.mon.GLB", + "atmos.evspsbl.tavg-u-hxy-lnd.day.GLB", + "atmos.evu.tavg-al-hxy-u.mon.30S-90S", + "atmos.evu.tavg-al-hxy-u.mon.GLB", + "atmos.fco2antt.tavg-u-hxy-u.mon.GLB", + "atmos.fco2fos.tavg-u-hxy-u.mon.GLB", + "atmos.fco2nat.tavg-u-hxy-u.mon.GLB", + "atmos.hfls.tavg-u-hxy-u.day.GLB", + "atmos.hfls.tavg-u-hxy-u.mon.30S-90S", + "atmos.hfss.tavg-u-hxy-u.day.GLB", + "atmos.hfss.tavg-u-hxy-u.mon.30S-90S", + "atmos.hur.tavg-al-hxy-u.mon.30S-90S", + "atmos.hur.tavg-al-hxy-u.mon.GLB", + "atmos.hur.tavg-p19-hxy-air.mon.30S-90S", + "atmos.hurs.tavg-h2m-hxy-u.mon.30S-90S", + "atmos.hurs.tmax-h2m-hxy-u.day.GLB", + "atmos.hurs.tmin-h2m-hxy-u.day.GLB", + "atmos.hus.tavg-al-hxy-u.mon.30S-90S", + "atmos.hus.tavg-al-hxy-u.mon.GLB", + "atmos.hus.tavg-p19-hxy-u.mon.30S-90S", + "atmos.hus.tpt-al-hxy-u.6hr.GLB", + "atmos.hus.tpt-p7h-hxy-air.6hr.GLB", + "atmos.huss.tavg-h2m-hxy-u.mon.30S-90S", + "atmos.huss.tpt-h2m-hxy-u.1hr.GLB", + "atmos.mc.tavg-alh-hxy-u.mon.GLB", + "atmos.mcd.tavg-alh-hxy-u.mon.30S-90S", + "atmos.mcd.tavg-alh-hxy-u.mon.GLB", + "atmos.mcu.tavg-alh-hxy-u.mon.30S-90S", + "atmos.mcu.tavg-alh-hxy-u.mon.GLB", + "atmos.pctisccp.tavg-u-hxy-cl.day.GLB", + "atmos.pctisccp.tavg-u-hxy-cl.mon.30S-90S", + "atmos.pctisccp.tavg-u-hxy-cl.mon.GLB", + "atmos.pfull.tavg-al-hxy-u.mon.GLB", + "atmos.pfull.tclm-al-hxy-u.mon.30S-90S", + "atmos.pfull.tclm-al-hxy-u.mon.GLB", + "atmos.phalf.tavg-alh-hxy-u.mon.GLB", + "atmos.phalf.tclm-alh-hxy-u.mon.GLB", + "atmos.pr.tavg-u-hxy-u.mon.30S-90S", + "atmos.pr.tmax-u-hxy-u.day.GLB", + "atmos.pr.tpt-u-hxy-u.6hr.GLB", + "atmos.pr17O.tavg-u-hxy-u.mon.GLB", + "atmos.pr18O.tavg-u-hxy-u.mon.GLB", + "atmos.pr2h.tavg-u-hxy-u.mon.GLB", + "atmos.prc.tavg-u-hxy-u.day.GLB", + "atmos.prc.tavg-u-hxy-u.mon.30S-90S", + "atmos.prra.tavg-u-hxy-lnd.day.GLB", + "atmos.prra.tavg-u-hxy-u.mon.30S-90S", + "atmos.prra.tavg-u-hxy-u.mon.GLB", + "atmos.prsn.tavg-u-hxy-u.3hr.GLB", + "atmos.prsn.tavg-u-hxy-u.day.GLB", + "atmos.prsn.tavg-u-hxy-u.mon.30S-90S", + "atmos.prsn18O.tavg-u-hxy-u.mon.GLB", + "atmos.prsn2h.tavg-u-hxy-u.mon.GLB", + "atmos.prw.tavg-u-hxy-u.day.GLB", + "atmos.prw.tavg-u-hxy-u.mon.30S-90S", + "atmos.ps.tavg-u-hxy-u.1hr.GLB", + "atmos.ps.tavg-u-hxy-u.mon.30S-90S", + "atmos.ps.tpt-u-hxy-u.6hr.GLB", + "atmos.psl.tavg-u-hxy-u.mon.30S-90S", + "atmos.psl.tpt-u-hxy-u.1hr.GLB", + "atmos.psl.tpt-u-hxy-u.6hr.GLB", + "atmos.ptp.tavg-u-hxy-u.mon.GLB", + "atmos.reffcclwtop.tavg-u-hxy-ccl.mon.GLB", + "atmos.reffclic.tavg-al-hxy-ccl.mon.30S-90S", + "atmos.reffclic.tavg-al-hxy-ccl.mon.GLB", + "atmos.reffclis.tavg-al-hxy-scl.mon.30S-90S", + "atmos.reffclis.tavg-al-hxy-scl.mon.GLB", + "atmos.reffclwc.tavg-al-hxy-ccl.mon.30S-90S", + "atmos.reffclwc.tavg-al-hxy-ccl.mon.GLB", + "atmos.reffclws.tavg-al-hxy-scl.mon.30S-90S", + "atmos.reffclws.tavg-al-hxy-scl.mon.GLB", + "atmos.reffsclwtop.tavg-u-hxy-scl.mon.GLB", + "atmos.rld.tavg-alh-hxy-u.mon.GLB", + "atmos.rld4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rldcs.tavg-alh-hxy-u.mon.GLB", + "atmos.rldcs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rlds.tavg-u-hxy-u.1hr.GLB", + "atmos.rlds.tavg-u-hxy-u.day.GLB", + "atmos.rlds.tavg-u-hxy-u.mon.30S-90S", + "atmos.rldscs.tavg-u-hxy-u.day.GLB", + "atmos.rldscs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rlu.tavg-alh-hxy-u.mon.GLB", + "atmos.rlu4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rlucs.tavg-alh-hxy-u.mon.GLB", + "atmos.rlucs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rlus.tavg-u-hxy-u.day.GLB", + "atmos.rlus.tavg-u-hxy-u.mon.30S-90S", + "atmos.rluscs.tavg-u-hxy-u.day.GLB", + "atmos.rlut.tavg-u-hxy-u.day.GLB", + "atmos.rlut.tavg-u-hxy-u.mon.30S-90S", + "atmos.rlut4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rlutcs.tavg-u-hxy-u.day.GLB", + "atmos.rlutcs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rlutcs4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rsd.tavg-alh-hxy-u.mon.GLB", + "atmos.rsd4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsdcs.tavg-alh-hxy-u.mon.GLB", + "atmos.rsdcs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsds.tavg-u-hxy-u.1hr.GLB", + "atmos.rsds.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsdscs.tavg-u-hxy-u.day.GLB", + "atmos.rsdscs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsdt.tavg-u-hxy-u.day.GLB", + "atmos.rsdt.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsu.tavg-alh-hxy-u.mon.GLB", + "atmos.rsu4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsucs.tavg-alh-hxy-u.mon.GLB", + "atmos.rsucs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsus.tavg-u-hxy-u.day.GLB", + "atmos.rsus.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsuscs.tavg-u-hxy-u.day.GLB", + "atmos.rsuscs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsut.tavg-u-hxy-u.day.GLB", + "atmos.rsut.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsut4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rsutcs.tavg-u-hxy-u.day.GLB", + "atmos.rsutcs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsutcs4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rtmt.tavg-u-hxy-u.mon.GLB", + "atmos.rv850.tpt-850hPa-hxy-air.6hr.GLB", + "atmos.sci.tavg-u-hxy-u.mon.GLB", + "atmos.scldncl.tavg-u-hxy-scl.mon.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.mon.30S-90S", + "atmos.sfcWind.tmax-h10m-hxy-u.day.GLB", + "atmos.smc.tavg-alh-hxy-u.mon.GLB", + "atmos.ta.tavg-700hPa-hxy-air.day.GLB", + "atmos.ta.tavg-al-hxy-u.mon.30S-90S", + "atmos.ta.tavg-al-hxy-u.mon.GLB", + "atmos.ta.tavg-p19-hxy-air.mon.30S-90S", + "atmos.ta.tavg-p39-hy-air.mon.GLB", + "atmos.ta.tpt-al-hxy-u.6hr.GLB", + "atmos.ta.tpt-p7h-hxy-air.6hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.1hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.mon.30S-90S", + "atmos.tas.tmaxavg-h2m-hxy-u.mon.30S-90S", + "atmos.tas.tminavg-h2m-hxy-u.mon.30S-90S", + "atmos.tdps.tavg-h2m-hxy-u.mon.GLB", + "atmos.tnhus.tavg-al-hxy-u.mon.GLB", + "atmos.tnhusa.tavg-al-hxy-u.mon.GLB", + "atmos.tnhusc.tavg-al-hxy-u.mon.GLB", + "atmos.tnhusd.tavg-al-hxy-u.mon.GLB", + "atmos.tnhusmp.tavg-al-hxy-u.mon.GLB", + "atmos.tnhuspbl.tavg-al-hxy-u.mon.GLB", + "atmos.tnhusscp.tavg-al-hxy-u.mon.GLB", + "atmos.tnhusscpbl.tavg-al-hxy-u.mon.GLB", + "atmos.tnt.tavg-al-hxy-u.mon.GLB", + "atmos.tnta.tavg-al-hxy-u.mon.GLB", + "atmos.tntc.tavg-al-hxy-u.mon.GLB", + "atmos.tntd.tavg-al-hxy-u.mon.GLB", + "atmos.tntmp.tavg-al-hxy-u.mon.GLB", + "atmos.tntpbl.tavg-al-hxy-u.mon.GLB", + "atmos.tntr.tavg-al-hxy-u.mon.GLB", + "atmos.tntrl.tavg-al-hxy-u.mon.GLB", + "atmos.tntrlcs.tavg-al-hxy-u.mon.GLB", + "atmos.tntrs.tavg-al-hxy-u.mon.GLB", + "atmos.tntrscs.tavg-al-hxy-u.mon.GLB", + "atmos.tntscp.tavg-al-hxy-u.mon.GLB", + "atmos.tntscpbl.tavg-al-hxy-u.mon.GLB", + "atmos.ts.tavg-u-hxy-u.day.GLB", + "atmos.ts.tavg-u-hxy-u.mon.30S-90S", + "atmos.ts.tpt-u-hxy-u.6hr.GLB", + "atmos.ua.tavg-al-hxy-u.mon.GLB", + "atmos.ua.tavg-p19-hxy-air.mon.30S-90S", + "atmos.ua.tavg-p39-hy-air.mon.GLB", + "atmos.ua.tpt-al-hxy-u.6hr.GLB", + "atmos.ua.tpt-p7h-hxy-air.6hr.GLB", + "atmos.uas.tavg-h10m-hxy-u.mon.30S-90S", + "atmos.uas.tpt-h10m-hxy-u.1hr.GLB", + "atmos.va.tavg-al-hxy-u.mon.GLB", + "atmos.va.tavg-p19-hxy-air.mon.30S-90S", + "atmos.va.tavg-p39-hy-air.mon.GLB", + "atmos.va.tpt-al-hxy-u.6hr.GLB", + "atmos.va.tpt-p7h-hxy-air.6hr.GLB", + "atmos.vas.tavg-h10m-hxy-u.mon.30S-90S", + "atmos.vas.tpt-h10m-hxy-u.1hr.GLB", + "atmos.wap.tavg-500hPa-hxy-air.day.GLB", + "atmos.wap.tavg-p19-hxy-air.mon.30S-90S", + "atmos.zg.tavg-1000hPa-hxy-air.day.GLB", + "atmos.zg.tavg-500hPa-hxy-air.day.GLB", + "atmos.zg.tavg-al-hxy-u.mon.GLB", + "atmos.zg.tavg-p19-hxy-air.mon.30S-90S", + "atmos.zg.tavg-p39-hy-air.mon.GLB", + "atmos.zg.tpt-500hPa-hxy-air.6hr.GLB", + "atmos.zg.tpt-al-hxy-u.6hr.GLB", + "atmos.zg.tpt-p7h-hxy-air.6hr.GLB", + "atmos.ztp.tavg-u-hxy-u.mon.GLB", + "atmosChem.c2h4.tavg-al-hxy-u.mon.GLB", + "atmosChem.c2h5oh.tavg-al-hxy-u.mon.GLB", + "atmosChem.c4h10.tavg-al-hxy-u.mon.GLB", + "atmosChem.cfc11.tavg-u-hm-u.mon.GLB", + "atmosChem.cfc113.tavg-u-hm-u.mon.GLB", + "atmosChem.cfc12.tavg-u-hm-u.mon.GLB", + "atmosChem.ch3oh.tavg-al-hxy-u.mon.GLB", + "atmosChem.ch4.tavg-al-hxy-u.mon.GLB", + "atmosChem.ch4.tavg-p19-hxy-air.mon.GLB", + "atmosChem.ch4.tavg-p39-hy-air.mon.GLB", + "atmosChem.ch4.tavg-u-hm-u.mon.GLB", + "atmosChem.ch4.tclm-p19-hxy-air.mon.GLB", + "atmosChem.ch4.tclm-u-hm-u.mon.GLB", + "atmosChem.ch4losssoil.tavg-u-hxy-u.mon.GLB", + "atmosChem.ch4ref.ti-al-hxy-u.fx.GLB", + "atmosChem.chegph2oo1d.tavg-al-hxy-u.mon.GLB", + "atmosChem.chepnh4.tavg-al-hxy-u.mon.GLB", + "atmosChem.chepno3.tavg-al-hxy-u.mon.GLB", + "atmosChem.dms.tavg-al-hxy-u.mon.30S-90S", + "atmosChem.dms.tavg-al-hxy-u.mon.GLB", + "atmosChem.do3chm.tavg-al-hxy-u.mon.GLB", + "atmosChem.dryh2.tavg-u-hxy-u.mon.GLB", + "atmosChem.dryhno3.tavg-u-hxy-u.mon.GLB", + "atmosChem.drynh3.tavg-u-hxy-u.mon.GLB", + "atmosChem.drynh4.tavg-u-hxy-u.mon.GLB", + "atmosChem.drynoy.tavg-u-hxy-u.mon.GLB", + "atmosChem.e90inst.tpt-al-hxy-u.mon.GLB", + "atmosChem.emiach4.tavg-u-hxy-u.mon.GLB", + "atmosChem.emiavnox.tavg-al-hxy-u.mon.GLB", + "atmosChem.emic2h4.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic2h5oh.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic2h6.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic3h6.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic3h8.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic4h10.tavg-u-hxy-u.mon.GLB", + "atmosChem.emich3oh.tavg-u-hxy-u.mon.GLB", + "atmosChem.emich4.tavg-u-hxy-u.mon.GLB", + "atmosChem.emih2.tavg-u-hxy-u.mon.GLB", + "atmosChem.emilkch4.tavg-u-hxy-u.mon.GLB", + "atmosChem.h2.tavg-al-hxy-u.mon.GLB", + "atmosChem.h2loss.tavg-al-hxy-u.mon.GLB", + "atmosChem.h2prod.tavg-al-hxy-u.mon.GLB", + "atmosChem.hcfc22.tavg-u-hm-u.mon.GLB", + "atmosChem.meanage.tavg-al-hxy-u.mon.GLB", + "atmosChem.meanage.tavg-p39-hy-air.mon.GLB", + "atmosChem.n2o.tavg-al-hxy-u.mon.GLB", + "atmosChem.n2o.tavg-p19-hxy-air.mon.GLB", + "atmosChem.n2o.tavg-p39-hy-air.mon.GLB", + "atmosChem.n2o.tavg-u-hm-u.mon.GLB", + "atmosChem.n2o.tclm-p19-hxy-air.mon.GLB", + "atmosChem.n2o.tclm-u-hm-u.mon.GLB", + "atmosChem.o3.tavg-al-hxy-u.mon.GLB", + "atmosChem.o3.tavg-p19-hxy-air.mon.GLB", + "atmosChem.o3.tavg-p39-hy-air.mon.GLB", + "atmosChem.o3.tclm-p19-hxy-air.mon.GLB", + "atmosChem.o3.tpt-al-hxy-u.mon.GLB", + "atmosChem.o3ref.tclm-al-hxy-u.fx.GLB", + "atmosChem.o3ref.ti-al-hxy-u.fx.GLB", + "atmosChem.o3ste.tavg-al-hxy-u.mon.GLB", + "atmosChem.rlutch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rlutcsch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rlutcso3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rluto3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsutch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsutcsch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsutcso3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsuto3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.stratch4loss.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropch4loss.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropch4lossoh.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropdo3chm.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropo3ste.tavg-al-hxy-u.mon.GLB", + "atmosChem.wethno3.tavg-al-hxy-u.mon.GLB", + "atmosChem.wetnh3.tavg-u-hxy-u.mon.GLB", + "atmosChem.wetnh4.tavg-u-hxy-u.mon.GLB", + "atmosChem.wetno3.tavg-al-hxy-u.mon.GLB", + "atmosChem.wetnoy.tavg-u-hxy-u.mon.GLB", + "land.albc.tavg-u-hxy-veg.mon.GLB", + "land.areacellr.ti-u-hxy-u.fx.GLB", + "land.baresoilFrac.tavg-u-hxy-u.mon.GLB", + "land.burntFractionAll.tavg-u-hxy-u.mon.GLB", + "land.cGeologicStorage.tavg-u-hxy-u.mon.GLB", + "land.cLand.tavg-u-hxy-lnd.mon.GLB", + "land.cLitter.tavg-u-hxy-lnd.mon.GLB", + "land.cnc.tavg-u-hxy-u.mon.GLB", + "land.cProduct.tavg-u-hxy-lnd.mon.GLB", + "land.cropFrac.tavg-u-hxy-u.mon.GLB", + "land.cSoil.tavg-d100cm-hxy-lnd.mon.GLB", + "land.cSoil.tavg-sl-hxy-lnd.mon.GLB", + "land.cSoil.tavg-u-hxy-lnd.mon.GLB", + "land.cVeg.tavg-u-hxy-lnd.mon.GLB", + "land.dcw.tavg-u-hxy-lnd.day.GLB", + "land.depthl.ti-u-hxy-u.fx.GLB", + "land.depthsl.ti-u-hxy-u.fx.GLB", + "land.dslw.tavg-u-hxy-lnd.day.GLB", + "land.evspsblpot.tavg-u-hxy-lnd.day.GLB", + "land.evspsblpot.tavg-u-hxy-lnd.mon.GLB", + "land.fAnthDisturb.tavg-u-hxy-lnd.mon.GLB", + "land.fBNF.tavg-u-hxy-lnd.mon.GLB", + "land.fCLandToOcean.tavg-u-hxy-lnd.mon.GLB", + "land.fDeforestToAtmos.tavg-u-hxy-lnd.mon.GLB", + "land.fDeforestToProduct.tavg-u-hxy-lnd.mon.GLB", + "land.fFire.tavg-u-hxy-lnd.mon.GLB", + "land.fFireAll.tavg-u-hxy-lnd.mon.GLB", + "land.fFireNat.tavg-u-hxy-lnd.mon.GLB", + "land.fHarvestToAtmos.tavg-u-hxy-lnd.mon.GLB", + "land.fHarvestToGeologicStorage.tavg-u-hxy-lnd.mon.GLB", + "land.fHarvestToProduct.tavg-u-hxy-lnd.mon.GLB", + "land.fLitterSoil.tavg-u-hxy-lnd.mon.GLB", + "land.fN2O.tavg-u-hxy-lnd.mon.GLB", + "land.fNAnthDisturb.tavg-u-hxy-lnd.mon.GLB", + "land.fNdep.tavg-u-hxy-lnd.mon.GLB", + "land.fNfert.tavg-u-hxy-lnd.mon.GLB", + "land.fNLandToOcean.tavg-u-hxy-lnd.mon.GLB", + "land.fNLitterSoil.tavg-u-hxy-lnd.mon.GLB", + "land.fNloss.tavg-u-hxy-lnd.mon.GLB", + "land.fNnetmin.tavg-u-hxy-lnd.mon.GLB", + "land.fNOx.tavg-u-hxy-lnd.mon.GLB", + "land.fNProduct.tavg-u-hxy-lnd.mon.GLB", + "land.fNup.tavg-u-hxy-lnd.mon.GLB", + "land.fNVegLitter.tavg-u-hxy-lnd.mon.GLB", + "land.fNVegSoil.tavg-u-hxy-lnd.mon.GLB", + "land.fProductDecomp.tavg-u-hxy-lnd.mon.GLB", + "land.fVegLitter.tavg-u-hxy-lnd.mon.GLB", + "land.fVegSoil.tavg-u-hxy-lnd.mon.GLB", + "land.gpp.tavg-u-hxy-lnd.mon.GLB", + "land.grassFrac.tavg-u-hxy-u.mon.GLB", + "land.landCoverFrac.tavg-u-hxy-u.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.day.GLB", + "land.mrrob.tavg-u-hxy-lnd.day.GLB", + "land.mrros.tavg-u-hxy-lnd.day.GLB", + "land.mrsfl.tavg-sl-hxy-lnd.day.GLB", + "land.mrsfl.tavg-sl-hxy-lnd.mon.GLB", + "land.mrsll.tavg-sl-hxy-lnd.day.GLB", + "land.mrsll.tavg-sl-hxy-lnd.mon.GLB", + "land.mrso.tavg-u-hxy-lnd.day.GLB", + "land.mrsol.tavg-d10cm-hxy-lnd.day.GLB", + "land.mrsol.tavg-sl-hxy-lnd.day.GLB", + "land.mrsol.tavg-sl-hxy-lnd.mon.GLB", + "land.mrsow.tavg-u-hxy-lnd.day.GLB", + "land.mrtws.tavg-u-hxy-lnd.day.GLB", + "land.mrtws.tavg-u-hxy-lnd.mon.GLB", + "land.nbp.tavg-u-hxy-lnd.mon.GLB", + "land.nep.tavg-u-hxy-lnd.mon.GLB", + "land.nLand.tavg-u-hxy-lnd.mon.GLB", + "land.nLitter.tavg-u-hxy-lnd.mon.GLB", + "land.nMineral.tavg-u-hxy-lnd.mon.GLB", + "land.npp.tavg-u-hxy-lnd.mon.GLB", + "land.nProduct.tavg-u-hxy-lnd.mon.GLB", + "land.nSoil.tavg-u-hxy-lnd.mon.GLB", + "land.nVeg.tavg-u-hxy-lnd.mon.GLB", + "land.pastureFrac.tavg-u-hxy-u.mon.GLB", + "land.prveg.tavg-u-hxy-lnd.mon.GLB", + "land.ra.tavg-u-hxy-lnd.mon.GLB", + "land.residualFrac.tavg-u-hxy-u.mon.GLB", + "land.rh.tavg-u-hxy-lnd.mon.GLB", + "land.rivi.tavg-u-hxy-lnd.day.GLB", + "land.rivo.tavg-u-hxy-lnd.day.GLB", + "land.rsds.tavg-u-hxy-lnd.mon.GLB", + "land.rsds.tavg-u-hxy-sn.mon.GLB", + "land.rsus.tavg-u-hxy-lnd.mon.GLB", + "land.rsus.tavg-u-hxy-sn.mon.GLB", + "land.sftgif.tavg-u-hxy-u.mon.GLB", + "land.sftlaf.ti-u-hxy-u.fx.GLB", + "land.shrubFrac.tavg-u-hxy-u.mon.GLB", + "land.tas.tavg-u-hxy-u.1hr.GLB", + "land.tran.tavg-u-hxy-lnd.mon.GLB", + "land.treeFrac.tavg-u-hxy-u.mon.GLB", + "land.tsl.tavg-sl-hxy-lnd.day.GLB", + "land.tsl.tavg-sl-hxy-lnd.mon.GLB", + "land.tslsi.tavg-u-hxy-u.day.GLB", + "land.vegFrac.tavg-u-hxy-u.mon.GLB", + "land.vegHeight.tavg-u-hxy-veg.mon.GLB", + "land.wetlandCH4.tavg-u-hxy-lnd.mon.GLB", + "land.wtd.tavg-u-hxy-lnd.day.GLB", + "landIce.acabf.tavg-u-hxy-is.mon.GLB", + "landIce.hfls.tavg-u-hxy-is.mon.GLB", + "landIce.hfss.tavg-u-hxy-is.mon.GLB", + "landIce.icem.tavg-u-hxy-is.mon.GLB", + "landIce.litemptop.tavg-u-hxy-is.mon.GLB", + "landIce.lithk.ti-u-hxy-u.fx.GLB", + "landIce.mrro.tavg-u-hxy-is.mon.GLB", + "landIce.orog.tavg-u-hxy-is.mon.GLB", + "landIce.prra.tavg-u-hxy-is.mon.GLB", + "landIce.prsn.tavg-u-hxy-is.mon.GLB", + "landIce.rlds.tavg-u-hxy-is.mon.GLB", + "landIce.rlus.tavg-u-hxy-is.mon.GLB", + "landIce.rsds.tavg-u-hxy-is.mon.GLB", + "landIce.rsus.tavg-u-hxy-is.mon.GLB", + "landIce.sbl.tavg-u-hxy-is.mon.GLB", + "landIce.sbl.tavg-u-hxy-u.mon.GLB", + "landIce.sftflf.tavg-u-hxy-u.mon.GLB", + "landIce.sftflf.ti-u-hxy-u.fx.GLB", + "landIce.sftgrf.tavg-u-hxy-u.mon.GLB", + "landIce.sftgrf.ti-u-hxy-u.fx.GLB", + "landIce.snc.tavg-u-hxy-is.mon.GLB", + "landIce.snc.tavg-u-hxy-lnd.day.GLB", + "landIce.snd.tavg-u-hxy-lnd.mon.GLB", + "landIce.snicem.tavg-u-hxy-is.mon.GLB", + "landIce.snm.tavg-u-hxy-is.mon.GLB", + "landIce.snm.tavg-u-hxy-lnd.mon.GLB", + "landIce.snrefr.tavg-u-hxy-is.mon.GLB", + "landIce.snw.tavg-u-hxy-lnd.day.GLB", + "landIce.tas.tavg-u-hxy-is.mon.GLB", + "landIce.ts.tavg-u-hxy-is.mon.GLB", + "landIce.tsn.tavg-u-hxy-is.mon.GLB", + "landIce.tsn.tavg-u-hxy-lnd.mon.GLB", + "ocean.absscint.tavg-op4-hxy-sea.mon.GLB", + "ocean.agessc.tavg-ol-hxy-sea.mon.GLB", + "ocean.bigthetao.tavg-ol-hm-sea.mon.GLB", + "ocean.bigthetao.tavg-ol-hxy-sea.dec.GLB", + "ocean.bigthetao.tavg-op20bar-hxy-sea.day.GLB", + "ocean.chcint.tavg-op4-hxy-sea.mon.GLB", + "ocean.ficeberg.tavg-ol-hxy-sea.mon.GLB", + "ocean.ficeberg.tavg-u-hxy-sea.mon.GLB", + "ocean.flandice.tavg-u-hxy-sea.mon.GLB", + "ocean.friver.tavg-u-hxy-sea.mon.GLB", + "ocean.hfbasin.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpmadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpmdiff.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpsmadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfds.tavg-u-hxy-sea.mon.30S-90S", + "ocean.hfgeou.tavg-u-hxy-sea.mon.GLB", + "ocean.hfx.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfx.tavg-u-hxy-sea.day.GLB", + "ocean.hfx.tavg-u-hxy-sea.mon.GLB", + "ocean.hfy.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfy.tavg-u-hxy-sea.day.GLB", + "ocean.hfy.tavg-u-hxy-sea.mon.GLB", + "ocean.htovgyre.tavg-u-hyb-sea.mon.GLB", + "ocean.htovovrt.tavg-u-hyb-sea.mon.GLB", + "ocean.masscello.tavg-ol-hxy-sea.dec.GLB", + "ocean.masso.tavg-u-hm-sea.dec.GLB", + "ocean.masso.tavg-u-hm-sea.mon.GLB", + "ocean.mlotst.tavg-u-hxy-sea.day.GLB", + "ocean.mlotst.tavg-u-hxy-sea.mon.30S-90S", + "ocean.mlotst.tmax-u-hxy-sea.mon.GLB", + "ocean.mlotst.tmin-u-hxy-sea.mon.GLB", + "ocean.mpw.tavg-u-hxy-sea.mon.GLB", + "ocean.mpw.tpt-u-hxy-sea.3hr.GLB", + "ocean.mpwswell.tavg-u-hxy-sea.mon.GLB", + "ocean.mpwswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.mpwwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.mpwwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.msftbarot.tavg-u-hxy-sea.mon.GLB", + "ocean.msftm.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftm.tavg-rho-hyb-sea.mon.GLB", + "ocean.msfty.tavg-ol-ht-sea.mon.GLB", + "ocean.msfty.tavg-rho-ht-sea.mon.GLB", + "ocean.obvfsq.tavg-ol-hxy-sea.mon.GLB", + "ocean.opottemptend.tavg-ol-hxy-sea.yr.GLB", + "ocean.pbo.tavg-u-hxy-sea.mon.GLB", + "ocean.pfscint.tavg-op4-hxy-sea.mon.GLB", + "ocean.phcint.tavg-op4-hxy-sea.mon.GLB", + "ocean.pso.tavg-u-hxy-sea.mon.GLB", + "ocean.rsds.tavg-u-hxy-ifs.mon.GLB", + "ocean.rsus.tavg-u-hxy-ifs.mon.GLB", + "ocean.scint.tavg-op4-hxy-sea.mon.GLB", + "ocean.sduo.tavg-u-hxy-sea.mon.GLB", + "ocean.sduo.tpt-u-hxy-sea.3hr.GLB", + "ocean.sdvo.tavg-u-hxy-sea.mon.GLB", + "ocean.sdvo.tpt-u-hxy-sea.3hr.GLB", + "ocean.sfx.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfx.tavg-u-hxy-sea.mon.GLB", + "ocean.sfy.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfy.tavg-u-hxy-sea.mon.GLB", + "ocean.sltbasin.tavg-u-hyb-sea.mon.GLB", + "ocean.sltovgyre.tavg-u-hyb-sea.mon.GLB", + "ocean.sltovovrt.tavg-u-hyb-sea.mon.GLB", + "ocean.so.tavg-ol-hm-sea.mon.GLB", + "ocean.so.tavg-ol-hxy-sea.dec.GLB", + "ocean.so.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.sob.tavg-u-hxy-sea.mon.GLB", + "ocean.sos.tavg-u-hm-sea.mon.30S-90S", + "ocean.sos.tavg-u-hm-sea.mon.GLB", + "ocean.sw17O.tavg-ol-hxy-sea.mon.GLB", + "ocean.sw18O.tavg-ol-hxy-sea.mon.GLB", + "ocean.sw2H.tavg-ol-hxy-sea.mon.GLB", + "ocean.swh.tavg-u-hxy-sea.mon.GLB", + "ocean.swh.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhmax.tmax-u-hxy-sea.mon.GLB", + "ocean.swhmax.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhswell.tavg-u-hxy-sea.mon.GLB", + "ocean.swhswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.swhwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.tauuo.tavg-u-hxy-sea.3hr.GLB", + "ocean.tauuo.tavg-u-hxy-sea.dec.GLB", + "ocean.tauvo.tavg-u-hxy-sea.3hr.GLB", + "ocean.tauvo.tavg-u-hxy-sea.dec.GLB", + "ocean.thetao.tavg-ol-hm-sea.mon.GLB", + "ocean.thetao.tavg-ol-hxy-sea.dec.GLB", + "ocean.thetao.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.thetao.tavg-op20bar-hxy-sea.day.GLB", + "ocean.thkcello.tavg-ol-hxy-sea.dec.GLB", + "ocean.tob.tavg-u-hxy-sea.mon.GLB", + "ocean.tos.tavg-u-hm-sea.mon.GLB", + "ocean.tos.tavg-u-hxy-sea.mon.30S-90S", + "ocean.tos.tpt-u-hxy-sea.3hr.GLB", + "ocean.tossq.tavg-u-hxy-sea.day.GLB", + "ocean.umo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.uo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.uos.tavg-u-hxy-sea.day.GLB", + "ocean.vmo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.vo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.volcello.tavg-ol-hxy-sea.dec.GLB", + "ocean.volcello.tavg-ol-hxy-sea.mon.GLB", + "ocean.volcello.tavg-ol-hxy-sea.yr.GLB", + "ocean.volcello.ti-ol-hxy-sea.fx.GLB", + "ocean.volo.tavg-u-hm-sea.dec.GLB", + "ocean.volo.tavg-u-hm-sea.mon.GLB", + "ocean.vos.tavg-u-hxy-sea.day.GLB", + "ocean.wdir.tavg-u-hxy-sea.mon.GLB", + "ocean.wdir.tpt-u-hxy-sea.3hr.GLB", + "ocean.wdirswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wdirswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wdirwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wdirwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.wfcorr.tavg-u-hxy-sea.mon.GLB", + "ocean.wfo.tavg-u-hxy-sea.mon.GLB", + "ocean.wmo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.wo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.wpdir.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdir.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpdirswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdirswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpdirwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdirwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpp.tavg-u-hxy-sea.mon.GLB", + "ocean.wpp.tpt-u-hxy-sea.3hr.GLB", + "ocean.wppswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wppswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wppwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wppwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.zos.tavg-u-hxy-sea.mon.30S-90S", + "ocean.zossq.tavg-u-hxy-sea.mon.GLB", + "ocean.zostoga.tavg-u-hm-sea.day.GLB", + "ocnBgchem.bacc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.calc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chl.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chl.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chlcalc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chldiat.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chldiat.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chldiaz.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chldiaz.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chlmisc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chlmisc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chlpico.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chlpico.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.detoc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dfe.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.dfe.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissic.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.dissic.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissoc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dmso.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.expc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.expcalc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.fgco2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fsfe.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fsn.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.graz.tavg-ol-hxy-sea.mon.30S-90S", + "ocnBgchem.icfriver.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intdic.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intdoc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intparag.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbfe.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbn.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbp.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbsi.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpcalcite.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpn2.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpoc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpp.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpp.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppcalc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppdiat.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppdiaz.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppmisc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppnitrate.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpppico.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.nh4.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.nh4.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.no3.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.no3.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.o2.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.ocfriver.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.ph.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.ph.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phyc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phyc.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.phyc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phycalc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phycalc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phydiat.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phydiat.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phydiaz.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phydiaz.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phymisc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phymisc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phypico.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phypico.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.po4.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.pp.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.si.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.spco2.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.spco2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.talk.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zmeso.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zmeso.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zmicro.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zmicro.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zmisc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zmisc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zooc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zooc.tavg-ol-hxy-sea.mon.GLB", + "seaIce.evspsbl.tavg-u-hxy-si.mon.GLB", + "seaIce.prra.tavg-u-hxy-si.mon.GLB", + "seaIce.prsn.tavg-u-hxy-si.mon.GLB", + "seaIce.rlds.tavg-u-hxy-si.mon.GLB", + "seaIce.rlus.tavg-u-hxy-si.mon.GLB", + "seaIce.rsds.tavg-u-hxy-si.day.GLB", + "seaIce.rsds.tavg-u-hxy-si.mon.GLB", + "seaIce.rsus.tavg-u-hxy-si.day.GLB", + "seaIce.rsus.tavg-u-hxy-si.mon.GLB", + "seaIce.sbl.tavg-u-hxy-si.mon.GLB", + "seaIce.siage.tavg-u-hxy-si.day.GLB", + "seaIce.siage.tavg-u-hxy-si.mon.30S-90S", + "seaIce.siarea.tavg-u-hm-u.mon.NH", + "seaIce.siarea.tavg-u-hm-u.mon.SH", + "seaIce.siareaacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.siconc.tavg-u-hxy-u.mon.30S-90S", + "seaIce.siconca.tavg-u-hxy-u.day.GLB", + "seaIce.siconca.tavg-u-hxy-u.mon.GLB", + "seaIce.sidconcdyn.tavg-u-hxy-sea.mon.GLB", + "seaIce.sidconcth.tavg-u-hxy-sea.mon.GLB", + "seaIce.sidmassdyn.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthsi.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthwat.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmeltbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmeltlat.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmelttop.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassth.tavg-u-hxy-si.mon.GLB", + "seaIce.sieqthick.tavg-u-hxy-si.mon.GLB", + "seaIce.siextent.tavg-u-hm-u.mon.NH", + "seaIce.siextent.tavg-u-hm-u.mon.SH", + "seaIce.siflcondbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflcondtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sifllattop.tavg-u-hxy-si.mon.GLB", + "seaIce.siflsensbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflsenstop.tavg-u-hxy-si.mon.GLB", + "seaIce.siflswdbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sihc.tavg-u-hxy-sea.mon.GLB", + "seaIce.siitdconc.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdsnconc.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdsnthick.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdthick.tavg-u-hxy-si.mon.GLB", + "seaIce.simassacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.simpconc.tavg-u-hxy-si.mon.GLB", + "seaIce.sirdgconc.tavg-u-hxy-si.mon.GLB", + "seaIce.sisaltmass.tavg-u-hxy-si.mon.GLB", + "seaIce.sisndmassdyn.tavg-u-hxy-si.mon.GLB", + "seaIce.sisndmasssi.tavg-u-hxy-si.mon.GLB", + "seaIce.sisndmasswind.tavg-u-hxy-si.mon.GLB", + "seaIce.sisnhc.tavg-u-hxy-si.mon.GLB", + "seaIce.sisnmass.tavg-u-hm-u.mon.NH", + "seaIce.sisnmass.tavg-u-hm-u.mon.SH", + "seaIce.sisnmassacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.sispeed.tavg-u-hxy-si.day.GLB", + "seaIce.sispeed.tavg-u-hxy-si.mon.GLB", + "seaIce.sistressave.tpt-u-hxy-si.mon.GLB", + "seaIce.sistressmax.tpt-u-hxy-si.mon.GLB", + "seaIce.sistrxdtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sistrxubot.tavg-u-hxy-si.mon.GLB", + "seaIce.sistrydtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sistryubot.tavg-u-hxy-si.mon.GLB", + "seaIce.sitempsnic.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-si.day.GLB", + "seaIce.sithick.tavg-u-hxy-si.mon.30S-90S", + "seaIce.sitimefrac.tavg-u-hxy-sea.day.GLB", + "seaIce.sitimefrac.tavg-u-hxy-sea.mon.30S-90S", + "seaIce.siu.tavg-u-hxy-si.day.GLB", + "seaIce.siu.tavg-u-hxy-si.mon.30S-90S", + "seaIce.siv.tavg-u-hxy-si.day.GLB", + "seaIce.siv.tavg-u-hxy-si.mon.30S-90S", + "seaIce.sivol.tavg-u-hm-u.mon.NH", + "seaIce.sivol.tavg-u-hm-u.mon.SH", + "seaIce.snc.tavg-u-hxy-si.mon.GLB", + "seaIce.snd.tavg-u-hxy-sn.day.GLB", + "seaIce.snd.tavg-u-hxy-sn.mon.30S-90S", + "seaIce.snm.tavg-u-hxy-si.mon.GLB", + "seaIce.snw.tavg-u-hxy-si.mon.GLB", + "seaIce.ts.tavg-u-hxy-si.day.GLB", + "seaIce.ts.tavg-u-hxy-si.mon.30S-90S" + ], + "Medium": [ + "atmos.rls.tavg-u-hxy-u.day.GLB", + "atmos.rls.tavg-u-hxy-u.mon.GLB", + "atmos.rss.tavg-u-hxy-u.day.GLB", + "atmos.rss.tavg-u-hxy-u.mon.GLB", + "land.cLeaf.tavg-u-hxy-lnd.mon.GLB", + "land.cLitterCwd.tavg-u-hxy-lnd.mon.GLB", + "land.cLitterSubSurf.tavg-u-hxy-lnd.mon.GLB", + "land.cLitterSurf.tavg-u-hxy-lnd.mon.GLB", + "land.cOther.tavg-u-hxy-lnd.mon.GLB", + "land.cRoot.tavg-u-hxy-lnd.mon.GLB", + "land.cropFracC3.tavg-u-hxy-u.mon.GLB", + "land.cropFracC4.tavg-u-hxy-u.mon.GLB", + "land.cSoilPools.tavg-u-hxy-lnd.mon.GLB", + "land.cStem.tavg-u-hxy-lnd.mon.GLB", + "land.cVeg.tavg-u-hxy-ng.mon.GLB", + "land.cVeg.tavg-u-hxy-shb.mon.GLB", + "land.cVeg.tavg-u-hxy-tree.mon.GLB", + "land.fLitterFire.tavg-u-hxy-lnd.mon.GLB", + "land.fNgas.tavg-u-hxy-lnd.mon.GLB", + "land.fNgasFire.tavg-u-hxy-lnd.mon.GLB", + "land.fNgasNonFire.tavg-u-hxy-lnd.mon.GLB", + "land.fNleach.tavg-u-hxy-lnd.mon.GLB", + "land.fVegFire.tavg-u-hxy-lnd.mon.GLB", + "land.fVegLitterMortality.tavg-u-hxy-lnd.mon.GLB", + "land.fVegLitterSenescence.tavg-u-hxy-lnd.mon.GLB", + "land.fVegSoilMortality.tavg-u-hxy-lnd.mon.GLB", + "land.fVegSoilSenescence.tavg-u-hxy-lnd.mon.GLB", + "land.gpp.tavg-u-hxy-ng.mon.GLB", + "land.gpp.tavg-u-hxy-shb.mon.GLB", + "land.gpp.tavg-u-hxy-tree.mon.GLB", + "land.grassFracC3.tavg-u-hxy-u.mon.GLB", + "land.grassFracC4.tavg-u-hxy-u.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.3hr.GLB", + "land.mrros.tavg-u-hxy-lnd.3hr.GLB", + "land.mrsol.tpt-d10cm-hxy-lnd.3hr.GLB", + "land.nLeaf.tavg-u-hxy-lnd.mon.GLB", + "land.nLitterCwd.tavg-u-hxy-lnd.mon.GLB", + "land.nLitterSubSurf.tavg-u-hxy-lnd.mon.GLB", + "land.nLitterSurf.tavg-u-hxy-lnd.mon.GLB", + "land.nMineralNH4.tavg-u-hxy-lnd.mon.GLB", + "land.nMineralNO3.tavg-u-hxy-lnd.mon.GLB", + "land.nOther.tavg-u-hxy-lnd.mon.GLB", + "land.npp.tavg-u-hxy-ng.mon.GLB", + "land.npp.tavg-u-hxy-shb.mon.GLB", + "land.npp.tavg-u-hxy-tree.mon.GLB", + "land.nppLeaf.tavg-u-hxy-lnd.mon.GLB", + "land.nppOther.tavg-u-hxy-lnd.mon.GLB", + "land.nppRoot.tavg-u-hxy-lnd.mon.GLB", + "land.nppStem.tavg-u-hxy-lnd.mon.GLB", + "land.nRoot.tavg-u-hxy-lnd.mon.GLB", + "land.nStem.tavg-u-hxy-lnd.mon.GLB", + "land.pastureFracC3.tavg-u-hxy-u.mon.GLB", + "land.pastureFracC4.tavg-u-hxy-u.mon.GLB", + "land.ra.tavg-u-hxy-ng.mon.GLB", + "land.ra.tavg-u-hxy-shb.mon.GLB", + "land.ra.tavg-u-hxy-tree.mon.GLB", + "land.raLeaf.tavg-u-hxy-lnd.mon.GLB", + "land.raOther.tavg-u-hxy-lnd.mon.GLB", + "land.raRoot.tavg-u-hxy-lnd.mon.GLB", + "land.raStem.tavg-u-hxy-lnd.mon.GLB", + "land.rh.tavg-u-hxy-ng.mon.GLB", + "land.rh.tavg-u-hxy-shb.mon.GLB", + "land.rh.tavg-u-hxy-tree.mon.GLB", + "land.rhLitter.tavg-u-hxy-lnd.mon.GLB", + "land.rhSoil.tavg-u-hxy-lnd.mon.GLB", + "land.treeFracBdlDcd.tavg-u-hxy-u.mon.GLB", + "land.treeFracBdlEvg.tavg-u-hxy-u.mon.GLB", + "land.treeFracNdlDcd.tavg-u-hxy-u.mon.GLB", + "land.treeFracNdlEvg.tavg-u-hxy-u.mon.GLB", + "land.vegHeight.tavg-u-hxy-ng.mon.GLB", + "land.vegHeight.tavg-u-hxy-shb.mon.GLB", + "land.vegHeight.tavg-u-hxy-tree.mon.GLB", + "land.wetlandCH4cons.tavg-u-hxy-lnd.mon.GLB", + "land.wetlandCH4prod.tavg-u-hxy-lnd.mon.GLB", + "land.wetlandFrac.tavg-u-hxy-u.mon.GLB", + "ocean.evspsbl.tavg-u-hxy-ifs.mon.GLB", + "ocean.hfacrossline.tavg-u-ht-sea.mon.GLB", + "ocean.hfevapds.tavg-u-hxy-ifs.mon.GLB", + "ocean.hfibthermds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfibthermds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfrainds.tavg-u-hxy-ifs.mon.GLB", + "ocean.hfrunoffds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfrunoffds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfsnthermds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfsnthermds.tavg-u-hxy-sea.mon.GLB", + "ocean.mfo.tavg-u-ht-sea.mon.GLB", + "ocean.sf6.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfacrossline.tavg-u-ht-sea.mon.GLB", + "ocean.sfdsi.tavg-u-hxy-sea.mon.GLB", + "ocean.sfriver.tavg-u-hxy-sea.mon.GLB", + "ocean.siflfwbot.tavg-u-hxy-sea.mon.GLB", + "ocean.so.tavg-ol-hxy-sea.day.GLB", + "ocean.tnkebto.tavg-u-hxy-sea.yr.GLB", + "ocean.vsf.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfcorr.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfevap.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfpr.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfriver.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfsit.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.arag.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.arag.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.calc.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.calc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chl.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.chlcalc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dmso.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.epn.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.epp.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.expc.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.expcalc.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.fgdms.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fric.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.froc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.graz.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.intppcalc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppdiat.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppdiaz.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppmisc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppnitrate.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intpppico.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.o2.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.ph.tavg-op20bar-hxy-sea.day.GLB", + "seaIce.sfdsi.tavg-u-hxy-si.mon.GLB", + "seaIce.siage.tavg-u-hxy-si.mon.GLB", + "seaIce.siarea.tavg-u-hm-u.day.NH", + "seaIce.siarea.tavg-u-hm-u.day.SH", + "seaIce.sicompstren.tavg-u-hxy-si.mon.GLB", + "seaIce.sidivvel.tpt-u-hxy-si.mon.GLB", + "seaIce.sidmasstranx.tavg-u-hxy-u.mon.GLB", + "seaIce.sidmasstrany.tavg-u-hxy-u.mon.GLB", + "seaIce.sidragbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidragtop.tavg-u-hxy-si.mon.GLB", + "seaIce.siextent.tavg-u-hm-u.day.NH", + "seaIce.siextent.tavg-u-hm-u.day.SH", + "seaIce.sifb.tavg-u-hxy-si.mon.GLB", + "seaIce.siflfwbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflfwdrain.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcecoriolx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcecorioly.tavg-u-hxy-si.mon.GLB", + "seaIce.siforceintstrx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforceintstry.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcetiltx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcetilty.tavg-u-hxy-si.mon.GLB", + "seaIce.simpeffconc.tavg-u-hxy-si.mon.GLB", + "seaIce.simprefrozen.tavg-u-hxy-simp.mon.GLB", + "seaIce.simpthick.tavg-u-hxy-simp.mon.GLB", + "seaIce.sisali.tavg-u-hxy-si.mon.GLB", + "seaIce.sishearvel.tpt-u-hxy-si.mon.GLB", + "seaIce.sisnmass.tavg-u-hm-u.day.NH", + "seaIce.sisnmass.tavg-u-hm-u.day.SH", + "seaIce.sitempbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-sir.mon.GLB", + "seaIce.sivol.tavg-u-hm-u.day.NH", + "seaIce.sivol.tavg-u-hm-u.day.SH" + ], + "Low": [ + "aerosol.ccldncl.tavg-u-hxy-ccl.day.GLB", + "atmos.cldnci.tavg-u-hxy-cl.day.GLB", + "atmos.cldnvi.tavg-u-hxy-u.day.GLB", + "atmos.loadbc.tavg-u-hxy-u.day.GLB", + "atmos.loaddust.tavg-u-hxy-u.day.GLB", + "atmos.loadnh4.tavg-u-hxy-u.day.GLB", + "atmos.loadno3.tavg-u-hxy-u.day.GLB", + "atmos.loadoa.tavg-u-hxy-u.day.GLB", + "atmos.loadpoa.tavg-u-hxy-u.day.GLB", + "atmos.loadso4.tavg-u-hxy-u.day.GLB", + "atmos.loadsoa.tavg-u-hxy-u.day.GLB", + "atmos.loadss.tavg-u-hxy-u.day.GLB", + "atmos.reffcclwtop.tavg-u-hxy-ccl.day.GLB", + "atmos.reffsclwtop.tavg-u-hxy-scl.day.GLB", + "atmos.rsdscsdiff.tavg-u-hxy-u.day.GLB", + "atmos.rsdsdiff.tavg-u-hxy-u.day.GLB", + "atmos.scldncl.tavg-u-hxy-scl.day.GLB", + "atmos.zfull.ti-al-hxy-u.fx.GLB", + "land.c13Land.tavg-u-hxy-lnd.mon.GLB", + "land.c13Litter.tavg-u-hxy-lnd.mon.GLB", + "land.c13Soil.tavg-u-hxy-lnd.mon.GLB", + "land.c13Veg.tavg-u-hxy-lnd.mon.GLB", + "land.c14Land.tavg-u-hxy-lnd.mon.GLB", + "land.c14Litter.tavg-u-hxy-lnd.mon.GLB", + "land.c14Soil.tavg-u-hxy-lnd.mon.GLB", + "land.c14Veg.tavg-u-hxy-lnd.mon.GLB", + "land.gppc13.tavg-u-hxy-lnd.mon.GLB", + "land.gppc14.tavg-u-hxy-lnd.mon.GLB", + "land.netAtmosLandC13Flux.tavg-u-hxy-lnd.mon.GLB", + "land.netAtmosLandC14Flux.tavg-u-hxy-lnd.mon.GLB", + "land.rac13.tavg-u-hxy-lnd.mon.GLB", + "land.rac14.tavg-u-hxy-lnd.mon.GLB", + "land.rhc13.tavg-u-hxy-lnd.mon.GLB", + "land.rhc14.tavg-u-hxy-lnd.mon.GLB", + "ocean.difmxybo.tavg-ol-hxy-sea.yr.GLB", + "ocean.difmxylo.tavg-ol-hxy-sea.yr.GLB", + "ocean.diftrblo.tavg-ol-hxy-sea.yr.GLB", + "ocean.diftrelo.tavg-ol-hxy-sea.yr.GLB", + "ocean.difvho.tavg-ol-hxy-sea.yr.GLB", + "ocean.difvso.tavg-ol-hxy-sea.yr.GLB", + "ocean.dispkexyfo.tavg-u-hxy-sea.yr.GLB", + "ocean.dxto.ti-u-hxy-u.fx.GLB", + "ocean.dxuo.ti-u-hxy-u.fx.GLB", + "ocean.dxvo.ti-u-hxy-u.fx.GLB", + "ocean.dyto.ti-u-hxy-u.fx.GLB", + "ocean.dyuo.ti-u-hxy-u.fx.GLB", + "ocean.dyvo.ti-u-hxy-u.fx.GLB", + "ocean.mlotstsq.tavg-u-hxy-sea.mon.GLB", + "ocean.msftmmpa.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftmmpa.tavg-rho-hyb-sea.mon.GLB", + "ocean.msftmsmpa.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftypa.tavg-ol-ht-sea.mon.GLB", + "ocean.msftypa.tavg-rho-ht-sea.mon.GLB", + "ocean.ocontempdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontempmint.tavg-u-hxy-sea.yr.GLB", + "ocean.ocontemppadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemppmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemppsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemprmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemptend.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottempdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottempmint.tavg-u-hxy-sea.yr.GLB", + "ocean.opottemppadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemppmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemppsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemprmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemptend.tavg-ol-hxy-sea.dec.GLB", + "ocean.osaltdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpsmadvect.tavg-ol-hxy-sea.mon.GLB", + "ocean.osaltpsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltrmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osalttend.tavg-ol-hxy-sea.yr.GLB", + "ocean.rsdoabsorb.tavg-ol-hxy-sea.yr.GLB", + "ocean.somint.tavg-u-hxy-sea.yr.GLB", + "ocean.sossq.tavg-u-hxy-sea.mon.GLB", + "ocean.thkcelluo.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcellvo.tavg-ol-hxy-sea.mon.GLB", + "ocean.tnpeo.tavg-u-hxy-sea.yr.GLB", + "ocean.tossq.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.dissi13c.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.dissi13c.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissi14c.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissi14cabio.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.dissi14cabio.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.fg13co2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fg14co2abio.tavg-u-hxy-sea.mon.GLB" + ] + }, + "abrupt-127k": { + "Core": [ + "atmos.areacella.ti-u-hxy-u.fx.GLB", + "atmos.cl.tavg-al-hxy-u.mon.GLB", + "atmos.cli.tavg-al-hxy-u.mon.GLB", + "atmos.clivi.tavg-u-hxy-u.mon.GLB", + "atmos.clt.tavg-u-hxy-u.day.GLB", + "atmos.clt.tavg-u-hxy-u.mon.GLB", + "atmos.clw.tavg-al-hxy-u.mon.GLB", + "atmos.clwvi.tavg-u-hxy-u.mon.GLB", + "atmos.evspsbl.tavg-u-hxy-u.mon.GLB", + "atmos.hfls.tavg-u-hxy-u.mon.GLB", + "atmos.hfss.tavg-u-hxy-u.mon.GLB", + "atmos.hur.tavg-p19-hxy-air.mon.GLB", + "atmos.hur.tavg-p19-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.6hr.GLB", + "atmos.hurs.tavg-h2m-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.mon.GLB", + "atmos.hus.tavg-p19-hxy-u.day.GLB", + "atmos.hus.tavg-p19-hxy-u.mon.GLB", + "atmos.huss.tavg-h2m-hxy-u.day.GLB", + "atmos.huss.tavg-h2m-hxy-u.mon.GLB", + "atmos.huss.tpt-h2m-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.1hr.GLB", + "atmos.pr.tavg-u-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.day.GLB", + "atmos.pr.tavg-u-hxy-u.mon.GLB", + "atmos.prc.tavg-u-hxy-u.mon.GLB", + "atmos.prsn.tavg-u-hxy-u.mon.GLB", + "atmos.prw.tavg-u-hxy-u.mon.GLB", + "atmos.ps.tavg-u-hxy-u.day.GLB", + "atmos.ps.tavg-u-hxy-u.mon.GLB", + "atmos.psl.tavg-u-hxy-u.day.GLB", + "atmos.psl.tavg-u-hxy-u.mon.GLB", + "atmos.rlds.tavg-u-hxy-u.mon.GLB", + "atmos.rldscs.tavg-u-hxy-u.mon.GLB", + "atmos.rlus.tavg-u-hxy-u.mon.GLB", + "atmos.rluscs.tavg-u-hxy-u.mon.GLB", + "atmos.rlut.tavg-u-hxy-u.mon.GLB", + "atmos.rlutcs.tavg-u-hxy-u.mon.GLB", + "atmos.rsds.tavg-u-hxy-u.day.GLB", + "atmos.rsds.tavg-u-hxy-u.mon.GLB", + "atmos.rsdscs.tavg-u-hxy-u.mon.GLB", + "atmos.rsdt.tavg-u-hxy-u.mon.GLB", + "atmos.rsus.tavg-u-hxy-u.mon.GLB", + "atmos.rsuscs.tavg-u-hxy-u.mon.GLB", + "atmos.rsut.tavg-u-hxy-u.mon.GLB", + "atmos.rsutcs.tavg-u-hxy-u.mon.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.day.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.mon.GLB", + "atmos.sftlf.ti-u-hxy-u.fx.GLB", + "atmos.ta.tavg-p19-hxy-air.day.GLB", + "atmos.ta.tavg-p19-hxy-air.mon.GLB", + "atmos.ta.tpt-p3-hxy-air.6hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.day.GLB", + "atmos.tas.tavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tmax-h2m-hxy-u.day.GLB", + "atmos.tas.tmaxavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tmin-h2m-hxy-u.day.GLB", + "atmos.tas.tminavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tpt-h2m-hxy-u.3hr.GLB", + "atmos.tauu.tavg-u-hxy-u.mon.GLB", + "atmos.tauv.tavg-u-hxy-u.mon.GLB", + "atmos.ts.tavg-u-hxy-u.mon.GLB", + "atmos.ua.tavg-p19-hxy-air.day.GLB", + "atmos.ua.tavg-p19-hxy-air.mon.GLB", + "atmos.ua.tpt-p3-hxy-air.6hr.GLB", + "atmos.uas.tavg-h10m-hxy-u.day.GLB", + "atmos.uas.tavg-h10m-hxy-u.mon.GLB", + "atmos.uas.tpt-h10m-hxy-u.3hr.GLB", + "atmos.va.tavg-p19-hxy-air.day.GLB", + "atmos.va.tavg-p19-hxy-air.mon.GLB", + "atmos.va.tpt-p3-hxy-air.6hr.GLB", + "atmos.vas.tavg-h10m-hxy-u.day.GLB", + "atmos.vas.tavg-h10m-hxy-u.mon.GLB", + "atmos.vas.tpt-h10m-hxy-u.3hr.GLB", + "atmos.wap.tavg-p19-hxy-air.mon.GLB", + "atmos.wap.tavg-p19-hxy-u.day.GLB", + "atmos.zg.tavg-p19-hxy-air.day.GLB", + "atmos.zg.tavg-p19-hxy-air.mon.GLB", + "land.evspsblsoi.tavg-u-hxy-lnd.mon.GLB", + "land.evspsblveg.tavg-u-hxy-lnd.mon.GLB", + "land.lai.tavg-u-hxy-lnd.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.mon.GLB", + "land.mrros.tavg-u-hxy-lnd.mon.GLB", + "land.mrso.tavg-u-hxy-lnd.mon.GLB", + "land.mrsofc.ti-u-hxy-lnd.fx.GLB", + "land.mrsol.tavg-d10cm-hxy-lnd.mon.GLB", + "land.orog.ti-u-hxy-u.fx.GLB", + "land.rootd.ti-u-hxy-lnd.fx.GLB", + "land.sftgif.ti-u-hxy-u.fx.GLB", + "land.slthick.ti-sl-hxy-lnd.fx.GLB", + "landIce.mrfso.tavg-u-hxy-lnd.mon.GLB", + "landIce.snc.tavg-u-hxy-lnd.mon.GLB", + "landIce.snw.tavg-u-hxy-lnd.mon.GLB", + "ocean.areacello.ti-u-hxy-u.fx.GLB", + "ocean.basin.ti-u-hxy-u.fx.GLB", + "ocean.bigthetao.tavg-ol-hxy-sea.mon.GLB", + "ocean.deptho.ti-u-hxy-sea.fx.GLB", + "ocean.hfds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfgeou.ti-u-hxy-sea.fx.GLB", + "ocean.masscello.tavg-ol-hxy-sea.mon.GLB", + "ocean.masscello.ti-ol-hxy-sea.fx.GLB", + "ocean.mlotst.tavg-u-hxy-sea.mon.GLB", + "ocean.sftof.ti-u-hxy-u.fx.GLB", + "ocean.so.tavg-ol-hxy-sea.mon.GLB", + "ocean.sos.tavg-u-hxy-sea.day.GLB", + "ocean.sos.tavg-u-hxy-sea.mon.GLB", + "ocean.tauuo.tavg-u-hxy-sea.mon.GLB", + "ocean.tauvo.tavg-u-hxy-sea.mon.GLB", + "ocean.thetao.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcello.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcello.ti-ol-hxy-sea.fx.GLB", + "ocean.tos.tavg-u-hxy-sea.day.GLB", + "ocean.tos.tavg-u-hxy-sea.mon.GLB", + "ocean.umo.tavg-ol-hxy-sea.mon.GLB", + "ocean.uo.tavg-ol-hxy-sea.mon.GLB", + "ocean.vmo.tavg-ol-hxy-sea.mon.GLB", + "ocean.vo.tavg-ol-hxy-sea.mon.GLB", + "ocean.wmo.tavg-ol-hxy-sea.mon.GLB", + "ocean.wo.tavg-ol-hxy-sea.mon.GLB", + "ocean.zos.tavg-u-hxy-sea.day.GLB", + "ocean.zos.tavg-u-hxy-sea.mon.GLB", + "ocean.zostoga.tavg-u-hm-sea.mon.GLB", + "seaIce.siconc.tavg-u-hxy-u.day.GLB", + "seaIce.siconc.tavg-u-hxy-u.mon.GLB", + "seaIce.simass.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-si.mon.GLB", + "seaIce.sitimefrac.tavg-u-hxy-sea.mon.GLB", + "seaIce.siu.tavg-u-hxy-si.mon.GLB", + "seaIce.siv.tavg-u-hxy-si.mon.GLB", + "seaIce.snd.tavg-u-hxy-sn.mon.GLB", + "seaIce.ts.tavg-u-hxy-si.mon.GLB" + ], + "High": [ + "aerosol.abs550aer.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550bc.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550dust.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550no3.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550oa.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550so4.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550ss.tavg-u-hxy-u.mon.GLB", + "aerosol.airmass.tavg-al-hxy-u.mon.GLB", + "aerosol.aoanh.tavg-al-hxy-u.mon.NH", + "aerosol.bry.tavg-p39-hy-air.mon.GLB", + "aerosol.bs550aer.tpt-al-hxy-u.6hr.GLB", + "aerosol.c2h6.tavg-al-hxy-u.mon.GLB", + "aerosol.c3h6.tavg-al-hxy-u.mon.GLB", + "aerosol.c3h8.tavg-al-hxy-u.mon.GLB", + "aerosol.ccldncl.tavg-u-hxy-ccl.mon.GLB", + "aerosol.ccn.tavg-u-hxy-ccl.mon.30S-90S", + "aerosol.ccn.tavg-u-hxy-ccl.mon.GLB", + "aerosol.ccn1.tavg-al-hxy-u.mon.30S-90S", + "aerosol.ccn1.tavg-al-hxy-u.mon.GLB", + "aerosol.ccnp02.tavg-al-hxy-u.mon.30S-90S", + "aerosol.ccnp02.tavg-al-hxy-u.mon.GLB", + "aerosol.cdnc.tavg-al-hxy-u.mon.30S-90S", + "aerosol.cdnc.tavg-al-hxy-u.mon.GLB", + "aerosol.cfc114.tavg-al-hxy-u.mon.GLB", + "aerosol.ch3coch3.tavg-al-hxy-u.mon.GLB", + "aerosol.cheaqpso4.tavg-al-hxy-u.mon.GLB", + "aerosol.chegpso4.tavg-al-hxy-u.mon.GLB", + "aerosol.chepasoa.tavg-u-hxy-u.mon.GLB", + "aerosol.chepsoa.tavg-u-hxy-u.mon.GLB", + "aerosol.cly.tavg-p39-hy-air.mon.GLB", + "aerosol.co.tavg-al-hxy-u.mon.GLB", + "aerosol.co.tavg-h2m-hxy-u.day.GLB", + "aerosol.cod.tavg-u-hxy-u.day.GLB", + "aerosol.cod.tavg-u-hxy-u.mon.30S-90S", + "aerosol.cod.tavg-u-hxy-u.mon.GLB", + "aerosol.conccn.tavg-al-hxy-u.mon.GLB", + "aerosol.conccn.tpt-u-hs-u.3hr.GLB", + "aerosol.depdust.tavg-u-hxy-u.mon.GLB", + "aerosol.drybc.tavg-u-hxy-u.mon.GLB", + "aerosol.drydust.tavg-u-hxy-u.mon.GLB", + "aerosol.dryno3.tavg-u-hxy-u.mon.GLB", + "aerosol.dryo3.tavg-u-hxy-u.mon.GLB", + "aerosol.dryoa.tavg-u-hxy-u.mon.GLB", + "aerosol.dryso2.tavg-u-hxy-u.mon.GLB", + "aerosol.dryso4.tavg-u-hxy-u.mon.GLB", + "aerosol.dryss.tavg-u-hxy-u.mon.GLB", + "aerosol.ec550aer.tavg-al-hxy-u.mon.GLB", + "aerosol.ec550aer.tpt-u-hxy-u.6hr.GLB", + "aerosol.emiaco.tavg-u-hxy-u.mon.GLB", + "aerosol.emianox.tavg-u-hxy-u.mon.GLB", + "aerosol.emiaoa.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbbc.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbch4.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbco.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbdms.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbnh3.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbnox.tavg-u-hxy-u.mon.GLB", + "aerosol.emibboa.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbso2.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbvoc.tavg-u-hxy-u.mon.GLB", + "aerosol.emibc.tavg-u-hxy-u.mon.GLB", + "aerosol.emibvoc.tavg-u-hxy-u.mon.GLB", + "aerosol.emico.tavg-u-hxy-u.mon.GLB", + "aerosol.emidms.tavg-u-hxy-u.mon.30S-90S", + "aerosol.emidms.tavg-u-hxy-u.mon.GLB", + "aerosol.emidust.tavg-u-hxy-u.mon.GLB", + "aerosol.emiisop.tavg-u-hxy-u.mon.GLB", + "aerosol.emilnox.tavg-al-hxy-u.mon.GLB", + "aerosol.eminh3.tavg-u-hxy-u.mon.GLB", + "aerosol.eminox.tavg-u-hxy-u.mon.GLB", + "aerosol.emioa.tavg-u-hxy-u.mon.GLB", + "aerosol.emiso2.tavg-u-hxy-u.mon.GLB", + "aerosol.emiso4.tavg-u-hxy-u.mon.GLB", + "aerosol.emiss.tavg-u-hxy-u.mon.30S-90S", + "aerosol.emiss.tavg-u-hxy-u.mon.GLB", + "aerosol.emivoc.tavg-u-hxy-u.mon.GLB", + "aerosol.h2o.tavg-al-hxy-u.mon.GLB", + "aerosol.h2o.tavg-p39-hy-air.mon.GLB", + "aerosol.hcfc22.tavg-al-hxy-u.mon.GLB", + "aerosol.hcho.tavg-al-hxy-u.mon.GLB", + "aerosol.hcl.tavg-al-hxy-u.mon.GLB", + "aerosol.hcl.tavg-p39-hy-air.mon.GLB", + "aerosol.hfc125.tavg-al-hxy-u.mon.GLB", + "aerosol.hfc134a.tavg-al-hxy-u.mon.GLB", + "aerosol.hno3.tavg-al-hxy-u.mon.GLB", + "aerosol.hno3.tavg-p39-hy-air.mon.GLB", + "aerosol.ho2.tavg-p39-hy-air.mon.GLB", + "aerosol.isop.tavg-al-hxy-u.mon.GLB", + "aerosol.jno2.tavg-al-hxy-u.mon.GLB", + "aerosol.lossch4.tavg-al-hxy-u.mon.GLB", + "aerosol.lossco.tavg-al-hxy-u.mon.GLB", + "aerosol.lossn2o.tavg-al-hxy-u.mon.GLB", + "aerosol.lwp.tavg-u-hxy-u.mon.GLB", + "aerosol.mmraerh2o.tavg-al-hxy-u.mon.GLB", + "aerosol.mmraerh2o.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmraerh2o.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrbc.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrbc.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrbc.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrbc.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrdust.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrdust.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrdust.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrdust.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrnh4.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrnh4.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrnh4.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrnh4.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrno3.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrno3.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrno3.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrno3.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmroa.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmroa.tavg-al-hxy-u.mon.GLB", + "aerosol.mmroa.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmroa.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrpm1.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrpm1.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrpm2p5.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrpm2p5.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrso4.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrso4.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrso4.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrso4.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrsoa.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrsoa.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrsoa.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrss.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrss.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrss.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrss.tpt-h2m-hs-u.3hr.GLB", + "aerosol.nh50.tavg-al-hxy-u.mon.GLB", + "aerosol.no.tavg-al-hxy-u.mon.GLB", + "aerosol.no2.tavg-al-hxy-u.mon.GLB", + "aerosol.no2.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.noy.tavg-p39-hy-air.mon.GLB", + "aerosol.o3.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.o3loss.tavg-al-hxy-u.mon.GLB", + "aerosol.o3prod.tavg-al-hxy-u.mon.GLB", + "aerosol.od443aer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550aer.tavg-u-hxy-u.day.GLB", + "aerosol.od550aer.tavg-u-hxy-u.mon.30S-90S", + "aerosol.od550aer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550aerh2o.tavg-u-hxy-u.mon.GLB", + "aerosol.od550bb.tavg-u-hxy-u.mon.GLB", + "aerosol.od550bc.tavg-u-hxy-u.mon.GLB", + "aerosol.od550csaer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550dust.tavg-u-hxy-u.mon.GLB", + "aerosol.od550lt1aer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550no3.tavg-u-hxy-u.mon.GLB", + "aerosol.od550oa.tavg-u-hxy-u.mon.GLB", + "aerosol.od550so4.tavg-u-hxy-u.mon.GLB", + "aerosol.od550soa.tavg-u-hxy-u.mon.GLB", + "aerosol.od550ss.tavg-u-hxy-u.mon.GLB", + "aerosol.od865aer.tavg-u-hxy-u.mon.GLB", + "aerosol.oh.tavg-al-hxy-u.mon.GLB", + "aerosol.oh.tavg-p39-hy-air.mon.GLB", + "aerosol.pan.tavg-al-hxy-u.mon.GLB", + "aerosol.photo1d.tavg-al-hxy-u.mon.GLB", + "aerosol.pod0.tsum-u-hxy-u.mon.GLB", + "aerosol.reffccwctop.tavg-u-hxy-cl.mon.GLB", + "aerosol.reffclwtop.tavg-u-hxy-cl.mon.30S-90S", + "aerosol.reffclwtop.tavg-u-hxy-cl.mon.GLB", + "aerosol.rluscsaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rlutaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rlutcsaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rsutaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rsutcsaf.tavg-u-hxy-u.mon.GLB", + "aerosol.sfpm1.tavg-h2m-hxy-u.day.GLB", + "aerosol.sfpm10.tavg-al-hxy-u.mon.30S-90S", + "aerosol.sfpm10.tavg-al-hxy-u.mon.GLB", + "aerosol.sfpm10.tavg-h2m-hxy-u.day.GLB", + "aerosol.sfpm25.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.sfpm25.tavg-h2m-hxy-u.day.GLB", + "aerosol.so2.tavg-al-hxy-u.mon.30S-90S", + "aerosol.so2.tavg-al-hxy-u.mon.GLB", + "aerosol.so2.tavg-h2m-hxy-u.day.GLB", + "aerosol.so2.tpt-h2m-hs-u.3hr.GLB", + "aerosol.tatp.tavg-u-hxy-u.mon.GLB", + "aerosol.toz.tavg-u-hxy-u.day.GLB", + "aerosol.toz.tavg-u-hxy-u.mon.GLB", + "aerosol.tropoz.tavg-u-hxy-u.mon.GLB", + "aerosol.ttop.tavg-u-hxy-cl.mon.GLB", + "aerosol.ua.tavg-10hPa-hxy-air.day.GLB", + "aerosol.vt100.tavg-100hPa-hy-air.mon.GLB", + "aerosol.wa.tavg-al-hxy-u.mon.GLB", + "aerosol.wetbc.tavg-u-hxy-u.mon.GLB", + "aerosol.wetdust.tavg-u-hxy-u.mon.GLB", + "aerosol.wetoa.tavg-u-hxy-u.mon.GLB", + "aerosol.wetso2.tavg-u-hxy-u.mon.GLB", + "aerosol.wetso4.tavg-u-hxy-u.mon.GLB", + "aerosol.wetss.tavg-u-hxy-u.mon.GLB", + "aerosol.zg.tavg-10hPa-hxy-air.day.GLB", + "atmos.albisccp.tavg-u-hxy-cl.mon.30S-90S", + "atmos.bldep.tavg-u-hxy-u.mon.GLB", + "atmos.bldep.tmax-u-hxy-u.day.GLB", + "atmos.bldep.tmin-u-hxy-u.day.GLB", + "atmos.cl.tavg-al-hxy-u.mon.30S-90S", + "atmos.clc.tavg-al-hxy-u.mon.30S-90S", + "atmos.clc.tavg-al-hxy-u.mon.GLB", + "atmos.clcalipso.tavg-220hPa-hxy-air.mon.30S-90S", + "atmos.clcalipso.tavg-220hPa-hxy-air.mon.GLB", + "atmos.clcalipso.tavg-560hPa-hxy-air.mon.30S-90S", + "atmos.clcalipso.tavg-560hPa-hxy-air.mon.GLB", + "atmos.clcalipso.tavg-840hPa-hxy-air.mon.30S-90S", + "atmos.clcalipso.tavg-840hPa-hxy-air.mon.GLB", + "atmos.clcalipso.tavg-h40-hxy-air.mon.30S-90S", + "atmos.cldnci.tavg-u-hxy-cl.mon.GLB", + "atmos.cldncl.tavg-u-hxy-cl.mon.GLB", + "atmos.cldnvi.tavg-u-hxy-u.mon.GLB", + "atmos.cli.tavg-al-hxy-u.mon.30S-90S", + "atmos.clic.tavg-al-hxy-u.mon.30S-90S", + "atmos.clis.tavg-al-hxy-u.mon.30S-90S", + "atmos.clisccp.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clisccp.tavg-p7c-hxy-air.mon.GLB", + "atmos.clivi.tavg-u-hxy-u.mon.30S-90S", + "atmos.clivimodis.tavg-u-hxy-u.mon.30S-90S", + "atmos.clmodis.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clmodis.tavg-p7c-hxy-air.mon.GLB", + "atmos.clmodisice.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clmodisice.tavg-p7c-hxy-air.mon.GLB", + "atmos.clmodisiceReff.tavg-u-hxy-u.mon.GLB", + "atmos.clmodisliquid.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clmodisliquid.tavg-p7c-hxy-air.mon.GLB", + "atmos.clmodisliquidReff.tavg-u-hxy-u.mon.GLB", + "atmos.cls.tavg-al-hxy-u.mon.30S-90S", + "atmos.clt.tavg-u-hxy-u.mon.30S-90S", + "atmos.cltc.tavg-u-hxy-u.mon.GLB", + "atmos.cltcalipso.tavg-u-hxy-u.mon.30S-90S", + "atmos.cltisccp.tavg-u-hxy-u.mon.30S-90S", + "atmos.cltmodis.tavg-u-hxy-u.mon.30S-90S", + "atmos.clw.tavg-al-hxy-u.mon.30S-90S", + "atmos.clwc.tavg-al-hxy-u.mon.30S-90S", + "atmos.clws.tavg-al-hxy-u.mon.30S-90S", + "atmos.clwvi.tavg-u-hxy-u.mon.30S-90S", + "atmos.clwvimodis.tavg-u-hxy-u.mon.30S-90S", + "atmos.co2.tavg-al-hxy-u.mon.GLB", + "atmos.co2.tavg-h2m-hxy-u.mon.GLB", + "atmos.co2.tavg-p19-hxy-air.mon.GLB", + "atmos.co23D.tavg-al-hxy-u.mon.GLB", + "atmos.co2mass.tavg-u-hm-u.mon.GLB", + "atmos.dmc.tavg-alh-hxy-u.mon.30S-90S", + "atmos.edt.tavg-al-hxy-u.mon.30S-90S", + "atmos.evspsbl.tavg-u-hxy-lnd.day.GLB", + "atmos.evu.tavg-al-hxy-u.mon.30S-90S", + "atmos.fco2antt.tavg-u-hxy-u.mon.GLB", + "atmos.fco2fos.tavg-u-hxy-u.mon.GLB", + "atmos.fco2nat.tavg-u-hxy-u.mon.GLB", + "atmos.hfls.tavg-u-hxy-u.day.GLB", + "atmos.hfls.tavg-u-hxy-u.mon.30S-90S", + "atmos.hfss.tavg-u-hxy-u.day.GLB", + "atmos.hfss.tavg-u-hxy-u.mon.30S-90S", + "atmos.hur.tavg-al-hxy-u.mon.30S-90S", + "atmos.hur.tavg-al-hxy-u.mon.GLB", + "atmos.hur.tavg-p19-hxy-air.mon.30S-90S", + "atmos.hurs.tavg-h2m-hxy-u.mon.30S-90S", + "atmos.hus.tavg-al-hxy-u.mon.30S-90S", + "atmos.hus.tavg-al-hxy-u.mon.GLB", + "atmos.hus.tavg-p19-hxy-u.mon.30S-90S", + "atmos.hus.tpt-al-hxy-u.6hr.GLB", + "atmos.hus.tpt-p7h-hxy-air.6hr.GLB", + "atmos.huss.tavg-h2m-hxy-u.mon.30S-90S", + "atmos.huss.tpt-h2m-hxy-u.1hr.GLB", + "atmos.mc.tavg-alh-hxy-u.mon.GLB", + "atmos.mcd.tavg-alh-hxy-u.mon.30S-90S", + "atmos.mcu.tavg-alh-hxy-u.mon.30S-90S", + "atmos.mcu.tavg-alh-hxy-u.mon.GLB", + "atmos.pctisccp.tavg-u-hxy-cl.mon.30S-90S", + "atmos.pfull.tavg-al-hxy-u.mon.GLB", + "atmos.pfull.tclm-al-hxy-u.mon.30S-90S", + "atmos.phalf.tavg-alh-hxy-u.mon.GLB", + "atmos.pr.tavg-u-hxy-u.mon.30S-90S", + "atmos.pr.tmax-u-hxy-u.day.GLB", + "atmos.pr.tpt-u-hxy-u.6hr.GLB", + "atmos.pr17O.tavg-u-hxy-u.mon.GLB", + "atmos.pr18O.tavg-u-hxy-u.mon.GLB", + "atmos.pr2h.tavg-u-hxy-u.mon.GLB", + "atmos.prc.tavg-u-hxy-u.mon.30S-90S", + "atmos.prra.tavg-u-hxy-lnd.day.GLB", + "atmos.prra.tavg-u-hxy-u.mon.30S-90S", + "atmos.prra.tavg-u-hxy-u.mon.GLB", + "atmos.prsn.tavg-u-hxy-u.3hr.GLB", + "atmos.prsn.tavg-u-hxy-u.day.GLB", + "atmos.prsn.tavg-u-hxy-u.mon.30S-90S", + "atmos.prsn18O.tavg-u-hxy-u.mon.GLB", + "atmos.prsn2h.tavg-u-hxy-u.mon.GLB", + "atmos.prw.tavg-u-hxy-u.day.GLB", + "atmos.prw.tavg-u-hxy-u.mon.30S-90S", + "atmos.ps.tavg-u-hxy-u.1hr.GLB", + "atmos.ps.tavg-u-hxy-u.mon.30S-90S", + "atmos.ps.tpt-u-hxy-u.6hr.GLB", + "atmos.psl.tavg-u-hxy-u.mon.30S-90S", + "atmos.psl.tpt-u-hxy-u.1hr.GLB", + "atmos.psl.tpt-u-hxy-u.6hr.GLB", + "atmos.ptp.tavg-u-hxy-u.mon.GLB", + "atmos.reffcclwtop.tavg-u-hxy-ccl.mon.GLB", + "atmos.reffclic.tavg-al-hxy-ccl.mon.30S-90S", + "atmos.reffclis.tavg-al-hxy-scl.mon.30S-90S", + "atmos.reffclwc.tavg-al-hxy-ccl.mon.30S-90S", + "atmos.reffclws.tavg-al-hxy-scl.mon.30S-90S", + "atmos.reffsclwtop.tavg-u-hxy-scl.mon.GLB", + "atmos.rld.tavg-alh-hxy-u.mon.GLB", + "atmos.rld4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rldcs.tavg-alh-hxy-u.mon.GLB", + "atmos.rldcs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rlds.tavg-u-hxy-u.1hr.GLB", + "atmos.rlds.tavg-u-hxy-u.day.GLB", + "atmos.rlds.tavg-u-hxy-u.mon.30S-90S", + "atmos.rldscs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rlu.tavg-alh-hxy-u.mon.GLB", + "atmos.rlu4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rlucs.tavg-alh-hxy-u.mon.GLB", + "atmos.rlucs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rlus.tavg-u-hxy-u.day.GLB", + "atmos.rlus.tavg-u-hxy-u.mon.30S-90S", + "atmos.rlut.tavg-u-hxy-u.day.GLB", + "atmos.rlut.tavg-u-hxy-u.mon.30S-90S", + "atmos.rlut4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rlutcs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rlutcs4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rsd.tavg-alh-hxy-u.mon.GLB", + "atmos.rsd4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsdcs.tavg-alh-hxy-u.mon.GLB", + "atmos.rsdcs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsds.tavg-u-hxy-u.1hr.GLB", + "atmos.rsds.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsdscs.tavg-u-hxy-u.day.GLB", + "atmos.rsdscs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsdt.tavg-u-hxy-u.day.GLB", + "atmos.rsdt.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsu.tavg-alh-hxy-u.mon.GLB", + "atmos.rsu4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsucs.tavg-alh-hxy-u.mon.GLB", + "atmos.rsucs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsus.tavg-u-hxy-u.day.GLB", + "atmos.rsus.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsuscs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsut.tavg-u-hxy-u.day.GLB", + "atmos.rsut.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsut4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rsutcs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsutcs4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rtmt.tavg-u-hxy-u.mon.GLB", + "atmos.rv850.tpt-850hPa-hxy-air.6hr.GLB", + "atmos.scldncl.tavg-u-hxy-scl.mon.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.mon.30S-90S", + "atmos.ta.tavg-al-hxy-u.mon.30S-90S", + "atmos.ta.tavg-al-hxy-u.mon.GLB", + "atmos.ta.tavg-p19-hxy-air.mon.30S-90S", + "atmos.ta.tavg-p39-hy-air.mon.GLB", + "atmos.ta.tpt-al-hxy-u.6hr.GLB", + "atmos.ta.tpt-p7h-hxy-air.6hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.1hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.mon.30S-90S", + "atmos.tas.tmaxavg-h2m-hxy-u.mon.30S-90S", + "atmos.tas.tminavg-h2m-hxy-u.mon.30S-90S", + "atmos.tdps.tavg-h2m-hxy-u.mon.GLB", + "atmos.tnt.tavg-al-hxy-u.mon.GLB", + "atmos.tntrl.tavg-al-hxy-u.mon.GLB", + "atmos.tntrs.tavg-al-hxy-u.mon.GLB", + "atmos.ts.tavg-u-hxy-u.day.GLB", + "atmos.ts.tavg-u-hxy-u.mon.30S-90S", + "atmos.ts.tpt-u-hxy-u.6hr.GLB", + "atmos.ua.tavg-al-hxy-u.mon.GLB", + "atmos.ua.tavg-p19-hxy-air.mon.30S-90S", + "atmos.ua.tavg-p39-hy-air.mon.GLB", + "atmos.ua.tpt-al-hxy-u.6hr.GLB", + "atmos.ua.tpt-p7h-hxy-air.6hr.GLB", + "atmos.uas.tavg-h10m-hxy-u.mon.30S-90S", + "atmos.uas.tpt-h10m-hxy-u.1hr.GLB", + "atmos.va.tavg-al-hxy-u.mon.GLB", + "atmos.va.tavg-p19-hxy-air.mon.30S-90S", + "atmos.va.tavg-p39-hy-air.mon.GLB", + "atmos.va.tpt-al-hxy-u.6hr.GLB", + "atmos.va.tpt-p7h-hxy-air.6hr.GLB", + "atmos.vas.tavg-h10m-hxy-u.mon.30S-90S", + "atmos.vas.tpt-h10m-hxy-u.1hr.GLB", + "atmos.wap.tavg-p19-hxy-air.mon.30S-90S", + "atmos.zg.tavg-1000hPa-hxy-air.day.GLB", + "atmos.zg.tavg-500hPa-hxy-air.day.GLB", + "atmos.zg.tavg-al-hxy-u.mon.GLB", + "atmos.zg.tavg-p19-hxy-air.mon.30S-90S", + "atmos.zg.tavg-p39-hy-air.mon.GLB", + "atmos.zg.tpt-500hPa-hxy-air.6hr.GLB", + "atmos.zg.tpt-al-hxy-u.6hr.GLB", + "atmos.zg.tpt-p7h-hxy-air.6hr.GLB", + "atmos.ztp.tavg-u-hxy-u.mon.GLB", + "atmosChem.c2h4.tavg-al-hxy-u.mon.GLB", + "atmosChem.c2h5oh.tavg-al-hxy-u.mon.GLB", + "atmosChem.c4h10.tavg-al-hxy-u.mon.GLB", + "atmosChem.cfc11.tavg-u-hm-u.mon.GLB", + "atmosChem.cfc113.tavg-u-hm-u.mon.GLB", + "atmosChem.cfc12.tavg-u-hm-u.mon.GLB", + "atmosChem.ch3oh.tavg-al-hxy-u.mon.GLB", + "atmosChem.ch4.tavg-al-hxy-u.mon.GLB", + "atmosChem.ch4.tavg-p39-hy-air.mon.GLB", + "atmosChem.ch4losssoil.tavg-u-hxy-u.mon.GLB", + "atmosChem.ch4ref.ti-al-hxy-u.fx.GLB", + "atmosChem.chegph2oo1d.tavg-al-hxy-u.mon.GLB", + "atmosChem.chepnh4.tavg-al-hxy-u.mon.GLB", + "atmosChem.chepno3.tavg-al-hxy-u.mon.GLB", + "atmosChem.dms.tavg-al-hxy-u.mon.30S-90S", + "atmosChem.dms.tavg-al-hxy-u.mon.GLB", + "atmosChem.do3chm.tavg-al-hxy-u.mon.GLB", + "atmosChem.dryh2.tavg-u-hxy-u.mon.GLB", + "atmosChem.dryhno3.tavg-u-hxy-u.mon.GLB", + "atmosChem.drynh3.tavg-u-hxy-u.mon.GLB", + "atmosChem.drynh4.tavg-u-hxy-u.mon.GLB", + "atmosChem.drynoy.tavg-u-hxy-u.mon.GLB", + "atmosChem.e90inst.tpt-al-hxy-u.mon.GLB", + "atmosChem.emiach4.tavg-u-hxy-u.mon.GLB", + "atmosChem.emiavnox.tavg-al-hxy-u.mon.GLB", + "atmosChem.emic2h4.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic2h5oh.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic2h6.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic3h6.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic3h8.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic4h10.tavg-u-hxy-u.mon.GLB", + "atmosChem.emich3oh.tavg-u-hxy-u.mon.GLB", + "atmosChem.emich4.tavg-u-hxy-u.mon.GLB", + "atmosChem.emih2.tavg-u-hxy-u.mon.GLB", + "atmosChem.emilkch4.tavg-u-hxy-u.mon.GLB", + "atmosChem.h2.tavg-al-hxy-u.mon.GLB", + "atmosChem.h2loss.tavg-al-hxy-u.mon.GLB", + "atmosChem.h2prod.tavg-al-hxy-u.mon.GLB", + "atmosChem.hcfc22.tavg-u-hm-u.mon.GLB", + "atmosChem.meanage.tavg-al-hxy-u.mon.GLB", + "atmosChem.meanage.tavg-p39-hy-air.mon.GLB", + "atmosChem.n2o.tavg-al-hxy-u.mon.GLB", + "atmosChem.n2o.tavg-p39-hy-air.mon.GLB", + "atmosChem.o3.tavg-al-hxy-u.mon.GLB", + "atmosChem.o3.tavg-p19-hxy-air.mon.GLB", + "atmosChem.o3.tavg-p39-hy-air.mon.GLB", + "atmosChem.o3.tpt-al-hxy-u.mon.GLB", + "atmosChem.o3ref.tclm-al-hxy-u.fx.GLB", + "atmosChem.o3ref.ti-al-hxy-u.fx.GLB", + "atmosChem.o3ste.tavg-al-hxy-u.mon.GLB", + "atmosChem.rlutch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rlutcsch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rlutcso3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rluto3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsutch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsutcsch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsutcso3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsuto3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.stratch4loss.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropch4loss.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropch4lossoh.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropdo3chm.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropo3ste.tavg-al-hxy-u.mon.GLB", + "atmosChem.wethno3.tavg-al-hxy-u.mon.GLB", + "atmosChem.wetnh3.tavg-u-hxy-u.mon.GLB", + "atmosChem.wetnh4.tavg-u-hxy-u.mon.GLB", + "atmosChem.wetno3.tavg-al-hxy-u.mon.GLB", + "atmosChem.wetnoy.tavg-u-hxy-u.mon.GLB", + "land.albc.tavg-u-hxy-veg.mon.GLB", + "land.areacellr.ti-u-hxy-u.fx.GLB", + "land.baresoilFrac.tavg-u-hxy-u.mon.GLB", + "land.burntFractionAll.tavg-u-hxy-u.mon.GLB", + "land.cGeologicStorage.tavg-u-hxy-u.mon.GLB", + "land.cLand.tavg-u-hxy-lnd.mon.GLB", + "land.cLitter.tavg-u-hxy-lnd.mon.GLB", + "land.cnc.tavg-u-hxy-u.mon.GLB", + "land.cProduct.tavg-u-hxy-lnd.mon.GLB", + "land.cropFrac.tavg-u-hxy-u.mon.GLB", + "land.cSoil.tavg-d100cm-hxy-lnd.mon.GLB", + "land.cSoil.tavg-sl-hxy-lnd.mon.GLB", + "land.cSoil.tavg-u-hxy-lnd.mon.GLB", + "land.cVeg.tavg-u-hxy-lnd.mon.GLB", + "land.dcw.tavg-u-hxy-lnd.day.GLB", + "land.depthl.ti-u-hxy-u.fx.GLB", + "land.depthsl.ti-u-hxy-u.fx.GLB", + "land.dslw.tavg-u-hxy-lnd.day.GLB", + "land.evspsblpot.tavg-u-hxy-lnd.day.GLB", + "land.evspsblpot.tavg-u-hxy-lnd.mon.GLB", + "land.fAnthDisturb.tavg-u-hxy-lnd.mon.GLB", + "land.fBNF.tavg-u-hxy-lnd.mon.GLB", + "land.fCLandToOcean.tavg-u-hxy-lnd.mon.GLB", + "land.fDeforestToAtmos.tavg-u-hxy-lnd.mon.GLB", + "land.fDeforestToProduct.tavg-u-hxy-lnd.mon.GLB", + "land.fFire.tavg-u-hxy-lnd.mon.GLB", + "land.fFireAll.tavg-u-hxy-lnd.mon.GLB", + "land.fFireNat.tavg-u-hxy-lnd.mon.GLB", + "land.fHarvestToAtmos.tavg-u-hxy-lnd.mon.GLB", + "land.fHarvestToGeologicStorage.tavg-u-hxy-lnd.mon.GLB", + "land.fHarvestToProduct.tavg-u-hxy-lnd.mon.GLB", + "land.fLitterSoil.tavg-u-hxy-lnd.mon.GLB", + "land.fN2O.tavg-u-hxy-lnd.mon.GLB", + "land.fNAnthDisturb.tavg-u-hxy-lnd.mon.GLB", + "land.fNdep.tavg-u-hxy-lnd.mon.GLB", + "land.fNfert.tavg-u-hxy-lnd.mon.GLB", + "land.fNLandToOcean.tavg-u-hxy-lnd.mon.GLB", + "land.fNLitterSoil.tavg-u-hxy-lnd.mon.GLB", + "land.fNloss.tavg-u-hxy-lnd.mon.GLB", + "land.fNnetmin.tavg-u-hxy-lnd.mon.GLB", + "land.fNOx.tavg-u-hxy-lnd.mon.GLB", + "land.fNProduct.tavg-u-hxy-lnd.mon.GLB", + "land.fNup.tavg-u-hxy-lnd.mon.GLB", + "land.fNVegLitter.tavg-u-hxy-lnd.mon.GLB", + "land.fNVegSoil.tavg-u-hxy-lnd.mon.GLB", + "land.fProductDecomp.tavg-u-hxy-lnd.mon.GLB", + "land.fVegLitter.tavg-u-hxy-lnd.mon.GLB", + "land.fVegSoil.tavg-u-hxy-lnd.mon.GLB", + "land.gpp.tavg-u-hxy-lnd.mon.GLB", + "land.grassFrac.tavg-u-hxy-u.mon.GLB", + "land.landCoverFrac.tavg-u-hxy-u.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.day.GLB", + "land.mrrob.tavg-u-hxy-lnd.day.GLB", + "land.mrros.tavg-u-hxy-lnd.day.GLB", + "land.mrsfl.tavg-sl-hxy-lnd.day.GLB", + "land.mrsfl.tavg-sl-hxy-lnd.mon.GLB", + "land.mrsll.tavg-sl-hxy-lnd.day.GLB", + "land.mrsll.tavg-sl-hxy-lnd.mon.GLB", + "land.mrso.tavg-u-hxy-lnd.day.GLB", + "land.mrsol.tavg-d10cm-hxy-lnd.day.GLB", + "land.mrsol.tavg-sl-hxy-lnd.day.GLB", + "land.mrsol.tavg-sl-hxy-lnd.mon.GLB", + "land.mrsow.tavg-u-hxy-lnd.day.GLB", + "land.mrtws.tavg-u-hxy-lnd.day.GLB", + "land.mrtws.tavg-u-hxy-lnd.mon.GLB", + "land.nbp.tavg-u-hxy-lnd.mon.GLB", + "land.nep.tavg-u-hxy-lnd.mon.GLB", + "land.nLand.tavg-u-hxy-lnd.mon.GLB", + "land.nLitter.tavg-u-hxy-lnd.mon.GLB", + "land.nMineral.tavg-u-hxy-lnd.mon.GLB", + "land.npp.tavg-u-hxy-lnd.mon.GLB", + "land.nProduct.tavg-u-hxy-lnd.mon.GLB", + "land.nSoil.tavg-u-hxy-lnd.mon.GLB", + "land.nVeg.tavg-u-hxy-lnd.mon.GLB", + "land.pastureFrac.tavg-u-hxy-u.mon.GLB", + "land.prveg.tavg-u-hxy-lnd.mon.GLB", + "land.ra.tavg-u-hxy-lnd.mon.GLB", + "land.residualFrac.tavg-u-hxy-u.mon.GLB", + "land.rh.tavg-u-hxy-lnd.mon.GLB", + "land.rivi.tavg-u-hxy-lnd.day.GLB", + "land.rivo.tavg-u-hxy-lnd.day.GLB", + "land.rsds.tavg-u-hxy-lnd.mon.GLB", + "land.rsds.tavg-u-hxy-sn.mon.GLB", + "land.rsus.tavg-u-hxy-lnd.mon.GLB", + "land.rsus.tavg-u-hxy-sn.mon.GLB", + "land.sftgif.tavg-u-hxy-u.mon.GLB", + "land.sftlaf.ti-u-hxy-u.fx.GLB", + "land.shrubFrac.tavg-u-hxy-u.mon.GLB", + "land.tas.tavg-u-hxy-u.1hr.GLB", + "land.tran.tavg-u-hxy-lnd.mon.GLB", + "land.treeFrac.tavg-u-hxy-u.mon.GLB", + "land.tsl.tavg-sl-hxy-lnd.day.GLB", + "land.tsl.tavg-sl-hxy-lnd.mon.GLB", + "land.tslsi.tavg-u-hxy-u.day.GLB", + "land.vegFrac.tavg-u-hxy-u.mon.GLB", + "land.vegHeight.tavg-u-hxy-veg.mon.GLB", + "land.wetlandCH4.tavg-u-hxy-lnd.mon.GLB", + "land.wtd.tavg-u-hxy-lnd.day.GLB", + "landIce.acabf.tavg-u-hxy-is.mon.GLB", + "landIce.hfls.tavg-u-hxy-is.mon.GLB", + "landIce.hfss.tavg-u-hxy-is.mon.GLB", + "landIce.icem.tavg-u-hxy-is.mon.GLB", + "landIce.litemptop.tavg-u-hxy-is.mon.GLB", + "landIce.lithk.ti-u-hxy-u.fx.GLB", + "landIce.mrro.tavg-u-hxy-is.mon.GLB", + "landIce.orog.tavg-u-hxy-is.mon.GLB", + "landIce.prra.tavg-u-hxy-is.mon.GLB", + "landIce.prsn.tavg-u-hxy-is.mon.GLB", + "landIce.rlds.tavg-u-hxy-is.mon.GLB", + "landIce.rlus.tavg-u-hxy-is.mon.GLB", + "landIce.rsds.tavg-u-hxy-is.mon.GLB", + "landIce.rsus.tavg-u-hxy-is.mon.GLB", + "landIce.sbl.tavg-u-hxy-is.mon.GLB", + "landIce.sbl.tavg-u-hxy-u.mon.GLB", + "landIce.sftflf.tavg-u-hxy-u.mon.GLB", + "landIce.sftflf.ti-u-hxy-u.fx.GLB", + "landIce.sftgrf.tavg-u-hxy-u.mon.GLB", + "landIce.sftgrf.ti-u-hxy-u.fx.GLB", + "landIce.snc.tavg-u-hxy-is.mon.GLB", + "landIce.snd.tavg-u-hxy-lnd.mon.GLB", + "landIce.snicem.tavg-u-hxy-is.mon.GLB", + "landIce.snm.tavg-u-hxy-is.mon.GLB", + "landIce.snm.tavg-u-hxy-lnd.mon.GLB", + "landIce.snrefr.tavg-u-hxy-is.mon.GLB", + "landIce.tas.tavg-u-hxy-is.mon.GLB", + "landIce.ts.tavg-u-hxy-is.mon.GLB", + "landIce.tsn.tavg-u-hxy-is.mon.GLB", + "landIce.tsn.tavg-u-hxy-lnd.mon.GLB", + "ocean.absscint.tavg-op4-hxy-sea.mon.GLB", + "ocean.agessc.tavg-ol-hxy-sea.mon.GLB", + "ocean.bigthetao.tavg-ol-hm-sea.mon.GLB", + "ocean.bigthetao.tavg-ol-hxy-sea.dec.GLB", + "ocean.bigthetao.tavg-op20bar-hxy-sea.day.GLB", + "ocean.chcint.tavg-op4-hxy-sea.mon.GLB", + "ocean.ficeberg.tavg-ol-hxy-sea.mon.GLB", + "ocean.ficeberg.tavg-u-hxy-sea.mon.GLB", + "ocean.flandice.tavg-u-hxy-sea.mon.GLB", + "ocean.friver.tavg-u-hxy-sea.mon.GLB", + "ocean.hfbasin.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpmadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpmdiff.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpsmadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfds.tavg-u-hxy-sea.mon.30S-90S", + "ocean.hfgeou.tavg-u-hxy-sea.mon.GLB", + "ocean.hfx.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfx.tavg-u-hxy-sea.day.GLB", + "ocean.hfx.tavg-u-hxy-sea.mon.GLB", + "ocean.hfy.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfy.tavg-u-hxy-sea.day.GLB", + "ocean.hfy.tavg-u-hxy-sea.mon.GLB", + "ocean.htovgyre.tavg-u-hyb-sea.mon.GLB", + "ocean.htovovrt.tavg-u-hyb-sea.mon.GLB", + "ocean.masscello.tavg-ol-hxy-sea.dec.GLB", + "ocean.masso.tavg-u-hm-sea.dec.GLB", + "ocean.masso.tavg-u-hm-sea.mon.GLB", + "ocean.mlotst.tavg-u-hxy-sea.day.GLB", + "ocean.mlotst.tavg-u-hxy-sea.mon.30S-90S", + "ocean.mlotst.tmax-u-hxy-sea.mon.GLB", + "ocean.mlotst.tmin-u-hxy-sea.mon.GLB", + "ocean.mpw.tavg-u-hxy-sea.mon.GLB", + "ocean.mpw.tpt-u-hxy-sea.3hr.GLB", + "ocean.mpwswell.tavg-u-hxy-sea.mon.GLB", + "ocean.mpwswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.mpwwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.mpwwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.msftbarot.tavg-u-hxy-sea.mon.GLB", + "ocean.msftm.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftm.tavg-rho-hyb-sea.mon.GLB", + "ocean.msfty.tavg-ol-ht-sea.mon.GLB", + "ocean.msfty.tavg-rho-ht-sea.mon.GLB", + "ocean.obvfsq.tavg-ol-hxy-sea.mon.GLB", + "ocean.opottemptend.tavg-ol-hxy-sea.yr.GLB", + "ocean.pbo.tavg-u-hxy-sea.mon.GLB", + "ocean.pfscint.tavg-op4-hxy-sea.mon.GLB", + "ocean.phcint.tavg-op4-hxy-sea.mon.GLB", + "ocean.pso.tavg-u-hxy-sea.mon.GLB", + "ocean.rsds.tavg-u-hxy-ifs.mon.GLB", + "ocean.rsus.tavg-u-hxy-ifs.mon.GLB", + "ocean.scint.tavg-op4-hxy-sea.mon.GLB", + "ocean.sduo.tavg-u-hxy-sea.mon.GLB", + "ocean.sduo.tpt-u-hxy-sea.3hr.GLB", + "ocean.sdvo.tavg-u-hxy-sea.mon.GLB", + "ocean.sdvo.tpt-u-hxy-sea.3hr.GLB", + "ocean.sfx.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfx.tavg-u-hxy-sea.mon.GLB", + "ocean.sfy.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfy.tavg-u-hxy-sea.mon.GLB", + "ocean.sltbasin.tavg-u-hyb-sea.mon.GLB", + "ocean.sltovgyre.tavg-u-hyb-sea.mon.GLB", + "ocean.sltovovrt.tavg-u-hyb-sea.mon.GLB", + "ocean.so.tavg-ol-hm-sea.mon.GLB", + "ocean.so.tavg-ol-hxy-sea.dec.GLB", + "ocean.so.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.sob.tavg-u-hxy-sea.mon.GLB", + "ocean.sos.tavg-u-hm-sea.mon.30S-90S", + "ocean.sos.tavg-u-hm-sea.mon.GLB", + "ocean.sw17O.tavg-ol-hxy-sea.mon.GLB", + "ocean.sw18O.tavg-ol-hxy-sea.mon.GLB", + "ocean.sw2H.tavg-ol-hxy-sea.mon.GLB", + "ocean.swh.tavg-u-hxy-sea.mon.GLB", + "ocean.swh.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhmax.tmax-u-hxy-sea.mon.GLB", + "ocean.swhmax.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhswell.tavg-u-hxy-sea.mon.GLB", + "ocean.swhswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.swhwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.tauuo.tavg-u-hxy-sea.3hr.GLB", + "ocean.tauuo.tavg-u-hxy-sea.dec.GLB", + "ocean.tauvo.tavg-u-hxy-sea.3hr.GLB", + "ocean.tauvo.tavg-u-hxy-sea.dec.GLB", + "ocean.thetao.tavg-ol-hm-sea.mon.GLB", + "ocean.thetao.tavg-ol-hxy-sea.dec.GLB", + "ocean.thetao.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.thetao.tavg-op20bar-hxy-sea.day.GLB", + "ocean.thkcello.tavg-ol-hxy-sea.dec.GLB", + "ocean.tob.tavg-u-hxy-sea.mon.GLB", + "ocean.tos.tavg-u-hm-sea.mon.GLB", + "ocean.tos.tavg-u-hxy-sea.mon.30S-90S", + "ocean.tos.tpt-u-hxy-sea.3hr.GLB", + "ocean.tossq.tavg-u-hxy-sea.day.GLB", + "ocean.umo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.uo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.uos.tavg-u-hxy-sea.day.GLB", + "ocean.vmo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.vo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.volcello.tavg-ol-hxy-sea.dec.GLB", + "ocean.volcello.tavg-ol-hxy-sea.mon.GLB", + "ocean.volcello.tavg-ol-hxy-sea.yr.GLB", + "ocean.volcello.ti-ol-hxy-sea.fx.GLB", + "ocean.volo.tavg-u-hm-sea.dec.GLB", + "ocean.volo.tavg-u-hm-sea.mon.GLB", + "ocean.vos.tavg-u-hxy-sea.day.GLB", + "ocean.wdir.tavg-u-hxy-sea.mon.GLB", + "ocean.wdir.tpt-u-hxy-sea.3hr.GLB", + "ocean.wdirswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wdirswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wdirwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wdirwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.wfcorr.tavg-u-hxy-sea.mon.GLB", + "ocean.wfo.tavg-u-hxy-sea.mon.GLB", + "ocean.wmo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.wo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.wpdir.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdir.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpdirswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdirswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpdirwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdirwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpp.tavg-u-hxy-sea.mon.GLB", + "ocean.wpp.tpt-u-hxy-sea.3hr.GLB", + "ocean.wppswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wppswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wppwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wppwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.zos.tavg-u-hxy-sea.mon.30S-90S", + "ocean.zossq.tavg-u-hxy-sea.mon.GLB", + "ocean.zostoga.tavg-u-hm-sea.day.GLB", + "ocnBgchem.bacc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.calc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chl.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chl.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chlcalc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chldiat.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chldiat.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chldiaz.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chldiaz.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chlmisc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chlmisc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chlpico.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chlpico.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.detoc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dfe.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.dfe.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissic.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.dissic.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissoc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dmso.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.expc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.expcalc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.fgco2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fsfe.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fsn.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.graz.tavg-ol-hxy-sea.mon.30S-90S", + "ocnBgchem.icfriver.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intdic.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intdoc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intparag.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbfe.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbn.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbp.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbsi.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpcalcite.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpn2.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpoc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpp.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpp.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppcalc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppdiat.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppdiaz.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppmisc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppnitrate.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpppico.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.nh4.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.nh4.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.no3.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.no3.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.o2.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.ocfriver.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.ph.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.ph.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phyc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phyc.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.phyc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phycalc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phycalc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phydiat.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phydiat.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phydiaz.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phydiaz.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phymisc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phymisc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phypico.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phypico.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.po4.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.pp.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.si.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.spco2.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.spco2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.talk.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zmeso.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zmeso.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zmicro.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zmicro.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zmisc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zmisc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zooc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zooc.tavg-ol-hxy-sea.mon.GLB", + "seaIce.evspsbl.tavg-u-hxy-si.mon.GLB", + "seaIce.prra.tavg-u-hxy-si.mon.GLB", + "seaIce.prsn.tavg-u-hxy-si.mon.GLB", + "seaIce.rlds.tavg-u-hxy-si.mon.GLB", + "seaIce.rlus.tavg-u-hxy-si.mon.GLB", + "seaIce.rsds.tavg-u-hxy-si.day.GLB", + "seaIce.rsds.tavg-u-hxy-si.mon.GLB", + "seaIce.rsus.tavg-u-hxy-si.day.GLB", + "seaIce.rsus.tavg-u-hxy-si.mon.GLB", + "seaIce.sbl.tavg-u-hxy-si.mon.GLB", + "seaIce.siage.tavg-u-hxy-si.day.GLB", + "seaIce.siage.tavg-u-hxy-si.mon.30S-90S", + "seaIce.siarea.tavg-u-hm-u.mon.NH", + "seaIce.siarea.tavg-u-hm-u.mon.SH", + "seaIce.siareaacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.siconc.tavg-u-hxy-u.mon.30S-90S", + "seaIce.siconca.tavg-u-hxy-u.day.GLB", + "seaIce.siconca.tavg-u-hxy-u.mon.GLB", + "seaIce.sidconcdyn.tavg-u-hxy-sea.mon.GLB", + "seaIce.sidconcth.tavg-u-hxy-sea.mon.GLB", + "seaIce.sidmassdyn.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthsi.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthwat.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmeltbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmeltlat.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmelttop.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassth.tavg-u-hxy-si.mon.GLB", + "seaIce.sieqthick.tavg-u-hxy-si.mon.GLB", + "seaIce.siextent.tavg-u-hm-u.mon.NH", + "seaIce.siextent.tavg-u-hm-u.mon.SH", + "seaIce.siflcondbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflcondtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sifllattop.tavg-u-hxy-si.mon.GLB", + "seaIce.siflsensbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflsenstop.tavg-u-hxy-si.mon.GLB", + "seaIce.siflswdbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sihc.tavg-u-hxy-sea.mon.GLB", + "seaIce.siitdconc.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdsnconc.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdsnthick.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdthick.tavg-u-hxy-si.mon.GLB", + "seaIce.simassacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.simpconc.tavg-u-hxy-si.mon.GLB", + "seaIce.sirdgconc.tavg-u-hxy-si.mon.GLB", + "seaIce.sisaltmass.tavg-u-hxy-si.mon.GLB", + "seaIce.sisndmassdyn.tavg-u-hxy-si.mon.GLB", + "seaIce.sisndmasssi.tavg-u-hxy-si.mon.GLB", + "seaIce.sisndmasswind.tavg-u-hxy-si.mon.GLB", + "seaIce.sisnhc.tavg-u-hxy-si.mon.GLB", + "seaIce.sisnmass.tavg-u-hm-u.mon.NH", + "seaIce.sisnmass.tavg-u-hm-u.mon.SH", + "seaIce.sisnmassacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.sispeed.tavg-u-hxy-si.day.GLB", + "seaIce.sispeed.tavg-u-hxy-si.mon.GLB", + "seaIce.sistressave.tpt-u-hxy-si.mon.GLB", + "seaIce.sistressmax.tpt-u-hxy-si.mon.GLB", + "seaIce.sistrxdtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sistrxubot.tavg-u-hxy-si.mon.GLB", + "seaIce.sistrydtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sistryubot.tavg-u-hxy-si.mon.GLB", + "seaIce.sitempsnic.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-si.day.GLB", + "seaIce.sithick.tavg-u-hxy-si.mon.30S-90S", + "seaIce.sitimefrac.tavg-u-hxy-sea.day.GLB", + "seaIce.sitimefrac.tavg-u-hxy-sea.mon.30S-90S", + "seaIce.siu.tavg-u-hxy-si.day.GLB", + "seaIce.siu.tavg-u-hxy-si.mon.30S-90S", + "seaIce.siv.tavg-u-hxy-si.day.GLB", + "seaIce.siv.tavg-u-hxy-si.mon.30S-90S", + "seaIce.sivol.tavg-u-hm-u.mon.NH", + "seaIce.sivol.tavg-u-hm-u.mon.SH", + "seaIce.snc.tavg-u-hxy-si.mon.GLB", + "seaIce.snd.tavg-u-hxy-sn.day.GLB", + "seaIce.snd.tavg-u-hxy-sn.mon.30S-90S", + "seaIce.snm.tavg-u-hxy-si.mon.GLB", + "seaIce.snw.tavg-u-hxy-si.mon.GLB", + "seaIce.ts.tavg-u-hxy-si.day.GLB", + "seaIce.ts.tavg-u-hxy-si.mon.30S-90S" + ], + "Medium": [ + "atmos.rls.tavg-u-hxy-u.day.GLB", + "atmos.rls.tavg-u-hxy-u.mon.GLB", + "atmos.rss.tavg-u-hxy-u.day.GLB", + "atmos.rss.tavg-u-hxy-u.mon.GLB", + "land.cLeaf.tavg-u-hxy-lnd.mon.GLB", + "land.cLitterCwd.tavg-u-hxy-lnd.mon.GLB", + "land.cLitterSubSurf.tavg-u-hxy-lnd.mon.GLB", + "land.cLitterSurf.tavg-u-hxy-lnd.mon.GLB", + "land.cOther.tavg-u-hxy-lnd.mon.GLB", + "land.cRoot.tavg-u-hxy-lnd.mon.GLB", + "land.cropFracC3.tavg-u-hxy-u.mon.GLB", + "land.cropFracC4.tavg-u-hxy-u.mon.GLB", + "land.cSoilPools.tavg-u-hxy-lnd.mon.GLB", + "land.cStem.tavg-u-hxy-lnd.mon.GLB", + "land.cVeg.tavg-u-hxy-ng.mon.GLB", + "land.cVeg.tavg-u-hxy-shb.mon.GLB", + "land.cVeg.tavg-u-hxy-tree.mon.GLB", + "land.fLitterFire.tavg-u-hxy-lnd.mon.GLB", + "land.fNgas.tavg-u-hxy-lnd.mon.GLB", + "land.fNgasFire.tavg-u-hxy-lnd.mon.GLB", + "land.fNgasNonFire.tavg-u-hxy-lnd.mon.GLB", + "land.fNleach.tavg-u-hxy-lnd.mon.GLB", + "land.fVegFire.tavg-u-hxy-lnd.mon.GLB", + "land.fVegLitterMortality.tavg-u-hxy-lnd.mon.GLB", + "land.fVegLitterSenescence.tavg-u-hxy-lnd.mon.GLB", + "land.fVegSoilMortality.tavg-u-hxy-lnd.mon.GLB", + "land.fVegSoilSenescence.tavg-u-hxy-lnd.mon.GLB", + "land.gpp.tavg-u-hxy-ng.mon.GLB", + "land.gpp.tavg-u-hxy-shb.mon.GLB", + "land.gpp.tavg-u-hxy-tree.mon.GLB", + "land.grassFracC3.tavg-u-hxy-u.mon.GLB", + "land.grassFracC4.tavg-u-hxy-u.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.3hr.GLB", + "land.mrros.tavg-u-hxy-lnd.3hr.GLB", + "land.mrsol.tpt-d10cm-hxy-lnd.3hr.GLB", + "land.nLeaf.tavg-u-hxy-lnd.mon.GLB", + "land.nLitterCwd.tavg-u-hxy-lnd.mon.GLB", + "land.nLitterSubSurf.tavg-u-hxy-lnd.mon.GLB", + "land.nLitterSurf.tavg-u-hxy-lnd.mon.GLB", + "land.nMineralNH4.tavg-u-hxy-lnd.mon.GLB", + "land.nMineralNO3.tavg-u-hxy-lnd.mon.GLB", + "land.nOther.tavg-u-hxy-lnd.mon.GLB", + "land.npp.tavg-u-hxy-ng.mon.GLB", + "land.npp.tavg-u-hxy-shb.mon.GLB", + "land.npp.tavg-u-hxy-tree.mon.GLB", + "land.nppLeaf.tavg-u-hxy-lnd.mon.GLB", + "land.nppOther.tavg-u-hxy-lnd.mon.GLB", + "land.nppRoot.tavg-u-hxy-lnd.mon.GLB", + "land.nppStem.tavg-u-hxy-lnd.mon.GLB", + "land.nRoot.tavg-u-hxy-lnd.mon.GLB", + "land.nStem.tavg-u-hxy-lnd.mon.GLB", + "land.pastureFracC3.tavg-u-hxy-u.mon.GLB", + "land.pastureFracC4.tavg-u-hxy-u.mon.GLB", + "land.ra.tavg-u-hxy-ng.mon.GLB", + "land.ra.tavg-u-hxy-shb.mon.GLB", + "land.ra.tavg-u-hxy-tree.mon.GLB", + "land.raLeaf.tavg-u-hxy-lnd.mon.GLB", + "land.raOther.tavg-u-hxy-lnd.mon.GLB", + "land.raRoot.tavg-u-hxy-lnd.mon.GLB", + "land.raStem.tavg-u-hxy-lnd.mon.GLB", + "land.rh.tavg-u-hxy-ng.mon.GLB", + "land.rh.tavg-u-hxy-shb.mon.GLB", + "land.rh.tavg-u-hxy-tree.mon.GLB", + "land.rhLitter.tavg-u-hxy-lnd.mon.GLB", + "land.rhSoil.tavg-u-hxy-lnd.mon.GLB", + "land.treeFracBdlDcd.tavg-u-hxy-u.mon.GLB", + "land.treeFracBdlEvg.tavg-u-hxy-u.mon.GLB", + "land.treeFracNdlDcd.tavg-u-hxy-u.mon.GLB", + "land.treeFracNdlEvg.tavg-u-hxy-u.mon.GLB", + "land.vegHeight.tavg-u-hxy-ng.mon.GLB", + "land.vegHeight.tavg-u-hxy-shb.mon.GLB", + "land.vegHeight.tavg-u-hxy-tree.mon.GLB", + "land.wetlandCH4cons.tavg-u-hxy-lnd.mon.GLB", + "land.wetlandCH4prod.tavg-u-hxy-lnd.mon.GLB", + "land.wetlandFrac.tavg-u-hxy-u.mon.GLB", + "ocean.evspsbl.tavg-u-hxy-ifs.mon.GLB", + "ocean.hfacrossline.tavg-u-ht-sea.mon.GLB", + "ocean.hfevapds.tavg-u-hxy-ifs.mon.GLB", + "ocean.hfibthermds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfibthermds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfrainds.tavg-u-hxy-ifs.mon.GLB", + "ocean.hfrunoffds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfrunoffds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfsnthermds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfsnthermds.tavg-u-hxy-sea.mon.GLB", + "ocean.mfo.tavg-u-ht-sea.mon.GLB", + "ocean.sf6.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfacrossline.tavg-u-ht-sea.mon.GLB", + "ocean.sfdsi.tavg-u-hxy-sea.mon.GLB", + "ocean.sfriver.tavg-u-hxy-sea.mon.GLB", + "ocean.siflfwbot.tavg-u-hxy-sea.mon.GLB", + "ocean.so.tavg-ol-hxy-sea.day.GLB", + "ocean.tnkebto.tavg-u-hxy-sea.yr.GLB", + "ocean.vsf.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfcorr.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfevap.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfpr.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfriver.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfsit.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.arag.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.arag.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.calc.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.calc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chl.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.chlcalc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dmso.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.epn.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.epp.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.expc.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.expcalc.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.fgdms.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fric.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.froc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.graz.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.intppcalc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppdiat.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppdiaz.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppmisc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppnitrate.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intpppico.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.o2.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.ph.tavg-op20bar-hxy-sea.day.GLB", + "seaIce.sfdsi.tavg-u-hxy-si.mon.GLB", + "seaIce.siage.tavg-u-hxy-si.mon.GLB", + "seaIce.siarea.tavg-u-hm-u.day.NH", + "seaIce.siarea.tavg-u-hm-u.day.SH", + "seaIce.sicompstren.tavg-u-hxy-si.mon.GLB", + "seaIce.sidivvel.tpt-u-hxy-si.mon.GLB", + "seaIce.sidmasstranx.tavg-u-hxy-u.mon.GLB", + "seaIce.sidmasstrany.tavg-u-hxy-u.mon.GLB", + "seaIce.sidragbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidragtop.tavg-u-hxy-si.mon.GLB", + "seaIce.siextent.tavg-u-hm-u.day.NH", + "seaIce.siextent.tavg-u-hm-u.day.SH", + "seaIce.sifb.tavg-u-hxy-si.mon.GLB", + "seaIce.siflfwbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflfwdrain.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcecoriolx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcecorioly.tavg-u-hxy-si.mon.GLB", + "seaIce.siforceintstrx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforceintstry.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcetiltx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcetilty.tavg-u-hxy-si.mon.GLB", + "seaIce.simpeffconc.tavg-u-hxy-si.mon.GLB", + "seaIce.simprefrozen.tavg-u-hxy-simp.mon.GLB", + "seaIce.simpthick.tavg-u-hxy-simp.mon.GLB", + "seaIce.sisali.tavg-u-hxy-si.mon.GLB", + "seaIce.sishearvel.tpt-u-hxy-si.mon.GLB", + "seaIce.sisnmass.tavg-u-hm-u.day.NH", + "seaIce.sisnmass.tavg-u-hm-u.day.SH", + "seaIce.sitempbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-sir.mon.GLB", + "seaIce.sivol.tavg-u-hm-u.day.NH", + "seaIce.sivol.tavg-u-hm-u.day.SH" + ], + "Low": [ + "land.c13Land.tavg-u-hxy-lnd.mon.GLB", + "land.c13Litter.tavg-u-hxy-lnd.mon.GLB", + "land.c13Soil.tavg-u-hxy-lnd.mon.GLB", + "land.c13Veg.tavg-u-hxy-lnd.mon.GLB", + "land.c14Land.tavg-u-hxy-lnd.mon.GLB", + "land.c14Litter.tavg-u-hxy-lnd.mon.GLB", + "land.c14Soil.tavg-u-hxy-lnd.mon.GLB", + "land.c14Veg.tavg-u-hxy-lnd.mon.GLB", + "land.gppc13.tavg-u-hxy-lnd.mon.GLB", + "land.gppc14.tavg-u-hxy-lnd.mon.GLB", + "land.netAtmosLandC13Flux.tavg-u-hxy-lnd.mon.GLB", + "land.netAtmosLandC14Flux.tavg-u-hxy-lnd.mon.GLB", + "land.rac13.tavg-u-hxy-lnd.mon.GLB", + "land.rac14.tavg-u-hxy-lnd.mon.GLB", + "land.rhc13.tavg-u-hxy-lnd.mon.GLB", + "land.rhc14.tavg-u-hxy-lnd.mon.GLB", + "ocean.difmxybo.tavg-ol-hxy-sea.yr.GLB", + "ocean.difmxylo.tavg-ol-hxy-sea.yr.GLB", + "ocean.diftrblo.tavg-ol-hxy-sea.yr.GLB", + "ocean.diftrelo.tavg-ol-hxy-sea.yr.GLB", + "ocean.difvho.tavg-ol-hxy-sea.yr.GLB", + "ocean.difvso.tavg-ol-hxy-sea.yr.GLB", + "ocean.dispkexyfo.tavg-u-hxy-sea.yr.GLB", + "ocean.dxto.ti-u-hxy-u.fx.GLB", + "ocean.dxuo.ti-u-hxy-u.fx.GLB", + "ocean.dxvo.ti-u-hxy-u.fx.GLB", + "ocean.dyto.ti-u-hxy-u.fx.GLB", + "ocean.dyuo.ti-u-hxy-u.fx.GLB", + "ocean.dyvo.ti-u-hxy-u.fx.GLB", + "ocean.mlotstsq.tavg-u-hxy-sea.mon.GLB", + "ocean.msftmmpa.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftmmpa.tavg-rho-hyb-sea.mon.GLB", + "ocean.msftmsmpa.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftypa.tavg-ol-ht-sea.mon.GLB", + "ocean.msftypa.tavg-rho-ht-sea.mon.GLB", + "ocean.ocontempdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontempmint.tavg-u-hxy-sea.yr.GLB", + "ocean.ocontemppadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemppmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemppsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemprmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemptend.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottempdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottempmint.tavg-u-hxy-sea.yr.GLB", + "ocean.opottemppadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemppmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemppsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemprmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemptend.tavg-ol-hxy-sea.dec.GLB", + "ocean.osaltdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpsmadvect.tavg-ol-hxy-sea.mon.GLB", + "ocean.osaltpsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltrmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osalttend.tavg-ol-hxy-sea.yr.GLB", + "ocean.rsdoabsorb.tavg-ol-hxy-sea.yr.GLB", + "ocean.somint.tavg-u-hxy-sea.yr.GLB", + "ocean.sossq.tavg-u-hxy-sea.mon.GLB", + "ocean.thkcelluo.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcellvo.tavg-ol-hxy-sea.mon.GLB", + "ocean.tnpeo.tavg-u-hxy-sea.yr.GLB", + "ocean.tossq.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.dissi13c.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.dissi13c.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissi14c.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissi14cabio.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.dissi14cabio.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.fg13co2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fg14co2abio.tavg-u-hxy-sea.mon.GLB" + ] + }, + "abrupt-2xCO2": { + "Core": [ + "atmos.areacella.ti-u-hxy-u.fx.GLB", + "atmos.cl.tavg-al-hxy-u.mon.GLB", + "atmos.cli.tavg-al-hxy-u.mon.GLB", + "atmos.clivi.tavg-u-hxy-u.mon.GLB", + "atmos.clt.tavg-u-hxy-u.day.GLB", + "atmos.clt.tavg-u-hxy-u.mon.GLB", + "atmos.clw.tavg-al-hxy-u.mon.GLB", + "atmos.clwvi.tavg-u-hxy-u.mon.GLB", + "atmos.evspsbl.tavg-u-hxy-u.mon.GLB", + "atmos.hfls.tavg-u-hxy-u.mon.GLB", + "atmos.hfss.tavg-u-hxy-u.mon.GLB", + "atmos.hur.tavg-p19-hxy-air.mon.GLB", + "atmos.hur.tavg-p19-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.6hr.GLB", + "atmos.hurs.tavg-h2m-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.mon.GLB", + "atmos.hus.tavg-p19-hxy-u.day.GLB", + "atmos.hus.tavg-p19-hxy-u.mon.GLB", + "atmos.huss.tavg-h2m-hxy-u.day.GLB", + "atmos.huss.tavg-h2m-hxy-u.mon.GLB", + "atmos.huss.tpt-h2m-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.1hr.GLB", + "atmos.pr.tavg-u-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.day.GLB", + "atmos.pr.tavg-u-hxy-u.mon.GLB", + "atmos.prc.tavg-u-hxy-u.mon.GLB", + "atmos.prsn.tavg-u-hxy-u.mon.GLB", + "atmos.prw.tavg-u-hxy-u.mon.GLB", + "atmos.ps.tavg-u-hxy-u.day.GLB", + "atmos.ps.tavg-u-hxy-u.mon.GLB", + "atmos.psl.tavg-u-hxy-u.day.GLB", + "atmos.psl.tavg-u-hxy-u.mon.GLB", + "atmos.rlds.tavg-u-hxy-u.mon.GLB", + "atmos.rldscs.tavg-u-hxy-u.mon.GLB", + "atmos.rlus.tavg-u-hxy-u.mon.GLB", + "atmos.rluscs.tavg-u-hxy-u.mon.GLB", + "atmos.rlut.tavg-u-hxy-u.mon.GLB", + "atmos.rlutcs.tavg-u-hxy-u.mon.GLB", + "atmos.rsds.tavg-u-hxy-u.day.GLB", + "atmos.rsds.tavg-u-hxy-u.mon.GLB", + "atmos.rsdscs.tavg-u-hxy-u.mon.GLB", + "atmos.rsdt.tavg-u-hxy-u.mon.GLB", + "atmos.rsus.tavg-u-hxy-u.mon.GLB", + "atmos.rsuscs.tavg-u-hxy-u.mon.GLB", + "atmos.rsut.tavg-u-hxy-u.mon.GLB", + "atmos.rsutcs.tavg-u-hxy-u.mon.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.day.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.mon.GLB", + "atmos.sftlf.ti-u-hxy-u.fx.GLB", + "atmos.ta.tavg-p19-hxy-air.day.GLB", + "atmos.ta.tavg-p19-hxy-air.mon.GLB", + "atmos.ta.tpt-p3-hxy-air.6hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.day.GLB", + "atmos.tas.tavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tmax-h2m-hxy-u.day.GLB", + "atmos.tas.tmaxavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tmin-h2m-hxy-u.day.GLB", + "atmos.tas.tminavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tpt-h2m-hxy-u.3hr.GLB", + "atmos.tauu.tavg-u-hxy-u.mon.GLB", + "atmos.tauv.tavg-u-hxy-u.mon.GLB", + "atmos.ts.tavg-u-hxy-u.mon.GLB", + "atmos.ua.tavg-p19-hxy-air.day.GLB", + "atmos.ua.tavg-p19-hxy-air.mon.GLB", + "atmos.ua.tpt-p3-hxy-air.6hr.GLB", + "atmos.uas.tavg-h10m-hxy-u.day.GLB", + "atmos.uas.tavg-h10m-hxy-u.mon.GLB", + "atmos.uas.tpt-h10m-hxy-u.3hr.GLB", + "atmos.va.tavg-p19-hxy-air.day.GLB", + "atmos.va.tavg-p19-hxy-air.mon.GLB", + "atmos.va.tpt-p3-hxy-air.6hr.GLB", + "atmos.vas.tavg-h10m-hxy-u.day.GLB", + "atmos.vas.tavg-h10m-hxy-u.mon.GLB", + "atmos.vas.tpt-h10m-hxy-u.3hr.GLB", + "atmos.wap.tavg-p19-hxy-air.mon.GLB", + "atmos.wap.tavg-p19-hxy-u.day.GLB", + "atmos.zg.tavg-p19-hxy-air.day.GLB", + "atmos.zg.tavg-p19-hxy-air.mon.GLB", + "land.evspsblsoi.tavg-u-hxy-lnd.mon.GLB", + "land.evspsblveg.tavg-u-hxy-lnd.mon.GLB", + "land.lai.tavg-u-hxy-lnd.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.mon.GLB", + "land.mrros.tavg-u-hxy-lnd.mon.GLB", + "land.mrso.tavg-u-hxy-lnd.mon.GLB", + "land.mrsofc.ti-u-hxy-lnd.fx.GLB", + "land.mrsol.tavg-d10cm-hxy-lnd.mon.GLB", + "land.orog.ti-u-hxy-u.fx.GLB", + "land.rootd.ti-u-hxy-lnd.fx.GLB", + "land.sftgif.ti-u-hxy-u.fx.GLB", + "land.slthick.ti-sl-hxy-lnd.fx.GLB", + "landIce.mrfso.tavg-u-hxy-lnd.mon.GLB", + "landIce.snc.tavg-u-hxy-lnd.mon.GLB", + "landIce.snw.tavg-u-hxy-lnd.mon.GLB", + "ocean.areacello.ti-u-hxy-u.fx.GLB", + "ocean.basin.ti-u-hxy-u.fx.GLB", + "ocean.bigthetao.tavg-ol-hxy-sea.mon.GLB", + "ocean.deptho.ti-u-hxy-sea.fx.GLB", + "ocean.hfds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfgeou.ti-u-hxy-sea.fx.GLB", + "ocean.masscello.tavg-ol-hxy-sea.mon.GLB", + "ocean.masscello.ti-ol-hxy-sea.fx.GLB", + "ocean.mlotst.tavg-u-hxy-sea.mon.GLB", + "ocean.sftof.ti-u-hxy-u.fx.GLB", + "ocean.so.tavg-ol-hxy-sea.mon.GLB", + "ocean.sos.tavg-u-hxy-sea.day.GLB", + "ocean.sos.tavg-u-hxy-sea.mon.GLB", + "ocean.tauuo.tavg-u-hxy-sea.mon.GLB", + "ocean.tauvo.tavg-u-hxy-sea.mon.GLB", + "ocean.thetao.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcello.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcello.ti-ol-hxy-sea.fx.GLB", + "ocean.tos.tavg-u-hxy-sea.day.GLB", + "ocean.tos.tavg-u-hxy-sea.mon.GLB", + "ocean.umo.tavg-ol-hxy-sea.mon.GLB", + "ocean.uo.tavg-ol-hxy-sea.mon.GLB", + "ocean.vmo.tavg-ol-hxy-sea.mon.GLB", + "ocean.vo.tavg-ol-hxy-sea.mon.GLB", + "ocean.wmo.tavg-ol-hxy-sea.mon.GLB", + "ocean.wo.tavg-ol-hxy-sea.mon.GLB", + "ocean.zos.tavg-u-hxy-sea.day.GLB", + "ocean.zos.tavg-u-hxy-sea.mon.GLB", + "ocean.zostoga.tavg-u-hm-sea.mon.GLB", + "seaIce.siconc.tavg-u-hxy-u.day.GLB", + "seaIce.siconc.tavg-u-hxy-u.mon.GLB", + "seaIce.simass.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-si.mon.GLB", + "seaIce.sitimefrac.tavg-u-hxy-sea.mon.GLB", + "seaIce.siu.tavg-u-hxy-si.mon.GLB", + "seaIce.siv.tavg-u-hxy-si.mon.GLB", + "seaIce.snd.tavg-u-hxy-sn.mon.GLB", + "seaIce.ts.tavg-u-hxy-si.mon.GLB" + ], + "High": [ + "aerosol.abs550aer.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550bc.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550dust.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550no3.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550oa.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550so4.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550ss.tavg-u-hxy-u.mon.GLB", + "aerosol.airmass.tavg-al-hxy-u.mon.GLB", + "aerosol.aoanh.tavg-al-hxy-u.mon.NH", + "aerosol.bry.tavg-p39-hy-air.mon.GLB", + "aerosol.bs550aer.tpt-al-hxy-u.6hr.GLB", + "aerosol.c2h6.tavg-al-hxy-u.mon.GLB", + "aerosol.c3h6.tavg-al-hxy-u.mon.GLB", + "aerosol.c3h8.tavg-al-hxy-u.mon.GLB", + "aerosol.ccldncl.tavg-u-hxy-ccl.mon.GLB", + "aerosol.ccn.tavg-u-hxy-ccl.mon.30S-90S", + "aerosol.ccn.tavg-u-hxy-ccl.mon.GLB", + "aerosol.ccn1.tavg-al-hxy-u.mon.30S-90S", + "aerosol.ccn1.tavg-al-hxy-u.mon.GLB", + "aerosol.ccnp02.tavg-al-hxy-u.mon.30S-90S", + "aerosol.ccnp02.tavg-al-hxy-u.mon.GLB", + "aerosol.cdnc.tavg-al-hxy-u.mon.30S-90S", + "aerosol.cdnc.tavg-al-hxy-u.mon.GLB", + "aerosol.cfc114.tavg-al-hxy-u.mon.GLB", + "aerosol.ch3coch3.tavg-al-hxy-u.mon.GLB", + "aerosol.cheaqpso4.tavg-al-hxy-u.mon.GLB", + "aerosol.chegpso4.tavg-al-hxy-u.mon.GLB", + "aerosol.chepasoa.tavg-u-hxy-u.mon.GLB", + "aerosol.chepsoa.tavg-u-hxy-u.mon.GLB", + "aerosol.cly.tavg-p39-hy-air.mon.GLB", + "aerosol.co.tavg-al-hxy-u.mon.GLB", + "aerosol.co.tavg-h2m-hxy-u.day.GLB", + "aerosol.cod.tavg-u-hxy-u.day.GLB", + "aerosol.cod.tavg-u-hxy-u.mon.30S-90S", + "aerosol.cod.tavg-u-hxy-u.mon.GLB", + "aerosol.conccn.tavg-al-hxy-u.mon.GLB", + "aerosol.conccn.tpt-u-hs-u.3hr.GLB", + "aerosol.depdust.tavg-u-hxy-u.mon.GLB", + "aerosol.drybc.tavg-u-hxy-u.mon.GLB", + "aerosol.drydust.tavg-u-hxy-u.mon.GLB", + "aerosol.dryno3.tavg-u-hxy-u.mon.GLB", + "aerosol.dryo3.tavg-u-hxy-u.mon.GLB", + "aerosol.dryoa.tavg-u-hxy-u.mon.GLB", + "aerosol.dryso2.tavg-u-hxy-u.mon.GLB", + "aerosol.dryso4.tavg-u-hxy-u.mon.GLB", + "aerosol.dryss.tavg-u-hxy-u.mon.GLB", + "aerosol.ec550aer.tavg-al-hxy-u.mon.GLB", + "aerosol.ec550aer.tpt-u-hxy-u.6hr.GLB", + "aerosol.emiaco.tavg-u-hxy-u.mon.GLB", + "aerosol.emianox.tavg-u-hxy-u.mon.GLB", + "aerosol.emiaoa.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbbc.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbch4.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbco.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbdms.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbnh3.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbnox.tavg-u-hxy-u.mon.GLB", + "aerosol.emibboa.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbso2.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbvoc.tavg-u-hxy-u.mon.GLB", + "aerosol.emibc.tavg-u-hxy-u.mon.GLB", + "aerosol.emibvoc.tavg-u-hxy-u.mon.GLB", + "aerosol.emico.tavg-u-hxy-u.mon.GLB", + "aerosol.emidms.tavg-u-hxy-u.mon.30S-90S", + "aerosol.emidms.tavg-u-hxy-u.mon.GLB", + "aerosol.emidust.tavg-u-hxy-u.mon.GLB", + "aerosol.emiisop.tavg-u-hxy-u.mon.GLB", + "aerosol.emilnox.tavg-al-hxy-u.mon.GLB", + "aerosol.eminh3.tavg-u-hxy-u.mon.GLB", + "aerosol.eminox.tavg-u-hxy-u.mon.GLB", + "aerosol.emioa.tavg-u-hxy-u.mon.GLB", + "aerosol.emiso2.tavg-u-hxy-u.mon.GLB", + "aerosol.emiso4.tavg-u-hxy-u.mon.GLB", + "aerosol.emiss.tavg-u-hxy-u.mon.30S-90S", + "aerosol.emiss.tavg-u-hxy-u.mon.GLB", + "aerosol.emivoc.tavg-u-hxy-u.mon.GLB", + "aerosol.h2o.tavg-al-hxy-u.mon.GLB", + "aerosol.h2o.tavg-p39-hy-air.mon.GLB", + "aerosol.hcfc22.tavg-al-hxy-u.mon.GLB", + "aerosol.hcho.tavg-al-hxy-u.mon.GLB", + "aerosol.hcl.tavg-al-hxy-u.mon.GLB", + "aerosol.hcl.tavg-p39-hy-air.mon.GLB", + "aerosol.hfc125.tavg-al-hxy-u.mon.GLB", + "aerosol.hfc134a.tavg-al-hxy-u.mon.GLB", + "aerosol.hno3.tavg-al-hxy-u.mon.GLB", + "aerosol.hno3.tavg-p39-hy-air.mon.GLB", + "aerosol.ho2.tavg-p39-hy-air.mon.GLB", + "aerosol.isop.tavg-al-hxy-u.mon.GLB", + "aerosol.jno2.tavg-al-hxy-u.mon.GLB", + "aerosol.lossch4.tavg-al-hxy-u.mon.GLB", + "aerosol.lossco.tavg-al-hxy-u.mon.GLB", + "aerosol.lossn2o.tavg-al-hxy-u.mon.GLB", + "aerosol.lwp.tavg-u-hxy-u.mon.GLB", + "aerosol.mmraerh2o.tavg-al-hxy-u.mon.GLB", + "aerosol.mmraerh2o.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmraerh2o.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrbc.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrbc.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrbc.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrbc.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrdust.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrdust.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrdust.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrdust.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrnh4.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrnh4.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrnh4.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrnh4.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrno3.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrno3.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrno3.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrno3.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmroa.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmroa.tavg-al-hxy-u.mon.GLB", + "aerosol.mmroa.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmroa.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrpm1.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrpm1.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrpm2p5.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrpm2p5.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrso4.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrso4.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrso4.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrso4.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrsoa.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrsoa.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrsoa.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrss.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrss.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrss.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrss.tpt-h2m-hs-u.3hr.GLB", + "aerosol.nh50.tavg-al-hxy-u.mon.GLB", + "aerosol.no.tavg-al-hxy-u.mon.GLB", + "aerosol.no2.tavg-al-hxy-u.mon.GLB", + "aerosol.no2.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.noy.tavg-p39-hy-air.mon.GLB", + "aerosol.o3.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.o3loss.tavg-al-hxy-u.mon.GLB", + "aerosol.o3prod.tavg-al-hxy-u.mon.GLB", + "aerosol.od443aer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550aer.tavg-u-hxy-u.day.GLB", + "aerosol.od550aer.tavg-u-hxy-u.mon.30S-90S", + "aerosol.od550aer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550aerh2o.tavg-u-hxy-u.mon.GLB", + "aerosol.od550bb.tavg-u-hxy-u.mon.GLB", + "aerosol.od550bc.tavg-u-hxy-u.mon.GLB", + "aerosol.od550csaer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550dust.tavg-u-hxy-u.mon.GLB", + "aerosol.od550lt1aer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550no3.tavg-u-hxy-u.mon.GLB", + "aerosol.od550oa.tavg-u-hxy-u.mon.GLB", + "aerosol.od550so4.tavg-u-hxy-u.mon.GLB", + "aerosol.od550soa.tavg-u-hxy-u.mon.GLB", + "aerosol.od550ss.tavg-u-hxy-u.mon.GLB", + "aerosol.od865aer.tavg-u-hxy-u.mon.GLB", + "aerosol.oh.tavg-al-hxy-u.mon.GLB", + "aerosol.oh.tavg-p39-hy-air.mon.GLB", + "aerosol.pan.tavg-al-hxy-u.mon.GLB", + "aerosol.photo1d.tavg-al-hxy-u.mon.GLB", + "aerosol.pod0.tsum-u-hxy-u.mon.GLB", + "aerosol.reffccwctop.tavg-u-hxy-cl.mon.GLB", + "aerosol.reffclwtop.tavg-u-hxy-cl.mon.30S-90S", + "aerosol.reffclwtop.tavg-u-hxy-cl.mon.GLB", + "aerosol.rluscsaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rlutaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rlutcsaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rsutaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rsutcsaf.tavg-u-hxy-u.mon.GLB", + "aerosol.sfpm1.tavg-h2m-hxy-u.day.GLB", + "aerosol.sfpm10.tavg-al-hxy-u.mon.30S-90S", + "aerosol.sfpm10.tavg-al-hxy-u.mon.GLB", + "aerosol.sfpm10.tavg-h2m-hxy-u.day.GLB", + "aerosol.sfpm25.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.sfpm25.tavg-h2m-hxy-u.day.GLB", + "aerosol.so2.tavg-al-hxy-u.mon.30S-90S", + "aerosol.so2.tavg-al-hxy-u.mon.GLB", + "aerosol.so2.tavg-h2m-hxy-u.day.GLB", + "aerosol.so2.tpt-h2m-hs-u.3hr.GLB", + "aerosol.tatp.tavg-u-hxy-u.mon.GLB", + "aerosol.toz.tavg-u-hxy-u.day.GLB", + "aerosol.toz.tavg-u-hxy-u.mon.GLB", + "aerosol.tropoz.tavg-u-hxy-u.mon.GLB", + "aerosol.ttop.tavg-u-hxy-cl.mon.GLB", + "aerosol.ua.tavg-10hPa-hxy-air.day.GLB", + "aerosol.vt100.tavg-100hPa-hy-air.mon.GLB", + "aerosol.wa.tavg-al-hxy-u.mon.GLB", + "aerosol.wetbc.tavg-u-hxy-u.mon.GLB", + "aerosol.wetdust.tavg-u-hxy-u.mon.GLB", + "aerosol.wetoa.tavg-u-hxy-u.mon.GLB", + "aerosol.wetso2.tavg-u-hxy-u.mon.GLB", + "aerosol.wetso4.tavg-u-hxy-u.mon.GLB", + "aerosol.wetss.tavg-u-hxy-u.mon.GLB", + "aerosol.zg.tavg-10hPa-hxy-air.day.GLB", + "atmos.albisccp.tavg-u-hxy-cl.day.GLB", + "atmos.albisccp.tavg-u-hxy-cl.mon.30S-90S", + "atmos.albisccp.tavg-u-hxy-cl.mon.GLB", + "atmos.bldep.tavg-u-hxy-u.mon.GLB", + "atmos.bldep.tmax-u-hxy-u.day.GLB", + "atmos.bldep.tmin-u-hxy-u.day.GLB", + "atmos.ccb.tavg-u-hxy-ccl.day.GLB", + "atmos.ccb.tavg-u-hxy-ccl.mon.GLB", + "atmos.cct.tavg-u-hxy-ccl.day.GLB", + "atmos.cct.tavg-u-hxy-ccl.mon.GLB", + "atmos.ci.tavg-u-hxy-u.mon.GLB", + "atmos.cl.tavg-al-hxy-u.mon.30S-90S", + "atmos.clc.tavg-al-hxy-u.mon.30S-90S", + "atmos.clc.tavg-al-hxy-u.mon.GLB", + "atmos.clcalipso.tavg-220hPa-hxy-air.day.GLB", + "atmos.clcalipso.tavg-220hPa-hxy-air.mon.30S-90S", + "atmos.clcalipso.tavg-220hPa-hxy-air.mon.GLB", + "atmos.clcalipso.tavg-560hPa-hxy-air.day.GLB", + "atmos.clcalipso.tavg-560hPa-hxy-air.mon.30S-90S", + "atmos.clcalipso.tavg-560hPa-hxy-air.mon.GLB", + "atmos.clcalipso.tavg-840hPa-hxy-air.day.GLB", + "atmos.clcalipso.tavg-840hPa-hxy-air.mon.30S-90S", + "atmos.clcalipso.tavg-840hPa-hxy-air.mon.GLB", + "atmos.clcalipso.tavg-h40-hxy-air.mon.30S-90S", + "atmos.clcalipso.tavg-h40-hxy-air.mon.GLB", + "atmos.cldnci.tavg-u-hxy-cl.mon.GLB", + "atmos.cldncl.tavg-u-hxy-cl.mon.GLB", + "atmos.cldnvi.tavg-u-hxy-u.mon.GLB", + "atmos.cli.tavg-al-hxy-u.mon.30S-90S", + "atmos.clic.tavg-al-hxy-u.mon.30S-90S", + "atmos.clic.tavg-al-hxy-u.mon.GLB", + "atmos.clis.tavg-al-hxy-u.mon.30S-90S", + "atmos.clis.tavg-al-hxy-u.mon.GLB", + "atmos.clisccp.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clisccp.tavg-p7c-hxy-air.mon.GLB", + "atmos.clivi.tavg-u-hxy-u.day.GLB", + "atmos.clivi.tavg-u-hxy-u.mon.30S-90S", + "atmos.clivic.tavg-u-hxy-u.day.GLB", + "atmos.clivimodis.tavg-u-hxy-u.mon.30S-90S", + "atmos.clmisr.tavg-h16-hxy-air.mon.GLB", + "atmos.clmodis.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clmodis.tavg-p7c-hxy-air.mon.GLB", + "atmos.clmodisice.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clmodisice.tavg-p7c-hxy-air.mon.GLB", + "atmos.clmodisiceReff.tavg-u-hxy-u.mon.GLB", + "atmos.clmodisliquid.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clmodisliquid.tavg-p7c-hxy-air.mon.GLB", + "atmos.clmodisliquidReff.tavg-u-hxy-u.mon.GLB", + "atmos.cls.tavg-al-hxy-u.mon.30S-90S", + "atmos.cls.tavg-al-hxy-u.mon.GLB", + "atmos.clt.tavg-u-hxy-u.mon.30S-90S", + "atmos.cltc.tavg-u-hxy-u.mon.GLB", + "atmos.cltcalipso.tavg-u-hxy-u.day.GLB", + "atmos.cltcalipso.tavg-u-hxy-u.mon.30S-90S", + "atmos.cltcalipso.tavg-u-hxy-u.mon.GLB", + "atmos.cltisccp.tavg-u-hxy-u.day.GLB", + "atmos.cltisccp.tavg-u-hxy-u.mon.30S-90S", + "atmos.cltisccp.tavg-u-hxy-u.mon.GLB", + "atmos.cltmodis.tavg-u-hxy-u.mon.30S-90S", + "atmos.clw.tavg-al-hxy-u.mon.30S-90S", + "atmos.clwc.tavg-al-hxy-u.mon.30S-90S", + "atmos.clwc.tavg-al-hxy-u.mon.GLB", + "atmos.clws.tavg-al-hxy-u.mon.30S-90S", + "atmos.clws.tavg-al-hxy-u.mon.GLB", + "atmos.clwvi.tavg-u-hxy-u.day.GLB", + "atmos.clwvi.tavg-u-hxy-u.mon.30S-90S", + "atmos.clwvic.tavg-u-hxy-u.day.GLB", + "atmos.clwvimodis.tavg-u-hxy-u.mon.30S-90S", + "atmos.co2.tavg-al-hxy-u.mon.GLB", + "atmos.co2.tavg-h2m-hxy-u.mon.GLB", + "atmos.co2.tavg-p19-hxy-air.mon.GLB", + "atmos.co2.tclm-p19-hxy-air.mon.GLB", + "atmos.co2.tclm-u-hm-u.mon.GLB", + "atmos.co23D.tavg-al-hxy-u.mon.GLB", + "atmos.co2mass.tavg-u-hm-u.mon.GLB", + "atmos.dmc.tavg-alh-hxy-u.mon.30S-90S", + "atmos.dmc.tavg-alh-hxy-u.mon.GLB", + "atmos.edt.tavg-al-hxy-u.mon.30S-90S", + "atmos.edt.tavg-al-hxy-u.mon.GLB", + "atmos.evspsbl.tavg-u-hxy-lnd.day.GLB", + "atmos.evu.tavg-al-hxy-u.mon.30S-90S", + "atmos.evu.tavg-al-hxy-u.mon.GLB", + "atmos.fco2antt.tavg-u-hxy-u.mon.GLB", + "atmos.fco2fos.tavg-u-hxy-u.mon.GLB", + "atmos.fco2nat.tavg-u-hxy-u.mon.GLB", + "atmos.hfls.tavg-u-hxy-u.day.GLB", + "atmos.hfls.tavg-u-hxy-u.mon.30S-90S", + "atmos.hfss.tavg-u-hxy-u.day.GLB", + "atmos.hfss.tavg-u-hxy-u.mon.30S-90S", + "atmos.hur.tavg-al-hxy-u.mon.30S-90S", + "atmos.hur.tavg-al-hxy-u.mon.GLB", + "atmos.hur.tavg-p19-hxy-air.mon.30S-90S", + "atmos.hurs.tavg-h2m-hxy-u.mon.30S-90S", + "atmos.hurs.tmax-h2m-hxy-u.day.GLB", + "atmos.hurs.tmin-h2m-hxy-u.day.GLB", + "atmos.hus.tavg-al-hxy-u.mon.30S-90S", + "atmos.hus.tavg-al-hxy-u.mon.GLB", + "atmos.hus.tavg-p19-hxy-u.mon.30S-90S", + "atmos.hus.tpt-al-hxy-u.6hr.GLB", + "atmos.hus.tpt-p7h-hxy-air.6hr.GLB", + "atmos.huss.tavg-h2m-hxy-u.mon.30S-90S", + "atmos.huss.tpt-h2m-hxy-u.1hr.GLB", + "atmos.mc.tavg-alh-hxy-u.mon.GLB", + "atmos.mcd.tavg-alh-hxy-u.mon.30S-90S", + "atmos.mcd.tavg-alh-hxy-u.mon.GLB", + "atmos.mcu.tavg-alh-hxy-u.mon.30S-90S", + "atmos.mcu.tavg-alh-hxy-u.mon.GLB", + "atmos.pctisccp.tavg-u-hxy-cl.day.GLB", + "atmos.pctisccp.tavg-u-hxy-cl.mon.30S-90S", + "atmos.pctisccp.tavg-u-hxy-cl.mon.GLB", + "atmos.pfull.tavg-al-hxy-u.mon.GLB", + "atmos.pfull.tclm-al-hxy-u.mon.30S-90S", + "atmos.pfull.tclm-al-hxy-u.mon.GLB", + "atmos.phalf.tavg-alh-hxy-u.mon.GLB", + "atmos.phalf.tclm-alh-hxy-u.mon.GLB", + "atmos.pr.tavg-u-hxy-u.mon.30S-90S", + "atmos.pr.tmax-u-hxy-u.day.GLB", + "atmos.pr.tpt-u-hxy-u.6hr.GLB", + "atmos.pr17O.tavg-u-hxy-u.mon.GLB", + "atmos.pr18O.tavg-u-hxy-u.mon.GLB", + "atmos.pr2h.tavg-u-hxy-u.mon.GLB", + "atmos.prc.tavg-u-hxy-u.day.GLB", + "atmos.prc.tavg-u-hxy-u.mon.30S-90S", + "atmos.prra.tavg-u-hxy-lnd.day.GLB", + "atmos.prra.tavg-u-hxy-u.mon.30S-90S", + "atmos.prra.tavg-u-hxy-u.mon.GLB", + "atmos.prsn.tavg-u-hxy-u.3hr.GLB", + "atmos.prsn.tavg-u-hxy-u.day.GLB", + "atmos.prsn.tavg-u-hxy-u.mon.30S-90S", + "atmos.prsn18O.tavg-u-hxy-u.mon.GLB", + "atmos.prsn2h.tavg-u-hxy-u.mon.GLB", + "atmos.prw.tavg-u-hxy-u.day.GLB", + "atmos.prw.tavg-u-hxy-u.mon.30S-90S", + "atmos.ps.tavg-u-hxy-u.1hr.GLB", + "atmos.ps.tavg-u-hxy-u.mon.30S-90S", + "atmos.ps.tpt-u-hxy-u.6hr.GLB", + "atmos.psl.tavg-u-hxy-u.mon.30S-90S", + "atmos.psl.tpt-u-hxy-u.1hr.GLB", + "atmos.psl.tpt-u-hxy-u.6hr.GLB", + "atmos.ptp.tavg-u-hxy-u.mon.GLB", + "atmos.reffcclwtop.tavg-u-hxy-ccl.mon.GLB", + "atmos.reffclic.tavg-al-hxy-ccl.mon.30S-90S", + "atmos.reffclic.tavg-al-hxy-ccl.mon.GLB", + "atmos.reffclis.tavg-al-hxy-scl.mon.30S-90S", + "atmos.reffclis.tavg-al-hxy-scl.mon.GLB", + "atmos.reffclwc.tavg-al-hxy-ccl.mon.30S-90S", + "atmos.reffclwc.tavg-al-hxy-ccl.mon.GLB", + "atmos.reffclws.tavg-al-hxy-scl.mon.30S-90S", + "atmos.reffclws.tavg-al-hxy-scl.mon.GLB", + "atmos.reffsclwtop.tavg-u-hxy-scl.mon.GLB", + "atmos.rld.tavg-alh-hxy-u.mon.GLB", + "atmos.rld4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rldcs.tavg-alh-hxy-u.mon.GLB", + "atmos.rldcs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rlds.tavg-u-hxy-u.1hr.GLB", + "atmos.rlds.tavg-u-hxy-u.day.GLB", + "atmos.rlds.tavg-u-hxy-u.mon.30S-90S", + "atmos.rldscs.tavg-u-hxy-u.day.GLB", + "atmos.rldscs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rlu.tavg-alh-hxy-u.mon.GLB", + "atmos.rlu4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rlucs.tavg-alh-hxy-u.mon.GLB", + "atmos.rlucs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rlus.tavg-u-hxy-u.day.GLB", + "atmos.rlus.tavg-u-hxy-u.mon.30S-90S", + "atmos.rluscs.tavg-u-hxy-u.day.GLB", + "atmos.rlut.tavg-u-hxy-u.day.GLB", + "atmos.rlut.tavg-u-hxy-u.mon.30S-90S", + "atmos.rlut4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rlutcs.tavg-u-hxy-u.day.GLB", + "atmos.rlutcs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rlutcs4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rsd.tavg-alh-hxy-u.mon.GLB", + "atmos.rsd4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsdcs.tavg-alh-hxy-u.mon.GLB", + "atmos.rsdcs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsds.tavg-u-hxy-u.1hr.GLB", + "atmos.rsds.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsdscs.tavg-u-hxy-u.day.GLB", + "atmos.rsdscs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsdt.tavg-u-hxy-u.day.GLB", + "atmos.rsdt.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsu.tavg-alh-hxy-u.mon.GLB", + "atmos.rsu4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsucs.tavg-alh-hxy-u.mon.GLB", + "atmos.rsucs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsus.tavg-u-hxy-u.day.GLB", + "atmos.rsus.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsuscs.tavg-u-hxy-u.day.GLB", + "atmos.rsuscs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsut.tavg-u-hxy-u.day.GLB", + "atmos.rsut.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsut4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rsutcs.tavg-u-hxy-u.day.GLB", + "atmos.rsutcs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsutcs4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rtmt.tavg-u-hxy-u.mon.GLB", + "atmos.rv850.tpt-850hPa-hxy-air.6hr.GLB", + "atmos.sci.tavg-u-hxy-u.mon.GLB", + "atmos.scldncl.tavg-u-hxy-scl.mon.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.mon.30S-90S", + "atmos.sfcWind.tmax-h10m-hxy-u.day.GLB", + "atmos.smc.tavg-alh-hxy-u.mon.GLB", + "atmos.ta.tavg-700hPa-hxy-air.day.GLB", + "atmos.ta.tavg-al-hxy-u.mon.30S-90S", + "atmos.ta.tavg-al-hxy-u.mon.GLB", + "atmos.ta.tavg-p19-hxy-air.mon.30S-90S", + "atmos.ta.tavg-p39-hy-air.mon.GLB", + "atmos.ta.tpt-al-hxy-u.6hr.GLB", + "atmos.ta.tpt-p7h-hxy-air.6hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.1hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.mon.30S-90S", + "atmos.tas.tmaxavg-h2m-hxy-u.mon.30S-90S", + "atmos.tas.tminavg-h2m-hxy-u.mon.30S-90S", + "atmos.tdps.tavg-h2m-hxy-u.mon.GLB", + "atmos.tnhus.tavg-al-hxy-u.mon.GLB", + "atmos.tnhusa.tavg-al-hxy-u.mon.GLB", + "atmos.tnhusc.tavg-al-hxy-u.mon.GLB", + "atmos.tnhusd.tavg-al-hxy-u.mon.GLB", + "atmos.tnhusmp.tavg-al-hxy-u.mon.GLB", + "atmos.tnhuspbl.tavg-al-hxy-u.mon.GLB", + "atmos.tnhusscp.tavg-al-hxy-u.mon.GLB", + "atmos.tnhusscpbl.tavg-al-hxy-u.mon.GLB", + "atmos.tnt.tavg-al-hxy-u.mon.GLB", + "atmos.tnta.tavg-al-hxy-u.mon.GLB", + "atmos.tntc.tavg-al-hxy-u.mon.GLB", + "atmos.tntd.tavg-al-hxy-u.mon.GLB", + "atmos.tntmp.tavg-al-hxy-u.mon.GLB", + "atmos.tntpbl.tavg-al-hxy-u.mon.GLB", + "atmos.tntr.tavg-al-hxy-u.mon.GLB", + "atmos.tntrl.tavg-al-hxy-u.mon.GLB", + "atmos.tntrlcs.tavg-al-hxy-u.mon.GLB", + "atmos.tntrs.tavg-al-hxy-u.mon.GLB", + "atmos.tntrscs.tavg-al-hxy-u.mon.GLB", + "atmos.tntscp.tavg-al-hxy-u.mon.GLB", + "atmos.tntscpbl.tavg-al-hxy-u.mon.GLB", + "atmos.ts.tavg-u-hxy-u.day.GLB", + "atmos.ts.tavg-u-hxy-u.mon.30S-90S", + "atmos.ts.tpt-u-hxy-u.6hr.GLB", + "atmos.ua.tavg-al-hxy-u.mon.GLB", + "atmos.ua.tavg-p19-hxy-air.mon.30S-90S", + "atmos.ua.tavg-p39-hy-air.mon.GLB", + "atmos.ua.tpt-al-hxy-u.6hr.GLB", + "atmos.ua.tpt-p7h-hxy-air.6hr.GLB", + "atmos.uas.tavg-h10m-hxy-u.mon.30S-90S", + "atmos.uas.tpt-h10m-hxy-u.1hr.GLB", + "atmos.va.tavg-al-hxy-u.mon.GLB", + "atmos.va.tavg-p19-hxy-air.mon.30S-90S", + "atmos.va.tavg-p39-hy-air.mon.GLB", + "atmos.va.tpt-al-hxy-u.6hr.GLB", + "atmos.va.tpt-p7h-hxy-air.6hr.GLB", + "atmos.vas.tavg-h10m-hxy-u.mon.30S-90S", + "atmos.vas.tpt-h10m-hxy-u.1hr.GLB", + "atmos.wap.tavg-500hPa-hxy-air.day.GLB", + "atmos.wap.tavg-p19-hxy-air.mon.30S-90S", + "atmos.zg.tavg-1000hPa-hxy-air.day.GLB", + "atmos.zg.tavg-500hPa-hxy-air.day.GLB", + "atmos.zg.tavg-al-hxy-u.mon.GLB", + "atmos.zg.tavg-p19-hxy-air.mon.30S-90S", + "atmos.zg.tavg-p39-hy-air.mon.GLB", + "atmos.zg.tpt-500hPa-hxy-air.6hr.GLB", + "atmos.zg.tpt-al-hxy-u.6hr.GLB", + "atmos.zg.tpt-p7h-hxy-air.6hr.GLB", + "atmos.ztp.tavg-u-hxy-u.mon.GLB", + "atmosChem.c2h4.tavg-al-hxy-u.mon.GLB", + "atmosChem.c2h5oh.tavg-al-hxy-u.mon.GLB", + "atmosChem.c4h10.tavg-al-hxy-u.mon.GLB", + "atmosChem.cfc11.tavg-u-hm-u.mon.GLB", + "atmosChem.cfc113.tavg-u-hm-u.mon.GLB", + "atmosChem.cfc12.tavg-u-hm-u.mon.GLB", + "atmosChem.ch3oh.tavg-al-hxy-u.mon.GLB", + "atmosChem.ch4.tavg-al-hxy-u.mon.GLB", + "atmosChem.ch4.tavg-p19-hxy-air.mon.GLB", + "atmosChem.ch4.tavg-p39-hy-air.mon.GLB", + "atmosChem.ch4.tavg-u-hm-u.mon.GLB", + "atmosChem.ch4.tclm-p19-hxy-air.mon.GLB", + "atmosChem.ch4.tclm-u-hm-u.mon.GLB", + "atmosChem.ch4losssoil.tavg-u-hxy-u.mon.GLB", + "atmosChem.ch4ref.ti-al-hxy-u.fx.GLB", + "atmosChem.chegph2oo1d.tavg-al-hxy-u.mon.GLB", + "atmosChem.chepnh4.tavg-al-hxy-u.mon.GLB", + "atmosChem.chepno3.tavg-al-hxy-u.mon.GLB", + "atmosChem.dms.tavg-al-hxy-u.mon.30S-90S", + "atmosChem.dms.tavg-al-hxy-u.mon.GLB", + "atmosChem.do3chm.tavg-al-hxy-u.mon.GLB", + "atmosChem.dryh2.tavg-u-hxy-u.mon.GLB", + "atmosChem.dryhno3.tavg-u-hxy-u.mon.GLB", + "atmosChem.drynh3.tavg-u-hxy-u.mon.GLB", + "atmosChem.drynh4.tavg-u-hxy-u.mon.GLB", + "atmosChem.drynoy.tavg-u-hxy-u.mon.GLB", + "atmosChem.e90inst.tpt-al-hxy-u.mon.GLB", + "atmosChem.emiach4.tavg-u-hxy-u.mon.GLB", + "atmosChem.emiavnox.tavg-al-hxy-u.mon.GLB", + "atmosChem.emic2h4.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic2h5oh.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic2h6.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic3h6.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic3h8.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic4h10.tavg-u-hxy-u.mon.GLB", + "atmosChem.emich3oh.tavg-u-hxy-u.mon.GLB", + "atmosChem.emich4.tavg-u-hxy-u.mon.GLB", + "atmosChem.emih2.tavg-u-hxy-u.mon.GLB", + "atmosChem.emilkch4.tavg-u-hxy-u.mon.GLB", + "atmosChem.h2.tavg-al-hxy-u.mon.GLB", + "atmosChem.h2loss.tavg-al-hxy-u.mon.GLB", + "atmosChem.h2prod.tavg-al-hxy-u.mon.GLB", + "atmosChem.hcfc22.tavg-u-hm-u.mon.GLB", + "atmosChem.meanage.tavg-al-hxy-u.mon.GLB", + "atmosChem.meanage.tavg-p39-hy-air.mon.GLB", + "atmosChem.n2o.tavg-al-hxy-u.mon.GLB", + "atmosChem.n2o.tavg-p19-hxy-air.mon.GLB", + "atmosChem.n2o.tavg-p39-hy-air.mon.GLB", + "atmosChem.n2o.tavg-u-hm-u.mon.GLB", + "atmosChem.n2o.tclm-p19-hxy-air.mon.GLB", + "atmosChem.n2o.tclm-u-hm-u.mon.GLB", + "atmosChem.o3.tavg-al-hxy-u.mon.GLB", + "atmosChem.o3.tavg-p19-hxy-air.mon.GLB", + "atmosChem.o3.tavg-p39-hy-air.mon.GLB", + "atmosChem.o3.tclm-p19-hxy-air.mon.GLB", + "atmosChem.o3.tpt-al-hxy-u.mon.GLB", + "atmosChem.o3ref.tclm-al-hxy-u.fx.GLB", + "atmosChem.o3ref.ti-al-hxy-u.fx.GLB", + "atmosChem.o3ste.tavg-al-hxy-u.mon.GLB", + "atmosChem.rlutch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rlutcsch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rlutcso3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rluto3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsutch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsutcsch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsutcso3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsuto3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.stratch4loss.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropch4loss.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropch4lossoh.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropdo3chm.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropo3ste.tavg-al-hxy-u.mon.GLB", + "atmosChem.wethno3.tavg-al-hxy-u.mon.GLB", + "atmosChem.wetnh3.tavg-u-hxy-u.mon.GLB", + "atmosChem.wetnh4.tavg-u-hxy-u.mon.GLB", + "atmosChem.wetno3.tavg-al-hxy-u.mon.GLB", + "atmosChem.wetnoy.tavg-u-hxy-u.mon.GLB", + "land.albc.tavg-u-hxy-veg.mon.GLB", + "land.areacellr.ti-u-hxy-u.fx.GLB", + "land.baresoilFrac.tavg-u-hxy-u.mon.GLB", + "land.burntFractionAll.tavg-u-hxy-u.mon.GLB", + "land.cGeologicStorage.tavg-u-hxy-u.mon.GLB", + "land.cLand.tavg-u-hxy-lnd.mon.GLB", + "land.cLitter.tavg-u-hxy-lnd.mon.GLB", + "land.cnc.tavg-u-hxy-u.mon.GLB", + "land.cProduct.tavg-u-hxy-lnd.mon.GLB", + "land.cropFrac.tavg-u-hxy-u.mon.GLB", + "land.cSoil.tavg-d100cm-hxy-lnd.mon.GLB", + "land.cSoil.tavg-sl-hxy-lnd.mon.GLB", + "land.cSoil.tavg-u-hxy-lnd.mon.GLB", + "land.cVeg.tavg-u-hxy-lnd.mon.GLB", + "land.dcw.tavg-u-hxy-lnd.day.GLB", + "land.depthl.ti-u-hxy-u.fx.GLB", + "land.depthsl.ti-u-hxy-u.fx.GLB", + "land.dslw.tavg-u-hxy-lnd.day.GLB", + "land.evspsblpot.tavg-u-hxy-lnd.day.GLB", + "land.evspsblpot.tavg-u-hxy-lnd.mon.GLB", + "land.fAnthDisturb.tavg-u-hxy-lnd.mon.GLB", + "land.fBNF.tavg-u-hxy-lnd.mon.GLB", + "land.fCLandToOcean.tavg-u-hxy-lnd.mon.GLB", + "land.fDeforestToAtmos.tavg-u-hxy-lnd.mon.GLB", + "land.fDeforestToProduct.tavg-u-hxy-lnd.mon.GLB", + "land.fFire.tavg-u-hxy-lnd.mon.GLB", + "land.fFireAll.tavg-u-hxy-lnd.mon.GLB", + "land.fFireNat.tavg-u-hxy-lnd.mon.GLB", + "land.fHarvestToAtmos.tavg-u-hxy-lnd.mon.GLB", + "land.fHarvestToGeologicStorage.tavg-u-hxy-lnd.mon.GLB", + "land.fHarvestToProduct.tavg-u-hxy-lnd.mon.GLB", + "land.fLitterSoil.tavg-u-hxy-lnd.mon.GLB", + "land.fN2O.tavg-u-hxy-lnd.mon.GLB", + "land.fNAnthDisturb.tavg-u-hxy-lnd.mon.GLB", + "land.fNdep.tavg-u-hxy-lnd.mon.GLB", + "land.fNfert.tavg-u-hxy-lnd.mon.GLB", + "land.fNLandToOcean.tavg-u-hxy-lnd.mon.GLB", + "land.fNLitterSoil.tavg-u-hxy-lnd.mon.GLB", + "land.fNloss.tavg-u-hxy-lnd.mon.GLB", + "land.fNnetmin.tavg-u-hxy-lnd.mon.GLB", + "land.fNOx.tavg-u-hxy-lnd.mon.GLB", + "land.fNProduct.tavg-u-hxy-lnd.mon.GLB", + "land.fNup.tavg-u-hxy-lnd.mon.GLB", + "land.fNVegLitter.tavg-u-hxy-lnd.mon.GLB", + "land.fNVegSoil.tavg-u-hxy-lnd.mon.GLB", + "land.fProductDecomp.tavg-u-hxy-lnd.mon.GLB", + "land.fVegLitter.tavg-u-hxy-lnd.mon.GLB", + "land.fVegSoil.tavg-u-hxy-lnd.mon.GLB", + "land.gpp.tavg-u-hxy-lnd.mon.GLB", + "land.grassFrac.tavg-u-hxy-u.mon.GLB", + "land.landCoverFrac.tavg-u-hxy-u.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.day.GLB", + "land.mrrob.tavg-u-hxy-lnd.day.GLB", + "land.mrros.tavg-u-hxy-lnd.day.GLB", + "land.mrsfl.tavg-sl-hxy-lnd.day.GLB", + "land.mrsfl.tavg-sl-hxy-lnd.mon.GLB", + "land.mrsll.tavg-sl-hxy-lnd.day.GLB", + "land.mrsll.tavg-sl-hxy-lnd.mon.GLB", + "land.mrso.tavg-u-hxy-lnd.day.GLB", + "land.mrsol.tavg-d10cm-hxy-lnd.day.GLB", + "land.mrsol.tavg-sl-hxy-lnd.day.GLB", + "land.mrsol.tavg-sl-hxy-lnd.mon.GLB", + "land.mrsow.tavg-u-hxy-lnd.day.GLB", + "land.mrtws.tavg-u-hxy-lnd.day.GLB", + "land.mrtws.tavg-u-hxy-lnd.mon.GLB", + "land.nbp.tavg-u-hxy-lnd.mon.GLB", + "land.nep.tavg-u-hxy-lnd.mon.GLB", + "land.nLand.tavg-u-hxy-lnd.mon.GLB", + "land.nLitter.tavg-u-hxy-lnd.mon.GLB", + "land.nMineral.tavg-u-hxy-lnd.mon.GLB", + "land.npp.tavg-u-hxy-lnd.mon.GLB", + "land.nProduct.tavg-u-hxy-lnd.mon.GLB", + "land.nSoil.tavg-u-hxy-lnd.mon.GLB", + "land.nVeg.tavg-u-hxy-lnd.mon.GLB", + "land.pastureFrac.tavg-u-hxy-u.mon.GLB", + "land.prveg.tavg-u-hxy-lnd.mon.GLB", + "land.ra.tavg-u-hxy-lnd.mon.GLB", + "land.residualFrac.tavg-u-hxy-u.mon.GLB", + "land.rh.tavg-u-hxy-lnd.mon.GLB", + "land.rivi.tavg-u-hxy-lnd.day.GLB", + "land.rivo.tavg-u-hxy-lnd.day.GLB", + "land.rsds.tavg-u-hxy-lnd.mon.GLB", + "land.rsds.tavg-u-hxy-sn.mon.GLB", + "land.rsus.tavg-u-hxy-lnd.mon.GLB", + "land.rsus.tavg-u-hxy-sn.mon.GLB", + "land.sftgif.tavg-u-hxy-u.mon.GLB", + "land.sftlaf.ti-u-hxy-u.fx.GLB", + "land.shrubFrac.tavg-u-hxy-u.mon.GLB", + "land.tas.tavg-u-hxy-u.1hr.GLB", + "land.tran.tavg-u-hxy-lnd.mon.GLB", + "land.treeFrac.tavg-u-hxy-u.mon.GLB", + "land.tsl.tavg-sl-hxy-lnd.day.GLB", + "land.tsl.tavg-sl-hxy-lnd.mon.GLB", + "land.tslsi.tavg-u-hxy-u.day.GLB", + "land.vegFrac.tavg-u-hxy-u.mon.GLB", + "land.vegHeight.tavg-u-hxy-veg.mon.GLB", + "land.wetlandCH4.tavg-u-hxy-lnd.mon.GLB", + "land.wtd.tavg-u-hxy-lnd.day.GLB", + "landIce.acabf.tavg-u-hxy-is.mon.GLB", + "landIce.hfls.tavg-u-hxy-is.mon.GLB", + "landIce.hfss.tavg-u-hxy-is.mon.GLB", + "landIce.icem.tavg-u-hxy-is.mon.GLB", + "landIce.litemptop.tavg-u-hxy-is.mon.GLB", + "landIce.lithk.ti-u-hxy-u.fx.GLB", + "landIce.mrro.tavg-u-hxy-is.mon.GLB", + "landIce.orog.tavg-u-hxy-is.mon.GLB", + "landIce.prra.tavg-u-hxy-is.mon.GLB", + "landIce.prsn.tavg-u-hxy-is.mon.GLB", + "landIce.rlds.tavg-u-hxy-is.mon.GLB", + "landIce.rlus.tavg-u-hxy-is.mon.GLB", + "landIce.rsds.tavg-u-hxy-is.mon.GLB", + "landIce.rsus.tavg-u-hxy-is.mon.GLB", + "landIce.sbl.tavg-u-hxy-is.mon.GLB", + "landIce.sbl.tavg-u-hxy-u.mon.GLB", + "landIce.sftflf.tavg-u-hxy-u.mon.GLB", + "landIce.sftflf.ti-u-hxy-u.fx.GLB", + "landIce.sftgrf.tavg-u-hxy-u.mon.GLB", + "landIce.sftgrf.ti-u-hxy-u.fx.GLB", + "landIce.snc.tavg-u-hxy-is.mon.GLB", + "landIce.snc.tavg-u-hxy-lnd.day.GLB", + "landIce.snd.tavg-u-hxy-lnd.mon.GLB", + "landIce.snicem.tavg-u-hxy-is.mon.GLB", + "landIce.snm.tavg-u-hxy-is.mon.GLB", + "landIce.snm.tavg-u-hxy-lnd.mon.GLB", + "landIce.snrefr.tavg-u-hxy-is.mon.GLB", + "landIce.snw.tavg-u-hxy-lnd.day.GLB", + "landIce.tas.tavg-u-hxy-is.mon.GLB", + "landIce.ts.tavg-u-hxy-is.mon.GLB", + "landIce.tsn.tavg-u-hxy-is.mon.GLB", + "landIce.tsn.tavg-u-hxy-lnd.mon.GLB", + "ocean.absscint.tavg-op4-hxy-sea.mon.GLB", + "ocean.agessc.tavg-ol-hxy-sea.mon.GLB", + "ocean.bigthetao.tavg-ol-hm-sea.mon.GLB", + "ocean.bigthetao.tavg-ol-hxy-sea.dec.GLB", + "ocean.bigthetao.tavg-op20bar-hxy-sea.day.GLB", + "ocean.chcint.tavg-op4-hxy-sea.mon.GLB", + "ocean.ficeberg.tavg-ol-hxy-sea.mon.GLB", + "ocean.ficeberg.tavg-u-hxy-sea.mon.GLB", + "ocean.flandice.tavg-u-hxy-sea.mon.GLB", + "ocean.friver.tavg-u-hxy-sea.mon.GLB", + "ocean.hfbasin.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpmadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpmdiff.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpsmadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfds.tavg-u-hxy-sea.mon.30S-90S", + "ocean.hfgeou.tavg-u-hxy-sea.mon.GLB", + "ocean.hfx.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfx.tavg-u-hxy-sea.day.GLB", + "ocean.hfx.tavg-u-hxy-sea.mon.GLB", + "ocean.hfy.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfy.tavg-u-hxy-sea.day.GLB", + "ocean.hfy.tavg-u-hxy-sea.mon.GLB", + "ocean.htovgyre.tavg-u-hyb-sea.mon.GLB", + "ocean.htovovrt.tavg-u-hyb-sea.mon.GLB", + "ocean.masscello.tavg-ol-hxy-sea.dec.GLB", + "ocean.masso.tavg-u-hm-sea.dec.GLB", + "ocean.masso.tavg-u-hm-sea.mon.GLB", + "ocean.mlotst.tavg-u-hxy-sea.day.GLB", + "ocean.mlotst.tavg-u-hxy-sea.mon.30S-90S", + "ocean.mlotst.tmax-u-hxy-sea.mon.GLB", + "ocean.mlotst.tmin-u-hxy-sea.mon.GLB", + "ocean.mpw.tavg-u-hxy-sea.mon.GLB", + "ocean.mpw.tpt-u-hxy-sea.3hr.GLB", + "ocean.mpwswell.tavg-u-hxy-sea.mon.GLB", + "ocean.mpwswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.mpwwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.mpwwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.msftbarot.tavg-u-hxy-sea.mon.GLB", + "ocean.msftm.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftm.tavg-rho-hyb-sea.mon.GLB", + "ocean.msfty.tavg-ol-ht-sea.mon.GLB", + "ocean.msfty.tavg-rho-ht-sea.mon.GLB", + "ocean.obvfsq.tavg-ol-hxy-sea.mon.GLB", + "ocean.opottemptend.tavg-ol-hxy-sea.yr.GLB", + "ocean.pbo.tavg-u-hxy-sea.mon.GLB", + "ocean.pfscint.tavg-op4-hxy-sea.mon.GLB", + "ocean.phcint.tavg-op4-hxy-sea.mon.GLB", + "ocean.pso.tavg-u-hxy-sea.mon.GLB", + "ocean.rsds.tavg-u-hxy-ifs.mon.GLB", + "ocean.rsus.tavg-u-hxy-ifs.mon.GLB", + "ocean.scint.tavg-op4-hxy-sea.mon.GLB", + "ocean.sduo.tavg-u-hxy-sea.mon.GLB", + "ocean.sduo.tpt-u-hxy-sea.3hr.GLB", + "ocean.sdvo.tavg-u-hxy-sea.mon.GLB", + "ocean.sdvo.tpt-u-hxy-sea.3hr.GLB", + "ocean.sfx.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfx.tavg-u-hxy-sea.mon.GLB", + "ocean.sfy.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfy.tavg-u-hxy-sea.mon.GLB", + "ocean.sltbasin.tavg-u-hyb-sea.mon.GLB", + "ocean.sltovgyre.tavg-u-hyb-sea.mon.GLB", + "ocean.sltovovrt.tavg-u-hyb-sea.mon.GLB", + "ocean.so.tavg-ol-hm-sea.mon.GLB", + "ocean.so.tavg-ol-hxy-sea.dec.GLB", + "ocean.so.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.sob.tavg-u-hxy-sea.mon.GLB", + "ocean.sos.tavg-u-hm-sea.mon.30S-90S", + "ocean.sos.tavg-u-hm-sea.mon.GLB", + "ocean.sw17O.tavg-ol-hxy-sea.mon.GLB", + "ocean.sw18O.tavg-ol-hxy-sea.mon.GLB", + "ocean.sw2H.tavg-ol-hxy-sea.mon.GLB", + "ocean.swh.tavg-u-hxy-sea.mon.GLB", + "ocean.swh.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhmax.tmax-u-hxy-sea.mon.GLB", + "ocean.swhmax.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhswell.tavg-u-hxy-sea.mon.GLB", + "ocean.swhswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.swhwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.tauuo.tavg-u-hxy-sea.3hr.GLB", + "ocean.tauuo.tavg-u-hxy-sea.dec.GLB", + "ocean.tauvo.tavg-u-hxy-sea.3hr.GLB", + "ocean.tauvo.tavg-u-hxy-sea.dec.GLB", + "ocean.thetao.tavg-ol-hm-sea.mon.GLB", + "ocean.thetao.tavg-ol-hxy-sea.dec.GLB", + "ocean.thetao.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.thetao.tavg-op20bar-hxy-sea.day.GLB", + "ocean.thkcello.tavg-ol-hxy-sea.dec.GLB", + "ocean.tob.tavg-u-hxy-sea.mon.GLB", + "ocean.tos.tavg-u-hm-sea.mon.GLB", + "ocean.tos.tavg-u-hxy-sea.mon.30S-90S", + "ocean.tos.tpt-u-hxy-sea.3hr.GLB", + "ocean.tossq.tavg-u-hxy-sea.day.GLB", + "ocean.umo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.uo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.uos.tavg-u-hxy-sea.day.GLB", + "ocean.vmo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.vo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.volcello.tavg-ol-hxy-sea.dec.GLB", + "ocean.volcello.tavg-ol-hxy-sea.mon.GLB", + "ocean.volcello.tavg-ol-hxy-sea.yr.GLB", + "ocean.volcello.ti-ol-hxy-sea.fx.GLB", + "ocean.volo.tavg-u-hm-sea.dec.GLB", + "ocean.volo.tavg-u-hm-sea.mon.GLB", + "ocean.vos.tavg-u-hxy-sea.day.GLB", + "ocean.wdir.tavg-u-hxy-sea.mon.GLB", + "ocean.wdir.tpt-u-hxy-sea.3hr.GLB", + "ocean.wdirswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wdirswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wdirwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wdirwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.wfcorr.tavg-u-hxy-sea.mon.GLB", + "ocean.wfo.tavg-u-hxy-sea.mon.GLB", + "ocean.wmo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.wo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.wpdir.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdir.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpdirswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdirswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpdirwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdirwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpp.tavg-u-hxy-sea.mon.GLB", + "ocean.wpp.tpt-u-hxy-sea.3hr.GLB", + "ocean.wppswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wppswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wppwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wppwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.zos.tavg-u-hxy-sea.mon.30S-90S", + "ocean.zossq.tavg-u-hxy-sea.mon.GLB", + "ocean.zostoga.tavg-u-hm-sea.day.GLB", + "ocnBgchem.bacc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.calc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chl.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chl.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chlcalc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chldiat.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chldiat.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chldiaz.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chldiaz.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chlmisc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chlmisc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chlpico.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chlpico.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.detoc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dfe.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.dfe.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissic.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.dissic.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissoc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dmso.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.expc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.expcalc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.fgco2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fsfe.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fsn.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.graz.tavg-ol-hxy-sea.mon.30S-90S", + "ocnBgchem.icfriver.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intdic.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intdoc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intparag.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbfe.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbn.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbp.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbsi.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpcalcite.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpn2.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpoc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpp.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpp.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppcalc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppdiat.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppdiaz.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppmisc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppnitrate.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpppico.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.nh4.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.nh4.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.no3.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.no3.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.o2.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.ocfriver.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.ph.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.ph.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phyc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phyc.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.phyc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phycalc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phycalc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phydiat.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phydiat.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phydiaz.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phydiaz.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phymisc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phymisc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phypico.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phypico.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.po4.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.pp.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.si.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.spco2.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.spco2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.talk.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zmeso.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zmeso.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zmicro.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zmicro.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zmisc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zmisc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zooc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zooc.tavg-ol-hxy-sea.mon.GLB", + "seaIce.evspsbl.tavg-u-hxy-si.mon.GLB", + "seaIce.prra.tavg-u-hxy-si.mon.GLB", + "seaIce.prsn.tavg-u-hxy-si.mon.GLB", + "seaIce.rlds.tavg-u-hxy-si.mon.GLB", + "seaIce.rlus.tavg-u-hxy-si.mon.GLB", + "seaIce.rsds.tavg-u-hxy-si.day.GLB", + "seaIce.rsds.tavg-u-hxy-si.mon.GLB", + "seaIce.rsus.tavg-u-hxy-si.day.GLB", + "seaIce.rsus.tavg-u-hxy-si.mon.GLB", + "seaIce.sbl.tavg-u-hxy-si.mon.GLB", + "seaIce.siage.tavg-u-hxy-si.day.GLB", + "seaIce.siage.tavg-u-hxy-si.mon.30S-90S", + "seaIce.siarea.tavg-u-hm-u.mon.NH", + "seaIce.siarea.tavg-u-hm-u.mon.SH", + "seaIce.siareaacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.siconc.tavg-u-hxy-u.mon.30S-90S", + "seaIce.siconca.tavg-u-hxy-u.day.GLB", + "seaIce.siconca.tavg-u-hxy-u.mon.GLB", + "seaIce.sidconcdyn.tavg-u-hxy-sea.mon.GLB", + "seaIce.sidconcth.tavg-u-hxy-sea.mon.GLB", + "seaIce.sidmassdyn.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthsi.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthwat.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmeltbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmeltlat.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmelttop.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassth.tavg-u-hxy-si.mon.GLB", + "seaIce.sieqthick.tavg-u-hxy-si.mon.GLB", + "seaIce.siextent.tavg-u-hm-u.mon.NH", + "seaIce.siextent.tavg-u-hm-u.mon.SH", + "seaIce.siflcondbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflcondtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sifllattop.tavg-u-hxy-si.mon.GLB", + "seaIce.siflsensbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflsenstop.tavg-u-hxy-si.mon.GLB", + "seaIce.siflswdbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sihc.tavg-u-hxy-sea.mon.GLB", + "seaIce.siitdconc.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdsnconc.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdsnthick.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdthick.tavg-u-hxy-si.mon.GLB", + "seaIce.simassacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.simpconc.tavg-u-hxy-si.mon.GLB", + "seaIce.sirdgconc.tavg-u-hxy-si.mon.GLB", + "seaIce.sisaltmass.tavg-u-hxy-si.mon.GLB", + "seaIce.sisndmassdyn.tavg-u-hxy-si.mon.GLB", + "seaIce.sisndmasssi.tavg-u-hxy-si.mon.GLB", + "seaIce.sisndmasswind.tavg-u-hxy-si.mon.GLB", + "seaIce.sisnhc.tavg-u-hxy-si.mon.GLB", + "seaIce.sisnmass.tavg-u-hm-u.mon.NH", + "seaIce.sisnmass.tavg-u-hm-u.mon.SH", + "seaIce.sisnmassacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.sispeed.tavg-u-hxy-si.day.GLB", + "seaIce.sispeed.tavg-u-hxy-si.mon.GLB", + "seaIce.sistressave.tpt-u-hxy-si.mon.GLB", + "seaIce.sistressmax.tpt-u-hxy-si.mon.GLB", + "seaIce.sistrxdtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sistrxubot.tavg-u-hxy-si.mon.GLB", + "seaIce.sistrydtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sistryubot.tavg-u-hxy-si.mon.GLB", + "seaIce.sitempsnic.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-si.day.GLB", + "seaIce.sithick.tavg-u-hxy-si.mon.30S-90S", + "seaIce.sitimefrac.tavg-u-hxy-sea.day.GLB", + "seaIce.sitimefrac.tavg-u-hxy-sea.mon.30S-90S", + "seaIce.siu.tavg-u-hxy-si.day.GLB", + "seaIce.siu.tavg-u-hxy-si.mon.30S-90S", + "seaIce.siv.tavg-u-hxy-si.day.GLB", + "seaIce.siv.tavg-u-hxy-si.mon.30S-90S", + "seaIce.sivol.tavg-u-hm-u.mon.NH", + "seaIce.sivol.tavg-u-hm-u.mon.SH", + "seaIce.snc.tavg-u-hxy-si.mon.GLB", + "seaIce.snd.tavg-u-hxy-sn.day.GLB", + "seaIce.snd.tavg-u-hxy-sn.mon.30S-90S", + "seaIce.snm.tavg-u-hxy-si.mon.GLB", + "seaIce.snw.tavg-u-hxy-si.mon.GLB", + "seaIce.ts.tavg-u-hxy-si.day.GLB", + "seaIce.ts.tavg-u-hxy-si.mon.30S-90S" + ], + "Medium": [ + "atmos.rls.tavg-u-hxy-u.day.GLB", + "atmos.rls.tavg-u-hxy-u.mon.GLB", + "atmos.rss.tavg-u-hxy-u.day.GLB", + "atmos.rss.tavg-u-hxy-u.mon.GLB", + "land.cLeaf.tavg-u-hxy-lnd.mon.GLB", + "land.cLitterCwd.tavg-u-hxy-lnd.mon.GLB", + "land.cLitterSubSurf.tavg-u-hxy-lnd.mon.GLB", + "land.cLitterSurf.tavg-u-hxy-lnd.mon.GLB", + "land.cOther.tavg-u-hxy-lnd.mon.GLB", + "land.cRoot.tavg-u-hxy-lnd.mon.GLB", + "land.cropFracC3.tavg-u-hxy-u.mon.GLB", + "land.cropFracC4.tavg-u-hxy-u.mon.GLB", + "land.cSoilPools.tavg-u-hxy-lnd.mon.GLB", + "land.cStem.tavg-u-hxy-lnd.mon.GLB", + "land.cVeg.tavg-u-hxy-ng.mon.GLB", + "land.cVeg.tavg-u-hxy-shb.mon.GLB", + "land.cVeg.tavg-u-hxy-tree.mon.GLB", + "land.fLitterFire.tavg-u-hxy-lnd.mon.GLB", + "land.fNgas.tavg-u-hxy-lnd.mon.GLB", + "land.fNgasFire.tavg-u-hxy-lnd.mon.GLB", + "land.fNgasNonFire.tavg-u-hxy-lnd.mon.GLB", + "land.fNleach.tavg-u-hxy-lnd.mon.GLB", + "land.fVegFire.tavg-u-hxy-lnd.mon.GLB", + "land.fVegLitterMortality.tavg-u-hxy-lnd.mon.GLB", + "land.fVegLitterSenescence.tavg-u-hxy-lnd.mon.GLB", + "land.fVegSoilMortality.tavg-u-hxy-lnd.mon.GLB", + "land.fVegSoilSenescence.tavg-u-hxy-lnd.mon.GLB", + "land.gpp.tavg-u-hxy-ng.mon.GLB", + "land.gpp.tavg-u-hxy-shb.mon.GLB", + "land.gpp.tavg-u-hxy-tree.mon.GLB", + "land.grassFracC3.tavg-u-hxy-u.mon.GLB", + "land.grassFracC4.tavg-u-hxy-u.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.3hr.GLB", + "land.mrros.tavg-u-hxy-lnd.3hr.GLB", + "land.mrsol.tpt-d10cm-hxy-lnd.3hr.GLB", + "land.nLeaf.tavg-u-hxy-lnd.mon.GLB", + "land.nLitterCwd.tavg-u-hxy-lnd.mon.GLB", + "land.nLitterSubSurf.tavg-u-hxy-lnd.mon.GLB", + "land.nLitterSurf.tavg-u-hxy-lnd.mon.GLB", + "land.nMineralNH4.tavg-u-hxy-lnd.mon.GLB", + "land.nMineralNO3.tavg-u-hxy-lnd.mon.GLB", + "land.nOther.tavg-u-hxy-lnd.mon.GLB", + "land.npp.tavg-u-hxy-ng.mon.GLB", + "land.npp.tavg-u-hxy-shb.mon.GLB", + "land.npp.tavg-u-hxy-tree.mon.GLB", + "land.nppLeaf.tavg-u-hxy-lnd.mon.GLB", + "land.nppOther.tavg-u-hxy-lnd.mon.GLB", + "land.nppRoot.tavg-u-hxy-lnd.mon.GLB", + "land.nppStem.tavg-u-hxy-lnd.mon.GLB", + "land.nRoot.tavg-u-hxy-lnd.mon.GLB", + "land.nStem.tavg-u-hxy-lnd.mon.GLB", + "land.pastureFracC3.tavg-u-hxy-u.mon.GLB", + "land.pastureFracC4.tavg-u-hxy-u.mon.GLB", + "land.ra.tavg-u-hxy-ng.mon.GLB", + "land.ra.tavg-u-hxy-shb.mon.GLB", + "land.ra.tavg-u-hxy-tree.mon.GLB", + "land.raLeaf.tavg-u-hxy-lnd.mon.GLB", + "land.raOther.tavg-u-hxy-lnd.mon.GLB", + "land.raRoot.tavg-u-hxy-lnd.mon.GLB", + "land.raStem.tavg-u-hxy-lnd.mon.GLB", + "land.rh.tavg-u-hxy-ng.mon.GLB", + "land.rh.tavg-u-hxy-shb.mon.GLB", + "land.rh.tavg-u-hxy-tree.mon.GLB", + "land.rhLitter.tavg-u-hxy-lnd.mon.GLB", + "land.rhSoil.tavg-u-hxy-lnd.mon.GLB", + "land.treeFracBdlDcd.tavg-u-hxy-u.mon.GLB", + "land.treeFracBdlEvg.tavg-u-hxy-u.mon.GLB", + "land.treeFracNdlDcd.tavg-u-hxy-u.mon.GLB", + "land.treeFracNdlEvg.tavg-u-hxy-u.mon.GLB", + "land.vegHeight.tavg-u-hxy-ng.mon.GLB", + "land.vegHeight.tavg-u-hxy-shb.mon.GLB", + "land.vegHeight.tavg-u-hxy-tree.mon.GLB", + "land.wetlandCH4cons.tavg-u-hxy-lnd.mon.GLB", + "land.wetlandCH4prod.tavg-u-hxy-lnd.mon.GLB", + "land.wetlandFrac.tavg-u-hxy-u.mon.GLB", + "ocean.evspsbl.tavg-u-hxy-ifs.mon.GLB", + "ocean.hfacrossline.tavg-u-ht-sea.mon.GLB", + "ocean.hfevapds.tavg-u-hxy-ifs.mon.GLB", + "ocean.hfibthermds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfibthermds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfrainds.tavg-u-hxy-ifs.mon.GLB", + "ocean.hfrunoffds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfrunoffds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfsnthermds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfsnthermds.tavg-u-hxy-sea.mon.GLB", + "ocean.mfo.tavg-u-ht-sea.mon.GLB", + "ocean.sf6.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfacrossline.tavg-u-ht-sea.mon.GLB", + "ocean.sfdsi.tavg-u-hxy-sea.mon.GLB", + "ocean.sfriver.tavg-u-hxy-sea.mon.GLB", + "ocean.siflfwbot.tavg-u-hxy-sea.mon.GLB", + "ocean.so.tavg-ol-hxy-sea.day.GLB", + "ocean.tnkebto.tavg-u-hxy-sea.yr.GLB", + "ocean.vsf.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfcorr.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfevap.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfpr.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfriver.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfsit.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.arag.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.arag.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.calc.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.calc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chl.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.chlcalc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dmso.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.epn.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.epp.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.expc.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.expcalc.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.fgdms.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fric.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.froc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.graz.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.intppcalc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppdiat.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppdiaz.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppmisc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppnitrate.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intpppico.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.o2.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.ph.tavg-op20bar-hxy-sea.day.GLB", + "seaIce.sfdsi.tavg-u-hxy-si.mon.GLB", + "seaIce.siage.tavg-u-hxy-si.mon.GLB", + "seaIce.siarea.tavg-u-hm-u.day.NH", + "seaIce.siarea.tavg-u-hm-u.day.SH", + "seaIce.sicompstren.tavg-u-hxy-si.mon.GLB", + "seaIce.sidivvel.tpt-u-hxy-si.mon.GLB", + "seaIce.sidmasstranx.tavg-u-hxy-u.mon.GLB", + "seaIce.sidmasstrany.tavg-u-hxy-u.mon.GLB", + "seaIce.sidragbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidragtop.tavg-u-hxy-si.mon.GLB", + "seaIce.siextent.tavg-u-hm-u.day.NH", + "seaIce.siextent.tavg-u-hm-u.day.SH", + "seaIce.sifb.tavg-u-hxy-si.mon.GLB", + "seaIce.siflfwbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflfwdrain.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcecoriolx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcecorioly.tavg-u-hxy-si.mon.GLB", + "seaIce.siforceintstrx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforceintstry.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcetiltx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcetilty.tavg-u-hxy-si.mon.GLB", + "seaIce.simpeffconc.tavg-u-hxy-si.mon.GLB", + "seaIce.simprefrozen.tavg-u-hxy-simp.mon.GLB", + "seaIce.simpthick.tavg-u-hxy-simp.mon.GLB", + "seaIce.sisali.tavg-u-hxy-si.mon.GLB", + "seaIce.sishearvel.tpt-u-hxy-si.mon.GLB", + "seaIce.sisnmass.tavg-u-hm-u.day.NH", + "seaIce.sisnmass.tavg-u-hm-u.day.SH", + "seaIce.sitempbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-sir.mon.GLB", + "seaIce.sivol.tavg-u-hm-u.day.NH", + "seaIce.sivol.tavg-u-hm-u.day.SH" + ], + "Low": [ + "aerosol.ccldncl.tavg-u-hxy-ccl.day.GLB", + "atmos.cldnci.tavg-u-hxy-cl.day.GLB", + "atmos.cldnvi.tavg-u-hxy-u.day.GLB", + "atmos.loadbc.tavg-u-hxy-u.day.GLB", + "atmos.loaddust.tavg-u-hxy-u.day.GLB", + "atmos.loadnh4.tavg-u-hxy-u.day.GLB", + "atmos.loadno3.tavg-u-hxy-u.day.GLB", + "atmos.loadoa.tavg-u-hxy-u.day.GLB", + "atmos.loadpoa.tavg-u-hxy-u.day.GLB", + "atmos.loadso4.tavg-u-hxy-u.day.GLB", + "atmos.loadsoa.tavg-u-hxy-u.day.GLB", + "atmos.loadss.tavg-u-hxy-u.day.GLB", + "atmos.reffcclwtop.tavg-u-hxy-ccl.day.GLB", + "atmos.reffsclwtop.tavg-u-hxy-scl.day.GLB", + "atmos.rsdscsdiff.tavg-u-hxy-u.day.GLB", + "atmos.rsdsdiff.tavg-u-hxy-u.day.GLB", + "atmos.scldncl.tavg-u-hxy-scl.day.GLB", + "atmos.zfull.ti-al-hxy-u.fx.GLB", + "land.c13Land.tavg-u-hxy-lnd.mon.GLB", + "land.c13Litter.tavg-u-hxy-lnd.mon.GLB", + "land.c13Soil.tavg-u-hxy-lnd.mon.GLB", + "land.c13Veg.tavg-u-hxy-lnd.mon.GLB", + "land.c14Land.tavg-u-hxy-lnd.mon.GLB", + "land.c14Litter.tavg-u-hxy-lnd.mon.GLB", + "land.c14Soil.tavg-u-hxy-lnd.mon.GLB", + "land.c14Veg.tavg-u-hxy-lnd.mon.GLB", + "land.gppc13.tavg-u-hxy-lnd.mon.GLB", + "land.gppc14.tavg-u-hxy-lnd.mon.GLB", + "land.netAtmosLandC13Flux.tavg-u-hxy-lnd.mon.GLB", + "land.netAtmosLandC14Flux.tavg-u-hxy-lnd.mon.GLB", + "land.rac13.tavg-u-hxy-lnd.mon.GLB", + "land.rac14.tavg-u-hxy-lnd.mon.GLB", + "land.rhc13.tavg-u-hxy-lnd.mon.GLB", + "land.rhc14.tavg-u-hxy-lnd.mon.GLB", + "ocean.difmxybo.tavg-ol-hxy-sea.yr.GLB", + "ocean.difmxylo.tavg-ol-hxy-sea.yr.GLB", + "ocean.diftrblo.tavg-ol-hxy-sea.yr.GLB", + "ocean.diftrelo.tavg-ol-hxy-sea.yr.GLB", + "ocean.difvho.tavg-ol-hxy-sea.yr.GLB", + "ocean.difvso.tavg-ol-hxy-sea.yr.GLB", + "ocean.dispkexyfo.tavg-u-hxy-sea.yr.GLB", + "ocean.dxto.ti-u-hxy-u.fx.GLB", + "ocean.dxuo.ti-u-hxy-u.fx.GLB", + "ocean.dxvo.ti-u-hxy-u.fx.GLB", + "ocean.dyto.ti-u-hxy-u.fx.GLB", + "ocean.dyuo.ti-u-hxy-u.fx.GLB", + "ocean.dyvo.ti-u-hxy-u.fx.GLB", + "ocean.mlotstsq.tavg-u-hxy-sea.mon.GLB", + "ocean.msftmmpa.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftmmpa.tavg-rho-hyb-sea.mon.GLB", + "ocean.msftmsmpa.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftypa.tavg-ol-ht-sea.mon.GLB", + "ocean.msftypa.tavg-rho-ht-sea.mon.GLB", + "ocean.ocontempdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontempmint.tavg-u-hxy-sea.yr.GLB", + "ocean.ocontemppadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemppmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemppsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemprmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemptend.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottempdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottempmint.tavg-u-hxy-sea.yr.GLB", + "ocean.opottemppadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemppmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemppsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemprmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemptend.tavg-ol-hxy-sea.dec.GLB", + "ocean.osaltdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpsmadvect.tavg-ol-hxy-sea.mon.GLB", + "ocean.osaltpsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltrmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osalttend.tavg-ol-hxy-sea.yr.GLB", + "ocean.rsdoabsorb.tavg-ol-hxy-sea.yr.GLB", + "ocean.somint.tavg-u-hxy-sea.yr.GLB", + "ocean.sossq.tavg-u-hxy-sea.mon.GLB", + "ocean.thkcelluo.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcellvo.tavg-ol-hxy-sea.mon.GLB", + "ocean.tnpeo.tavg-u-hxy-sea.yr.GLB", + "ocean.tossq.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.dissi13c.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.dissi13c.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissi14c.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissi14cabio.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.dissi14cabio.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.fg13co2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fg14co2abio.tavg-u-hxy-sea.mon.GLB" + ] + }, + "abrupt-4xCO2": { + "Core": [ + "atmos.areacella.ti-u-hxy-u.fx.GLB", + "atmos.cl.tavg-al-hxy-u.mon.GLB", + "atmos.cli.tavg-al-hxy-u.mon.GLB", + "atmos.clivi.tavg-u-hxy-u.mon.GLB", + "atmos.clt.tavg-u-hxy-u.day.GLB", + "atmos.clt.tavg-u-hxy-u.mon.GLB", + "atmos.clw.tavg-al-hxy-u.mon.GLB", + "atmos.clwvi.tavg-u-hxy-u.mon.GLB", + "atmos.evspsbl.tavg-u-hxy-u.mon.GLB", + "atmos.hfls.tavg-u-hxy-u.mon.GLB", + "atmos.hfss.tavg-u-hxy-u.mon.GLB", + "atmos.hur.tavg-p19-hxy-air.mon.GLB", + "atmos.hur.tavg-p19-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.6hr.GLB", + "atmos.hurs.tavg-h2m-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.mon.GLB", + "atmos.hus.tavg-p19-hxy-u.day.GLB", + "atmos.hus.tavg-p19-hxy-u.mon.GLB", + "atmos.huss.tavg-h2m-hxy-u.day.GLB", + "atmos.huss.tavg-h2m-hxy-u.mon.GLB", + "atmos.huss.tpt-h2m-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.1hr.GLB", + "atmos.pr.tavg-u-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.day.GLB", + "atmos.pr.tavg-u-hxy-u.mon.GLB", + "atmos.prc.tavg-u-hxy-u.mon.GLB", + "atmos.prsn.tavg-u-hxy-u.mon.GLB", + "atmos.prw.tavg-u-hxy-u.mon.GLB", + "atmos.ps.tavg-u-hxy-u.day.GLB", + "atmos.ps.tavg-u-hxy-u.mon.GLB", + "atmos.psl.tavg-u-hxy-u.day.GLB", + "atmos.psl.tavg-u-hxy-u.mon.GLB", + "atmos.rlds.tavg-u-hxy-u.mon.GLB", + "atmos.rldscs.tavg-u-hxy-u.mon.GLB", + "atmos.rlus.tavg-u-hxy-u.mon.GLB", + "atmos.rluscs.tavg-u-hxy-u.mon.GLB", + "atmos.rlut.tavg-u-hxy-u.mon.GLB", + "atmos.rlutcs.tavg-u-hxy-u.mon.GLB", + "atmos.rsds.tavg-u-hxy-u.day.GLB", + "atmos.rsds.tavg-u-hxy-u.mon.GLB", + "atmos.rsdscs.tavg-u-hxy-u.mon.GLB", + "atmos.rsdt.tavg-u-hxy-u.mon.GLB", + "atmos.rsus.tavg-u-hxy-u.mon.GLB", + "atmos.rsuscs.tavg-u-hxy-u.mon.GLB", + "atmos.rsut.tavg-u-hxy-u.mon.GLB", + "atmos.rsutcs.tavg-u-hxy-u.mon.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.day.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.mon.GLB", + "atmos.sftlf.ti-u-hxy-u.fx.GLB", + "atmos.ta.tavg-p19-hxy-air.day.GLB", + "atmos.ta.tavg-p19-hxy-air.mon.GLB", + "atmos.ta.tpt-p3-hxy-air.6hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.day.GLB", + "atmos.tas.tavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tmax-h2m-hxy-u.day.GLB", + "atmos.tas.tmaxavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tmin-h2m-hxy-u.day.GLB", + "atmos.tas.tminavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tpt-h2m-hxy-u.3hr.GLB", + "atmos.tauu.tavg-u-hxy-u.mon.GLB", + "atmos.tauv.tavg-u-hxy-u.mon.GLB", + "atmos.ts.tavg-u-hxy-u.mon.GLB", + "atmos.ua.tavg-p19-hxy-air.day.GLB", + "atmos.ua.tavg-p19-hxy-air.mon.GLB", + "atmos.ua.tpt-p3-hxy-air.6hr.GLB", + "atmos.uas.tavg-h10m-hxy-u.day.GLB", + "atmos.uas.tavg-h10m-hxy-u.mon.GLB", + "atmos.uas.tpt-h10m-hxy-u.3hr.GLB", + "atmos.va.tavg-p19-hxy-air.day.GLB", + "atmos.va.tavg-p19-hxy-air.mon.GLB", + "atmos.va.tpt-p3-hxy-air.6hr.GLB", + "atmos.vas.tavg-h10m-hxy-u.day.GLB", + "atmos.vas.tavg-h10m-hxy-u.mon.GLB", + "atmos.vas.tpt-h10m-hxy-u.3hr.GLB", + "atmos.wap.tavg-p19-hxy-air.mon.GLB", + "atmos.wap.tavg-p19-hxy-u.day.GLB", + "atmos.zg.tavg-p19-hxy-air.day.GLB", + "atmos.zg.tavg-p19-hxy-air.mon.GLB", + "land.evspsblsoi.tavg-u-hxy-lnd.mon.GLB", + "land.evspsblveg.tavg-u-hxy-lnd.mon.GLB", + "land.lai.tavg-u-hxy-lnd.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.mon.GLB", + "land.mrros.tavg-u-hxy-lnd.mon.GLB", + "land.mrso.tavg-u-hxy-lnd.mon.GLB", + "land.mrsofc.ti-u-hxy-lnd.fx.GLB", + "land.mrsol.tavg-d10cm-hxy-lnd.mon.GLB", + "land.orog.ti-u-hxy-u.fx.GLB", + "land.rootd.ti-u-hxy-lnd.fx.GLB", + "land.sftgif.ti-u-hxy-u.fx.GLB", + "land.slthick.ti-sl-hxy-lnd.fx.GLB", + "landIce.mrfso.tavg-u-hxy-lnd.mon.GLB", + "landIce.snc.tavg-u-hxy-lnd.mon.GLB", + "landIce.snw.tavg-u-hxy-lnd.mon.GLB", + "ocean.areacello.ti-u-hxy-u.fx.GLB", + "ocean.basin.ti-u-hxy-u.fx.GLB", + "ocean.bigthetao.tavg-ol-hxy-sea.mon.GLB", + "ocean.deptho.ti-u-hxy-sea.fx.GLB", + "ocean.hfds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfgeou.ti-u-hxy-sea.fx.GLB", + "ocean.masscello.tavg-ol-hxy-sea.mon.GLB", + "ocean.masscello.ti-ol-hxy-sea.fx.GLB", + "ocean.mlotst.tavg-u-hxy-sea.mon.GLB", + "ocean.sftof.ti-u-hxy-u.fx.GLB", + "ocean.so.tavg-ol-hxy-sea.mon.GLB", + "ocean.sos.tavg-u-hxy-sea.day.GLB", + "ocean.sos.tavg-u-hxy-sea.mon.GLB", + "ocean.tauuo.tavg-u-hxy-sea.mon.GLB", + "ocean.tauvo.tavg-u-hxy-sea.mon.GLB", + "ocean.thetao.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcello.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcello.ti-ol-hxy-sea.fx.GLB", + "ocean.tos.tavg-u-hxy-sea.day.GLB", + "ocean.tos.tavg-u-hxy-sea.mon.GLB", + "ocean.umo.tavg-ol-hxy-sea.mon.GLB", + "ocean.uo.tavg-ol-hxy-sea.mon.GLB", + "ocean.vmo.tavg-ol-hxy-sea.mon.GLB", + "ocean.vo.tavg-ol-hxy-sea.mon.GLB", + "ocean.wmo.tavg-ol-hxy-sea.mon.GLB", + "ocean.wo.tavg-ol-hxy-sea.mon.GLB", + "ocean.zos.tavg-u-hxy-sea.day.GLB", + "ocean.zos.tavg-u-hxy-sea.mon.GLB", + "ocean.zostoga.tavg-u-hm-sea.mon.GLB", + "seaIce.siconc.tavg-u-hxy-u.day.GLB", + "seaIce.siconc.tavg-u-hxy-u.mon.GLB", + "seaIce.simass.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-si.mon.GLB", + "seaIce.sitimefrac.tavg-u-hxy-sea.mon.GLB", + "seaIce.siu.tavg-u-hxy-si.mon.GLB", + "seaIce.siv.tavg-u-hxy-si.mon.GLB", + "seaIce.snd.tavg-u-hxy-sn.mon.GLB", + "seaIce.ts.tavg-u-hxy-si.mon.GLB" + ], + "High": [ + "aerosol.abs550aer.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550bc.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550dust.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550no3.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550oa.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550so4.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550ss.tavg-u-hxy-u.mon.GLB", + "aerosol.airmass.tavg-al-hxy-u.mon.GLB", + "aerosol.aoanh.tavg-al-hxy-u.mon.NH", + "aerosol.bry.tavg-p39-hy-air.mon.GLB", + "aerosol.bs550aer.tpt-al-hxy-u.6hr.GLB", + "aerosol.c2h6.tavg-al-hxy-u.mon.GLB", + "aerosol.c3h6.tavg-al-hxy-u.mon.GLB", + "aerosol.c3h8.tavg-al-hxy-u.mon.GLB", + "aerosol.ccldncl.tavg-u-hxy-ccl.mon.GLB", + "aerosol.ccn.tavg-u-hxy-ccl.mon.30S-90S", + "aerosol.ccn.tavg-u-hxy-ccl.mon.GLB", + "aerosol.ccn1.tavg-al-hxy-u.mon.30S-90S", + "aerosol.ccn1.tavg-al-hxy-u.mon.GLB", + "aerosol.ccnp02.tavg-al-hxy-u.mon.30S-90S", + "aerosol.ccnp02.tavg-al-hxy-u.mon.GLB", + "aerosol.cdnc.tavg-al-hxy-u.mon.30S-90S", + "aerosol.cdnc.tavg-al-hxy-u.mon.GLB", + "aerosol.ch3coch3.tavg-al-hxy-u.mon.GLB", + "aerosol.cheaqpso4.tavg-al-hxy-u.mon.GLB", + "aerosol.chegpso4.tavg-al-hxy-u.mon.GLB", + "aerosol.chepasoa.tavg-u-hxy-u.mon.GLB", + "aerosol.chepsoa.tavg-u-hxy-u.mon.GLB", + "aerosol.cly.tavg-p39-hy-air.mon.GLB", + "aerosol.co.tavg-al-hxy-u.mon.GLB", + "aerosol.co.tavg-h2m-hxy-u.day.GLB", + "aerosol.cod.tavg-u-hxy-u.day.GLB", + "aerosol.cod.tavg-u-hxy-u.mon.30S-90S", + "aerosol.cod.tavg-u-hxy-u.mon.GLB", + "aerosol.conccn.tavg-al-hxy-u.mon.GLB", + "aerosol.conccn.tpt-u-hs-u.3hr.GLB", + "aerosol.depdust.tavg-u-hxy-u.mon.GLB", + "aerosol.drybc.tavg-u-hxy-u.mon.GLB", + "aerosol.drydust.tavg-u-hxy-u.mon.GLB", + "aerosol.dryno3.tavg-u-hxy-u.mon.GLB", + "aerosol.dryo3.tavg-u-hxy-u.mon.GLB", + "aerosol.dryoa.tavg-u-hxy-u.mon.GLB", + "aerosol.dryso2.tavg-u-hxy-u.mon.GLB", + "aerosol.dryso4.tavg-u-hxy-u.mon.GLB", + "aerosol.dryss.tavg-u-hxy-u.mon.GLB", + "aerosol.ec550aer.tavg-al-hxy-u.mon.GLB", + "aerosol.ec550aer.tpt-u-hxy-u.6hr.GLB", + "aerosol.emiaco.tavg-u-hxy-u.mon.GLB", + "aerosol.emianox.tavg-u-hxy-u.mon.GLB", + "aerosol.emiaoa.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbbc.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbch4.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbco.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbdms.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbnh3.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbnox.tavg-u-hxy-u.mon.GLB", + "aerosol.emibboa.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbso2.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbvoc.tavg-u-hxy-u.mon.GLB", + "aerosol.emibc.tavg-u-hxy-u.mon.GLB", + "aerosol.emibvoc.tavg-u-hxy-u.mon.GLB", + "aerosol.emico.tavg-u-hxy-u.mon.GLB", + "aerosol.emidms.tavg-u-hxy-u.mon.30S-90S", + "aerosol.emidms.tavg-u-hxy-u.mon.GLB", + "aerosol.emidust.tavg-u-hxy-u.mon.GLB", + "aerosol.emiisop.tavg-u-hxy-u.mon.GLB", + "aerosol.emilnox.tavg-al-hxy-u.mon.GLB", + "aerosol.eminh3.tavg-u-hxy-u.mon.GLB", + "aerosol.eminox.tavg-u-hxy-u.mon.GLB", + "aerosol.emioa.tavg-u-hxy-u.mon.GLB", + "aerosol.emiso2.tavg-u-hxy-u.mon.GLB", + "aerosol.emiso4.tavg-u-hxy-u.mon.GLB", + "aerosol.emiss.tavg-u-hxy-u.mon.30S-90S", + "aerosol.emiss.tavg-u-hxy-u.mon.GLB", + "aerosol.emivoc.tavg-u-hxy-u.mon.GLB", + "aerosol.h2o.tavg-al-hxy-u.mon.GLB", + "aerosol.h2o.tavg-p39-hy-air.mon.GLB", + "aerosol.hcho.tavg-al-hxy-u.mon.GLB", + "aerosol.hcl.tavg-al-hxy-u.mon.GLB", + "aerosol.hcl.tavg-p39-hy-air.mon.GLB", + "aerosol.hno3.tavg-al-hxy-u.mon.GLB", + "aerosol.hno3.tavg-p39-hy-air.mon.GLB", + "aerosol.ho2.tavg-p39-hy-air.mon.GLB", + "aerosol.isop.tavg-al-hxy-u.mon.GLB", + "aerosol.jno2.tavg-al-hxy-u.mon.GLB", + "aerosol.lossch4.tavg-al-hxy-u.mon.GLB", + "aerosol.lossco.tavg-al-hxy-u.mon.GLB", + "aerosol.lossn2o.tavg-al-hxy-u.mon.GLB", + "aerosol.lwp.tavg-u-hxy-u.mon.GLB", + "aerosol.mmraerh2o.tavg-al-hxy-u.mon.GLB", + "aerosol.mmraerh2o.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmraerh2o.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrbc.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrbc.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrbc.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrbc.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrdust.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrdust.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrdust.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrdust.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrnh4.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrnh4.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrnh4.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrnh4.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrno3.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrno3.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrno3.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrno3.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmroa.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmroa.tavg-al-hxy-u.mon.GLB", + "aerosol.mmroa.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmroa.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrpm1.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrpm1.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrpm2p5.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrpm2p5.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrso4.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrso4.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrso4.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrso4.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrsoa.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrsoa.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrsoa.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrss.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrss.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrss.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrss.tpt-h2m-hs-u.3hr.GLB", + "aerosol.nh50.tavg-al-hxy-u.mon.GLB", + "aerosol.no.tavg-al-hxy-u.mon.GLB", + "aerosol.no2.tavg-al-hxy-u.mon.GLB", + "aerosol.no2.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.noy.tavg-p39-hy-air.mon.GLB", + "aerosol.o3.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.o3.tmax-h2m-hxy-u.day.GLB", + "aerosol.o3loss.tavg-al-hxy-u.mon.GLB", + "aerosol.o3prod.tavg-al-hxy-u.mon.GLB", + "aerosol.od443aer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550aer.tavg-u-hxy-u.day.GLB", + "aerosol.od550aer.tavg-u-hxy-u.mon.30S-90S", + "aerosol.od550aer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550aerh2o.tavg-u-hxy-u.mon.GLB", + "aerosol.od550bb.tavg-u-hxy-u.mon.GLB", + "aerosol.od550bc.tavg-u-hxy-u.mon.GLB", + "aerosol.od550csaer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550dust.tavg-u-hxy-u.mon.GLB", + "aerosol.od550lt1aer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550no3.tavg-u-hxy-u.mon.GLB", + "aerosol.od550oa.tavg-u-hxy-u.mon.GLB", + "aerosol.od550so4.tavg-u-hxy-u.mon.GLB", + "aerosol.od550soa.tavg-u-hxy-u.mon.GLB", + "aerosol.od550ss.tavg-u-hxy-u.mon.GLB", + "aerosol.od865aer.tavg-u-hxy-u.mon.GLB", + "aerosol.oh.tavg-al-hxy-u.mon.GLB", + "aerosol.oh.tavg-p39-hy-air.mon.GLB", + "aerosol.pan.tavg-al-hxy-u.mon.GLB", + "aerosol.photo1d.tavg-al-hxy-u.mon.GLB", + "aerosol.pod0.tsum-u-hxy-u.mon.GLB", + "aerosol.reffccwctop.tavg-u-hxy-cl.mon.GLB", + "aerosol.reffclwtop.tavg-u-hxy-cl.mon.30S-90S", + "aerosol.reffclwtop.tavg-u-hxy-cl.mon.GLB", + "aerosol.rluscsaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rlutaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rlutcsaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rsutaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rsutcsaf.tavg-u-hxy-u.mon.GLB", + "aerosol.sfpm1.tavg-h2m-hxy-u.day.GLB", + "aerosol.sfpm10.tavg-al-hxy-u.mon.30S-90S", + "aerosol.sfpm10.tavg-al-hxy-u.mon.GLB", + "aerosol.sfpm10.tavg-h2m-hxy-u.day.GLB", + "aerosol.sfpm25.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.sfpm25.tavg-h2m-hxy-u.day.GLB", + "aerosol.so2.tavg-al-hxy-u.mon.30S-90S", + "aerosol.so2.tavg-al-hxy-u.mon.GLB", + "aerosol.so2.tavg-h2m-hxy-u.day.GLB", + "aerosol.so2.tpt-h2m-hs-u.3hr.GLB", + "aerosol.tatp.tavg-u-hxy-u.mon.GLB", + "aerosol.toz.tavg-u-hxy-u.day.GLB", + "aerosol.toz.tavg-u-hxy-u.mon.GLB", + "aerosol.tropoz.tavg-u-hxy-u.mon.GLB", + "aerosol.ttop.tavg-u-hxy-cl.mon.GLB", + "aerosol.ua.tavg-10hPa-hxy-air.day.GLB", + "aerosol.vt100.tavg-100hPa-hy-air.mon.GLB", + "aerosol.wa.tavg-al-hxy-u.mon.GLB", + "aerosol.wetbc.tavg-u-hxy-u.mon.GLB", + "aerosol.wetdust.tavg-u-hxy-u.mon.GLB", + "aerosol.wetoa.tavg-u-hxy-u.mon.GLB", + "aerosol.wetso2.tavg-u-hxy-u.mon.GLB", + "aerosol.wetso4.tavg-u-hxy-u.mon.GLB", + "aerosol.wetss.tavg-u-hxy-u.mon.GLB", + "aerosol.zg.tavg-10hPa-hxy-air.day.GLB", + "atmos.albisccp.tavg-u-hxy-cl.day.GLB", + "atmos.albisccp.tavg-u-hxy-cl.mon.30S-90S", + "atmos.albisccp.tavg-u-hxy-cl.mon.GLB", + "atmos.aod550volso4.tavg-u-hxy-u.mon.GLB", + "atmos.bldep.tavg-u-hxy-u.mon.GLB", + "atmos.bldep.tmax-u-hxy-u.day.GLB", + "atmos.bldep.tmin-u-hxy-u.day.GLB", + "atmos.ccb.tavg-u-hxy-ccl.day.GLB", + "atmos.ccb.tavg-u-hxy-ccl.mon.GLB", + "atmos.cct.tavg-u-hxy-ccl.day.GLB", + "atmos.cct.tavg-u-hxy-ccl.mon.GLB", + "atmos.ci.tavg-u-hxy-u.mon.GLB", + "atmos.cl.tavg-al-hxy-u.day.GLB", + "atmos.cl.tavg-al-hxy-u.mon.30S-90S", + "atmos.clc.tavg-al-hxy-u.mon.30S-90S", + "atmos.clc.tavg-al-hxy-u.mon.GLB", + "atmos.clcalipso.tavg-220hPa-hxy-air.day.GLB", + "atmos.clcalipso.tavg-220hPa-hxy-air.mon.30S-90S", + "atmos.clcalipso.tavg-220hPa-hxy-air.mon.GLB", + "atmos.clcalipso.tavg-560hPa-hxy-air.day.GLB", + "atmos.clcalipso.tavg-560hPa-hxy-air.mon.30S-90S", + "atmos.clcalipso.tavg-560hPa-hxy-air.mon.GLB", + "atmos.clcalipso.tavg-840hPa-hxy-air.day.GLB", + "atmos.clcalipso.tavg-840hPa-hxy-air.mon.30S-90S", + "atmos.clcalipso.tavg-840hPa-hxy-air.mon.GLB", + "atmos.clcalipso.tavg-h40-hxy-air.mon.30S-90S", + "atmos.clcalipso.tavg-h40-hxy-air.mon.GLB", + "atmos.cldnci.tavg-u-hxy-cl.mon.GLB", + "atmos.cldncl.tavg-u-hxy-cl.mon.GLB", + "atmos.cldnvi.tavg-u-hxy-u.mon.GLB", + "atmos.cli.tavg-al-hxy-u.mon.30S-90S", + "atmos.clic.tavg-al-hxy-u.mon.30S-90S", + "atmos.clic.tavg-al-hxy-u.mon.GLB", + "atmos.clis.tavg-al-hxy-u.mon.30S-90S", + "atmos.clis.tavg-al-hxy-u.mon.GLB", + "atmos.clisccp.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clisccp.tavg-p7c-hxy-air.mon.GLB", + "atmos.clivi.tavg-u-hxy-u.day.GLB", + "atmos.clivi.tavg-u-hxy-u.mon.30S-90S", + "atmos.clivic.tavg-u-hxy-u.day.GLB", + "atmos.clivimodis.tavg-u-hxy-u.mon.30S-90S", + "atmos.clmisr.tavg-h16-hxy-air.mon.GLB", + "atmos.clmodis.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clmodis.tavg-p7c-hxy-air.mon.GLB", + "atmos.clmodisice.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clmodisice.tavg-p7c-hxy-air.mon.GLB", + "atmos.clmodisiceReff.tavg-u-hxy-u.mon.GLB", + "atmos.clmodisliquid.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clmodisliquid.tavg-p7c-hxy-air.mon.GLB", + "atmos.clmodisliquidReff.tavg-u-hxy-u.mon.GLB", + "atmos.cls.tavg-al-hxy-u.mon.30S-90S", + "atmos.cls.tavg-al-hxy-u.mon.GLB", + "atmos.clt.tavg-u-hxy-lnd.day.GLB", + "atmos.clt.tavg-u-hxy-u.mon.30S-90S", + "atmos.cltc.tavg-u-hxy-u.mon.GLB", + "atmos.cltcalipso.tavg-u-hxy-u.day.GLB", + "atmos.cltcalipso.tavg-u-hxy-u.mon.30S-90S", + "atmos.cltcalipso.tavg-u-hxy-u.mon.GLB", + "atmos.cltisccp.tavg-u-hxy-u.day.GLB", + "atmos.cltisccp.tavg-u-hxy-u.mon.30S-90S", + "atmos.cltisccp.tavg-u-hxy-u.mon.GLB", + "atmos.cltmodis.tavg-u-hxy-u.mon.30S-90S", + "atmos.clw.tavg-al-hxy-u.mon.30S-90S", + "atmos.clwc.tavg-al-hxy-u.mon.30S-90S", + "atmos.clwc.tavg-al-hxy-u.mon.GLB", + "atmos.clws.tavg-al-hxy-u.mon.30S-90S", + "atmos.clws.tavg-al-hxy-u.mon.GLB", + "atmos.clwvi.tavg-u-hxy-u.day.GLB", + "atmos.clwvi.tavg-u-hxy-u.mon.30S-90S", + "atmos.clwvic.tavg-u-hxy-u.day.GLB", + "atmos.clwvimodis.tavg-u-hxy-u.mon.30S-90S", + "atmos.co2.tavg-al-hxy-u.mon.GLB", + "atmos.co2.tavg-h2m-hxy-u.mon.GLB", + "atmos.co2.tavg-p19-hxy-air.mon.GLB", + "atmos.co2.tclm-p19-hxy-air.mon.GLB", + "atmos.co2.tclm-u-hm-u.mon.GLB", + "atmos.co2mass.tavg-u-hm-u.mon.GLB", + "atmos.dmc.tavg-alh-hxy-u.mon.30S-90S", + "atmos.dmc.tavg-alh-hxy-u.mon.GLB", + "atmos.edt.tavg-al-hxy-u.mon.30S-90S", + "atmos.edt.tavg-al-hxy-u.mon.GLB", + "atmos.epfy.tavg-p39-hy-air.day.GLB", + "atmos.epfy.tavg-p39-hy-air.mon.GLB", + "atmos.epfz.tavg-p39-hy-air.day.GLB", + "atmos.epfz.tavg-p39-hy-air.mon.GLB", + "atmos.evspsbl.tavg-u-hxy-lnd.day.GLB", + "atmos.evu.tavg-al-hxy-u.mon.30S-90S", + "atmos.evu.tavg-al-hxy-u.mon.GLB", + "atmos.fco2antt.tavg-u-hxy-u.mon.GLB", + "atmos.hfls.tavg-u-hxy-u.day.GLB", + "atmos.hfls.tavg-u-hxy-u.mon.30S-90S", + "atmos.hfss.tavg-u-hxy-u.day.GLB", + "atmos.hfss.tavg-u-hxy-u.mon.30S-90S", + "atmos.hur.tavg-al-hxy-u.mon.30S-90S", + "atmos.hur.tavg-al-hxy-u.mon.GLB", + "atmos.hur.tavg-p19-hxy-air.mon.30S-90S", + "atmos.hurs.tavg-h2m-hxy-u.mon.30S-90S", + "atmos.hurs.tmax-h2m-hxy-u.day.GLB", + "atmos.hurs.tmin-h2m-hxy-u.day.GLB", + "atmos.hus.tavg-al-hxy-u.mon.30S-90S", + "atmos.hus.tavg-al-hxy-u.mon.GLB", + "atmos.hus.tavg-p19-hxy-u.mon.30S-90S", + "atmos.hus.tpt-p7h-hxy-air.6hr.GLB", + "atmos.huss.tavg-h2m-hxy-u.mon.30S-90S", + "atmos.intuadse.tavg-u-hxy-u.day.GLB", + "atmos.intuadse.tavg-u-hxy-u.mon.GLB", + "atmos.intuaw.tavg-u-hxy-u.day.GLB", + "atmos.intuaw.tavg-u-hxy-u.mon.GLB", + "atmos.intuaw.tpt-u-hxy-u.6hr.GLB", + "atmos.intvadse.tavg-u-hxy-u.day.GLB", + "atmos.intvadse.tavg-u-hxy-u.mon.GLB", + "atmos.intvaw.tavg-u-hxy-u.day.GLB", + "atmos.intvaw.tavg-u-hxy-u.mon.GLB", + "atmos.intvaw.tpt-u-hxy-u.6hr.GLB", + "atmos.loadso4.tavg-u-hxy-u.mon.GLB", + "atmos.mc.tavg-alh-hxy-u.mon.GLB", + "atmos.mcd.tavg-alh-hxy-u.mon.30S-90S", + "atmos.mcd.tavg-alh-hxy-u.mon.GLB", + "atmos.mcu.tavg-alh-hxy-u.mon.30S-90S", + "atmos.mcu.tavg-alh-hxy-u.mon.GLB", + "atmos.pctisccp.tavg-u-hxy-cl.day.GLB", + "atmos.pctisccp.tavg-u-hxy-cl.mon.30S-90S", + "atmos.pctisccp.tavg-u-hxy-cl.mon.GLB", + "atmos.pfull.tavg-al-hxy-u.mon.GLB", + "atmos.pfull.tclm-al-hxy-u.mon.30S-90S", + "atmos.pfull.tclm-al-hxy-u.mon.GLB", + "atmos.phalf.tavg-alh-hxy-u.mon.GLB", + "atmos.phalf.tclm-alh-hxy-u.mon.GLB", + "atmos.pr.tavg-u-hxy-u.mon.30S-90S", + "atmos.pr.tmax-u-hxy-u.day.GLB", + "atmos.pr.tpt-u-hxy-u.6hr.GLB", + "atmos.pr17O.tavg-u-hxy-u.mon.GLB", + "atmos.pr18O.tavg-u-hxy-u.mon.GLB", + "atmos.pr2h.tavg-u-hxy-u.mon.GLB", + "atmos.prc.tavg-u-hxy-u.day.GLB", + "atmos.prc.tavg-u-hxy-u.mon.30S-90S", + "atmos.prra.tavg-u-hxy-lnd.day.GLB", + "atmos.prra.tavg-u-hxy-u.mon.30S-90S", + "atmos.prra.tavg-u-hxy-u.mon.GLB", + "atmos.prsn.tavg-u-hxy-u.3hr.GLB", + "atmos.prsn.tavg-u-hxy-u.day.GLB", + "atmos.prsn.tavg-u-hxy-u.mon.30S-90S", + "atmos.prsn18O.tavg-u-hxy-u.mon.GLB", + "atmos.prsn2h.tavg-u-hxy-u.mon.GLB", + "atmos.prw.tavg-u-hxy-u.day.GLB", + "atmos.prw.tavg-u-hxy-u.mon.30S-90S", + "atmos.prw.tpt-u-hxy-u.6hr.GLB", + "atmos.ps.tavg-u-hxy-u.1hr.GLB", + "atmos.ps.tavg-u-hxy-u.mon.30S-90S", + "atmos.psl.tavg-u-hxy-u.mon.30S-90S", + "atmos.psl.tpt-u-hxy-u.1hr.GLB", + "atmos.psl.tpt-u-hxy-u.6hr.GLB", + "atmos.ptp.tavg-u-hxy-u.mon.GLB", + "atmos.reffcclwtop.tavg-u-hxy-ccl.mon.GLB", + "atmos.reffclic.tavg-al-hxy-ccl.mon.30S-90S", + "atmos.reffclic.tavg-al-hxy-ccl.mon.GLB", + "atmos.reffclis.tavg-al-hxy-scl.mon.30S-90S", + "atmos.reffclis.tavg-al-hxy-scl.mon.GLB", + "atmos.reffclwc.tavg-al-hxy-ccl.mon.30S-90S", + "atmos.reffclwc.tavg-al-hxy-ccl.mon.GLB", + "atmos.reffclws.tavg-al-hxy-scl.mon.30S-90S", + "atmos.reffclws.tavg-al-hxy-scl.mon.GLB", + "atmos.reffsclwtop.tavg-u-hxy-scl.mon.GLB", + "atmos.rld.tavg-alh-hxy-u.mon.GLB", + "atmos.rld4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rldcs.tavg-alh-hxy-u.mon.GLB", + "atmos.rldcs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rlds.tavg-u-hxy-u.day.GLB", + "atmos.rlds.tavg-u-hxy-u.mon.30S-90S", + "atmos.rldscs.tavg-u-hxy-u.day.GLB", + "atmos.rldscs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rlu.tavg-alh-hxy-u.mon.GLB", + "atmos.rlu4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rlucs.tavg-alh-hxy-u.mon.GLB", + "atmos.rlucs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rlus.tavg-u-hxy-u.day.GLB", + "atmos.rlus.tavg-u-hxy-u.mon.30S-90S", + "atmos.rluscs.tavg-u-hxy-u.day.GLB", + "atmos.rlut.tavg-u-hxy-u.day.GLB", + "atmos.rlut.tavg-u-hxy-u.mon.30S-90S", + "atmos.rlut4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rlutcs.tavg-u-hxy-u.day.GLB", + "atmos.rlutcs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rlutcs4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rsd.tavg-alh-hxy-u.mon.GLB", + "atmos.rsd4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsdcs.tavg-alh-hxy-u.mon.GLB", + "atmos.rsdcs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsds.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsdscs.tavg-u-hxy-u.day.GLB", + "atmos.rsdscs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsdt.tavg-u-hxy-u.day.GLB", + "atmos.rsdt.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsu.tavg-alh-hxy-u.mon.GLB", + "atmos.rsu4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsucs.tavg-alh-hxy-u.mon.GLB", + "atmos.rsucs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsus.tavg-u-hxy-u.day.GLB", + "atmos.rsus.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsuscs.tavg-u-hxy-u.day.GLB", + "atmos.rsuscs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsut.tavg-u-hxy-u.day.GLB", + "atmos.rsut.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsut4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rsutcs.tavg-u-hxy-u.day.GLB", + "atmos.rsutcs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsutcs4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rtmt.tavg-u-hxy-u.mon.GLB", + "atmos.rv850.tpt-850hPa-hxy-air.6hr.GLB", + "atmos.sci.tavg-u-hxy-u.mon.GLB", + "atmos.scldncl.tavg-u-hxy-scl.mon.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.mon.30S-90S", + "atmos.sfcWind.tmax-h10m-hxy-u.day.GLB", + "atmos.smc.tavg-alh-hxy-u.mon.GLB", + "atmos.ta.tavg-700hPa-hxy-air.day.GLB", + "atmos.ta.tavg-al-hxy-u.mon.30S-90S", + "atmos.ta.tavg-al-hxy-u.mon.GLB", + "atmos.ta.tavg-p19-hxy-air.mon.30S-90S", + "atmos.ta.tavg-p39-hy-air.day.GLB", + "atmos.ta.tavg-p39-hy-air.mon.GLB", + "atmos.tas.tavg-h2m-hxy-u.1hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.mon.30S-90S", + "atmos.tas.tmaxavg-h2m-hxy-u.mon.30S-90S", + "atmos.tas.tminavg-h2m-hxy-u.mon.30S-90S", + "atmos.tauu.tavg-u-hxy-u.day.GLB", + "atmos.tauunoegw.tavg-p39-hy-air.day.GLB", + "atmos.tauunowgw.tavg-p39-hy-air.day.GLB", + "atmos.tauuogw.tavg-p39-hy-air.day.GLB", + "atmos.tauv.tavg-u-hxy-u.day.GLB", + "atmos.tauvnogw.tavg-p39-hy-air.day.GLB", + "atmos.tauvogw.tavg-p39-hy-air.day.GLB", + "atmos.tdps.tavg-h2m-hxy-u.mon.GLB", + "atmos.tnhus.tavg-al-hxy-u.mon.GLB", + "atmos.tnhusa.tavg-al-hxy-u.mon.GLB", + "atmos.tnhusc.tavg-al-hxy-u.mon.GLB", + "atmos.tnhusd.tavg-al-hxy-u.mon.GLB", + "atmos.tnhusmp.tavg-al-hxy-u.mon.GLB", + "atmos.tnhuspbl.tavg-al-hxy-u.mon.GLB", + "atmos.tnhusscp.tavg-al-hxy-u.mon.GLB", + "atmos.tnhusscpbl.tavg-al-hxy-u.mon.GLB", + "atmos.tnt.tavg-al-hxy-u.mon.GLB", + "atmos.tnta.tavg-al-hxy-u.mon.GLB", + "atmos.tntc.tavg-al-hxy-u.mon.GLB", + "atmos.tntd.tavg-al-hxy-u.mon.GLB", + "atmos.tntmp.tavg-al-hxy-u.mon.GLB", + "atmos.tntmp.tavg-p39-hy-air.day.GLB", + "atmos.tntmp.tavg-p39-hy-air.mon.GLB", + "atmos.tntpbl.tavg-al-hxy-u.mon.GLB", + "atmos.tntr.tavg-al-hxy-u.mon.GLB", + "atmos.tntrl.tavg-al-hxy-u.mon.GLB", + "atmos.tntrl.tavg-p39-hy-air.day.GLB", + "atmos.tntrl.tavg-p39-hy-air.mon.GLB", + "atmos.tntrlcs.tavg-al-hxy-u.mon.GLB", + "atmos.tntrs.tavg-al-hxy-u.mon.GLB", + "atmos.tntrs.tavg-p39-hy-air.day.GLB", + "atmos.tntrs.tavg-p39-hy-air.mon.GLB", + "atmos.tntrscs.tavg-al-hxy-u.mon.GLB", + "atmos.tntscp.tavg-al-hxy-u.mon.GLB", + "atmos.tntscpbl.tavg-al-hxy-u.mon.GLB", + "atmos.ts.tavg-u-hxy-u.day.GLB", + "atmos.ts.tavg-u-hxy-u.mon.30S-90S", + "atmos.ua.tavg-al-hxy-u.mon.GLB", + "atmos.ua.tavg-p19-hxy-air.mon.30S-90S", + "atmos.ua.tavg-p39-hy-air.day.GLB", + "atmos.ua.tavg-p39-hy-air.mon.GLB", + "atmos.ua.tpt-h100m-hxy-u.1hr.GLB", + "atmos.uas.tavg-h10m-hxy-u.mon.30S-90S", + "atmos.uas.tpt-h10m-hxy-u.1hr.GLB", + "atmos.uas.tpt-h10m-hxy-u.6hr.GLB", + "atmos.utendepfd.tavg-p39-hy-air.day.GLB", + "atmos.utendepfd.tavg-p39-hy-air.mon.GLB", + "atmos.utendnogw.tavg-p39-hy-air.day.GLB", + "atmos.utendnogw.tavg-p39-hy-air.mon.GLB", + "atmos.utendogw.tavg-p39-hy-air.day.GLB", + "atmos.utendogw.tavg-p39-hy-air.mon.GLB", + "atmos.utendvtem.tavg-p39-hy-air.day.GLB", + "atmos.utendwtem.tavg-p39-hy-air.day.GLB", + "atmos.va.tavg-al-hxy-u.mon.GLB", + "atmos.va.tavg-p19-hxy-air.mon.30S-90S", + "atmos.va.tavg-p39-hy-air.mon.GLB", + "atmos.va.tpt-h100m-hxy-u.1hr.GLB", + "atmos.vas.tavg-h10m-hxy-u.mon.30S-90S", + "atmos.vas.tpt-h10m-hxy-u.1hr.GLB", + "atmos.vas.tpt-h10m-hxy-u.6hr.GLB", + "atmos.vtem.tavg-p39-hy-air.day.GLB", + "atmos.vtem.tavg-p39-hy-air.mon.GLB", + "atmos.wap.tavg-500hPa-hxy-air.day.GLB", + "atmos.wap.tavg-p19-hxy-air.mon.30S-90S", + "atmos.wtem.tavg-p39-hy-air.day.GLB", + "atmos.wtem.tavg-p39-hy-air.mon.GLB", + "atmos.zg.tavg-1000hPa-hxy-air.day.GLB", + "atmos.zg.tavg-500hPa-hxy-air.day.GLB", + "atmos.zg.tavg-al-hxy-u.mon.GLB", + "atmos.zg.tavg-p19-hxy-air.mon.30S-90S", + "atmos.zg.tavg-p39-hy-air.day.GLB", + "atmos.zg.tavg-p39-hy-air.mon.GLB", + "atmos.zg.tpt-500hPa-hxy-air.6hr.GLB", + "atmos.zg.tpt-p3-hxy-air.6hr.GLB", + "atmos.zg.tpt-p7h-hxy-air.6hr.GLB", + "atmos.ztp.tavg-u-hxy-u.mon.GLB", + "atmosChem.c2h4.tavg-al-hxy-u.mon.GLB", + "atmosChem.c2h5oh.tavg-al-hxy-u.mon.GLB", + "atmosChem.c4h10.tavg-al-hxy-u.mon.GLB", + "atmosChem.cfc11.tavg-u-hm-u.mon.GLB", + "atmosChem.cfc113.tavg-u-hm-u.mon.GLB", + "atmosChem.cfc12.tavg-u-hm-u.mon.GLB", + "atmosChem.ch3oh.tavg-al-hxy-u.mon.GLB", + "atmosChem.ch4.tavg-al-hxy-u.mon.GLB", + "atmosChem.ch4.tavg-p19-hxy-air.mon.GLB", + "atmosChem.ch4.tavg-p39-hy-air.mon.GLB", + "atmosChem.ch4.tavg-u-hm-u.mon.GLB", + "atmosChem.ch4.tclm-p19-hxy-air.mon.GLB", + "atmosChem.ch4.tclm-u-hm-u.mon.GLB", + "atmosChem.ch4losssoil.tavg-u-hxy-u.mon.GLB", + "atmosChem.ch4ref.ti-al-hxy-u.fx.GLB", + "atmosChem.chegph2oo1d.tavg-al-hxy-u.mon.GLB", + "atmosChem.chepnh4.tavg-al-hxy-u.mon.GLB", + "atmosChem.chepno3.tavg-al-hxy-u.mon.GLB", + "atmosChem.dms.tavg-al-hxy-u.mon.30S-90S", + "atmosChem.dms.tavg-al-hxy-u.mon.GLB", + "atmosChem.do3chm.tavg-al-hxy-u.mon.GLB", + "atmosChem.dryh2.tavg-u-hxy-u.mon.GLB", + "atmosChem.dryhno3.tavg-u-hxy-u.mon.GLB", + "atmosChem.drynh3.tavg-u-hxy-u.mon.GLB", + "atmosChem.drynh4.tavg-u-hxy-u.mon.GLB", + "atmosChem.drynoy.tavg-u-hxy-u.mon.GLB", + "atmosChem.e90inst.tpt-al-hxy-u.mon.GLB", + "atmosChem.emiach4.tavg-u-hxy-u.mon.GLB", + "atmosChem.emiavnox.tavg-al-hxy-u.mon.GLB", + "atmosChem.emic2h4.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic2h5oh.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic2h6.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic3h6.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic3h8.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic4h10.tavg-u-hxy-u.mon.GLB", + "atmosChem.emich3oh.tavg-u-hxy-u.mon.GLB", + "atmosChem.emich4.tavg-u-hxy-u.mon.GLB", + "atmosChem.emih2.tavg-u-hxy-u.mon.GLB", + "atmosChem.emilkch4.tavg-u-hxy-u.mon.GLB", + "atmosChem.h2.tavg-al-hxy-u.mon.GLB", + "atmosChem.h2loss.tavg-al-hxy-u.mon.GLB", + "atmosChem.h2prod.tavg-al-hxy-u.mon.GLB", + "atmosChem.hcfc22.tavg-u-hm-u.mon.GLB", + "atmosChem.meanage.tavg-al-hxy-u.mon.GLB", + "atmosChem.meanage.tavg-p39-hy-air.mon.GLB", + "atmosChem.n2o.tavg-al-hxy-u.mon.GLB", + "atmosChem.n2o.tavg-p19-hxy-air.mon.GLB", + "atmosChem.n2o.tavg-p39-hy-air.mon.GLB", + "atmosChem.n2o.tavg-u-hm-u.mon.GLB", + "atmosChem.n2o.tclm-p19-hxy-air.mon.GLB", + "atmosChem.n2o.tclm-u-hm-u.mon.GLB", + "atmosChem.o3.tavg-al-hxy-u.mon.GLB", + "atmosChem.o3.tavg-p19-hxy-air.mon.GLB", + "atmosChem.o3.tavg-p39-hy-air.mon.GLB", + "atmosChem.o3.tclm-p19-hxy-air.mon.GLB", + "atmosChem.o3.tpt-al-hxy-u.mon.GLB", + "atmosChem.o3ref.tclm-al-hxy-u.fx.GLB", + "atmosChem.o3ref.ti-al-hxy-u.fx.GLB", + "atmosChem.o3ste.tavg-al-hxy-u.mon.GLB", + "atmosChem.rlutch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rlutcsch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rlutcso3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rluto3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsutch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsutcsch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsutcso3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsuto3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.stratch4loss.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropch4loss.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropch4lossoh.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropdo3chm.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropo3ste.tavg-al-hxy-u.mon.GLB", + "atmosChem.wethno3.tavg-al-hxy-u.mon.GLB", + "atmosChem.wetnh3.tavg-u-hxy-u.mon.GLB", + "atmosChem.wetnh4.tavg-u-hxy-u.mon.GLB", + "atmosChem.wetno3.tavg-al-hxy-u.mon.GLB", + "atmosChem.wetnoy.tavg-u-hxy-u.mon.GLB", + "land.areacellr.ti-u-hxy-u.fx.GLB", + "land.burntFractionAll.tavg-u-hxy-u.mon.GLB", + "land.cLand.tavg-u-hxy-lnd.mon.GLB", + "land.cSoil.tavg-d100cm-hxy-lnd.mon.GLB", + "land.cSoil.tavg-sl-hxy-lnd.mon.GLB", + "land.cSoil.tavg-u-hxy-lnd.mon.GLB", + "land.cVeg.tavg-u-hxy-lnd.mon.GLB", + "land.dcw.tavg-u-hxy-lnd.day.GLB", + "land.depthl.ti-u-hxy-u.fx.GLB", + "land.depthsl.ti-u-hxy-u.fx.GLB", + "land.dslw.tavg-u-hxy-lnd.day.GLB", + "land.evspsblpot.tavg-u-hxy-lnd.day.GLB", + "land.evspsblpot.tavg-u-hxy-lnd.mon.GLB", + "land.evspsblsoi.tavg-u-hxy-u.day.GLB", + "land.evspsblveg.tavg-u-hxy-u.day.GLB", + "land.fFire.tavg-u-hxy-lnd.mon.GLB", + "land.fFireAll.tavg-u-hxy-lnd.mon.GLB", + "land.fFireNat.tavg-u-hxy-lnd.mon.GLB", + "land.gpp.tavg-u-hxy-lnd.mon.GLB", + "land.grassFrac.tavg-u-hxy-u.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.day.GLB", + "land.mrrob.tavg-u-hxy-lnd.day.GLB", + "land.mrros.tavg-u-hxy-lnd.day.GLB", + "land.mrsfl.tavg-sl-hxy-lnd.day.GLB", + "land.mrsfl.tavg-sl-hxy-lnd.mon.GLB", + "land.mrsll.tavg-sl-hxy-lnd.day.GLB", + "land.mrsll.tavg-sl-hxy-lnd.mon.GLB", + "land.mrso.tavg-u-hxy-lnd.day.GLB", + "land.mrsol.tavg-d10cm-hxy-lnd.day.GLB", + "land.mrsol.tavg-sl-hxy-lnd.day.GLB", + "land.mrsol.tavg-sl-hxy-lnd.mon.GLB", + "land.mrsow.tavg-u-hxy-lnd.day.GLB", + "land.mrtws.tavg-u-hxy-lnd.day.GLB", + "land.nbp.tavg-u-hxy-lnd.mon.GLB", + "land.nep.tavg-u-hxy-lnd.mon.GLB", + "land.npp.tavg-u-hxy-lnd.mon.GLB", + "land.ra.tavg-u-hxy-lnd.mon.GLB", + "land.rh.tavg-u-hxy-lnd.mon.GLB", + "land.rivi.tavg-u-hxy-lnd.day.GLB", + "land.rivo.tavg-u-hxy-lnd.day.GLB", + "land.rsds.tavg-u-hxy-lnd.mon.GLB", + "land.rsds.tavg-u-hxy-sn.mon.GLB", + "land.rsus.tavg-u-hxy-lnd.mon.GLB", + "land.rsus.tavg-u-hxy-sn.mon.GLB", + "land.sftgif.tavg-u-hxy-u.mon.GLB", + "land.sftlaf.ti-u-hxy-u.fx.GLB", + "land.shrubFrac.tavg-u-hxy-u.mon.GLB", + "land.treeFrac.tavg-u-hxy-u.mon.GLB", + "land.tsl.tavg-sl-hxy-lnd.day.GLB", + "land.tsl.tavg-sl-hxy-lnd.mon.GLB", + "land.tslsi.tavg-u-hxy-u.day.GLB", + "land.vegFrac.tavg-u-hxy-u.mon.GLB", + "land.vegHeight.tavg-u-hxy-veg.mon.GLB", + "land.wetlandCH4.tavg-u-hxy-lnd.mon.GLB", + "land.wtd.tavg-u-hxy-lnd.day.GLB", + "landIce.acabf.tavg-u-hxy-is.mon.GLB", + "landIce.hfls.tavg-u-hxy-is.mon.GLB", + "landIce.hfss.tavg-u-hxy-is.mon.GLB", + "landIce.icem.tavg-u-hxy-is.mon.GLB", + "landIce.litemptop.tavg-u-hxy-is.mon.GLB", + "landIce.lithk.ti-u-hxy-u.fx.GLB", + "landIce.mrro.tavg-u-hxy-is.mon.GLB", + "landIce.orog.tavg-u-hxy-is.mon.GLB", + "landIce.prra.tavg-u-hxy-is.mon.GLB", + "landIce.prsn.tavg-u-hxy-is.mon.GLB", + "landIce.rlds.tavg-u-hxy-is.mon.GLB", + "landIce.rlus.tavg-u-hxy-is.mon.GLB", + "landIce.rsds.tavg-u-hxy-is.mon.GLB", + "landIce.rsus.tavg-u-hxy-is.mon.GLB", + "landIce.sbl.tavg-u-hxy-is.mon.GLB", + "landIce.sbl.tavg-u-hxy-u.mon.GLB", + "landIce.sftflf.tavg-u-hxy-u.mon.GLB", + "landIce.sftflf.ti-u-hxy-u.fx.GLB", + "landIce.sftgrf.tavg-u-hxy-u.mon.GLB", + "landIce.sftgrf.ti-u-hxy-u.fx.GLB", + "landIce.snc.tavg-u-hxy-is.mon.GLB", + "landIce.snc.tavg-u-hxy-lnd.day.GLB", + "landIce.snd.tavg-u-hxy-lnd.mon.GLB", + "landIce.snicem.tavg-u-hxy-is.mon.GLB", + "landIce.snm.tavg-u-hxy-is.mon.GLB", + "landIce.snm.tavg-u-hxy-lnd.mon.GLB", + "landIce.snrefr.tavg-u-hxy-is.mon.GLB", + "landIce.snw.tavg-u-hxy-lnd.day.GLB", + "landIce.tas.tavg-u-hxy-is.mon.GLB", + "landIce.ts.tavg-u-hxy-is.mon.GLB", + "landIce.tsn.tavg-u-hxy-is.mon.GLB", + "landIce.tsn.tavg-u-hxy-lnd.mon.GLB", + "ocean.absscint.tavg-op4-hxy-sea.mon.GLB", + "ocean.agessc.tavg-ol-hxy-sea.mon.GLB", + "ocean.bigthetao.tavg-ol-hm-sea.mon.GLB", + "ocean.bigthetao.tavg-ol-hxy-sea.dec.GLB", + "ocean.bigthetao.tavg-op20bar-hxy-sea.day.GLB", + "ocean.chcint.tavg-op4-hxy-sea.mon.GLB", + "ocean.ficeberg.tavg-u-hxy-sea.mon.GLB", + "ocean.flandice.tavg-u-hxy-sea.mon.GLB", + "ocean.hfbasin.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpmadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpmdiff.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpsmadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfds.tavg-u-hxy-sea.mon.30S-90S", + "ocean.hfgeou.tavg-u-hxy-sea.mon.GLB", + "ocean.hfx.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfx.tavg-u-hxy-sea.day.GLB", + "ocean.hfx.tavg-u-hxy-sea.mon.GLB", + "ocean.hfy.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfy.tavg-u-hxy-sea.day.GLB", + "ocean.hfy.tavg-u-hxy-sea.mon.GLB", + "ocean.htovgyre.tavg-u-hyb-sea.mon.GLB", + "ocean.htovovrt.tavg-u-hyb-sea.mon.GLB", + "ocean.masscello.tavg-ol-hxy-sea.dec.GLB", + "ocean.masso.tavg-u-hm-sea.dec.GLB", + "ocean.masso.tavg-u-hm-sea.mon.GLB", + "ocean.mlotst.tavg-u-hxy-sea.day.GLB", + "ocean.mlotst.tavg-u-hxy-sea.mon.30S-90S", + "ocean.mlotst.tmax-u-hxy-sea.mon.GLB", + "ocean.mlotst.tmin-u-hxy-sea.mon.GLB", + "ocean.mpw.tavg-u-hxy-sea.mon.GLB", + "ocean.mpw.tpt-u-hxy-sea.3hr.GLB", + "ocean.mpwswell.tavg-u-hxy-sea.mon.GLB", + "ocean.mpwswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.mpwwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.mpwwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.msftbarot.tavg-u-hxy-sea.mon.GLB", + "ocean.msftm.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftm.tavg-rho-hyb-sea.mon.GLB", + "ocean.msfty.tavg-ol-ht-sea.mon.GLB", + "ocean.msfty.tavg-rho-ht-sea.mon.GLB", + "ocean.obvfsq.tavg-ol-hxy-sea.mon.GLB", + "ocean.opottemptend.tavg-ol-hxy-sea.yr.GLB", + "ocean.pbo.tavg-u-hxy-sea.mon.GLB", + "ocean.pfscint.tavg-op4-hxy-sea.mon.GLB", + "ocean.phcint.tavg-op4-hxy-sea.mon.GLB", + "ocean.pso.tavg-u-hxy-sea.mon.GLB", + "ocean.rsds.tavg-u-hxy-ifs.mon.GLB", + "ocean.rsus.tavg-u-hxy-ifs.mon.GLB", + "ocean.scint.tavg-op4-hxy-sea.mon.GLB", + "ocean.sduo.tavg-u-hxy-sea.mon.GLB", + "ocean.sduo.tpt-u-hxy-sea.3hr.GLB", + "ocean.sdvo.tavg-u-hxy-sea.mon.GLB", + "ocean.sdvo.tpt-u-hxy-sea.3hr.GLB", + "ocean.sfx.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfx.tavg-u-hxy-sea.mon.GLB", + "ocean.sfy.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfy.tavg-u-hxy-sea.mon.GLB", + "ocean.sltbasin.tavg-u-hyb-sea.mon.GLB", + "ocean.sltovgyre.tavg-u-hyb-sea.mon.GLB", + "ocean.sltovovrt.tavg-u-hyb-sea.mon.GLB", + "ocean.so.tavg-ol-hm-sea.mon.GLB", + "ocean.so.tavg-ol-hxy-sea.dec.GLB", + "ocean.so.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.sob.tavg-u-hxy-sea.mon.GLB", + "ocean.sos.tavg-u-hm-sea.mon.30S-90S", + "ocean.sos.tavg-u-hm-sea.mon.GLB", + "ocean.sw17O.tavg-ol-hxy-sea.mon.GLB", + "ocean.sw18O.tavg-ol-hxy-sea.mon.GLB", + "ocean.sw2H.tavg-ol-hxy-sea.mon.GLB", + "ocean.swh.tavg-u-hxy-sea.mon.GLB", + "ocean.swh.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhmax.tmax-u-hxy-sea.mon.GLB", + "ocean.swhmax.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhswell.tavg-u-hxy-sea.mon.GLB", + "ocean.swhswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.swhwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.tauuo.tavg-u-hxy-sea.dec.GLB", + "ocean.tauvo.tavg-u-hxy-sea.dec.GLB", + "ocean.thetao.tavg-ol-hm-sea.mon.GLB", + "ocean.thetao.tavg-ol-hxy-sea.dec.GLB", + "ocean.thetao.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.thetao.tavg-op20bar-hxy-sea.day.GLB", + "ocean.thkcello.tavg-ol-hxy-sea.dec.GLB", + "ocean.tob.tavg-u-hxy-sea.mon.GLB", + "ocean.tos.tavg-u-hm-sea.mon.GLB", + "ocean.tos.tavg-u-hxy-sea.mon.30S-90S", + "ocean.tos.tpt-u-hxy-sea.3hr.GLB", + "ocean.tossq.tavg-u-hxy-sea.day.GLB", + "ocean.umo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.uo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.uos.tavg-u-hxy-sea.day.GLB", + "ocean.vmo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.vo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.volcello.tavg-ol-hxy-sea.dec.GLB", + "ocean.volcello.tavg-ol-hxy-sea.mon.GLB", + "ocean.volcello.tavg-ol-hxy-sea.yr.GLB", + "ocean.volcello.ti-ol-hxy-sea.fx.GLB", + "ocean.volo.tavg-u-hm-sea.dec.GLB", + "ocean.volo.tavg-u-hm-sea.mon.GLB", + "ocean.vos.tavg-u-hxy-sea.day.GLB", + "ocean.wdir.tavg-u-hxy-sea.mon.GLB", + "ocean.wdir.tpt-u-hxy-sea.3hr.GLB", + "ocean.wdirswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wdirswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wdirwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wdirwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.wfcorr.tavg-u-hxy-sea.mon.GLB", + "ocean.wfo.tavg-u-hxy-sea.mon.GLB", + "ocean.wmo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.wo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.wpdir.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdir.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpdirswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdirswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpdirwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdirwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpp.tavg-u-hxy-sea.mon.GLB", + "ocean.wpp.tpt-u-hxy-sea.3hr.GLB", + "ocean.wppswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wppswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wppwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wppwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.zos.tavg-u-hxy-sea.mon.30S-90S", + "ocean.zossq.tavg-u-hxy-sea.mon.GLB", + "ocean.zostoga.tavg-u-hm-sea.day.GLB", + "ocnBgchem.bacc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.calc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chl.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chlcalc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chldiat.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chldiaz.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chlmisc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chlpico.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.dfe.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.dissic.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.dmso.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.fgco2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.graz.tavg-ol-hxy-sea.mon.30S-90S", + "ocnBgchem.intdic.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intdoc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intparag.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbfe.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbn.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbp.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbsi.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpcalcite.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpn2.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpoc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpp.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppcalc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppdiat.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppdiaz.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppmisc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppnitrate.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpppico.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.nh4.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.no3.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.ph.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phyc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phycalc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phydiat.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phydiaz.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phymisc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phypico.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.pp.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.spco2.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.zmeso.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zmicro.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zmisc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zooc.tavg-d0m-hxy-sea.mon.30S-90S", + "seaIce.evspsbl.tavg-u-hxy-si.mon.GLB", + "seaIce.prra.tavg-u-hxy-si.mon.GLB", + "seaIce.prsn.tavg-u-hxy-si.mon.GLB", + "seaIce.rlds.tavg-u-hxy-si.day.GLB", + "seaIce.rlds.tavg-u-hxy-si.mon.GLB", + "seaIce.rlus.tavg-u-hxy-si.day.GLB", + "seaIce.rlus.tavg-u-hxy-si.mon.GLB", + "seaIce.rsds.tavg-u-hxy-si.day.GLB", + "seaIce.rsds.tavg-u-hxy-si.mon.GLB", + "seaIce.rsus.tavg-u-hxy-si.day.GLB", + "seaIce.rsus.tavg-u-hxy-si.mon.GLB", + "seaIce.sbl.tavg-u-hxy-si.mon.GLB", + "seaIce.siage.tavg-u-hxy-si.day.GLB", + "seaIce.siage.tavg-u-hxy-si.mon.30S-90S", + "seaIce.siarea.tavg-u-hm-u.mon.NH", + "seaIce.siarea.tavg-u-hm-u.mon.SH", + "seaIce.siareaacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.siconc.tavg-u-hxy-u.mon.30S-90S", + "seaIce.siconca.tavg-u-hxy-u.day.GLB", + "seaIce.siconca.tavg-u-hxy-u.mon.GLB", + "seaIce.sidconcdyn.tavg-u-hxy-sea.mon.GLB", + "seaIce.sidconcth.tavg-u-hxy-sea.mon.GLB", + "seaIce.sidmassdyn.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthsi.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthwat.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmeltbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmeltlat.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmelttop.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassth.tavg-u-hxy-si.mon.GLB", + "seaIce.sieqthick.tavg-u-hxy-si.mon.GLB", + "seaIce.siextent.tavg-u-hm-u.mon.NH", + "seaIce.siextent.tavg-u-hm-u.mon.SH", + "seaIce.siflcondbot.tavg-u-hxy-si.day.GLB", + "seaIce.siflcondbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflcondtop.tavg-u-hxy-si.day.GLB", + "seaIce.siflcondtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sifllattop.tavg-u-hxy-si.day.GLB", + "seaIce.sifllattop.tavg-u-hxy-si.mon.GLB", + "seaIce.siflsensbot.tavg-u-hxy-si.day.GLB", + "seaIce.siflsensbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflsenstop.tavg-u-hxy-si.day.GLB", + "seaIce.siflsenstop.tavg-u-hxy-si.mon.GLB", + "seaIce.siflswdbot.tavg-u-hxy-si.day.GLB", + "seaIce.siflswdbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sihc.tavg-u-hxy-sea.day.GLB", + "seaIce.sihc.tavg-u-hxy-sea.mon.GLB", + "seaIce.siitdconc.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdsnconc.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdsnthick.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdthick.tavg-u-hxy-si.mon.GLB", + "seaIce.simassacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.simpconc.tavg-u-hxy-si.mon.GLB", + "seaIce.sirdgconc.tavg-u-hxy-si.mon.GLB", + "seaIce.sisaltmass.tavg-u-hxy-si.mon.GLB", + "seaIce.sisndmassdyn.tavg-u-hxy-si.mon.GLB", + "seaIce.sisndmasssi.tavg-u-hxy-si.mon.GLB", + "seaIce.sisndmasswind.tavg-u-hxy-si.mon.GLB", + "seaIce.sisnhc.tavg-u-hxy-si.day.GLB", + "seaIce.sisnhc.tavg-u-hxy-si.mon.GLB", + "seaIce.sisnmass.tavg-u-hm-u.mon.NH", + "seaIce.sisnmass.tavg-u-hm-u.mon.SH", + "seaIce.sisnmassacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.sispeed.tavg-u-hxy-si.day.GLB", + "seaIce.sispeed.tavg-u-hxy-si.mon.GLB", + "seaIce.sistressave.tpt-u-hxy-si.mon.GLB", + "seaIce.sistressmax.tpt-u-hxy-si.mon.GLB", + "seaIce.sistrxdtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sistrxubot.tavg-u-hxy-si.mon.GLB", + "seaIce.sistrydtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sistryubot.tavg-u-hxy-si.mon.GLB", + "seaIce.sitempsnic.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-si.day.GLB", + "seaIce.sithick.tavg-u-hxy-si.mon.30S-90S", + "seaIce.sitimefrac.tavg-u-hxy-sea.day.GLB", + "seaIce.sitimefrac.tavg-u-hxy-sea.mon.30S-90S", + "seaIce.siu.tavg-u-hxy-si.day.GLB", + "seaIce.siu.tavg-u-hxy-si.mon.30S-90S", + "seaIce.siv.tavg-u-hxy-si.day.GLB", + "seaIce.siv.tavg-u-hxy-si.mon.30S-90S", + "seaIce.sivol.tavg-u-hm-u.mon.NH", + "seaIce.sivol.tavg-u-hm-u.mon.SH", + "seaIce.snc.tavg-u-hxy-si.mon.GLB", + "seaIce.snd.tavg-u-hxy-sn.day.GLB", + "seaIce.snd.tavg-u-hxy-sn.mon.30S-90S", + "seaIce.snm.tavg-u-hxy-si.mon.GLB", + "seaIce.snw.tavg-u-hxy-si.mon.GLB", + "seaIce.ts.tavg-u-hxy-si.day.GLB", + "seaIce.ts.tavg-u-hxy-si.mon.30S-90S" + ], + "Medium": [ + "atmos.hur.tavg-700hPa-hxy-air.day.GLB", + "atmos.hur.tpt-100hPa-hxy-u.6hr.GLB", + "atmos.hur.tpt-500hPa-hxy-air.6hr.GLB", + "atmos.hur.tpt-850hPa-hxy-air.6hr.GLB", + "atmos.hurs.tpt-h2m-hxy-u.3hr.GLB", + "atmos.noaahi2m.tavg-h2m-hxy-u.day.GLB", + "atmos.noaahi2m.tmax-h2m-hxy-u.day.GLB", + "atmos.ps.tpt-u-hxy-u.3hr.GLB", + "atmos.psitem.tavg-p39-hy-air.day.GLB", + "atmos.rlds.tavg-u-hxy-u.3hr.GLB", + "atmos.rls.tavg-u-hxy-u.day.GLB", + "atmos.rls.tavg-u-hxy-u.mon.GLB", + "atmos.rsds.tavg-u-hxy-u.3hr.GLB", + "atmos.rsdsdiff.tavg-u-hxy-u.day.GLB", + "atmos.rss.tavg-u-hxy-u.day.GLB", + "atmos.rss.tavg-u-hxy-u.mon.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.3hr.GLB", + "atmos.tauunoegw.tavg-p19-hxy-air.mon.GLB", + "atmos.tauunowgw.tavg-p19-hxy-air.mon.GLB", + "atmos.tauuogw.tavg-p19-hxy-air.mon.GLB", + "atmos.tauupbl.tavg-u-hxy-u.day.GLB", + "atmos.tauvnogw.tavg-p19-hxy-air.mon.GLB", + "atmos.tauvogw.tavg-p19-hxy-air.mon.GLB", + "atmos.tauvpbl.tavg-u-hxy-u.day.GLB", + "atmos.tntc.tavg-p39-hy-air.mon.GLB", + "atmos.tntnogw.tavg-p39-hy-air.mon.GLB", + "atmos.tntogw.tavg-p39-hy-air.mon.GLB", + "atmos.tntrlcs.tavg-p39-hy-air.mon.GLB", + "atmos.tntrscs.tavg-p39-hy-air.mon.GLB", + "atmos.tntscp.tavg-p39-hy-air.mon.GLB", + "atmos.ua.tavg-h100m-hxy-u.3hr.GLB", + "atmos.ua.tpt-200hPa-hxy-u.6hr.GLB", + "atmos.utendnogw.tavg-p19-hxy-air.day.GLB", + "atmos.utendnogw.tavg-p19-hxy-air.mon.GLB", + "atmos.utendogw.tavg-p19-hxy-air.day.GLB", + "atmos.utendogw.tavg-p19-hxy-air.mon.GLB", + "atmos.va.tavg-h100m-hxy-u.3hr.GLB", + "atmos.va.tpt-200hPa-hxy-u.6hr.GLB", + "atmos.vtendnogw.tavg-p19-hxy-air.day.GLB", + "atmos.vtendnogw.tavg-p19-hxy-air.mon.GLB", + "atmos.vtendogw.tavg-p19-hxy-air.day.GLB", + "atmos.vtendogw.tavg-p19-hxy-air.mon.GLB", + "atmos.wbgt.tavg-h2m-hxy-u.day.GLB", + "atmos.wbgt.tmax-h2m-hxy-u.day.GLB", + "atmos.zg.tpt-700hPa-hxy-u.6hr.GLB", + "atmos.zg.tpt-925hPa-hxy-u.6hr.GLB", + "land.irrDem.tavg-u-hxy-u.day.GLB", + "land.irrGw.tavg-u-hxy-u.day.GLB", + "land.irrLut.tavg-u-hxy-u.day.GLB", + "land.irrSurf.tavg-u-hxy-u.day.GLB", + "land.mrro.tavg-u-hxy-lnd.3hr.GLB", + "land.mrros.tavg-u-hxy-lnd.3hr.GLB", + "land.mrsol.tpt-d10cm-hxy-lnd.3hr.GLB", + "land.rzwc.tavg-u-hxy-lnd.day.GLB", + "ocean.evspsbl.tavg-u-hxy-ifs.mon.GLB", + "ocean.ficeberg.tavg-ol-hxy-sea.mon.GLB", + "ocean.friver.tavg-u-hxy-sea.mon.GLB", + "ocean.hfacrossline.tavg-u-ht-sea.mon.GLB", + "ocean.hfevapds.tavg-u-hxy-ifs.mon.GLB", + "ocean.hfibthermds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfibthermds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfrainds.tavg-u-hxy-ifs.mon.GLB", + "ocean.hfrunoffds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfrunoffds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfsnthermds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfsnthermds.tavg-u-hxy-sea.mon.GLB", + "ocean.mfo.tavg-u-ht-sea.mon.GLB", + "ocean.sfacrossline.tavg-u-ht-sea.mon.GLB", + "ocean.sfdsi.tavg-u-hxy-sea.mon.GLB", + "ocean.sfriver.tavg-u-hxy-sea.mon.GLB", + "ocean.siflfwbot.tavg-u-hxy-sea.mon.GLB", + "ocean.so.tavg-ol-hxy-sea.day.GLB", + "ocean.tnkebto.tavg-u-hxy-sea.yr.GLB", + "ocean.vsf.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfcorr.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfevap.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfpr.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfriver.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfsit.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.arag.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.arag.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.calc.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.calc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chl.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.dissic.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.o2.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.ph.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.talk.tavg-ol-hxy-sea.mon.GLB", + "seaIce.sfdsi.tavg-u-hxy-si.mon.GLB", + "seaIce.siage.tavg-u-hxy-si.mon.GLB", + "seaIce.siarea.tavg-u-hm-u.day.NH", + "seaIce.siarea.tavg-u-hm-u.day.SH", + "seaIce.sicompstren.tavg-u-hxy-si.mon.GLB", + "seaIce.sidivvel.tpt-u-hxy-si.mon.GLB", + "seaIce.sidmasstranx.tavg-u-hxy-u.mon.GLB", + "seaIce.sidmasstrany.tavg-u-hxy-u.mon.GLB", + "seaIce.sidragbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidragtop.tavg-u-hxy-si.mon.GLB", + "seaIce.siextent.tavg-u-hm-u.day.NH", + "seaIce.siextent.tavg-u-hm-u.day.SH", + "seaIce.sifb.tavg-u-hxy-si.day.GLB", + "seaIce.sifb.tavg-u-hxy-si.mon.GLB", + "seaIce.siflfwbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflfwdrain.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcecoriolx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcecorioly.tavg-u-hxy-si.mon.GLB", + "seaIce.siforceintstrx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforceintstry.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcetiltx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcetilty.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdconc.tavg-u-hxy-si.day.GLB", + "seaIce.siitdsnconc.tavg-u-hxy-si.day.GLB", + "seaIce.siitdsnthick.tavg-u-hxy-si.day.GLB", + "seaIce.siitdthick.tavg-u-hxy-si.day.GLB", + "seaIce.simpconc.tavg-u-hxy-si.day.GLB", + "seaIce.simpeffconc.tavg-u-hxy-si.day.GLB", + "seaIce.simpeffconc.tavg-u-hxy-si.mon.GLB", + "seaIce.simprefrozen.tavg-u-hxy-simp.day.GLB", + "seaIce.simprefrozen.tavg-u-hxy-simp.mon.GLB", + "seaIce.simpthick.tavg-u-hxy-si.day.GLB", + "seaIce.simpthick.tavg-u-hxy-simp.mon.GLB", + "seaIce.sirdgconc.tavg-u-hxy-si.day.GLB", + "seaIce.sisali.tavg-u-hxy-si.day.GLB", + "seaIce.sisali.tavg-u-hxy-si.mon.GLB", + "seaIce.sisaltmass.tavg-u-hxy-si.day.GLB", + "seaIce.sishearvel.tpt-u-hxy-si.mon.GLB", + "seaIce.sisnmass.tavg-u-hm-u.day.NH", + "seaIce.sisnmass.tavg-u-hm-u.day.SH", + "seaIce.sitempbot.tavg-u-hxy-si.day.GLB", + "seaIce.sitempbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sitempsnic.tavg-u-hxy-si.day.GLB", + "seaIce.sithick.tavg-u-hxy-sir.day.GLB", + "seaIce.sithick.tavg-u-hxy-sir.mon.GLB", + "seaIce.sivol.tavg-u-hm-u.day.NH", + "seaIce.sivol.tavg-u-hm-u.day.SH" + ], + "Low": [ + "aerosol.ccldncl.tavg-u-hxy-ccl.day.GLB", + "aerosol.sfpm1.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.sfpm10.tavg-h2m-hxy-u.1hr.GLB", + "atmos.cldnci.tavg-u-hxy-cl.day.GLB", + "atmos.cldnvi.tavg-u-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.1hr.GLB", + "atmos.hurs.tmin-h2m-hxy-crp.day.GLB", + "atmos.loadbc.tavg-u-hxy-u.day.GLB", + "atmos.loaddust.tavg-u-hxy-u.day.GLB", + "atmos.loadnh4.tavg-u-hxy-u.day.GLB", + "atmos.loadno3.tavg-u-hxy-u.day.GLB", + "atmos.loadoa.tavg-u-hxy-u.day.GLB", + "atmos.loadpoa.tavg-u-hxy-u.day.GLB", + "atmos.loadso4.tavg-u-hxy-u.day.GLB", + "atmos.loadsoa.tavg-u-hxy-u.day.GLB", + "atmos.loadss.tavg-u-hxy-u.day.GLB", + "atmos.pr.tavg-u-hxy-crp.day.GLB", + "atmos.reffcclwtop.tavg-u-hxy-ccl.day.GLB", + "atmos.reffsclwtop.tavg-u-hxy-scl.day.GLB", + "atmos.rsds.tavg-u-hxy-u.1hr.GLB", + "atmos.rsdscsdiff.tavg-u-hxy-u.day.GLB", + "atmos.scldncl.tavg-u-hxy-scl.day.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.1hr.GLB", + "atmos.tas.tmax-h2m-hxy-crp.day.GLB", + "atmos.tas.tmin-h2m-hxy-crp.day.GLB", + "atmos.zfull.ti-al-hxy-u.fx.GLB", + "atmosChem.drynh3.tavg-u-hxy-u.day.GLB", + "atmosChem.drynh4.tavg-u-hxy-u.day.GLB", + "atmosChem.drynoy.tavg-u-hxy-u.day.GLB", + "atmosChem.wetnh3.tavg-u-hxy-u.day.GLB", + "atmosChem.wetnh4.tavg-u-hxy-u.day.GLB", + "atmosChem.wetnoy.tavg-u-hxy-u.day.GLB", + "land.baresoilFrac.tavg-u-hxy-u.mon.GLB", + "land.c3PftFrac.tavg-u-hxy-u.mon.GLB", + "land.c4PftFrac.tavg-u-hxy-u.mon.GLB", + "land.cropFrac.tavg-u-hxy-u.mon.GLB", + "land.cropFracC3.tavg-u-hxy-u.mon.GLB", + "land.cropFracC4.tavg-u-hxy-u.mon.GLB", + "land.fHarvestToAtmos.tavg-u-hxy-lnd.mon.GLB", + "land.irrLut.tavg-u-hxy-multi.mon.GLB", + "land.lai.tavg-u-hxy-lnd.day.GLB", + "land.pastureFrac.tavg-u-hxy-u.mon.GLB", + "land.pastureFracC3.tavg-u-hxy-u.mon.GLB", + "land.pastureFracC4.tavg-u-hxy-u.mon.GLB", + "land.prveg.tavg-u-hxy-lnd.mon.GLB", + "land.residualFrac.tavg-u-hxy-u.mon.GLB", + "land.tas.tavg-u-hxy-u.1hr.GLB", + "land.tran.tavg-u-hxy-lnd.mon.GLB", + "ocean.difmxybo.tavg-ol-hxy-sea.yr.GLB", + "ocean.difmxylo.tavg-ol-hxy-sea.yr.GLB", + "ocean.diftrblo.tavg-ol-hxy-sea.yr.GLB", + "ocean.diftrelo.tavg-ol-hxy-sea.yr.GLB", + "ocean.difvho.tavg-ol-hxy-sea.yr.GLB", + "ocean.difvso.tavg-ol-hxy-sea.yr.GLB", + "ocean.dispkexyfo.tavg-u-hxy-sea.yr.GLB", + "ocean.dxto.ti-u-hxy-u.fx.GLB", + "ocean.dxuo.ti-u-hxy-u.fx.GLB", + "ocean.dxvo.ti-u-hxy-u.fx.GLB", + "ocean.dyto.ti-u-hxy-u.fx.GLB", + "ocean.dyuo.ti-u-hxy-u.fx.GLB", + "ocean.dyvo.ti-u-hxy-u.fx.GLB", + "ocean.mlotstsq.tavg-u-hxy-sea.mon.GLB", + "ocean.msftmmpa.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftmmpa.tavg-rho-hyb-sea.mon.GLB", + "ocean.msftmsmpa.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftypa.tavg-ol-ht-sea.mon.GLB", + "ocean.msftypa.tavg-rho-ht-sea.mon.GLB", + "ocean.ocontempdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontempmint.tavg-u-hxy-sea.yr.GLB", + "ocean.ocontemppadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemppmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemppsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemprmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemptend.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottempdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottempmint.tavg-u-hxy-sea.yr.GLB", + "ocean.opottemppadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemppmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemppsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemprmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemptend.tavg-ol-hxy-sea.dec.GLB", + "ocean.osaltdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpsmadvect.tavg-ol-hxy-sea.mon.GLB", + "ocean.osaltpsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltrmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osalttend.tavg-ol-hxy-sea.yr.GLB", + "ocean.rsdoabsorb.tavg-ol-hxy-sea.yr.GLB", + "ocean.somint.tavg-u-hxy-sea.yr.GLB", + "ocean.sossq.tavg-u-hxy-sea.mon.GLB", + "ocean.thkcelluo.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcellvo.tavg-ol-hxy-sea.mon.GLB", + "ocean.tnpeo.tavg-u-hxy-sea.yr.GLB", + "ocean.tossq.tavg-u-hxy-sea.mon.GLB" + ] + }, + "amip": { + "Core": [ + "atmos.areacella.ti-u-hxy-u.fx.GLB", + "atmos.cl.tavg-al-hxy-u.mon.GLB", + "atmos.cli.tavg-al-hxy-u.mon.GLB", + "atmos.clivi.tavg-u-hxy-u.mon.GLB", + "atmos.clt.tavg-u-hxy-u.day.GLB", + "atmos.clt.tavg-u-hxy-u.mon.GLB", + "atmos.clw.tavg-al-hxy-u.mon.GLB", + "atmos.clwvi.tavg-u-hxy-u.mon.GLB", + "atmos.evspsbl.tavg-u-hxy-u.mon.GLB", + "atmos.hfls.tavg-u-hxy-u.mon.GLB", + "atmos.hfss.tavg-u-hxy-u.mon.GLB", + "atmos.hur.tavg-p19-hxy-air.mon.GLB", + "atmos.hur.tavg-p19-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.6hr.GLB", + "atmos.hurs.tavg-h2m-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.mon.GLB", + "atmos.hus.tavg-p19-hxy-u.day.GLB", + "atmos.hus.tavg-p19-hxy-u.mon.GLB", + "atmos.huss.tavg-h2m-hxy-u.day.GLB", + "atmos.huss.tavg-h2m-hxy-u.mon.GLB", + "atmos.huss.tpt-h2m-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.1hr.GLB", + "atmos.pr.tavg-u-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.day.GLB", + "atmos.pr.tavg-u-hxy-u.mon.GLB", + "atmos.prc.tavg-u-hxy-u.mon.GLB", + "atmos.prsn.tavg-u-hxy-u.mon.GLB", + "atmos.prw.tavg-u-hxy-u.mon.GLB", + "atmos.ps.tavg-u-hxy-u.day.GLB", + "atmos.ps.tavg-u-hxy-u.mon.GLB", + "atmos.psl.tavg-u-hxy-u.day.GLB", + "atmos.psl.tavg-u-hxy-u.mon.GLB", + "atmos.rlds.tavg-u-hxy-u.mon.GLB", + "atmos.rldscs.tavg-u-hxy-u.mon.GLB", + "atmos.rlus.tavg-u-hxy-u.mon.GLB", + "atmos.rluscs.tavg-u-hxy-u.mon.GLB", + "atmos.rlut.tavg-u-hxy-u.mon.GLB", + "atmos.rlutcs.tavg-u-hxy-u.mon.GLB", + "atmos.rsds.tavg-u-hxy-u.day.GLB", + "atmos.rsds.tavg-u-hxy-u.mon.GLB", + "atmos.rsdscs.tavg-u-hxy-u.mon.GLB", + "atmos.rsdt.tavg-u-hxy-u.mon.GLB", + "atmos.rsus.tavg-u-hxy-u.mon.GLB", + "atmos.rsuscs.tavg-u-hxy-u.mon.GLB", + "atmos.rsut.tavg-u-hxy-u.mon.GLB", + "atmos.rsutcs.tavg-u-hxy-u.mon.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.day.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.mon.GLB", + "atmos.sftlf.ti-u-hxy-u.fx.GLB", + "atmos.ta.tavg-p19-hxy-air.day.GLB", + "atmos.ta.tavg-p19-hxy-air.mon.GLB", + "atmos.ta.tpt-p3-hxy-air.6hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.day.GLB", + "atmos.tas.tavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tmax-h2m-hxy-u.day.GLB", + "atmos.tas.tmaxavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tmin-h2m-hxy-u.day.GLB", + "atmos.tas.tminavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tpt-h2m-hxy-u.3hr.GLB", + "atmos.tauu.tavg-u-hxy-u.mon.GLB", + "atmos.tauv.tavg-u-hxy-u.mon.GLB", + "atmos.ts.tavg-u-hxy-u.mon.GLB", + "atmos.ua.tavg-p19-hxy-air.day.GLB", + "atmos.ua.tavg-p19-hxy-air.mon.GLB", + "atmos.ua.tpt-p3-hxy-air.6hr.GLB", + "atmos.uas.tavg-h10m-hxy-u.day.GLB", + "atmos.uas.tavg-h10m-hxy-u.mon.GLB", + "atmos.uas.tpt-h10m-hxy-u.3hr.GLB", + "atmos.va.tavg-p19-hxy-air.day.GLB", + "atmos.va.tavg-p19-hxy-air.mon.GLB", + "atmos.va.tpt-p3-hxy-air.6hr.GLB", + "atmos.vas.tavg-h10m-hxy-u.day.GLB", + "atmos.vas.tavg-h10m-hxy-u.mon.GLB", + "atmos.vas.tpt-h10m-hxy-u.3hr.GLB", + "atmos.wap.tavg-p19-hxy-air.mon.GLB", + "atmos.wap.tavg-p19-hxy-u.day.GLB", + "atmos.zg.tavg-p19-hxy-air.day.GLB", + "atmos.zg.tavg-p19-hxy-air.mon.GLB", + "land.evspsblsoi.tavg-u-hxy-lnd.mon.GLB", + "land.evspsblveg.tavg-u-hxy-lnd.mon.GLB", + "land.lai.tavg-u-hxy-lnd.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.mon.GLB", + "land.mrros.tavg-u-hxy-lnd.mon.GLB", + "land.mrso.tavg-u-hxy-lnd.mon.GLB", + "land.mrsofc.ti-u-hxy-lnd.fx.GLB", + "land.mrsol.tavg-d10cm-hxy-lnd.mon.GLB", + "land.orog.ti-u-hxy-u.fx.GLB", + "land.rootd.ti-u-hxy-lnd.fx.GLB", + "land.sftgif.ti-u-hxy-u.fx.GLB", + "land.slthick.ti-sl-hxy-lnd.fx.GLB", + "landIce.mrfso.tavg-u-hxy-lnd.mon.GLB", + "landIce.snc.tavg-u-hxy-lnd.mon.GLB", + "landIce.snw.tavg-u-hxy-lnd.mon.GLB", + "ocean.areacello.ti-u-hxy-u.fx.GLB", + "ocean.basin.ti-u-hxy-u.fx.GLB", + "ocean.bigthetao.tavg-ol-hxy-sea.mon.GLB", + "ocean.deptho.ti-u-hxy-sea.fx.GLB", + "ocean.hfds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfgeou.ti-u-hxy-sea.fx.GLB", + "ocean.masscello.tavg-ol-hxy-sea.mon.GLB", + "ocean.masscello.ti-ol-hxy-sea.fx.GLB", + "ocean.mlotst.tavg-u-hxy-sea.mon.GLB", + "ocean.sftof.ti-u-hxy-u.fx.GLB", + "ocean.so.tavg-ol-hxy-sea.mon.GLB", + "ocean.sos.tavg-u-hxy-sea.day.GLB", + "ocean.sos.tavg-u-hxy-sea.mon.GLB", + "ocean.tauuo.tavg-u-hxy-sea.mon.GLB", + "ocean.tauvo.tavg-u-hxy-sea.mon.GLB", + "ocean.thetao.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcello.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcello.ti-ol-hxy-sea.fx.GLB", + "ocean.tos.tavg-u-hxy-sea.day.GLB", + "ocean.tos.tavg-u-hxy-sea.mon.GLB", + "ocean.umo.tavg-ol-hxy-sea.mon.GLB", + "ocean.uo.tavg-ol-hxy-sea.mon.GLB", + "ocean.vmo.tavg-ol-hxy-sea.mon.GLB", + "ocean.vo.tavg-ol-hxy-sea.mon.GLB", + "ocean.wmo.tavg-ol-hxy-sea.mon.GLB", + "ocean.wo.tavg-ol-hxy-sea.mon.GLB", + "ocean.zos.tavg-u-hxy-sea.day.GLB", + "ocean.zos.tavg-u-hxy-sea.mon.GLB", + "ocean.zostoga.tavg-u-hm-sea.mon.GLB", + "seaIce.siconc.tavg-u-hxy-u.day.GLB", + "seaIce.siconc.tavg-u-hxy-u.mon.GLB", + "seaIce.simass.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-si.mon.GLB", + "seaIce.sitimefrac.tavg-u-hxy-sea.mon.GLB", + "seaIce.siu.tavg-u-hxy-si.mon.GLB", + "seaIce.siv.tavg-u-hxy-si.mon.GLB", + "seaIce.snd.tavg-u-hxy-sn.mon.GLB", + "seaIce.ts.tavg-u-hxy-si.mon.GLB" + ], + "High": [ + "aerosol.abs550aer.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550bc.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550dust.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550no3.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550oa.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550so4.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550ss.tavg-u-hxy-u.mon.GLB", + "aerosol.airmass.tavg-al-hxy-u.mon.GLB", + "aerosol.aoanh.tavg-al-hxy-u.mon.NH", + "aerosol.bry.tavg-p39-hy-air.mon.GLB", + "aerosol.bs550aer.tpt-al-hxy-u.6hr.GLB", + "aerosol.c2h6.tavg-al-hxy-u.mon.GLB", + "aerosol.c3h6.tavg-al-hxy-u.mon.GLB", + "aerosol.c3h8.tavg-al-hxy-u.mon.GLB", + "aerosol.ccldncl.tavg-u-hxy-ccl.mon.GLB", + "aerosol.ccn.tavg-u-hxy-ccl.mon.30S-90S", + "aerosol.ccn.tavg-u-hxy-ccl.mon.GLB", + "aerosol.ccn1.tavg-al-hxy-u.mon.30S-90S", + "aerosol.ccn1.tavg-al-hxy-u.mon.GLB", + "aerosol.ccnp02.tavg-al-hxy-u.mon.30S-90S", + "aerosol.ccnp02.tavg-al-hxy-u.mon.GLB", + "aerosol.cdnc.tavg-al-hxy-u.mon.30S-90S", + "aerosol.cdnc.tavg-al-hxy-u.mon.GLB", + "aerosol.ch3coch3.tavg-al-hxy-u.mon.GLB", + "aerosol.cheaqpso4.tavg-al-hxy-u.mon.GLB", + "aerosol.chegpso4.tavg-al-hxy-u.mon.GLB", + "aerosol.chepasoa.tavg-u-hxy-u.mon.GLB", + "aerosol.chepsoa.tavg-u-hxy-u.mon.GLB", + "aerosol.cly.tavg-p39-hy-air.mon.GLB", + "aerosol.co.tavg-al-hxy-u.mon.GLB", + "aerosol.co.tavg-h2m-hxy-u.day.GLB", + "aerosol.cod.tavg-u-hxy-u.day.GLB", + "aerosol.cod.tavg-u-hxy-u.mon.30S-90S", + "aerosol.cod.tavg-u-hxy-u.mon.GLB", + "aerosol.conccn.tavg-al-hxy-u.mon.GLB", + "aerosol.conccn.tpt-u-hs-u.3hr.GLB", + "aerosol.drybc.tavg-u-hxy-u.mon.GLB", + "aerosol.drydust.tavg-u-hxy-u.mon.GLB", + "aerosol.dryno3.tavg-u-hxy-u.mon.GLB", + "aerosol.dryo3.tavg-u-hxy-u.mon.GLB", + "aerosol.dryoa.tavg-u-hxy-u.mon.GLB", + "aerosol.dryso2.tavg-u-hxy-u.mon.GLB", + "aerosol.dryso4.tavg-u-hxy-u.mon.GLB", + "aerosol.dryss.tavg-u-hxy-u.mon.GLB", + "aerosol.ec550aer.tavg-al-hxy-u.mon.GLB", + "aerosol.ec550aer.tpt-u-hxy-u.6hr.GLB", + "aerosol.emiaco.tavg-u-hxy-u.mon.GLB", + "aerosol.emianox.tavg-u-hxy-u.mon.GLB", + "aerosol.emiaoa.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbbc.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbch4.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbco.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbdms.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbnh3.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbnox.tavg-u-hxy-u.mon.GLB", + "aerosol.emibboa.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbso2.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbvoc.tavg-u-hxy-u.mon.GLB", + "aerosol.emibc.tavg-u-hxy-u.mon.GLB", + "aerosol.emibvoc.tavg-u-hxy-u.mon.GLB", + "aerosol.emico.tavg-u-hxy-u.mon.GLB", + "aerosol.emidms.tavg-u-hxy-u.mon.30S-90S", + "aerosol.emidms.tavg-u-hxy-u.mon.GLB", + "aerosol.emidust.tavg-u-hxy-u.mon.GLB", + "aerosol.emiisop.tavg-u-hxy-u.mon.GLB", + "aerosol.emilnox.tavg-al-hxy-u.mon.GLB", + "aerosol.eminh3.tavg-u-hxy-u.mon.GLB", + "aerosol.eminox.tavg-u-hxy-u.mon.GLB", + "aerosol.emioa.tavg-u-hxy-u.mon.GLB", + "aerosol.emiso2.tavg-u-hxy-u.mon.GLB", + "aerosol.emiso4.tavg-u-hxy-u.mon.GLB", + "aerosol.emiss.tavg-u-hxy-u.mon.30S-90S", + "aerosol.emiss.tavg-u-hxy-u.mon.GLB", + "aerosol.emivoc.tavg-u-hxy-u.mon.GLB", + "aerosol.h2o.tavg-al-hxy-u.mon.GLB", + "aerosol.h2o.tavg-p39-hy-air.mon.GLB", + "aerosol.hcho.tavg-al-hxy-u.mon.GLB", + "aerosol.hcl.tavg-al-hxy-u.mon.GLB", + "aerosol.hcl.tavg-p39-hy-air.mon.GLB", + "aerosol.hno3.tavg-al-hxy-u.mon.GLB", + "aerosol.hno3.tavg-p39-hy-air.mon.GLB", + "aerosol.ho2.tavg-p39-hy-air.mon.GLB", + "aerosol.isop.tavg-al-hxy-u.mon.GLB", + "aerosol.jno2.tavg-al-hxy-u.mon.GLB", + "aerosol.lossch4.tavg-al-hxy-u.mon.GLB", + "aerosol.lossco.tavg-al-hxy-u.mon.GLB", + "aerosol.lossn2o.tavg-al-hxy-u.mon.GLB", + "aerosol.lwp.tavg-u-hxy-u.mon.GLB", + "aerosol.mmraerh2o.tavg-al-hxy-u.mon.GLB", + "aerosol.mmraerh2o.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmraerh2o.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrbc.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrbc.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrbc.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrbc.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrdust.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrdust.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrdust.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrdust.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrnh4.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrnh4.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrnh4.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrnh4.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrno3.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrno3.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrno3.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrno3.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmroa.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmroa.tavg-al-hxy-u.mon.GLB", + "aerosol.mmroa.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmroa.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrpm1.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrpm1.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrpm2p5.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrpm2p5.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrso4.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrso4.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrso4.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrso4.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrsoa.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrsoa.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrsoa.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrss.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrss.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrss.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrss.tpt-h2m-hs-u.3hr.GLB", + "aerosol.nh50.tavg-al-hxy-u.mon.GLB", + "aerosol.no.tavg-al-hxy-u.mon.GLB", + "aerosol.no2.tavg-al-hxy-u.mon.GLB", + "aerosol.no2.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.noy.tavg-p39-hy-air.mon.GLB", + "aerosol.o3.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.o3.tmax-h2m-hxy-u.day.GLB", + "aerosol.o3loss.tavg-al-hxy-u.mon.GLB", + "aerosol.o3prod.tavg-al-hxy-u.mon.GLB", + "aerosol.od443aer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550aer.tavg-u-hxy-u.day.GLB", + "aerosol.od550aer.tavg-u-hxy-u.mon.30S-90S", + "aerosol.od550aer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550aerh2o.tavg-u-hxy-u.mon.GLB", + "aerosol.od550bb.tavg-u-hxy-u.mon.GLB", + "aerosol.od550bc.tavg-u-hxy-u.mon.GLB", + "aerosol.od550csaer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550dust.tavg-u-hxy-u.mon.GLB", + "aerosol.od550lt1aer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550no3.tavg-u-hxy-u.mon.GLB", + "aerosol.od550oa.tavg-u-hxy-u.mon.GLB", + "aerosol.od550so4.tavg-u-hxy-u.mon.GLB", + "aerosol.od550soa.tavg-u-hxy-u.mon.GLB", + "aerosol.od550ss.tavg-u-hxy-u.mon.GLB", + "aerosol.od865aer.tavg-u-hxy-u.mon.GLB", + "aerosol.oh.tavg-al-hxy-u.mon.GLB", + "aerosol.oh.tavg-p39-hy-air.mon.GLB", + "aerosol.pan.tavg-al-hxy-u.mon.GLB", + "aerosol.photo1d.tavg-al-hxy-u.mon.GLB", + "aerosol.pod0.tsum-u-hxy-u.mon.GLB", + "aerosol.reffccwctop.tavg-u-hxy-cl.mon.GLB", + "aerosol.reffclwtop.tavg-u-hxy-cl.mon.30S-90S", + "aerosol.reffclwtop.tavg-u-hxy-cl.mon.GLB", + "aerosol.rluscsaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rlutaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rlutcsaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rsutaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rsutcsaf.tavg-u-hxy-u.mon.GLB", + "aerosol.sfpm1.tavg-h2m-hxy-u.day.GLB", + "aerosol.sfpm10.tavg-al-hxy-u.mon.30S-90S", + "aerosol.sfpm10.tavg-al-hxy-u.mon.GLB", + "aerosol.sfpm10.tavg-h2m-hxy-u.day.GLB", + "aerosol.sfpm25.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.sfpm25.tavg-h2m-hxy-u.day.GLB", + "aerosol.so2.tavg-al-hxy-u.mon.30S-90S", + "aerosol.so2.tavg-al-hxy-u.mon.GLB", + "aerosol.so2.tavg-h2m-hxy-u.day.GLB", + "aerosol.so2.tpt-h2m-hs-u.3hr.GLB", + "aerosol.tatp.tavg-u-hxy-u.mon.GLB", + "aerosol.toz.tavg-u-hxy-u.day.GLB", + "aerosol.toz.tavg-u-hxy-u.mon.GLB", + "aerosol.tropoz.tavg-u-hxy-u.mon.GLB", + "aerosol.ttop.tavg-u-hxy-cl.mon.GLB", + "aerosol.ua.tavg-10hPa-hxy-air.day.GLB", + "aerosol.vt100.tavg-100hPa-hy-air.mon.GLB", + "aerosol.wa.tavg-al-hxy-u.mon.GLB", + "aerosol.wetbc.tavg-u-hxy-u.mon.GLB", + "aerosol.wetdust.tavg-u-hxy-u.mon.GLB", + "aerosol.wetoa.tavg-u-hxy-u.mon.GLB", + "aerosol.wetso2.tavg-u-hxy-u.mon.GLB", + "aerosol.wetso4.tavg-u-hxy-u.mon.GLB", + "aerosol.wetss.tavg-u-hxy-u.mon.GLB", + "aerosol.zg.tavg-10hPa-hxy-air.day.GLB", + "atmos.albisccp.tavg-u-hxy-cl.day.GLB", + "atmos.albisccp.tavg-u-hxy-cl.mon.30S-90S", + "atmos.albisccp.tavg-u-hxy-cl.mon.GLB", + "atmos.aod550volso4.tavg-u-hxy-u.mon.GLB", + "atmos.bldep.tavg-u-hxy-u.mon.GLB", + "atmos.bldep.tmax-u-hxy-u.day.GLB", + "atmos.bldep.tmin-u-hxy-u.day.GLB", + "atmos.ccb.tavg-u-hxy-ccl.day.GLB", + "atmos.ccb.tavg-u-hxy-ccl.mon.GLB", + "atmos.ccb.tpt-u-hs-u.subhr.GLB", + "atmos.cct.tavg-u-hxy-ccl.day.GLB", + "atmos.cct.tavg-u-hxy-ccl.mon.GLB", + "atmos.cct.tpt-u-hs-u.subhr.GLB", + "atmos.cfadDbze94.tavg-h40-hxy-air.mon.GLB", + "atmos.cfadLidarsr532.tavg-h40-hxy-air.mon.GLB", + "atmos.ci.tavg-u-hxy-u.mon.GLB", + "atmos.ci.tpt-u-hs-u.subhr.GLB", + "atmos.cl.tavg-al-hxy-u.day.GLB", + "atmos.cl.tavg-al-hxy-u.mon.30S-90S", + "atmos.cl.tpt-al-hs-u.subhr.GLB", + "atmos.clc.tavg-al-hxy-u.mon.30S-90S", + "atmos.clc.tavg-al-hxy-u.mon.GLB", + "atmos.clcalipso.tavg-220hPa-hxy-air.day.GLB", + "atmos.clcalipso.tavg-220hPa-hxy-air.mon.30S-90S", + "atmos.clcalipso.tavg-220hPa-hxy-air.mon.GLB", + "atmos.clcalipso.tavg-560hPa-hxy-air.day.GLB", + "atmos.clcalipso.tavg-560hPa-hxy-air.mon.30S-90S", + "atmos.clcalipso.tavg-560hPa-hxy-air.mon.GLB", + "atmos.clcalipso.tavg-840hPa-hxy-air.day.GLB", + "atmos.clcalipso.tavg-840hPa-hxy-air.mon.30S-90S", + "atmos.clcalipso.tavg-840hPa-hxy-air.mon.GLB", + "atmos.clcalipso.tavg-h40-hxy-air.day.GLB", + "atmos.clcalipso.tavg-h40-hxy-air.mon.30S-90S", + "atmos.clcalipso.tavg-h40-hxy-air.mon.GLB", + "atmos.clcalipsoice.tavg-h40-hxy-air.mon.GLB", + "atmos.clcalipsoliq.tavg-h40-hxy-air.mon.GLB", + "atmos.cldnci.tavg-u-hxy-cl.mon.GLB", + "atmos.cldncl.tavg-u-hxy-cl.mon.GLB", + "atmos.cldnvi.tavg-u-hxy-u.mon.GLB", + "atmos.cli.tavg-al-hxy-u.day.GLB", + "atmos.cli.tavg-al-hxy-u.mon.30S-90S", + "atmos.cli.tpt-al-hs-u.subhr.GLB", + "atmos.clic.tavg-al-hxy-u.mon.30S-90S", + "atmos.clic.tavg-al-hxy-u.mon.GLB", + "atmos.climodis.tavg-u-hxy-u.mon.GLB", + "atmos.clis.tavg-al-hxy-u.mon.30S-90S", + "atmos.clis.tavg-al-hxy-u.mon.GLB", + "atmos.clisccp.tavg-p7c-hxy-air.day.GLB", + "atmos.clisccp.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clisccp.tavg-p7c-hxy-air.mon.GLB", + "atmos.clivi.tavg-u-hxy-u.day.GLB", + "atmos.clivi.tavg-u-hxy-u.mon.30S-90S", + "atmos.clivi.tpt-u-hs-u.subhr.GLB", + "atmos.clivic.tavg-u-hxy-u.day.GLB", + "atmos.clivimodis.tavg-u-hxy-u.mon.30S-90S", + "atmos.clivimodis.tavg-u-hxy-u.mon.GLB", + "atmos.clmisr.tavg-h16-hxy-air.mon.GLB", + "atmos.clmodis.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clmodis.tavg-p7c-hxy-air.mon.GLB", + "atmos.clmodisice.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clmodisice.tavg-p7c-hxy-air.mon.GLB", + "atmos.clmodisiceReff.tavg-u-hxy-u.mon.GLB", + "atmos.clmodisliquid.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clmodisliquid.tavg-p7c-hxy-air.mon.GLB", + "atmos.clmodisliquidReff.tavg-u-hxy-u.mon.GLB", + "atmos.cls.tavg-al-hxy-u.mon.30S-90S", + "atmos.cls.tavg-al-hxy-u.mon.GLB", + "atmos.clt.tavg-u-hxy-lnd.day.GLB", + "atmos.clt.tavg-u-hxy-u.mon.30S-90S", + "atmos.clt.tpt-u-hs-u.subhr.GLB", + "atmos.cltc.tavg-u-hxy-u.mon.GLB", + "atmos.cltcalipso.tavg-u-hxy-u.day.GLB", + "atmos.cltcalipso.tavg-u-hxy-u.mon.30S-90S", + "atmos.cltcalipso.tavg-u-hxy-u.mon.GLB", + "atmos.cltisccp.tavg-u-hxy-u.day.GLB", + "atmos.cltisccp.tavg-u-hxy-u.mon.30S-90S", + "atmos.cltisccp.tavg-u-hxy-u.mon.GLB", + "atmos.cltmodis.tavg-u-hxy-u.mon.30S-90S", + "atmos.cltmodis.tavg-u-hxy-u.mon.GLB", + "atmos.clw.tavg-al-hxy-u.day.GLB", + "atmos.clw.tavg-al-hxy-u.mon.30S-90S", + "atmos.clw.tpt-al-hs-u.subhr.GLB", + "atmos.clwc.tavg-al-hxy-u.mon.30S-90S", + "atmos.clwc.tavg-al-hxy-u.mon.GLB", + "atmos.clwmodis.tavg-u-hxy-u.mon.GLB", + "atmos.clws.tavg-al-hxy-u.mon.30S-90S", + "atmos.clws.tavg-al-hxy-u.mon.GLB", + "atmos.clwvi.tavg-u-hxy-u.day.GLB", + "atmos.clwvi.tavg-u-hxy-u.mon.30S-90S", + "atmos.clwvi.tpt-u-hs-u.subhr.GLB", + "atmos.clwvic.tavg-u-hxy-u.day.GLB", + "atmos.clwvimodis.tavg-u-hxy-u.mon.30S-90S", + "atmos.clwvimodis.tavg-u-hxy-u.mon.GLB", + "atmos.co2.tavg-al-hxy-u.mon.GLB", + "atmos.co2.tavg-p19-hxy-air.mon.GLB", + "atmos.co2.tclm-p19-hxy-air.mon.GLB", + "atmos.co2.tclm-u-hm-u.mon.GLB", + "atmos.co2mass.tavg-u-hm-u.mon.GLB", + "atmos.dmc.tavg-alh-hxy-u.mon.30S-90S", + "atmos.dmc.tavg-alh-hxy-u.mon.GLB", + "atmos.edt.tavg-al-hxy-u.mon.30S-90S", + "atmos.edt.tavg-al-hxy-u.mon.GLB", + "atmos.edt.tpt-al-hs-u.subhr.GLB", + "atmos.epfy.tavg-p39-hy-air.day.GLB", + "atmos.epfy.tavg-p39-hy-air.mon.GLB", + "atmos.epfz.tavg-p39-hy-air.day.GLB", + "atmos.epfz.tavg-p39-hy-air.mon.GLB", + "atmos.evspsbl.tavg-u-hxy-lnd.day.GLB", + "atmos.evspsbl.tpt-u-hs-u.subhr.GLB", + "atmos.evu.tavg-al-hxy-u.mon.30S-90S", + "atmos.evu.tavg-al-hxy-u.mon.GLB", + "atmos.evu.tpt-al-hs-u.subhr.GLB", + "atmos.fco2antt.tavg-u-hxy-u.mon.GLB", + "atmos.fco2antt.tpt-u-hs-u.subhr.GLB", + "atmos.fco2fos.tpt-u-hs-u.subhr.GLB", + "atmos.fco2nat.tpt-u-hs-u.subhr.GLB", + "atmos.hfls.tavg-u-hxy-u.day.GLB", + "atmos.hfls.tavg-u-hxy-u.mon.30S-90S", + "atmos.hfls.tpt-u-hs-u.subhr.GLB", + "atmos.hfss.tavg-u-hxy-u.day.GLB", + "atmos.hfss.tavg-u-hxy-u.mon.30S-90S", + "atmos.hfss.tpt-u-hs-u.subhr.GLB", + "atmos.hur.tavg-al-hxy-u.day.GLB", + "atmos.hur.tavg-al-hxy-u.mon.30S-90S", + "atmos.hur.tavg-al-hxy-u.mon.GLB", + "atmos.hur.tavg-p19-hxy-air.mon.30S-90S", + "atmos.hur.tpt-al-hs-u.subhr.GLB", + "atmos.hurs.tavg-h2m-hxy-u.mon.30S-90S", + "atmos.hurs.tmax-h2m-hxy-u.day.GLB", + "atmos.hurs.tmin-h2m-hxy-u.day.GLB", + "atmos.hurs.tpt-h2m-hs-u.subhr.GLB", + "atmos.hus.tavg-al-hxy-u.day.GLB", + "atmos.hus.tavg-al-hxy-u.mon.30S-90S", + "atmos.hus.tavg-al-hxy-u.mon.GLB", + "atmos.hus.tavg-p19-hxy-u.mon.30S-90S", + "atmos.hus.tpt-al-hs-u.subhr.GLB", + "atmos.hus.tpt-p7h-hxy-air.6hr.GLB", + "atmos.huss.tavg-h2m-hxy-u.mon.30S-90S", + "atmos.huss.tpt-h2m-hs-u.subhr.GLB", + "atmos.intuadse.tavg-u-hxy-u.day.GLB", + "atmos.intuadse.tavg-u-hxy-u.mon.GLB", + "atmos.intuaw.tavg-u-hxy-u.day.GLB", + "atmos.intuaw.tavg-u-hxy-u.mon.GLB", + "atmos.intuaw.tpt-u-hxy-u.6hr.GLB", + "atmos.intvadse.tavg-u-hxy-u.day.GLB", + "atmos.intvadse.tavg-u-hxy-u.mon.GLB", + "atmos.intvaw.tavg-u-hxy-u.day.GLB", + "atmos.intvaw.tavg-u-hxy-u.mon.GLB", + "atmos.intvaw.tpt-u-hxy-u.6hr.GLB", + "atmos.jpdftaureicemodis.tavg-u-hxy-u.day.GLB", + "atmos.jpdftaureicemodis.tavg-u-hxy-u.mon.GLB", + "atmos.jpdftaureliqmodis.tavg-u-hxy-u.day.GLB", + "atmos.jpdftaureliqmodis.tavg-u-hxy-u.mon.GLB", + "atmos.lat.ti-u-hs-u.fx.GLB", + "atmos.loadso4.tavg-u-hxy-u.mon.GLB", + "atmos.lon.ti-u-hs-u.fx.GLB", + "atmos.mc.tavg-alh-hxy-u.day.GLB", + "atmos.mc.tavg-alh-hxy-u.mon.GLB", + "atmos.mc.tpt-alh-hs-u.subhr.GLB", + "atmos.mcd.tavg-alh-hxy-u.mon.30S-90S", + "atmos.mcd.tavg-alh-hxy-u.mon.GLB", + "atmos.mcu.tavg-alh-hxy-u.mon.30S-90S", + "atmos.mcu.tavg-alh-hxy-u.mon.GLB", + "atmos.parasolRefl.tavg-u-hxy-sea.day.GLB", + "atmos.parasolRefl.tavg-u-hxy-sea.mon.GLB", + "atmos.pctisccp.tavg-u-hxy-cl.day.GLB", + "atmos.pctisccp.tavg-u-hxy-cl.mon.30S-90S", + "atmos.pctisccp.tavg-u-hxy-cl.mon.GLB", + "atmos.pfull.tavg-al-hxy-u.day.GLB", + "atmos.pfull.tavg-al-hxy-u.mon.GLB", + "atmos.pfull.tclm-al-hxy-u.mon.30S-90S", + "atmos.pfull.tclm-al-hxy-u.mon.GLB", + "atmos.pfull.tpt-al-hs-u.subhr.GLB", + "atmos.phalf.tavg-alh-hxy-u.day.GLB", + "atmos.phalf.tavg-alh-hxy-u.mon.GLB", + "atmos.phalf.tclm-alh-hxy-u.mon.GLB", + "atmos.phalf.tpt-alh-hs-u.subhr.GLB", + "atmos.pr.tavg-u-hxy-u.mon.30S-90S", + "atmos.pr.tmax-u-hxy-u.day.GLB", + "atmos.pr.tmax-u-hxy-u.mon.GLB", + "atmos.pr.tpt-u-hs-u.subhr.GLB", + "atmos.pr.tpt-u-hxy-u.6hr.GLB", + "atmos.prc.tavg-u-hxy-u.day.GLB", + "atmos.prc.tavg-u-hxy-u.mon.30S-90S", + "atmos.prc.tpt-u-hs-u.subhr.GLB", + "atmos.prra.tavg-u-hxy-lnd.day.GLB", + "atmos.prra.tavg-u-hxy-u.mon.30S-90S", + "atmos.prsn.tavg-u-hxy-u.3hr.GLB", + "atmos.prsn.tavg-u-hxy-u.day.GLB", + "atmos.prsn.tavg-u-hxy-u.mon.30S-90S", + "atmos.prsn.tpt-u-hs-u.subhr.GLB", + "atmos.prw.tavg-u-hxy-u.day.GLB", + "atmos.prw.tavg-u-hxy-u.mon.30S-90S", + "atmos.prw.tpt-u-hs-u.subhr.GLB", + "atmos.prw.tpt-u-hxy-u.6hr.GLB", + "atmos.ps.tavg-u-hxy-u.1hr.GLB", + "atmos.ps.tavg-u-hxy-u.mon.30S-90S", + "atmos.ps.tpt-u-hs-u.subhr.GLB", + "atmos.psl.tavg-u-hxy-u.mon.30S-90S", + "atmos.psl.tpt-u-hs-u.subhr.GLB", + "atmos.psl.tpt-u-hxy-u.1hr.GLB", + "atmos.psl.tpt-u-hxy-u.6hr.GLB", + "atmos.ptp.tavg-u-hxy-u.mon.GLB", + "atmos.reffcclwtop.tavg-u-hxy-ccl.mon.GLB", + "atmos.reffclic.tavg-al-hxy-ccl.mon.30S-90S", + "atmos.reffclic.tavg-al-hxy-ccl.mon.GLB", + "atmos.reffclic.tpt-al-hs-ccl.subhr.GLB", + "atmos.reffclis.tavg-al-hxy-scl.mon.30S-90S", + "atmos.reffclis.tavg-al-hxy-scl.mon.GLB", + "atmos.reffclis.tpt-al-hs-scl.subhr.GLB", + "atmos.reffclwc.tavg-al-hxy-ccl.mon.30S-90S", + "atmos.reffclwc.tavg-al-hxy-ccl.mon.GLB", + "atmos.reffclwc.tpt-al-hs-ccl.subhr.GLB", + "atmos.reffclws.tavg-al-hxy-scl.mon.30S-90S", + "atmos.reffclws.tavg-al-hxy-scl.mon.GLB", + "atmos.reffclws.tpt-al-hs-scl.subhr.GLB", + "atmos.reffsclwtop.tavg-u-hxy-scl.mon.GLB", + "atmos.rld.tavg-alh-hxy-u.mon.GLB", + "atmos.rld.tpt-alh-hs-u.subhr.GLB", + "atmos.rld4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rldcs.tavg-alh-hxy-u.mon.GLB", + "atmos.rldcs.tpt-alh-hs-u.subhr.GLB", + "atmos.rldcs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rlds.tavg-u-hxy-u.day.GLB", + "atmos.rlds.tavg-u-hxy-u.mon.30S-90S", + "atmos.rlds.tpt-u-hs-u.subhr.GLB", + "atmos.rldscs.tavg-u-hxy-u.day.GLB", + "atmos.rldscs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rldscs.tpt-u-hs-u.subhr.GLB", + "atmos.rls.tavg-u-hxy-u.mon.GLB", + "atmos.rlu.tavg-alh-hxy-u.mon.GLB", + "atmos.rlu.tpt-alh-hs-u.subhr.GLB", + "atmos.rlu4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rlucs.tavg-alh-hxy-u.mon.GLB", + "atmos.rlucs.tpt-alh-hs-u.subhr.GLB", + "atmos.rlucs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rlus.tavg-u-hxy-u.day.GLB", + "atmos.rlus.tavg-u-hxy-u.mon.30S-90S", + "atmos.rlus.tpt-u-hs-u.subhr.GLB", + "atmos.rluscs.tavg-u-hxy-u.day.GLB", + "atmos.rlut.tavg-u-hxy-u.day.GLB", + "atmos.rlut.tavg-u-hxy-u.mon.30S-90S", + "atmos.rlut.tclmdc-u-hxy-u.1hr.GLB", + "atmos.rlut.tpt-u-hs-u.subhr.GLB", + "atmos.rlut4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rlutcs.tavg-u-hxy-u.day.GLB", + "atmos.rlutcs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rlutcs.tclmdc-u-hxy-u.1hr.GLB", + "atmos.rlutcs.tpt-u-hs-u.subhr.GLB", + "atmos.rlutcs4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rsd.tavg-alh-hxy-u.mon.GLB", + "atmos.rsd.tpt-alh-hs-u.subhr.GLB", + "atmos.rsd4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsdcs.tavg-alh-hxy-u.mon.GLB", + "atmos.rsdcs.tpt-alh-hs-u.subhr.GLB", + "atmos.rsdcs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsds.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsds.tpt-u-hs-u.subhr.GLB", + "atmos.rsdscs.tavg-u-hxy-u.day.GLB", + "atmos.rsdscs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsdscs.tpt-u-hs-u.subhr.GLB", + "atmos.rsdt.tavg-u-hxy-u.day.GLB", + "atmos.rsdt.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsdt.tclmdc-u-hxy-u.1hr.GLB", + "atmos.rsdt.tpt-u-hs-u.subhr.GLB", + "atmos.rss.tavg-u-hxy-u.mon.GLB", + "atmos.rsu.tavg-alh-hxy-u.mon.GLB", + "atmos.rsu.tpt-alh-hs-u.subhr.GLB", + "atmos.rsu4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsucs.tavg-alh-hxy-u.mon.GLB", + "atmos.rsucs.tpt-alh-hs-u.subhr.GLB", + "atmos.rsucs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsus.tavg-u-hxy-u.day.GLB", + "atmos.rsus.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsus.tpt-u-hs-u.subhr.GLB", + "atmos.rsuscs.tavg-u-hxy-u.day.GLB", + "atmos.rsuscs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsuscs.tpt-u-hs-u.subhr.GLB", + "atmos.rsut.tavg-u-hxy-u.day.GLB", + "atmos.rsut.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsut.tclmdc-u-hxy-u.1hr.GLB", + "atmos.rsut.tpt-u-hs-u.subhr.GLB", + "atmos.rsut4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rsutcs.tavg-u-hxy-u.day.GLB", + "atmos.rsutcs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsutcs.tclmdc-u-hxy-u.1hr.GLB", + "atmos.rsutcs.tpt-u-hs-u.subhr.GLB", + "atmos.rsutcs4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rtmt.tavg-u-hxy-u.mon.GLB", + "atmos.rtmt.tpt-u-hs-u.subhr.GLB", + "atmos.rv850.tpt-850hPa-hxy-air.6hr.GLB", + "atmos.sci.tavg-u-hxy-u.mon.GLB", + "atmos.sci.tpt-u-hs-u.subhr.GLB", + "atmos.scldncl.tavg-u-hxy-scl.mon.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.mon.30S-90S", + "atmos.sfcWind.tmax-h10m-hxy-u.day.GLB", + "atmos.sfcWind.tmaxavg-h10m-hxy-u.mon.GLB", + "atmos.sfcWind.tpt-h10m-hs-u.subhr.GLB", + "atmos.smc.tavg-alh-hxy-u.mon.GLB", + "atmos.ta.tavg-700hPa-hxy-air.day.GLB", + "atmos.ta.tavg-850hPa-hxy-air.day.GLB", + "atmos.ta.tavg-al-hxy-u.day.GLB", + "atmos.ta.tavg-al-hxy-u.mon.30S-90S", + "atmos.ta.tavg-al-hxy-u.mon.GLB", + "atmos.ta.tavg-p19-hxy-air.mon.30S-90S", + "atmos.ta.tavg-p39-hy-air.day.GLB", + "atmos.ta.tavg-p39-hy-air.mon.GLB", + "atmos.ta.tpt-al-hs-u.subhr.GLB", + "atmos.tas.tavg-h2m-hxy-u.1hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.mon.30S-90S", + "atmos.tas.tmaxavg-h2m-hxy-u.mon.30S-90S", + "atmos.tas.tminavg-h2m-hxy-u.mon.30S-90S", + "atmos.tas.tpt-h2m-hs-u.subhr.GLB", + "atmos.tauu.tavg-u-hxy-u.day.GLB", + "atmos.tauu.tpt-u-hs-u.subhr.GLB", + "atmos.tauunoegw.tavg-p39-hy-air.day.GLB", + "atmos.tauunowgw.tavg-p39-hy-air.day.GLB", + "atmos.tauuogw.tavg-p39-hy-air.day.GLB", + "atmos.tauv.tavg-u-hxy-u.day.GLB", + "atmos.tauv.tpt-u-hs-u.subhr.GLB", + "atmos.tauvnogw.tavg-p39-hy-air.day.GLB", + "atmos.tauvogw.tavg-p39-hy-air.day.GLB", + "atmos.tnhus.tavg-al-hxy-u.mon.GLB", + "atmos.tnhus.tpt-al-hs-u.subhr.GLB", + "atmos.tnhusa.tavg-al-hxy-u.mon.GLB", + "atmos.tnhusa.tpt-al-hs-u.subhr.GLB", + "atmos.tnhusc.tavg-al-hxy-u.mon.GLB", + "atmos.tnhusc.tpt-al-hs-u.subhr.GLB", + "atmos.tnhusd.tavg-al-hxy-u.mon.GLB", + "atmos.tnhusd.tpt-al-hs-u.subhr.GLB", + "atmos.tnhusmp.tavg-al-hxy-u.mon.GLB", + "atmos.tnhusmp.tpt-al-hs-u.subhr.GLB", + "atmos.tnhuspbl.tavg-al-hxy-u.mon.GLB", + "atmos.tnhuspbl.tpt-al-hs-u.subhr.GLB", + "atmos.tnhusscp.tavg-al-hxy-u.mon.GLB", + "atmos.tnhusscp.tpt-al-hs-u.subhr.GLB", + "atmos.tnhusscpbl.tavg-al-hxy-u.mon.GLB", + "atmos.tnhusscpbl.tpt-al-hs-u.subhr.GLB", + "atmos.tnt.tavg-al-hxy-u.mon.GLB", + "atmos.tnt.tpt-al-hs-u.subhr.GLB", + "atmos.tnta.tavg-al-hxy-u.mon.GLB", + "atmos.tnta.tpt-al-hs-u.subhr.GLB", + "atmos.tntc.tavg-al-hxy-u.mon.GLB", + "atmos.tntc.tpt-al-hs-u.subhr.GLB", + "atmos.tntd.tavg-al-hxy-u.mon.GLB", + "atmos.tntd.tpt-al-hs-u.subhr.GLB", + "atmos.tntmp.tavg-al-hxy-u.mon.GLB", + "atmos.tntmp.tavg-p39-hy-air.day.GLB", + "atmos.tntmp.tavg-p39-hy-air.mon.GLB", + "atmos.tntmp.tpt-al-hs-u.subhr.GLB", + "atmos.tntpbl.tavg-al-hxy-u.mon.GLB", + "atmos.tntpbl.tpt-al-hs-u.subhr.GLB", + "atmos.tntr.tavg-al-hxy-u.mon.GLB", + "atmos.tntr.tpt-al-hs-u.subhr.GLB", + "atmos.tntrl.tavg-al-hxy-u.mon.GLB", + "atmos.tntrl.tavg-p39-hy-air.day.GLB", + "atmos.tntrl.tavg-p39-hy-air.mon.GLB", + "atmos.tntrl.tpt-al-hs-u.subhr.GLB", + "atmos.tntrlcs.tavg-al-hxy-u.mon.GLB", + "atmos.tntrlcs.tpt-al-hs-u.subhr.GLB", + "atmos.tntrs.tavg-al-hxy-u.mon.GLB", + "atmos.tntrs.tavg-p39-hy-air.day.GLB", + "atmos.tntrs.tavg-p39-hy-air.mon.GLB", + "atmos.tntrs.tpt-al-hs-u.subhr.GLB", + "atmos.tntrscs.tavg-al-hxy-u.mon.GLB", + "atmos.tntrscs.tpt-al-hs-u.subhr.GLB", + "atmos.tntscp.tavg-al-hxy-u.mon.GLB", + "atmos.tntscp.tpt-al-hs-u.subhr.GLB", + "atmos.tntscpbl.tavg-al-hxy-u.mon.GLB", + "atmos.tntscpbl.tpt-al-hs-u.subhr.GLB", + "atmos.ts.tavg-u-hxy-u.mon.30S-90S", + "atmos.ts.tpt-u-hs-u.subhr.GLB", + "atmos.ua.tavg-al-hxy-u.day.GLB", + "atmos.ua.tavg-al-hxy-u.mon.GLB", + "atmos.ua.tavg-p19-hxy-air.mon.30S-90S", + "atmos.ua.tavg-p39-hy-air.day.GLB", + "atmos.ua.tavg-p39-hy-air.mon.GLB", + "atmos.ua.tpt-al-hs-u.subhr.GLB", + "atmos.ua.tpt-h100m-hxy-u.1hr.GLB", + "atmos.uas.tavg-h10m-hxy-u.mon.30S-90S", + "atmos.uas.tpt-h10m-hs-u.subhr.GLB", + "atmos.uas.tpt-h10m-hxy-u.1hr.GLB", + "atmos.uas.tpt-h10m-hxy-u.6hr.GLB", + "atmos.utendepfd.tavg-p39-hy-air.day.GLB", + "atmos.utendepfd.tavg-p39-hy-air.mon.GLB", + "atmos.utendnogw.tavg-p39-hy-air.day.GLB", + "atmos.utendnogw.tavg-p39-hy-air.mon.GLB", + "atmos.utendogw.tavg-p39-hy-air.day.GLB", + "atmos.utendogw.tavg-p39-hy-air.mon.GLB", + "atmos.utendvtem.tavg-p39-hy-air.day.GLB", + "atmos.utendwtem.tavg-p39-hy-air.day.GLB", + "atmos.va.tavg-al-hxy-u.day.GLB", + "atmos.va.tavg-al-hxy-u.mon.GLB", + "atmos.va.tavg-p19-hxy-air.mon.30S-90S", + "atmos.va.tavg-p39-hy-air.mon.GLB", + "atmos.va.tpt-al-hs-u.subhr.GLB", + "atmos.va.tpt-h100m-hxy-u.1hr.GLB", + "atmos.vas.tavg-h10m-hxy-u.mon.30S-90S", + "atmos.vas.tpt-h10m-hs-u.subhr.GLB", + "atmos.vas.tpt-h10m-hxy-u.1hr.GLB", + "atmos.vas.tpt-h10m-hxy-u.6hr.GLB", + "atmos.vtem.tavg-p39-hy-air.day.GLB", + "atmos.vtem.tavg-p39-hy-air.mon.GLB", + "atmos.wap.tavg-500hPa-hxy-air.day.GLB", + "atmos.wap.tavg-al-hxy-u.day.GLB", + "atmos.wap.tavg-p19-hxy-air.mon.30S-90S", + "atmos.wap.tpt-al-hs-u.subhr.GLB", + "atmos.wtem.tavg-p39-hy-air.day.GLB", + "atmos.wtem.tavg-p39-hy-air.mon.GLB", + "atmos.zg.tavg-1000hPa-hxy-air.day.GLB", + "atmos.zg.tavg-500hPa-hxy-air.day.GLB", + "atmos.zg.tavg-al-hxy-u.day.GLB", + "atmos.zg.tavg-al-hxy-u.mon.GLB", + "atmos.zg.tavg-p19-hxy-air.mon.30S-90S", + "atmos.zg.tavg-p39-hy-air.day.GLB", + "atmos.zg.tavg-p39-hy-air.mon.GLB", + "atmos.zg.tpt-500hPa-hxy-air.6hr.GLB", + "atmos.zg.tpt-al-hs-u.subhr.GLB", + "atmos.zg.tpt-p3-hxy-air.6hr.GLB", + "atmos.zg.tpt-p7h-hxy-air.6hr.GLB", + "atmos.ztp.tavg-u-hxy-u.mon.GLB", + "atmosChem.c2h4.tavg-al-hxy-u.mon.GLB", + "atmosChem.c2h5oh.tavg-al-hxy-u.mon.GLB", + "atmosChem.c4h10.tavg-al-hxy-u.mon.GLB", + "atmosChem.cfc11.tavg-u-hm-u.mon.GLB", + "atmosChem.cfc113.tavg-u-hm-u.mon.GLB", + "atmosChem.cfc12.tavg-u-hm-u.mon.GLB", + "atmosChem.ch3oh.tavg-al-hxy-u.mon.GLB", + "atmosChem.ch4.tavg-al-hxy-u.mon.GLB", + "atmosChem.ch4.tavg-p19-hxy-air.mon.GLB", + "atmosChem.ch4.tavg-p39-hy-air.mon.GLB", + "atmosChem.ch4.tavg-u-hm-u.mon.GLB", + "atmosChem.ch4.tclm-p19-hxy-air.mon.GLB", + "atmosChem.ch4.tclm-u-hm-u.mon.GLB", + "atmosChem.ch4losssoil.tavg-u-hxy-u.mon.GLB", + "atmosChem.ch4ref.ti-al-hxy-u.fx.GLB", + "atmosChem.chegph2oo1d.tavg-al-hxy-u.mon.GLB", + "atmosChem.chepnh4.tavg-al-hxy-u.mon.GLB", + "atmosChem.chepno3.tavg-al-hxy-u.mon.GLB", + "atmosChem.dms.tavg-al-hxy-u.mon.30S-90S", + "atmosChem.dms.tavg-al-hxy-u.mon.GLB", + "atmosChem.do3chm.tavg-al-hxy-u.mon.GLB", + "atmosChem.dryh2.tavg-u-hxy-u.mon.GLB", + "atmosChem.dryhno3.tavg-u-hxy-u.mon.GLB", + "atmosChem.drynh3.tavg-u-hxy-u.mon.GLB", + "atmosChem.drynh4.tavg-u-hxy-u.mon.GLB", + "atmosChem.drynoy.tavg-u-hxy-u.mon.GLB", + "atmosChem.e90inst.tpt-al-hxy-u.mon.GLB", + "atmosChem.emiach4.tavg-u-hxy-u.mon.GLB", + "atmosChem.emiavnox.tavg-al-hxy-u.mon.GLB", + "atmosChem.emic2h4.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic2h5oh.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic2h6.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic3h6.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic3h8.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic4h10.tavg-u-hxy-u.mon.GLB", + "atmosChem.emich3oh.tavg-u-hxy-u.mon.GLB", + "atmosChem.emich4.tavg-u-hxy-u.mon.GLB", + "atmosChem.emih2.tavg-u-hxy-u.mon.GLB", + "atmosChem.emilkch4.tavg-u-hxy-u.mon.GLB", + "atmosChem.h2.tavg-al-hxy-u.mon.GLB", + "atmosChem.h2loss.tavg-al-hxy-u.mon.GLB", + "atmosChem.h2prod.tavg-al-hxy-u.mon.GLB", + "atmosChem.hcfc22.tavg-u-hm-u.mon.GLB", + "atmosChem.meanage.tavg-al-hxy-u.mon.GLB", + "atmosChem.meanage.tavg-p39-hy-air.mon.GLB", + "atmosChem.n2o.tavg-al-hxy-u.mon.GLB", + "atmosChem.n2o.tavg-p19-hxy-air.mon.GLB", + "atmosChem.n2o.tavg-p39-hy-air.mon.GLB", + "atmosChem.n2o.tavg-u-hm-u.mon.GLB", + "atmosChem.n2o.tclm-p19-hxy-air.mon.GLB", + "atmosChem.n2o.tclm-u-hm-u.mon.GLB", + "atmosChem.o3.tavg-al-hxy-u.mon.GLB", + "atmosChem.o3.tavg-p19-hxy-air.mon.GLB", + "atmosChem.o3.tavg-p39-hy-air.mon.GLB", + "atmosChem.o3.tclm-p19-hxy-air.mon.GLB", + "atmosChem.o3.tpt-al-hxy-u.mon.GLB", + "atmosChem.o3ref.tclm-al-hxy-u.fx.GLB", + "atmosChem.o3ref.ti-al-hxy-u.fx.GLB", + "atmosChem.o3ste.tavg-al-hxy-u.mon.GLB", + "atmosChem.rlutch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rlutcsch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rlutcso3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rluto3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsutch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsutcsch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsutcso3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsuto3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.stratch4loss.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropch4loss.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropch4lossoh.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropdo3chm.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropo3ste.tavg-al-hxy-u.mon.GLB", + "atmosChem.wethno3.tavg-al-hxy-u.mon.GLB", + "atmosChem.wetnh3.tavg-u-hxy-u.mon.GLB", + "atmosChem.wetnh4.tavg-u-hxy-u.mon.GLB", + "atmosChem.wetno3.tavg-al-hxy-u.mon.GLB", + "atmosChem.wetnoy.tavg-u-hxy-u.mon.GLB", + "land.areacellr.ti-u-hxy-u.fx.GLB", + "land.burntFractionAll.tavg-u-hxy-u.mon.GLB", + "land.cLand.tavg-u-hxy-lnd.mon.GLB", + "land.cSoil.tavg-d100cm-hxy-lnd.mon.GLB", + "land.cSoil.tavg-u-hxy-lnd.mon.GLB", + "land.cVeg.tavg-u-hxy-lnd.mon.GLB", + "land.dcw.tavg-u-hxy-lnd.day.GLB", + "land.dslw.tavg-u-hxy-lnd.day.GLB", + "land.evspsblpot.tavg-u-hxy-lnd.day.GLB", + "land.evspsblpot.tavg-u-hxy-lnd.mon.GLB", + "land.evspsblsoi.tavg-u-hxy-u.day.GLB", + "land.evspsblveg.tavg-u-hxy-u.day.GLB", + "land.fFire.tavg-u-hxy-lnd.mon.GLB", + "land.fFireAll.tavg-u-hxy-lnd.mon.GLB", + "land.fFireNat.tavg-u-hxy-lnd.mon.GLB", + "land.gpp.tavg-u-hxy-lnd.mon.GLB", + "land.grassFrac.tavg-u-hxy-u.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.day.GLB", + "land.mrrob.tavg-u-hxy-lnd.day.GLB", + "land.mrros.tavg-u-hxy-lnd.day.GLB", + "land.mrsfl.tavg-sl-hxy-lnd.day.GLB", + "land.mrsll.tavg-sl-hxy-lnd.day.GLB", + "land.mrso.tavg-u-hxy-lnd.day.GLB", + "land.mrsol.tavg-d10cm-hxy-lnd.day.GLB", + "land.mrsol.tavg-sl-hxy-lnd.day.GLB", + "land.mrsow.tavg-u-hxy-lnd.day.GLB", + "land.mrtws.tavg-u-hxy-lnd.day.GLB", + "land.nbp.tavg-u-hxy-lnd.mon.GLB", + "land.nep.tavg-u-hxy-lnd.mon.GLB", + "land.npp.tavg-u-hxy-lnd.mon.GLB", + "land.ra.tavg-u-hxy-lnd.mon.GLB", + "land.rh.tavg-u-hxy-lnd.mon.GLB", + "land.rivi.tavg-u-hxy-lnd.day.GLB", + "land.rivo.tavg-u-hxy-lnd.day.GLB", + "land.shrubFrac.tavg-u-hxy-u.mon.GLB", + "land.treeFrac.tavg-u-hxy-u.mon.GLB", + "land.tslsi.tavg-u-hxy-u.day.GLB", + "land.vegFrac.tavg-u-hxy-u.mon.GLB", + "land.vegHeight.tavg-u-hxy-veg.mon.GLB", + "land.wetlandCH4.tavg-u-hxy-lnd.mon.GLB", + "land.wtd.tavg-u-hxy-lnd.day.GLB", + "landIce.sbl.tavg-u-hxy-u.mon.GLB", + "landIce.sbl.tpt-u-hs-u.subhr.GLB", + "landIce.snc.tavg-u-hxy-lnd.day.GLB", + "landIce.snd.tavg-u-hxy-lnd.mon.GLB", + "landIce.snw.tavg-u-hxy-lnd.day.GLB", + "ocean.absscint.tavg-op4-hxy-sea.mon.GLB", + "ocean.agessc.tavg-ol-hxy-sea.mon.GLB", + "ocean.bigthetao.tavg-ol-hm-sea.mon.GLB", + "ocean.bigthetao.tavg-ol-hxy-sea.dec.GLB", + "ocean.bigthetao.tavg-op20bar-hxy-sea.day.GLB", + "ocean.chcint.tavg-op4-hxy-sea.mon.GLB", + "ocean.hfbasin.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpmadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpmdiff.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpsmadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfds.tavg-u-hxy-sea.mon.30S-90S", + "ocean.hfx.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfx.tavg-u-hxy-sea.day.GLB", + "ocean.hfx.tavg-u-hxy-sea.mon.GLB", + "ocean.hfy.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfy.tavg-u-hxy-sea.day.GLB", + "ocean.hfy.tavg-u-hxy-sea.mon.GLB", + "ocean.htovgyre.tavg-u-hyb-sea.mon.GLB", + "ocean.htovovrt.tavg-u-hyb-sea.mon.GLB", + "ocean.masscello.tavg-ol-hxy-sea.dec.GLB", + "ocean.masso.tavg-u-hm-sea.dec.GLB", + "ocean.masso.tavg-u-hm-sea.mon.GLB", + "ocean.mlotst.tavg-u-hxy-sea.day.GLB", + "ocean.mlotst.tavg-u-hxy-sea.mon.30S-90S", + "ocean.mlotst.tmax-u-hxy-sea.mon.GLB", + "ocean.mlotst.tmin-u-hxy-sea.mon.GLB", + "ocean.mpw.tavg-u-hxy-sea.mon.GLB", + "ocean.mpw.tpt-u-hxy-sea.3hr.GLB", + "ocean.mpwswell.tavg-u-hxy-sea.mon.GLB", + "ocean.mpwswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.mpwwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.mpwwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.msftbarot.tavg-u-hxy-sea.mon.GLB", + "ocean.msftm.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftm.tavg-rho-hyb-sea.mon.GLB", + "ocean.msfty.tavg-ol-ht-sea.mon.GLB", + "ocean.msfty.tavg-rho-ht-sea.mon.GLB", + "ocean.obvfsq.tavg-ol-hxy-sea.mon.GLB", + "ocean.pbo.tavg-u-hxy-sea.mon.GLB", + "ocean.pfscint.tavg-op4-hxy-sea.mon.GLB", + "ocean.phcint.tavg-op4-hxy-sea.mon.GLB", + "ocean.pso.tavg-u-hxy-sea.mon.GLB", + "ocean.scint.tavg-op4-hxy-sea.mon.GLB", + "ocean.sduo.tavg-u-hxy-sea.mon.GLB", + "ocean.sduo.tpt-u-hxy-sea.3hr.GLB", + "ocean.sdvo.tavg-u-hxy-sea.mon.GLB", + "ocean.sdvo.tpt-u-hxy-sea.3hr.GLB", + "ocean.sfx.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfx.tavg-u-hxy-sea.mon.GLB", + "ocean.sfy.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfy.tavg-u-hxy-sea.mon.GLB", + "ocean.sltbasin.tavg-u-hyb-sea.mon.GLB", + "ocean.sltovgyre.tavg-u-hyb-sea.mon.GLB", + "ocean.sltovovrt.tavg-u-hyb-sea.mon.GLB", + "ocean.so.tavg-ol-hm-sea.mon.GLB", + "ocean.so.tavg-ol-hxy-sea.dec.GLB", + "ocean.so.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.sob.tavg-u-hxy-sea.mon.GLB", + "ocean.sos.tavg-u-hm-sea.mon.30S-90S", + "ocean.sos.tavg-u-hm-sea.mon.GLB", + "ocean.swh.tavg-u-hxy-sea.mon.GLB", + "ocean.swh.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhmax.tmax-u-hxy-sea.mon.GLB", + "ocean.swhmax.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhswell.tavg-u-hxy-sea.mon.GLB", + "ocean.swhswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.swhwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.t20d.tavg-u-hxy-sea.mon.GLB", + "ocean.tauuo.tavg-u-hxy-sea.dec.GLB", + "ocean.tauvo.tavg-u-hxy-sea.dec.GLB", + "ocean.thetao.tavg-d2000m-hxy-sea.mon.GLB", + "ocean.thetao.tavg-d300m-hxy-sea.mon.GLB", + "ocean.thetao.tavg-d700m-hxy-sea.mon.GLB", + "ocean.thetao.tavg-ol-hm-sea.mon.GLB", + "ocean.thetao.tavg-ol-hxy-sea.dec.GLB", + "ocean.thetao.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.thetao.tavg-op20bar-hxy-sea.day.GLB", + "ocean.thetaot.tavg-u-hxy-sea.mon.GLB", + "ocean.thkcello.tavg-ol-hxy-sea.dec.GLB", + "ocean.tob.tavg-u-hxy-sea.mon.GLB", + "ocean.tos.tavg-u-hm-sea.mon.GLB", + "ocean.tos.tavg-u-hxy-sea.mon.30S-90S", + "ocean.tos.tpt-u-hxy-sea.3hr.GLB", + "ocean.tossq.tavg-u-hxy-sea.day.GLB", + "ocean.umo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.uo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.uos.tavg-u-hxy-sea.day.GLB", + "ocean.vmo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.vo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.volcello.tavg-ol-hxy-sea.dec.GLB", + "ocean.volcello.tavg-ol-hxy-sea.mon.GLB", + "ocean.volcello.tavg-ol-hxy-sea.yr.GLB", + "ocean.volcello.ti-ol-hxy-sea.fx.GLB", + "ocean.volo.tavg-u-hm-sea.dec.GLB", + "ocean.volo.tavg-u-hm-sea.mon.GLB", + "ocean.vos.tavg-u-hxy-sea.day.GLB", + "ocean.vsf.tavg-u-hxy-sea.mon.GLB", + "ocean.wdir.tavg-u-hxy-sea.mon.GLB", + "ocean.wdir.tpt-u-hxy-sea.3hr.GLB", + "ocean.wdirswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wdirswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wdirwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wdirwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.wfcorr.tavg-u-hxy-sea.mon.GLB", + "ocean.wfo.tavg-u-hxy-sea.mon.GLB", + "ocean.wmo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.wo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.wpdir.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdir.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpdirswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdirswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpdirwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdirwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpp.tavg-u-hxy-sea.mon.GLB", + "ocean.wpp.tpt-u-hxy-sea.3hr.GLB", + "ocean.wppswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wppswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wppwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wppwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.zfullo.tavg-ol-hxy-sea.yr.GLB", + "ocean.zos.tavg-u-hxy-sea.mon.30S-90S", + "ocean.zossq.tavg-u-hxy-sea.mon.GLB", + "ocean.zostoga.tavg-u-hm-sea.day.GLB", + "ocnBgchem.bacc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.calc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chl.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chl.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.chlcalc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chldiat.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chldiaz.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chlmisc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chlpico.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.dfe.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.dfe.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.dissic.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.dmso.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.fgco2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.graz.tavg-ol-hxy-sea.mon.30S-90S", + "ocnBgchem.intdic.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intdoc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intparag.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbfe.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbn.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbp.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbsi.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpcalcite.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpn2.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpoc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpp.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpp.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppcalc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppdiat.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppdiaz.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppmisc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppnitrate.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpppico.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.nh4.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.no3.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.ph.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phyc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phycalc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phydiat.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phydiaz.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phymisc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phypico.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.pp.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.spco2.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.zmeso.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zmicro.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zmisc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zooc.tavg-d0m-hxy-sea.mon.30S-90S", + "seaIce.evspsbl.tavg-u-hxy-si.mon.GLB", + "seaIce.prra.tavg-u-hxy-si.mon.GLB", + "seaIce.prsn.tavg-u-hxy-si.mon.GLB", + "seaIce.rlds.tavg-u-hxy-si.day.GLB", + "seaIce.rlds.tavg-u-hxy-si.mon.GLB", + "seaIce.rlus.tavg-u-hxy-si.day.GLB", + "seaIce.rlus.tavg-u-hxy-si.mon.GLB", + "seaIce.rsds.tavg-u-hxy-si.day.GLB", + "seaIce.rsds.tavg-u-hxy-si.mon.GLB", + "seaIce.rsus.tavg-u-hxy-si.day.GLB", + "seaIce.rsus.tavg-u-hxy-si.mon.GLB", + "seaIce.sbl.tavg-u-hxy-si.mon.GLB", + "seaIce.siage.tavg-u-hxy-si.day.GLB", + "seaIce.siage.tavg-u-hxy-si.mon.30S-90S", + "seaIce.siarea.tavg-u-hm-u.mon.NH", + "seaIce.siarea.tavg-u-hm-u.mon.SH", + "seaIce.siconc.tavg-u-hxy-u.mon.30S-90S", + "seaIce.siconca.tavg-u-hxy-u.day.GLB", + "seaIce.siconca.tavg-u-hxy-u.mon.GLB", + "seaIce.sidconcdyn.tavg-u-hxy-sea.mon.GLB", + "seaIce.sidconcth.tavg-u-hxy-sea.mon.GLB", + "seaIce.sidmassdyn.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthsi.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthwat.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmeltbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmeltlat.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmelttop.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassth.tavg-u-hxy-si.mon.GLB", + "seaIce.sieqthick.tavg-u-hxy-si.mon.GLB", + "seaIce.siextent.tavg-u-hm-u.mon.NH", + "seaIce.siextent.tavg-u-hm-u.mon.SH", + "seaIce.siflcondbot.tavg-u-hxy-si.day.GLB", + "seaIce.siflcondbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflcondtop.tavg-u-hxy-si.day.GLB", + "seaIce.siflcondtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sifllattop.tavg-u-hxy-si.day.GLB", + "seaIce.sifllattop.tavg-u-hxy-si.mon.GLB", + "seaIce.siflsensbot.tavg-u-hxy-si.day.GLB", + "seaIce.siflsensbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflsenstop.tavg-u-hxy-si.day.GLB", + "seaIce.siflsenstop.tavg-u-hxy-si.mon.GLB", + "seaIce.siflswdbot.tavg-u-hxy-si.day.GLB", + "seaIce.siflswdbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sihc.tavg-u-hxy-sea.day.GLB", + "seaIce.sihc.tavg-u-hxy-sea.mon.GLB", + "seaIce.sisndmassdyn.tavg-u-hxy-si.mon.GLB", + "seaIce.sisndmasssi.tavg-u-hxy-si.mon.GLB", + "seaIce.sisndmasswind.tavg-u-hxy-si.mon.GLB", + "seaIce.sisnhc.tavg-u-hxy-si.day.GLB", + "seaIce.sisnhc.tavg-u-hxy-si.mon.GLB", + "seaIce.sisnmass.tavg-u-hm-u.mon.NH", + "seaIce.sisnmass.tavg-u-hm-u.mon.SH", + "seaIce.sispeed.tavg-u-hxy-si.day.GLB", + "seaIce.sispeed.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-si.day.GLB", + "seaIce.sithick.tavg-u-hxy-si.mon.30S-90S", + "seaIce.sitimefrac.tavg-u-hxy-sea.day.GLB", + "seaIce.sitimefrac.tavg-u-hxy-sea.mon.30S-90S", + "seaIce.siu.tavg-u-hxy-si.day.GLB", + "seaIce.siu.tavg-u-hxy-si.mon.30S-90S", + "seaIce.siv.tavg-u-hxy-si.day.GLB", + "seaIce.siv.tavg-u-hxy-si.mon.30S-90S", + "seaIce.sivol.tavg-u-hm-u.mon.NH", + "seaIce.sivol.tavg-u-hm-u.mon.SH", + "seaIce.snc.tavg-u-hxy-si.mon.GLB", + "seaIce.snd.tavg-u-hxy-sn.day.GLB", + "seaIce.snd.tavg-u-hxy-sn.mon.30S-90S", + "seaIce.snm.tavg-u-hxy-si.mon.GLB", + "seaIce.snw.tavg-u-hxy-si.mon.GLB", + "seaIce.ts.tavg-u-hxy-si.day.GLB", + "seaIce.ts.tavg-u-hxy-si.mon.30S-90S" + ], + "Medium": [ + "atmos.co2.tavg-h2m-hxy-u.mon.GLB", + "atmos.hur.tavg-700hPa-hxy-air.day.GLB", + "atmos.hur.tpt-100hPa-hxy-u.6hr.GLB", + "atmos.hur.tpt-500hPa-hxy-air.6hr.GLB", + "atmos.hur.tpt-850hPa-hxy-air.6hr.GLB", + "atmos.hurs.tpt-h2m-hxy-u.3hr.GLB", + "atmos.noaahi2m.tavg-h2m-hxy-u.day.GLB", + "atmos.noaahi2m.tmax-h2m-hxy-u.day.GLB", + "atmos.pr.tavg-u-hxy-u.6hr.GLB", + "atmos.pr.tmax-u-hxy-u.6hr.GLB", + "atmos.ps.tpt-u-hxy-u.3hr.GLB", + "atmos.psitem.tavg-p39-hy-air.day.GLB", + "atmos.psl.tavg-u-hxy-u.6hr.GLB", + "atmos.rlds.tavg-u-hxy-u.3hr.GLB", + "atmos.rls.tavg-u-hxy-u.day.GLB", + "atmos.rsds.tavg-u-hxy-u.3hr.GLB", + "atmos.rsdsdiff.tavg-u-hxy-u.day.GLB", + "atmos.rss.tavg-u-hxy-u.day.GLB", + "atmos.rv850.tavg-850hPa-hxy-air.6hr.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.3hr.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.6hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.6hr.GLB", + "atmos.tauunoegw.tavg-p19-hxy-air.mon.GLB", + "atmos.tauunowgw.tavg-p19-hxy-air.mon.GLB", + "atmos.tauuogw.tavg-p19-hxy-air.mon.GLB", + "atmos.tauupbl.tavg-u-hxy-u.day.GLB", + "atmos.tauvnogw.tavg-p19-hxy-air.mon.GLB", + "atmos.tauvogw.tavg-p19-hxy-air.mon.GLB", + "atmos.tauvpbl.tavg-u-hxy-u.day.GLB", + "atmos.tdps.tavg-h2m-hxy-u.day.GLB", + "atmos.tdps.tavg-h2m-hxy-u.mon.GLB", + "atmos.tntc.tavg-p39-hy-air.mon.GLB", + "atmos.tntnogw.tavg-p39-hy-air.mon.GLB", + "atmos.tntogw.tavg-p39-hy-air.mon.GLB", + "atmos.tntrlcs.tavg-p39-hy-air.mon.GLB", + "atmos.tntrscs.tavg-p39-hy-air.mon.GLB", + "atmos.tntscp.tavg-p39-hy-air.mon.GLB", + "atmos.ts.tavg-u-hxy-u.day.GLB", + "atmos.ua.tavg-h100m-hxy-u.3hr.GLB", + "atmos.ua.tpt-200hPa-hxy-u.6hr.GLB", + "atmos.uas.tavg-h10m-hxy-u.6hr.GLB", + "atmos.utendnogw.tavg-p19-hxy-air.day.GLB", + "atmos.utendnogw.tavg-p19-hxy-air.mon.GLB", + "atmos.utendogw.tavg-p19-hxy-air.day.GLB", + "atmos.utendogw.tavg-p19-hxy-air.mon.GLB", + "atmos.va.tavg-h100m-hxy-u.3hr.GLB", + "atmos.va.tpt-200hPa-hxy-u.6hr.GLB", + "atmos.vas.tavg-h10m-hxy-u.6hr.GLB", + "atmos.vtendnogw.tavg-p19-hxy-air.day.GLB", + "atmos.vtendnogw.tavg-p19-hxy-air.mon.GLB", + "atmos.vtendogw.tavg-p19-hxy-air.day.GLB", + "atmos.vtendogw.tavg-p19-hxy-air.mon.GLB", + "atmos.wbgt.tavg-h2m-hxy-u.day.GLB", + "atmos.wbgt.tmax-h2m-hxy-u.day.GLB", + "atmos.zg.tavg-1000hPa-hxy-air.6hr.GLB", + "atmos.zg.tpt-700hPa-hxy-u.6hr.GLB", + "atmos.zg.tpt-925hPa-hxy-u.6hr.GLB", + "land.baresoilFrac.tavg-u-hxy-u.yr.GLB", + "land.cLitter.tavg-u-hxy-lnd.mon.GLB", + "land.cProduct.tavg-u-hxy-lnd.mon.GLB", + "land.cropFrac.tavg-u-hxy-u.yr.GLB", + "land.grassFrac.tavg-u-hxy-u.yr.GLB", + "land.irrDem.tavg-u-hxy-u.day.GLB", + "land.irrGw.tavg-u-hxy-u.day.GLB", + "land.irrLut.tavg-u-hxy-u.day.GLB", + "land.irrSurf.tavg-u-hxy-u.day.GLB", + "land.mrro.tavg-u-hxy-lnd.3hr.GLB", + "land.mrros.tavg-u-hxy-lnd.3hr.GLB", + "land.mrsol.tpt-d10cm-hxy-lnd.3hr.GLB", + "land.residualFrac.tavg-u-hxy-u.yr.GLB", + "land.rzwc.tavg-u-hxy-lnd.day.GLB", + "land.shrubFrac.tavg-u-hxy-u.yr.GLB", + "land.treeFrac.tavg-u-hxy-u.yr.GLB", + "land.vegFrac.tavg-u-hxy-u.yr.GLB", + "landIce.snd.tavg-u-hxy-lnd.day.GLB", + "ocean.evspsbl.tavg-u-hxy-ifs.mon.GLB", + "ocean.ficeberg.tavg-ol-hxy-sea.mon.GLB", + "ocean.ficeberg.tavg-u-hxy-sea.mon.GLB", + "ocean.friver.tavg-u-hxy-sea.mon.GLB", + "ocean.hfacrossline.tavg-u-ht-sea.mon.GLB", + "ocean.hfevapds.tavg-u-hxy-ifs.mon.GLB", + "ocean.hfibthermds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfibthermds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfrainds.tavg-u-hxy-ifs.mon.GLB", + "ocean.hfrunoffds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfrunoffds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfsnthermds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfsnthermds.tavg-u-hxy-sea.mon.GLB", + "ocean.mfo.tavg-u-ht-sea.mon.GLB", + "ocean.msftmmpa.tavg-ol-hyb-sea.mon.GLB", + "ocean.sfacrossline.tavg-u-ht-sea.mon.GLB", + "ocean.sfdsi.tavg-u-hxy-sea.mon.GLB", + "ocean.sfriver.tavg-u-hxy-sea.mon.GLB", + "ocean.siflfwbot.tavg-u-hxy-sea.mon.GLB", + "ocean.so.tavg-ol-hxy-sea.day.GLB", + "ocean.t20d.tavg-u-hxy-sea.day.GLB", + "ocean.tnkebto.tavg-u-hxy-sea.yr.GLB", + "ocean.vsfcorr.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfevap.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfpr.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfriver.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfsit.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.arag.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.arag.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.calc.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.calc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chl.tavg-d0m-hxy-sea.day.GLB", + "ocnBgchem.chl.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chl.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.co3.tavg-d0m-hxy-sea.day.GLB", + "ocnBgchem.co3.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.co3satarag.tavg-d0m-hxy-sea.day.GLB", + "ocnBgchem.co3satarag.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.dfe.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissic.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissoc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.epsi.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.expc.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.expc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.expcalc.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.intpp.tavg-u-hxy-sea.day.GLB", + "ocnBgchem.nh4.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.no3.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.no3.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.o2.tavg-d0m-hxy-sea.day.GLB", + "ocnBgchem.o2.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.o2.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.o2.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.ph.tavg-d0m-hxy-sea.day.GLB", + "ocnBgchem.ph.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.ph.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.phyc.tavg-d0m-hxy-sea.day.GLB", + "ocnBgchem.phyc.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.phyc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phyc.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.po4.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.pp.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.si.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.si.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.spco2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.talk.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zooc.tavg-ol-hxy-sea.mon.GLB", + "seaIce.sfdsi.tavg-u-hxy-si.mon.GLB", + "seaIce.siage.tavg-u-hxy-si.mon.GLB", + "seaIce.siarea.tavg-u-hm-u.day.NH", + "seaIce.siarea.tavg-u-hm-u.day.SH", + "seaIce.siareaacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.sicompstren.tavg-u-hxy-si.mon.GLB", + "seaIce.sidivvel.tpt-u-hxy-si.mon.GLB", + "seaIce.sidmasstranx.tavg-u-hxy-u.mon.GLB", + "seaIce.sidmasstrany.tavg-u-hxy-u.mon.GLB", + "seaIce.sidragbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidragtop.tavg-u-hxy-si.mon.GLB", + "seaIce.siextent.tavg-u-hm-u.day.NH", + "seaIce.siextent.tavg-u-hm-u.day.SH", + "seaIce.sifb.tavg-u-hxy-si.day.GLB", + "seaIce.sifb.tavg-u-hxy-si.mon.GLB", + "seaIce.siflfwbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflfwdrain.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcecoriolx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcecorioly.tavg-u-hxy-si.mon.GLB", + "seaIce.siforceintstrx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforceintstry.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcetiltx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcetilty.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdconc.tavg-u-hxy-si.day.GLB", + "seaIce.siitdconc.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdsnconc.tavg-u-hxy-si.day.GLB", + "seaIce.siitdsnconc.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdsnthick.tavg-u-hxy-si.day.GLB", + "seaIce.siitdsnthick.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdthick.tavg-u-hxy-si.day.GLB", + "seaIce.siitdthick.tavg-u-hxy-si.mon.GLB", + "seaIce.simassacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.simpconc.tavg-u-hxy-si.day.GLB", + "seaIce.simpconc.tavg-u-hxy-si.mon.GLB", + "seaIce.simpeffconc.tavg-u-hxy-si.day.GLB", + "seaIce.simpeffconc.tavg-u-hxy-si.mon.GLB", + "seaIce.simprefrozen.tavg-u-hxy-simp.day.GLB", + "seaIce.simprefrozen.tavg-u-hxy-simp.mon.GLB", + "seaIce.simpthick.tavg-u-hxy-si.day.GLB", + "seaIce.simpthick.tavg-u-hxy-simp.mon.GLB", + "seaIce.sirdgconc.tavg-u-hxy-si.day.GLB", + "seaIce.sirdgconc.tavg-u-hxy-si.mon.GLB", + "seaIce.sisali.tavg-u-hxy-si.day.GLB", + "seaIce.sisali.tavg-u-hxy-si.mon.GLB", + "seaIce.sisaltmass.tavg-u-hxy-si.day.GLB", + "seaIce.sisaltmass.tavg-u-hxy-si.mon.GLB", + "seaIce.sishearvel.tpt-u-hxy-si.mon.GLB", + "seaIce.sisnmass.tavg-u-hm-u.day.NH", + "seaIce.sisnmass.tavg-u-hm-u.day.SH", + "seaIce.sisnmassacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.sistressave.tpt-u-hxy-si.mon.GLB", + "seaIce.sistressmax.tpt-u-hxy-si.mon.GLB", + "seaIce.sistrxdtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sistrxubot.tavg-u-hxy-si.mon.GLB", + "seaIce.sistrydtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sistryubot.tavg-u-hxy-si.mon.GLB", + "seaIce.sitempbot.tavg-u-hxy-si.day.GLB", + "seaIce.sitempbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sitempsnic.tavg-u-hxy-si.day.GLB", + "seaIce.sitempsnic.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-sir.day.GLB", + "seaIce.sithick.tavg-u-hxy-sir.mon.GLB", + "seaIce.sivol.tavg-u-hm-u.day.NH", + "seaIce.sivol.tavg-u-hm-u.day.SH" + ], + "Low": [ + "aerosol.ccldncl.tavg-u-hxy-ccl.day.GLB", + "aerosol.sfpm1.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.sfpm10.tavg-h2m-hxy-u.1hr.GLB", + "atmos.cldnci.tavg-u-hxy-cl.day.GLB", + "atmos.cldnvi.tavg-u-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.1hr.GLB", + "atmos.hurs.tmin-h2m-hxy-crp.day.GLB", + "atmos.loadbc.tavg-u-hxy-u.day.GLB", + "atmos.loaddust.tavg-u-hxy-u.day.GLB", + "atmos.loadnh4.tavg-u-hxy-u.day.GLB", + "atmos.loadno3.tavg-u-hxy-u.day.GLB", + "atmos.loadoa.tavg-u-hxy-u.day.GLB", + "atmos.loadpoa.tavg-u-hxy-u.day.GLB", + "atmos.loadso4.tavg-u-hxy-u.day.GLB", + "atmos.loadsoa.tavg-u-hxy-u.day.GLB", + "atmos.loadss.tavg-u-hxy-u.day.GLB", + "atmos.pr.tavg-u-hxy-crp.day.GLB", + "atmos.reffcclwtop.tavg-u-hxy-ccl.day.GLB", + "atmos.reffsclwtop.tavg-u-hxy-scl.day.GLB", + "atmos.rsds.tavg-u-hxy-u.1hr.GLB", + "atmos.rsdscsdiff.tavg-u-hxy-u.day.GLB", + "atmos.scldncl.tavg-u-hxy-scl.day.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.1hr.GLB", + "atmos.tas.tmax-h2m-hxy-crp.day.GLB", + "atmos.tas.tmin-h2m-hxy-crp.day.GLB", + "atmos.zfull.ti-al-hxy-u.fx.GLB", + "atmosChem.drynh3.tavg-u-hxy-u.day.GLB", + "atmosChem.drynh4.tavg-u-hxy-u.day.GLB", + "atmosChem.drynoy.tavg-u-hxy-u.day.GLB", + "atmosChem.wetnh3.tavg-u-hxy-u.day.GLB", + "atmosChem.wetnh4.tavg-u-hxy-u.day.GLB", + "atmosChem.wetnoy.tavg-u-hxy-u.day.GLB", + "land.baresoilFrac.tavg-u-hxy-u.mon.GLB", + "land.c3PftFrac.tavg-u-hxy-u.mon.GLB", + "land.c4PftFrac.tavg-u-hxy-u.mon.GLB", + "land.cropFrac.tavg-u-hxy-u.mon.GLB", + "land.cropFracC3.tavg-u-hxy-u.mon.GLB", + "land.cropFracC4.tavg-u-hxy-u.mon.GLB", + "land.fHarvestToAtmos.tavg-u-hxy-lnd.mon.GLB", + "land.irrLut.tavg-u-hxy-multi.mon.GLB", + "land.lai.tavg-u-hxy-lnd.day.GLB", + "land.mrsol.tavg-sl-hxy-lnd.mon.GLB", + "land.pastureFrac.tavg-u-hxy-u.mon.GLB", + "land.pastureFracC3.tavg-u-hxy-u.mon.GLB", + "land.pastureFracC4.tavg-u-hxy-u.mon.GLB", + "land.prveg.tavg-u-hxy-lnd.mon.GLB", + "land.residualFrac.tavg-u-hxy-u.mon.GLB", + "land.tas.tavg-u-hxy-u.1hr.GLB", + "land.tran.tavg-u-hxy-lnd.mon.GLB", + "land.tsl.tavg-sl-hxy-lnd.mon.GLB", + "ocean.difmxybo.tavg-ol-hxy-sea.yr.GLB", + "ocean.difmxylo.tavg-ol-hxy-sea.yr.GLB", + "ocean.diftrblo.tavg-ol-hxy-sea.yr.GLB", + "ocean.diftrelo.tavg-ol-hxy-sea.yr.GLB", + "ocean.difvho.tavg-ol-hxy-sea.yr.GLB", + "ocean.difvso.tavg-ol-hxy-sea.yr.GLB", + "ocean.dispkexyfo.tavg-u-hxy-sea.yr.GLB", + "ocean.dxto.ti-u-hxy-u.fx.GLB", + "ocean.dxuo.ti-u-hxy-u.fx.GLB", + "ocean.dxvo.ti-u-hxy-u.fx.GLB", + "ocean.dyto.ti-u-hxy-u.fx.GLB", + "ocean.dyuo.ti-u-hxy-u.fx.GLB", + "ocean.dyvo.ti-u-hxy-u.fx.GLB", + "ocean.mlotstsq.tavg-u-hxy-sea.mon.GLB", + "ocean.msftmmpa.tavg-rho-hyb-sea.mon.GLB", + "ocean.msftmsmpa.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftypa.tavg-ol-ht-sea.mon.GLB", + "ocean.msftypa.tavg-rho-ht-sea.mon.GLB", + "ocean.ocontempdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontempmint.tavg-u-hxy-sea.yr.GLB", + "ocean.ocontemppadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemppmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemppsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemprmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemptend.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottempdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottempmint.tavg-u-hxy-sea.yr.GLB", + "ocean.opottemppadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemppmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemppsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemprmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemptend.tavg-ol-hxy-sea.dec.GLB", + "ocean.osaltdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpsmadvect.tavg-ol-hxy-sea.mon.GLB", + "ocean.osaltpsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltrmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osalttend.tavg-ol-hxy-sea.yr.GLB", + "ocean.rsdoabsorb.tavg-ol-hxy-sea.yr.GLB", + "ocean.somint.tavg-u-hxy-sea.yr.GLB", + "ocean.sossq.tavg-u-hxy-sea.mon.GLB", + "ocean.thkcelluo.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcellvo.tavg-ol-hxy-sea.mon.GLB", + "ocean.tnpeo.tavg-u-hxy-sea.yr.GLB", + "ocean.tossq.tavg-u-hxy-sea.mon.GLB" + ] + }, + "amip-irr": { + "Core": [ + "atmos.areacella.ti-u-hxy-u.fx.GLB", + "atmos.cl.tavg-al-hxy-u.mon.GLB", + "atmos.cli.tavg-al-hxy-u.mon.GLB", + "atmos.clivi.tavg-u-hxy-u.mon.GLB", + "atmos.clt.tavg-u-hxy-u.day.GLB", + "atmos.clt.tavg-u-hxy-u.mon.GLB", + "atmos.clw.tavg-al-hxy-u.mon.GLB", + "atmos.clwvi.tavg-u-hxy-u.mon.GLB", + "atmos.evspsbl.tavg-u-hxy-u.mon.GLB", + "atmos.hfls.tavg-u-hxy-u.mon.GLB", + "atmos.hfss.tavg-u-hxy-u.mon.GLB", + "atmos.hur.tavg-p19-hxy-air.mon.GLB", + "atmos.hur.tavg-p19-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.6hr.GLB", + "atmos.hurs.tavg-h2m-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.mon.GLB", + "atmos.hus.tavg-p19-hxy-u.day.GLB", + "atmos.hus.tavg-p19-hxy-u.mon.GLB", + "atmos.huss.tavg-h2m-hxy-u.day.GLB", + "atmos.huss.tavg-h2m-hxy-u.mon.GLB", + "atmos.huss.tpt-h2m-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.1hr.GLB", + "atmos.pr.tavg-u-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.day.GLB", + "atmos.pr.tavg-u-hxy-u.mon.GLB", + "atmos.prc.tavg-u-hxy-u.mon.GLB", + "atmos.prsn.tavg-u-hxy-u.mon.GLB", + "atmos.prw.tavg-u-hxy-u.mon.GLB", + "atmos.ps.tavg-u-hxy-u.day.GLB", + "atmos.ps.tavg-u-hxy-u.mon.GLB", + "atmos.psl.tavg-u-hxy-u.day.GLB", + "atmos.psl.tavg-u-hxy-u.mon.GLB", + "atmos.rlds.tavg-u-hxy-u.mon.GLB", + "atmos.rldscs.tavg-u-hxy-u.mon.GLB", + "atmos.rlus.tavg-u-hxy-u.mon.GLB", + "atmos.rluscs.tavg-u-hxy-u.mon.GLB", + "atmos.rlut.tavg-u-hxy-u.mon.GLB", + "atmos.rlutcs.tavg-u-hxy-u.mon.GLB", + "atmos.rsds.tavg-u-hxy-u.day.GLB", + "atmos.rsds.tavg-u-hxy-u.mon.GLB", + "atmos.rsdscs.tavg-u-hxy-u.mon.GLB", + "atmos.rsdt.tavg-u-hxy-u.mon.GLB", + "atmos.rsus.tavg-u-hxy-u.mon.GLB", + "atmos.rsuscs.tavg-u-hxy-u.mon.GLB", + "atmos.rsut.tavg-u-hxy-u.mon.GLB", + "atmos.rsutcs.tavg-u-hxy-u.mon.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.day.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.mon.GLB", + "atmos.sftlf.ti-u-hxy-u.fx.GLB", + "atmos.ta.tavg-p19-hxy-air.day.GLB", + "atmos.ta.tavg-p19-hxy-air.mon.GLB", + "atmos.ta.tpt-p3-hxy-air.6hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.day.GLB", + "atmos.tas.tavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tmax-h2m-hxy-u.day.GLB", + "atmos.tas.tmaxavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tmin-h2m-hxy-u.day.GLB", + "atmos.tas.tminavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tpt-h2m-hxy-u.3hr.GLB", + "atmos.tauu.tavg-u-hxy-u.mon.GLB", + "atmos.tauv.tavg-u-hxy-u.mon.GLB", + "atmos.ts.tavg-u-hxy-u.mon.GLB", + "atmos.ua.tavg-p19-hxy-air.day.GLB", + "atmos.ua.tavg-p19-hxy-air.mon.GLB", + "atmos.ua.tpt-p3-hxy-air.6hr.GLB", + "atmos.uas.tavg-h10m-hxy-u.day.GLB", + "atmos.uas.tavg-h10m-hxy-u.mon.GLB", + "atmos.uas.tpt-h10m-hxy-u.3hr.GLB", + "atmos.va.tavg-p19-hxy-air.day.GLB", + "atmos.va.tavg-p19-hxy-air.mon.GLB", + "atmos.va.tpt-p3-hxy-air.6hr.GLB", + "atmos.vas.tavg-h10m-hxy-u.day.GLB", + "atmos.vas.tavg-h10m-hxy-u.mon.GLB", + "atmos.vas.tpt-h10m-hxy-u.3hr.GLB", + "atmos.wap.tavg-p19-hxy-air.mon.GLB", + "atmos.wap.tavg-p19-hxy-u.day.GLB", + "atmos.zg.tavg-p19-hxy-air.day.GLB", + "atmos.zg.tavg-p19-hxy-air.mon.GLB", + "land.evspsblsoi.tavg-u-hxy-lnd.mon.GLB", + "land.evspsblveg.tavg-u-hxy-lnd.mon.GLB", + "land.lai.tavg-u-hxy-lnd.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.mon.GLB", + "land.mrros.tavg-u-hxy-lnd.mon.GLB", + "land.mrso.tavg-u-hxy-lnd.mon.GLB", + "land.mrsofc.ti-u-hxy-lnd.fx.GLB", + "land.mrsol.tavg-d10cm-hxy-lnd.mon.GLB", + "land.orog.ti-u-hxy-u.fx.GLB", + "land.rootd.ti-u-hxy-lnd.fx.GLB", + "land.sftgif.ti-u-hxy-u.fx.GLB", + "land.slthick.ti-sl-hxy-lnd.fx.GLB", + "landIce.mrfso.tavg-u-hxy-lnd.mon.GLB", + "landIce.snc.tavg-u-hxy-lnd.mon.GLB", + "landIce.snw.tavg-u-hxy-lnd.mon.GLB", + "ocean.areacello.ti-u-hxy-u.fx.GLB", + "ocean.basin.ti-u-hxy-u.fx.GLB", + "ocean.bigthetao.tavg-ol-hxy-sea.mon.GLB", + "ocean.deptho.ti-u-hxy-sea.fx.GLB", + "ocean.hfds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfgeou.ti-u-hxy-sea.fx.GLB", + "ocean.masscello.tavg-ol-hxy-sea.mon.GLB", + "ocean.masscello.ti-ol-hxy-sea.fx.GLB", + "ocean.mlotst.tavg-u-hxy-sea.mon.GLB", + "ocean.sftof.ti-u-hxy-u.fx.GLB", + "ocean.so.tavg-ol-hxy-sea.mon.GLB", + "ocean.sos.tavg-u-hxy-sea.day.GLB", + "ocean.sos.tavg-u-hxy-sea.mon.GLB", + "ocean.tauuo.tavg-u-hxy-sea.mon.GLB", + "ocean.tauvo.tavg-u-hxy-sea.mon.GLB", + "ocean.thetao.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcello.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcello.ti-ol-hxy-sea.fx.GLB", + "ocean.tos.tavg-u-hxy-sea.day.GLB", + "ocean.tos.tavg-u-hxy-sea.mon.GLB", + "ocean.umo.tavg-ol-hxy-sea.mon.GLB", + "ocean.uo.tavg-ol-hxy-sea.mon.GLB", + "ocean.vmo.tavg-ol-hxy-sea.mon.GLB", + "ocean.vo.tavg-ol-hxy-sea.mon.GLB", + "ocean.wmo.tavg-ol-hxy-sea.mon.GLB", + "ocean.wo.tavg-ol-hxy-sea.mon.GLB", + "ocean.zos.tavg-u-hxy-sea.day.GLB", + "ocean.zos.tavg-u-hxy-sea.mon.GLB", + "ocean.zostoga.tavg-u-hm-sea.mon.GLB", + "seaIce.siconc.tavg-u-hxy-u.day.GLB", + "seaIce.siconc.tavg-u-hxy-u.mon.GLB", + "seaIce.simass.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-si.mon.GLB", + "seaIce.sitimefrac.tavg-u-hxy-sea.mon.GLB", + "seaIce.siu.tavg-u-hxy-si.mon.GLB", + "seaIce.siv.tavg-u-hxy-si.mon.GLB", + "seaIce.snd.tavg-u-hxy-sn.mon.GLB", + "seaIce.ts.tavg-u-hxy-si.mon.GLB" + ], + "High": [ + "atmos.evspsbl.tavg-u-hxy-lnd.day.GLB", + "atmos.hurs.tmax-h2m-hxy-u.day.GLB", + "atmos.hurs.tmin-h2m-hxy-u.day.GLB", + "atmos.rlds.tavg-u-hxy-u.day.GLB", + "atmos.rlus.tavg-u-hxy-u.day.GLB", + "land.evspsblpot.tavg-u-hxy-lnd.day.GLB" + ], + "Medium": [ + "aerosol.o3.tmax-h2m-hxy-u.day.GLB", + "aerosol.sfpm1.tavg-h2m-hxy-u.day.GLB", + "aerosol.sfpm10.tavg-h2m-hxy-u.day.GLB", + "aerosol.sfpm25.tavg-h2m-hxy-u.day.GLB", + "atmos.rsdsdiff.tavg-u-hxy-u.day.GLB", + "land.irrDem.tavg-u-hxy-u.day.GLB", + "land.irrGw.tavg-u-hxy-u.day.GLB", + "land.irrLut.tavg-u-hxy-u.day.GLB", + "land.irrSurf.tavg-u-hxy-u.day.GLB", + "land.mrso.tavg-u-hxy-lnd.day.GLB", + "land.rzwc.tavg-u-hxy-lnd.day.GLB" + ], + "Low": [ + "atmos.co2.tavg-h2m-hxy-u.mon.GLB", + "atmos.hurs.tavg-h2m-hxy-u.1hr.GLB", + "atmos.hurs.tmin-h2m-hxy-crp.day.GLB", + "atmos.pr.tavg-u-hxy-crp.day.GLB", + "atmos.rsds.tavg-u-hxy-u.1hr.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.1hr.GLB", + "atmos.sfcWind.tmax-h10m-hxy-u.day.GLB", + "atmos.tas.tmax-h2m-hxy-crp.day.GLB", + "atmos.tas.tmin-h2m-hxy-crp.day.GLB", + "atmosChem.emich4.tavg-u-hxy-u.mon.GLB", + "land.c3PftFrac.tavg-u-hxy-u.mon.GLB", + "land.c4PftFrac.tavg-u-hxy-u.mon.GLB", + "land.cropFracC3.tavg-u-hxy-u.mon.GLB", + "land.cropFracC4.tavg-u-hxy-u.mon.GLB", + "land.cSoil.tavg-u-hxy-lnd.mon.GLB", + "land.fHarvestToAtmos.tavg-u-hxy-lnd.mon.GLB", + "land.irrLut.tavg-u-hxy-multi.mon.GLB", + "land.lai.tavg-u-hxy-lnd.day.GLB", + "land.pastureFrac.tavg-u-hxy-u.mon.GLB", + "land.pastureFracC3.tavg-u-hxy-u.mon.GLB", + "land.pastureFracC4.tavg-u-hxy-u.mon.GLB", + "land.tas.tavg-u-hxy-u.1hr.GLB" + ] + }, + "amip-m4K": { + "Core": [ + "atmos.areacella.ti-u-hxy-u.fx.GLB", + "atmos.cl.tavg-al-hxy-u.mon.GLB", + "atmos.cli.tavg-al-hxy-u.mon.GLB", + "atmos.clivi.tavg-u-hxy-u.mon.GLB", + "atmos.clt.tavg-u-hxy-u.day.GLB", + "atmos.clt.tavg-u-hxy-u.mon.GLB", + "atmos.clw.tavg-al-hxy-u.mon.GLB", + "atmos.clwvi.tavg-u-hxy-u.mon.GLB", + "atmos.evspsbl.tavg-u-hxy-u.mon.GLB", + "atmos.hfls.tavg-u-hxy-u.mon.GLB", + "atmos.hfss.tavg-u-hxy-u.mon.GLB", + "atmos.hur.tavg-p19-hxy-air.mon.GLB", + "atmos.hur.tavg-p19-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.6hr.GLB", + "atmos.hurs.tavg-h2m-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.mon.GLB", + "atmos.hus.tavg-p19-hxy-u.day.GLB", + "atmos.hus.tavg-p19-hxy-u.mon.GLB", + "atmos.huss.tavg-h2m-hxy-u.day.GLB", + "atmos.huss.tavg-h2m-hxy-u.mon.GLB", + "atmos.huss.tpt-h2m-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.1hr.GLB", + "atmos.pr.tavg-u-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.day.GLB", + "atmos.pr.tavg-u-hxy-u.mon.GLB", + "atmos.prc.tavg-u-hxy-u.mon.GLB", + "atmos.prsn.tavg-u-hxy-u.mon.GLB", + "atmos.prw.tavg-u-hxy-u.mon.GLB", + "atmos.ps.tavg-u-hxy-u.day.GLB", + "atmos.ps.tavg-u-hxy-u.mon.GLB", + "atmos.psl.tavg-u-hxy-u.day.GLB", + "atmos.psl.tavg-u-hxy-u.mon.GLB", + "atmos.rlds.tavg-u-hxy-u.mon.GLB", + "atmos.rldscs.tavg-u-hxy-u.mon.GLB", + "atmos.rlus.tavg-u-hxy-u.mon.GLB", + "atmos.rluscs.tavg-u-hxy-u.mon.GLB", + "atmos.rlut.tavg-u-hxy-u.mon.GLB", + "atmos.rlutcs.tavg-u-hxy-u.mon.GLB", + "atmos.rsds.tavg-u-hxy-u.day.GLB", + "atmos.rsds.tavg-u-hxy-u.mon.GLB", + "atmos.rsdscs.tavg-u-hxy-u.mon.GLB", + "atmos.rsdt.tavg-u-hxy-u.mon.GLB", + "atmos.rsus.tavg-u-hxy-u.mon.GLB", + "atmos.rsuscs.tavg-u-hxy-u.mon.GLB", + "atmos.rsut.tavg-u-hxy-u.mon.GLB", + "atmos.rsutcs.tavg-u-hxy-u.mon.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.day.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.mon.GLB", + "atmos.sftlf.ti-u-hxy-u.fx.GLB", + "atmos.ta.tavg-p19-hxy-air.day.GLB", + "atmos.ta.tavg-p19-hxy-air.mon.GLB", + "atmos.ta.tpt-p3-hxy-air.6hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.day.GLB", + "atmos.tas.tavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tmax-h2m-hxy-u.day.GLB", + "atmos.tas.tmaxavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tmin-h2m-hxy-u.day.GLB", + "atmos.tas.tminavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tpt-h2m-hxy-u.3hr.GLB", + "atmos.tauu.tavg-u-hxy-u.mon.GLB", + "atmos.tauv.tavg-u-hxy-u.mon.GLB", + "atmos.ts.tavg-u-hxy-u.mon.GLB", + "atmos.ua.tavg-p19-hxy-air.day.GLB", + "atmos.ua.tavg-p19-hxy-air.mon.GLB", + "atmos.ua.tpt-p3-hxy-air.6hr.GLB", + "atmos.uas.tavg-h10m-hxy-u.day.GLB", + "atmos.uas.tavg-h10m-hxy-u.mon.GLB", + "atmos.uas.tpt-h10m-hxy-u.3hr.GLB", + "atmos.va.tavg-p19-hxy-air.day.GLB", + "atmos.va.tavg-p19-hxy-air.mon.GLB", + "atmos.va.tpt-p3-hxy-air.6hr.GLB", + "atmos.vas.tavg-h10m-hxy-u.day.GLB", + "atmos.vas.tavg-h10m-hxy-u.mon.GLB", + "atmos.vas.tpt-h10m-hxy-u.3hr.GLB", + "atmos.wap.tavg-p19-hxy-air.mon.GLB", + "atmos.wap.tavg-p19-hxy-u.day.GLB", + "atmos.zg.tavg-p19-hxy-air.day.GLB", + "atmos.zg.tavg-p19-hxy-air.mon.GLB", + "land.evspsblsoi.tavg-u-hxy-lnd.mon.GLB", + "land.evspsblveg.tavg-u-hxy-lnd.mon.GLB", + "land.lai.tavg-u-hxy-lnd.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.mon.GLB", + "land.mrros.tavg-u-hxy-lnd.mon.GLB", + "land.mrso.tavg-u-hxy-lnd.mon.GLB", + "land.mrsofc.ti-u-hxy-lnd.fx.GLB", + "land.mrsol.tavg-d10cm-hxy-lnd.mon.GLB", + "land.orog.ti-u-hxy-u.fx.GLB", + "land.rootd.ti-u-hxy-lnd.fx.GLB", + "land.sftgif.ti-u-hxy-u.fx.GLB", + "land.slthick.ti-sl-hxy-lnd.fx.GLB", + "landIce.mrfso.tavg-u-hxy-lnd.mon.GLB", + "landIce.snc.tavg-u-hxy-lnd.mon.GLB", + "landIce.snw.tavg-u-hxy-lnd.mon.GLB", + "ocean.areacello.ti-u-hxy-u.fx.GLB", + "ocean.basin.ti-u-hxy-u.fx.GLB", + "ocean.bigthetao.tavg-ol-hxy-sea.mon.GLB", + "ocean.deptho.ti-u-hxy-sea.fx.GLB", + "ocean.hfds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfgeou.ti-u-hxy-sea.fx.GLB", + "ocean.masscello.tavg-ol-hxy-sea.mon.GLB", + "ocean.masscello.ti-ol-hxy-sea.fx.GLB", + "ocean.mlotst.tavg-u-hxy-sea.mon.GLB", + "ocean.sftof.ti-u-hxy-u.fx.GLB", + "ocean.so.tavg-ol-hxy-sea.mon.GLB", + "ocean.sos.tavg-u-hxy-sea.day.GLB", + "ocean.sos.tavg-u-hxy-sea.mon.GLB", + "ocean.tauuo.tavg-u-hxy-sea.mon.GLB", + "ocean.tauvo.tavg-u-hxy-sea.mon.GLB", + "ocean.thetao.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcello.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcello.ti-ol-hxy-sea.fx.GLB", + "ocean.tos.tavg-u-hxy-sea.day.GLB", + "ocean.tos.tavg-u-hxy-sea.mon.GLB", + "ocean.umo.tavg-ol-hxy-sea.mon.GLB", + "ocean.uo.tavg-ol-hxy-sea.mon.GLB", + "ocean.vmo.tavg-ol-hxy-sea.mon.GLB", + "ocean.vo.tavg-ol-hxy-sea.mon.GLB", + "ocean.wmo.tavg-ol-hxy-sea.mon.GLB", + "ocean.wo.tavg-ol-hxy-sea.mon.GLB", + "ocean.zos.tavg-u-hxy-sea.day.GLB", + "ocean.zos.tavg-u-hxy-sea.mon.GLB", + "ocean.zostoga.tavg-u-hm-sea.mon.GLB", + "seaIce.siconc.tavg-u-hxy-u.day.GLB", + "seaIce.siconc.tavg-u-hxy-u.mon.GLB", + "seaIce.simass.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-si.mon.GLB", + "seaIce.sitimefrac.tavg-u-hxy-sea.mon.GLB", + "seaIce.siu.tavg-u-hxy-si.mon.GLB", + "seaIce.siv.tavg-u-hxy-si.mon.GLB", + "seaIce.snd.tavg-u-hxy-sn.mon.GLB", + "seaIce.ts.tavg-u-hxy-si.mon.GLB" + ], + "High": [ + "atmos.albisccp.tavg-u-hxy-cl.day.GLB", + "atmos.albisccp.tavg-u-hxy-cl.mon.GLB", + "atmos.ccb.tavg-u-hxy-ccl.day.GLB", + "atmos.ccb.tavg-u-hxy-ccl.mon.GLB", + "atmos.ccb.tpt-u-hs-u.subhr.GLB", + "atmos.cct.tavg-u-hxy-ccl.day.GLB", + "atmos.cct.tavg-u-hxy-ccl.mon.GLB", + "atmos.cct.tpt-u-hs-u.subhr.GLB", + "atmos.cfadDbze94.tavg-h40-hxy-air.mon.GLB", + "atmos.cfadLidarsr532.tavg-h40-hxy-air.mon.GLB", + "atmos.ci.tavg-u-hxy-u.mon.GLB", + "atmos.ci.tpt-u-hs-u.subhr.GLB", + "atmos.cl.tavg-al-hxy-u.day.GLB", + "atmos.cl.tpt-al-hs-u.subhr.GLB", + "atmos.clc.tavg-al-hxy-u.mon.GLB", + "atmos.clcalipso.tavg-220hPa-hxy-air.day.GLB", + "atmos.clcalipso.tavg-220hPa-hxy-air.mon.GLB", + "atmos.clcalipso.tavg-560hPa-hxy-air.day.GLB", + "atmos.clcalipso.tavg-560hPa-hxy-air.mon.GLB", + "atmos.clcalipso.tavg-840hPa-hxy-air.day.GLB", + "atmos.clcalipso.tavg-840hPa-hxy-air.mon.GLB", + "atmos.clcalipso.tavg-h40-hxy-air.day.GLB", + "atmos.clcalipso.tavg-h40-hxy-air.mon.GLB", + "atmos.clcalipsoice.tavg-h40-hxy-air.mon.GLB", + "atmos.clcalipsoliq.tavg-h40-hxy-air.mon.GLB", + "atmos.cli.tavg-al-hxy-u.day.GLB", + "atmos.cli.tpt-al-hs-u.subhr.GLB", + "atmos.clic.tavg-al-hxy-u.mon.GLB", + "atmos.climodis.tavg-u-hxy-u.mon.GLB", + "atmos.clis.tavg-al-hxy-u.mon.GLB", + "atmos.clisccp.tavg-p7c-hxy-air.day.GLB", + "atmos.clisccp.tavg-p7c-hxy-air.mon.GLB", + "atmos.clivi.tavg-u-hxy-u.day.GLB", + "atmos.clivi.tpt-u-hs-u.subhr.GLB", + "atmos.clivic.tavg-u-hxy-u.day.GLB", + "atmos.clivimodis.tavg-u-hxy-u.mon.GLB", + "atmos.clmisr.tavg-h16-hxy-air.mon.GLB", + "atmos.clmodis.tavg-p7c-hxy-air.mon.GLB", + "atmos.clmodisice.tavg-p7c-hxy-air.mon.GLB", + "atmos.clmodisiceReff.tavg-u-hxy-u.mon.GLB", + "atmos.clmodisliquid.tavg-p7c-hxy-air.mon.GLB", + "atmos.clmodisliquidReff.tavg-u-hxy-u.mon.GLB", + "atmos.cls.tavg-al-hxy-u.mon.GLB", + "atmos.clt.tpt-u-hs-u.subhr.GLB", + "atmos.cltcalipso.tavg-u-hxy-u.day.GLB", + "atmos.cltcalipso.tavg-u-hxy-u.mon.GLB", + "atmos.cltisccp.tavg-u-hxy-u.day.GLB", + "atmos.cltisccp.tavg-u-hxy-u.mon.GLB", + "atmos.cltmodis.tavg-u-hxy-u.mon.GLB", + "atmos.clw.tavg-al-hxy-u.day.GLB", + "atmos.clw.tpt-al-hs-u.subhr.GLB", + "atmos.clwc.tavg-al-hxy-u.mon.GLB", + "atmos.clwmodis.tavg-u-hxy-u.mon.GLB", + "atmos.clws.tavg-al-hxy-u.mon.GLB", + "atmos.clwvi.tavg-u-hxy-u.day.GLB", + "atmos.clwvi.tpt-u-hs-u.subhr.GLB", + "atmos.clwvic.tavg-u-hxy-u.day.GLB", + "atmos.clwvimodis.tavg-u-hxy-u.mon.GLB", + "atmos.co2.tavg-p19-hxy-air.mon.GLB", + "atmos.co2.tclm-p19-hxy-air.mon.GLB", + "atmos.co2.tclm-u-hm-u.mon.GLB", + "atmos.co2mass.tavg-u-hm-u.mon.GLB", + "atmos.dmc.tavg-alh-hxy-u.mon.GLB", + "atmos.edt.tavg-al-hxy-u.mon.GLB", + "atmos.edt.tpt-al-hs-u.subhr.GLB", + "atmos.evspsbl.tpt-u-hs-u.subhr.GLB", + "atmos.evu.tavg-al-hxy-u.mon.GLB", + "atmos.evu.tpt-al-hs-u.subhr.GLB", + "atmos.fco2antt.tpt-u-hs-u.subhr.GLB", + "atmos.fco2fos.tpt-u-hs-u.subhr.GLB", + "atmos.fco2nat.tpt-u-hs-u.subhr.GLB", + "atmos.hfls.tavg-u-hxy-u.day.GLB", + "atmos.hfls.tpt-u-hs-u.subhr.GLB", + "atmos.hfss.tavg-u-hxy-u.day.GLB", + "atmos.hfss.tpt-u-hs-u.subhr.GLB", + "atmos.hur.tavg-al-hxy-u.day.GLB", + "atmos.hur.tavg-al-hxy-u.mon.GLB", + "atmos.hur.tpt-al-hs-u.subhr.GLB", + "atmos.hurs.tmax-h2m-hxy-u.day.GLB", + "atmos.hurs.tmin-h2m-hxy-u.day.GLB", + "atmos.hurs.tpt-h2m-hs-u.subhr.GLB", + "atmos.hus.tavg-al-hxy-u.day.GLB", + "atmos.hus.tavg-al-hxy-u.mon.GLB", + "atmos.hus.tpt-al-hs-u.subhr.GLB", + "atmos.huss.tpt-h2m-hs-u.subhr.GLB", + "atmos.jpdftaureicemodis.tavg-u-hxy-u.day.GLB", + "atmos.jpdftaureicemodis.tavg-u-hxy-u.mon.GLB", + "atmos.jpdftaureliqmodis.tavg-u-hxy-u.day.GLB", + "atmos.jpdftaureliqmodis.tavg-u-hxy-u.mon.GLB", + "atmos.lat.ti-u-hs-u.fx.GLB", + "atmos.lon.ti-u-hs-u.fx.GLB", + "atmos.mc.tavg-alh-hxy-u.day.GLB", + "atmos.mc.tavg-alh-hxy-u.mon.GLB", + "atmos.mc.tpt-alh-hs-u.subhr.GLB", + "atmos.mcd.tavg-alh-hxy-u.mon.GLB", + "atmos.mcu.tavg-alh-hxy-u.mon.GLB", + "atmos.parasolRefl.tavg-u-hxy-sea.day.GLB", + "atmos.parasolRefl.tavg-u-hxy-sea.mon.GLB", + "atmos.pctisccp.tavg-u-hxy-cl.day.GLB", + "atmos.pctisccp.tavg-u-hxy-cl.mon.GLB", + "atmos.pfull.tavg-al-hxy-u.day.GLB", + "atmos.pfull.tclm-al-hxy-u.mon.GLB", + "atmos.pfull.tpt-al-hs-u.subhr.GLB", + "atmos.phalf.tavg-alh-hxy-u.day.GLB", + "atmos.phalf.tclm-alh-hxy-u.mon.GLB", + "atmos.phalf.tpt-alh-hs-u.subhr.GLB", + "atmos.pr.tpt-u-hs-u.subhr.GLB", + "atmos.prc.tavg-u-hxy-u.day.GLB", + "atmos.prc.tpt-u-hs-u.subhr.GLB", + "atmos.prsn.tavg-u-hxy-u.day.GLB", + "atmos.prsn.tpt-u-hs-u.subhr.GLB", + "atmos.prw.tpt-u-hs-u.subhr.GLB", + "atmos.ps.tpt-u-hs-u.subhr.GLB", + "atmos.psl.tpt-u-hs-u.subhr.GLB", + "atmos.ptp.tavg-u-hxy-u.mon.GLB", + "atmos.reffclic.tavg-al-hxy-ccl.mon.GLB", + "atmos.reffclic.tpt-al-hs-ccl.subhr.GLB", + "atmos.reffclis.tavg-al-hxy-scl.mon.GLB", + "atmos.reffclis.tpt-al-hs-scl.subhr.GLB", + "atmos.reffclwc.tavg-al-hxy-ccl.mon.GLB", + "atmos.reffclwc.tpt-al-hs-ccl.subhr.GLB", + "atmos.reffclws.tavg-al-hxy-scl.mon.GLB", + "atmos.reffclws.tpt-al-hs-scl.subhr.GLB", + "atmos.rld.tavg-alh-hxy-u.mon.GLB", + "atmos.rld.tpt-alh-hs-u.subhr.GLB", + "atmos.rldcs.tavg-alh-hxy-u.mon.GLB", + "atmos.rldcs.tpt-alh-hs-u.subhr.GLB", + "atmos.rlds.tavg-u-hxy-u.day.GLB", + "atmos.rlds.tpt-u-hs-u.subhr.GLB", + "atmos.rldscs.tavg-u-hxy-u.day.GLB", + "atmos.rldscs.tpt-u-hs-u.subhr.GLB", + "atmos.rlu.tavg-alh-hxy-u.mon.GLB", + "atmos.rlu.tpt-alh-hs-u.subhr.GLB", + "atmos.rlucs.tavg-alh-hxy-u.mon.GLB", + "atmos.rlucs.tpt-alh-hs-u.subhr.GLB", + "atmos.rlus.tavg-u-hxy-u.day.GLB", + "atmos.rlus.tpt-u-hs-u.subhr.GLB", + "atmos.rluscs.tavg-u-hxy-u.day.GLB", + "atmos.rlut.tavg-u-hxy-u.day.GLB", + "atmos.rlut.tclmdc-u-hxy-u.1hr.GLB", + "atmos.rlut.tpt-u-hs-u.subhr.GLB", + "atmos.rlutcs.tavg-u-hxy-u.day.GLB", + "atmos.rlutcs.tclmdc-u-hxy-u.1hr.GLB", + "atmos.rlutcs.tpt-u-hs-u.subhr.GLB", + "atmos.rsd.tavg-alh-hxy-u.mon.GLB", + "atmos.rsd.tpt-alh-hs-u.subhr.GLB", + "atmos.rsdcs.tavg-alh-hxy-u.mon.GLB", + "atmos.rsdcs.tpt-alh-hs-u.subhr.GLB", + "atmos.rsds.tpt-u-hs-u.subhr.GLB", + "atmos.rsdscs.tavg-u-hxy-u.day.GLB", + "atmos.rsdscs.tpt-u-hs-u.subhr.GLB", + "atmos.rsdt.tavg-u-hxy-u.day.GLB", + "atmos.rsdt.tclmdc-u-hxy-u.1hr.GLB", + "atmos.rsdt.tpt-u-hs-u.subhr.GLB", + "atmos.rsu.tavg-alh-hxy-u.mon.GLB", + "atmos.rsu.tpt-alh-hs-u.subhr.GLB", + "atmos.rsucs.tavg-alh-hxy-u.mon.GLB", + "atmos.rsucs.tpt-alh-hs-u.subhr.GLB", + "atmos.rsus.tavg-u-hxy-u.day.GLB", + "atmos.rsus.tpt-u-hs-u.subhr.GLB", + "atmos.rsuscs.tavg-u-hxy-u.day.GLB", + "atmos.rsuscs.tpt-u-hs-u.subhr.GLB", + "atmos.rsut.tavg-u-hxy-u.day.GLB", + "atmos.rsut.tclmdc-u-hxy-u.1hr.GLB", + "atmos.rsut.tpt-u-hs-u.subhr.GLB", + "atmos.rsutcs.tavg-u-hxy-u.day.GLB", + "atmos.rsutcs.tclmdc-u-hxy-u.1hr.GLB", + "atmos.rsutcs.tpt-u-hs-u.subhr.GLB", + "atmos.rtmt.tavg-u-hxy-u.mon.GLB", + "atmos.rtmt.tpt-u-hs-u.subhr.GLB", + "atmos.sci.tavg-u-hxy-u.mon.GLB", + "atmos.sci.tpt-u-hs-u.subhr.GLB", + "atmos.sfcWind.tmax-h10m-hxy-u.day.GLB", + "atmos.sfcWind.tpt-h10m-hs-u.subhr.GLB", + "atmos.smc.tavg-alh-hxy-u.mon.GLB", + "atmos.ta.tavg-700hPa-hxy-air.day.GLB", + "atmos.ta.tavg-al-hxy-u.day.GLB", + "atmos.ta.tavg-al-hxy-u.mon.GLB", + "atmos.ta.tpt-al-hs-u.subhr.GLB", + "atmos.tas.tpt-h2m-hs-u.subhr.GLB", + "atmos.tauu.tpt-u-hs-u.subhr.GLB", + "atmos.tauv.tpt-u-hs-u.subhr.GLB", + "atmos.tnhus.tavg-al-hxy-u.mon.GLB", + "atmos.tnhus.tpt-al-hs-u.subhr.GLB", + "atmos.tnhusa.tavg-al-hxy-u.mon.GLB", + "atmos.tnhusa.tpt-al-hs-u.subhr.GLB", + "atmos.tnhusc.tavg-al-hxy-u.mon.GLB", + "atmos.tnhusc.tpt-al-hs-u.subhr.GLB", + "atmos.tnhusd.tavg-al-hxy-u.mon.GLB", + "atmos.tnhusd.tpt-al-hs-u.subhr.GLB", + "atmos.tnhusmp.tavg-al-hxy-u.mon.GLB", + "atmos.tnhusmp.tpt-al-hs-u.subhr.GLB", + "atmos.tnhuspbl.tavg-al-hxy-u.mon.GLB", + "atmos.tnhuspbl.tpt-al-hs-u.subhr.GLB", + "atmos.tnhusscp.tavg-al-hxy-u.mon.GLB", + "atmos.tnhusscp.tpt-al-hs-u.subhr.GLB", + "atmos.tnhusscpbl.tavg-al-hxy-u.mon.GLB", + "atmos.tnhusscpbl.tpt-al-hs-u.subhr.GLB", + "atmos.tnt.tavg-al-hxy-u.mon.GLB", + "atmos.tnt.tpt-al-hs-u.subhr.GLB", + "atmos.tnta.tavg-al-hxy-u.mon.GLB", + "atmos.tnta.tpt-al-hs-u.subhr.GLB", + "atmos.tntc.tavg-al-hxy-u.mon.GLB", + "atmos.tntc.tpt-al-hs-u.subhr.GLB", + "atmos.tntd.tavg-al-hxy-u.mon.GLB", + "atmos.tntd.tpt-al-hs-u.subhr.GLB", + "atmos.tntmp.tavg-al-hxy-u.mon.GLB", + "atmos.tntmp.tpt-al-hs-u.subhr.GLB", + "atmos.tntpbl.tavg-al-hxy-u.mon.GLB", + "atmos.tntpbl.tpt-al-hs-u.subhr.GLB", + "atmos.tntr.tavg-al-hxy-u.mon.GLB", + "atmos.tntr.tpt-al-hs-u.subhr.GLB", + "atmos.tntrl.tavg-al-hxy-u.mon.GLB", + "atmos.tntrl.tpt-al-hs-u.subhr.GLB", + "atmos.tntrlcs.tavg-al-hxy-u.mon.GLB", + "atmos.tntrlcs.tpt-al-hs-u.subhr.GLB", + "atmos.tntrs.tavg-al-hxy-u.mon.GLB", + "atmos.tntrs.tpt-al-hs-u.subhr.GLB", + "atmos.tntrscs.tavg-al-hxy-u.mon.GLB", + "atmos.tntrscs.tpt-al-hs-u.subhr.GLB", + "atmos.tntscp.tavg-al-hxy-u.mon.GLB", + "atmos.tntscp.tpt-al-hs-u.subhr.GLB", + "atmos.tntscpbl.tavg-al-hxy-u.mon.GLB", + "atmos.tntscpbl.tpt-al-hs-u.subhr.GLB", + "atmos.ts.tpt-u-hs-u.subhr.GLB", + "atmos.ua.tavg-al-hxy-u.day.GLB", + "atmos.ua.tpt-al-hs-u.subhr.GLB", + "atmos.uas.tpt-h10m-hs-u.subhr.GLB", + "atmos.va.tavg-al-hxy-u.day.GLB", + "atmos.va.tpt-al-hs-u.subhr.GLB", + "atmos.vas.tpt-h10m-hs-u.subhr.GLB", + "atmos.wap.tavg-500hPa-hxy-air.day.GLB", + "atmos.wap.tavg-al-hxy-u.day.GLB", + "atmos.wap.tpt-al-hs-u.subhr.GLB", + "atmos.zg.tavg-al-hxy-u.day.GLB", + "atmos.zg.tpt-al-hs-u.subhr.GLB", + "atmos.ztp.tavg-u-hxy-u.mon.GLB", + "atmosChem.cfc11.tavg-u-hm-u.mon.GLB", + "atmosChem.cfc113.tavg-u-hm-u.mon.GLB", + "atmosChem.cfc12.tavg-u-hm-u.mon.GLB", + "atmosChem.ch4.tavg-p19-hxy-air.mon.GLB", + "atmosChem.ch4.tavg-u-hm-u.mon.GLB", + "atmosChem.ch4.tclm-p19-hxy-air.mon.GLB", + "atmosChem.ch4.tclm-u-hm-u.mon.GLB", + "atmosChem.hcfc22.tavg-u-hm-u.mon.GLB", + "atmosChem.n2o.tavg-p19-hxy-air.mon.GLB", + "atmosChem.n2o.tavg-u-hm-u.mon.GLB", + "atmosChem.n2o.tclm-p19-hxy-air.mon.GLB", + "atmosChem.n2o.tclm-u-hm-u.mon.GLB", + "atmosChem.o3.tavg-p19-hxy-air.mon.GLB", + "atmosChem.o3.tclm-p19-hxy-air.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.day.GLB", + "land.mrso.tavg-u-hxy-lnd.day.GLB", + "land.mrsol.tavg-d10cm-hxy-lnd.day.GLB", + "land.tslsi.tavg-u-hxy-u.day.GLB", + "landIce.sbl.tavg-u-hxy-u.mon.GLB", + "landIce.sbl.tpt-u-hs-u.subhr.GLB", + "landIce.snc.tavg-u-hxy-lnd.day.GLB", + "landIce.snw.tavg-u-hxy-lnd.day.GLB", + "ocean.tossq.tavg-u-hxy-sea.day.GLB", + "seaIce.sithick.tavg-u-hxy-si.day.GLB", + "seaIce.siu.tavg-u-hxy-si.day.GLB", + "seaIce.siv.tavg-u-hxy-si.day.GLB" + ], + "Medium": [], + "Low": [ + "aerosol.abs550aer.tavg-u-hxy-u.mon.GLB", + "aerosol.ccldncl.tavg-u-hxy-ccl.day.GLB", + "aerosol.cdnc.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrbc.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrdust.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrnh4.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrno3.tavg-al-hxy-u.mon.GLB", + "aerosol.mmroa.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrso4.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrsoa.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrss.tavg-al-hxy-u.mon.GLB", + "aerosol.od550aer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550lt1aer.tavg-u-hxy-u.mon.GLB", + "aerosol.so2.tavg-al-hxy-u.mon.GLB", + "atmos.cldnci.tavg-u-hxy-cl.day.GLB", + "atmos.cldnvi.tavg-u-hxy-u.day.GLB", + "atmos.loadbc.tavg-u-hxy-u.day.GLB", + "atmos.loaddust.tavg-u-hxy-u.day.GLB", + "atmos.loadnh4.tavg-u-hxy-u.day.GLB", + "atmos.loadno3.tavg-u-hxy-u.day.GLB", + "atmos.loadoa.tavg-u-hxy-u.day.GLB", + "atmos.loadpoa.tavg-u-hxy-u.day.GLB", + "atmos.loadso4.tavg-u-hxy-u.day.GLB", + "atmos.loadsoa.tavg-u-hxy-u.day.GLB", + "atmos.loadss.tavg-u-hxy-u.day.GLB", + "atmos.reffcclwtop.tavg-u-hxy-ccl.day.GLB", + "atmos.reffsclwtop.tavg-u-hxy-scl.day.GLB", + "atmos.rsdscsdiff.tavg-u-hxy-u.day.GLB", + "atmos.rsdsdiff.tavg-u-hxy-u.day.GLB", + "atmos.scldncl.tavg-u-hxy-scl.day.GLB", + "atmos.zfull.ti-al-hxy-u.fx.GLB", + "atmosChem.dms.tavg-al-hxy-u.mon.GLB", + "land.baresoilFrac.tavg-u-hxy-u.mon.GLB", + "land.burntFractionAll.tavg-u-hxy-u.mon.GLB", + "land.cropFrac.tavg-u-hxy-u.mon.GLB", + "land.grassFrac.tavg-u-hxy-u.mon.GLB", + "land.mrsol.tavg-sl-hxy-lnd.mon.GLB", + "land.pastureFrac.tavg-u-hxy-u.mon.GLB", + "land.prveg.tavg-u-hxy-lnd.mon.GLB", + "land.residualFrac.tavg-u-hxy-u.mon.GLB", + "land.shrubFrac.tavg-u-hxy-u.mon.GLB", + "land.tran.tavg-u-hxy-lnd.mon.GLB", + "land.treeFrac.tavg-u-hxy-u.mon.GLB", + "land.tsl.tavg-sl-hxy-lnd.mon.GLB", + "landIce.snd.tavg-u-hxy-lnd.mon.GLB", + "seaIce.evspsbl.tavg-u-hxy-si.mon.GLB", + "seaIce.prra.tavg-u-hxy-si.mon.GLB", + "seaIce.prsn.tavg-u-hxy-si.mon.GLB", + "seaIce.sisali.tavg-u-hxy-si.mon.GLB", + "seaIce.sitempsnic.tavg-u-hxy-si.mon.GLB", + "seaIce.snc.tavg-u-hxy-si.mon.GLB", + "seaIce.snw.tavg-u-hxy-si.mon.GLB" + ] + }, + "amip-noirr": { + "Core": [ + "atmos.areacella.ti-u-hxy-u.fx.GLB", + "atmos.cl.tavg-al-hxy-u.mon.GLB", + "atmos.cli.tavg-al-hxy-u.mon.GLB", + "atmos.clivi.tavg-u-hxy-u.mon.GLB", + "atmos.clt.tavg-u-hxy-u.day.GLB", + "atmos.clt.tavg-u-hxy-u.mon.GLB", + "atmos.clw.tavg-al-hxy-u.mon.GLB", + "atmos.clwvi.tavg-u-hxy-u.mon.GLB", + "atmos.evspsbl.tavg-u-hxy-u.mon.GLB", + "atmos.hfls.tavg-u-hxy-u.mon.GLB", + "atmos.hfss.tavg-u-hxy-u.mon.GLB", + "atmos.hur.tavg-p19-hxy-air.mon.GLB", + "atmos.hur.tavg-p19-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.6hr.GLB", + "atmos.hurs.tavg-h2m-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.mon.GLB", + "atmos.hus.tavg-p19-hxy-u.day.GLB", + "atmos.hus.tavg-p19-hxy-u.mon.GLB", + "atmos.huss.tavg-h2m-hxy-u.day.GLB", + "atmos.huss.tavg-h2m-hxy-u.mon.GLB", + "atmos.huss.tpt-h2m-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.1hr.GLB", + "atmos.pr.tavg-u-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.day.GLB", + "atmos.pr.tavg-u-hxy-u.mon.GLB", + "atmos.prc.tavg-u-hxy-u.mon.GLB", + "atmos.prsn.tavg-u-hxy-u.mon.GLB", + "atmos.prw.tavg-u-hxy-u.mon.GLB", + "atmos.ps.tavg-u-hxy-u.day.GLB", + "atmos.ps.tavg-u-hxy-u.mon.GLB", + "atmos.psl.tavg-u-hxy-u.day.GLB", + "atmos.psl.tavg-u-hxy-u.mon.GLB", + "atmos.rlds.tavg-u-hxy-u.mon.GLB", + "atmos.rldscs.tavg-u-hxy-u.mon.GLB", + "atmos.rlus.tavg-u-hxy-u.mon.GLB", + "atmos.rluscs.tavg-u-hxy-u.mon.GLB", + "atmos.rlut.tavg-u-hxy-u.mon.GLB", + "atmos.rlutcs.tavg-u-hxy-u.mon.GLB", + "atmos.rsds.tavg-u-hxy-u.day.GLB", + "atmos.rsds.tavg-u-hxy-u.mon.GLB", + "atmos.rsdscs.tavg-u-hxy-u.mon.GLB", + "atmos.rsdt.tavg-u-hxy-u.mon.GLB", + "atmos.rsus.tavg-u-hxy-u.mon.GLB", + "atmos.rsuscs.tavg-u-hxy-u.mon.GLB", + "atmos.rsut.tavg-u-hxy-u.mon.GLB", + "atmos.rsutcs.tavg-u-hxy-u.mon.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.day.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.mon.GLB", + "atmos.sftlf.ti-u-hxy-u.fx.GLB", + "atmos.ta.tavg-p19-hxy-air.day.GLB", + "atmos.ta.tavg-p19-hxy-air.mon.GLB", + "atmos.ta.tpt-p3-hxy-air.6hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.day.GLB", + "atmos.tas.tavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tmax-h2m-hxy-u.day.GLB", + "atmos.tas.tmaxavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tmin-h2m-hxy-u.day.GLB", + "atmos.tas.tminavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tpt-h2m-hxy-u.3hr.GLB", + "atmos.tauu.tavg-u-hxy-u.mon.GLB", + "atmos.tauv.tavg-u-hxy-u.mon.GLB", + "atmos.ts.tavg-u-hxy-u.mon.GLB", + "atmos.ua.tavg-p19-hxy-air.day.GLB", + "atmos.ua.tavg-p19-hxy-air.mon.GLB", + "atmos.ua.tpt-p3-hxy-air.6hr.GLB", + "atmos.uas.tavg-h10m-hxy-u.day.GLB", + "atmos.uas.tavg-h10m-hxy-u.mon.GLB", + "atmos.uas.tpt-h10m-hxy-u.3hr.GLB", + "atmos.va.tavg-p19-hxy-air.day.GLB", + "atmos.va.tavg-p19-hxy-air.mon.GLB", + "atmos.va.tpt-p3-hxy-air.6hr.GLB", + "atmos.vas.tavg-h10m-hxy-u.day.GLB", + "atmos.vas.tavg-h10m-hxy-u.mon.GLB", + "atmos.vas.tpt-h10m-hxy-u.3hr.GLB", + "atmos.wap.tavg-p19-hxy-air.mon.GLB", + "atmos.wap.tavg-p19-hxy-u.day.GLB", + "atmos.zg.tavg-p19-hxy-air.day.GLB", + "atmos.zg.tavg-p19-hxy-air.mon.GLB", + "land.evspsblsoi.tavg-u-hxy-lnd.mon.GLB", + "land.evspsblveg.tavg-u-hxy-lnd.mon.GLB", + "land.lai.tavg-u-hxy-lnd.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.mon.GLB", + "land.mrros.tavg-u-hxy-lnd.mon.GLB", + "land.mrso.tavg-u-hxy-lnd.mon.GLB", + "land.mrsofc.ti-u-hxy-lnd.fx.GLB", + "land.mrsol.tavg-d10cm-hxy-lnd.mon.GLB", + "land.orog.ti-u-hxy-u.fx.GLB", + "land.rootd.ti-u-hxy-lnd.fx.GLB", + "land.sftgif.ti-u-hxy-u.fx.GLB", + "land.slthick.ti-sl-hxy-lnd.fx.GLB", + "landIce.mrfso.tavg-u-hxy-lnd.mon.GLB", + "landIce.snc.tavg-u-hxy-lnd.mon.GLB", + "landIce.snw.tavg-u-hxy-lnd.mon.GLB", + "ocean.areacello.ti-u-hxy-u.fx.GLB", + "ocean.basin.ti-u-hxy-u.fx.GLB", + "ocean.bigthetao.tavg-ol-hxy-sea.mon.GLB", + "ocean.deptho.ti-u-hxy-sea.fx.GLB", + "ocean.hfds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfgeou.ti-u-hxy-sea.fx.GLB", + "ocean.masscello.tavg-ol-hxy-sea.mon.GLB", + "ocean.masscello.ti-ol-hxy-sea.fx.GLB", + "ocean.mlotst.tavg-u-hxy-sea.mon.GLB", + "ocean.sftof.ti-u-hxy-u.fx.GLB", + "ocean.so.tavg-ol-hxy-sea.mon.GLB", + "ocean.sos.tavg-u-hxy-sea.day.GLB", + "ocean.sos.tavg-u-hxy-sea.mon.GLB", + "ocean.tauuo.tavg-u-hxy-sea.mon.GLB", + "ocean.tauvo.tavg-u-hxy-sea.mon.GLB", + "ocean.thetao.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcello.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcello.ti-ol-hxy-sea.fx.GLB", + "ocean.tos.tavg-u-hxy-sea.day.GLB", + "ocean.tos.tavg-u-hxy-sea.mon.GLB", + "ocean.umo.tavg-ol-hxy-sea.mon.GLB", + "ocean.uo.tavg-ol-hxy-sea.mon.GLB", + "ocean.vmo.tavg-ol-hxy-sea.mon.GLB", + "ocean.vo.tavg-ol-hxy-sea.mon.GLB", + "ocean.wmo.tavg-ol-hxy-sea.mon.GLB", + "ocean.wo.tavg-ol-hxy-sea.mon.GLB", + "ocean.zos.tavg-u-hxy-sea.day.GLB", + "ocean.zos.tavg-u-hxy-sea.mon.GLB", + "ocean.zostoga.tavg-u-hm-sea.mon.GLB", + "seaIce.siconc.tavg-u-hxy-u.day.GLB", + "seaIce.siconc.tavg-u-hxy-u.mon.GLB", + "seaIce.simass.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-si.mon.GLB", + "seaIce.sitimefrac.tavg-u-hxy-sea.mon.GLB", + "seaIce.siu.tavg-u-hxy-si.mon.GLB", + "seaIce.siv.tavg-u-hxy-si.mon.GLB", + "seaIce.snd.tavg-u-hxy-sn.mon.GLB", + "seaIce.ts.tavg-u-hxy-si.mon.GLB" + ], + "High": [ + "atmos.evspsbl.tavg-u-hxy-lnd.day.GLB", + "atmos.hurs.tmax-h2m-hxy-u.day.GLB", + "atmos.hurs.tmin-h2m-hxy-u.day.GLB", + "atmos.rlds.tavg-u-hxy-u.day.GLB", + "atmos.rlus.tavg-u-hxy-u.day.GLB", + "land.evspsblpot.tavg-u-hxy-lnd.day.GLB" + ], + "Medium": [ + "aerosol.o3.tmax-h2m-hxy-u.day.GLB", + "aerosol.sfpm1.tavg-h2m-hxy-u.day.GLB", + "aerosol.sfpm10.tavg-h2m-hxy-u.day.GLB", + "aerosol.sfpm25.tavg-h2m-hxy-u.day.GLB", + "atmos.rsdsdiff.tavg-u-hxy-u.day.GLB", + "land.irrDem.tavg-u-hxy-u.day.GLB", + "land.irrGw.tavg-u-hxy-u.day.GLB", + "land.irrLut.tavg-u-hxy-u.day.GLB", + "land.irrSurf.tavg-u-hxy-u.day.GLB", + "land.mrso.tavg-u-hxy-lnd.day.GLB", + "land.rzwc.tavg-u-hxy-lnd.day.GLB" + ], + "Low": [ + "atmos.co2.tavg-h2m-hxy-u.mon.GLB", + "atmos.hurs.tavg-h2m-hxy-u.1hr.GLB", + "atmos.hurs.tmin-h2m-hxy-crp.day.GLB", + "atmos.pr.tavg-u-hxy-crp.day.GLB", + "atmos.rsds.tavg-u-hxy-u.1hr.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.1hr.GLB", + "atmos.sfcWind.tmax-h10m-hxy-u.day.GLB", + "atmos.tas.tmax-h2m-hxy-crp.day.GLB", + "atmos.tas.tmin-h2m-hxy-crp.day.GLB", + "atmosChem.emich4.tavg-u-hxy-u.mon.GLB", + "land.c3PftFrac.tavg-u-hxy-u.mon.GLB", + "land.c4PftFrac.tavg-u-hxy-u.mon.GLB", + "land.cropFracC3.tavg-u-hxy-u.mon.GLB", + "land.cropFracC4.tavg-u-hxy-u.mon.GLB", + "land.cSoil.tavg-u-hxy-lnd.mon.GLB", + "land.fHarvestToAtmos.tavg-u-hxy-lnd.mon.GLB", + "land.irrLut.tavg-u-hxy-multi.mon.GLB", + "land.lai.tavg-u-hxy-lnd.day.GLB", + "land.pastureFrac.tavg-u-hxy-u.mon.GLB", + "land.pastureFracC3.tavg-u-hxy-u.mon.GLB", + "land.pastureFracC4.tavg-u-hxy-u.mon.GLB", + "land.tas.tavg-u-hxy-u.1hr.GLB" + ] + }, + "amip-p4k": { + "Core": [ + "atmos.areacella.ti-u-hxy-u.fx.GLB", + "atmos.cl.tavg-al-hxy-u.mon.GLB", + "atmos.cli.tavg-al-hxy-u.mon.GLB", + "atmos.clivi.tavg-u-hxy-u.mon.GLB", + "atmos.clt.tavg-u-hxy-u.day.GLB", + "atmos.clt.tavg-u-hxy-u.mon.GLB", + "atmos.clw.tavg-al-hxy-u.mon.GLB", + "atmos.clwvi.tavg-u-hxy-u.mon.GLB", + "atmos.evspsbl.tavg-u-hxy-u.mon.GLB", + "atmos.hfls.tavg-u-hxy-u.mon.GLB", + "atmos.hfss.tavg-u-hxy-u.mon.GLB", + "atmos.hur.tavg-p19-hxy-air.mon.GLB", + "atmos.hur.tavg-p19-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.6hr.GLB", + "atmos.hurs.tavg-h2m-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.mon.GLB", + "atmos.hus.tavg-p19-hxy-u.day.GLB", + "atmos.hus.tavg-p19-hxy-u.mon.GLB", + "atmos.huss.tavg-h2m-hxy-u.day.GLB", + "atmos.huss.tavg-h2m-hxy-u.mon.GLB", + "atmos.huss.tpt-h2m-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.1hr.GLB", + "atmos.pr.tavg-u-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.day.GLB", + "atmos.pr.tavg-u-hxy-u.mon.GLB", + "atmos.prc.tavg-u-hxy-u.mon.GLB", + "atmos.prsn.tavg-u-hxy-u.mon.GLB", + "atmos.prw.tavg-u-hxy-u.mon.GLB", + "atmos.ps.tavg-u-hxy-u.day.GLB", + "atmos.ps.tavg-u-hxy-u.mon.GLB", + "atmos.psl.tavg-u-hxy-u.day.GLB", + "atmos.psl.tavg-u-hxy-u.mon.GLB", + "atmos.rlds.tavg-u-hxy-u.mon.GLB", + "atmos.rldscs.tavg-u-hxy-u.mon.GLB", + "atmos.rlus.tavg-u-hxy-u.mon.GLB", + "atmos.rluscs.tavg-u-hxy-u.mon.GLB", + "atmos.rlut.tavg-u-hxy-u.mon.GLB", + "atmos.rlutcs.tavg-u-hxy-u.mon.GLB", + "atmos.rsds.tavg-u-hxy-u.day.GLB", + "atmos.rsds.tavg-u-hxy-u.mon.GLB", + "atmos.rsdscs.tavg-u-hxy-u.mon.GLB", + "atmos.rsdt.tavg-u-hxy-u.mon.GLB", + "atmos.rsus.tavg-u-hxy-u.mon.GLB", + "atmos.rsuscs.tavg-u-hxy-u.mon.GLB", + "atmos.rsut.tavg-u-hxy-u.mon.GLB", + "atmos.rsutcs.tavg-u-hxy-u.mon.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.day.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.mon.GLB", + "atmos.sftlf.ti-u-hxy-u.fx.GLB", + "atmos.ta.tavg-p19-hxy-air.day.GLB", + "atmos.ta.tavg-p19-hxy-air.mon.GLB", + "atmos.ta.tpt-p3-hxy-air.6hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.day.GLB", + "atmos.tas.tavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tmax-h2m-hxy-u.day.GLB", + "atmos.tas.tmaxavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tmin-h2m-hxy-u.day.GLB", + "atmos.tas.tminavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tpt-h2m-hxy-u.3hr.GLB", + "atmos.tauu.tavg-u-hxy-u.mon.GLB", + "atmos.tauv.tavg-u-hxy-u.mon.GLB", + "atmos.ts.tavg-u-hxy-u.mon.GLB", + "atmos.ua.tavg-p19-hxy-air.day.GLB", + "atmos.ua.tavg-p19-hxy-air.mon.GLB", + "atmos.ua.tpt-p3-hxy-air.6hr.GLB", + "atmos.uas.tavg-h10m-hxy-u.day.GLB", + "atmos.uas.tavg-h10m-hxy-u.mon.GLB", + "atmos.uas.tpt-h10m-hxy-u.3hr.GLB", + "atmos.va.tavg-p19-hxy-air.day.GLB", + "atmos.va.tavg-p19-hxy-air.mon.GLB", + "atmos.va.tpt-p3-hxy-air.6hr.GLB", + "atmos.vas.tavg-h10m-hxy-u.day.GLB", + "atmos.vas.tavg-h10m-hxy-u.mon.GLB", + "atmos.vas.tpt-h10m-hxy-u.3hr.GLB", + "atmos.wap.tavg-p19-hxy-air.mon.GLB", + "atmos.wap.tavg-p19-hxy-u.day.GLB", + "atmos.zg.tavg-p19-hxy-air.day.GLB", + "atmos.zg.tavg-p19-hxy-air.mon.GLB", + "land.evspsblsoi.tavg-u-hxy-lnd.mon.GLB", + "land.evspsblveg.tavg-u-hxy-lnd.mon.GLB", + "land.lai.tavg-u-hxy-lnd.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.mon.GLB", + "land.mrros.tavg-u-hxy-lnd.mon.GLB", + "land.mrso.tavg-u-hxy-lnd.mon.GLB", + "land.mrsofc.ti-u-hxy-lnd.fx.GLB", + "land.mrsol.tavg-d10cm-hxy-lnd.mon.GLB", + "land.orog.ti-u-hxy-u.fx.GLB", + "land.rootd.ti-u-hxy-lnd.fx.GLB", + "land.sftgif.ti-u-hxy-u.fx.GLB", + "land.slthick.ti-sl-hxy-lnd.fx.GLB", + "landIce.mrfso.tavg-u-hxy-lnd.mon.GLB", + "landIce.snc.tavg-u-hxy-lnd.mon.GLB", + "landIce.snw.tavg-u-hxy-lnd.mon.GLB", + "ocean.areacello.ti-u-hxy-u.fx.GLB", + "ocean.basin.ti-u-hxy-u.fx.GLB", + "ocean.bigthetao.tavg-ol-hxy-sea.mon.GLB", + "ocean.deptho.ti-u-hxy-sea.fx.GLB", + "ocean.hfds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfgeou.ti-u-hxy-sea.fx.GLB", + "ocean.masscello.tavg-ol-hxy-sea.mon.GLB", + "ocean.masscello.ti-ol-hxy-sea.fx.GLB", + "ocean.mlotst.tavg-u-hxy-sea.mon.GLB", + "ocean.sftof.ti-u-hxy-u.fx.GLB", + "ocean.so.tavg-ol-hxy-sea.mon.GLB", + "ocean.sos.tavg-u-hxy-sea.day.GLB", + "ocean.sos.tavg-u-hxy-sea.mon.GLB", + "ocean.tauuo.tavg-u-hxy-sea.mon.GLB", + "ocean.tauvo.tavg-u-hxy-sea.mon.GLB", + "ocean.thetao.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcello.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcello.ti-ol-hxy-sea.fx.GLB", + "ocean.tos.tavg-u-hxy-sea.day.GLB", + "ocean.tos.tavg-u-hxy-sea.mon.GLB", + "ocean.umo.tavg-ol-hxy-sea.mon.GLB", + "ocean.uo.tavg-ol-hxy-sea.mon.GLB", + "ocean.vmo.tavg-ol-hxy-sea.mon.GLB", + "ocean.vo.tavg-ol-hxy-sea.mon.GLB", + "ocean.wmo.tavg-ol-hxy-sea.mon.GLB", + "ocean.wo.tavg-ol-hxy-sea.mon.GLB", + "ocean.zos.tavg-u-hxy-sea.day.GLB", + "ocean.zos.tavg-u-hxy-sea.mon.GLB", + "ocean.zostoga.tavg-u-hm-sea.mon.GLB", + "seaIce.siconc.tavg-u-hxy-u.day.GLB", + "seaIce.siconc.tavg-u-hxy-u.mon.GLB", + "seaIce.simass.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-si.mon.GLB", + "seaIce.sitimefrac.tavg-u-hxy-sea.mon.GLB", + "seaIce.siu.tavg-u-hxy-si.mon.GLB", + "seaIce.siv.tavg-u-hxy-si.mon.GLB", + "seaIce.snd.tavg-u-hxy-sn.mon.GLB", + "seaIce.ts.tavg-u-hxy-si.mon.GLB" + ], + "High": [ + "aerosol.abs550aer.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550bc.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550dust.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550no3.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550oa.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550so4.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550ss.tavg-u-hxy-u.mon.GLB", + "aerosol.airmass.tavg-al-hxy-u.mon.GLB", + "aerosol.aoanh.tavg-al-hxy-u.mon.NH", + "aerosol.bry.tavg-p39-hy-air.mon.GLB", + "aerosol.bs550aer.tpt-al-hxy-u.6hr.GLB", + "aerosol.c2h6.tavg-al-hxy-u.mon.GLB", + "aerosol.c3h6.tavg-al-hxy-u.mon.GLB", + "aerosol.c3h8.tavg-al-hxy-u.mon.GLB", + "aerosol.ccldncl.tavg-u-hxy-ccl.mon.GLB", + "aerosol.ccn.tavg-u-hxy-ccl.mon.30S-90S", + "aerosol.ccn.tavg-u-hxy-ccl.mon.GLB", + "aerosol.ccn1.tavg-al-hxy-u.mon.30S-90S", + "aerosol.ccn1.tavg-al-hxy-u.mon.GLB", + "aerosol.ccnp02.tavg-al-hxy-u.mon.30S-90S", + "aerosol.ccnp02.tavg-al-hxy-u.mon.GLB", + "aerosol.cdnc.tavg-al-hxy-u.mon.30S-90S", + "aerosol.cdnc.tavg-al-hxy-u.mon.GLB", + "aerosol.cfc114.tavg-al-hxy-u.mon.GLB", + "aerosol.ch3coch3.tavg-al-hxy-u.mon.GLB", + "aerosol.cheaqpso4.tavg-al-hxy-u.mon.GLB", + "aerosol.chegpso4.tavg-al-hxy-u.mon.GLB", + "aerosol.chepasoa.tavg-u-hxy-u.mon.GLB", + "aerosol.chepsoa.tavg-u-hxy-u.mon.GLB", + "aerosol.cly.tavg-p39-hy-air.mon.GLB", + "aerosol.co.tavg-al-hxy-u.mon.GLB", + "aerosol.co.tavg-h2m-hxy-u.day.GLB", + "aerosol.cod.tavg-u-hxy-u.day.GLB", + "aerosol.cod.tavg-u-hxy-u.mon.30S-90S", + "aerosol.cod.tavg-u-hxy-u.mon.GLB", + "aerosol.conccn.tavg-al-hxy-u.mon.GLB", + "aerosol.conccn.tpt-u-hs-u.3hr.GLB", + "aerosol.drybc.tavg-u-hxy-u.mon.GLB", + "aerosol.drydust.tavg-u-hxy-u.mon.GLB", + "aerosol.dryno3.tavg-u-hxy-u.mon.GLB", + "aerosol.dryo3.tavg-u-hxy-u.mon.GLB", + "aerosol.dryoa.tavg-u-hxy-u.mon.GLB", + "aerosol.dryso2.tavg-u-hxy-u.mon.GLB", + "aerosol.dryso4.tavg-u-hxy-u.mon.GLB", + "aerosol.dryss.tavg-u-hxy-u.mon.GLB", + "aerosol.ec550aer.tavg-al-hxy-u.mon.GLB", + "aerosol.ec550aer.tpt-u-hxy-u.6hr.GLB", + "aerosol.emiaco.tavg-u-hxy-u.mon.GLB", + "aerosol.emianox.tavg-u-hxy-u.mon.GLB", + "aerosol.emiaoa.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbbc.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbch4.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbco.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbdms.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbnh3.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbnox.tavg-u-hxy-u.mon.GLB", + "aerosol.emibboa.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbso2.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbvoc.tavg-u-hxy-u.mon.GLB", + "aerosol.emibc.tavg-u-hxy-u.mon.GLB", + "aerosol.emibvoc.tavg-u-hxy-u.mon.GLB", + "aerosol.emico.tavg-u-hxy-u.mon.GLB", + "aerosol.emidms.tavg-u-hxy-u.mon.30S-90S", + "aerosol.emidms.tavg-u-hxy-u.mon.GLB", + "aerosol.emidust.tavg-u-hxy-u.mon.GLB", + "aerosol.emiisop.tavg-u-hxy-u.mon.GLB", + "aerosol.emilnox.tavg-al-hxy-u.mon.GLB", + "aerosol.eminh3.tavg-u-hxy-u.mon.GLB", + "aerosol.eminox.tavg-u-hxy-u.mon.GLB", + "aerosol.emioa.tavg-u-hxy-u.mon.GLB", + "aerosol.emiso2.tavg-u-hxy-u.mon.GLB", + "aerosol.emiso4.tavg-u-hxy-u.mon.GLB", + "aerosol.emiss.tavg-u-hxy-u.mon.30S-90S", + "aerosol.emiss.tavg-u-hxy-u.mon.GLB", + "aerosol.emivoc.tavg-u-hxy-u.mon.GLB", + "aerosol.h2o.tavg-al-hxy-u.mon.GLB", + "aerosol.h2o.tavg-p39-hy-air.mon.GLB", + "aerosol.hcfc22.tavg-al-hxy-u.mon.GLB", + "aerosol.hcho.tavg-al-hxy-u.mon.GLB", + "aerosol.hcl.tavg-al-hxy-u.mon.GLB", + "aerosol.hcl.tavg-p39-hy-air.mon.GLB", + "aerosol.hfc125.tavg-al-hxy-u.mon.GLB", + "aerosol.hfc134a.tavg-al-hxy-u.mon.GLB", + "aerosol.hno3.tavg-al-hxy-u.mon.GLB", + "aerosol.hno3.tavg-p39-hy-air.mon.GLB", + "aerosol.ho2.tavg-p39-hy-air.mon.GLB", + "aerosol.isop.tavg-al-hxy-u.mon.GLB", + "aerosol.jno2.tavg-al-hxy-u.mon.GLB", + "aerosol.lossch4.tavg-al-hxy-u.mon.GLB", + "aerosol.lossco.tavg-al-hxy-u.mon.GLB", + "aerosol.lossn2o.tavg-al-hxy-u.mon.GLB", + "aerosol.lwp.tavg-u-hxy-u.mon.GLB", + "aerosol.mmraerh2o.tavg-al-hxy-u.mon.GLB", + "aerosol.mmraerh2o.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmraerh2o.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrbc.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrbc.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrbc.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrbc.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrdust.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrdust.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrdust.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrdust.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrnh4.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrnh4.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrnh4.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrnh4.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrno3.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrno3.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrno3.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrno3.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmroa.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmroa.tavg-al-hxy-u.mon.GLB", + "aerosol.mmroa.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmroa.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrpm1.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrpm1.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrpm2p5.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrpm2p5.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrso4.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrso4.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrso4.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrso4.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrsoa.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrsoa.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrsoa.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrss.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrss.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrss.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrss.tpt-h2m-hs-u.3hr.GLB", + "aerosol.nh50.tavg-al-hxy-u.mon.GLB", + "aerosol.no.tavg-al-hxy-u.mon.GLB", + "aerosol.no2.tavg-al-hxy-u.mon.GLB", + "aerosol.no2.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.noy.tavg-p39-hy-air.mon.GLB", + "aerosol.o3.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.o3.tmax-h2m-hxy-u.day.GLB", + "aerosol.o3loss.tavg-al-hxy-u.mon.GLB", + "aerosol.o3prod.tavg-al-hxy-u.mon.GLB", + "aerosol.od443aer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550aer.tavg-u-hxy-u.day.GLB", + "aerosol.od550aer.tavg-u-hxy-u.mon.30S-90S", + "aerosol.od550aer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550aerh2o.tavg-u-hxy-u.mon.GLB", + "aerosol.od550bb.tavg-u-hxy-u.mon.GLB", + "aerosol.od550bc.tavg-u-hxy-u.mon.GLB", + "aerosol.od550csaer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550dust.tavg-u-hxy-u.mon.GLB", + "aerosol.od550lt1aer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550no3.tavg-u-hxy-u.mon.GLB", + "aerosol.od550oa.tavg-u-hxy-u.mon.GLB", + "aerosol.od550so4.tavg-u-hxy-u.mon.GLB", + "aerosol.od550soa.tavg-u-hxy-u.mon.GLB", + "aerosol.od550ss.tavg-u-hxy-u.mon.GLB", + "aerosol.od865aer.tavg-u-hxy-u.mon.GLB", + "aerosol.oh.tavg-al-hxy-u.mon.GLB", + "aerosol.oh.tavg-p39-hy-air.mon.GLB", + "aerosol.pan.tavg-al-hxy-u.mon.GLB", + "aerosol.photo1d.tavg-al-hxy-u.mon.GLB", + "aerosol.pod0.tsum-u-hxy-u.mon.GLB", + "aerosol.reffccwctop.tavg-u-hxy-cl.mon.GLB", + "aerosol.reffclwtop.tavg-u-hxy-cl.mon.30S-90S", + "aerosol.reffclwtop.tavg-u-hxy-cl.mon.GLB", + "aerosol.rluscsaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rlutaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rlutcsaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rsutaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rsutcsaf.tavg-u-hxy-u.mon.GLB", + "aerosol.sfpm1.tavg-h2m-hxy-u.day.GLB", + "aerosol.sfpm10.tavg-al-hxy-u.mon.30S-90S", + "aerosol.sfpm10.tavg-al-hxy-u.mon.GLB", + "aerosol.sfpm10.tavg-h2m-hxy-u.day.GLB", + "aerosol.sfpm25.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.sfpm25.tavg-h2m-hxy-u.day.GLB", + "aerosol.so2.tavg-al-hxy-u.mon.30S-90S", + "aerosol.so2.tavg-al-hxy-u.mon.GLB", + "aerosol.so2.tavg-h2m-hxy-u.day.GLB", + "aerosol.so2.tpt-h2m-hs-u.3hr.GLB", + "aerosol.tatp.tavg-u-hxy-u.mon.GLB", + "aerosol.toz.tavg-u-hxy-u.day.GLB", + "aerosol.toz.tavg-u-hxy-u.mon.GLB", + "aerosol.tropoz.tavg-u-hxy-u.mon.GLB", + "aerosol.ttop.tavg-u-hxy-cl.mon.GLB", + "aerosol.ua.tavg-10hPa-hxy-air.day.GLB", + "aerosol.vt100.tavg-100hPa-hy-air.mon.GLB", + "aerosol.wa.tavg-al-hxy-u.mon.GLB", + "aerosol.wetbc.tavg-u-hxy-u.mon.GLB", + "aerosol.wetdust.tavg-u-hxy-u.mon.GLB", + "aerosol.wetoa.tavg-u-hxy-u.mon.GLB", + "aerosol.wetso2.tavg-u-hxy-u.mon.GLB", + "aerosol.wetso4.tavg-u-hxy-u.mon.GLB", + "aerosol.wetss.tavg-u-hxy-u.mon.GLB", + "aerosol.zg.tavg-10hPa-hxy-air.day.GLB", + "atmos.albisccp.tavg-u-hxy-cl.day.GLB", + "atmos.albisccp.tavg-u-hxy-cl.mon.30S-90S", + "atmos.albisccp.tavg-u-hxy-cl.mon.GLB", + "atmos.aod550volso4.tavg-u-hxy-u.mon.GLB", + "atmos.bldep.tavg-u-hxy-u.mon.GLB", + "atmos.bldep.tmax-u-hxy-u.day.GLB", + "atmos.bldep.tmin-u-hxy-u.day.GLB", + "atmos.ccb.tavg-u-hxy-ccl.day.GLB", + "atmos.ccb.tavg-u-hxy-ccl.mon.GLB", + "atmos.ccb.tpt-u-hs-u.subhr.GLB", + "atmos.cct.tavg-u-hxy-ccl.day.GLB", + "atmos.cct.tavg-u-hxy-ccl.mon.GLB", + "atmos.cct.tpt-u-hs-u.subhr.GLB", + "atmos.cfadDbze94.tavg-h40-hxy-air.mon.GLB", + "atmos.cfadLidarsr532.tavg-h40-hxy-air.mon.GLB", + "atmos.ci.tavg-u-hxy-u.mon.GLB", + "atmos.ci.tpt-u-hs-u.subhr.GLB", + "atmos.cl.tavg-al-hxy-u.day.GLB", + "atmos.cl.tavg-al-hxy-u.mon.30S-90S", + "atmos.cl.tpt-al-hs-u.subhr.GLB", + "atmos.clc.tavg-al-hxy-u.mon.30S-90S", + "atmos.clc.tavg-al-hxy-u.mon.GLB", + "atmos.clcalipso.tavg-220hPa-hxy-air.day.GLB", + "atmos.clcalipso.tavg-220hPa-hxy-air.mon.30S-90S", + "atmos.clcalipso.tavg-220hPa-hxy-air.mon.GLB", + "atmos.clcalipso.tavg-560hPa-hxy-air.day.GLB", + "atmos.clcalipso.tavg-560hPa-hxy-air.mon.30S-90S", + "atmos.clcalipso.tavg-560hPa-hxy-air.mon.GLB", + "atmos.clcalipso.tavg-840hPa-hxy-air.day.GLB", + "atmos.clcalipso.tavg-840hPa-hxy-air.mon.30S-90S", + "atmos.clcalipso.tavg-840hPa-hxy-air.mon.GLB", + "atmos.clcalipso.tavg-h40-hxy-air.day.GLB", + "atmos.clcalipso.tavg-h40-hxy-air.mon.30S-90S", + "atmos.clcalipso.tavg-h40-hxy-air.mon.GLB", + "atmos.clcalipsoice.tavg-h40-hxy-air.mon.GLB", + "atmos.clcalipsoliq.tavg-h40-hxy-air.mon.GLB", + "atmos.cldnci.tavg-u-hxy-cl.mon.GLB", + "atmos.cldncl.tavg-u-hxy-cl.mon.GLB", + "atmos.cldnvi.tavg-u-hxy-u.mon.GLB", + "atmos.cli.tavg-al-hxy-u.day.GLB", + "atmos.cli.tavg-al-hxy-u.mon.30S-90S", + "atmos.cli.tpt-al-hs-u.subhr.GLB", + "atmos.clic.tavg-al-hxy-u.mon.30S-90S", + "atmos.clic.tavg-al-hxy-u.mon.GLB", + "atmos.climodis.tavg-u-hxy-u.mon.GLB", + "atmos.clis.tavg-al-hxy-u.mon.30S-90S", + "atmos.clis.tavg-al-hxy-u.mon.GLB", + "atmos.clisccp.tavg-p7c-hxy-air.day.GLB", + "atmos.clisccp.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clisccp.tavg-p7c-hxy-air.mon.GLB", + "atmos.clivi.tavg-u-hxy-u.day.GLB", + "atmos.clivi.tavg-u-hxy-u.mon.30S-90S", + "atmos.clivi.tpt-u-hs-u.subhr.GLB", + "atmos.clivic.tavg-u-hxy-u.day.GLB", + "atmos.clivimodis.tavg-u-hxy-u.mon.30S-90S", + "atmos.clivimodis.tavg-u-hxy-u.mon.GLB", + "atmos.clmisr.tavg-h16-hxy-air.mon.GLB", + "atmos.clmodis.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clmodis.tavg-p7c-hxy-air.mon.GLB", + "atmos.clmodisice.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clmodisice.tavg-p7c-hxy-air.mon.GLB", + "atmos.clmodisiceReff.tavg-u-hxy-u.mon.GLB", + "atmos.clmodisliquid.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clmodisliquid.tavg-p7c-hxy-air.mon.GLB", + "atmos.clmodisliquidReff.tavg-u-hxy-u.mon.GLB", + "atmos.cls.tavg-al-hxy-u.mon.30S-90S", + "atmos.cls.tavg-al-hxy-u.mon.GLB", + "atmos.clt.tavg-u-hxy-lnd.day.GLB", + "atmos.clt.tavg-u-hxy-u.mon.30S-90S", + "atmos.clt.tpt-u-hs-u.subhr.GLB", + "atmos.cltc.tavg-u-hxy-u.mon.GLB", + "atmos.cltcalipso.tavg-u-hxy-u.day.GLB", + "atmos.cltcalipso.tavg-u-hxy-u.mon.30S-90S", + "atmos.cltcalipso.tavg-u-hxy-u.mon.GLB", + "atmos.cltisccp.tavg-u-hxy-u.day.GLB", + "atmos.cltisccp.tavg-u-hxy-u.mon.30S-90S", + "atmos.cltisccp.tavg-u-hxy-u.mon.GLB", + "atmos.cltmodis.tavg-u-hxy-u.mon.30S-90S", + "atmos.cltmodis.tavg-u-hxy-u.mon.GLB", + "atmos.clw.tavg-al-hxy-u.day.GLB", + "atmos.clw.tavg-al-hxy-u.mon.30S-90S", + "atmos.clw.tpt-al-hs-u.subhr.GLB", + "atmos.clwc.tavg-al-hxy-u.mon.30S-90S", + "atmos.clwc.tavg-al-hxy-u.mon.GLB", + "atmos.clwmodis.tavg-u-hxy-u.mon.GLB", + "atmos.clws.tavg-al-hxy-u.mon.30S-90S", + "atmos.clws.tavg-al-hxy-u.mon.GLB", + "atmos.clwvi.tavg-u-hxy-u.day.GLB", + "atmos.clwvi.tavg-u-hxy-u.mon.30S-90S", + "atmos.clwvi.tpt-u-hs-u.subhr.GLB", + "atmos.clwvic.tavg-u-hxy-u.day.GLB", + "atmos.clwvimodis.tavg-u-hxy-u.mon.30S-90S", + "atmos.clwvimodis.tavg-u-hxy-u.mon.GLB", + "atmos.co2.tavg-al-hxy-u.mon.GLB", + "atmos.co2.tavg-p19-hxy-air.mon.GLB", + "atmos.co2.tclm-p19-hxy-air.mon.GLB", + "atmos.co2.tclm-u-hm-u.mon.GLB", + "atmos.co23D.tavg-al-hxy-u.mon.GLB", + "atmos.co2mass.tavg-u-hm-u.mon.GLB", + "atmos.dmc.tavg-alh-hxy-u.mon.30S-90S", + "atmos.dmc.tavg-alh-hxy-u.mon.GLB", + "atmos.edt.tavg-al-hxy-u.mon.30S-90S", + "atmos.edt.tavg-al-hxy-u.mon.GLB", + "atmos.edt.tpt-al-hs-u.subhr.GLB", + "atmos.epfy.tavg-p39-hy-air.day.GLB", + "atmos.epfy.tavg-p39-hy-air.mon.GLB", + "atmos.epfz.tavg-p39-hy-air.day.GLB", + "atmos.epfz.tavg-p39-hy-air.mon.GLB", + "atmos.evspsbl.tavg-u-hxy-lnd.day.GLB", + "atmos.evspsbl.tpt-u-hs-u.subhr.GLB", + "atmos.evu.tavg-al-hxy-u.mon.30S-90S", + "atmos.evu.tavg-al-hxy-u.mon.GLB", + "atmos.evu.tpt-al-hs-u.subhr.GLB", + "atmos.fco2antt.tavg-u-hxy-u.mon.GLB", + "atmos.fco2antt.tpt-u-hs-u.subhr.GLB", + "atmos.fco2fos.tavg-u-hxy-u.mon.GLB", + "atmos.fco2fos.tpt-u-hs-u.subhr.GLB", + "atmos.fco2nat.tavg-u-hxy-u.mon.GLB", + "atmos.fco2nat.tpt-u-hs-u.subhr.GLB", + "atmos.hfls.tavg-u-hxy-u.day.GLB", + "atmos.hfls.tavg-u-hxy-u.mon.30S-90S", + "atmos.hfls.tpt-u-hs-u.subhr.GLB", + "atmos.hfss.tavg-u-hxy-u.day.GLB", + "atmos.hfss.tavg-u-hxy-u.mon.30S-90S", + "atmos.hfss.tpt-u-hs-u.subhr.GLB", + "atmos.hur.tavg-al-hxy-u.day.GLB", + "atmos.hur.tavg-al-hxy-u.mon.30S-90S", + "atmos.hur.tavg-al-hxy-u.mon.GLB", + "atmos.hur.tavg-p19-hxy-air.mon.30S-90S", + "atmos.hur.tpt-al-hs-u.subhr.GLB", + "atmos.hurs.tavg-h2m-hxy-u.mon.30S-90S", + "atmos.hurs.tmax-h2m-hxy-u.day.GLB", + "atmos.hurs.tmin-h2m-hxy-u.day.GLB", + "atmos.hurs.tpt-h2m-hs-u.subhr.GLB", + "atmos.hus.tavg-al-hxy-u.day.GLB", + "atmos.hus.tavg-al-hxy-u.mon.30S-90S", + "atmos.hus.tavg-al-hxy-u.mon.GLB", + "atmos.hus.tavg-p19-hxy-u.mon.30S-90S", + "atmos.hus.tpt-al-hs-u.subhr.GLB", + "atmos.hus.tpt-al-hxy-u.6hr.GLB", + "atmos.hus.tpt-p7h-hxy-air.6hr.GLB", + "atmos.huss.tavg-h2m-hxy-u.mon.30S-90S", + "atmos.huss.tpt-h2m-hs-u.subhr.GLB", + "atmos.huss.tpt-h2m-hxy-u.1hr.GLB", + "atmos.intuaw.tpt-u-hxy-u.6hr.GLB", + "atmos.intvaw.tpt-u-hxy-u.6hr.GLB", + "atmos.jpdftaureicemodis.tavg-u-hxy-u.day.GLB", + "atmos.jpdftaureicemodis.tavg-u-hxy-u.mon.GLB", + "atmos.jpdftaureliqmodis.tavg-u-hxy-u.day.GLB", + "atmos.jpdftaureliqmodis.tavg-u-hxy-u.mon.GLB", + "atmos.lat.ti-u-hs-u.fx.GLB", + "atmos.loadso4.tavg-u-hxy-u.mon.GLB", + "atmos.lon.ti-u-hs-u.fx.GLB", + "atmos.mc.tavg-alh-hxy-u.day.GLB", + "atmos.mc.tavg-alh-hxy-u.mon.GLB", + "atmos.mc.tpt-alh-hs-u.subhr.GLB", + "atmos.mcd.tavg-alh-hxy-u.mon.30S-90S", + "atmos.mcd.tavg-alh-hxy-u.mon.GLB", + "atmos.mcu.tavg-alh-hxy-u.mon.30S-90S", + "atmos.mcu.tavg-alh-hxy-u.mon.GLB", + "atmos.parasolRefl.tavg-u-hxy-sea.day.GLB", + "atmos.parasolRefl.tavg-u-hxy-sea.mon.GLB", + "atmos.pctisccp.tavg-u-hxy-cl.day.GLB", + "atmos.pctisccp.tavg-u-hxy-cl.mon.30S-90S", + "atmos.pctisccp.tavg-u-hxy-cl.mon.GLB", + "atmos.pfull.tavg-al-hxy-u.day.GLB", + "atmos.pfull.tavg-al-hxy-u.mon.GLB", + "atmos.pfull.tclm-al-hxy-u.mon.30S-90S", + "atmos.pfull.tclm-al-hxy-u.mon.GLB", + "atmos.pfull.tpt-al-hs-u.subhr.GLB", + "atmos.phalf.tavg-alh-hxy-u.day.GLB", + "atmos.phalf.tavg-alh-hxy-u.mon.GLB", + "atmos.phalf.tclm-alh-hxy-u.mon.GLB", + "atmos.phalf.tpt-alh-hs-u.subhr.GLB", + "atmos.pr.tavg-u-hxy-u.mon.30S-90S", + "atmos.pr.tmax-u-hxy-u.day.GLB", + "atmos.pr.tpt-u-hs-u.subhr.GLB", + "atmos.pr.tpt-u-hxy-u.6hr.GLB", + "atmos.prc.tavg-u-hxy-u.day.GLB", + "atmos.prc.tavg-u-hxy-u.mon.30S-90S", + "atmos.prc.tpt-u-hs-u.subhr.GLB", + "atmos.prra.tavg-u-hxy-lnd.day.GLB", + "atmos.prra.tavg-u-hxy-u.mon.30S-90S", + "atmos.prsn.tavg-u-hxy-u.3hr.GLB", + "atmos.prsn.tavg-u-hxy-u.day.GLB", + "atmos.prsn.tavg-u-hxy-u.mon.30S-90S", + "atmos.prsn.tpt-u-hs-u.subhr.GLB", + "atmos.prw.tavg-u-hxy-u.day.GLB", + "atmos.prw.tavg-u-hxy-u.mon.30S-90S", + "atmos.prw.tpt-u-hs-u.subhr.GLB", + "atmos.prw.tpt-u-hxy-u.6hr.GLB", + "atmos.ps.tavg-u-hxy-u.1hr.GLB", + "atmos.ps.tavg-u-hxy-u.mon.30S-90S", + "atmos.ps.tpt-u-hs-u.subhr.GLB", + "atmos.ps.tpt-u-hxy-u.6hr.GLB", + "atmos.psl.tavg-u-hxy-u.mon.30S-90S", + "atmos.psl.tpt-u-hs-u.subhr.GLB", + "atmos.psl.tpt-u-hxy-u.1hr.GLB", + "atmos.psl.tpt-u-hxy-u.6hr.GLB", + "atmos.ptp.tavg-u-hxy-u.mon.GLB", + "atmos.reffcclwtop.tavg-u-hxy-ccl.mon.GLB", + "atmos.reffclic.tavg-al-hxy-ccl.mon.30S-90S", + "atmos.reffclic.tavg-al-hxy-ccl.mon.GLB", + "atmos.reffclic.tpt-al-hs-ccl.subhr.GLB", + "atmos.reffclis.tavg-al-hxy-scl.mon.30S-90S", + "atmos.reffclis.tavg-al-hxy-scl.mon.GLB", + "atmos.reffclis.tpt-al-hs-scl.subhr.GLB", + "atmos.reffclwc.tavg-al-hxy-ccl.mon.30S-90S", + "atmos.reffclwc.tavg-al-hxy-ccl.mon.GLB", + "atmos.reffclwc.tpt-al-hs-ccl.subhr.GLB", + "atmos.reffclws.tavg-al-hxy-scl.mon.30S-90S", + "atmos.reffclws.tavg-al-hxy-scl.mon.GLB", + "atmos.reffclws.tpt-al-hs-scl.subhr.GLB", + "atmos.reffsclwtop.tavg-u-hxy-scl.mon.GLB", + "atmos.rld.tavg-alh-hxy-u.mon.GLB", + "atmos.rld.tpt-alh-hs-u.subhr.GLB", + "atmos.rld4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rldcs.tavg-alh-hxy-u.mon.GLB", + "atmos.rldcs.tpt-alh-hs-u.subhr.GLB", + "atmos.rldcs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rlds.tavg-u-hxy-u.1hr.GLB", + "atmos.rlds.tavg-u-hxy-u.day.GLB", + "atmos.rlds.tavg-u-hxy-u.mon.30S-90S", + "atmos.rlds.tpt-u-hs-u.subhr.GLB", + "atmos.rldscs.tavg-u-hxy-u.day.GLB", + "atmos.rldscs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rldscs.tpt-u-hs-u.subhr.GLB", + "atmos.rlu.tavg-alh-hxy-u.mon.GLB", + "atmos.rlu.tpt-alh-hs-u.subhr.GLB", + "atmos.rlu4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rlucs.tavg-alh-hxy-u.mon.GLB", + "atmos.rlucs.tpt-alh-hs-u.subhr.GLB", + "atmos.rlucs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rlus.tavg-u-hxy-u.day.GLB", + "atmos.rlus.tavg-u-hxy-u.mon.30S-90S", + "atmos.rlus.tpt-u-hs-u.subhr.GLB", + "atmos.rluscs.tavg-u-hxy-u.day.GLB", + "atmos.rlut.tavg-u-hxy-u.day.GLB", + "atmos.rlut.tavg-u-hxy-u.mon.30S-90S", + "atmos.rlut.tclmdc-u-hxy-u.1hr.GLB", + "atmos.rlut.tpt-u-hs-u.subhr.GLB", + "atmos.rlut4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rlutcs.tavg-u-hxy-u.day.GLB", + "atmos.rlutcs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rlutcs.tclmdc-u-hxy-u.1hr.GLB", + "atmos.rlutcs.tpt-u-hs-u.subhr.GLB", + "atmos.rlutcs4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rsd.tavg-alh-hxy-u.mon.GLB", + "atmos.rsd.tpt-alh-hs-u.subhr.GLB", + "atmos.rsd4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsdcs.tavg-alh-hxy-u.mon.GLB", + "atmos.rsdcs.tpt-alh-hs-u.subhr.GLB", + "atmos.rsdcs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsds.tavg-u-hxy-u.1hr.GLB", + "atmos.rsds.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsds.tpt-u-hs-u.subhr.GLB", + "atmos.rsdscs.tavg-u-hxy-u.day.GLB", + "atmos.rsdscs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsdscs.tpt-u-hs-u.subhr.GLB", + "atmos.rsdt.tavg-u-hxy-u.day.GLB", + "atmos.rsdt.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsdt.tclmdc-u-hxy-u.1hr.GLB", + "atmos.rsdt.tpt-u-hs-u.subhr.GLB", + "atmos.rsu.tavg-alh-hxy-u.mon.GLB", + "atmos.rsu.tpt-alh-hs-u.subhr.GLB", + "atmos.rsu4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsucs.tavg-alh-hxy-u.mon.GLB", + "atmos.rsucs.tpt-alh-hs-u.subhr.GLB", + "atmos.rsucs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsus.tavg-u-hxy-u.day.GLB", + "atmos.rsus.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsus.tpt-u-hs-u.subhr.GLB", + "atmos.rsuscs.tavg-u-hxy-u.day.GLB", + "atmos.rsuscs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsuscs.tpt-u-hs-u.subhr.GLB", + "atmos.rsut.tavg-u-hxy-u.day.GLB", + "atmos.rsut.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsut.tclmdc-u-hxy-u.1hr.GLB", + "atmos.rsut.tpt-u-hs-u.subhr.GLB", + "atmos.rsut4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rsutcs.tavg-u-hxy-u.day.GLB", + "atmos.rsutcs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsutcs.tclmdc-u-hxy-u.1hr.GLB", + "atmos.rsutcs.tpt-u-hs-u.subhr.GLB", + "atmos.rsutcs4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rtmt.tavg-u-hxy-u.mon.GLB", + "atmos.rtmt.tpt-u-hs-u.subhr.GLB", + "atmos.rv850.tpt-850hPa-hxy-air.6hr.GLB", + "atmos.sci.tavg-u-hxy-u.mon.GLB", + "atmos.sci.tpt-u-hs-u.subhr.GLB", + "atmos.scldncl.tavg-u-hxy-scl.mon.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.mon.30S-90S", + "atmos.sfcWind.tmax-h10m-hxy-u.day.GLB", + "atmos.sfcWind.tpt-h10m-hs-u.subhr.GLB", + "atmos.smc.tavg-alh-hxy-u.mon.GLB", + "atmos.ta.tavg-700hPa-hxy-air.day.GLB", + "atmos.ta.tavg-al-hxy-u.day.GLB", + "atmos.ta.tavg-al-hxy-u.mon.30S-90S", + "atmos.ta.tavg-al-hxy-u.mon.GLB", + "atmos.ta.tavg-p19-hxy-air.mon.30S-90S", + "atmos.ta.tavg-p39-hy-air.day.GLB", + "atmos.ta.tavg-p39-hy-air.mon.GLB", + "atmos.ta.tpt-al-hs-u.subhr.GLB", + "atmos.ta.tpt-al-hxy-u.6hr.GLB", + "atmos.ta.tpt-p7h-hxy-air.6hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.1hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.mon.30S-90S", + "atmos.tas.tmaxavg-h2m-hxy-u.mon.30S-90S", + "atmos.tas.tminavg-h2m-hxy-u.mon.30S-90S", + "atmos.tas.tpt-h2m-hs-u.subhr.GLB", + "atmos.tauu.tavg-u-hxy-u.day.GLB", + "atmos.tauu.tpt-u-hs-u.subhr.GLB", + "atmos.tauunoegw.tavg-p39-hy-air.day.GLB", + "atmos.tauunowgw.tavg-p39-hy-air.day.GLB", + "atmos.tauuogw.tavg-p39-hy-air.day.GLB", + "atmos.tauv.tavg-u-hxy-u.day.GLB", + "atmos.tauv.tpt-u-hs-u.subhr.GLB", + "atmos.tauvnogw.tavg-p39-hy-air.day.GLB", + "atmos.tauvogw.tavg-p39-hy-air.day.GLB", + "atmos.tnhus.tavg-al-hxy-u.mon.GLB", + "atmos.tnhus.tpt-al-hs-u.subhr.GLB", + "atmos.tnhusa.tavg-al-hxy-u.mon.GLB", + "atmos.tnhusa.tpt-al-hs-u.subhr.GLB", + "atmos.tnhusc.tavg-al-hxy-u.mon.GLB", + "atmos.tnhusc.tpt-al-hs-u.subhr.GLB", + "atmos.tnhusd.tavg-al-hxy-u.mon.GLB", + "atmos.tnhusd.tpt-al-hs-u.subhr.GLB", + "atmos.tnhusmp.tavg-al-hxy-u.mon.GLB", + "atmos.tnhusmp.tpt-al-hs-u.subhr.GLB", + "atmos.tnhuspbl.tavg-al-hxy-u.mon.GLB", + "atmos.tnhuspbl.tpt-al-hs-u.subhr.GLB", + "atmos.tnhusscp.tavg-al-hxy-u.mon.GLB", + "atmos.tnhusscp.tpt-al-hs-u.subhr.GLB", + "atmos.tnhusscpbl.tavg-al-hxy-u.mon.GLB", + "atmos.tnhusscpbl.tpt-al-hs-u.subhr.GLB", + "atmos.tnt.tavg-al-hxy-u.mon.GLB", + "atmos.tnt.tpt-al-hs-u.subhr.GLB", + "atmos.tnta.tavg-al-hxy-u.mon.GLB", + "atmos.tnta.tpt-al-hs-u.subhr.GLB", + "atmos.tntc.tavg-al-hxy-u.mon.GLB", + "atmos.tntc.tpt-al-hs-u.subhr.GLB", + "atmos.tntd.tavg-al-hxy-u.mon.GLB", + "atmos.tntd.tpt-al-hs-u.subhr.GLB", + "atmos.tntmp.tavg-al-hxy-u.mon.GLB", + "atmos.tntmp.tavg-p39-hy-air.day.GLB", + "atmos.tntmp.tavg-p39-hy-air.mon.GLB", + "atmos.tntmp.tpt-al-hs-u.subhr.GLB", + "atmos.tntpbl.tavg-al-hxy-u.mon.GLB", + "atmos.tntpbl.tpt-al-hs-u.subhr.GLB", + "atmos.tntr.tavg-al-hxy-u.mon.GLB", + "atmos.tntr.tpt-al-hs-u.subhr.GLB", + "atmos.tntrl.tavg-al-hxy-u.mon.GLB", + "atmos.tntrl.tavg-p39-hy-air.day.GLB", + "atmos.tntrl.tavg-p39-hy-air.mon.GLB", + "atmos.tntrl.tpt-al-hs-u.subhr.GLB", + "atmos.tntrlcs.tavg-al-hxy-u.mon.GLB", + "atmos.tntrlcs.tpt-al-hs-u.subhr.GLB", + "atmos.tntrs.tavg-al-hxy-u.mon.GLB", + "atmos.tntrs.tavg-p39-hy-air.day.GLB", + "atmos.tntrs.tavg-p39-hy-air.mon.GLB", + "atmos.tntrs.tpt-al-hs-u.subhr.GLB", + "atmos.tntrscs.tavg-al-hxy-u.mon.GLB", + "atmos.tntrscs.tpt-al-hs-u.subhr.GLB", + "atmos.tntscp.tavg-al-hxy-u.mon.GLB", + "atmos.tntscp.tpt-al-hs-u.subhr.GLB", + "atmos.tntscpbl.tavg-al-hxy-u.mon.GLB", + "atmos.tntscpbl.tpt-al-hs-u.subhr.GLB", + "atmos.ts.tavg-u-hxy-u.mon.30S-90S", + "atmos.ts.tpt-u-hs-u.subhr.GLB", + "atmos.ts.tpt-u-hxy-u.6hr.GLB", + "atmos.ua.tavg-al-hxy-u.day.GLB", + "atmos.ua.tavg-al-hxy-u.mon.GLB", + "atmos.ua.tavg-p19-hxy-air.mon.30S-90S", + "atmos.ua.tavg-p39-hy-air.day.GLB", + "atmos.ua.tavg-p39-hy-air.mon.GLB", + "atmos.ua.tpt-al-hs-u.subhr.GLB", + "atmos.ua.tpt-al-hxy-u.6hr.GLB", + "atmos.ua.tpt-p7h-hxy-air.6hr.GLB", + "atmos.uas.tavg-h10m-hxy-u.mon.30S-90S", + "atmos.uas.tpt-h10m-hs-u.subhr.GLB", + "atmos.uas.tpt-h10m-hxy-u.1hr.GLB", + "atmos.uas.tpt-h10m-hxy-u.6hr.GLB", + "atmos.utendepfd.tavg-p39-hy-air.day.GLB", + "atmos.utendepfd.tavg-p39-hy-air.mon.GLB", + "atmos.utendnogw.tavg-p39-hy-air.day.GLB", + "atmos.utendnogw.tavg-p39-hy-air.mon.GLB", + "atmos.utendogw.tavg-p39-hy-air.day.GLB", + "atmos.utendogw.tavg-p39-hy-air.mon.GLB", + "atmos.utendvtem.tavg-p39-hy-air.day.GLB", + "atmos.utendwtem.tavg-p39-hy-air.day.GLB", + "atmos.va.tavg-al-hxy-u.day.GLB", + "atmos.va.tavg-al-hxy-u.mon.GLB", + "atmos.va.tavg-p19-hxy-air.mon.30S-90S", + "atmos.va.tavg-p39-hy-air.mon.GLB", + "atmos.va.tpt-al-hs-u.subhr.GLB", + "atmos.va.tpt-al-hxy-u.6hr.GLB", + "atmos.va.tpt-p7h-hxy-air.6hr.GLB", + "atmos.vas.tavg-h10m-hxy-u.mon.30S-90S", + "atmos.vas.tpt-h10m-hs-u.subhr.GLB", + "atmos.vas.tpt-h10m-hxy-u.1hr.GLB", + "atmos.vas.tpt-h10m-hxy-u.6hr.GLB", + "atmos.vtem.tavg-p39-hy-air.day.GLB", + "atmos.vtem.tavg-p39-hy-air.mon.GLB", + "atmos.wap.tavg-500hPa-hxy-air.day.GLB", + "atmos.wap.tavg-al-hxy-u.day.GLB", + "atmos.wap.tavg-p19-hxy-air.mon.30S-90S", + "atmos.wap.tpt-al-hs-u.subhr.GLB", + "atmos.wtem.tavg-p39-hy-air.day.GLB", + "atmos.wtem.tavg-p39-hy-air.mon.GLB", + "atmos.zg.tavg-1000hPa-hxy-air.day.GLB", + "atmos.zg.tavg-500hPa-hxy-air.day.GLB", + "atmos.zg.tavg-al-hxy-u.day.GLB", + "atmos.zg.tavg-al-hxy-u.mon.GLB", + "atmos.zg.tavg-p19-hxy-air.mon.30S-90S", + "atmos.zg.tavg-p39-hy-air.day.GLB", + "atmos.zg.tavg-p39-hy-air.mon.GLB", + "atmos.zg.tpt-500hPa-hxy-air.6hr.GLB", + "atmos.zg.tpt-al-hs-u.subhr.GLB", + "atmos.zg.tpt-al-hxy-u.6hr.GLB", + "atmos.zg.tpt-p3-hxy-air.6hr.GLB", + "atmos.zg.tpt-p7h-hxy-air.6hr.GLB", + "atmos.ztp.tavg-u-hxy-u.mon.GLB", + "atmosChem.c2h4.tavg-al-hxy-u.mon.GLB", + "atmosChem.c2h5oh.tavg-al-hxy-u.mon.GLB", + "atmosChem.c4h10.tavg-al-hxy-u.mon.GLB", + "atmosChem.cfc11.tavg-u-hm-u.mon.GLB", + "atmosChem.cfc113.tavg-u-hm-u.mon.GLB", + "atmosChem.cfc12.tavg-u-hm-u.mon.GLB", + "atmosChem.ch3oh.tavg-al-hxy-u.mon.GLB", + "atmosChem.ch4.tavg-al-hxy-u.mon.GLB", + "atmosChem.ch4.tavg-p19-hxy-air.mon.GLB", + "atmosChem.ch4.tavg-p39-hy-air.mon.GLB", + "atmosChem.ch4.tavg-u-hm-u.mon.GLB", + "atmosChem.ch4.tclm-p19-hxy-air.mon.GLB", + "atmosChem.ch4.tclm-u-hm-u.mon.GLB", + "atmosChem.ch4losssoil.tavg-u-hxy-u.mon.GLB", + "atmosChem.ch4ref.ti-al-hxy-u.fx.GLB", + "atmosChem.chegph2oo1d.tavg-al-hxy-u.mon.GLB", + "atmosChem.chepnh4.tavg-al-hxy-u.mon.GLB", + "atmosChem.chepno3.tavg-al-hxy-u.mon.GLB", + "atmosChem.dms.tavg-al-hxy-u.mon.30S-90S", + "atmosChem.dms.tavg-al-hxy-u.mon.GLB", + "atmosChem.do3chm.tavg-al-hxy-u.mon.GLB", + "atmosChem.dryh2.tavg-u-hxy-u.mon.GLB", + "atmosChem.dryhno3.tavg-u-hxy-u.mon.GLB", + "atmosChem.drynh3.tavg-u-hxy-u.mon.GLB", + "atmosChem.drynh4.tavg-u-hxy-u.mon.GLB", + "atmosChem.drynoy.tavg-u-hxy-u.mon.GLB", + "atmosChem.e90inst.tpt-al-hxy-u.mon.GLB", + "atmosChem.emiach4.tavg-u-hxy-u.mon.GLB", + "atmosChem.emiavnox.tavg-al-hxy-u.mon.GLB", + "atmosChem.emic2h4.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic2h5oh.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic2h6.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic3h6.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic3h8.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic4h10.tavg-u-hxy-u.mon.GLB", + "atmosChem.emich3oh.tavg-u-hxy-u.mon.GLB", + "atmosChem.emich4.tavg-u-hxy-u.mon.GLB", + "atmosChem.emih2.tavg-u-hxy-u.mon.GLB", + "atmosChem.emilkch4.tavg-u-hxy-u.mon.GLB", + "atmosChem.h2.tavg-al-hxy-u.mon.GLB", + "atmosChem.h2loss.tavg-al-hxy-u.mon.GLB", + "atmosChem.h2prod.tavg-al-hxy-u.mon.GLB", + "atmosChem.hcfc22.tavg-u-hm-u.mon.GLB", + "atmosChem.meanage.tavg-al-hxy-u.mon.GLB", + "atmosChem.meanage.tavg-p39-hy-air.mon.GLB", + "atmosChem.n2o.tavg-al-hxy-u.mon.GLB", + "atmosChem.n2o.tavg-p19-hxy-air.mon.GLB", + "atmosChem.n2o.tavg-p39-hy-air.mon.GLB", + "atmosChem.n2o.tavg-u-hm-u.mon.GLB", + "atmosChem.n2o.tclm-p19-hxy-air.mon.GLB", + "atmosChem.n2o.tclm-u-hm-u.mon.GLB", + "atmosChem.o3.tavg-al-hxy-u.mon.GLB", + "atmosChem.o3.tavg-p19-hxy-air.mon.GLB", + "atmosChem.o3.tavg-p39-hy-air.mon.GLB", + "atmosChem.o3.tclm-p19-hxy-air.mon.GLB", + "atmosChem.o3.tpt-al-hxy-u.mon.GLB", + "atmosChem.o3ref.tclm-al-hxy-u.fx.GLB", + "atmosChem.o3ref.ti-al-hxy-u.fx.GLB", + "atmosChem.o3ste.tavg-al-hxy-u.mon.GLB", + "atmosChem.rlutch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rlutcsch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rlutcso3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rluto3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsutch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsutcsch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsutcso3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsuto3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.stratch4loss.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropch4loss.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropch4lossoh.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropdo3chm.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropo3ste.tavg-al-hxy-u.mon.GLB", + "atmosChem.wethno3.tavg-al-hxy-u.mon.GLB", + "atmosChem.wetnh3.tavg-u-hxy-u.mon.GLB", + "atmosChem.wetnh4.tavg-u-hxy-u.mon.GLB", + "atmosChem.wetno3.tavg-al-hxy-u.mon.GLB", + "atmosChem.wetnoy.tavg-u-hxy-u.mon.GLB", + "land.albc.tavg-u-hxy-veg.mon.GLB", + "land.areacellr.ti-u-hxy-u.fx.GLB", + "land.baresoilFrac.tavg-u-hxy-u.mon.GLB", + "land.burntFractionAll.tavg-u-hxy-u.mon.GLB", + "land.cGeologicStorage.tavg-u-hxy-u.mon.GLB", + "land.cLand.tavg-u-hxy-lnd.mon.GLB", + "land.cLitter.tavg-u-hxy-lnd.mon.GLB", + "land.cnc.tavg-u-hxy-u.mon.GLB", + "land.cProduct.tavg-u-hxy-lnd.mon.GLB", + "land.cropFrac.tavg-u-hxy-u.mon.GLB", + "land.cSoil.tavg-d100cm-hxy-lnd.mon.GLB", + "land.cSoil.tavg-u-hxy-lnd.mon.GLB", + "land.cVeg.tavg-u-hxy-lnd.mon.GLB", + "land.dcw.tavg-u-hxy-lnd.day.GLB", + "land.dslw.tavg-u-hxy-lnd.day.GLB", + "land.evspsblpot.tavg-u-hxy-lnd.day.GLB", + "land.evspsblpot.tavg-u-hxy-lnd.mon.GLB", + "land.evspsblsoi.tavg-u-hxy-u.day.GLB", + "land.evspsblveg.tavg-u-hxy-u.day.GLB", + "land.fAnthDisturb.tavg-u-hxy-lnd.mon.GLB", + "land.fBNF.tavg-u-hxy-lnd.mon.GLB", + "land.fCLandToOcean.tavg-u-hxy-lnd.mon.GLB", + "land.fDeforestToAtmos.tavg-u-hxy-lnd.mon.GLB", + "land.fDeforestToProduct.tavg-u-hxy-lnd.mon.GLB", + "land.fFire.tavg-u-hxy-lnd.mon.GLB", + "land.fFireAll.tavg-u-hxy-lnd.mon.GLB", + "land.fFireNat.tavg-u-hxy-lnd.mon.GLB", + "land.fHarvestToAtmos.tavg-u-hxy-lnd.mon.GLB", + "land.fHarvestToGeologicStorage.tavg-u-hxy-lnd.mon.GLB", + "land.fHarvestToProduct.tavg-u-hxy-lnd.mon.GLB", + "land.fLitterSoil.tavg-u-hxy-lnd.mon.GLB", + "land.fN2O.tavg-u-hxy-lnd.mon.GLB", + "land.fNAnthDisturb.tavg-u-hxy-lnd.mon.GLB", + "land.fNdep.tavg-u-hxy-lnd.mon.GLB", + "land.fNfert.tavg-u-hxy-lnd.mon.GLB", + "land.fNLandToOcean.tavg-u-hxy-lnd.mon.GLB", + "land.fNLitterSoil.tavg-u-hxy-lnd.mon.GLB", + "land.fNloss.tavg-u-hxy-lnd.mon.GLB", + "land.fNnetmin.tavg-u-hxy-lnd.mon.GLB", + "land.fNOx.tavg-u-hxy-lnd.mon.GLB", + "land.fNProduct.tavg-u-hxy-lnd.mon.GLB", + "land.fNup.tavg-u-hxy-lnd.mon.GLB", + "land.fNVegLitter.tavg-u-hxy-lnd.mon.GLB", + "land.fNVegSoil.tavg-u-hxy-lnd.mon.GLB", + "land.fProductDecomp.tavg-u-hxy-lnd.mon.GLB", + "land.fVegLitter.tavg-u-hxy-lnd.mon.GLB", + "land.fVegSoil.tavg-u-hxy-lnd.mon.GLB", + "land.gpp.tavg-u-hxy-lnd.mon.GLB", + "land.grassFrac.tavg-u-hxy-u.mon.GLB", + "land.landCoverFrac.tavg-u-hxy-u.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.day.GLB", + "land.mrrob.tavg-u-hxy-lnd.day.GLB", + "land.mrros.tavg-u-hxy-lnd.day.GLB", + "land.mrsfl.tavg-sl-hxy-lnd.day.GLB", + "land.mrsfl.tavg-sl-hxy-lnd.mon.GLB", + "land.mrsll.tavg-sl-hxy-lnd.day.GLB", + "land.mrsll.tavg-sl-hxy-lnd.mon.GLB", + "land.mrso.tavg-u-hxy-lnd.day.GLB", + "land.mrsol.tavg-d10cm-hxy-lnd.day.GLB", + "land.mrsol.tavg-sl-hxy-lnd.day.GLB", + "land.mrsol.tavg-sl-hxy-lnd.mon.GLB", + "land.mrsow.tavg-u-hxy-lnd.day.GLB", + "land.mrtws.tavg-u-hxy-lnd.day.GLB", + "land.mrtws.tavg-u-hxy-lnd.mon.GLB", + "land.nbp.tavg-u-hxy-lnd.mon.GLB", + "land.nep.tavg-u-hxy-lnd.mon.GLB", + "land.nLand.tavg-u-hxy-lnd.mon.GLB", + "land.nLitter.tavg-u-hxy-lnd.mon.GLB", + "land.nMineral.tavg-u-hxy-lnd.mon.GLB", + "land.npp.tavg-u-hxy-lnd.mon.GLB", + "land.nProduct.tavg-u-hxy-lnd.mon.GLB", + "land.nSoil.tavg-u-hxy-lnd.mon.GLB", + "land.nVeg.tavg-u-hxy-lnd.mon.GLB", + "land.pastureFrac.tavg-u-hxy-u.mon.GLB", + "land.prveg.tavg-u-hxy-lnd.mon.GLB", + "land.ra.tavg-u-hxy-lnd.mon.GLB", + "land.residualFrac.tavg-u-hxy-u.mon.GLB", + "land.rh.tavg-u-hxy-lnd.mon.GLB", + "land.rivi.tavg-u-hxy-lnd.day.GLB", + "land.rivo.tavg-u-hxy-lnd.day.GLB", + "land.rsds.tavg-u-hxy-sn.mon.GLB", + "land.rsus.tavg-u-hxy-sn.mon.GLB", + "land.shrubFrac.tavg-u-hxy-u.mon.GLB", + "land.tas.tavg-u-hxy-u.1hr.GLB", + "land.tran.tavg-u-hxy-lnd.mon.GLB", + "land.treeFrac.tavg-u-hxy-u.mon.GLB", + "land.tsl.tavg-sl-hxy-lnd.mon.GLB", + "land.tslsi.tavg-u-hxy-u.day.GLB", + "land.vegFrac.tavg-u-hxy-u.mon.GLB", + "land.vegHeight.tavg-u-hxy-veg.mon.GLB", + "land.wetlandCH4.tavg-u-hxy-lnd.mon.GLB", + "land.wtd.tavg-u-hxy-lnd.day.GLB", + "landIce.sbl.tavg-u-hxy-u.mon.GLB", + "landIce.sbl.tpt-u-hs-u.subhr.GLB", + "landIce.snc.tavg-u-hxy-lnd.day.GLB", + "landIce.snd.tavg-u-hxy-lnd.mon.GLB", + "landIce.snw.tavg-u-hxy-lnd.day.GLB", + "ocean.absscint.tavg-op4-hxy-sea.mon.GLB", + "ocean.agessc.tavg-ol-hxy-sea.mon.GLB", + "ocean.bigthetao.tavg-ol-hm-sea.mon.GLB", + "ocean.bigthetao.tavg-ol-hxy-sea.dec.GLB", + "ocean.bigthetao.tavg-op20bar-hxy-sea.day.GLB", + "ocean.chcint.tavg-op4-hxy-sea.mon.GLB", + "ocean.ficeberg.tavg-ol-hxy-sea.mon.GLB", + "ocean.friver.tavg-u-hxy-sea.mon.GLB", + "ocean.hfbasin.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpmadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpmdiff.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpsmadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfds.tavg-u-hxy-sea.mon.30S-90S", + "ocean.hfx.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfx.tavg-u-hxy-sea.day.GLB", + "ocean.hfx.tavg-u-hxy-sea.mon.GLB", + "ocean.hfy.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfy.tavg-u-hxy-sea.day.GLB", + "ocean.hfy.tavg-u-hxy-sea.mon.GLB", + "ocean.htovgyre.tavg-u-hyb-sea.mon.GLB", + "ocean.htovovrt.tavg-u-hyb-sea.mon.GLB", + "ocean.masscello.tavg-ol-hxy-sea.dec.GLB", + "ocean.masso.tavg-u-hm-sea.dec.GLB", + "ocean.masso.tavg-u-hm-sea.mon.GLB", + "ocean.mlotst.tavg-u-hxy-sea.day.GLB", + "ocean.mlotst.tavg-u-hxy-sea.mon.30S-90S", + "ocean.mlotst.tmax-u-hxy-sea.mon.GLB", + "ocean.mlotst.tmin-u-hxy-sea.mon.GLB", + "ocean.mpw.tavg-u-hxy-sea.mon.GLB", + "ocean.mpw.tpt-u-hxy-sea.3hr.GLB", + "ocean.mpwswell.tavg-u-hxy-sea.mon.GLB", + "ocean.mpwswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.mpwwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.mpwwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.msftbarot.tavg-u-hxy-sea.mon.GLB", + "ocean.msftm.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftm.tavg-rho-hyb-sea.mon.GLB", + "ocean.msfty.tavg-ol-ht-sea.mon.GLB", + "ocean.msfty.tavg-rho-ht-sea.mon.GLB", + "ocean.obvfsq.tavg-ol-hxy-sea.mon.GLB", + "ocean.pbo.tavg-u-hxy-sea.mon.GLB", + "ocean.pfscint.tavg-op4-hxy-sea.mon.GLB", + "ocean.phcint.tavg-op4-hxy-sea.mon.GLB", + "ocean.pso.tavg-u-hxy-sea.mon.GLB", + "ocean.scint.tavg-op4-hxy-sea.mon.GLB", + "ocean.sduo.tavg-u-hxy-sea.mon.GLB", + "ocean.sduo.tpt-u-hxy-sea.3hr.GLB", + "ocean.sdvo.tavg-u-hxy-sea.mon.GLB", + "ocean.sdvo.tpt-u-hxy-sea.3hr.GLB", + "ocean.sfx.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfx.tavg-u-hxy-sea.mon.GLB", + "ocean.sfy.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfy.tavg-u-hxy-sea.mon.GLB", + "ocean.sltbasin.tavg-u-hyb-sea.mon.GLB", + "ocean.sltovgyre.tavg-u-hyb-sea.mon.GLB", + "ocean.sltovovrt.tavg-u-hyb-sea.mon.GLB", + "ocean.so.tavg-ol-hm-sea.mon.GLB", + "ocean.so.tavg-ol-hxy-sea.dec.GLB", + "ocean.so.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.sob.tavg-u-hxy-sea.mon.GLB", + "ocean.sos.tavg-u-hm-sea.mon.30S-90S", + "ocean.sos.tavg-u-hm-sea.mon.GLB", + "ocean.swh.tavg-u-hxy-sea.mon.GLB", + "ocean.swh.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhmax.tmax-u-hxy-sea.mon.GLB", + "ocean.swhmax.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhswell.tavg-u-hxy-sea.mon.GLB", + "ocean.swhswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.swhwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.tauuo.tavg-u-hxy-sea.3hr.GLB", + "ocean.tauuo.tavg-u-hxy-sea.dec.GLB", + "ocean.tauvo.tavg-u-hxy-sea.3hr.GLB", + "ocean.tauvo.tavg-u-hxy-sea.dec.GLB", + "ocean.thetao.tavg-ol-hm-sea.mon.GLB", + "ocean.thetao.tavg-ol-hxy-sea.dec.GLB", + "ocean.thetao.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.thetao.tavg-op20bar-hxy-sea.day.GLB", + "ocean.thkcello.tavg-ol-hxy-sea.dec.GLB", + "ocean.tob.tavg-u-hxy-sea.mon.GLB", + "ocean.tos.tavg-u-hm-sea.mon.GLB", + "ocean.tos.tavg-u-hxy-sea.mon.30S-90S", + "ocean.tos.tpt-u-hxy-sea.3hr.GLB", + "ocean.tossq.tavg-u-hxy-sea.day.GLB", + "ocean.umo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.uo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.uos.tavg-u-hxy-sea.day.GLB", + "ocean.vmo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.vo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.volcello.tavg-ol-hxy-sea.dec.GLB", + "ocean.volcello.tavg-ol-hxy-sea.mon.GLB", + "ocean.volcello.tavg-ol-hxy-sea.yr.GLB", + "ocean.volcello.ti-ol-hxy-sea.fx.GLB", + "ocean.volo.tavg-u-hm-sea.dec.GLB", + "ocean.volo.tavg-u-hm-sea.mon.GLB", + "ocean.vos.tavg-u-hxy-sea.day.GLB", + "ocean.wdir.tavg-u-hxy-sea.mon.GLB", + "ocean.wdir.tpt-u-hxy-sea.3hr.GLB", + "ocean.wdirswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wdirswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wdirwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wdirwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.wfcorr.tavg-u-hxy-sea.mon.GLB", + "ocean.wfo.tavg-u-hxy-sea.mon.GLB", + "ocean.wmo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.wo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.wpdir.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdir.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpdirswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdirswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpdirwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdirwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpp.tavg-u-hxy-sea.mon.GLB", + "ocean.wpp.tpt-u-hxy-sea.3hr.GLB", + "ocean.wppswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wppswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wppwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wppwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.zos.tavg-u-hxy-sea.mon.30S-90S", + "ocean.zossq.tavg-u-hxy-sea.mon.GLB", + "ocean.zostoga.tavg-u-hm-sea.day.GLB", + "ocnBgchem.bacc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.calc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chl.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chl.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chlcalc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chldiat.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chldiat.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chldiaz.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chldiaz.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chlmisc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chlmisc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chlpico.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chlpico.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.detoc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dfe.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.dfe.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissic.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.dissic.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissoc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dmso.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.expc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.expcalc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.fgco2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fsfe.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fsn.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.graz.tavg-ol-hxy-sea.mon.30S-90S", + "ocnBgchem.icfriver.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intdic.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intdoc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intparag.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbfe.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbn.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbp.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbsi.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpcalcite.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpn2.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpoc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpp.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpp.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppcalc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppdiat.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppdiaz.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppmisc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppnitrate.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpppico.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.nh4.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.nh4.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.no3.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.no3.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.o2.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.ocfriver.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.ph.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.ph.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phyc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phyc.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.phyc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phycalc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phycalc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phydiat.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phydiat.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phydiaz.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phydiaz.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phymisc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phymisc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phypico.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phypico.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.po4.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.pp.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.si.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.spco2.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.spco2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.talk.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zmeso.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zmeso.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zmicro.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zmicro.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zmisc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zmisc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zooc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zooc.tavg-ol-hxy-sea.mon.GLB", + "seaIce.evspsbl.tavg-u-hxy-si.mon.GLB", + "seaIce.prra.tavg-u-hxy-si.mon.GLB", + "seaIce.prsn.tavg-u-hxy-si.mon.GLB", + "seaIce.rlds.tavg-u-hxy-si.mon.GLB", + "seaIce.rlus.tavg-u-hxy-si.mon.GLB", + "seaIce.rsds.tavg-u-hxy-si.day.GLB", + "seaIce.rsds.tavg-u-hxy-si.mon.GLB", + "seaIce.rsus.tavg-u-hxy-si.day.GLB", + "seaIce.rsus.tavg-u-hxy-si.mon.GLB", + "seaIce.sbl.tavg-u-hxy-si.mon.GLB", + "seaIce.siage.tavg-u-hxy-si.day.GLB", + "seaIce.siage.tavg-u-hxy-si.mon.30S-90S", + "seaIce.siarea.tavg-u-hm-u.mon.NH", + "seaIce.siarea.tavg-u-hm-u.mon.SH", + "seaIce.siconc.tavg-u-hxy-u.mon.30S-90S", + "seaIce.siconca.tavg-u-hxy-u.day.GLB", + "seaIce.siconca.tavg-u-hxy-u.mon.GLB", + "seaIce.sidconcdyn.tavg-u-hxy-sea.mon.GLB", + "seaIce.sidconcth.tavg-u-hxy-sea.mon.GLB", + "seaIce.sidmassdyn.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthsi.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthwat.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmeltbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmeltlat.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmelttop.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassth.tavg-u-hxy-si.mon.GLB", + "seaIce.sieqthick.tavg-u-hxy-si.mon.GLB", + "seaIce.siextent.tavg-u-hm-u.mon.NH", + "seaIce.siextent.tavg-u-hm-u.mon.SH", + "seaIce.siflcondbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflcondtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sifllattop.tavg-u-hxy-si.mon.GLB", + "seaIce.siflsensbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflsenstop.tavg-u-hxy-si.mon.GLB", + "seaIce.siflswdbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sihc.tavg-u-hxy-sea.mon.GLB", + "seaIce.sisndmassdyn.tavg-u-hxy-si.mon.GLB", + "seaIce.sisndmasssi.tavg-u-hxy-si.mon.GLB", + "seaIce.sisndmasswind.tavg-u-hxy-si.mon.GLB", + "seaIce.sisnhc.tavg-u-hxy-si.mon.GLB", + "seaIce.sisnmass.tavg-u-hm-u.mon.NH", + "seaIce.sisnmass.tavg-u-hm-u.mon.SH", + "seaIce.sispeed.tavg-u-hxy-si.day.GLB", + "seaIce.sispeed.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-si.day.GLB", + "seaIce.sithick.tavg-u-hxy-si.mon.30S-90S", + "seaIce.sitimefrac.tavg-u-hxy-sea.day.GLB", + "seaIce.sitimefrac.tavg-u-hxy-sea.mon.30S-90S", + "seaIce.siu.tavg-u-hxy-si.day.GLB", + "seaIce.siu.tavg-u-hxy-si.mon.30S-90S", + "seaIce.siv.tavg-u-hxy-si.day.GLB", + "seaIce.siv.tavg-u-hxy-si.mon.30S-90S", + "seaIce.sivol.tavg-u-hm-u.mon.NH", + "seaIce.sivol.tavg-u-hm-u.mon.SH", + "seaIce.snc.tavg-u-hxy-si.mon.GLB", + "seaIce.snd.tavg-u-hxy-sn.day.GLB", + "seaIce.snd.tavg-u-hxy-sn.mon.30S-90S", + "seaIce.snm.tavg-u-hxy-si.mon.GLB", + "seaIce.snw.tavg-u-hxy-si.mon.GLB", + "seaIce.ts.tavg-u-hxy-si.day.GLB", + "seaIce.ts.tavg-u-hxy-si.mon.30S-90S" + ], + "Medium": [ + "atmos.hur.tavg-700hPa-hxy-air.day.GLB", + "atmos.hur.tpt-100hPa-hxy-u.6hr.GLB", + "atmos.hur.tpt-500hPa-hxy-air.6hr.GLB", + "atmos.hur.tpt-850hPa-hxy-air.6hr.GLB", + "atmos.hurs.tpt-h2m-hxy-u.3hr.GLB", + "atmos.noaahi2m.tavg-h2m-hxy-u.day.GLB", + "atmos.noaahi2m.tmax-h2m-hxy-u.day.GLB", + "atmos.ps.tpt-u-hxy-u.3hr.GLB", + "atmos.psitem.tavg-p39-hy-air.day.GLB", + "atmos.rlds.tavg-u-hxy-u.3hr.GLB", + "atmos.rls.tavg-u-hxy-u.day.GLB", + "atmos.rls.tavg-u-hxy-u.mon.GLB", + "atmos.rsds.tavg-u-hxy-u.3hr.GLB", + "atmos.rss.tavg-u-hxy-u.day.GLB", + "atmos.rss.tavg-u-hxy-u.mon.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.3hr.GLB", + "atmos.tauunoegw.tavg-p19-hxy-air.mon.GLB", + "atmos.tauunowgw.tavg-p19-hxy-air.mon.GLB", + "atmos.tauuogw.tavg-p19-hxy-air.mon.GLB", + "atmos.tauupbl.tavg-u-hxy-u.day.GLB", + "atmos.tauvnogw.tavg-p19-hxy-air.mon.GLB", + "atmos.tauvogw.tavg-p19-hxy-air.mon.GLB", + "atmos.tauvpbl.tavg-u-hxy-u.day.GLB", + "atmos.tntc.tavg-p39-hy-air.mon.GLB", + "atmos.tntnogw.tavg-p39-hy-air.mon.GLB", + "atmos.tntogw.tavg-p39-hy-air.mon.GLB", + "atmos.tntrlcs.tavg-p39-hy-air.mon.GLB", + "atmos.tntrscs.tavg-p39-hy-air.mon.GLB", + "atmos.tntscp.tavg-p39-hy-air.mon.GLB", + "atmos.ts.tavg-u-hxy-u.day.GLB", + "atmos.ua.tavg-h100m-hxy-u.3hr.GLB", + "atmos.ua.tpt-200hPa-hxy-u.6hr.GLB", + "atmos.utendnogw.tavg-p19-hxy-air.day.GLB", + "atmos.utendnogw.tavg-p19-hxy-air.mon.GLB", + "atmos.utendogw.tavg-p19-hxy-air.day.GLB", + "atmos.utendogw.tavg-p19-hxy-air.mon.GLB", + "atmos.va.tavg-h100m-hxy-u.3hr.GLB", + "atmos.va.tpt-200hPa-hxy-u.6hr.GLB", + "atmos.vtendnogw.tavg-p19-hxy-air.day.GLB", + "atmos.vtendnogw.tavg-p19-hxy-air.mon.GLB", + "atmos.vtendogw.tavg-p19-hxy-air.day.GLB", + "atmos.vtendogw.tavg-p19-hxy-air.mon.GLB", + "atmos.wbgt.tavg-h2m-hxy-u.day.GLB", + "atmos.wbgt.tmax-h2m-hxy-u.day.GLB", + "atmos.zg.tpt-700hPa-hxy-u.6hr.GLB", + "atmos.zg.tpt-925hPa-hxy-u.6hr.GLB", + "land.cLeaf.tavg-u-hxy-lnd.mon.GLB", + "land.cLitterCwd.tavg-u-hxy-lnd.mon.GLB", + "land.cLitterSubSurf.tavg-u-hxy-lnd.mon.GLB", + "land.cLitterSurf.tavg-u-hxy-lnd.mon.GLB", + "land.cOther.tavg-u-hxy-lnd.mon.GLB", + "land.cRoot.tavg-u-hxy-lnd.mon.GLB", + "land.cropFracC3.tavg-u-hxy-u.mon.GLB", + "land.cropFracC4.tavg-u-hxy-u.mon.GLB", + "land.cSoil.tavg-sl-hxy-lnd.mon.GLB", + "land.cSoilPools.tavg-u-hxy-lnd.mon.GLB", + "land.cStem.tavg-u-hxy-lnd.mon.GLB", + "land.cVeg.tavg-u-hxy-ng.mon.GLB", + "land.cVeg.tavg-u-hxy-shb.mon.GLB", + "land.cVeg.tavg-u-hxy-tree.mon.GLB", + "land.fLitterFire.tavg-u-hxy-lnd.mon.GLB", + "land.fNgas.tavg-u-hxy-lnd.mon.GLB", + "land.fNgasFire.tavg-u-hxy-lnd.mon.GLB", + "land.fNgasNonFire.tavg-u-hxy-lnd.mon.GLB", + "land.fNleach.tavg-u-hxy-lnd.mon.GLB", + "land.fVegFire.tavg-u-hxy-lnd.mon.GLB", + "land.fVegLitterMortality.tavg-u-hxy-lnd.mon.GLB", + "land.fVegLitterSenescence.tavg-u-hxy-lnd.mon.GLB", + "land.fVegSoilMortality.tavg-u-hxy-lnd.mon.GLB", + "land.fVegSoilSenescence.tavg-u-hxy-lnd.mon.GLB", + "land.gpp.tavg-u-hxy-ng.mon.GLB", + "land.gpp.tavg-u-hxy-shb.mon.GLB", + "land.gpp.tavg-u-hxy-tree.mon.GLB", + "land.grassFracC3.tavg-u-hxy-u.mon.GLB", + "land.grassFracC4.tavg-u-hxy-u.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.3hr.GLB", + "land.mrros.tavg-u-hxy-lnd.3hr.GLB", + "land.mrsol.tpt-d10cm-hxy-lnd.3hr.GLB", + "land.nLeaf.tavg-u-hxy-lnd.mon.GLB", + "land.nLitterCwd.tavg-u-hxy-lnd.mon.GLB", + "land.nLitterSubSurf.tavg-u-hxy-lnd.mon.GLB", + "land.nLitterSurf.tavg-u-hxy-lnd.mon.GLB", + "land.nMineralNH4.tavg-u-hxy-lnd.mon.GLB", + "land.nMineralNO3.tavg-u-hxy-lnd.mon.GLB", + "land.nOther.tavg-u-hxy-lnd.mon.GLB", + "land.npp.tavg-u-hxy-ng.mon.GLB", + "land.npp.tavg-u-hxy-shb.mon.GLB", + "land.npp.tavg-u-hxy-tree.mon.GLB", + "land.nppLeaf.tavg-u-hxy-lnd.mon.GLB", + "land.nppOther.tavg-u-hxy-lnd.mon.GLB", + "land.nppRoot.tavg-u-hxy-lnd.mon.GLB", + "land.nppStem.tavg-u-hxy-lnd.mon.GLB", + "land.nRoot.tavg-u-hxy-lnd.mon.GLB", + "land.nStem.tavg-u-hxy-lnd.mon.GLB", + "land.pastureFracC3.tavg-u-hxy-u.mon.GLB", + "land.pastureFracC4.tavg-u-hxy-u.mon.GLB", + "land.ra.tavg-u-hxy-ng.mon.GLB", + "land.ra.tavg-u-hxy-shb.mon.GLB", + "land.ra.tavg-u-hxy-tree.mon.GLB", + "land.raLeaf.tavg-u-hxy-lnd.mon.GLB", + "land.raOther.tavg-u-hxy-lnd.mon.GLB", + "land.raRoot.tavg-u-hxy-lnd.mon.GLB", + "land.raStem.tavg-u-hxy-lnd.mon.GLB", + "land.rh.tavg-u-hxy-ng.mon.GLB", + "land.rh.tavg-u-hxy-shb.mon.GLB", + "land.rh.tavg-u-hxy-tree.mon.GLB", + "land.rhLitter.tavg-u-hxy-lnd.mon.GLB", + "land.rhSoil.tavg-u-hxy-lnd.mon.GLB", + "land.treeFracBdlDcd.tavg-u-hxy-u.mon.GLB", + "land.treeFracBdlEvg.tavg-u-hxy-u.mon.GLB", + "land.treeFracNdlDcd.tavg-u-hxy-u.mon.GLB", + "land.treeFracNdlEvg.tavg-u-hxy-u.mon.GLB", + "land.vegHeight.tavg-u-hxy-ng.mon.GLB", + "land.vegHeight.tavg-u-hxy-shb.mon.GLB", + "land.vegHeight.tavg-u-hxy-tree.mon.GLB", + "land.wetlandCH4cons.tavg-u-hxy-lnd.mon.GLB", + "land.wetlandCH4prod.tavg-u-hxy-lnd.mon.GLB", + "land.wetlandFrac.tavg-u-hxy-u.mon.GLB", + "ocean.evspsbl.tavg-u-hxy-ifs.mon.GLB", + "ocean.ficeberg.tavg-u-hxy-sea.mon.GLB", + "ocean.hfacrossline.tavg-u-ht-sea.mon.GLB", + "ocean.hfevapds.tavg-u-hxy-ifs.mon.GLB", + "ocean.hfibthermds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfibthermds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfrainds.tavg-u-hxy-ifs.mon.GLB", + "ocean.hfrunoffds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfrunoffds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfsnthermds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfsnthermds.tavg-u-hxy-sea.mon.GLB", + "ocean.mfo.tavg-u-ht-sea.mon.GLB", + "ocean.sf6.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfacrossline.tavg-u-ht-sea.mon.GLB", + "ocean.sfdsi.tavg-u-hxy-sea.mon.GLB", + "ocean.sfriver.tavg-u-hxy-sea.mon.GLB", + "ocean.siflfwbot.tavg-u-hxy-sea.mon.GLB", + "ocean.so.tavg-ol-hxy-sea.day.GLB", + "ocean.tnkebto.tavg-u-hxy-sea.yr.GLB", + "ocean.vsf.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfcorr.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfevap.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfpr.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfriver.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfsit.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.arag.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.arag.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.calc.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.calc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chl.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.chlcalc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dmso.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.epn.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.epp.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.expc.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.expcalc.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.fgdms.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fric.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.froc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.graz.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.intppcalc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppdiat.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppdiaz.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppmisc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppnitrate.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intpppico.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.o2.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.ph.tavg-op20bar-hxy-sea.day.GLB", + "seaIce.sfdsi.tavg-u-hxy-si.mon.GLB", + "seaIce.siage.tavg-u-hxy-si.mon.GLB", + "seaIce.siarea.tavg-u-hm-u.day.NH", + "seaIce.siarea.tavg-u-hm-u.day.SH", + "seaIce.siareaacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.sicompstren.tavg-u-hxy-si.mon.GLB", + "seaIce.sidivvel.tpt-u-hxy-si.mon.GLB", + "seaIce.sidmasstranx.tavg-u-hxy-u.mon.GLB", + "seaIce.sidmasstrany.tavg-u-hxy-u.mon.GLB", + "seaIce.sidragbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidragtop.tavg-u-hxy-si.mon.GLB", + "seaIce.siextent.tavg-u-hm-u.day.NH", + "seaIce.siextent.tavg-u-hm-u.day.SH", + "seaIce.sifb.tavg-u-hxy-si.mon.GLB", + "seaIce.siflfwbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflfwdrain.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcecoriolx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcecorioly.tavg-u-hxy-si.mon.GLB", + "seaIce.siforceintstrx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforceintstry.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcetiltx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcetilty.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdconc.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdsnconc.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdsnthick.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdthick.tavg-u-hxy-si.mon.GLB", + "seaIce.simassacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.simpconc.tavg-u-hxy-si.mon.GLB", + "seaIce.simpeffconc.tavg-u-hxy-si.mon.GLB", + "seaIce.simprefrozen.tavg-u-hxy-simp.mon.GLB", + "seaIce.simpthick.tavg-u-hxy-simp.mon.GLB", + "seaIce.sirdgconc.tavg-u-hxy-si.mon.GLB", + "seaIce.sisali.tavg-u-hxy-si.mon.GLB", + "seaIce.sisaltmass.tavg-u-hxy-si.mon.GLB", + "seaIce.sishearvel.tpt-u-hxy-si.mon.GLB", + "seaIce.sisnmass.tavg-u-hm-u.day.NH", + "seaIce.sisnmass.tavg-u-hm-u.day.SH", + "seaIce.sisnmassacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.sistressave.tpt-u-hxy-si.mon.GLB", + "seaIce.sistressmax.tpt-u-hxy-si.mon.GLB", + "seaIce.sistrxdtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sistrxubot.tavg-u-hxy-si.mon.GLB", + "seaIce.sistrydtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sistryubot.tavg-u-hxy-si.mon.GLB", + "seaIce.sitempbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sitempsnic.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-sir.mon.GLB", + "seaIce.sivol.tavg-u-hm-u.day.NH", + "seaIce.sivol.tavg-u-hm-u.day.SH" + ], + "Low": [ + "aerosol.ccldncl.tavg-u-hxy-ccl.day.GLB", + "aerosol.sfpm1.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.sfpm10.tavg-h2m-hxy-u.1hr.GLB", + "atmos.cldnci.tavg-u-hxy-cl.day.GLB", + "atmos.cldnvi.tavg-u-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.1hr.GLB", + "atmos.loadbc.tavg-u-hxy-u.day.GLB", + "atmos.loaddust.tavg-u-hxy-u.day.GLB", + "atmos.loadnh4.tavg-u-hxy-u.day.GLB", + "atmos.loadno3.tavg-u-hxy-u.day.GLB", + "atmos.loadoa.tavg-u-hxy-u.day.GLB", + "atmos.loadpoa.tavg-u-hxy-u.day.GLB", + "atmos.loadso4.tavg-u-hxy-u.day.GLB", + "atmos.loadsoa.tavg-u-hxy-u.day.GLB", + "atmos.loadss.tavg-u-hxy-u.day.GLB", + "atmos.reffcclwtop.tavg-u-hxy-ccl.day.GLB", + "atmos.reffsclwtop.tavg-u-hxy-scl.day.GLB", + "atmos.rsdscsdiff.tavg-u-hxy-u.day.GLB", + "atmos.rsdsdiff.tavg-u-hxy-u.day.GLB", + "atmos.scldncl.tavg-u-hxy-scl.day.GLB", + "atmos.zfull.ti-al-hxy-u.fx.GLB", + "atmosChem.drynh3.tavg-u-hxy-u.day.GLB", + "atmosChem.drynh4.tavg-u-hxy-u.day.GLB", + "atmosChem.drynoy.tavg-u-hxy-u.day.GLB", + "atmosChem.wetnh3.tavg-u-hxy-u.day.GLB", + "atmosChem.wetnh4.tavg-u-hxy-u.day.GLB", + "atmosChem.wetnoy.tavg-u-hxy-u.day.GLB", + "land.c13Land.tavg-u-hxy-lnd.mon.GLB", + "land.c13Litter.tavg-u-hxy-lnd.mon.GLB", + "land.c13Soil.tavg-u-hxy-lnd.mon.GLB", + "land.c13Veg.tavg-u-hxy-lnd.mon.GLB", + "land.c14Land.tavg-u-hxy-lnd.mon.GLB", + "land.c14Litter.tavg-u-hxy-lnd.mon.GLB", + "land.c14Soil.tavg-u-hxy-lnd.mon.GLB", + "land.c14Veg.tavg-u-hxy-lnd.mon.GLB", + "land.gppc13.tavg-u-hxy-lnd.mon.GLB", + "land.gppc14.tavg-u-hxy-lnd.mon.GLB", + "land.netAtmosLandC13Flux.tavg-u-hxy-lnd.mon.GLB", + "land.netAtmosLandC14Flux.tavg-u-hxy-lnd.mon.GLB", + "land.rac13.tavg-u-hxy-lnd.mon.GLB", + "land.rac14.tavg-u-hxy-lnd.mon.GLB", + "land.rhc13.tavg-u-hxy-lnd.mon.GLB", + "land.rhc14.tavg-u-hxy-lnd.mon.GLB", + "ocean.difmxybo.tavg-ol-hxy-sea.yr.GLB", + "ocean.difmxylo.tavg-ol-hxy-sea.yr.GLB", + "ocean.diftrblo.tavg-ol-hxy-sea.yr.GLB", + "ocean.diftrelo.tavg-ol-hxy-sea.yr.GLB", + "ocean.difvho.tavg-ol-hxy-sea.yr.GLB", + "ocean.difvso.tavg-ol-hxy-sea.yr.GLB", + "ocean.dispkexyfo.tavg-u-hxy-sea.yr.GLB", + "ocean.dxto.ti-u-hxy-u.fx.GLB", + "ocean.dxuo.ti-u-hxy-u.fx.GLB", + "ocean.dxvo.ti-u-hxy-u.fx.GLB", + "ocean.dyto.ti-u-hxy-u.fx.GLB", + "ocean.dyuo.ti-u-hxy-u.fx.GLB", + "ocean.dyvo.ti-u-hxy-u.fx.GLB", + "ocean.mlotstsq.tavg-u-hxy-sea.mon.GLB", + "ocean.msftmmpa.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftmmpa.tavg-rho-hyb-sea.mon.GLB", + "ocean.msftmsmpa.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftypa.tavg-ol-ht-sea.mon.GLB", + "ocean.msftypa.tavg-rho-ht-sea.mon.GLB", + "ocean.ocontempdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontempmint.tavg-u-hxy-sea.yr.GLB", + "ocean.ocontemppadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemppmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemppsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemprmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemptend.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottempdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottempmint.tavg-u-hxy-sea.yr.GLB", + "ocean.opottemppadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemppmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemppsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemprmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemptend.tavg-ol-hxy-sea.dec.GLB", + "ocean.osaltdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpsmadvect.tavg-ol-hxy-sea.mon.GLB", + "ocean.osaltpsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltrmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osalttend.tavg-ol-hxy-sea.yr.GLB", + "ocean.rsdoabsorb.tavg-ol-hxy-sea.yr.GLB", + "ocean.somint.tavg-u-hxy-sea.yr.GLB", + "ocean.sossq.tavg-u-hxy-sea.mon.GLB", + "ocean.thkcelluo.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcellvo.tavg-ol-hxy-sea.mon.GLB", + "ocean.tnpeo.tavg-u-hxy-sea.yr.GLB", + "ocean.tossq.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.dissi13c.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.dissi13c.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissi14c.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissi14cabio.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.dissi14cabio.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.fg13co2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fg14co2abio.tavg-u-hxy-sea.mon.GLB" + ] + }, + "amip-p4K-SST-rad": { + "Core": [ + "atmos.areacella.ti-u-hxy-u.fx.GLB", + "atmos.cl.tavg-al-hxy-u.mon.GLB", + "atmos.cli.tavg-al-hxy-u.mon.GLB", + "atmos.clivi.tavg-u-hxy-u.mon.GLB", + "atmos.clt.tavg-u-hxy-u.day.GLB", + "atmos.clt.tavg-u-hxy-u.mon.GLB", + "atmos.clw.tavg-al-hxy-u.mon.GLB", + "atmos.clwvi.tavg-u-hxy-u.mon.GLB", + "atmos.evspsbl.tavg-u-hxy-u.mon.GLB", + "atmos.hfls.tavg-u-hxy-u.mon.GLB", + "atmos.hfss.tavg-u-hxy-u.mon.GLB", + "atmos.hur.tavg-p19-hxy-air.mon.GLB", + "atmos.hur.tavg-p19-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.6hr.GLB", + "atmos.hurs.tavg-h2m-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.mon.GLB", + "atmos.hus.tavg-p19-hxy-u.day.GLB", + "atmos.hus.tavg-p19-hxy-u.mon.GLB", + "atmos.huss.tavg-h2m-hxy-u.day.GLB", + "atmos.huss.tavg-h2m-hxy-u.mon.GLB", + "atmos.huss.tpt-h2m-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.1hr.GLB", + "atmos.pr.tavg-u-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.day.GLB", + "atmos.pr.tavg-u-hxy-u.mon.GLB", + "atmos.prc.tavg-u-hxy-u.mon.GLB", + "atmos.prsn.tavg-u-hxy-u.mon.GLB", + "atmos.prw.tavg-u-hxy-u.mon.GLB", + "atmos.ps.tavg-u-hxy-u.day.GLB", + "atmos.ps.tavg-u-hxy-u.mon.GLB", + "atmos.psl.tavg-u-hxy-u.day.GLB", + "atmos.psl.tavg-u-hxy-u.mon.GLB", + "atmos.rlds.tavg-u-hxy-u.mon.GLB", + "atmos.rldscs.tavg-u-hxy-u.mon.GLB", + "atmos.rlus.tavg-u-hxy-u.mon.GLB", + "atmos.rluscs.tavg-u-hxy-u.mon.GLB", + "atmos.rlut.tavg-u-hxy-u.mon.GLB", + "atmos.rlutcs.tavg-u-hxy-u.mon.GLB", + "atmos.rsds.tavg-u-hxy-u.day.GLB", + "atmos.rsds.tavg-u-hxy-u.mon.GLB", + "atmos.rsdscs.tavg-u-hxy-u.mon.GLB", + "atmos.rsdt.tavg-u-hxy-u.mon.GLB", + "atmos.rsus.tavg-u-hxy-u.mon.GLB", + "atmos.rsuscs.tavg-u-hxy-u.mon.GLB", + "atmos.rsut.tavg-u-hxy-u.mon.GLB", + "atmos.rsutcs.tavg-u-hxy-u.mon.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.day.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.mon.GLB", + "atmos.sftlf.ti-u-hxy-u.fx.GLB", + "atmos.ta.tavg-p19-hxy-air.day.GLB", + "atmos.ta.tavg-p19-hxy-air.mon.GLB", + "atmos.ta.tpt-p3-hxy-air.6hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.day.GLB", + "atmos.tas.tavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tmax-h2m-hxy-u.day.GLB", + "atmos.tas.tmaxavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tmin-h2m-hxy-u.day.GLB", + "atmos.tas.tminavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tpt-h2m-hxy-u.3hr.GLB", + "atmos.tauu.tavg-u-hxy-u.mon.GLB", + "atmos.tauv.tavg-u-hxy-u.mon.GLB", + "atmos.ts.tavg-u-hxy-u.mon.GLB", + "atmos.ua.tavg-p19-hxy-air.day.GLB", + "atmos.ua.tavg-p19-hxy-air.mon.GLB", + "atmos.ua.tpt-p3-hxy-air.6hr.GLB", + "atmos.uas.tavg-h10m-hxy-u.day.GLB", + "atmos.uas.tavg-h10m-hxy-u.mon.GLB", + "atmos.uas.tpt-h10m-hxy-u.3hr.GLB", + "atmos.va.tavg-p19-hxy-air.day.GLB", + "atmos.va.tavg-p19-hxy-air.mon.GLB", + "atmos.va.tpt-p3-hxy-air.6hr.GLB", + "atmos.vas.tavg-h10m-hxy-u.day.GLB", + "atmos.vas.tavg-h10m-hxy-u.mon.GLB", + "atmos.vas.tpt-h10m-hxy-u.3hr.GLB", + "atmos.wap.tavg-p19-hxy-air.mon.GLB", + "atmos.wap.tavg-p19-hxy-u.day.GLB", + "atmos.zg.tavg-p19-hxy-air.day.GLB", + "atmos.zg.tavg-p19-hxy-air.mon.GLB", + "land.evspsblsoi.tavg-u-hxy-lnd.mon.GLB", + "land.evspsblveg.tavg-u-hxy-lnd.mon.GLB", + "land.lai.tavg-u-hxy-lnd.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.mon.GLB", + "land.mrros.tavg-u-hxy-lnd.mon.GLB", + "land.mrso.tavg-u-hxy-lnd.mon.GLB", + "land.mrsofc.ti-u-hxy-lnd.fx.GLB", + "land.mrsol.tavg-d10cm-hxy-lnd.mon.GLB", + "land.orog.ti-u-hxy-u.fx.GLB", + "land.rootd.ti-u-hxy-lnd.fx.GLB", + "land.sftgif.ti-u-hxy-u.fx.GLB", + "land.slthick.ti-sl-hxy-lnd.fx.GLB", + "landIce.mrfso.tavg-u-hxy-lnd.mon.GLB", + "landIce.snc.tavg-u-hxy-lnd.mon.GLB", + "landIce.snw.tavg-u-hxy-lnd.mon.GLB", + "ocean.areacello.ti-u-hxy-u.fx.GLB", + "ocean.basin.ti-u-hxy-u.fx.GLB", + "ocean.bigthetao.tavg-ol-hxy-sea.mon.GLB", + "ocean.deptho.ti-u-hxy-sea.fx.GLB", + "ocean.hfds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfgeou.ti-u-hxy-sea.fx.GLB", + "ocean.masscello.tavg-ol-hxy-sea.mon.GLB", + "ocean.masscello.ti-ol-hxy-sea.fx.GLB", + "ocean.mlotst.tavg-u-hxy-sea.mon.GLB", + "ocean.sftof.ti-u-hxy-u.fx.GLB", + "ocean.so.tavg-ol-hxy-sea.mon.GLB", + "ocean.sos.tavg-u-hxy-sea.day.GLB", + "ocean.sos.tavg-u-hxy-sea.mon.GLB", + "ocean.tauuo.tavg-u-hxy-sea.mon.GLB", + "ocean.tauvo.tavg-u-hxy-sea.mon.GLB", + "ocean.thetao.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcello.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcello.ti-ol-hxy-sea.fx.GLB", + "ocean.tos.tavg-u-hxy-sea.day.GLB", + "ocean.tos.tavg-u-hxy-sea.mon.GLB", + "ocean.umo.tavg-ol-hxy-sea.mon.GLB", + "ocean.uo.tavg-ol-hxy-sea.mon.GLB", + "ocean.vmo.tavg-ol-hxy-sea.mon.GLB", + "ocean.vo.tavg-ol-hxy-sea.mon.GLB", + "ocean.wmo.tavg-ol-hxy-sea.mon.GLB", + "ocean.wo.tavg-ol-hxy-sea.mon.GLB", + "ocean.zos.tavg-u-hxy-sea.day.GLB", + "ocean.zos.tavg-u-hxy-sea.mon.GLB", + "ocean.zostoga.tavg-u-hm-sea.mon.GLB", + "seaIce.siconc.tavg-u-hxy-u.day.GLB", + "seaIce.siconc.tavg-u-hxy-u.mon.GLB", + "seaIce.simass.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-si.mon.GLB", + "seaIce.sitimefrac.tavg-u-hxy-sea.mon.GLB", + "seaIce.siu.tavg-u-hxy-si.mon.GLB", + "seaIce.siv.tavg-u-hxy-si.mon.GLB", + "seaIce.snd.tavg-u-hxy-sn.mon.GLB", + "seaIce.ts.tavg-u-hxy-si.mon.GLB" + ], + "High": [ + "atmos.albisccp.tavg-u-hxy-cl.day.GLB", + "atmos.albisccp.tavg-u-hxy-cl.mon.GLB", + "atmos.ccb.tavg-u-hxy-ccl.day.GLB", + "atmos.ccb.tavg-u-hxy-ccl.mon.GLB", + "atmos.ccb.tpt-u-hs-u.subhr.GLB", + "atmos.cct.tavg-u-hxy-ccl.day.GLB", + "atmos.cct.tavg-u-hxy-ccl.mon.GLB", + "atmos.cct.tpt-u-hs-u.subhr.GLB", + "atmos.cfadDbze94.tavg-h40-hxy-air.mon.GLB", + "atmos.cfadLidarsr532.tavg-h40-hxy-air.mon.GLB", + "atmos.ci.tavg-u-hxy-u.mon.GLB", + "atmos.ci.tpt-u-hs-u.subhr.GLB", + "atmos.cl.tavg-al-hxy-u.day.GLB", + "atmos.cl.tpt-al-hs-u.subhr.GLB", + "atmos.clc.tavg-al-hxy-u.mon.GLB", + "atmos.clcalipso.tavg-220hPa-hxy-air.day.GLB", + "atmos.clcalipso.tavg-220hPa-hxy-air.mon.GLB", + "atmos.clcalipso.tavg-560hPa-hxy-air.day.GLB", + "atmos.clcalipso.tavg-560hPa-hxy-air.mon.GLB", + "atmos.clcalipso.tavg-840hPa-hxy-air.day.GLB", + "atmos.clcalipso.tavg-840hPa-hxy-air.mon.GLB", + "atmos.clcalipso.tavg-h40-hxy-air.day.GLB", + "atmos.clcalipso.tavg-h40-hxy-air.mon.GLB", + "atmos.clcalipsoice.tavg-h40-hxy-air.mon.GLB", + "atmos.clcalipsoliq.tavg-h40-hxy-air.mon.GLB", + "atmos.cli.tavg-al-hxy-u.day.GLB", + "atmos.cli.tpt-al-hs-u.subhr.GLB", + "atmos.clic.tavg-al-hxy-u.mon.GLB", + "atmos.climodis.tavg-u-hxy-u.mon.GLB", + "atmos.clis.tavg-al-hxy-u.mon.GLB", + "atmos.clisccp.tavg-p7c-hxy-air.day.GLB", + "atmos.clisccp.tavg-p7c-hxy-air.mon.GLB", + "atmos.clivi.tavg-u-hxy-u.day.GLB", + "atmos.clivi.tpt-u-hs-u.subhr.GLB", + "atmos.clivic.tavg-u-hxy-u.day.GLB", + "atmos.clivimodis.tavg-u-hxy-u.mon.GLB", + "atmos.clmisr.tavg-h16-hxy-air.mon.GLB", + "atmos.clmodis.tavg-p7c-hxy-air.mon.GLB", + "atmos.clmodisice.tavg-p7c-hxy-air.mon.GLB", + "atmos.clmodisiceReff.tavg-u-hxy-u.mon.GLB", + "atmos.clmodisliquid.tavg-p7c-hxy-air.mon.GLB", + "atmos.clmodisliquidReff.tavg-u-hxy-u.mon.GLB", + "atmos.cls.tavg-al-hxy-u.mon.GLB", + "atmos.clt.tpt-u-hs-u.subhr.GLB", + "atmos.cltcalipso.tavg-u-hxy-u.day.GLB", + "atmos.cltcalipso.tavg-u-hxy-u.mon.GLB", + "atmos.cltisccp.tavg-u-hxy-u.day.GLB", + "atmos.cltisccp.tavg-u-hxy-u.mon.GLB", + "atmos.cltmodis.tavg-u-hxy-u.mon.GLB", + "atmos.clw.tavg-al-hxy-u.day.GLB", + "atmos.clw.tpt-al-hs-u.subhr.GLB", + "atmos.clwc.tavg-al-hxy-u.mon.GLB", + "atmos.clwmodis.tavg-u-hxy-u.mon.GLB", + "atmos.clws.tavg-al-hxy-u.mon.GLB", + "atmos.clwvi.tavg-u-hxy-u.day.GLB", + "atmos.clwvi.tpt-u-hs-u.subhr.GLB", + "atmos.clwvic.tavg-u-hxy-u.day.GLB", + "atmos.clwvimodis.tavg-u-hxy-u.mon.GLB", + "atmos.co2.tavg-p19-hxy-air.mon.GLB", + "atmos.co2.tclm-p19-hxy-air.mon.GLB", + "atmos.co2.tclm-u-hm-u.mon.GLB", + "atmos.co2mass.tavg-u-hm-u.mon.GLB", + "atmos.dmc.tavg-alh-hxy-u.mon.GLB", + "atmos.edt.tavg-al-hxy-u.mon.GLB", + "atmos.edt.tpt-al-hs-u.subhr.GLB", + "atmos.evspsbl.tpt-u-hs-u.subhr.GLB", + "atmos.evu.tavg-al-hxy-u.mon.GLB", + "atmos.evu.tpt-al-hs-u.subhr.GLB", + "atmos.fco2antt.tpt-u-hs-u.subhr.GLB", + "atmos.fco2fos.tpt-u-hs-u.subhr.GLB", + "atmos.fco2nat.tpt-u-hs-u.subhr.GLB", + "atmos.hfls.tavg-u-hxy-u.day.GLB", + "atmos.hfls.tpt-u-hs-u.subhr.GLB", + "atmos.hfss.tavg-u-hxy-u.day.GLB", + "atmos.hfss.tpt-u-hs-u.subhr.GLB", + "atmos.hur.tavg-al-hxy-u.day.GLB", + "atmos.hur.tavg-al-hxy-u.mon.GLB", + "atmos.hur.tpt-al-hs-u.subhr.GLB", + "atmos.hurs.tmax-h2m-hxy-u.day.GLB", + "atmos.hurs.tmin-h2m-hxy-u.day.GLB", + "atmos.hurs.tpt-h2m-hs-u.subhr.GLB", + "atmos.hus.tavg-al-hxy-u.day.GLB", + "atmos.hus.tavg-al-hxy-u.mon.GLB", + "atmos.hus.tpt-al-hs-u.subhr.GLB", + "atmos.huss.tpt-h2m-hs-u.subhr.GLB", + "atmos.jpdftaureicemodis.tavg-u-hxy-u.day.GLB", + "atmos.jpdftaureicemodis.tavg-u-hxy-u.mon.GLB", + "atmos.jpdftaureliqmodis.tavg-u-hxy-u.day.GLB", + "atmos.jpdftaureliqmodis.tavg-u-hxy-u.mon.GLB", + "atmos.lat.ti-u-hs-u.fx.GLB", + "atmos.lon.ti-u-hs-u.fx.GLB", + "atmos.mc.tavg-alh-hxy-u.day.GLB", + "atmos.mc.tavg-alh-hxy-u.mon.GLB", + "atmos.mc.tpt-alh-hs-u.subhr.GLB", + "atmos.mcd.tavg-alh-hxy-u.mon.GLB", + "atmos.mcu.tavg-alh-hxy-u.mon.GLB", + "atmos.parasolRefl.tavg-u-hxy-sea.day.GLB", + "atmos.parasolRefl.tavg-u-hxy-sea.mon.GLB", + "atmos.pctisccp.tavg-u-hxy-cl.day.GLB", + "atmos.pctisccp.tavg-u-hxy-cl.mon.GLB", + "atmos.pfull.tavg-al-hxy-u.day.GLB", + "atmos.pfull.tclm-al-hxy-u.mon.GLB", + "atmos.pfull.tpt-al-hs-u.subhr.GLB", + "atmos.phalf.tavg-alh-hxy-u.day.GLB", + "atmos.phalf.tclm-alh-hxy-u.mon.GLB", + "atmos.phalf.tpt-alh-hs-u.subhr.GLB", + "atmos.pr.tpt-u-hs-u.subhr.GLB", + "atmos.prc.tavg-u-hxy-u.day.GLB", + "atmos.prc.tpt-u-hs-u.subhr.GLB", + "atmos.prsn.tavg-u-hxy-u.day.GLB", + "atmos.prsn.tpt-u-hs-u.subhr.GLB", + "atmos.prw.tpt-u-hs-u.subhr.GLB", + "atmos.ps.tpt-u-hs-u.subhr.GLB", + "atmos.psl.tpt-u-hs-u.subhr.GLB", + "atmos.ptp.tavg-u-hxy-u.mon.GLB", + "atmos.reffclic.tavg-al-hxy-ccl.mon.GLB", + "atmos.reffclic.tpt-al-hs-ccl.subhr.GLB", + "atmos.reffclis.tavg-al-hxy-scl.mon.GLB", + "atmos.reffclis.tpt-al-hs-scl.subhr.GLB", + "atmos.reffclwc.tavg-al-hxy-ccl.mon.GLB", + "atmos.reffclwc.tpt-al-hs-ccl.subhr.GLB", + "atmos.reffclws.tavg-al-hxy-scl.mon.GLB", + "atmos.reffclws.tpt-al-hs-scl.subhr.GLB", + "atmos.rld.tavg-alh-hxy-u.mon.GLB", + "atmos.rld.tpt-alh-hs-u.subhr.GLB", + "atmos.rldcs.tavg-alh-hxy-u.mon.GLB", + "atmos.rldcs.tpt-alh-hs-u.subhr.GLB", + "atmos.rlds.tavg-u-hxy-u.day.GLB", + "atmos.rlds.tpt-u-hs-u.subhr.GLB", + "atmos.rldscs.tavg-u-hxy-u.day.GLB", + "atmos.rldscs.tpt-u-hs-u.subhr.GLB", + "atmos.rlu.tavg-alh-hxy-u.mon.GLB", + "atmos.rlu.tpt-alh-hs-u.subhr.GLB", + "atmos.rlucs.tavg-alh-hxy-u.mon.GLB", + "atmos.rlucs.tpt-alh-hs-u.subhr.GLB", + "atmos.rlus.tavg-u-hxy-u.day.GLB", + "atmos.rlus.tpt-u-hs-u.subhr.GLB", + "atmos.rluscs.tavg-u-hxy-u.day.GLB", + "atmos.rlut.tavg-u-hxy-u.day.GLB", + "atmos.rlut.tclmdc-u-hxy-u.1hr.GLB", + "atmos.rlut.tpt-u-hs-u.subhr.GLB", + "atmos.rlutcs.tavg-u-hxy-u.day.GLB", + "atmos.rlutcs.tclmdc-u-hxy-u.1hr.GLB", + "atmos.rlutcs.tpt-u-hs-u.subhr.GLB", + "atmos.rsd.tavg-alh-hxy-u.mon.GLB", + "atmos.rsd.tpt-alh-hs-u.subhr.GLB", + "atmos.rsdcs.tavg-alh-hxy-u.mon.GLB", + "atmos.rsdcs.tpt-alh-hs-u.subhr.GLB", + "atmos.rsds.tpt-u-hs-u.subhr.GLB", + "atmos.rsdscs.tavg-u-hxy-u.day.GLB", + "atmos.rsdscs.tpt-u-hs-u.subhr.GLB", + "atmos.rsdt.tavg-u-hxy-u.day.GLB", + "atmos.rsdt.tclmdc-u-hxy-u.1hr.GLB", + "atmos.rsdt.tpt-u-hs-u.subhr.GLB", + "atmos.rsu.tavg-alh-hxy-u.mon.GLB", + "atmos.rsu.tpt-alh-hs-u.subhr.GLB", + "atmos.rsucs.tavg-alh-hxy-u.mon.GLB", + "atmos.rsucs.tpt-alh-hs-u.subhr.GLB", + "atmos.rsus.tavg-u-hxy-u.day.GLB", + "atmos.rsus.tpt-u-hs-u.subhr.GLB", + "atmos.rsuscs.tavg-u-hxy-u.day.GLB", + "atmos.rsuscs.tpt-u-hs-u.subhr.GLB", + "atmos.rsut.tavg-u-hxy-u.day.GLB", + "atmos.rsut.tclmdc-u-hxy-u.1hr.GLB", + "atmos.rsut.tpt-u-hs-u.subhr.GLB", + "atmos.rsutcs.tavg-u-hxy-u.day.GLB", + "atmos.rsutcs.tclmdc-u-hxy-u.1hr.GLB", + "atmos.rsutcs.tpt-u-hs-u.subhr.GLB", + "atmos.rtmt.tavg-u-hxy-u.mon.GLB", + "atmos.rtmt.tpt-u-hs-u.subhr.GLB", + "atmos.sci.tavg-u-hxy-u.mon.GLB", + "atmos.sci.tpt-u-hs-u.subhr.GLB", + "atmos.sfcWind.tmax-h10m-hxy-u.day.GLB", + "atmos.sfcWind.tpt-h10m-hs-u.subhr.GLB", + "atmos.smc.tavg-alh-hxy-u.mon.GLB", + "atmos.ta.tavg-700hPa-hxy-air.day.GLB", + "atmos.ta.tavg-al-hxy-u.day.GLB", + "atmos.ta.tavg-al-hxy-u.mon.GLB", + "atmos.ta.tpt-al-hs-u.subhr.GLB", + "atmos.tas.tpt-h2m-hs-u.subhr.GLB", + "atmos.tauu.tpt-u-hs-u.subhr.GLB", + "atmos.tauv.tpt-u-hs-u.subhr.GLB", + "atmos.tnhus.tavg-al-hxy-u.mon.GLB", + "atmos.tnhus.tpt-al-hs-u.subhr.GLB", + "atmos.tnhusa.tavg-al-hxy-u.mon.GLB", + "atmos.tnhusa.tpt-al-hs-u.subhr.GLB", + "atmos.tnhusc.tavg-al-hxy-u.mon.GLB", + "atmos.tnhusc.tpt-al-hs-u.subhr.GLB", + "atmos.tnhusd.tavg-al-hxy-u.mon.GLB", + "atmos.tnhusd.tpt-al-hs-u.subhr.GLB", + "atmos.tnhusmp.tavg-al-hxy-u.mon.GLB", + "atmos.tnhusmp.tpt-al-hs-u.subhr.GLB", + "atmos.tnhuspbl.tavg-al-hxy-u.mon.GLB", + "atmos.tnhuspbl.tpt-al-hs-u.subhr.GLB", + "atmos.tnhusscp.tavg-al-hxy-u.mon.GLB", + "atmos.tnhusscp.tpt-al-hs-u.subhr.GLB", + "atmos.tnhusscpbl.tavg-al-hxy-u.mon.GLB", + "atmos.tnhusscpbl.tpt-al-hs-u.subhr.GLB", + "atmos.tnt.tavg-al-hxy-u.mon.GLB", + "atmos.tnt.tpt-al-hs-u.subhr.GLB", + "atmos.tnta.tavg-al-hxy-u.mon.GLB", + "atmos.tnta.tpt-al-hs-u.subhr.GLB", + "atmos.tntc.tavg-al-hxy-u.mon.GLB", + "atmos.tntc.tpt-al-hs-u.subhr.GLB", + "atmos.tntd.tavg-al-hxy-u.mon.GLB", + "atmos.tntd.tpt-al-hs-u.subhr.GLB", + "atmos.tntmp.tavg-al-hxy-u.mon.GLB", + "atmos.tntmp.tpt-al-hs-u.subhr.GLB", + "atmos.tntpbl.tavg-al-hxy-u.mon.GLB", + "atmos.tntpbl.tpt-al-hs-u.subhr.GLB", + "atmos.tntr.tavg-al-hxy-u.mon.GLB", + "atmos.tntr.tpt-al-hs-u.subhr.GLB", + "atmos.tntrl.tavg-al-hxy-u.mon.GLB", + "atmos.tntrl.tpt-al-hs-u.subhr.GLB", + "atmos.tntrlcs.tavg-al-hxy-u.mon.GLB", + "atmos.tntrlcs.tpt-al-hs-u.subhr.GLB", + "atmos.tntrs.tavg-al-hxy-u.mon.GLB", + "atmos.tntrs.tpt-al-hs-u.subhr.GLB", + "atmos.tntrscs.tavg-al-hxy-u.mon.GLB", + "atmos.tntrscs.tpt-al-hs-u.subhr.GLB", + "atmos.tntscp.tavg-al-hxy-u.mon.GLB", + "atmos.tntscp.tpt-al-hs-u.subhr.GLB", + "atmos.tntscpbl.tavg-al-hxy-u.mon.GLB", + "atmos.tntscpbl.tpt-al-hs-u.subhr.GLB", + "atmos.ts.tpt-u-hs-u.subhr.GLB", + "atmos.ua.tavg-al-hxy-u.day.GLB", + "atmos.ua.tpt-al-hs-u.subhr.GLB", + "atmos.uas.tpt-h10m-hs-u.subhr.GLB", + "atmos.va.tavg-al-hxy-u.day.GLB", + "atmos.va.tpt-al-hs-u.subhr.GLB", + "atmos.vas.tpt-h10m-hs-u.subhr.GLB", + "atmos.wap.tavg-500hPa-hxy-air.day.GLB", + "atmos.wap.tavg-al-hxy-u.day.GLB", + "atmos.wap.tpt-al-hs-u.subhr.GLB", + "atmos.zg.tavg-al-hxy-u.day.GLB", + "atmos.zg.tpt-al-hs-u.subhr.GLB", + "atmos.ztp.tavg-u-hxy-u.mon.GLB", + "atmosChem.cfc11.tavg-u-hm-u.mon.GLB", + "atmosChem.cfc113.tavg-u-hm-u.mon.GLB", + "atmosChem.cfc12.tavg-u-hm-u.mon.GLB", + "atmosChem.ch4.tavg-p19-hxy-air.mon.GLB", + "atmosChem.ch4.tavg-u-hm-u.mon.GLB", + "atmosChem.ch4.tclm-p19-hxy-air.mon.GLB", + "atmosChem.ch4.tclm-u-hm-u.mon.GLB", + "atmosChem.hcfc22.tavg-u-hm-u.mon.GLB", + "atmosChem.n2o.tavg-p19-hxy-air.mon.GLB", + "atmosChem.n2o.tavg-u-hm-u.mon.GLB", + "atmosChem.n2o.tclm-p19-hxy-air.mon.GLB", + "atmosChem.n2o.tclm-u-hm-u.mon.GLB", + "atmosChem.o3.tavg-p19-hxy-air.mon.GLB", + "atmosChem.o3.tclm-p19-hxy-air.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.day.GLB", + "land.mrso.tavg-u-hxy-lnd.day.GLB", + "land.mrsol.tavg-d10cm-hxy-lnd.day.GLB", + "land.tslsi.tavg-u-hxy-u.day.GLB", + "landIce.sbl.tavg-u-hxy-u.mon.GLB", + "landIce.sbl.tpt-u-hs-u.subhr.GLB", + "landIce.snc.tavg-u-hxy-lnd.day.GLB", + "landIce.snw.tavg-u-hxy-lnd.day.GLB", + "ocean.tossq.tavg-u-hxy-sea.day.GLB", + "seaIce.sithick.tavg-u-hxy-si.day.GLB", + "seaIce.siu.tavg-u-hxy-si.day.GLB", + "seaIce.siv.tavg-u-hxy-si.day.GLB" + ], + "Medium": [], + "Low": [ + "aerosol.abs550aer.tavg-u-hxy-u.mon.GLB", + "aerosol.ccldncl.tavg-u-hxy-ccl.day.GLB", + "aerosol.cdnc.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrbc.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrdust.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrnh4.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrno3.tavg-al-hxy-u.mon.GLB", + "aerosol.mmroa.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrso4.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrsoa.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrss.tavg-al-hxy-u.mon.GLB", + "aerosol.od550aer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550lt1aer.tavg-u-hxy-u.mon.GLB", + "aerosol.so2.tavg-al-hxy-u.mon.GLB", + "atmos.cldnci.tavg-u-hxy-cl.day.GLB", + "atmos.cldnvi.tavg-u-hxy-u.day.GLB", + "atmos.loadbc.tavg-u-hxy-u.day.GLB", + "atmos.loaddust.tavg-u-hxy-u.day.GLB", + "atmos.loadnh4.tavg-u-hxy-u.day.GLB", + "atmos.loadno3.tavg-u-hxy-u.day.GLB", + "atmos.loadoa.tavg-u-hxy-u.day.GLB", + "atmos.loadpoa.tavg-u-hxy-u.day.GLB", + "atmos.loadso4.tavg-u-hxy-u.day.GLB", + "atmos.loadsoa.tavg-u-hxy-u.day.GLB", + "atmos.loadss.tavg-u-hxy-u.day.GLB", + "atmos.reffcclwtop.tavg-u-hxy-ccl.day.GLB", + "atmos.reffsclwtop.tavg-u-hxy-scl.day.GLB", + "atmos.rsdscsdiff.tavg-u-hxy-u.day.GLB", + "atmos.rsdsdiff.tavg-u-hxy-u.day.GLB", + "atmos.scldncl.tavg-u-hxy-scl.day.GLB", + "atmos.zfull.ti-al-hxy-u.fx.GLB", + "atmosChem.dms.tavg-al-hxy-u.mon.GLB", + "land.baresoilFrac.tavg-u-hxy-u.mon.GLB", + "land.burntFractionAll.tavg-u-hxy-u.mon.GLB", + "land.cropFrac.tavg-u-hxy-u.mon.GLB", + "land.grassFrac.tavg-u-hxy-u.mon.GLB", + "land.mrsol.tavg-sl-hxy-lnd.mon.GLB", + "land.pastureFrac.tavg-u-hxy-u.mon.GLB", + "land.prveg.tavg-u-hxy-lnd.mon.GLB", + "land.residualFrac.tavg-u-hxy-u.mon.GLB", + "land.shrubFrac.tavg-u-hxy-u.mon.GLB", + "land.tran.tavg-u-hxy-lnd.mon.GLB", + "land.treeFrac.tavg-u-hxy-u.mon.GLB", + "land.tsl.tavg-sl-hxy-lnd.mon.GLB", + "landIce.snd.tavg-u-hxy-lnd.mon.GLB", + "seaIce.evspsbl.tavg-u-hxy-si.mon.GLB", + "seaIce.prra.tavg-u-hxy-si.mon.GLB", + "seaIce.prsn.tavg-u-hxy-si.mon.GLB", + "seaIce.sisali.tavg-u-hxy-si.mon.GLB", + "seaIce.sitempsnic.tavg-u-hxy-si.mon.GLB", + "seaIce.snc.tavg-u-hxy-si.mon.GLB", + "seaIce.snw.tavg-u-hxy-si.mon.GLB" + ] + }, + "amip-p4K-SST-turb": { + "Core": [ + "atmos.areacella.ti-u-hxy-u.fx.GLB", + "atmos.cl.tavg-al-hxy-u.mon.GLB", + "atmos.cli.tavg-al-hxy-u.mon.GLB", + "atmos.clivi.tavg-u-hxy-u.mon.GLB", + "atmos.clt.tavg-u-hxy-u.day.GLB", + "atmos.clt.tavg-u-hxy-u.mon.GLB", + "atmos.clw.tavg-al-hxy-u.mon.GLB", + "atmos.clwvi.tavg-u-hxy-u.mon.GLB", + "atmos.evspsbl.tavg-u-hxy-u.mon.GLB", + "atmos.hfls.tavg-u-hxy-u.mon.GLB", + "atmos.hfss.tavg-u-hxy-u.mon.GLB", + "atmos.hur.tavg-p19-hxy-air.mon.GLB", + "atmos.hur.tavg-p19-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.6hr.GLB", + "atmos.hurs.tavg-h2m-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.mon.GLB", + "atmos.hus.tavg-p19-hxy-u.day.GLB", + "atmos.hus.tavg-p19-hxy-u.mon.GLB", + "atmos.huss.tavg-h2m-hxy-u.day.GLB", + "atmos.huss.tavg-h2m-hxy-u.mon.GLB", + "atmos.huss.tpt-h2m-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.1hr.GLB", + "atmos.pr.tavg-u-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.day.GLB", + "atmos.pr.tavg-u-hxy-u.mon.GLB", + "atmos.prc.tavg-u-hxy-u.mon.GLB", + "atmos.prsn.tavg-u-hxy-u.mon.GLB", + "atmos.prw.tavg-u-hxy-u.mon.GLB", + "atmos.ps.tavg-u-hxy-u.day.GLB", + "atmos.ps.tavg-u-hxy-u.mon.GLB", + "atmos.psl.tavg-u-hxy-u.day.GLB", + "atmos.psl.tavg-u-hxy-u.mon.GLB", + "atmos.rlds.tavg-u-hxy-u.mon.GLB", + "atmos.rldscs.tavg-u-hxy-u.mon.GLB", + "atmos.rlus.tavg-u-hxy-u.mon.GLB", + "atmos.rluscs.tavg-u-hxy-u.mon.GLB", + "atmos.rlut.tavg-u-hxy-u.mon.GLB", + "atmos.rlutcs.tavg-u-hxy-u.mon.GLB", + "atmos.rsds.tavg-u-hxy-u.day.GLB", + "atmos.rsds.tavg-u-hxy-u.mon.GLB", + "atmos.rsdscs.tavg-u-hxy-u.mon.GLB", + "atmos.rsdt.tavg-u-hxy-u.mon.GLB", + "atmos.rsus.tavg-u-hxy-u.mon.GLB", + "atmos.rsuscs.tavg-u-hxy-u.mon.GLB", + "atmos.rsut.tavg-u-hxy-u.mon.GLB", + "atmos.rsutcs.tavg-u-hxy-u.mon.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.day.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.mon.GLB", + "atmos.sftlf.ti-u-hxy-u.fx.GLB", + "atmos.ta.tavg-p19-hxy-air.day.GLB", + "atmos.ta.tavg-p19-hxy-air.mon.GLB", + "atmos.ta.tpt-p3-hxy-air.6hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.day.GLB", + "atmos.tas.tavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tmax-h2m-hxy-u.day.GLB", + "atmos.tas.tmaxavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tmin-h2m-hxy-u.day.GLB", + "atmos.tas.tminavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tpt-h2m-hxy-u.3hr.GLB", + "atmos.tauu.tavg-u-hxy-u.mon.GLB", + "atmos.tauv.tavg-u-hxy-u.mon.GLB", + "atmos.ts.tavg-u-hxy-u.mon.GLB", + "atmos.ua.tavg-p19-hxy-air.day.GLB", + "atmos.ua.tavg-p19-hxy-air.mon.GLB", + "atmos.ua.tpt-p3-hxy-air.6hr.GLB", + "atmos.uas.tavg-h10m-hxy-u.day.GLB", + "atmos.uas.tavg-h10m-hxy-u.mon.GLB", + "atmos.uas.tpt-h10m-hxy-u.3hr.GLB", + "atmos.va.tavg-p19-hxy-air.day.GLB", + "atmos.va.tavg-p19-hxy-air.mon.GLB", + "atmos.va.tpt-p3-hxy-air.6hr.GLB", + "atmos.vas.tavg-h10m-hxy-u.day.GLB", + "atmos.vas.tavg-h10m-hxy-u.mon.GLB", + "atmos.vas.tpt-h10m-hxy-u.3hr.GLB", + "atmos.wap.tavg-p19-hxy-air.mon.GLB", + "atmos.wap.tavg-p19-hxy-u.day.GLB", + "atmos.zg.tavg-p19-hxy-air.day.GLB", + "atmos.zg.tavg-p19-hxy-air.mon.GLB", + "land.evspsblsoi.tavg-u-hxy-lnd.mon.GLB", + "land.evspsblveg.tavg-u-hxy-lnd.mon.GLB", + "land.lai.tavg-u-hxy-lnd.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.mon.GLB", + "land.mrros.tavg-u-hxy-lnd.mon.GLB", + "land.mrso.tavg-u-hxy-lnd.mon.GLB", + "land.mrsofc.ti-u-hxy-lnd.fx.GLB", + "land.mrsol.tavg-d10cm-hxy-lnd.mon.GLB", + "land.orog.ti-u-hxy-u.fx.GLB", + "land.rootd.ti-u-hxy-lnd.fx.GLB", + "land.sftgif.ti-u-hxy-u.fx.GLB", + "land.slthick.ti-sl-hxy-lnd.fx.GLB", + "landIce.mrfso.tavg-u-hxy-lnd.mon.GLB", + "landIce.snc.tavg-u-hxy-lnd.mon.GLB", + "landIce.snw.tavg-u-hxy-lnd.mon.GLB", + "ocean.areacello.ti-u-hxy-u.fx.GLB", + "ocean.basin.ti-u-hxy-u.fx.GLB", + "ocean.bigthetao.tavg-ol-hxy-sea.mon.GLB", + "ocean.deptho.ti-u-hxy-sea.fx.GLB", + "ocean.hfds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfgeou.ti-u-hxy-sea.fx.GLB", + "ocean.masscello.tavg-ol-hxy-sea.mon.GLB", + "ocean.masscello.ti-ol-hxy-sea.fx.GLB", + "ocean.mlotst.tavg-u-hxy-sea.mon.GLB", + "ocean.sftof.ti-u-hxy-u.fx.GLB", + "ocean.so.tavg-ol-hxy-sea.mon.GLB", + "ocean.sos.tavg-u-hxy-sea.day.GLB", + "ocean.sos.tavg-u-hxy-sea.mon.GLB", + "ocean.tauuo.tavg-u-hxy-sea.mon.GLB", + "ocean.tauvo.tavg-u-hxy-sea.mon.GLB", + "ocean.thetao.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcello.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcello.ti-ol-hxy-sea.fx.GLB", + "ocean.tos.tavg-u-hxy-sea.day.GLB", + "ocean.tos.tavg-u-hxy-sea.mon.GLB", + "ocean.umo.tavg-ol-hxy-sea.mon.GLB", + "ocean.uo.tavg-ol-hxy-sea.mon.GLB", + "ocean.vmo.tavg-ol-hxy-sea.mon.GLB", + "ocean.vo.tavg-ol-hxy-sea.mon.GLB", + "ocean.wmo.tavg-ol-hxy-sea.mon.GLB", + "ocean.wo.tavg-ol-hxy-sea.mon.GLB", + "ocean.zos.tavg-u-hxy-sea.day.GLB", + "ocean.zos.tavg-u-hxy-sea.mon.GLB", + "ocean.zostoga.tavg-u-hm-sea.mon.GLB", + "seaIce.siconc.tavg-u-hxy-u.day.GLB", + "seaIce.siconc.tavg-u-hxy-u.mon.GLB", + "seaIce.simass.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-si.mon.GLB", + "seaIce.sitimefrac.tavg-u-hxy-sea.mon.GLB", + "seaIce.siu.tavg-u-hxy-si.mon.GLB", + "seaIce.siv.tavg-u-hxy-si.mon.GLB", + "seaIce.snd.tavg-u-hxy-sn.mon.GLB", + "seaIce.ts.tavg-u-hxy-si.mon.GLB" + ], + "High": [ + "atmos.albisccp.tavg-u-hxy-cl.day.GLB", + "atmos.albisccp.tavg-u-hxy-cl.mon.GLB", + "atmos.ccb.tavg-u-hxy-ccl.day.GLB", + "atmos.ccb.tavg-u-hxy-ccl.mon.GLB", + "atmos.ccb.tpt-u-hs-u.subhr.GLB", + "atmos.cct.tavg-u-hxy-ccl.day.GLB", + "atmos.cct.tavg-u-hxy-ccl.mon.GLB", + "atmos.cct.tpt-u-hs-u.subhr.GLB", + "atmos.cfadDbze94.tavg-h40-hxy-air.mon.GLB", + "atmos.cfadLidarsr532.tavg-h40-hxy-air.mon.GLB", + "atmos.ci.tavg-u-hxy-u.mon.GLB", + "atmos.ci.tpt-u-hs-u.subhr.GLB", + "atmos.cl.tavg-al-hxy-u.day.GLB", + "atmos.cl.tpt-al-hs-u.subhr.GLB", + "atmos.clc.tavg-al-hxy-u.mon.GLB", + "atmos.clcalipso.tavg-220hPa-hxy-air.day.GLB", + "atmos.clcalipso.tavg-220hPa-hxy-air.mon.GLB", + "atmos.clcalipso.tavg-560hPa-hxy-air.day.GLB", + "atmos.clcalipso.tavg-560hPa-hxy-air.mon.GLB", + "atmos.clcalipso.tavg-840hPa-hxy-air.day.GLB", + "atmos.clcalipso.tavg-840hPa-hxy-air.mon.GLB", + "atmos.clcalipso.tavg-h40-hxy-air.day.GLB", + "atmos.clcalipso.tavg-h40-hxy-air.mon.GLB", + "atmos.clcalipsoice.tavg-h40-hxy-air.mon.GLB", + "atmos.clcalipsoliq.tavg-h40-hxy-air.mon.GLB", + "atmos.cli.tavg-al-hxy-u.day.GLB", + "atmos.cli.tpt-al-hs-u.subhr.GLB", + "atmos.clic.tavg-al-hxy-u.mon.GLB", + "atmos.climodis.tavg-u-hxy-u.mon.GLB", + "atmos.clis.tavg-al-hxy-u.mon.GLB", + "atmos.clisccp.tavg-p7c-hxy-air.day.GLB", + "atmos.clisccp.tavg-p7c-hxy-air.mon.GLB", + "atmos.clivi.tavg-u-hxy-u.day.GLB", + "atmos.clivi.tpt-u-hs-u.subhr.GLB", + "atmos.clivic.tavg-u-hxy-u.day.GLB", + "atmos.clivimodis.tavg-u-hxy-u.mon.GLB", + "atmos.clmisr.tavg-h16-hxy-air.mon.GLB", + "atmos.clmodis.tavg-p7c-hxy-air.mon.GLB", + "atmos.clmodisice.tavg-p7c-hxy-air.mon.GLB", + "atmos.clmodisiceReff.tavg-u-hxy-u.mon.GLB", + "atmos.clmodisliquid.tavg-p7c-hxy-air.mon.GLB", + "atmos.clmodisliquidReff.tavg-u-hxy-u.mon.GLB", + "atmos.cls.tavg-al-hxy-u.mon.GLB", + "atmos.clt.tpt-u-hs-u.subhr.GLB", + "atmos.cltcalipso.tavg-u-hxy-u.day.GLB", + "atmos.cltcalipso.tavg-u-hxy-u.mon.GLB", + "atmos.cltisccp.tavg-u-hxy-u.day.GLB", + "atmos.cltisccp.tavg-u-hxy-u.mon.GLB", + "atmos.cltmodis.tavg-u-hxy-u.mon.GLB", + "atmos.clw.tavg-al-hxy-u.day.GLB", + "atmos.clw.tpt-al-hs-u.subhr.GLB", + "atmos.clwc.tavg-al-hxy-u.mon.GLB", + "atmos.clwmodis.tavg-u-hxy-u.mon.GLB", + "atmos.clws.tavg-al-hxy-u.mon.GLB", + "atmos.clwvi.tavg-u-hxy-u.day.GLB", + "atmos.clwvi.tpt-u-hs-u.subhr.GLB", + "atmos.clwvic.tavg-u-hxy-u.day.GLB", + "atmos.clwvimodis.tavg-u-hxy-u.mon.GLB", + "atmos.co2.tavg-p19-hxy-air.mon.GLB", + "atmos.co2.tclm-p19-hxy-air.mon.GLB", + "atmos.co2.tclm-u-hm-u.mon.GLB", + "atmos.co2mass.tavg-u-hm-u.mon.GLB", + "atmos.dmc.tavg-alh-hxy-u.mon.GLB", + "atmos.edt.tavg-al-hxy-u.mon.GLB", + "atmos.edt.tpt-al-hs-u.subhr.GLB", + "atmos.evspsbl.tpt-u-hs-u.subhr.GLB", + "atmos.evu.tavg-al-hxy-u.mon.GLB", + "atmos.evu.tpt-al-hs-u.subhr.GLB", + "atmos.fco2antt.tpt-u-hs-u.subhr.GLB", + "atmos.fco2fos.tpt-u-hs-u.subhr.GLB", + "atmos.fco2nat.tpt-u-hs-u.subhr.GLB", + "atmos.hfls.tavg-u-hxy-u.day.GLB", + "atmos.hfls.tpt-u-hs-u.subhr.GLB", + "atmos.hfss.tavg-u-hxy-u.day.GLB", + "atmos.hfss.tpt-u-hs-u.subhr.GLB", + "atmos.hur.tavg-al-hxy-u.day.GLB", + "atmos.hur.tavg-al-hxy-u.mon.GLB", + "atmos.hur.tpt-al-hs-u.subhr.GLB", + "atmos.hurs.tmax-h2m-hxy-u.day.GLB", + "atmos.hurs.tmin-h2m-hxy-u.day.GLB", + "atmos.hurs.tpt-h2m-hs-u.subhr.GLB", + "atmos.hus.tavg-al-hxy-u.day.GLB", + "atmos.hus.tavg-al-hxy-u.mon.GLB", + "atmos.hus.tpt-al-hs-u.subhr.GLB", + "atmos.huss.tpt-h2m-hs-u.subhr.GLB", + "atmos.jpdftaureicemodis.tavg-u-hxy-u.day.GLB", + "atmos.jpdftaureicemodis.tavg-u-hxy-u.mon.GLB", + "atmos.jpdftaureliqmodis.tavg-u-hxy-u.day.GLB", + "atmos.jpdftaureliqmodis.tavg-u-hxy-u.mon.GLB", + "atmos.lat.ti-u-hs-u.fx.GLB", + "atmos.lon.ti-u-hs-u.fx.GLB", + "atmos.mc.tavg-alh-hxy-u.day.GLB", + "atmos.mc.tavg-alh-hxy-u.mon.GLB", + "atmos.mc.tpt-alh-hs-u.subhr.GLB", + "atmos.mcd.tavg-alh-hxy-u.mon.GLB", + "atmos.mcu.tavg-alh-hxy-u.mon.GLB", + "atmos.parasolRefl.tavg-u-hxy-sea.day.GLB", + "atmos.parasolRefl.tavg-u-hxy-sea.mon.GLB", + "atmos.pctisccp.tavg-u-hxy-cl.day.GLB", + "atmos.pctisccp.tavg-u-hxy-cl.mon.GLB", + "atmos.pfull.tavg-al-hxy-u.day.GLB", + "atmos.pfull.tclm-al-hxy-u.mon.GLB", + "atmos.pfull.tpt-al-hs-u.subhr.GLB", + "atmos.phalf.tavg-alh-hxy-u.day.GLB", + "atmos.phalf.tclm-alh-hxy-u.mon.GLB", + "atmos.phalf.tpt-alh-hs-u.subhr.GLB", + "atmos.pr.tpt-u-hs-u.subhr.GLB", + "atmos.prc.tavg-u-hxy-u.day.GLB", + "atmos.prc.tpt-u-hs-u.subhr.GLB", + "atmos.prsn.tavg-u-hxy-u.day.GLB", + "atmos.prsn.tpt-u-hs-u.subhr.GLB", + "atmos.prw.tpt-u-hs-u.subhr.GLB", + "atmos.ps.tpt-u-hs-u.subhr.GLB", + "atmos.psl.tpt-u-hs-u.subhr.GLB", + "atmos.ptp.tavg-u-hxy-u.mon.GLB", + "atmos.reffclic.tavg-al-hxy-ccl.mon.GLB", + "atmos.reffclic.tpt-al-hs-ccl.subhr.GLB", + "atmos.reffclis.tavg-al-hxy-scl.mon.GLB", + "atmos.reffclis.tpt-al-hs-scl.subhr.GLB", + "atmos.reffclwc.tavg-al-hxy-ccl.mon.GLB", + "atmos.reffclwc.tpt-al-hs-ccl.subhr.GLB", + "atmos.reffclws.tavg-al-hxy-scl.mon.GLB", + "atmos.reffclws.tpt-al-hs-scl.subhr.GLB", + "atmos.rld.tavg-alh-hxy-u.mon.GLB", + "atmos.rld.tpt-alh-hs-u.subhr.GLB", + "atmos.rldcs.tavg-alh-hxy-u.mon.GLB", + "atmos.rldcs.tpt-alh-hs-u.subhr.GLB", + "atmos.rlds.tavg-u-hxy-u.day.GLB", + "atmos.rlds.tpt-u-hs-u.subhr.GLB", + "atmos.rldscs.tavg-u-hxy-u.day.GLB", + "atmos.rldscs.tpt-u-hs-u.subhr.GLB", + "atmos.rlu.tavg-alh-hxy-u.mon.GLB", + "atmos.rlu.tpt-alh-hs-u.subhr.GLB", + "atmos.rlucs.tavg-alh-hxy-u.mon.GLB", + "atmos.rlucs.tpt-alh-hs-u.subhr.GLB", + "atmos.rlus.tavg-u-hxy-u.day.GLB", + "atmos.rlus.tpt-u-hs-u.subhr.GLB", + "atmos.rluscs.tavg-u-hxy-u.day.GLB", + "atmos.rlut.tavg-u-hxy-u.day.GLB", + "atmos.rlut.tclmdc-u-hxy-u.1hr.GLB", + "atmos.rlut.tpt-u-hs-u.subhr.GLB", + "atmos.rlutcs.tavg-u-hxy-u.day.GLB", + "atmos.rlutcs.tclmdc-u-hxy-u.1hr.GLB", + "atmos.rlutcs.tpt-u-hs-u.subhr.GLB", + "atmos.rsd.tavg-alh-hxy-u.mon.GLB", + "atmos.rsd.tpt-alh-hs-u.subhr.GLB", + "atmos.rsdcs.tavg-alh-hxy-u.mon.GLB", + "atmos.rsdcs.tpt-alh-hs-u.subhr.GLB", + "atmos.rsds.tpt-u-hs-u.subhr.GLB", + "atmos.rsdscs.tavg-u-hxy-u.day.GLB", + "atmos.rsdscs.tpt-u-hs-u.subhr.GLB", + "atmos.rsdt.tavg-u-hxy-u.day.GLB", + "atmos.rsdt.tclmdc-u-hxy-u.1hr.GLB", + "atmos.rsdt.tpt-u-hs-u.subhr.GLB", + "atmos.rsu.tavg-alh-hxy-u.mon.GLB", + "atmos.rsu.tpt-alh-hs-u.subhr.GLB", + "atmos.rsucs.tavg-alh-hxy-u.mon.GLB", + "atmos.rsucs.tpt-alh-hs-u.subhr.GLB", + "atmos.rsus.tavg-u-hxy-u.day.GLB", + "atmos.rsus.tpt-u-hs-u.subhr.GLB", + "atmos.rsuscs.tavg-u-hxy-u.day.GLB", + "atmos.rsuscs.tpt-u-hs-u.subhr.GLB", + "atmos.rsut.tavg-u-hxy-u.day.GLB", + "atmos.rsut.tclmdc-u-hxy-u.1hr.GLB", + "atmos.rsut.tpt-u-hs-u.subhr.GLB", + "atmos.rsutcs.tavg-u-hxy-u.day.GLB", + "atmos.rsutcs.tclmdc-u-hxy-u.1hr.GLB", + "atmos.rsutcs.tpt-u-hs-u.subhr.GLB", + "atmos.rtmt.tavg-u-hxy-u.mon.GLB", + "atmos.rtmt.tpt-u-hs-u.subhr.GLB", + "atmos.sci.tavg-u-hxy-u.mon.GLB", + "atmos.sci.tpt-u-hs-u.subhr.GLB", + "atmos.sfcWind.tmax-h10m-hxy-u.day.GLB", + "atmos.sfcWind.tpt-h10m-hs-u.subhr.GLB", + "atmos.smc.tavg-alh-hxy-u.mon.GLB", + "atmos.ta.tavg-700hPa-hxy-air.day.GLB", + "atmos.ta.tavg-al-hxy-u.day.GLB", + "atmos.ta.tavg-al-hxy-u.mon.GLB", + "atmos.ta.tpt-al-hs-u.subhr.GLB", + "atmos.tas.tpt-h2m-hs-u.subhr.GLB", + "atmos.tauu.tpt-u-hs-u.subhr.GLB", + "atmos.tauv.tpt-u-hs-u.subhr.GLB", + "atmos.tnhus.tavg-al-hxy-u.mon.GLB", + "atmos.tnhus.tpt-al-hs-u.subhr.GLB", + "atmos.tnhusa.tavg-al-hxy-u.mon.GLB", + "atmos.tnhusa.tpt-al-hs-u.subhr.GLB", + "atmos.tnhusc.tavg-al-hxy-u.mon.GLB", + "atmos.tnhusc.tpt-al-hs-u.subhr.GLB", + "atmos.tnhusd.tavg-al-hxy-u.mon.GLB", + "atmos.tnhusd.tpt-al-hs-u.subhr.GLB", + "atmos.tnhusmp.tavg-al-hxy-u.mon.GLB", + "atmos.tnhusmp.tpt-al-hs-u.subhr.GLB", + "atmos.tnhuspbl.tavg-al-hxy-u.mon.GLB", + "atmos.tnhuspbl.tpt-al-hs-u.subhr.GLB", + "atmos.tnhusscp.tavg-al-hxy-u.mon.GLB", + "atmos.tnhusscp.tpt-al-hs-u.subhr.GLB", + "atmos.tnhusscpbl.tavg-al-hxy-u.mon.GLB", + "atmos.tnhusscpbl.tpt-al-hs-u.subhr.GLB", + "atmos.tnt.tavg-al-hxy-u.mon.GLB", + "atmos.tnt.tpt-al-hs-u.subhr.GLB", + "atmos.tnta.tavg-al-hxy-u.mon.GLB", + "atmos.tnta.tpt-al-hs-u.subhr.GLB", + "atmos.tntc.tavg-al-hxy-u.mon.GLB", + "atmos.tntc.tpt-al-hs-u.subhr.GLB", + "atmos.tntd.tavg-al-hxy-u.mon.GLB", + "atmos.tntd.tpt-al-hs-u.subhr.GLB", + "atmos.tntmp.tavg-al-hxy-u.mon.GLB", + "atmos.tntmp.tpt-al-hs-u.subhr.GLB", + "atmos.tntpbl.tavg-al-hxy-u.mon.GLB", + "atmos.tntpbl.tpt-al-hs-u.subhr.GLB", + "atmos.tntr.tavg-al-hxy-u.mon.GLB", + "atmos.tntr.tpt-al-hs-u.subhr.GLB", + "atmos.tntrl.tavg-al-hxy-u.mon.GLB", + "atmos.tntrl.tpt-al-hs-u.subhr.GLB", + "atmos.tntrlcs.tavg-al-hxy-u.mon.GLB", + "atmos.tntrlcs.tpt-al-hs-u.subhr.GLB", + "atmos.tntrs.tavg-al-hxy-u.mon.GLB", + "atmos.tntrs.tpt-al-hs-u.subhr.GLB", + "atmos.tntrscs.tavg-al-hxy-u.mon.GLB", + "atmos.tntrscs.tpt-al-hs-u.subhr.GLB", + "atmos.tntscp.tavg-al-hxy-u.mon.GLB", + "atmos.tntscp.tpt-al-hs-u.subhr.GLB", + "atmos.tntscpbl.tavg-al-hxy-u.mon.GLB", + "atmos.tntscpbl.tpt-al-hs-u.subhr.GLB", + "atmos.ts.tpt-u-hs-u.subhr.GLB", + "atmos.ua.tavg-al-hxy-u.day.GLB", + "atmos.ua.tpt-al-hs-u.subhr.GLB", + "atmos.uas.tpt-h10m-hs-u.subhr.GLB", + "atmos.va.tavg-al-hxy-u.day.GLB", + "atmos.va.tpt-al-hs-u.subhr.GLB", + "atmos.vas.tpt-h10m-hs-u.subhr.GLB", + "atmos.wap.tavg-500hPa-hxy-air.day.GLB", + "atmos.wap.tavg-al-hxy-u.day.GLB", + "atmos.wap.tpt-al-hs-u.subhr.GLB", + "atmos.zg.tavg-al-hxy-u.day.GLB", + "atmos.zg.tpt-al-hs-u.subhr.GLB", + "atmos.ztp.tavg-u-hxy-u.mon.GLB", + "atmosChem.cfc11.tavg-u-hm-u.mon.GLB", + "atmosChem.cfc113.tavg-u-hm-u.mon.GLB", + "atmosChem.cfc12.tavg-u-hm-u.mon.GLB", + "atmosChem.ch4.tavg-p19-hxy-air.mon.GLB", + "atmosChem.ch4.tavg-u-hm-u.mon.GLB", + "atmosChem.ch4.tclm-p19-hxy-air.mon.GLB", + "atmosChem.ch4.tclm-u-hm-u.mon.GLB", + "atmosChem.hcfc22.tavg-u-hm-u.mon.GLB", + "atmosChem.n2o.tavg-p19-hxy-air.mon.GLB", + "atmosChem.n2o.tavg-u-hm-u.mon.GLB", + "atmosChem.n2o.tclm-p19-hxy-air.mon.GLB", + "atmosChem.n2o.tclm-u-hm-u.mon.GLB", + "atmosChem.o3.tavg-p19-hxy-air.mon.GLB", + "atmosChem.o3.tclm-p19-hxy-air.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.day.GLB", + "land.mrso.tavg-u-hxy-lnd.day.GLB", + "land.mrsol.tavg-d10cm-hxy-lnd.day.GLB", + "land.tslsi.tavg-u-hxy-u.day.GLB", + "landIce.sbl.tavg-u-hxy-u.mon.GLB", + "landIce.sbl.tpt-u-hs-u.subhr.GLB", + "landIce.snc.tavg-u-hxy-lnd.day.GLB", + "landIce.snw.tavg-u-hxy-lnd.day.GLB", + "ocean.tossq.tavg-u-hxy-sea.day.GLB", + "seaIce.sithick.tavg-u-hxy-si.day.GLB", + "seaIce.siu.tavg-u-hxy-si.day.GLB", + "seaIce.siv.tavg-u-hxy-si.day.GLB" + ], + "Medium": [], + "Low": [ + "aerosol.abs550aer.tavg-u-hxy-u.mon.GLB", + "aerosol.ccldncl.tavg-u-hxy-ccl.day.GLB", + "aerosol.cdnc.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrbc.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrdust.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrnh4.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrno3.tavg-al-hxy-u.mon.GLB", + "aerosol.mmroa.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrso4.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrsoa.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrss.tavg-al-hxy-u.mon.GLB", + "aerosol.od550aer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550lt1aer.tavg-u-hxy-u.mon.GLB", + "aerosol.so2.tavg-al-hxy-u.mon.GLB", + "atmos.cldnci.tavg-u-hxy-cl.day.GLB", + "atmos.cldnvi.tavg-u-hxy-u.day.GLB", + "atmos.loadbc.tavg-u-hxy-u.day.GLB", + "atmos.loaddust.tavg-u-hxy-u.day.GLB", + "atmos.loadnh4.tavg-u-hxy-u.day.GLB", + "atmos.loadno3.tavg-u-hxy-u.day.GLB", + "atmos.loadoa.tavg-u-hxy-u.day.GLB", + "atmos.loadpoa.tavg-u-hxy-u.day.GLB", + "atmos.loadso4.tavg-u-hxy-u.day.GLB", + "atmos.loadsoa.tavg-u-hxy-u.day.GLB", + "atmos.loadss.tavg-u-hxy-u.day.GLB", + "atmos.reffcclwtop.tavg-u-hxy-ccl.day.GLB", + "atmos.reffsclwtop.tavg-u-hxy-scl.day.GLB", + "atmos.rsdscsdiff.tavg-u-hxy-u.day.GLB", + "atmos.rsdsdiff.tavg-u-hxy-u.day.GLB", + "atmos.scldncl.tavg-u-hxy-scl.day.GLB", + "atmos.zfull.ti-al-hxy-u.fx.GLB", + "atmosChem.dms.tavg-al-hxy-u.mon.GLB", + "land.baresoilFrac.tavg-u-hxy-u.mon.GLB", + "land.burntFractionAll.tavg-u-hxy-u.mon.GLB", + "land.cropFrac.tavg-u-hxy-u.mon.GLB", + "land.grassFrac.tavg-u-hxy-u.mon.GLB", + "land.mrsol.tavg-sl-hxy-lnd.mon.GLB", + "land.pastureFrac.tavg-u-hxy-u.mon.GLB", + "land.prveg.tavg-u-hxy-lnd.mon.GLB", + "land.residualFrac.tavg-u-hxy-u.mon.GLB", + "land.shrubFrac.tavg-u-hxy-u.mon.GLB", + "land.tran.tavg-u-hxy-lnd.mon.GLB", + "land.treeFrac.tavg-u-hxy-u.mon.GLB", + "land.tsl.tavg-sl-hxy-lnd.mon.GLB", + "landIce.snd.tavg-u-hxy-lnd.mon.GLB", + "seaIce.evspsbl.tavg-u-hxy-si.mon.GLB", + "seaIce.prra.tavg-u-hxy-si.mon.GLB", + "seaIce.prsn.tavg-u-hxy-si.mon.GLB", + "seaIce.sisali.tavg-u-hxy-si.mon.GLB", + "seaIce.sitempsnic.tavg-u-hxy-si.mon.GLB", + "seaIce.snc.tavg-u-hxy-si.mon.GLB", + "seaIce.snw.tavg-u-hxy-si.mon.GLB" + ] + }, + "amip-piForcing": { + "Core": [ + "atmos.areacella.ti-u-hxy-u.fx.GLB", + "atmos.cl.tavg-al-hxy-u.mon.GLB", + "atmos.cli.tavg-al-hxy-u.mon.GLB", + "atmos.clivi.tavg-u-hxy-u.mon.GLB", + "atmos.clt.tavg-u-hxy-u.day.GLB", + "atmos.clt.tavg-u-hxy-u.mon.GLB", + "atmos.clw.tavg-al-hxy-u.mon.GLB", + "atmos.clwvi.tavg-u-hxy-u.mon.GLB", + "atmos.evspsbl.tavg-u-hxy-u.mon.GLB", + "atmos.hfls.tavg-u-hxy-u.mon.GLB", + "atmos.hfss.tavg-u-hxy-u.mon.GLB", + "atmos.hur.tavg-p19-hxy-air.mon.GLB", + "atmos.hur.tavg-p19-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.6hr.GLB", + "atmos.hurs.tavg-h2m-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.mon.GLB", + "atmos.hus.tavg-p19-hxy-u.day.GLB", + "atmos.hus.tavg-p19-hxy-u.mon.GLB", + "atmos.huss.tavg-h2m-hxy-u.day.GLB", + "atmos.huss.tavg-h2m-hxy-u.mon.GLB", + "atmos.huss.tpt-h2m-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.1hr.GLB", + "atmos.pr.tavg-u-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.day.GLB", + "atmos.pr.tavg-u-hxy-u.mon.GLB", + "atmos.prc.tavg-u-hxy-u.mon.GLB", + "atmos.prsn.tavg-u-hxy-u.mon.GLB", + "atmos.prw.tavg-u-hxy-u.mon.GLB", + "atmos.ps.tavg-u-hxy-u.day.GLB", + "atmos.ps.tavg-u-hxy-u.mon.GLB", + "atmos.psl.tavg-u-hxy-u.day.GLB", + "atmos.psl.tavg-u-hxy-u.mon.GLB", + "atmos.rlds.tavg-u-hxy-u.mon.GLB", + "atmos.rldscs.tavg-u-hxy-u.mon.GLB", + "atmos.rlus.tavg-u-hxy-u.mon.GLB", + "atmos.rluscs.tavg-u-hxy-u.mon.GLB", + "atmos.rlut.tavg-u-hxy-u.mon.GLB", + "atmos.rlutcs.tavg-u-hxy-u.mon.GLB", + "atmos.rsds.tavg-u-hxy-u.day.GLB", + "atmos.rsds.tavg-u-hxy-u.mon.GLB", + "atmos.rsdscs.tavg-u-hxy-u.mon.GLB", + "atmos.rsdt.tavg-u-hxy-u.mon.GLB", + "atmos.rsus.tavg-u-hxy-u.mon.GLB", + "atmos.rsuscs.tavg-u-hxy-u.mon.GLB", + "atmos.rsut.tavg-u-hxy-u.mon.GLB", + "atmos.rsutcs.tavg-u-hxy-u.mon.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.day.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.mon.GLB", + "atmos.sftlf.ti-u-hxy-u.fx.GLB", + "atmos.ta.tavg-p19-hxy-air.day.GLB", + "atmos.ta.tavg-p19-hxy-air.mon.GLB", + "atmos.ta.tpt-p3-hxy-air.6hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.day.GLB", + "atmos.tas.tavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tmax-h2m-hxy-u.day.GLB", + "atmos.tas.tmaxavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tmin-h2m-hxy-u.day.GLB", + "atmos.tas.tminavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tpt-h2m-hxy-u.3hr.GLB", + "atmos.tauu.tavg-u-hxy-u.mon.GLB", + "atmos.tauv.tavg-u-hxy-u.mon.GLB", + "atmos.ts.tavg-u-hxy-u.mon.GLB", + "atmos.ua.tavg-p19-hxy-air.day.GLB", + "atmos.ua.tavg-p19-hxy-air.mon.GLB", + "atmos.ua.tpt-p3-hxy-air.6hr.GLB", + "atmos.uas.tavg-h10m-hxy-u.day.GLB", + "atmos.uas.tavg-h10m-hxy-u.mon.GLB", + "atmos.uas.tpt-h10m-hxy-u.3hr.GLB", + "atmos.va.tavg-p19-hxy-air.day.GLB", + "atmos.va.tavg-p19-hxy-air.mon.GLB", + "atmos.va.tpt-p3-hxy-air.6hr.GLB", + "atmos.vas.tavg-h10m-hxy-u.day.GLB", + "atmos.vas.tavg-h10m-hxy-u.mon.GLB", + "atmos.vas.tpt-h10m-hxy-u.3hr.GLB", + "atmos.wap.tavg-p19-hxy-air.mon.GLB", + "atmos.wap.tavg-p19-hxy-u.day.GLB", + "atmos.zg.tavg-p19-hxy-air.day.GLB", + "atmos.zg.tavg-p19-hxy-air.mon.GLB", + "land.evspsblsoi.tavg-u-hxy-lnd.mon.GLB", + "land.evspsblveg.tavg-u-hxy-lnd.mon.GLB", + "land.lai.tavg-u-hxy-lnd.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.mon.GLB", + "land.mrros.tavg-u-hxy-lnd.mon.GLB", + "land.mrso.tavg-u-hxy-lnd.mon.GLB", + "land.mrsofc.ti-u-hxy-lnd.fx.GLB", + "land.mrsol.tavg-d10cm-hxy-lnd.mon.GLB", + "land.orog.ti-u-hxy-u.fx.GLB", + "land.rootd.ti-u-hxy-lnd.fx.GLB", + "land.sftgif.ti-u-hxy-u.fx.GLB", + "land.slthick.ti-sl-hxy-lnd.fx.GLB", + "landIce.mrfso.tavg-u-hxy-lnd.mon.GLB", + "landIce.snc.tavg-u-hxy-lnd.mon.GLB", + "landIce.snw.tavg-u-hxy-lnd.mon.GLB", + "ocean.areacello.ti-u-hxy-u.fx.GLB", + "ocean.basin.ti-u-hxy-u.fx.GLB", + "ocean.bigthetao.tavg-ol-hxy-sea.mon.GLB", + "ocean.deptho.ti-u-hxy-sea.fx.GLB", + "ocean.hfds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfgeou.ti-u-hxy-sea.fx.GLB", + "ocean.masscello.tavg-ol-hxy-sea.mon.GLB", + "ocean.masscello.ti-ol-hxy-sea.fx.GLB", + "ocean.mlotst.tavg-u-hxy-sea.mon.GLB", + "ocean.sftof.ti-u-hxy-u.fx.GLB", + "ocean.so.tavg-ol-hxy-sea.mon.GLB", + "ocean.sos.tavg-u-hxy-sea.day.GLB", + "ocean.sos.tavg-u-hxy-sea.mon.GLB", + "ocean.tauuo.tavg-u-hxy-sea.mon.GLB", + "ocean.tauvo.tavg-u-hxy-sea.mon.GLB", + "ocean.thetao.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcello.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcello.ti-ol-hxy-sea.fx.GLB", + "ocean.tos.tavg-u-hxy-sea.day.GLB", + "ocean.tos.tavg-u-hxy-sea.mon.GLB", + "ocean.umo.tavg-ol-hxy-sea.mon.GLB", + "ocean.uo.tavg-ol-hxy-sea.mon.GLB", + "ocean.vmo.tavg-ol-hxy-sea.mon.GLB", + "ocean.vo.tavg-ol-hxy-sea.mon.GLB", + "ocean.wmo.tavg-ol-hxy-sea.mon.GLB", + "ocean.wo.tavg-ol-hxy-sea.mon.GLB", + "ocean.zos.tavg-u-hxy-sea.day.GLB", + "ocean.zos.tavg-u-hxy-sea.mon.GLB", + "ocean.zostoga.tavg-u-hm-sea.mon.GLB", + "seaIce.siconc.tavg-u-hxy-u.day.GLB", + "seaIce.siconc.tavg-u-hxy-u.mon.GLB", + "seaIce.simass.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-si.mon.GLB", + "seaIce.sitimefrac.tavg-u-hxy-sea.mon.GLB", + "seaIce.siu.tavg-u-hxy-si.mon.GLB", + "seaIce.siv.tavg-u-hxy-si.mon.GLB", + "seaIce.snd.tavg-u-hxy-sn.mon.GLB", + "seaIce.ts.tavg-u-hxy-si.mon.GLB" + ], + "High": [ + "aerosol.abs550aer.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550bc.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550dust.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550no3.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550oa.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550so4.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550ss.tavg-u-hxy-u.mon.GLB", + "aerosol.airmass.tavg-al-hxy-u.mon.GLB", + "aerosol.aoanh.tavg-al-hxy-u.mon.NH", + "aerosol.bry.tavg-p39-hy-air.mon.GLB", + "aerosol.bs550aer.tpt-al-hxy-u.6hr.GLB", + "aerosol.c2h6.tavg-al-hxy-u.mon.GLB", + "aerosol.c3h6.tavg-al-hxy-u.mon.GLB", + "aerosol.c3h8.tavg-al-hxy-u.mon.GLB", + "aerosol.ccldncl.tavg-u-hxy-ccl.mon.GLB", + "aerosol.ccn.tavg-u-hxy-ccl.mon.30S-90S", + "aerosol.ccn.tavg-u-hxy-ccl.mon.GLB", + "aerosol.ccn1.tavg-al-hxy-u.mon.30S-90S", + "aerosol.ccn1.tavg-al-hxy-u.mon.GLB", + "aerosol.ccnp02.tavg-al-hxy-u.mon.30S-90S", + "aerosol.ccnp02.tavg-al-hxy-u.mon.GLB", + "aerosol.cdnc.tavg-al-hxy-u.mon.30S-90S", + "aerosol.cdnc.tavg-al-hxy-u.mon.GLB", + "aerosol.cfc114.tavg-al-hxy-u.mon.GLB", + "aerosol.ch3coch3.tavg-al-hxy-u.mon.GLB", + "aerosol.cheaqpso4.tavg-al-hxy-u.mon.GLB", + "aerosol.chegpso4.tavg-al-hxy-u.mon.GLB", + "aerosol.chepasoa.tavg-u-hxy-u.mon.GLB", + "aerosol.chepsoa.tavg-u-hxy-u.mon.GLB", + "aerosol.cly.tavg-p39-hy-air.mon.GLB", + "aerosol.co.tavg-al-hxy-u.mon.GLB", + "aerosol.co.tavg-h2m-hxy-u.day.GLB", + "aerosol.cod.tavg-u-hxy-u.day.GLB", + "aerosol.cod.tavg-u-hxy-u.mon.30S-90S", + "aerosol.cod.tavg-u-hxy-u.mon.GLB", + "aerosol.conccn.tavg-al-hxy-u.mon.GLB", + "aerosol.conccn.tpt-u-hs-u.3hr.GLB", + "aerosol.drybc.tavg-u-hxy-u.mon.GLB", + "aerosol.drydust.tavg-u-hxy-u.mon.GLB", + "aerosol.dryno3.tavg-u-hxy-u.mon.GLB", + "aerosol.dryo3.tavg-u-hxy-u.mon.GLB", + "aerosol.dryoa.tavg-u-hxy-u.mon.GLB", + "aerosol.dryso2.tavg-u-hxy-u.mon.GLB", + "aerosol.dryso4.tavg-u-hxy-u.mon.GLB", + "aerosol.dryss.tavg-u-hxy-u.mon.GLB", + "aerosol.ec550aer.tavg-al-hxy-u.mon.GLB", + "aerosol.ec550aer.tpt-u-hxy-u.6hr.GLB", + "aerosol.emiaco.tavg-u-hxy-u.mon.GLB", + "aerosol.emianox.tavg-u-hxy-u.mon.GLB", + "aerosol.emiaoa.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbbc.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbch4.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbco.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbdms.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbnh3.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbnox.tavg-u-hxy-u.mon.GLB", + "aerosol.emibboa.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbso2.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbvoc.tavg-u-hxy-u.mon.GLB", + "aerosol.emibc.tavg-u-hxy-u.mon.GLB", + "aerosol.emibvoc.tavg-u-hxy-u.mon.GLB", + "aerosol.emico.tavg-u-hxy-u.mon.GLB", + "aerosol.emidms.tavg-u-hxy-u.mon.30S-90S", + "aerosol.emidms.tavg-u-hxy-u.mon.GLB", + "aerosol.emidust.tavg-u-hxy-u.mon.GLB", + "aerosol.emiisop.tavg-u-hxy-u.mon.GLB", + "aerosol.emilnox.tavg-al-hxy-u.mon.GLB", + "aerosol.eminh3.tavg-u-hxy-u.mon.GLB", + "aerosol.eminox.tavg-u-hxy-u.mon.GLB", + "aerosol.emioa.tavg-u-hxy-u.mon.GLB", + "aerosol.emiso2.tavg-u-hxy-u.mon.GLB", + "aerosol.emiso4.tavg-u-hxy-u.mon.GLB", + "aerosol.emiss.tavg-u-hxy-u.mon.30S-90S", + "aerosol.emiss.tavg-u-hxy-u.mon.GLB", + "aerosol.emivoc.tavg-u-hxy-u.mon.GLB", + "aerosol.h2o.tavg-al-hxy-u.mon.GLB", + "aerosol.h2o.tavg-p39-hy-air.mon.GLB", + "aerosol.hcfc22.tavg-al-hxy-u.mon.GLB", + "aerosol.hcho.tavg-al-hxy-u.mon.GLB", + "aerosol.hcl.tavg-al-hxy-u.mon.GLB", + "aerosol.hcl.tavg-p39-hy-air.mon.GLB", + "aerosol.hfc125.tavg-al-hxy-u.mon.GLB", + "aerosol.hfc134a.tavg-al-hxy-u.mon.GLB", + "aerosol.hno3.tavg-al-hxy-u.mon.GLB", + "aerosol.hno3.tavg-p39-hy-air.mon.GLB", + "aerosol.ho2.tavg-p39-hy-air.mon.GLB", + "aerosol.isop.tavg-al-hxy-u.mon.GLB", + "aerosol.jno2.tavg-al-hxy-u.mon.GLB", + "aerosol.lossch4.tavg-al-hxy-u.mon.GLB", + "aerosol.lossco.tavg-al-hxy-u.mon.GLB", + "aerosol.lossn2o.tavg-al-hxy-u.mon.GLB", + "aerosol.lwp.tavg-u-hxy-u.mon.GLB", + "aerosol.mmraerh2o.tavg-al-hxy-u.mon.GLB", + "aerosol.mmraerh2o.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmraerh2o.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrbc.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrbc.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrbc.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrbc.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrdust.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrdust.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrdust.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrdust.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrnh4.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrnh4.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrnh4.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrnh4.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrno3.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrno3.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrno3.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrno3.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmroa.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmroa.tavg-al-hxy-u.mon.GLB", + "aerosol.mmroa.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmroa.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrpm1.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrpm1.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrpm2p5.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrpm2p5.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrso4.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrso4.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrso4.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrso4.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrsoa.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrsoa.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrsoa.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrss.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrss.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrss.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrss.tpt-h2m-hs-u.3hr.GLB", + "aerosol.nh50.tavg-al-hxy-u.mon.GLB", + "aerosol.no.tavg-al-hxy-u.mon.GLB", + "aerosol.no2.tavg-al-hxy-u.mon.GLB", + "aerosol.no2.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.noy.tavg-p39-hy-air.mon.GLB", + "aerosol.o3.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.o3.tmax-h2m-hxy-u.day.GLB", + "aerosol.o3loss.tavg-al-hxy-u.mon.GLB", + "aerosol.o3prod.tavg-al-hxy-u.mon.GLB", + "aerosol.od443aer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550aer.tavg-u-hxy-u.day.GLB", + "aerosol.od550aer.tavg-u-hxy-u.mon.30S-90S", + "aerosol.od550aer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550aerh2o.tavg-u-hxy-u.mon.GLB", + "aerosol.od550bb.tavg-u-hxy-u.mon.GLB", + "aerosol.od550bc.tavg-u-hxy-u.mon.GLB", + "aerosol.od550csaer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550dust.tavg-u-hxy-u.mon.GLB", + "aerosol.od550lt1aer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550no3.tavg-u-hxy-u.mon.GLB", + "aerosol.od550oa.tavg-u-hxy-u.mon.GLB", + "aerosol.od550so4.tavg-u-hxy-u.mon.GLB", + "aerosol.od550soa.tavg-u-hxy-u.mon.GLB", + "aerosol.od550ss.tavg-u-hxy-u.mon.GLB", + "aerosol.od865aer.tavg-u-hxy-u.mon.GLB", + "aerosol.oh.tavg-al-hxy-u.mon.GLB", + "aerosol.oh.tavg-p39-hy-air.mon.GLB", + "aerosol.pan.tavg-al-hxy-u.mon.GLB", + "aerosol.photo1d.tavg-al-hxy-u.mon.GLB", + "aerosol.pod0.tsum-u-hxy-u.mon.GLB", + "aerosol.reffccwctop.tavg-u-hxy-cl.mon.GLB", + "aerosol.reffclwtop.tavg-u-hxy-cl.mon.30S-90S", + "aerosol.reffclwtop.tavg-u-hxy-cl.mon.GLB", + "aerosol.rluscsaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rlutaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rlutcsaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rsutaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rsutcsaf.tavg-u-hxy-u.mon.GLB", + "aerosol.sfpm1.tavg-h2m-hxy-u.day.GLB", + "aerosol.sfpm10.tavg-al-hxy-u.mon.30S-90S", + "aerosol.sfpm10.tavg-al-hxy-u.mon.GLB", + "aerosol.sfpm10.tavg-h2m-hxy-u.day.GLB", + "aerosol.sfpm25.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.sfpm25.tavg-h2m-hxy-u.day.GLB", + "aerosol.so2.tavg-al-hxy-u.mon.30S-90S", + "aerosol.so2.tavg-al-hxy-u.mon.GLB", + "aerosol.so2.tavg-h2m-hxy-u.day.GLB", + "aerosol.so2.tpt-h2m-hs-u.3hr.GLB", + "aerosol.tatp.tavg-u-hxy-u.mon.GLB", + "aerosol.toz.tavg-u-hxy-u.day.GLB", + "aerosol.toz.tavg-u-hxy-u.mon.GLB", + "aerosol.tropoz.tavg-u-hxy-u.mon.GLB", + "aerosol.ttop.tavg-u-hxy-cl.mon.GLB", + "aerosol.ua.tavg-10hPa-hxy-air.day.GLB", + "aerosol.vt100.tavg-100hPa-hy-air.mon.GLB", + "aerosol.wa.tavg-al-hxy-u.mon.GLB", + "aerosol.wetbc.tavg-u-hxy-u.mon.GLB", + "aerosol.wetdust.tavg-u-hxy-u.mon.GLB", + "aerosol.wetoa.tavg-u-hxy-u.mon.GLB", + "aerosol.wetso2.tavg-u-hxy-u.mon.GLB", + "aerosol.wetso4.tavg-u-hxy-u.mon.GLB", + "aerosol.wetss.tavg-u-hxy-u.mon.GLB", + "aerosol.zg.tavg-10hPa-hxy-air.day.GLB", + "atmos.albisccp.tavg-u-hxy-cl.day.GLB", + "atmos.albisccp.tavg-u-hxy-cl.mon.30S-90S", + "atmos.albisccp.tavg-u-hxy-cl.mon.GLB", + "atmos.aod550volso4.tavg-u-hxy-u.mon.GLB", + "atmos.bldep.tavg-u-hxy-u.mon.GLB", + "atmos.bldep.tmax-u-hxy-u.day.GLB", + "atmos.bldep.tmin-u-hxy-u.day.GLB", + "atmos.ccb.tavg-u-hxy-ccl.day.GLB", + "atmos.ccb.tavg-u-hxy-ccl.mon.GLB", + "atmos.cct.tavg-u-hxy-ccl.day.GLB", + "atmos.cct.tavg-u-hxy-ccl.mon.GLB", + "atmos.ci.tavg-u-hxy-u.mon.GLB", + "atmos.cl.tavg-al-hxy-u.day.GLB", + "atmos.cl.tavg-al-hxy-u.mon.30S-90S", + "atmos.clc.tavg-al-hxy-u.mon.30S-90S", + "atmos.clc.tavg-al-hxy-u.mon.GLB", + "atmos.clcalipso.tavg-220hPa-hxy-air.day.GLB", + "atmos.clcalipso.tavg-220hPa-hxy-air.mon.30S-90S", + "atmos.clcalipso.tavg-220hPa-hxy-air.mon.GLB", + "atmos.clcalipso.tavg-560hPa-hxy-air.day.GLB", + "atmos.clcalipso.tavg-560hPa-hxy-air.mon.30S-90S", + "atmos.clcalipso.tavg-560hPa-hxy-air.mon.GLB", + "atmos.clcalipso.tavg-840hPa-hxy-air.day.GLB", + "atmos.clcalipso.tavg-840hPa-hxy-air.mon.30S-90S", + "atmos.clcalipso.tavg-840hPa-hxy-air.mon.GLB", + "atmos.clcalipso.tavg-h40-hxy-air.mon.30S-90S", + "atmos.clcalipso.tavg-h40-hxy-air.mon.GLB", + "atmos.cldnci.tavg-u-hxy-cl.mon.GLB", + "atmos.cldncl.tavg-u-hxy-cl.mon.GLB", + "atmos.cldnvi.tavg-u-hxy-u.mon.GLB", + "atmos.cli.tavg-al-hxy-u.mon.30S-90S", + "atmos.clic.tavg-al-hxy-u.mon.30S-90S", + "atmos.clic.tavg-al-hxy-u.mon.GLB", + "atmos.clis.tavg-al-hxy-u.mon.30S-90S", + "atmos.clis.tavg-al-hxy-u.mon.GLB", + "atmos.clisccp.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clisccp.tavg-p7c-hxy-air.mon.GLB", + "atmos.clivi.tavg-u-hxy-u.day.GLB", + "atmos.clivi.tavg-u-hxy-u.mon.30S-90S", + "atmos.clivic.tavg-u-hxy-u.day.GLB", + "atmos.clivimodis.tavg-u-hxy-u.mon.30S-90S", + "atmos.clmisr.tavg-h16-hxy-air.mon.GLB", + "atmos.clmodis.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clmodis.tavg-p7c-hxy-air.mon.GLB", + "atmos.clmodisice.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clmodisice.tavg-p7c-hxy-air.mon.GLB", + "atmos.clmodisiceReff.tavg-u-hxy-u.mon.GLB", + "atmos.clmodisliquid.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clmodisliquid.tavg-p7c-hxy-air.mon.GLB", + "atmos.clmodisliquidReff.tavg-u-hxy-u.mon.GLB", + "atmos.cls.tavg-al-hxy-u.mon.30S-90S", + "atmos.cls.tavg-al-hxy-u.mon.GLB", + "atmos.clt.tavg-u-hxy-lnd.day.GLB", + "atmos.clt.tavg-u-hxy-u.mon.30S-90S", + "atmos.cltc.tavg-u-hxy-u.mon.GLB", + "atmos.cltcalipso.tavg-u-hxy-u.day.GLB", + "atmos.cltcalipso.tavg-u-hxy-u.mon.30S-90S", + "atmos.cltcalipso.tavg-u-hxy-u.mon.GLB", + "atmos.cltisccp.tavg-u-hxy-u.day.GLB", + "atmos.cltisccp.tavg-u-hxy-u.mon.30S-90S", + "atmos.cltisccp.tavg-u-hxy-u.mon.GLB", + "atmos.cltmodis.tavg-u-hxy-u.mon.30S-90S", + "atmos.clw.tavg-al-hxy-u.mon.30S-90S", + "atmos.clwc.tavg-al-hxy-u.mon.30S-90S", + "atmos.clwc.tavg-al-hxy-u.mon.GLB", + "atmos.clws.tavg-al-hxy-u.mon.30S-90S", + "atmos.clws.tavg-al-hxy-u.mon.GLB", + "atmos.clwvi.tavg-u-hxy-u.day.GLB", + "atmos.clwvi.tavg-u-hxy-u.mon.30S-90S", + "atmos.clwvic.tavg-u-hxy-u.day.GLB", + "atmos.clwvimodis.tavg-u-hxy-u.mon.30S-90S", + "atmos.co2.tavg-al-hxy-u.mon.GLB", + "atmos.co2.tavg-p19-hxy-air.mon.GLB", + "atmos.co2.tclm-p19-hxy-air.mon.GLB", + "atmos.co2.tclm-u-hm-u.mon.GLB", + "atmos.co23D.tavg-al-hxy-u.mon.GLB", + "atmos.co2mass.tavg-u-hm-u.mon.GLB", + "atmos.dmc.tavg-alh-hxy-u.mon.30S-90S", + "atmos.dmc.tavg-alh-hxy-u.mon.GLB", + "atmos.edt.tavg-al-hxy-u.mon.30S-90S", + "atmos.edt.tavg-al-hxy-u.mon.GLB", + "atmos.evspsbl.tavg-u-hxy-lnd.day.GLB", + "atmos.evu.tavg-al-hxy-u.mon.30S-90S", + "atmos.evu.tavg-al-hxy-u.mon.GLB", + "atmos.fco2antt.tavg-u-hxy-u.mon.GLB", + "atmos.fco2fos.tavg-u-hxy-u.mon.GLB", + "atmos.fco2nat.tavg-u-hxy-u.mon.GLB", + "atmos.hfls.tavg-u-hxy-u.day.GLB", + "atmos.hfls.tavg-u-hxy-u.mon.30S-90S", + "atmos.hfss.tavg-u-hxy-u.day.GLB", + "atmos.hfss.tavg-u-hxy-u.mon.30S-90S", + "atmos.hur.tavg-al-hxy-u.mon.30S-90S", + "atmos.hur.tavg-al-hxy-u.mon.GLB", + "atmos.hur.tavg-p19-hxy-air.mon.30S-90S", + "atmos.hurs.tavg-h2m-hxy-u.mon.30S-90S", + "atmos.hurs.tmax-h2m-hxy-u.day.GLB", + "atmos.hurs.tmin-h2m-hxy-u.day.GLB", + "atmos.hus.tavg-al-hxy-u.mon.30S-90S", + "atmos.hus.tavg-al-hxy-u.mon.GLB", + "atmos.hus.tavg-p19-hxy-u.mon.30S-90S", + "atmos.hus.tpt-al-hxy-u.6hr.GLB", + "atmos.hus.tpt-p7h-hxy-air.6hr.GLB", + "atmos.huss.tavg-h2m-hxy-u.mon.30S-90S", + "atmos.huss.tpt-h2m-hxy-u.1hr.GLB", + "atmos.loadso4.tavg-u-hxy-u.mon.GLB", + "atmos.mc.tavg-alh-hxy-u.mon.GLB", + "atmos.mcd.tavg-alh-hxy-u.mon.30S-90S", + "atmos.mcd.tavg-alh-hxy-u.mon.GLB", + "atmos.mcu.tavg-alh-hxy-u.mon.30S-90S", + "atmos.mcu.tavg-alh-hxy-u.mon.GLB", + "atmos.pctisccp.tavg-u-hxy-cl.day.GLB", + "atmos.pctisccp.tavg-u-hxy-cl.mon.30S-90S", + "atmos.pctisccp.tavg-u-hxy-cl.mon.GLB", + "atmos.pfull.tavg-al-hxy-u.mon.GLB", + "atmos.pfull.tclm-al-hxy-u.mon.30S-90S", + "atmos.pfull.tclm-al-hxy-u.mon.GLB", + "atmos.phalf.tavg-alh-hxy-u.mon.GLB", + "atmos.phalf.tclm-alh-hxy-u.mon.GLB", + "atmos.pr.tavg-u-hxy-u.mon.30S-90S", + "atmos.pr.tmax-u-hxy-u.day.GLB", + "atmos.pr.tpt-u-hxy-u.6hr.GLB", + "atmos.prc.tavg-u-hxy-u.day.GLB", + "atmos.prc.tavg-u-hxy-u.mon.30S-90S", + "atmos.prra.tavg-u-hxy-lnd.day.GLB", + "atmos.prra.tavg-u-hxy-u.mon.30S-90S", + "atmos.prsn.tavg-u-hxy-u.3hr.GLB", + "atmos.prsn.tavg-u-hxy-u.day.GLB", + "atmos.prsn.tavg-u-hxy-u.mon.30S-90S", + "atmos.prw.tavg-u-hxy-u.day.GLB", + "atmos.prw.tavg-u-hxy-u.mon.30S-90S", + "atmos.ps.tavg-u-hxy-u.1hr.GLB", + "atmos.ps.tavg-u-hxy-u.mon.30S-90S", + "atmos.ps.tpt-u-hxy-u.6hr.GLB", + "atmos.psl.tavg-u-hxy-u.mon.30S-90S", + "atmos.psl.tpt-u-hxy-u.1hr.GLB", + "atmos.psl.tpt-u-hxy-u.6hr.GLB", + "atmos.ptp.tavg-u-hxy-u.mon.GLB", + "atmos.reffcclwtop.tavg-u-hxy-ccl.mon.GLB", + "atmos.reffclic.tavg-al-hxy-ccl.mon.30S-90S", + "atmos.reffclic.tavg-al-hxy-ccl.mon.GLB", + "atmos.reffclis.tavg-al-hxy-scl.mon.30S-90S", + "atmos.reffclis.tavg-al-hxy-scl.mon.GLB", + "atmos.reffclwc.tavg-al-hxy-ccl.mon.30S-90S", + "atmos.reffclwc.tavg-al-hxy-ccl.mon.GLB", + "atmos.reffclws.tavg-al-hxy-scl.mon.30S-90S", + "atmos.reffclws.tavg-al-hxy-scl.mon.GLB", + "atmos.reffsclwtop.tavg-u-hxy-scl.mon.GLB", + "atmos.rld.tavg-alh-hxy-u.mon.GLB", + "atmos.rld4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rldcs.tavg-alh-hxy-u.mon.GLB", + "atmos.rldcs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rlds.tavg-u-hxy-u.1hr.GLB", + "atmos.rlds.tavg-u-hxy-u.day.GLB", + "atmos.rlds.tavg-u-hxy-u.mon.30S-90S", + "atmos.rldscs.tavg-u-hxy-u.day.GLB", + "atmos.rldscs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rlu.tavg-alh-hxy-u.mon.GLB", + "atmos.rlu4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rlucs.tavg-alh-hxy-u.mon.GLB", + "atmos.rlucs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rlus.tavg-u-hxy-u.day.GLB", + "atmos.rlus.tavg-u-hxy-u.mon.30S-90S", + "atmos.rluscs.tavg-u-hxy-u.day.GLB", + "atmos.rlut.tavg-u-hxy-u.day.GLB", + "atmos.rlut.tavg-u-hxy-u.mon.30S-90S", + "atmos.rlut4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rlutcs.tavg-u-hxy-u.day.GLB", + "atmos.rlutcs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rlutcs4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rsd.tavg-alh-hxy-u.mon.GLB", + "atmos.rsd4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsdcs.tavg-alh-hxy-u.mon.GLB", + "atmos.rsdcs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsds.tavg-u-hxy-u.1hr.GLB", + "atmos.rsds.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsdscs.tavg-u-hxy-u.day.GLB", + "atmos.rsdscs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsdt.tavg-u-hxy-u.day.GLB", + "atmos.rsdt.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsu.tavg-alh-hxy-u.mon.GLB", + "atmos.rsu4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsucs.tavg-alh-hxy-u.mon.GLB", + "atmos.rsucs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsus.tavg-u-hxy-u.day.GLB", + "atmos.rsus.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsuscs.tavg-u-hxy-u.day.GLB", + "atmos.rsuscs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsut.tavg-u-hxy-u.day.GLB", + "atmos.rsut.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsut4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rsutcs.tavg-u-hxy-u.day.GLB", + "atmos.rsutcs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsutcs4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rtmt.tavg-u-hxy-u.mon.GLB", + "atmos.rv850.tpt-850hPa-hxy-air.6hr.GLB", + "atmos.sci.tavg-u-hxy-u.mon.GLB", + "atmos.scldncl.tavg-u-hxy-scl.mon.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.mon.30S-90S", + "atmos.sfcWind.tmax-h10m-hxy-u.day.GLB", + "atmos.smc.tavg-alh-hxy-u.mon.GLB", + "atmos.ta.tavg-700hPa-hxy-air.day.GLB", + "atmos.ta.tavg-al-hxy-u.mon.30S-90S", + "atmos.ta.tavg-al-hxy-u.mon.GLB", + "atmos.ta.tavg-p19-hxy-air.mon.30S-90S", + "atmos.ta.tavg-p39-hy-air.mon.GLB", + "atmos.ta.tpt-al-hxy-u.6hr.GLB", + "atmos.ta.tpt-p7h-hxy-air.6hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.1hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.mon.30S-90S", + "atmos.tas.tmaxavg-h2m-hxy-u.mon.30S-90S", + "atmos.tas.tminavg-h2m-hxy-u.mon.30S-90S", + "atmos.tnhus.tavg-al-hxy-u.mon.GLB", + "atmos.tnhusa.tavg-al-hxy-u.mon.GLB", + "atmos.tnhusc.tavg-al-hxy-u.mon.GLB", + "atmos.tnhusd.tavg-al-hxy-u.mon.GLB", + "atmos.tnhusmp.tavg-al-hxy-u.mon.GLB", + "atmos.tnhuspbl.tavg-al-hxy-u.mon.GLB", + "atmos.tnhusscp.tavg-al-hxy-u.mon.GLB", + "atmos.tnhusscpbl.tavg-al-hxy-u.mon.GLB", + "atmos.tnt.tavg-al-hxy-u.mon.GLB", + "atmos.tnta.tavg-al-hxy-u.mon.GLB", + "atmos.tntc.tavg-al-hxy-u.mon.GLB", + "atmos.tntd.tavg-al-hxy-u.mon.GLB", + "atmos.tntmp.tavg-al-hxy-u.mon.GLB", + "atmos.tntpbl.tavg-al-hxy-u.mon.GLB", + "atmos.tntr.tavg-al-hxy-u.mon.GLB", + "atmos.tntrl.tavg-al-hxy-u.mon.GLB", + "atmos.tntrlcs.tavg-al-hxy-u.mon.GLB", + "atmos.tntrs.tavg-al-hxy-u.mon.GLB", + "atmos.tntrscs.tavg-al-hxy-u.mon.GLB", + "atmos.tntscp.tavg-al-hxy-u.mon.GLB", + "atmos.tntscpbl.tavg-al-hxy-u.mon.GLB", + "atmos.ts.tavg-u-hxy-u.mon.30S-90S", + "atmos.ts.tpt-u-hxy-u.6hr.GLB", + "atmos.ua.tavg-al-hxy-u.mon.GLB", + "atmos.ua.tavg-p19-hxy-air.mon.30S-90S", + "atmos.ua.tavg-p39-hy-air.mon.GLB", + "atmos.ua.tpt-al-hxy-u.6hr.GLB", + "atmos.ua.tpt-p7h-hxy-air.6hr.GLB", + "atmos.uas.tavg-h10m-hxy-u.mon.30S-90S", + "atmos.uas.tpt-h10m-hxy-u.1hr.GLB", + "atmos.va.tavg-al-hxy-u.mon.GLB", + "atmos.va.tavg-p19-hxy-air.mon.30S-90S", + "atmos.va.tavg-p39-hy-air.mon.GLB", + "atmos.va.tpt-al-hxy-u.6hr.GLB", + "atmos.va.tpt-p7h-hxy-air.6hr.GLB", + "atmos.vas.tavg-h10m-hxy-u.mon.30S-90S", + "atmos.vas.tpt-h10m-hxy-u.1hr.GLB", + "atmos.wap.tavg-500hPa-hxy-air.day.GLB", + "atmos.wap.tavg-p19-hxy-air.mon.30S-90S", + "atmos.zg.tavg-1000hPa-hxy-air.day.GLB", + "atmos.zg.tavg-500hPa-hxy-air.day.GLB", + "atmos.zg.tavg-al-hxy-u.mon.GLB", + "atmos.zg.tavg-p19-hxy-air.mon.30S-90S", + "atmos.zg.tavg-p39-hy-air.mon.GLB", + "atmos.zg.tpt-500hPa-hxy-air.6hr.GLB", + "atmos.zg.tpt-al-hxy-u.6hr.GLB", + "atmos.zg.tpt-p7h-hxy-air.6hr.GLB", + "atmos.ztp.tavg-u-hxy-u.mon.GLB", + "atmosChem.c2h4.tavg-al-hxy-u.mon.GLB", + "atmosChem.c2h5oh.tavg-al-hxy-u.mon.GLB", + "atmosChem.c4h10.tavg-al-hxy-u.mon.GLB", + "atmosChem.cfc11.tavg-u-hm-u.mon.GLB", + "atmosChem.cfc113.tavg-u-hm-u.mon.GLB", + "atmosChem.cfc12.tavg-u-hm-u.mon.GLB", + "atmosChem.ch3oh.tavg-al-hxy-u.mon.GLB", + "atmosChem.ch4.tavg-al-hxy-u.mon.GLB", + "atmosChem.ch4.tavg-p19-hxy-air.mon.GLB", + "atmosChem.ch4.tavg-p39-hy-air.mon.GLB", + "atmosChem.ch4.tavg-u-hm-u.mon.GLB", + "atmosChem.ch4.tclm-p19-hxy-air.mon.GLB", + "atmosChem.ch4.tclm-u-hm-u.mon.GLB", + "atmosChem.ch4losssoil.tavg-u-hxy-u.mon.GLB", + "atmosChem.ch4ref.ti-al-hxy-u.fx.GLB", + "atmosChem.chegph2oo1d.tavg-al-hxy-u.mon.GLB", + "atmosChem.chepnh4.tavg-al-hxy-u.mon.GLB", + "atmosChem.chepno3.tavg-al-hxy-u.mon.GLB", + "atmosChem.dms.tavg-al-hxy-u.mon.30S-90S", + "atmosChem.dms.tavg-al-hxy-u.mon.GLB", + "atmosChem.do3chm.tavg-al-hxy-u.mon.GLB", + "atmosChem.dryh2.tavg-u-hxy-u.mon.GLB", + "atmosChem.dryhno3.tavg-u-hxy-u.mon.GLB", + "atmosChem.drynh3.tavg-u-hxy-u.mon.GLB", + "atmosChem.drynh4.tavg-u-hxy-u.mon.GLB", + "atmosChem.drynoy.tavg-u-hxy-u.mon.GLB", + "atmosChem.e90inst.tpt-al-hxy-u.mon.GLB", + "atmosChem.emiach4.tavg-u-hxy-u.mon.GLB", + "atmosChem.emiavnox.tavg-al-hxy-u.mon.GLB", + "atmosChem.emic2h4.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic2h5oh.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic2h6.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic3h6.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic3h8.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic4h10.tavg-u-hxy-u.mon.GLB", + "atmosChem.emich3oh.tavg-u-hxy-u.mon.GLB", + "atmosChem.emich4.tavg-u-hxy-u.mon.GLB", + "atmosChem.emih2.tavg-u-hxy-u.mon.GLB", + "atmosChem.emilkch4.tavg-u-hxy-u.mon.GLB", + "atmosChem.h2.tavg-al-hxy-u.mon.GLB", + "atmosChem.h2loss.tavg-al-hxy-u.mon.GLB", + "atmosChem.h2prod.tavg-al-hxy-u.mon.GLB", + "atmosChem.hcfc22.tavg-u-hm-u.mon.GLB", + "atmosChem.meanage.tavg-al-hxy-u.mon.GLB", + "atmosChem.meanage.tavg-p39-hy-air.mon.GLB", + "atmosChem.n2o.tavg-al-hxy-u.mon.GLB", + "atmosChem.n2o.tavg-p19-hxy-air.mon.GLB", + "atmosChem.n2o.tavg-p39-hy-air.mon.GLB", + "atmosChem.n2o.tavg-u-hm-u.mon.GLB", + "atmosChem.n2o.tclm-p19-hxy-air.mon.GLB", + "atmosChem.n2o.tclm-u-hm-u.mon.GLB", + "atmosChem.o3.tavg-al-hxy-u.mon.GLB", + "atmosChem.o3.tavg-p19-hxy-air.mon.GLB", + "atmosChem.o3.tavg-p39-hy-air.mon.GLB", + "atmosChem.o3.tclm-p19-hxy-air.mon.GLB", + "atmosChem.o3.tpt-al-hxy-u.mon.GLB", + "atmosChem.o3ref.tclm-al-hxy-u.fx.GLB", + "atmosChem.o3ref.ti-al-hxy-u.fx.GLB", + "atmosChem.o3ste.tavg-al-hxy-u.mon.GLB", + "atmosChem.rlutch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rlutcsch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rlutcso3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rluto3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsutch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsutcsch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsutcso3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsuto3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.stratch4loss.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropch4loss.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropch4lossoh.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropdo3chm.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropo3ste.tavg-al-hxy-u.mon.GLB", + "atmosChem.wethno3.tavg-al-hxy-u.mon.GLB", + "atmosChem.wetnh3.tavg-u-hxy-u.mon.GLB", + "atmosChem.wetnh4.tavg-u-hxy-u.mon.GLB", + "atmosChem.wetno3.tavg-al-hxy-u.mon.GLB", + "atmosChem.wetnoy.tavg-u-hxy-u.mon.GLB", + "land.albc.tavg-u-hxy-veg.mon.GLB", + "land.areacellr.ti-u-hxy-u.fx.GLB", + "land.baresoilFrac.tavg-u-hxy-u.mon.GLB", + "land.burntFractionAll.tavg-u-hxy-u.mon.GLB", + "land.cGeologicStorage.tavg-u-hxy-u.mon.GLB", + "land.cLand.tavg-u-hxy-lnd.mon.GLB", + "land.cLitter.tavg-u-hxy-lnd.mon.GLB", + "land.cnc.tavg-u-hxy-u.mon.GLB", + "land.cProduct.tavg-u-hxy-lnd.mon.GLB", + "land.cropFrac.tavg-u-hxy-u.mon.GLB", + "land.cSoil.tavg-d100cm-hxy-lnd.mon.GLB", + "land.cSoil.tavg-u-hxy-lnd.mon.GLB", + "land.cVeg.tavg-u-hxy-lnd.mon.GLB", + "land.dcw.tavg-u-hxy-lnd.day.GLB", + "land.dslw.tavg-u-hxy-lnd.day.GLB", + "land.evspsblpot.tavg-u-hxy-lnd.day.GLB", + "land.evspsblpot.tavg-u-hxy-lnd.mon.GLB", + "land.fAnthDisturb.tavg-u-hxy-lnd.mon.GLB", + "land.fBNF.tavg-u-hxy-lnd.mon.GLB", + "land.fCLandToOcean.tavg-u-hxy-lnd.mon.GLB", + "land.fDeforestToAtmos.tavg-u-hxy-lnd.mon.GLB", + "land.fDeforestToProduct.tavg-u-hxy-lnd.mon.GLB", + "land.fFire.tavg-u-hxy-lnd.mon.GLB", + "land.fFireAll.tavg-u-hxy-lnd.mon.GLB", + "land.fFireNat.tavg-u-hxy-lnd.mon.GLB", + "land.fHarvestToAtmos.tavg-u-hxy-lnd.mon.GLB", + "land.fHarvestToGeologicStorage.tavg-u-hxy-lnd.mon.GLB", + "land.fHarvestToProduct.tavg-u-hxy-lnd.mon.GLB", + "land.fLitterSoil.tavg-u-hxy-lnd.mon.GLB", + "land.fN2O.tavg-u-hxy-lnd.mon.GLB", + "land.fNAnthDisturb.tavg-u-hxy-lnd.mon.GLB", + "land.fNdep.tavg-u-hxy-lnd.mon.GLB", + "land.fNfert.tavg-u-hxy-lnd.mon.GLB", + "land.fNLandToOcean.tavg-u-hxy-lnd.mon.GLB", + "land.fNLitterSoil.tavg-u-hxy-lnd.mon.GLB", + "land.fNloss.tavg-u-hxy-lnd.mon.GLB", + "land.fNnetmin.tavg-u-hxy-lnd.mon.GLB", + "land.fNOx.tavg-u-hxy-lnd.mon.GLB", + "land.fNProduct.tavg-u-hxy-lnd.mon.GLB", + "land.fNup.tavg-u-hxy-lnd.mon.GLB", + "land.fNVegLitter.tavg-u-hxy-lnd.mon.GLB", + "land.fNVegSoil.tavg-u-hxy-lnd.mon.GLB", + "land.fProductDecomp.tavg-u-hxy-lnd.mon.GLB", + "land.fVegLitter.tavg-u-hxy-lnd.mon.GLB", + "land.fVegSoil.tavg-u-hxy-lnd.mon.GLB", + "land.gpp.tavg-u-hxy-lnd.mon.GLB", + "land.grassFrac.tavg-u-hxy-u.mon.GLB", + "land.landCoverFrac.tavg-u-hxy-u.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.day.GLB", + "land.mrrob.tavg-u-hxy-lnd.day.GLB", + "land.mrros.tavg-u-hxy-lnd.day.GLB", + "land.mrsfl.tavg-sl-hxy-lnd.day.GLB", + "land.mrsfl.tavg-sl-hxy-lnd.mon.GLB", + "land.mrsll.tavg-sl-hxy-lnd.day.GLB", + "land.mrsll.tavg-sl-hxy-lnd.mon.GLB", + "land.mrso.tavg-u-hxy-lnd.day.GLB", + "land.mrsol.tavg-d10cm-hxy-lnd.day.GLB", + "land.mrsol.tavg-sl-hxy-lnd.day.GLB", + "land.mrsol.tavg-sl-hxy-lnd.mon.GLB", + "land.mrsow.tavg-u-hxy-lnd.day.GLB", + "land.mrtws.tavg-u-hxy-lnd.day.GLB", + "land.mrtws.tavg-u-hxy-lnd.mon.GLB", + "land.nbp.tavg-u-hxy-lnd.mon.GLB", + "land.nep.tavg-u-hxy-lnd.mon.GLB", + "land.nLand.tavg-u-hxy-lnd.mon.GLB", + "land.nLitter.tavg-u-hxy-lnd.mon.GLB", + "land.nMineral.tavg-u-hxy-lnd.mon.GLB", + "land.npp.tavg-u-hxy-lnd.mon.GLB", + "land.nProduct.tavg-u-hxy-lnd.mon.GLB", + "land.nSoil.tavg-u-hxy-lnd.mon.GLB", + "land.nVeg.tavg-u-hxy-lnd.mon.GLB", + "land.pastureFrac.tavg-u-hxy-u.mon.GLB", + "land.prveg.tavg-u-hxy-lnd.mon.GLB", + "land.ra.tavg-u-hxy-lnd.mon.GLB", + "land.residualFrac.tavg-u-hxy-u.mon.GLB", + "land.rh.tavg-u-hxy-lnd.mon.GLB", + "land.rivi.tavg-u-hxy-lnd.day.GLB", + "land.rivo.tavg-u-hxy-lnd.day.GLB", + "land.rsds.tavg-u-hxy-sn.mon.GLB", + "land.rsus.tavg-u-hxy-sn.mon.GLB", + "land.shrubFrac.tavg-u-hxy-u.mon.GLB", + "land.tas.tavg-u-hxy-u.1hr.GLB", + "land.tran.tavg-u-hxy-lnd.mon.GLB", + "land.treeFrac.tavg-u-hxy-u.mon.GLB", + "land.tsl.tavg-sl-hxy-lnd.mon.GLB", + "land.tslsi.tavg-u-hxy-u.day.GLB", + "land.vegFrac.tavg-u-hxy-u.mon.GLB", + "land.vegHeight.tavg-u-hxy-veg.mon.GLB", + "land.wetlandCH4.tavg-u-hxy-lnd.mon.GLB", + "land.wtd.tavg-u-hxy-lnd.day.GLB", + "landIce.sbl.tavg-u-hxy-u.mon.GLB", + "landIce.snc.tavg-u-hxy-lnd.day.GLB", + "landIce.snd.tavg-u-hxy-lnd.mon.GLB", + "landIce.snw.tavg-u-hxy-lnd.day.GLB", + "ocean.absscint.tavg-op4-hxy-sea.mon.GLB", + "ocean.agessc.tavg-ol-hxy-sea.mon.GLB", + "ocean.bigthetao.tavg-ol-hm-sea.mon.GLB", + "ocean.bigthetao.tavg-ol-hxy-sea.dec.GLB", + "ocean.bigthetao.tavg-op20bar-hxy-sea.day.GLB", + "ocean.chcint.tavg-op4-hxy-sea.mon.GLB", + "ocean.ficeberg.tavg-ol-hxy-sea.mon.GLB", + "ocean.friver.tavg-u-hxy-sea.mon.GLB", + "ocean.hfbasin.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpmadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpmdiff.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpsmadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfds.tavg-u-hxy-sea.mon.30S-90S", + "ocean.hfx.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfx.tavg-u-hxy-sea.day.GLB", + "ocean.hfx.tavg-u-hxy-sea.mon.GLB", + "ocean.hfy.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfy.tavg-u-hxy-sea.day.GLB", + "ocean.hfy.tavg-u-hxy-sea.mon.GLB", + "ocean.htovgyre.tavg-u-hyb-sea.mon.GLB", + "ocean.htovovrt.tavg-u-hyb-sea.mon.GLB", + "ocean.masscello.tavg-ol-hxy-sea.dec.GLB", + "ocean.masso.tavg-u-hm-sea.dec.GLB", + "ocean.masso.tavg-u-hm-sea.mon.GLB", + "ocean.mlotst.tavg-u-hxy-sea.day.GLB", + "ocean.mlotst.tavg-u-hxy-sea.mon.30S-90S", + "ocean.mlotst.tmax-u-hxy-sea.mon.GLB", + "ocean.mlotst.tmin-u-hxy-sea.mon.GLB", + "ocean.mpw.tavg-u-hxy-sea.mon.GLB", + "ocean.mpw.tpt-u-hxy-sea.3hr.GLB", + "ocean.mpwswell.tavg-u-hxy-sea.mon.GLB", + "ocean.mpwswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.mpwwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.mpwwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.msftbarot.tavg-u-hxy-sea.mon.GLB", + "ocean.msftm.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftm.tavg-rho-hyb-sea.mon.GLB", + "ocean.msfty.tavg-ol-ht-sea.mon.GLB", + "ocean.msfty.tavg-rho-ht-sea.mon.GLB", + "ocean.obvfsq.tavg-ol-hxy-sea.mon.GLB", + "ocean.pbo.tavg-u-hxy-sea.mon.GLB", + "ocean.pfscint.tavg-op4-hxy-sea.mon.GLB", + "ocean.phcint.tavg-op4-hxy-sea.mon.GLB", + "ocean.pso.tavg-u-hxy-sea.mon.GLB", + "ocean.scint.tavg-op4-hxy-sea.mon.GLB", + "ocean.sduo.tavg-u-hxy-sea.mon.GLB", + "ocean.sduo.tpt-u-hxy-sea.3hr.GLB", + "ocean.sdvo.tavg-u-hxy-sea.mon.GLB", + "ocean.sdvo.tpt-u-hxy-sea.3hr.GLB", + "ocean.sfx.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfx.tavg-u-hxy-sea.mon.GLB", + "ocean.sfy.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfy.tavg-u-hxy-sea.mon.GLB", + "ocean.sltbasin.tavg-u-hyb-sea.mon.GLB", + "ocean.sltovgyre.tavg-u-hyb-sea.mon.GLB", + "ocean.sltovovrt.tavg-u-hyb-sea.mon.GLB", + "ocean.so.tavg-ol-hm-sea.mon.GLB", + "ocean.so.tavg-ol-hxy-sea.dec.GLB", + "ocean.so.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.sob.tavg-u-hxy-sea.mon.GLB", + "ocean.sos.tavg-u-hm-sea.mon.30S-90S", + "ocean.sos.tavg-u-hm-sea.mon.GLB", + "ocean.swh.tavg-u-hxy-sea.mon.GLB", + "ocean.swh.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhmax.tmax-u-hxy-sea.mon.GLB", + "ocean.swhmax.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhswell.tavg-u-hxy-sea.mon.GLB", + "ocean.swhswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.swhwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.tauuo.tavg-u-hxy-sea.3hr.GLB", + "ocean.tauuo.tavg-u-hxy-sea.dec.GLB", + "ocean.tauvo.tavg-u-hxy-sea.3hr.GLB", + "ocean.tauvo.tavg-u-hxy-sea.dec.GLB", + "ocean.thetao.tavg-ol-hm-sea.mon.GLB", + "ocean.thetao.tavg-ol-hxy-sea.dec.GLB", + "ocean.thetao.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.thetao.tavg-op20bar-hxy-sea.day.GLB", + "ocean.thkcello.tavg-ol-hxy-sea.dec.GLB", + "ocean.tob.tavg-u-hxy-sea.mon.GLB", + "ocean.tos.tavg-u-hm-sea.mon.GLB", + "ocean.tos.tavg-u-hxy-sea.mon.30S-90S", + "ocean.tos.tpt-u-hxy-sea.3hr.GLB", + "ocean.tossq.tavg-u-hxy-sea.day.GLB", + "ocean.umo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.uo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.uos.tavg-u-hxy-sea.day.GLB", + "ocean.vmo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.vo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.volcello.tavg-ol-hxy-sea.dec.GLB", + "ocean.volcello.tavg-ol-hxy-sea.mon.GLB", + "ocean.volcello.tavg-ol-hxy-sea.yr.GLB", + "ocean.volcello.ti-ol-hxy-sea.fx.GLB", + "ocean.volo.tavg-u-hm-sea.dec.GLB", + "ocean.volo.tavg-u-hm-sea.mon.GLB", + "ocean.vos.tavg-u-hxy-sea.day.GLB", + "ocean.wdir.tavg-u-hxy-sea.mon.GLB", + "ocean.wdir.tpt-u-hxy-sea.3hr.GLB", + "ocean.wdirswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wdirswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wdirwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wdirwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.wfcorr.tavg-u-hxy-sea.mon.GLB", + "ocean.wfo.tavg-u-hxy-sea.mon.GLB", + "ocean.wmo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.wo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.wpdir.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdir.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpdirswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdirswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpdirwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdirwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpp.tavg-u-hxy-sea.mon.GLB", + "ocean.wpp.tpt-u-hxy-sea.3hr.GLB", + "ocean.wppswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wppswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wppwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wppwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.zos.tavg-u-hxy-sea.mon.30S-90S", + "ocean.zossq.tavg-u-hxy-sea.mon.GLB", + "ocean.zostoga.tavg-u-hm-sea.day.GLB", + "ocnBgchem.bacc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.calc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chl.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chl.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chlcalc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chldiat.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chldiat.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chldiaz.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chldiaz.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chlmisc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chlmisc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chlpico.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chlpico.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.detoc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dfe.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.dfe.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissic.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.dissic.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissoc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dmso.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.expc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.expcalc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.fgco2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fsfe.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fsn.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.graz.tavg-ol-hxy-sea.mon.30S-90S", + "ocnBgchem.icfriver.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intdic.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intdoc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intparag.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbfe.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbn.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbp.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbsi.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpcalcite.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpn2.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpoc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpp.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpp.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppcalc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppdiat.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppdiaz.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppmisc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppnitrate.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpppico.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.nh4.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.nh4.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.no3.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.no3.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.o2.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.ocfriver.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.ph.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.ph.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phyc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phyc.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.phyc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phycalc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phycalc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phydiat.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phydiat.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phydiaz.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phydiaz.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phymisc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phymisc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phypico.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phypico.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.po4.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.pp.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.si.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.spco2.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.spco2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.talk.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zmeso.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zmeso.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zmicro.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zmicro.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zmisc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zmisc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zooc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zooc.tavg-ol-hxy-sea.mon.GLB", + "seaIce.evspsbl.tavg-u-hxy-si.mon.GLB", + "seaIce.prra.tavg-u-hxy-si.mon.GLB", + "seaIce.prsn.tavg-u-hxy-si.mon.GLB", + "seaIce.rlds.tavg-u-hxy-si.mon.GLB", + "seaIce.rlus.tavg-u-hxy-si.mon.GLB", + "seaIce.rsds.tavg-u-hxy-si.day.GLB", + "seaIce.rsds.tavg-u-hxy-si.mon.GLB", + "seaIce.rsus.tavg-u-hxy-si.day.GLB", + "seaIce.rsus.tavg-u-hxy-si.mon.GLB", + "seaIce.sbl.tavg-u-hxy-si.mon.GLB", + "seaIce.siage.tavg-u-hxy-si.day.GLB", + "seaIce.siage.tavg-u-hxy-si.mon.30S-90S", + "seaIce.siarea.tavg-u-hm-u.mon.NH", + "seaIce.siarea.tavg-u-hm-u.mon.SH", + "seaIce.siconc.tavg-u-hxy-u.mon.30S-90S", + "seaIce.siconca.tavg-u-hxy-u.day.GLB", + "seaIce.siconca.tavg-u-hxy-u.mon.GLB", + "seaIce.sidconcdyn.tavg-u-hxy-sea.mon.GLB", + "seaIce.sidconcth.tavg-u-hxy-sea.mon.GLB", + "seaIce.sidmassdyn.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthsi.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthwat.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmeltbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmeltlat.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmelttop.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassth.tavg-u-hxy-si.mon.GLB", + "seaIce.sieqthick.tavg-u-hxy-si.mon.GLB", + "seaIce.siextent.tavg-u-hm-u.mon.NH", + "seaIce.siextent.tavg-u-hm-u.mon.SH", + "seaIce.siflcondbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflcondtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sifllattop.tavg-u-hxy-si.mon.GLB", + "seaIce.siflsensbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflsenstop.tavg-u-hxy-si.mon.GLB", + "seaIce.siflswdbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sihc.tavg-u-hxy-sea.mon.GLB", + "seaIce.sisndmassdyn.tavg-u-hxy-si.mon.GLB", + "seaIce.sisndmasssi.tavg-u-hxy-si.mon.GLB", + "seaIce.sisndmasswind.tavg-u-hxy-si.mon.GLB", + "seaIce.sisnhc.tavg-u-hxy-si.mon.GLB", + "seaIce.sisnmass.tavg-u-hm-u.mon.NH", + "seaIce.sisnmass.tavg-u-hm-u.mon.SH", + "seaIce.sispeed.tavg-u-hxy-si.day.GLB", + "seaIce.sispeed.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-si.day.GLB", + "seaIce.sithick.tavg-u-hxy-si.mon.30S-90S", + "seaIce.sitimefrac.tavg-u-hxy-sea.day.GLB", + "seaIce.sitimefrac.tavg-u-hxy-sea.mon.30S-90S", + "seaIce.siu.tavg-u-hxy-si.day.GLB", + "seaIce.siu.tavg-u-hxy-si.mon.30S-90S", + "seaIce.siv.tavg-u-hxy-si.day.GLB", + "seaIce.siv.tavg-u-hxy-si.mon.30S-90S", + "seaIce.sivol.tavg-u-hm-u.mon.NH", + "seaIce.sivol.tavg-u-hm-u.mon.SH", + "seaIce.snc.tavg-u-hxy-si.mon.GLB", + "seaIce.snd.tavg-u-hxy-sn.day.GLB", + "seaIce.snd.tavg-u-hxy-sn.mon.30S-90S", + "seaIce.snm.tavg-u-hxy-si.mon.GLB", + "seaIce.snw.tavg-u-hxy-si.mon.GLB", + "seaIce.ts.tavg-u-hxy-si.day.GLB", + "seaIce.ts.tavg-u-hxy-si.mon.30S-90S" + ], + "Medium": [ + "atmos.hurs.tpt-h2m-hxy-u.3hr.GLB", + "atmos.noaahi2m.tavg-h2m-hxy-u.day.GLB", + "atmos.noaahi2m.tmax-h2m-hxy-u.day.GLB", + "atmos.ps.tpt-u-hxy-u.3hr.GLB", + "atmos.rlds.tavg-u-hxy-u.3hr.GLB", + "atmos.rls.tavg-u-hxy-u.day.GLB", + "atmos.rls.tavg-u-hxy-u.mon.GLB", + "atmos.rsds.tavg-u-hxy-u.3hr.GLB", + "atmos.rss.tavg-u-hxy-u.day.GLB", + "atmos.rss.tavg-u-hxy-u.mon.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.3hr.GLB", + "atmos.ua.tavg-h100m-hxy-u.3hr.GLB", + "atmos.va.tavg-h100m-hxy-u.3hr.GLB", + "atmos.wbgt.tavg-h2m-hxy-u.day.GLB", + "atmos.wbgt.tmax-h2m-hxy-u.day.GLB", + "land.cLeaf.tavg-u-hxy-lnd.mon.GLB", + "land.cLitterCwd.tavg-u-hxy-lnd.mon.GLB", + "land.cLitterSubSurf.tavg-u-hxy-lnd.mon.GLB", + "land.cLitterSurf.tavg-u-hxy-lnd.mon.GLB", + "land.cOther.tavg-u-hxy-lnd.mon.GLB", + "land.cRoot.tavg-u-hxy-lnd.mon.GLB", + "land.cropFracC3.tavg-u-hxy-u.mon.GLB", + "land.cropFracC4.tavg-u-hxy-u.mon.GLB", + "land.cSoil.tavg-sl-hxy-lnd.mon.GLB", + "land.cSoilPools.tavg-u-hxy-lnd.mon.GLB", + "land.cStem.tavg-u-hxy-lnd.mon.GLB", + "land.cVeg.tavg-u-hxy-ng.mon.GLB", + "land.cVeg.tavg-u-hxy-shb.mon.GLB", + "land.cVeg.tavg-u-hxy-tree.mon.GLB", + "land.fLitterFire.tavg-u-hxy-lnd.mon.GLB", + "land.fNgas.tavg-u-hxy-lnd.mon.GLB", + "land.fNgasFire.tavg-u-hxy-lnd.mon.GLB", + "land.fNgasNonFire.tavg-u-hxy-lnd.mon.GLB", + "land.fNleach.tavg-u-hxy-lnd.mon.GLB", + "land.fVegFire.tavg-u-hxy-lnd.mon.GLB", + "land.fVegLitterMortality.tavg-u-hxy-lnd.mon.GLB", + "land.fVegLitterSenescence.tavg-u-hxy-lnd.mon.GLB", + "land.fVegSoilMortality.tavg-u-hxy-lnd.mon.GLB", + "land.fVegSoilSenescence.tavg-u-hxy-lnd.mon.GLB", + "land.gpp.tavg-u-hxy-ng.mon.GLB", + "land.gpp.tavg-u-hxy-shb.mon.GLB", + "land.gpp.tavg-u-hxy-tree.mon.GLB", + "land.grassFracC3.tavg-u-hxy-u.mon.GLB", + "land.grassFracC4.tavg-u-hxy-u.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.3hr.GLB", + "land.mrros.tavg-u-hxy-lnd.3hr.GLB", + "land.mrsol.tpt-d10cm-hxy-lnd.3hr.GLB", + "land.nLeaf.tavg-u-hxy-lnd.mon.GLB", + "land.nLitterCwd.tavg-u-hxy-lnd.mon.GLB", + "land.nLitterSubSurf.tavg-u-hxy-lnd.mon.GLB", + "land.nLitterSurf.tavg-u-hxy-lnd.mon.GLB", + "land.nMineralNH4.tavg-u-hxy-lnd.mon.GLB", + "land.nMineralNO3.tavg-u-hxy-lnd.mon.GLB", + "land.nOther.tavg-u-hxy-lnd.mon.GLB", + "land.npp.tavg-u-hxy-ng.mon.GLB", + "land.npp.tavg-u-hxy-shb.mon.GLB", + "land.npp.tavg-u-hxy-tree.mon.GLB", + "land.nppLeaf.tavg-u-hxy-lnd.mon.GLB", + "land.nppOther.tavg-u-hxy-lnd.mon.GLB", + "land.nppRoot.tavg-u-hxy-lnd.mon.GLB", + "land.nppStem.tavg-u-hxy-lnd.mon.GLB", + "land.nRoot.tavg-u-hxy-lnd.mon.GLB", + "land.nStem.tavg-u-hxy-lnd.mon.GLB", + "land.pastureFracC3.tavg-u-hxy-u.mon.GLB", + "land.pastureFracC4.tavg-u-hxy-u.mon.GLB", + "land.ra.tavg-u-hxy-ng.mon.GLB", + "land.ra.tavg-u-hxy-shb.mon.GLB", + "land.ra.tavg-u-hxy-tree.mon.GLB", + "land.raLeaf.tavg-u-hxy-lnd.mon.GLB", + "land.raOther.tavg-u-hxy-lnd.mon.GLB", + "land.raRoot.tavg-u-hxy-lnd.mon.GLB", + "land.raStem.tavg-u-hxy-lnd.mon.GLB", + "land.rh.tavg-u-hxy-ng.mon.GLB", + "land.rh.tavg-u-hxy-shb.mon.GLB", + "land.rh.tavg-u-hxy-tree.mon.GLB", + "land.rhLitter.tavg-u-hxy-lnd.mon.GLB", + "land.rhSoil.tavg-u-hxy-lnd.mon.GLB", + "land.treeFracBdlDcd.tavg-u-hxy-u.mon.GLB", + "land.treeFracBdlEvg.tavg-u-hxy-u.mon.GLB", + "land.treeFracNdlDcd.tavg-u-hxy-u.mon.GLB", + "land.treeFracNdlEvg.tavg-u-hxy-u.mon.GLB", + "land.vegHeight.tavg-u-hxy-ng.mon.GLB", + "land.vegHeight.tavg-u-hxy-shb.mon.GLB", + "land.vegHeight.tavg-u-hxy-tree.mon.GLB", + "land.wetlandCH4cons.tavg-u-hxy-lnd.mon.GLB", + "land.wetlandCH4prod.tavg-u-hxy-lnd.mon.GLB", + "land.wetlandFrac.tavg-u-hxy-u.mon.GLB", + "ocean.evspsbl.tavg-u-hxy-ifs.mon.GLB", + "ocean.ficeberg.tavg-u-hxy-sea.mon.GLB", + "ocean.hfacrossline.tavg-u-ht-sea.mon.GLB", + "ocean.hfevapds.tavg-u-hxy-ifs.mon.GLB", + "ocean.hfibthermds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfibthermds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfrainds.tavg-u-hxy-ifs.mon.GLB", + "ocean.hfrunoffds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfrunoffds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfsnthermds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfsnthermds.tavg-u-hxy-sea.mon.GLB", + "ocean.mfo.tavg-u-ht-sea.mon.GLB", + "ocean.sf6.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfacrossline.tavg-u-ht-sea.mon.GLB", + "ocean.sfdsi.tavg-u-hxy-sea.mon.GLB", + "ocean.sfriver.tavg-u-hxy-sea.mon.GLB", + "ocean.siflfwbot.tavg-u-hxy-sea.mon.GLB", + "ocean.so.tavg-ol-hxy-sea.day.GLB", + "ocean.tnkebto.tavg-u-hxy-sea.yr.GLB", + "ocean.vsf.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfcorr.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfevap.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfpr.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfriver.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfsit.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.arag.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.arag.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.calc.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.calc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chl.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.chlcalc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dmso.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.epn.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.epp.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.expc.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.expcalc.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.fgdms.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fric.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.froc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.graz.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.intppcalc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppdiat.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppdiaz.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppmisc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppnitrate.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intpppico.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.o2.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.ph.tavg-op20bar-hxy-sea.day.GLB", + "seaIce.sfdsi.tavg-u-hxy-si.mon.GLB", + "seaIce.siage.tavg-u-hxy-si.mon.GLB", + "seaIce.siarea.tavg-u-hm-u.day.NH", + "seaIce.siarea.tavg-u-hm-u.day.SH", + "seaIce.siareaacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.sicompstren.tavg-u-hxy-si.mon.GLB", + "seaIce.sidivvel.tpt-u-hxy-si.mon.GLB", + "seaIce.sidmasstranx.tavg-u-hxy-u.mon.GLB", + "seaIce.sidmasstrany.tavg-u-hxy-u.mon.GLB", + "seaIce.sidragbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidragtop.tavg-u-hxy-si.mon.GLB", + "seaIce.siextent.tavg-u-hm-u.day.NH", + "seaIce.siextent.tavg-u-hm-u.day.SH", + "seaIce.sifb.tavg-u-hxy-si.mon.GLB", + "seaIce.siflfwbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflfwdrain.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcecoriolx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcecorioly.tavg-u-hxy-si.mon.GLB", + "seaIce.siforceintstrx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforceintstry.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcetiltx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcetilty.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdconc.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdsnconc.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdsnthick.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdthick.tavg-u-hxy-si.mon.GLB", + "seaIce.simassacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.simpconc.tavg-u-hxy-si.mon.GLB", + "seaIce.simpeffconc.tavg-u-hxy-si.mon.GLB", + "seaIce.simprefrozen.tavg-u-hxy-simp.mon.GLB", + "seaIce.simpthick.tavg-u-hxy-simp.mon.GLB", + "seaIce.sirdgconc.tavg-u-hxy-si.mon.GLB", + "seaIce.sisali.tavg-u-hxy-si.mon.GLB", + "seaIce.sisaltmass.tavg-u-hxy-si.mon.GLB", + "seaIce.sishearvel.tpt-u-hxy-si.mon.GLB", + "seaIce.sisnmass.tavg-u-hm-u.day.NH", + "seaIce.sisnmass.tavg-u-hm-u.day.SH", + "seaIce.sisnmassacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.sistressave.tpt-u-hxy-si.mon.GLB", + "seaIce.sistressmax.tpt-u-hxy-si.mon.GLB", + "seaIce.sistrxdtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sistrxubot.tavg-u-hxy-si.mon.GLB", + "seaIce.sistrydtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sistryubot.tavg-u-hxy-si.mon.GLB", + "seaIce.sitempbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sitempsnic.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-sir.mon.GLB", + "seaIce.sivol.tavg-u-hm-u.day.NH", + "seaIce.sivol.tavg-u-hm-u.day.SH" + ], + "Low": [ + "aerosol.ccldncl.tavg-u-hxy-ccl.day.GLB", + "aerosol.sfpm1.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.sfpm10.tavg-h2m-hxy-u.1hr.GLB", + "atmos.cldnci.tavg-u-hxy-cl.day.GLB", + "atmos.cldnvi.tavg-u-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.1hr.GLB", + "atmos.loadbc.tavg-u-hxy-u.day.GLB", + "atmos.loaddust.tavg-u-hxy-u.day.GLB", + "atmos.loadnh4.tavg-u-hxy-u.day.GLB", + "atmos.loadno3.tavg-u-hxy-u.day.GLB", + "atmos.loadoa.tavg-u-hxy-u.day.GLB", + "atmos.loadpoa.tavg-u-hxy-u.day.GLB", + "atmos.loadso4.tavg-u-hxy-u.day.GLB", + "atmos.loadsoa.tavg-u-hxy-u.day.GLB", + "atmos.loadss.tavg-u-hxy-u.day.GLB", + "atmos.reffcclwtop.tavg-u-hxy-ccl.day.GLB", + "atmos.reffsclwtop.tavg-u-hxy-scl.day.GLB", + "atmos.rsdscsdiff.tavg-u-hxy-u.day.GLB", + "atmos.rsdsdiff.tavg-u-hxy-u.day.GLB", + "atmos.scldncl.tavg-u-hxy-scl.day.GLB", + "atmos.zfull.ti-al-hxy-u.fx.GLB", + "atmosChem.drynh3.tavg-u-hxy-u.day.GLB", + "atmosChem.drynh4.tavg-u-hxy-u.day.GLB", + "atmosChem.drynoy.tavg-u-hxy-u.day.GLB", + "atmosChem.wetnh3.tavg-u-hxy-u.day.GLB", + "atmosChem.wetnh4.tavg-u-hxy-u.day.GLB", + "atmosChem.wetnoy.tavg-u-hxy-u.day.GLB", + "land.c13Land.tavg-u-hxy-lnd.mon.GLB", + "land.c13Litter.tavg-u-hxy-lnd.mon.GLB", + "land.c13Soil.tavg-u-hxy-lnd.mon.GLB", + "land.c13Veg.tavg-u-hxy-lnd.mon.GLB", + "land.c14Land.tavg-u-hxy-lnd.mon.GLB", + "land.c14Litter.tavg-u-hxy-lnd.mon.GLB", + "land.c14Soil.tavg-u-hxy-lnd.mon.GLB", + "land.c14Veg.tavg-u-hxy-lnd.mon.GLB", + "land.gppc13.tavg-u-hxy-lnd.mon.GLB", + "land.gppc14.tavg-u-hxy-lnd.mon.GLB", + "land.netAtmosLandC13Flux.tavg-u-hxy-lnd.mon.GLB", + "land.netAtmosLandC14Flux.tavg-u-hxy-lnd.mon.GLB", + "land.rac13.tavg-u-hxy-lnd.mon.GLB", + "land.rac14.tavg-u-hxy-lnd.mon.GLB", + "land.rhc13.tavg-u-hxy-lnd.mon.GLB", + "land.rhc14.tavg-u-hxy-lnd.mon.GLB", + "ocean.difmxybo.tavg-ol-hxy-sea.yr.GLB", + "ocean.difmxylo.tavg-ol-hxy-sea.yr.GLB", + "ocean.diftrblo.tavg-ol-hxy-sea.yr.GLB", + "ocean.diftrelo.tavg-ol-hxy-sea.yr.GLB", + "ocean.difvho.tavg-ol-hxy-sea.yr.GLB", + "ocean.difvso.tavg-ol-hxy-sea.yr.GLB", + "ocean.dispkexyfo.tavg-u-hxy-sea.yr.GLB", + "ocean.dxto.ti-u-hxy-u.fx.GLB", + "ocean.dxuo.ti-u-hxy-u.fx.GLB", + "ocean.dxvo.ti-u-hxy-u.fx.GLB", + "ocean.dyto.ti-u-hxy-u.fx.GLB", + "ocean.dyuo.ti-u-hxy-u.fx.GLB", + "ocean.dyvo.ti-u-hxy-u.fx.GLB", + "ocean.mlotstsq.tavg-u-hxy-sea.mon.GLB", + "ocean.msftmmpa.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftmmpa.tavg-rho-hyb-sea.mon.GLB", + "ocean.msftmsmpa.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftypa.tavg-ol-ht-sea.mon.GLB", + "ocean.msftypa.tavg-rho-ht-sea.mon.GLB", + "ocean.ocontempdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontempmint.tavg-u-hxy-sea.yr.GLB", + "ocean.ocontemppadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemppmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemppsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemprmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemptend.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottempdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottempmint.tavg-u-hxy-sea.yr.GLB", + "ocean.opottemppadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemppmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemppsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemprmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemptend.tavg-ol-hxy-sea.dec.GLB", + "ocean.osaltdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpsmadvect.tavg-ol-hxy-sea.mon.GLB", + "ocean.osaltpsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltrmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osalttend.tavg-ol-hxy-sea.yr.GLB", + "ocean.rsdoabsorb.tavg-ol-hxy-sea.yr.GLB", + "ocean.somint.tavg-u-hxy-sea.yr.GLB", + "ocean.sossq.tavg-u-hxy-sea.mon.GLB", + "ocean.thkcelluo.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcellvo.tavg-ol-hxy-sea.mon.GLB", + "ocean.tnpeo.tavg-u-hxy-sea.yr.GLB", + "ocean.tossq.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.dissi13c.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.dissi13c.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissi14c.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissi14cabio.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.dissi14cabio.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.fg13co2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fg14co2abio.tavg-u-hxy-sea.mon.GLB" + ] + }, + "dcppA-assim": { + "Core": [ + "atmos.areacella.ti-u-hxy-u.fx.GLB", + "atmos.cl.tavg-al-hxy-u.mon.GLB", + "atmos.cli.tavg-al-hxy-u.mon.GLB", + "atmos.clivi.tavg-u-hxy-u.mon.GLB", + "atmos.clt.tavg-u-hxy-u.day.GLB", + "atmos.clt.tavg-u-hxy-u.mon.GLB", + "atmos.clw.tavg-al-hxy-u.mon.GLB", + "atmos.clwvi.tavg-u-hxy-u.mon.GLB", + "atmos.evspsbl.tavg-u-hxy-u.mon.GLB", + "atmos.hfls.tavg-u-hxy-u.mon.GLB", + "atmos.hfss.tavg-u-hxy-u.mon.GLB", + "atmos.hur.tavg-p19-hxy-air.mon.GLB", + "atmos.hur.tavg-p19-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.6hr.GLB", + "atmos.hurs.tavg-h2m-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.mon.GLB", + "atmos.hus.tavg-p19-hxy-u.day.GLB", + "atmos.hus.tavg-p19-hxy-u.mon.GLB", + "atmos.huss.tavg-h2m-hxy-u.day.GLB", + "atmos.huss.tavg-h2m-hxy-u.mon.GLB", + "atmos.huss.tpt-h2m-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.1hr.GLB", + "atmos.pr.tavg-u-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.day.GLB", + "atmos.pr.tavg-u-hxy-u.mon.GLB", + "atmos.prc.tavg-u-hxy-u.mon.GLB", + "atmos.prsn.tavg-u-hxy-u.mon.GLB", + "atmos.prw.tavg-u-hxy-u.mon.GLB", + "atmos.ps.tavg-u-hxy-u.day.GLB", + "atmos.ps.tavg-u-hxy-u.mon.GLB", + "atmos.psl.tavg-u-hxy-u.day.GLB", + "atmos.psl.tavg-u-hxy-u.mon.GLB", + "atmos.rlds.tavg-u-hxy-u.mon.GLB", + "atmos.rldscs.tavg-u-hxy-u.mon.GLB", + "atmos.rlus.tavg-u-hxy-u.mon.GLB", + "atmos.rluscs.tavg-u-hxy-u.mon.GLB", + "atmos.rlut.tavg-u-hxy-u.mon.GLB", + "atmos.rlutcs.tavg-u-hxy-u.mon.GLB", + "atmos.rsds.tavg-u-hxy-u.day.GLB", + "atmos.rsds.tavg-u-hxy-u.mon.GLB", + "atmos.rsdscs.tavg-u-hxy-u.mon.GLB", + "atmos.rsdt.tavg-u-hxy-u.mon.GLB", + "atmos.rsus.tavg-u-hxy-u.mon.GLB", + "atmos.rsuscs.tavg-u-hxy-u.mon.GLB", + "atmos.rsut.tavg-u-hxy-u.mon.GLB", + "atmos.rsutcs.tavg-u-hxy-u.mon.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.day.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.mon.GLB", + "atmos.sftlf.ti-u-hxy-u.fx.GLB", + "atmos.ta.tavg-p19-hxy-air.day.GLB", + "atmos.ta.tavg-p19-hxy-air.mon.GLB", + "atmos.ta.tpt-p3-hxy-air.6hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.day.GLB", + "atmos.tas.tavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tmax-h2m-hxy-u.day.GLB", + "atmos.tas.tmaxavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tmin-h2m-hxy-u.day.GLB", + "atmos.tas.tminavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tpt-h2m-hxy-u.3hr.GLB", + "atmos.tauu.tavg-u-hxy-u.mon.GLB", + "atmos.tauv.tavg-u-hxy-u.mon.GLB", + "atmos.ts.tavg-u-hxy-u.mon.GLB", + "atmos.ua.tavg-p19-hxy-air.day.GLB", + "atmos.ua.tavg-p19-hxy-air.mon.GLB", + "atmos.ua.tpt-p3-hxy-air.6hr.GLB", + "atmos.uas.tavg-h10m-hxy-u.day.GLB", + "atmos.uas.tavg-h10m-hxy-u.mon.GLB", + "atmos.uas.tpt-h10m-hxy-u.3hr.GLB", + "atmos.va.tavg-p19-hxy-air.day.GLB", + "atmos.va.tavg-p19-hxy-air.mon.GLB", + "atmos.va.tpt-p3-hxy-air.6hr.GLB", + "atmos.vas.tavg-h10m-hxy-u.day.GLB", + "atmos.vas.tavg-h10m-hxy-u.mon.GLB", + "atmos.vas.tpt-h10m-hxy-u.3hr.GLB", + "atmos.wap.tavg-p19-hxy-air.mon.GLB", + "atmos.wap.tavg-p19-hxy-u.day.GLB", + "atmos.zg.tavg-p19-hxy-air.day.GLB", + "atmos.zg.tavg-p19-hxy-air.mon.GLB", + "land.evspsblsoi.tavg-u-hxy-lnd.mon.GLB", + "land.evspsblveg.tavg-u-hxy-lnd.mon.GLB", + "land.lai.tavg-u-hxy-lnd.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.mon.GLB", + "land.mrros.tavg-u-hxy-lnd.mon.GLB", + "land.mrso.tavg-u-hxy-lnd.mon.GLB", + "land.mrsofc.ti-u-hxy-lnd.fx.GLB", + "land.mrsol.tavg-d10cm-hxy-lnd.mon.GLB", + "land.orog.ti-u-hxy-u.fx.GLB", + "land.rootd.ti-u-hxy-lnd.fx.GLB", + "land.sftgif.ti-u-hxy-u.fx.GLB", + "land.slthick.ti-sl-hxy-lnd.fx.GLB", + "landIce.mrfso.tavg-u-hxy-lnd.mon.GLB", + "landIce.snc.tavg-u-hxy-lnd.mon.GLB", + "landIce.snw.tavg-u-hxy-lnd.mon.GLB", + "ocean.areacello.ti-u-hxy-u.fx.GLB", + "ocean.basin.ti-u-hxy-u.fx.GLB", + "ocean.bigthetao.tavg-ol-hxy-sea.mon.GLB", + "ocean.deptho.ti-u-hxy-sea.fx.GLB", + "ocean.hfds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfgeou.ti-u-hxy-sea.fx.GLB", + "ocean.masscello.tavg-ol-hxy-sea.mon.GLB", + "ocean.masscello.ti-ol-hxy-sea.fx.GLB", + "ocean.mlotst.tavg-u-hxy-sea.mon.GLB", + "ocean.sftof.ti-u-hxy-u.fx.GLB", + "ocean.so.tavg-ol-hxy-sea.mon.GLB", + "ocean.sos.tavg-u-hxy-sea.day.GLB", + "ocean.sos.tavg-u-hxy-sea.mon.GLB", + "ocean.tauuo.tavg-u-hxy-sea.mon.GLB", + "ocean.tauvo.tavg-u-hxy-sea.mon.GLB", + "ocean.thetao.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcello.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcello.ti-ol-hxy-sea.fx.GLB", + "ocean.tos.tavg-u-hxy-sea.day.GLB", + "ocean.tos.tavg-u-hxy-sea.mon.GLB", + "ocean.umo.tavg-ol-hxy-sea.mon.GLB", + "ocean.uo.tavg-ol-hxy-sea.mon.GLB", + "ocean.vmo.tavg-ol-hxy-sea.mon.GLB", + "ocean.vo.tavg-ol-hxy-sea.mon.GLB", + "ocean.wmo.tavg-ol-hxy-sea.mon.GLB", + "ocean.wo.tavg-ol-hxy-sea.mon.GLB", + "ocean.zos.tavg-u-hxy-sea.day.GLB", + "ocean.zos.tavg-u-hxy-sea.mon.GLB", + "ocean.zostoga.tavg-u-hm-sea.mon.GLB", + "seaIce.siconc.tavg-u-hxy-u.day.GLB", + "seaIce.siconc.tavg-u-hxy-u.mon.GLB", + "seaIce.simass.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-si.mon.GLB", + "seaIce.sitimefrac.tavg-u-hxy-sea.mon.GLB", + "seaIce.siu.tavg-u-hxy-si.mon.GLB", + "seaIce.siv.tavg-u-hxy-si.mon.GLB", + "seaIce.snd.tavg-u-hxy-sn.mon.GLB", + "seaIce.ts.tavg-u-hxy-si.mon.GLB" + ], + "High": [ + "atmos.co2.tclm-u-hm-u.mon.GLB", + "atmos.pr.tmax-u-hxy-u.day.GLB", + "atmos.pr.tmax-u-hxy-u.mon.GLB", + "atmos.rls.tavg-u-hxy-u.mon.GLB", + "atmos.rss.tavg-u-hxy-u.mon.GLB", + "atmos.sfcWind.tmax-h10m-hxy-u.day.GLB", + "atmos.sfcWind.tmaxavg-h10m-hxy-u.mon.GLB", + "atmos.ta.tavg-850hPa-hxy-air.day.GLB", + "atmos.zg.tavg-500hPa-hxy-air.day.GLB", + "land.nbp.tavg-u-hxy-lnd.mon.GLB", + "landIce.snd.tavg-u-hxy-lnd.mon.GLB", + "ocean.hfbasin.tavg-u-hyb-sea.mon.GLB", + "ocean.msftbarot.tavg-u-hxy-sea.mon.GLB", + "ocean.msftm.tavg-ol-hyb-sea.mon.GLB", + "ocean.t20d.tavg-u-hxy-sea.mon.GLB", + "ocean.thetao.tavg-d2000m-hxy-sea.mon.GLB", + "ocean.thetao.tavg-d300m-hxy-sea.mon.GLB", + "ocean.thetao.tavg-d700m-hxy-sea.mon.GLB", + "ocean.thetaot.tavg-u-hxy-sea.mon.GLB", + "ocean.vsf.tavg-u-hxy-sea.mon.GLB", + "ocean.wfo.tavg-u-hxy-sea.mon.GLB", + "ocean.zfullo.tavg-ol-hxy-sea.yr.GLB", + "ocnBgchem.chl.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.dfe.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.fgco2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intpp.tavg-u-hxy-sea.mon.GLB" + ], + "Medium": [ + "atmos.co2.tavg-h2m-hxy-u.mon.GLB", + "atmos.epfy.tavg-p39-hy-air.mon.GLB", + "atmos.epfz.tavg-p39-hy-air.mon.GLB", + "atmos.hfls.tavg-u-hxy-u.day.GLB", + "atmos.hfss.tavg-u-hxy-u.day.GLB", + "atmos.pr.tavg-u-hxy-u.6hr.GLB", + "atmos.pr.tmax-u-hxy-u.6hr.GLB", + "atmos.prsn.tavg-u-hxy-u.day.GLB", + "atmos.psl.tavg-u-hxy-u.6hr.GLB", + "atmos.rlds.tavg-u-hxy-u.day.GLB", + "atmos.rls.tavg-u-hxy-u.day.GLB", + "atmos.rlut.tavg-u-hxy-u.day.GLB", + "atmos.rsdt.tavg-u-hxy-u.day.GLB", + "atmos.rss.tavg-u-hxy-u.day.GLB", + "atmos.rsut.tavg-u-hxy-u.day.GLB", + "atmos.rv850.tavg-850hPa-hxy-air.6hr.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.6hr.GLB", + "atmos.ta.tavg-p39-hy-air.mon.GLB", + "atmos.tas.tavg-h2m-hxy-u.6hr.GLB", + "atmos.tauu.tavg-u-hxy-u.day.GLB", + "atmos.tauv.tavg-u-hxy-u.day.GLB", + "atmos.tdps.tavg-h2m-hxy-u.day.GLB", + "atmos.tdps.tavg-h2m-hxy-u.mon.GLB", + "atmos.ua.tavg-p39-hy-air.mon.GLB", + "atmos.uas.tavg-h10m-hxy-u.6hr.GLB", + "atmos.utendepfd.tavg-p39-hy-air.mon.GLB", + "atmos.vas.tavg-h10m-hxy-u.6hr.GLB", + "atmos.vtem.tavg-p39-hy-air.mon.GLB", + "atmos.wtem.tavg-p39-hy-air.mon.GLB", + "atmos.zg.tavg-1000hPa-hxy-air.6hr.GLB", + "land.baresoilFrac.tavg-u-hxy-u.yr.GLB", + "land.cLand.tavg-u-hxy-lnd.mon.GLB", + "land.cLitter.tavg-u-hxy-lnd.mon.GLB", + "land.cProduct.tavg-u-hxy-lnd.mon.GLB", + "land.cropFrac.tavg-u-hxy-u.yr.GLB", + "land.cSoil.tavg-u-hxy-lnd.mon.GLB", + "land.cVeg.tavg-u-hxy-lnd.mon.GLB", + "land.gpp.tavg-u-hxy-lnd.mon.GLB", + "land.grassFrac.tavg-u-hxy-u.yr.GLB", + "land.mrso.tavg-u-hxy-lnd.day.GLB", + "land.npp.tavg-u-hxy-lnd.mon.GLB", + "land.ra.tavg-u-hxy-lnd.mon.GLB", + "land.residualFrac.tavg-u-hxy-u.yr.GLB", + "land.rh.tavg-u-hxy-lnd.mon.GLB", + "land.shrubFrac.tavg-u-hxy-u.yr.GLB", + "land.treeFrac.tavg-u-hxy-u.yr.GLB", + "land.vegFrac.tavg-u-hxy-u.yr.GLB", + "landIce.snd.tavg-u-hxy-lnd.day.GLB", + "ocean.mlotst.tavg-u-hxy-sea.day.GLB", + "ocean.msftm.tavg-rho-hyb-sea.mon.GLB", + "ocean.msftmmpa.tavg-ol-hyb-sea.mon.GLB", + "ocean.t20d.tavg-u-hxy-sea.day.GLB", + "ocean.thetao.tavg-op20bar-hxy-sea.day.GLB", + "ocean.volo.tavg-u-hm-sea.mon.GLB", + "ocean.zossq.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.chl.tavg-d0m-hxy-sea.day.GLB", + "ocnBgchem.chl.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.co3.tavg-d0m-hxy-sea.day.GLB", + "ocnBgchem.co3.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.co3satarag.tavg-d0m-hxy-sea.day.GLB", + "ocnBgchem.co3satarag.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.dfe.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissic.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissoc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.epsi.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.expc.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.expc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.expcalc.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.intpp.tavg-u-hxy-sea.day.GLB", + "ocnBgchem.nh4.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.no3.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.no3.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.o2.tavg-d0m-hxy-sea.day.GLB", + "ocnBgchem.o2.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.o2.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.o2.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.ph.tavg-d0m-hxy-sea.day.GLB", + "ocnBgchem.ph.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.ph.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.phyc.tavg-d0m-hxy-sea.day.GLB", + "ocnBgchem.phyc.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.phyc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phyc.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.po4.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.pp.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.si.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.si.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.spco2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.talk.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zooc.tavg-ol-hxy-sea.mon.GLB", + "seaIce.sifllattop.tavg-u-hxy-si.mon.GLB", + "seaIce.siflsenstop.tavg-u-hxy-si.mon.GLB", + "seaIce.sistrxdtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sistrydtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-si.day.GLB", + "seaIce.ts.tavg-u-hxy-si.day.GLB" + ], + "Low": [] + }, + "dcppA-hindcast": { + "Core": [ + "atmos.areacella.ti-u-hxy-u.fx.GLB", + "atmos.cl.tavg-al-hxy-u.mon.GLB", + "atmos.cli.tavg-al-hxy-u.mon.GLB", + "atmos.clivi.tavg-u-hxy-u.mon.GLB", + "atmos.clt.tavg-u-hxy-u.day.GLB", + "atmos.clt.tavg-u-hxy-u.mon.GLB", + "atmos.clw.tavg-al-hxy-u.mon.GLB", + "atmos.clwvi.tavg-u-hxy-u.mon.GLB", + "atmos.evspsbl.tavg-u-hxy-u.mon.GLB", + "atmos.hfls.tavg-u-hxy-u.mon.GLB", + "atmos.hfss.tavg-u-hxy-u.mon.GLB", + "atmos.hur.tavg-p19-hxy-air.mon.GLB", + "atmos.hur.tavg-p19-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.6hr.GLB", + "atmos.hurs.tavg-h2m-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.mon.GLB", + "atmos.hus.tavg-p19-hxy-u.day.GLB", + "atmos.hus.tavg-p19-hxy-u.mon.GLB", + "atmos.huss.tavg-h2m-hxy-u.day.GLB", + "atmos.huss.tavg-h2m-hxy-u.mon.GLB", + "atmos.huss.tpt-h2m-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.1hr.GLB", + "atmos.pr.tavg-u-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.day.GLB", + "atmos.pr.tavg-u-hxy-u.mon.GLB", + "atmos.prc.tavg-u-hxy-u.mon.GLB", + "atmos.prsn.tavg-u-hxy-u.mon.GLB", + "atmos.prw.tavg-u-hxy-u.mon.GLB", + "atmos.ps.tavg-u-hxy-u.day.GLB", + "atmos.ps.tavg-u-hxy-u.mon.GLB", + "atmos.psl.tavg-u-hxy-u.day.GLB", + "atmos.psl.tavg-u-hxy-u.mon.GLB", + "atmos.rlds.tavg-u-hxy-u.mon.GLB", + "atmos.rldscs.tavg-u-hxy-u.mon.GLB", + "atmos.rlus.tavg-u-hxy-u.mon.GLB", + "atmos.rluscs.tavg-u-hxy-u.mon.GLB", + "atmos.rlut.tavg-u-hxy-u.mon.GLB", + "atmos.rlutcs.tavg-u-hxy-u.mon.GLB", + "atmos.rsds.tavg-u-hxy-u.day.GLB", + "atmos.rsds.tavg-u-hxy-u.mon.GLB", + "atmos.rsdscs.tavg-u-hxy-u.mon.GLB", + "atmos.rsdt.tavg-u-hxy-u.mon.GLB", + "atmos.rsus.tavg-u-hxy-u.mon.GLB", + "atmos.rsuscs.tavg-u-hxy-u.mon.GLB", + "atmos.rsut.tavg-u-hxy-u.mon.GLB", + "atmos.rsutcs.tavg-u-hxy-u.mon.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.day.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.mon.GLB", + "atmos.sftlf.ti-u-hxy-u.fx.GLB", + "atmos.ta.tavg-p19-hxy-air.day.GLB", + "atmos.ta.tavg-p19-hxy-air.mon.GLB", + "atmos.ta.tpt-p3-hxy-air.6hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.day.GLB", + "atmos.tas.tavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tmax-h2m-hxy-u.day.GLB", + "atmos.tas.tmaxavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tmin-h2m-hxy-u.day.GLB", + "atmos.tas.tminavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tpt-h2m-hxy-u.3hr.GLB", + "atmos.tauu.tavg-u-hxy-u.mon.GLB", + "atmos.tauv.tavg-u-hxy-u.mon.GLB", + "atmos.ts.tavg-u-hxy-u.mon.GLB", + "atmos.ua.tavg-p19-hxy-air.day.GLB", + "atmos.ua.tavg-p19-hxy-air.mon.GLB", + "atmos.ua.tpt-p3-hxy-air.6hr.GLB", + "atmos.uas.tavg-h10m-hxy-u.day.GLB", + "atmos.uas.tavg-h10m-hxy-u.mon.GLB", + "atmos.uas.tpt-h10m-hxy-u.3hr.GLB", + "atmos.va.tavg-p19-hxy-air.day.GLB", + "atmos.va.tavg-p19-hxy-air.mon.GLB", + "atmos.va.tpt-p3-hxy-air.6hr.GLB", + "atmos.vas.tavg-h10m-hxy-u.day.GLB", + "atmos.vas.tavg-h10m-hxy-u.mon.GLB", + "atmos.vas.tpt-h10m-hxy-u.3hr.GLB", + "atmos.wap.tavg-p19-hxy-air.mon.GLB", + "atmos.wap.tavg-p19-hxy-u.day.GLB", + "atmos.zg.tavg-p19-hxy-air.day.GLB", + "atmos.zg.tavg-p19-hxy-air.mon.GLB", + "land.evspsblsoi.tavg-u-hxy-lnd.mon.GLB", + "land.evspsblveg.tavg-u-hxy-lnd.mon.GLB", + "land.lai.tavg-u-hxy-lnd.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.mon.GLB", + "land.mrros.tavg-u-hxy-lnd.mon.GLB", + "land.mrso.tavg-u-hxy-lnd.mon.GLB", + "land.mrsofc.ti-u-hxy-lnd.fx.GLB", + "land.mrsol.tavg-d10cm-hxy-lnd.mon.GLB", + "land.orog.ti-u-hxy-u.fx.GLB", + "land.rootd.ti-u-hxy-lnd.fx.GLB", + "land.sftgif.ti-u-hxy-u.fx.GLB", + "land.slthick.ti-sl-hxy-lnd.fx.GLB", + "landIce.mrfso.tavg-u-hxy-lnd.mon.GLB", + "landIce.snc.tavg-u-hxy-lnd.mon.GLB", + "landIce.snw.tavg-u-hxy-lnd.mon.GLB", + "ocean.areacello.ti-u-hxy-u.fx.GLB", + "ocean.basin.ti-u-hxy-u.fx.GLB", + "ocean.bigthetao.tavg-ol-hxy-sea.mon.GLB", + "ocean.deptho.ti-u-hxy-sea.fx.GLB", + "ocean.hfds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfgeou.ti-u-hxy-sea.fx.GLB", + "ocean.masscello.tavg-ol-hxy-sea.mon.GLB", + "ocean.masscello.ti-ol-hxy-sea.fx.GLB", + "ocean.mlotst.tavg-u-hxy-sea.mon.GLB", + "ocean.sftof.ti-u-hxy-u.fx.GLB", + "ocean.so.tavg-ol-hxy-sea.mon.GLB", + "ocean.sos.tavg-u-hxy-sea.day.GLB", + "ocean.sos.tavg-u-hxy-sea.mon.GLB", + "ocean.tauuo.tavg-u-hxy-sea.mon.GLB", + "ocean.tauvo.tavg-u-hxy-sea.mon.GLB", + "ocean.thetao.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcello.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcello.ti-ol-hxy-sea.fx.GLB", + "ocean.tos.tavg-u-hxy-sea.day.GLB", + "ocean.tos.tavg-u-hxy-sea.mon.GLB", + "ocean.umo.tavg-ol-hxy-sea.mon.GLB", + "ocean.uo.tavg-ol-hxy-sea.mon.GLB", + "ocean.vmo.tavg-ol-hxy-sea.mon.GLB", + "ocean.vo.tavg-ol-hxy-sea.mon.GLB", + "ocean.wmo.tavg-ol-hxy-sea.mon.GLB", + "ocean.wo.tavg-ol-hxy-sea.mon.GLB", + "ocean.zos.tavg-u-hxy-sea.day.GLB", + "ocean.zos.tavg-u-hxy-sea.mon.GLB", + "ocean.zostoga.tavg-u-hm-sea.mon.GLB", + "seaIce.siconc.tavg-u-hxy-u.day.GLB", + "seaIce.siconc.tavg-u-hxy-u.mon.GLB", + "seaIce.simass.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-si.mon.GLB", + "seaIce.sitimefrac.tavg-u-hxy-sea.mon.GLB", + "seaIce.siu.tavg-u-hxy-si.mon.GLB", + "seaIce.siv.tavg-u-hxy-si.mon.GLB", + "seaIce.snd.tavg-u-hxy-sn.mon.GLB", + "seaIce.ts.tavg-u-hxy-si.mon.GLB" + ], + "High": [ + "atmos.co2.tclm-u-hm-u.mon.GLB", + "atmos.pr.tmax-u-hxy-u.day.GLB", + "atmos.pr.tmax-u-hxy-u.mon.GLB", + "atmos.rls.tavg-u-hxy-u.mon.GLB", + "atmos.rss.tavg-u-hxy-u.mon.GLB", + "atmos.sfcWind.tmax-h10m-hxy-u.day.GLB", + "atmos.sfcWind.tmaxavg-h10m-hxy-u.mon.GLB", + "atmos.ta.tavg-850hPa-hxy-air.day.GLB", + "atmos.zg.tavg-500hPa-hxy-air.day.GLB", + "land.nbp.tavg-u-hxy-lnd.mon.GLB", + "landIce.snd.tavg-u-hxy-lnd.mon.GLB", + "ocean.hfbasin.tavg-u-hyb-sea.mon.GLB", + "ocean.msftbarot.tavg-u-hxy-sea.mon.GLB", + "ocean.msftm.tavg-ol-hyb-sea.mon.GLB", + "ocean.t20d.tavg-u-hxy-sea.mon.GLB", + "ocean.thetao.tavg-d2000m-hxy-sea.mon.GLB", + "ocean.thetao.tavg-d300m-hxy-sea.mon.GLB", + "ocean.thetao.tavg-d700m-hxy-sea.mon.GLB", + "ocean.thetaot.tavg-u-hxy-sea.mon.GLB", + "ocean.vsf.tavg-u-hxy-sea.mon.GLB", + "ocean.wfo.tavg-u-hxy-sea.mon.GLB", + "ocean.zfullo.tavg-ol-hxy-sea.yr.GLB", + "ocnBgchem.chl.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.dfe.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.fgco2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intpp.tavg-u-hxy-sea.mon.GLB" + ], + "Medium": [ + "atmos.co2.tavg-h2m-hxy-u.mon.GLB", + "atmos.epfy.tavg-p39-hy-air.mon.GLB", + "atmos.epfz.tavg-p39-hy-air.mon.GLB", + "atmos.hfls.tavg-u-hxy-u.day.GLB", + "atmos.hfss.tavg-u-hxy-u.day.GLB", + "atmos.pr.tavg-u-hxy-u.6hr.GLB", + "atmos.pr.tmax-u-hxy-u.6hr.GLB", + "atmos.prsn.tavg-u-hxy-u.day.GLB", + "atmos.psl.tavg-u-hxy-u.6hr.GLB", + "atmos.rlds.tavg-u-hxy-u.day.GLB", + "atmos.rls.tavg-u-hxy-u.day.GLB", + "atmos.rlut.tavg-u-hxy-u.day.GLB", + "atmos.rsdt.tavg-u-hxy-u.day.GLB", + "atmos.rss.tavg-u-hxy-u.day.GLB", + "atmos.rsut.tavg-u-hxy-u.day.GLB", + "atmos.rv850.tavg-850hPa-hxy-air.6hr.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.6hr.GLB", + "atmos.ta.tavg-p39-hy-air.mon.GLB", + "atmos.tas.tavg-h2m-hxy-u.6hr.GLB", + "atmos.tauu.tavg-u-hxy-u.day.GLB", + "atmos.tauv.tavg-u-hxy-u.day.GLB", + "atmos.tdps.tavg-h2m-hxy-u.day.GLB", + "atmos.tdps.tavg-h2m-hxy-u.mon.GLB", + "atmos.ua.tavg-p39-hy-air.mon.GLB", + "atmos.uas.tavg-h10m-hxy-u.6hr.GLB", + "atmos.utendepfd.tavg-p39-hy-air.mon.GLB", + "atmos.vas.tavg-h10m-hxy-u.6hr.GLB", + "atmos.vtem.tavg-p39-hy-air.mon.GLB", + "atmos.wtem.tavg-p39-hy-air.mon.GLB", + "atmos.zg.tavg-1000hPa-hxy-air.6hr.GLB", + "land.baresoilFrac.tavg-u-hxy-u.yr.GLB", + "land.cLand.tavg-u-hxy-lnd.mon.GLB", + "land.cLitter.tavg-u-hxy-lnd.mon.GLB", + "land.cProduct.tavg-u-hxy-lnd.mon.GLB", + "land.cropFrac.tavg-u-hxy-u.yr.GLB", + "land.cSoil.tavg-u-hxy-lnd.mon.GLB", + "land.cVeg.tavg-u-hxy-lnd.mon.GLB", + "land.gpp.tavg-u-hxy-lnd.mon.GLB", + "land.grassFrac.tavg-u-hxy-u.yr.GLB", + "land.mrso.tavg-u-hxy-lnd.day.GLB", + "land.npp.tavg-u-hxy-lnd.mon.GLB", + "land.ra.tavg-u-hxy-lnd.mon.GLB", + "land.residualFrac.tavg-u-hxy-u.yr.GLB", + "land.rh.tavg-u-hxy-lnd.mon.GLB", + "land.shrubFrac.tavg-u-hxy-u.yr.GLB", + "land.treeFrac.tavg-u-hxy-u.yr.GLB", + "land.vegFrac.tavg-u-hxy-u.yr.GLB", + "landIce.snd.tavg-u-hxy-lnd.day.GLB", + "ocean.mlotst.tavg-u-hxy-sea.day.GLB", + "ocean.msftm.tavg-rho-hyb-sea.mon.GLB", + "ocean.msftmmpa.tavg-ol-hyb-sea.mon.GLB", + "ocean.t20d.tavg-u-hxy-sea.day.GLB", + "ocean.thetao.tavg-op20bar-hxy-sea.day.GLB", + "ocean.volo.tavg-u-hm-sea.mon.GLB", + "ocean.zossq.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.chl.tavg-d0m-hxy-sea.day.GLB", + "ocnBgchem.chl.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.co3.tavg-d0m-hxy-sea.day.GLB", + "ocnBgchem.co3.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.co3satarag.tavg-d0m-hxy-sea.day.GLB", + "ocnBgchem.co3satarag.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.dfe.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissic.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissoc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.epsi.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.expc.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.expc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.expcalc.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.intpp.tavg-u-hxy-sea.day.GLB", + "ocnBgchem.nh4.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.no3.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.no3.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.o2.tavg-d0m-hxy-sea.day.GLB", + "ocnBgchem.o2.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.o2.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.o2.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.ph.tavg-d0m-hxy-sea.day.GLB", + "ocnBgchem.ph.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.ph.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.phyc.tavg-d0m-hxy-sea.day.GLB", + "ocnBgchem.phyc.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.phyc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phyc.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.po4.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.pp.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.si.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.si.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.spco2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.talk.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zooc.tavg-ol-hxy-sea.mon.GLB", + "seaIce.sifllattop.tavg-u-hxy-si.mon.GLB", + "seaIce.siflsenstop.tavg-u-hxy-si.mon.GLB", + "seaIce.sistrxdtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sistrydtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-si.day.GLB", + "seaIce.ts.tavg-u-hxy-si.day.GLB" + ], + "Low": [] + }, + "dcppB-forecast": { + "Core": [ + "atmos.areacella.ti-u-hxy-u.fx.GLB", + "atmos.cl.tavg-al-hxy-u.mon.GLB", + "atmos.cli.tavg-al-hxy-u.mon.GLB", + "atmos.clivi.tavg-u-hxy-u.mon.GLB", + "atmos.clt.tavg-u-hxy-u.day.GLB", + "atmos.clt.tavg-u-hxy-u.mon.GLB", + "atmos.clw.tavg-al-hxy-u.mon.GLB", + "atmos.clwvi.tavg-u-hxy-u.mon.GLB", + "atmos.evspsbl.tavg-u-hxy-u.mon.GLB", + "atmos.hfls.tavg-u-hxy-u.mon.GLB", + "atmos.hfss.tavg-u-hxy-u.mon.GLB", + "atmos.hur.tavg-p19-hxy-air.mon.GLB", + "atmos.hur.tavg-p19-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.6hr.GLB", + "atmos.hurs.tavg-h2m-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.mon.GLB", + "atmos.hus.tavg-p19-hxy-u.day.GLB", + "atmos.hus.tavg-p19-hxy-u.mon.GLB", + "atmos.huss.tavg-h2m-hxy-u.day.GLB", + "atmos.huss.tavg-h2m-hxy-u.mon.GLB", + "atmos.huss.tpt-h2m-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.1hr.GLB", + "atmos.pr.tavg-u-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.day.GLB", + "atmos.pr.tavg-u-hxy-u.mon.GLB", + "atmos.prc.tavg-u-hxy-u.mon.GLB", + "atmos.prsn.tavg-u-hxy-u.mon.GLB", + "atmos.prw.tavg-u-hxy-u.mon.GLB", + "atmos.ps.tavg-u-hxy-u.day.GLB", + "atmos.ps.tavg-u-hxy-u.mon.GLB", + "atmos.psl.tavg-u-hxy-u.day.GLB", + "atmos.psl.tavg-u-hxy-u.mon.GLB", + "atmos.rlds.tavg-u-hxy-u.mon.GLB", + "atmos.rldscs.tavg-u-hxy-u.mon.GLB", + "atmos.rlus.tavg-u-hxy-u.mon.GLB", + "atmos.rluscs.tavg-u-hxy-u.mon.GLB", + "atmos.rlut.tavg-u-hxy-u.mon.GLB", + "atmos.rlutcs.tavg-u-hxy-u.mon.GLB", + "atmos.rsds.tavg-u-hxy-u.day.GLB", + "atmos.rsds.tavg-u-hxy-u.mon.GLB", + "atmos.rsdscs.tavg-u-hxy-u.mon.GLB", + "atmos.rsdt.tavg-u-hxy-u.mon.GLB", + "atmos.rsus.tavg-u-hxy-u.mon.GLB", + "atmos.rsuscs.tavg-u-hxy-u.mon.GLB", + "atmos.rsut.tavg-u-hxy-u.mon.GLB", + "atmos.rsutcs.tavg-u-hxy-u.mon.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.day.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.mon.GLB", + "atmos.sftlf.ti-u-hxy-u.fx.GLB", + "atmos.ta.tavg-p19-hxy-air.day.GLB", + "atmos.ta.tavg-p19-hxy-air.mon.GLB", + "atmos.ta.tpt-p3-hxy-air.6hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.day.GLB", + "atmos.tas.tavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tmax-h2m-hxy-u.day.GLB", + "atmos.tas.tmaxavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tmin-h2m-hxy-u.day.GLB", + "atmos.tas.tminavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tpt-h2m-hxy-u.3hr.GLB", + "atmos.tauu.tavg-u-hxy-u.mon.GLB", + "atmos.tauv.tavg-u-hxy-u.mon.GLB", + "atmos.ts.tavg-u-hxy-u.mon.GLB", + "atmos.ua.tavg-p19-hxy-air.day.GLB", + "atmos.ua.tavg-p19-hxy-air.mon.GLB", + "atmos.ua.tpt-p3-hxy-air.6hr.GLB", + "atmos.uas.tavg-h10m-hxy-u.day.GLB", + "atmos.uas.tavg-h10m-hxy-u.mon.GLB", + "atmos.uas.tpt-h10m-hxy-u.3hr.GLB", + "atmos.va.tavg-p19-hxy-air.day.GLB", + "atmos.va.tavg-p19-hxy-air.mon.GLB", + "atmos.va.tpt-p3-hxy-air.6hr.GLB", + "atmos.vas.tavg-h10m-hxy-u.day.GLB", + "atmos.vas.tavg-h10m-hxy-u.mon.GLB", + "atmos.vas.tpt-h10m-hxy-u.3hr.GLB", + "atmos.wap.tavg-p19-hxy-air.mon.GLB", + "atmos.wap.tavg-p19-hxy-u.day.GLB", + "atmos.zg.tavg-p19-hxy-air.day.GLB", + "atmos.zg.tavg-p19-hxy-air.mon.GLB", + "land.evspsblsoi.tavg-u-hxy-lnd.mon.GLB", + "land.evspsblveg.tavg-u-hxy-lnd.mon.GLB", + "land.lai.tavg-u-hxy-lnd.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.mon.GLB", + "land.mrros.tavg-u-hxy-lnd.mon.GLB", + "land.mrso.tavg-u-hxy-lnd.mon.GLB", + "land.mrsofc.ti-u-hxy-lnd.fx.GLB", + "land.mrsol.tavg-d10cm-hxy-lnd.mon.GLB", + "land.orog.ti-u-hxy-u.fx.GLB", + "land.rootd.ti-u-hxy-lnd.fx.GLB", + "land.sftgif.ti-u-hxy-u.fx.GLB", + "land.slthick.ti-sl-hxy-lnd.fx.GLB", + "landIce.mrfso.tavg-u-hxy-lnd.mon.GLB", + "landIce.snc.tavg-u-hxy-lnd.mon.GLB", + "landIce.snw.tavg-u-hxy-lnd.mon.GLB", + "ocean.areacello.ti-u-hxy-u.fx.GLB", + "ocean.basin.ti-u-hxy-u.fx.GLB", + "ocean.bigthetao.tavg-ol-hxy-sea.mon.GLB", + "ocean.deptho.ti-u-hxy-sea.fx.GLB", + "ocean.hfds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfgeou.ti-u-hxy-sea.fx.GLB", + "ocean.masscello.tavg-ol-hxy-sea.mon.GLB", + "ocean.masscello.ti-ol-hxy-sea.fx.GLB", + "ocean.mlotst.tavg-u-hxy-sea.mon.GLB", + "ocean.sftof.ti-u-hxy-u.fx.GLB", + "ocean.so.tavg-ol-hxy-sea.mon.GLB", + "ocean.sos.tavg-u-hxy-sea.day.GLB", + "ocean.sos.tavg-u-hxy-sea.mon.GLB", + "ocean.tauuo.tavg-u-hxy-sea.mon.GLB", + "ocean.tauvo.tavg-u-hxy-sea.mon.GLB", + "ocean.thetao.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcello.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcello.ti-ol-hxy-sea.fx.GLB", + "ocean.tos.tavg-u-hxy-sea.day.GLB", + "ocean.tos.tavg-u-hxy-sea.mon.GLB", + "ocean.umo.tavg-ol-hxy-sea.mon.GLB", + "ocean.uo.tavg-ol-hxy-sea.mon.GLB", + "ocean.vmo.tavg-ol-hxy-sea.mon.GLB", + "ocean.vo.tavg-ol-hxy-sea.mon.GLB", + "ocean.wmo.tavg-ol-hxy-sea.mon.GLB", + "ocean.wo.tavg-ol-hxy-sea.mon.GLB", + "ocean.zos.tavg-u-hxy-sea.day.GLB", + "ocean.zos.tavg-u-hxy-sea.mon.GLB", + "ocean.zostoga.tavg-u-hm-sea.mon.GLB", + "seaIce.siconc.tavg-u-hxy-u.day.GLB", + "seaIce.siconc.tavg-u-hxy-u.mon.GLB", + "seaIce.simass.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-si.mon.GLB", + "seaIce.sitimefrac.tavg-u-hxy-sea.mon.GLB", + "seaIce.siu.tavg-u-hxy-si.mon.GLB", + "seaIce.siv.tavg-u-hxy-si.mon.GLB", + "seaIce.snd.tavg-u-hxy-sn.mon.GLB", + "seaIce.ts.tavg-u-hxy-si.mon.GLB" + ], + "High": [ + "atmos.co2.tclm-u-hm-u.mon.GLB", + "atmos.pr.tmax-u-hxy-u.day.GLB", + "atmos.pr.tmax-u-hxy-u.mon.GLB", + "atmos.rls.tavg-u-hxy-u.mon.GLB", + "atmos.rss.tavg-u-hxy-u.mon.GLB", + "atmos.sfcWind.tmax-h10m-hxy-u.day.GLB", + "atmos.sfcWind.tmaxavg-h10m-hxy-u.mon.GLB", + "atmos.ta.tavg-850hPa-hxy-air.day.GLB", + "atmos.zg.tavg-500hPa-hxy-air.day.GLB", + "land.nbp.tavg-u-hxy-lnd.mon.GLB", + "landIce.snd.tavg-u-hxy-lnd.mon.GLB", + "ocean.hfbasin.tavg-u-hyb-sea.mon.GLB", + "ocean.msftbarot.tavg-u-hxy-sea.mon.GLB", + "ocean.msftm.tavg-ol-hyb-sea.mon.GLB", + "ocean.t20d.tavg-u-hxy-sea.mon.GLB", + "ocean.thetao.tavg-d2000m-hxy-sea.mon.GLB", + "ocean.thetao.tavg-d300m-hxy-sea.mon.GLB", + "ocean.thetao.tavg-d700m-hxy-sea.mon.GLB", + "ocean.thetaot.tavg-u-hxy-sea.mon.GLB", + "ocean.vsf.tavg-u-hxy-sea.mon.GLB", + "ocean.wfo.tavg-u-hxy-sea.mon.GLB", + "ocean.zfullo.tavg-ol-hxy-sea.yr.GLB", + "ocnBgchem.chl.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.dfe.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.fgco2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intpp.tavg-u-hxy-sea.mon.GLB" + ], + "Medium": [ + "atmos.co2.tavg-h2m-hxy-u.mon.GLB", + "atmos.epfy.tavg-p39-hy-air.mon.GLB", + "atmos.epfz.tavg-p39-hy-air.mon.GLB", + "atmos.hfls.tavg-u-hxy-u.day.GLB", + "atmos.hfss.tavg-u-hxy-u.day.GLB", + "atmos.pr.tavg-u-hxy-u.6hr.GLB", + "atmos.pr.tmax-u-hxy-u.6hr.GLB", + "atmos.prsn.tavg-u-hxy-u.day.GLB", + "atmos.psl.tavg-u-hxy-u.6hr.GLB", + "atmos.rlds.tavg-u-hxy-u.day.GLB", + "atmos.rls.tavg-u-hxy-u.day.GLB", + "atmos.rlut.tavg-u-hxy-u.day.GLB", + "atmos.rsdt.tavg-u-hxy-u.day.GLB", + "atmos.rss.tavg-u-hxy-u.day.GLB", + "atmos.rsut.tavg-u-hxy-u.day.GLB", + "atmos.rv850.tavg-850hPa-hxy-air.6hr.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.6hr.GLB", + "atmos.ta.tavg-p39-hy-air.mon.GLB", + "atmos.tas.tavg-h2m-hxy-u.6hr.GLB", + "atmos.tauu.tavg-u-hxy-u.day.GLB", + "atmos.tauv.tavg-u-hxy-u.day.GLB", + "atmos.tdps.tavg-h2m-hxy-u.day.GLB", + "atmos.tdps.tavg-h2m-hxy-u.mon.GLB", + "atmos.ua.tavg-p39-hy-air.mon.GLB", + "atmos.uas.tavg-h10m-hxy-u.6hr.GLB", + "atmos.utendepfd.tavg-p39-hy-air.mon.GLB", + "atmos.vas.tavg-h10m-hxy-u.6hr.GLB", + "atmos.vtem.tavg-p39-hy-air.mon.GLB", + "atmos.wtem.tavg-p39-hy-air.mon.GLB", + "atmos.zg.tavg-1000hPa-hxy-air.6hr.GLB", + "land.baresoilFrac.tavg-u-hxy-u.yr.GLB", + "land.cLand.tavg-u-hxy-lnd.mon.GLB", + "land.cLitter.tavg-u-hxy-lnd.mon.GLB", + "land.cProduct.tavg-u-hxy-lnd.mon.GLB", + "land.cropFrac.tavg-u-hxy-u.yr.GLB", + "land.cSoil.tavg-u-hxy-lnd.mon.GLB", + "land.cVeg.tavg-u-hxy-lnd.mon.GLB", + "land.gpp.tavg-u-hxy-lnd.mon.GLB", + "land.grassFrac.tavg-u-hxy-u.yr.GLB", + "land.mrso.tavg-u-hxy-lnd.day.GLB", + "land.npp.tavg-u-hxy-lnd.mon.GLB", + "land.ra.tavg-u-hxy-lnd.mon.GLB", + "land.residualFrac.tavg-u-hxy-u.yr.GLB", + "land.rh.tavg-u-hxy-lnd.mon.GLB", + "land.shrubFrac.tavg-u-hxy-u.yr.GLB", + "land.treeFrac.tavg-u-hxy-u.yr.GLB", + "land.vegFrac.tavg-u-hxy-u.yr.GLB", + "landIce.snd.tavg-u-hxy-lnd.day.GLB", + "ocean.mlotst.tavg-u-hxy-sea.day.GLB", + "ocean.msftm.tavg-rho-hyb-sea.mon.GLB", + "ocean.msftmmpa.tavg-ol-hyb-sea.mon.GLB", + "ocean.t20d.tavg-u-hxy-sea.day.GLB", + "ocean.thetao.tavg-op20bar-hxy-sea.day.GLB", + "ocean.volo.tavg-u-hm-sea.mon.GLB", + "ocean.zossq.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.chl.tavg-d0m-hxy-sea.day.GLB", + "ocnBgchem.chl.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.co3.tavg-d0m-hxy-sea.day.GLB", + "ocnBgchem.co3.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.co3satarag.tavg-d0m-hxy-sea.day.GLB", + "ocnBgchem.co3satarag.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.dfe.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissic.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissoc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.epsi.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.expc.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.expc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.expcalc.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.intpp.tavg-u-hxy-sea.day.GLB", + "ocnBgchem.nh4.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.no3.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.no3.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.o2.tavg-d0m-hxy-sea.day.GLB", + "ocnBgchem.o2.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.o2.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.o2.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.ph.tavg-d0m-hxy-sea.day.GLB", + "ocnBgchem.ph.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.ph.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.phyc.tavg-d0m-hxy-sea.day.GLB", + "ocnBgchem.phyc.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.phyc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phyc.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.po4.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.pp.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.si.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.si.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.spco2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.talk.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zooc.tavg-ol-hxy-sea.mon.GLB", + "seaIce.sifllattop.tavg-u-hxy-si.mon.GLB", + "seaIce.siflsenstop.tavg-u-hxy-si.mon.GLB", + "seaIce.sistrxdtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sistrydtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-si.day.GLB", + "seaIce.ts.tavg-u-hxy-si.day.GLB" + ], + "Low": [] + }, + "dcppB-forecast-cmip6": { + "Core": [ + "atmos.areacella.ti-u-hxy-u.fx.GLB", + "atmos.cl.tavg-al-hxy-u.mon.GLB", + "atmos.cli.tavg-al-hxy-u.mon.GLB", + "atmos.clivi.tavg-u-hxy-u.mon.GLB", + "atmos.clt.tavg-u-hxy-u.day.GLB", + "atmos.clt.tavg-u-hxy-u.mon.GLB", + "atmos.clw.tavg-al-hxy-u.mon.GLB", + "atmos.clwvi.tavg-u-hxy-u.mon.GLB", + "atmos.evspsbl.tavg-u-hxy-u.mon.GLB", + "atmos.hfls.tavg-u-hxy-u.mon.GLB", + "atmos.hfss.tavg-u-hxy-u.mon.GLB", + "atmos.hur.tavg-p19-hxy-air.mon.GLB", + "atmos.hur.tavg-p19-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.6hr.GLB", + "atmos.hurs.tavg-h2m-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.mon.GLB", + "atmos.hus.tavg-p19-hxy-u.day.GLB", + "atmos.hus.tavg-p19-hxy-u.mon.GLB", + "atmos.huss.tavg-h2m-hxy-u.day.GLB", + "atmos.huss.tavg-h2m-hxy-u.mon.GLB", + "atmos.huss.tpt-h2m-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.1hr.GLB", + "atmos.pr.tavg-u-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.day.GLB", + "atmos.pr.tavg-u-hxy-u.mon.GLB", + "atmos.prc.tavg-u-hxy-u.mon.GLB", + "atmos.prsn.tavg-u-hxy-u.mon.GLB", + "atmos.prw.tavg-u-hxy-u.mon.GLB", + "atmos.ps.tavg-u-hxy-u.day.GLB", + "atmos.ps.tavg-u-hxy-u.mon.GLB", + "atmos.psl.tavg-u-hxy-u.day.GLB", + "atmos.psl.tavg-u-hxy-u.mon.GLB", + "atmos.rlds.tavg-u-hxy-u.mon.GLB", + "atmos.rldscs.tavg-u-hxy-u.mon.GLB", + "atmos.rlus.tavg-u-hxy-u.mon.GLB", + "atmos.rluscs.tavg-u-hxy-u.mon.GLB", + "atmos.rlut.tavg-u-hxy-u.mon.GLB", + "atmos.rlutcs.tavg-u-hxy-u.mon.GLB", + "atmos.rsds.tavg-u-hxy-u.day.GLB", + "atmos.rsds.tavg-u-hxy-u.mon.GLB", + "atmos.rsdscs.tavg-u-hxy-u.mon.GLB", + "atmos.rsdt.tavg-u-hxy-u.mon.GLB", + "atmos.rsus.tavg-u-hxy-u.mon.GLB", + "atmos.rsuscs.tavg-u-hxy-u.mon.GLB", + "atmos.rsut.tavg-u-hxy-u.mon.GLB", + "atmos.rsutcs.tavg-u-hxy-u.mon.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.day.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.mon.GLB", + "atmos.sftlf.ti-u-hxy-u.fx.GLB", + "atmos.ta.tavg-p19-hxy-air.day.GLB", + "atmos.ta.tavg-p19-hxy-air.mon.GLB", + "atmos.ta.tpt-p3-hxy-air.6hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.day.GLB", + "atmos.tas.tavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tmax-h2m-hxy-u.day.GLB", + "atmos.tas.tmaxavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tmin-h2m-hxy-u.day.GLB", + "atmos.tas.tminavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tpt-h2m-hxy-u.3hr.GLB", + "atmos.tauu.tavg-u-hxy-u.mon.GLB", + "atmos.tauv.tavg-u-hxy-u.mon.GLB", + "atmos.ts.tavg-u-hxy-u.mon.GLB", + "atmos.ua.tavg-p19-hxy-air.day.GLB", + "atmos.ua.tavg-p19-hxy-air.mon.GLB", + "atmos.ua.tpt-p3-hxy-air.6hr.GLB", + "atmos.uas.tavg-h10m-hxy-u.day.GLB", + "atmos.uas.tavg-h10m-hxy-u.mon.GLB", + "atmos.uas.tpt-h10m-hxy-u.3hr.GLB", + "atmos.va.tavg-p19-hxy-air.day.GLB", + "atmos.va.tavg-p19-hxy-air.mon.GLB", + "atmos.va.tpt-p3-hxy-air.6hr.GLB", + "atmos.vas.tavg-h10m-hxy-u.day.GLB", + "atmos.vas.tavg-h10m-hxy-u.mon.GLB", + "atmos.vas.tpt-h10m-hxy-u.3hr.GLB", + "atmos.wap.tavg-p19-hxy-air.mon.GLB", + "atmos.wap.tavg-p19-hxy-u.day.GLB", + "atmos.zg.tavg-p19-hxy-air.day.GLB", + "atmos.zg.tavg-p19-hxy-air.mon.GLB", + "land.evspsblsoi.tavg-u-hxy-lnd.mon.GLB", + "land.evspsblveg.tavg-u-hxy-lnd.mon.GLB", + "land.lai.tavg-u-hxy-lnd.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.mon.GLB", + "land.mrros.tavg-u-hxy-lnd.mon.GLB", + "land.mrso.tavg-u-hxy-lnd.mon.GLB", + "land.mrsofc.ti-u-hxy-lnd.fx.GLB", + "land.mrsol.tavg-d10cm-hxy-lnd.mon.GLB", + "land.orog.ti-u-hxy-u.fx.GLB", + "land.rootd.ti-u-hxy-lnd.fx.GLB", + "land.sftgif.ti-u-hxy-u.fx.GLB", + "land.slthick.ti-sl-hxy-lnd.fx.GLB", + "landIce.mrfso.tavg-u-hxy-lnd.mon.GLB", + "landIce.snc.tavg-u-hxy-lnd.mon.GLB", + "landIce.snw.tavg-u-hxy-lnd.mon.GLB", + "ocean.areacello.ti-u-hxy-u.fx.GLB", + "ocean.basin.ti-u-hxy-u.fx.GLB", + "ocean.bigthetao.tavg-ol-hxy-sea.mon.GLB", + "ocean.deptho.ti-u-hxy-sea.fx.GLB", + "ocean.hfds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfgeou.ti-u-hxy-sea.fx.GLB", + "ocean.masscello.tavg-ol-hxy-sea.mon.GLB", + "ocean.masscello.ti-ol-hxy-sea.fx.GLB", + "ocean.mlotst.tavg-u-hxy-sea.mon.GLB", + "ocean.sftof.ti-u-hxy-u.fx.GLB", + "ocean.so.tavg-ol-hxy-sea.mon.GLB", + "ocean.sos.tavg-u-hxy-sea.day.GLB", + "ocean.sos.tavg-u-hxy-sea.mon.GLB", + "ocean.tauuo.tavg-u-hxy-sea.mon.GLB", + "ocean.tauvo.tavg-u-hxy-sea.mon.GLB", + "ocean.thetao.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcello.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcello.ti-ol-hxy-sea.fx.GLB", + "ocean.tos.tavg-u-hxy-sea.day.GLB", + "ocean.tos.tavg-u-hxy-sea.mon.GLB", + "ocean.umo.tavg-ol-hxy-sea.mon.GLB", + "ocean.uo.tavg-ol-hxy-sea.mon.GLB", + "ocean.vmo.tavg-ol-hxy-sea.mon.GLB", + "ocean.vo.tavg-ol-hxy-sea.mon.GLB", + "ocean.wmo.tavg-ol-hxy-sea.mon.GLB", + "ocean.wo.tavg-ol-hxy-sea.mon.GLB", + "ocean.zos.tavg-u-hxy-sea.day.GLB", + "ocean.zos.tavg-u-hxy-sea.mon.GLB", + "ocean.zostoga.tavg-u-hm-sea.mon.GLB", + "seaIce.siconc.tavg-u-hxy-u.day.GLB", + "seaIce.siconc.tavg-u-hxy-u.mon.GLB", + "seaIce.simass.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-si.mon.GLB", + "seaIce.sitimefrac.tavg-u-hxy-sea.mon.GLB", + "seaIce.siu.tavg-u-hxy-si.mon.GLB", + "seaIce.siv.tavg-u-hxy-si.mon.GLB", + "seaIce.snd.tavg-u-hxy-sn.mon.GLB", + "seaIce.ts.tavg-u-hxy-si.mon.GLB" + ], + "High": [ + "aerosol.abs550aer.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550bc.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550dust.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550no3.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550oa.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550so4.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550ss.tavg-u-hxy-u.mon.GLB", + "aerosol.airmass.tavg-al-hxy-u.mon.GLB", + "aerosol.aoanh.tavg-al-hxy-u.mon.NH", + "aerosol.bry.tavg-p39-hy-air.mon.GLB", + "aerosol.bs550aer.tpt-al-hxy-u.6hr.GLB", + "aerosol.c2h6.tavg-al-hxy-u.mon.GLB", + "aerosol.c3h6.tavg-al-hxy-u.mon.GLB", + "aerosol.c3h8.tavg-al-hxy-u.mon.GLB", + "aerosol.ccldncl.tavg-u-hxy-ccl.mon.GLB", + "aerosol.ccn.tavg-u-hxy-ccl.mon.30S-90S", + "aerosol.ccn.tavg-u-hxy-ccl.mon.GLB", + "aerosol.ccn1.tavg-al-hxy-u.mon.30S-90S", + "aerosol.ccn1.tavg-al-hxy-u.mon.GLB", + "aerosol.ccnp02.tavg-al-hxy-u.mon.30S-90S", + "aerosol.ccnp02.tavg-al-hxy-u.mon.GLB", + "aerosol.cdnc.tavg-al-hxy-u.mon.30S-90S", + "aerosol.cdnc.tavg-al-hxy-u.mon.GLB", + "aerosol.cfc114.tavg-al-hxy-u.mon.GLB", + "aerosol.ch3coch3.tavg-al-hxy-u.mon.GLB", + "aerosol.cheaqpso4.tavg-al-hxy-u.mon.GLB", + "aerosol.chegpso4.tavg-al-hxy-u.mon.GLB", + "aerosol.chepasoa.tavg-u-hxy-u.mon.GLB", + "aerosol.chepsoa.tavg-u-hxy-u.mon.GLB", + "aerosol.cly.tavg-p39-hy-air.mon.GLB", + "aerosol.co.tavg-al-hxy-u.mon.GLB", + "aerosol.co.tavg-h2m-hxy-u.day.GLB", + "aerosol.cod.tavg-u-hxy-u.day.GLB", + "aerosol.cod.tavg-u-hxy-u.mon.30S-90S", + "aerosol.cod.tavg-u-hxy-u.mon.GLB", + "aerosol.conccn.tavg-al-hxy-u.mon.GLB", + "aerosol.conccn.tpt-u-hs-u.3hr.GLB", + "aerosol.drybc.tavg-u-hxy-u.mon.GLB", + "aerosol.drydust.tavg-u-hxy-u.mon.GLB", + "aerosol.dryno3.tavg-u-hxy-u.mon.GLB", + "aerosol.dryo3.tavg-u-hxy-u.mon.GLB", + "aerosol.dryoa.tavg-u-hxy-u.mon.GLB", + "aerosol.dryso2.tavg-u-hxy-u.mon.GLB", + "aerosol.dryso4.tavg-u-hxy-u.mon.GLB", + "aerosol.dryss.tavg-u-hxy-u.mon.GLB", + "aerosol.ec550aer.tavg-al-hxy-u.mon.GLB", + "aerosol.ec550aer.tpt-u-hxy-u.6hr.GLB", + "aerosol.emiaco.tavg-u-hxy-u.mon.GLB", + "aerosol.emianox.tavg-u-hxy-u.mon.GLB", + "aerosol.emiaoa.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbbc.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbch4.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbco.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbdms.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbnh3.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbnox.tavg-u-hxy-u.mon.GLB", + "aerosol.emibboa.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbso2.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbvoc.tavg-u-hxy-u.mon.GLB", + "aerosol.emibc.tavg-u-hxy-u.mon.GLB", + "aerosol.emibvoc.tavg-u-hxy-u.mon.GLB", + "aerosol.emico.tavg-u-hxy-u.mon.GLB", + "aerosol.emidms.tavg-u-hxy-u.mon.30S-90S", + "aerosol.emidms.tavg-u-hxy-u.mon.GLB", + "aerosol.emidust.tavg-u-hxy-u.mon.GLB", + "aerosol.emiisop.tavg-u-hxy-u.mon.GLB", + "aerosol.emilnox.tavg-al-hxy-u.mon.GLB", + "aerosol.eminh3.tavg-u-hxy-u.mon.GLB", + "aerosol.eminox.tavg-u-hxy-u.mon.GLB", + "aerosol.emioa.tavg-u-hxy-u.mon.GLB", + "aerosol.emiso2.tavg-u-hxy-u.mon.GLB", + "aerosol.emiso4.tavg-u-hxy-u.mon.GLB", + "aerosol.emiss.tavg-u-hxy-u.mon.30S-90S", + "aerosol.emiss.tavg-u-hxy-u.mon.GLB", + "aerosol.emivoc.tavg-u-hxy-u.mon.GLB", + "aerosol.h2o.tavg-al-hxy-u.mon.GLB", + "aerosol.h2o.tavg-p39-hy-air.mon.GLB", + "aerosol.hcfc22.tavg-al-hxy-u.mon.GLB", + "aerosol.hcho.tavg-al-hxy-u.mon.GLB", + "aerosol.hcl.tavg-al-hxy-u.mon.GLB", + "aerosol.hcl.tavg-p39-hy-air.mon.GLB", + "aerosol.hfc125.tavg-al-hxy-u.mon.GLB", + "aerosol.hfc134a.tavg-al-hxy-u.mon.GLB", + "aerosol.hno3.tavg-al-hxy-u.mon.GLB", + "aerosol.hno3.tavg-p39-hy-air.mon.GLB", + "aerosol.ho2.tavg-p39-hy-air.mon.GLB", + "aerosol.isop.tavg-al-hxy-u.mon.GLB", + "aerosol.jno2.tavg-al-hxy-u.mon.GLB", + "aerosol.lossch4.tavg-al-hxy-u.mon.GLB", + "aerosol.lossco.tavg-al-hxy-u.mon.GLB", + "aerosol.lossn2o.tavg-al-hxy-u.mon.GLB", + "aerosol.lwp.tavg-u-hxy-u.mon.GLB", + "aerosol.mmraerh2o.tavg-al-hxy-u.mon.GLB", + "aerosol.mmraerh2o.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmraerh2o.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrbc.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrbc.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrbc.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrbc.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrdust.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrdust.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrdust.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrdust.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrnh4.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrnh4.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrnh4.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrnh4.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrno3.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrno3.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrno3.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrno3.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmroa.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmroa.tavg-al-hxy-u.mon.GLB", + "aerosol.mmroa.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmroa.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrpm1.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrpm1.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrpm2p5.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrpm2p5.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrso4.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrso4.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrso4.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrso4.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrsoa.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrsoa.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrsoa.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrss.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrss.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrss.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrss.tpt-h2m-hs-u.3hr.GLB", + "aerosol.nh50.tavg-al-hxy-u.mon.GLB", + "aerosol.no.tavg-al-hxy-u.mon.GLB", + "aerosol.no2.tavg-al-hxy-u.mon.GLB", + "aerosol.no2.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.noy.tavg-p39-hy-air.mon.GLB", + "aerosol.o3.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.o3.tmax-h2m-hxy-u.day.GLB", + "aerosol.o3loss.tavg-al-hxy-u.mon.GLB", + "aerosol.o3prod.tavg-al-hxy-u.mon.GLB", + "aerosol.od443aer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550aer.tavg-u-hxy-u.day.GLB", + "aerosol.od550aer.tavg-u-hxy-u.mon.30S-90S", + "aerosol.od550aer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550aerh2o.tavg-u-hxy-u.mon.GLB", + "aerosol.od550bb.tavg-u-hxy-u.mon.GLB", + "aerosol.od550bc.tavg-u-hxy-u.mon.GLB", + "aerosol.od550csaer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550dust.tavg-u-hxy-u.mon.GLB", + "aerosol.od550lt1aer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550no3.tavg-u-hxy-u.mon.GLB", + "aerosol.od550oa.tavg-u-hxy-u.mon.GLB", + "aerosol.od550so4.tavg-u-hxy-u.mon.GLB", + "aerosol.od550soa.tavg-u-hxy-u.mon.GLB", + "aerosol.od550ss.tavg-u-hxy-u.mon.GLB", + "aerosol.od865aer.tavg-u-hxy-u.mon.GLB", + "aerosol.oh.tavg-al-hxy-u.mon.GLB", + "aerosol.oh.tavg-p39-hy-air.mon.GLB", + "aerosol.pan.tavg-al-hxy-u.mon.GLB", + "aerosol.photo1d.tavg-al-hxy-u.mon.GLB", + "aerosol.pod0.tsum-u-hxy-u.mon.GLB", + "aerosol.reffccwctop.tavg-u-hxy-cl.mon.GLB", + "aerosol.reffclwtop.tavg-u-hxy-cl.mon.30S-90S", + "aerosol.reffclwtop.tavg-u-hxy-cl.mon.GLB", + "aerosol.rluscsaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rlutaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rlutcsaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rsutaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rsutcsaf.tavg-u-hxy-u.mon.GLB", + "aerosol.sfpm1.tavg-h2m-hxy-u.day.GLB", + "aerosol.sfpm10.tavg-al-hxy-u.mon.30S-90S", + "aerosol.sfpm10.tavg-al-hxy-u.mon.GLB", + "aerosol.sfpm10.tavg-h2m-hxy-u.day.GLB", + "aerosol.sfpm25.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.sfpm25.tavg-h2m-hxy-u.day.GLB", + "aerosol.so2.tavg-al-hxy-u.mon.30S-90S", + "aerosol.so2.tavg-al-hxy-u.mon.GLB", + "aerosol.so2.tavg-h2m-hxy-u.day.GLB", + "aerosol.so2.tpt-h2m-hs-u.3hr.GLB", + "aerosol.tatp.tavg-u-hxy-u.mon.GLB", + "aerosol.toz.tavg-u-hxy-u.day.GLB", + "aerosol.toz.tavg-u-hxy-u.mon.GLB", + "aerosol.tropoz.tavg-u-hxy-u.mon.GLB", + "aerosol.ttop.tavg-u-hxy-cl.mon.GLB", + "aerosol.ua.tavg-10hPa-hxy-air.day.GLB", + "aerosol.vt100.tavg-100hPa-hy-air.mon.GLB", + "aerosol.wa.tavg-al-hxy-u.mon.GLB", + "aerosol.wetbc.tavg-u-hxy-u.mon.GLB", + "aerosol.wetdust.tavg-u-hxy-u.mon.GLB", + "aerosol.wetoa.tavg-u-hxy-u.mon.GLB", + "aerosol.wetso2.tavg-u-hxy-u.mon.GLB", + "aerosol.wetso4.tavg-u-hxy-u.mon.GLB", + "aerosol.wetss.tavg-u-hxy-u.mon.GLB", + "aerosol.zg.tavg-10hPa-hxy-air.day.GLB", + "atmos.albisccp.tavg-u-hxy-cl.mon.30S-90S", + "atmos.aod550volso4.tavg-u-hxy-u.mon.GLB", + "atmos.bldep.tavg-u-hxy-u.mon.GLB", + "atmos.bldep.tmax-u-hxy-u.day.GLB", + "atmos.bldep.tmin-u-hxy-u.day.GLB", + "atmos.cl.tavg-al-hxy-u.day.GLB", + "atmos.cl.tavg-al-hxy-u.mon.30S-90S", + "atmos.clc.tavg-al-hxy-u.mon.30S-90S", + "atmos.clc.tavg-al-hxy-u.mon.GLB", + "atmos.clcalipso.tavg-220hPa-hxy-air.mon.30S-90S", + "atmos.clcalipso.tavg-220hPa-hxy-air.mon.GLB", + "atmos.clcalipso.tavg-560hPa-hxy-air.mon.30S-90S", + "atmos.clcalipso.tavg-560hPa-hxy-air.mon.GLB", + "atmos.clcalipso.tavg-840hPa-hxy-air.mon.30S-90S", + "atmos.clcalipso.tavg-840hPa-hxy-air.mon.GLB", + "atmos.clcalipso.tavg-h40-hxy-air.mon.30S-90S", + "atmos.cldnci.tavg-u-hxy-cl.mon.GLB", + "atmos.cldncl.tavg-u-hxy-cl.mon.GLB", + "atmos.cldnvi.tavg-u-hxy-u.day.GLB", + "atmos.cldnvi.tavg-u-hxy-u.mon.GLB", + "atmos.cli.tavg-al-hxy-u.mon.30S-90S", + "atmos.clic.tavg-al-hxy-u.mon.30S-90S", + "atmos.clis.tavg-al-hxy-u.mon.30S-90S", + "atmos.clisccp.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clisccp.tavg-p7c-hxy-air.mon.GLB", + "atmos.clivi.tavg-u-hxy-u.mon.30S-90S", + "atmos.clivimodis.tavg-u-hxy-u.mon.30S-90S", + "atmos.clmodis.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clmodis.tavg-p7c-hxy-air.mon.GLB", + "atmos.clmodisice.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clmodisice.tavg-p7c-hxy-air.mon.GLB", + "atmos.clmodisiceReff.tavg-u-hxy-u.mon.GLB", + "atmos.clmodisliquid.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clmodisliquid.tavg-p7c-hxy-air.mon.GLB", + "atmos.clmodisliquidReff.tavg-u-hxy-u.mon.GLB", + "atmos.cls.tavg-al-hxy-u.mon.30S-90S", + "atmos.clt.tavg-u-hxy-lnd.day.GLB", + "atmos.clt.tavg-u-hxy-u.mon.30S-90S", + "atmos.cltc.tavg-u-hxy-u.mon.GLB", + "atmos.cltcalipso.tavg-u-hxy-u.mon.30S-90S", + "atmos.cltisccp.tavg-u-hxy-u.mon.30S-90S", + "atmos.cltmodis.tavg-u-hxy-u.mon.30S-90S", + "atmos.clw.tavg-al-hxy-u.mon.30S-90S", + "atmos.clwc.tavg-al-hxy-u.mon.30S-90S", + "atmos.clws.tavg-al-hxy-u.mon.30S-90S", + "atmos.clwvi.tavg-u-hxy-u.mon.30S-90S", + "atmos.clwvimodis.tavg-u-hxy-u.mon.30S-90S", + "atmos.co2.tavg-al-hxy-u.mon.GLB", + "atmos.co2.tavg-p19-hxy-air.mon.GLB", + "atmos.co2.tclm-p19-hxy-air.mon.GLB", + "atmos.co2.tclm-u-hm-u.mon.GLB", + "atmos.co23D.tavg-al-hxy-u.mon.GLB", + "atmos.co2mass.tavg-u-hm-u.mon.GLB", + "atmos.dmc.tavg-alh-hxy-u.mon.30S-90S", + "atmos.edt.tavg-al-hxy-u.mon.30S-90S", + "atmos.evspsbl.tavg-u-hxy-lnd.day.GLB", + "atmos.evu.tavg-al-hxy-u.mon.30S-90S", + "atmos.fco2antt.tavg-u-hxy-u.mon.GLB", + "atmos.fco2fos.tavg-u-hxy-u.mon.GLB", + "atmos.fco2nat.tavg-u-hxy-u.mon.GLB", + "atmos.hfls.tavg-u-hxy-u.day.GLB", + "atmos.hfls.tavg-u-hxy-u.mon.30S-90S", + "atmos.hfss.tavg-u-hxy-u.day.GLB", + "atmos.hfss.tavg-u-hxy-u.mon.30S-90S", + "atmos.hur.tavg-al-hxy-u.mon.30S-90S", + "atmos.hur.tavg-al-hxy-u.mon.GLB", + "atmos.hur.tavg-p19-hxy-air.mon.30S-90S", + "atmos.hurs.tavg-h2m-hxy-u.mon.30S-90S", + "atmos.hurs.tmax-h2m-hxy-u.day.GLB", + "atmos.hurs.tmin-h2m-hxy-u.day.GLB", + "atmos.hurs.tpt-h2m-hxy-u.3hr.GLB", + "atmos.hus.tavg-al-hxy-u.mon.30S-90S", + "atmos.hus.tavg-al-hxy-u.mon.GLB", + "atmos.hus.tavg-p19-hxy-u.mon.30S-90S", + "atmos.hus.tpt-al-hxy-u.6hr.GLB", + "atmos.hus.tpt-p7h-hxy-air.6hr.GLB", + "atmos.huss.tavg-h2m-hxy-u.mon.30S-90S", + "atmos.huss.tpt-h2m-hxy-u.1hr.GLB", + "atmos.loadbc.tavg-u-hxy-u.day.GLB", + "atmos.loadoa.tavg-u-hxy-u.day.GLB", + "atmos.loadpoa.tavg-u-hxy-u.day.GLB", + "atmos.loadso4.tavg-u-hxy-u.mon.GLB", + "atmos.mc.tavg-alh-hxy-u.mon.GLB", + "atmos.mcd.tavg-alh-hxy-u.mon.30S-90S", + "atmos.mcu.tavg-alh-hxy-u.mon.30S-90S", + "atmos.mcu.tavg-alh-hxy-u.mon.GLB", + "atmos.pctisccp.tavg-u-hxy-cl.mon.30S-90S", + "atmos.pfull.tavg-al-hxy-u.mon.GLB", + "atmos.pfull.tclm-al-hxy-u.mon.30S-90S", + "atmos.phalf.tavg-alh-hxy-u.mon.GLB", + "atmos.pr.tavg-u-hxy-u.mon.30S-90S", + "atmos.pr.tmax-u-hxy-u.day.GLB", + "atmos.pr.tmax-u-hxy-u.mon.GLB", + "atmos.pr.tpt-u-hxy-u.6hr.GLB", + "atmos.prc.tavg-u-hxy-u.mon.30S-90S", + "atmos.prra.tavg-u-hxy-lnd.day.GLB", + "atmos.prra.tavg-u-hxy-u.mon.30S-90S", + "atmos.prra.tavg-u-hxy-u.mon.GLB", + "atmos.prsn.tavg-u-hxy-u.3hr.GLB", + "atmos.prsn.tavg-u-hxy-u.day.GLB", + "atmos.prsn.tavg-u-hxy-u.mon.30S-90S", + "atmos.prw.tavg-u-hxy-u.day.GLB", + "atmos.prw.tavg-u-hxy-u.mon.30S-90S", + "atmos.ps.tavg-u-hxy-u.1hr.GLB", + "atmos.ps.tavg-u-hxy-u.mon.30S-90S", + "atmos.ps.tpt-u-hxy-u.6hr.GLB", + "atmos.psl.tavg-u-hxy-u.mon.30S-90S", + "atmos.psl.tpt-u-hxy-u.1hr.GLB", + "atmos.psl.tpt-u-hxy-u.6hr.GLB", + "atmos.ptp.tavg-u-hxy-u.mon.GLB", + "atmos.reffcclwtop.tavg-u-hxy-ccl.mon.GLB", + "atmos.reffclic.tavg-al-hxy-ccl.mon.30S-90S", + "atmos.reffclis.tavg-al-hxy-scl.mon.30S-90S", + "atmos.reffclwc.tavg-al-hxy-ccl.mon.30S-90S", + "atmos.reffclws.tavg-al-hxy-scl.mon.30S-90S", + "atmos.reffsclwtop.tavg-u-hxy-scl.mon.GLB", + "atmos.rld.tavg-alh-hxy-u.mon.GLB", + "atmos.rld4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rldcs.tavg-alh-hxy-u.mon.GLB", + "atmos.rldcs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rlds.tavg-u-hxy-u.1hr.GLB", + "atmos.rlds.tavg-u-hxy-u.3hr.GLB", + "atmos.rlds.tavg-u-hxy-u.day.GLB", + "atmos.rlds.tavg-u-hxy-u.mon.30S-90S", + "atmos.rldscs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rls.tavg-u-hxy-u.mon.GLB", + "atmos.rlu.tavg-alh-hxy-u.mon.GLB", + "atmos.rlu4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rlucs.tavg-alh-hxy-u.mon.GLB", + "atmos.rlucs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rlus.tavg-u-hxy-u.day.GLB", + "atmos.rlus.tavg-u-hxy-u.mon.30S-90S", + "atmos.rlut.tavg-u-hxy-u.mon.30S-90S", + "atmos.rlut4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rlutcs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rlutcs4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rsd.tavg-alh-hxy-u.mon.GLB", + "atmos.rsd4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsdcs.tavg-alh-hxy-u.mon.GLB", + "atmos.rsdcs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsds.tavg-u-hxy-u.1hr.GLB", + "atmos.rsds.tavg-u-hxy-u.3hr.GLB", + "atmos.rsds.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsdscs.tavg-u-hxy-u.day.GLB", + "atmos.rsdscs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsdt.tavg-u-hxy-u.mon.30S-90S", + "atmos.rss.tavg-u-hxy-u.mon.GLB", + "atmos.rsu.tavg-alh-hxy-u.mon.GLB", + "atmos.rsu4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsucs.tavg-alh-hxy-u.mon.GLB", + "atmos.rsucs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsus.tavg-u-hxy-u.day.GLB", + "atmos.rsus.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsuscs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsut.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsut4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rsutcs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsutcs4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rtmt.tavg-u-hxy-u.mon.GLB", + "atmos.rv850.tpt-850hPa-hxy-air.6hr.GLB", + "atmos.scldncl.tavg-u-hxy-scl.mon.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.mon.30S-90S", + "atmos.sfcWind.tmax-h10m-hxy-u.day.GLB", + "atmos.sfcWind.tmaxavg-h10m-hxy-u.mon.GLB", + "atmos.ta.tavg-850hPa-hxy-air.day.GLB", + "atmos.ta.tavg-al-hxy-u.mon.30S-90S", + "atmos.ta.tavg-al-hxy-u.mon.GLB", + "atmos.ta.tavg-p19-hxy-air.mon.30S-90S", + "atmos.ta.tavg-p39-hy-air.mon.GLB", + "atmos.ta.tpt-al-hxy-u.6hr.GLB", + "atmos.ta.tpt-p5u-hxy-u.6hr.GLB", + "atmos.ta.tpt-p7h-hxy-air.6hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.1hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.mon.30S-90S", + "atmos.tas.tmaxavg-h2m-hxy-u.mon.30S-90S", + "atmos.tas.tminavg-h2m-hxy-u.mon.30S-90S", + "atmos.tnt.tavg-al-hxy-u.mon.GLB", + "atmos.tntrl.tavg-al-hxy-u.mon.GLB", + "atmos.tntrs.tavg-al-hxy-u.mon.GLB", + "atmos.ts.tavg-u-hxy-u.mon.30S-90S", + "atmos.ts.tpt-u-hxy-u.3hr.GLB", + "atmos.ts.tpt-u-hxy-u.6hr.GLB", + "atmos.ua.tavg-al-hxy-u.mon.GLB", + "atmos.ua.tavg-p19-hxy-air.mon.30S-90S", + "atmos.ua.tavg-p39-hy-air.mon.GLB", + "atmos.ua.tpt-al-hxy-u.6hr.GLB", + "atmos.ua.tpt-h100m-hxy-u.1hr.GLB", + "atmos.ua.tpt-p5u-hxy-air.6hr.GLB", + "atmos.ua.tpt-p7h-hxy-air.6hr.GLB", + "atmos.uas.tavg-h10m-hxy-u.mon.30S-90S", + "atmos.uas.tpt-h10m-hxy-u.1hr.GLB", + "atmos.va.tavg-al-hxy-u.mon.GLB", + "atmos.va.tavg-p19-hxy-air.mon.30S-90S", + "atmos.va.tavg-p39-hy-air.mon.GLB", + "atmos.va.tpt-al-hxy-u.6hr.GLB", + "atmos.va.tpt-h100m-hxy-u.1hr.GLB", + "atmos.va.tpt-p5u-hxy-air.6hr.GLB", + "atmos.va.tpt-p7h-hxy-air.6hr.GLB", + "atmos.vas.tavg-h10m-hxy-u.mon.30S-90S", + "atmos.vas.tpt-h10m-hxy-u.1hr.GLB", + "atmos.wap.tavg-p19-hxy-air.mon.30S-90S", + "atmos.wsg.tmax-h100m-hxy-u.1hr.GLB", + "atmos.wsg.tmax-h10m-hxy-u.1hr.GLB", + "atmos.zg.tavg-1000hPa-hxy-air.day.GLB", + "atmos.zg.tavg-500hPa-hxy-air.day.GLB", + "atmos.zg.tavg-al-hxy-u.mon.GLB", + "atmos.zg.tavg-p19-hxy-air.mon.30S-90S", + "atmos.zg.tavg-p39-hy-air.mon.GLB", + "atmos.zg.tpt-500hPa-hxy-air.6hr.GLB", + "atmos.zg.tpt-al-hxy-u.6hr.GLB", + "atmos.zg.tpt-p7h-hxy-air.6hr.GLB", + "atmos.ztp.tavg-u-hxy-u.mon.GLB", + "atmosChem.c2h4.tavg-al-hxy-u.mon.GLB", + "atmosChem.c2h5oh.tavg-al-hxy-u.mon.GLB", + "atmosChem.c4h10.tavg-al-hxy-u.mon.GLB", + "atmosChem.cfc11.tavg-u-hm-u.mon.GLB", + "atmosChem.cfc113.tavg-u-hm-u.mon.GLB", + "atmosChem.cfc12.tavg-u-hm-u.mon.GLB", + "atmosChem.ch3oh.tavg-al-hxy-u.mon.GLB", + "atmosChem.ch4.tavg-al-hxy-u.mon.GLB", + "atmosChem.ch4.tavg-p39-hy-air.mon.GLB", + "atmosChem.ch4losssoil.tavg-u-hxy-u.mon.GLB", + "atmosChem.ch4ref.ti-al-hxy-u.fx.GLB", + "atmosChem.chegph2oo1d.tavg-al-hxy-u.mon.GLB", + "atmosChem.chepnh4.tavg-al-hxy-u.mon.GLB", + "atmosChem.chepno3.tavg-al-hxy-u.mon.GLB", + "atmosChem.dms.tavg-al-hxy-u.mon.30S-90S", + "atmosChem.dms.tavg-al-hxy-u.mon.GLB", + "atmosChem.do3chm.tavg-al-hxy-u.mon.GLB", + "atmosChem.dryh2.tavg-u-hxy-u.mon.GLB", + "atmosChem.dryhno3.tavg-u-hxy-u.mon.GLB", + "atmosChem.drynh3.tavg-u-hxy-u.mon.GLB", + "atmosChem.drynh4.tavg-u-hxy-u.mon.GLB", + "atmosChem.drynoy.tavg-u-hxy-u.mon.GLB", + "atmosChem.e90inst.tpt-al-hxy-u.mon.GLB", + "atmosChem.emiach4.tavg-u-hxy-u.mon.GLB", + "atmosChem.emiavnox.tavg-al-hxy-u.mon.GLB", + "atmosChem.emic2h4.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic2h5oh.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic2h6.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic3h6.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic3h8.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic4h10.tavg-u-hxy-u.mon.GLB", + "atmosChem.emich3oh.tavg-u-hxy-u.mon.GLB", + "atmosChem.emich4.tavg-u-hxy-u.mon.GLB", + "atmosChem.emih2.tavg-u-hxy-u.mon.GLB", + "atmosChem.emilkch4.tavg-u-hxy-u.mon.GLB", + "atmosChem.h2.tavg-al-hxy-u.mon.GLB", + "atmosChem.h2loss.tavg-al-hxy-u.mon.GLB", + "atmosChem.h2prod.tavg-al-hxy-u.mon.GLB", + "atmosChem.hcfc22.tavg-u-hm-u.mon.GLB", + "atmosChem.meanage.tavg-al-hxy-u.mon.GLB", + "atmosChem.meanage.tavg-p39-hy-air.mon.GLB", + "atmosChem.n2o.tavg-al-hxy-u.mon.GLB", + "atmosChem.n2o.tavg-p39-hy-air.mon.GLB", + "atmosChem.o3.tavg-al-hxy-u.mon.GLB", + "atmosChem.o3.tavg-p19-hxy-air.mon.GLB", + "atmosChem.o3.tavg-p39-hy-air.mon.GLB", + "atmosChem.o3.tpt-al-hxy-u.mon.GLB", + "atmosChem.o3ref.tclm-al-hxy-u.fx.GLB", + "atmosChem.o3ref.ti-al-hxy-u.fx.GLB", + "atmosChem.o3ste.tavg-al-hxy-u.mon.GLB", + "atmosChem.rlutch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rlutcsch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rlutcso3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rluto3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsutch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsutcsch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsutcso3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsuto3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.stratch4loss.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropch4loss.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropch4lossoh.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropdo3chm.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropo3ste.tavg-al-hxy-u.mon.GLB", + "atmosChem.wethno3.tavg-al-hxy-u.mon.GLB", + "atmosChem.wetnh3.tavg-u-hxy-u.mon.GLB", + "atmosChem.wetnh4.tavg-u-hxy-u.mon.GLB", + "atmosChem.wetno3.tavg-al-hxy-u.mon.GLB", + "atmosChem.wetnoy.tavg-u-hxy-u.mon.GLB", + "land.albc.tavg-u-hxy-veg.mon.GLB", + "land.areacellr.ti-u-hxy-u.fx.GLB", + "land.baresoilFrac.tavg-u-hxy-u.mon.GLB", + "land.burntFractionAll.tavg-u-hxy-u.mon.GLB", + "land.cGeologicStorage.tavg-u-hxy-u.mon.GLB", + "land.cLand.tavg-u-hxy-lnd.mon.GLB", + "land.cLeaf.tavg-u-hxy-lnd.mon.GLB", + "land.cLitter.tavg-u-hxy-lnd.mon.GLB", + "land.cnc.tavg-u-hxy-u.mon.GLB", + "land.cProduct.tavg-u-hxy-lnd.mon.GLB", + "land.cRoot.tavg-u-hxy-lnd.mon.GLB", + "land.cropFrac.tavg-u-hxy-u.mon.GLB", + "land.cSoil.tavg-d100cm-hxy-lnd.mon.GLB", + "land.cSoil.tavg-u-hxy-lnd.mon.GLB", + "land.cStem.tavg-u-hxy-lnd.mon.GLB", + "land.cVeg.tavg-u-hxy-lnd.mon.GLB", + "land.dcw.tavg-u-hxy-lnd.day.GLB", + "land.dslw.tavg-u-hxy-lnd.day.GLB", + "land.evspsblpot.tavg-u-hxy-lnd.day.GLB", + "land.evspsblpot.tavg-u-hxy-lnd.mon.GLB", + "land.evspsblsoi.tavg-u-hxy-u.day.GLB", + "land.evspsblveg.tavg-u-hxy-u.day.GLB", + "land.fAnthDisturb.tavg-u-hxy-lnd.mon.GLB", + "land.fBNF.tavg-u-hxy-lnd.mon.GLB", + "land.fCLandToOcean.tavg-u-hxy-lnd.mon.GLB", + "land.fDeforestToAtmos.tavg-u-hxy-lnd.mon.GLB", + "land.fDeforestToProduct.tavg-u-hxy-lnd.mon.GLB", + "land.fFire.tavg-u-hxy-lnd.mon.GLB", + "land.fFireAll.tavg-u-hxy-lnd.mon.GLB", + "land.fFireNat.tavg-u-hxy-lnd.mon.GLB", + "land.fHarvestToAtmos.tavg-u-hxy-lnd.mon.GLB", + "land.fHarvestToGeologicStorage.tavg-u-hxy-lnd.mon.GLB", + "land.fHarvestToProduct.tavg-u-hxy-lnd.mon.GLB", + "land.fLitterSoil.tavg-u-hxy-lnd.mon.GLB", + "land.fLuc.tavg-u-hxy-lnd.mon.GLB", + "land.fN2O.tavg-u-hxy-lnd.mon.GLB", + "land.fNAnthDisturb.tavg-u-hxy-lnd.mon.GLB", + "land.fNdep.tavg-u-hxy-lnd.mon.GLB", + "land.fNfert.tavg-u-hxy-lnd.mon.GLB", + "land.fNgas.tavg-u-hxy-lnd.mon.GLB", + "land.fNgasFire.tavg-u-hxy-lnd.mon.GLB", + "land.fNLandToOcean.tavg-u-hxy-lnd.mon.GLB", + "land.fNleach.tavg-u-hxy-lnd.mon.GLB", + "land.fNLitterSoil.tavg-u-hxy-lnd.mon.GLB", + "land.fNloss.tavg-u-hxy-lnd.mon.GLB", + "land.fNnetmin.tavg-u-hxy-lnd.mon.GLB", + "land.fNOx.tavg-u-hxy-lnd.mon.GLB", + "land.fNProduct.tavg-u-hxy-lnd.mon.GLB", + "land.fNup.tavg-u-hxy-lnd.mon.GLB", + "land.fNVegLitter.tavg-u-hxy-lnd.mon.GLB", + "land.fNVegSoil.tavg-u-hxy-lnd.mon.GLB", + "land.fProductDecomp.tavg-u-hxy-lnd.mon.GLB", + "land.fVegLitter.tavg-u-hxy-lnd.mon.GLB", + "land.fVegSoil.tavg-u-hxy-lnd.mon.GLB", + "land.gpp.tavg-u-hxy-lnd.mon.GLB", + "land.grassFrac.tavg-u-hxy-u.mon.GLB", + "land.landCoverFrac.tavg-u-hxy-u.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.day.GLB", + "land.mrrob.tavg-u-hxy-lnd.day.GLB", + "land.mrros.tavg-u-hxy-lnd.day.GLB", + "land.mrsfl.tavg-sl-hxy-lnd.day.GLB", + "land.mrsfl.tavg-sl-hxy-lnd.mon.GLB", + "land.mrsll.tavg-sl-hxy-lnd.day.GLB", + "land.mrsll.tavg-sl-hxy-lnd.mon.GLB", + "land.mrso.tavg-u-hxy-lnd.day.GLB", + "land.mrsol.tavg-d10cm-hxy-lnd.day.GLB", + "land.mrsol.tavg-sl-hxy-lnd.day.GLB", + "land.mrsol.tavg-sl-hxy-lnd.mon.GLB", + "land.mrsow.tavg-u-hxy-lnd.day.GLB", + "land.mrtws.tavg-u-hxy-lnd.day.GLB", + "land.mrtws.tavg-u-hxy-lnd.mon.GLB", + "land.nbp.tavg-u-hxy-lnd.mon.GLB", + "land.nep.tavg-u-hxy-lnd.mon.GLB", + "land.nLand.tavg-u-hxy-lnd.mon.GLB", + "land.nLitter.tavg-u-hxy-lnd.mon.GLB", + "land.nMineral.tavg-u-hxy-lnd.mon.GLB", + "land.npp.tavg-u-hxy-lnd.mon.GLB", + "land.nProduct.tavg-u-hxy-lnd.mon.GLB", + "land.nSoil.tavg-u-hxy-lnd.mon.GLB", + "land.nVeg.tavg-u-hxy-lnd.mon.GLB", + "land.pastureFrac.tavg-u-hxy-u.mon.GLB", + "land.prveg.tavg-u-hxy-lnd.mon.GLB", + "land.ra.tavg-u-hxy-lnd.mon.GLB", + "land.residualFrac.tavg-u-hxy-u.mon.GLB", + "land.rh.tavg-u-hxy-lnd.mon.GLB", + "land.rivi.tavg-u-hxy-lnd.day.GLB", + "land.rivo.tavg-u-hxy-lnd.day.GLB", + "land.rsds.tavg-u-hxy-sn.mon.GLB", + "land.rsus.tavg-u-hxy-sn.mon.GLB", + "land.shrubFrac.tavg-u-hxy-u.mon.GLB", + "land.tas.tavg-u-hxy-u.1hr.GLB", + "land.tran.tavg-u-hxy-lnd.mon.GLB", + "land.treeFrac.tavg-u-hxy-u.mon.GLB", + "land.tsl.tavg-sl-hxy-lnd.mon.GLB", + "land.tslsi.tavg-u-hxy-u.day.GLB", + "land.vegFrac.tavg-u-hxy-u.mon.GLB", + "land.vegHeight.tavg-u-hxy-tree.mon.GLB", + "land.vegHeight.tavg-u-hxy-veg.mon.GLB", + "land.wetlandCH4.tavg-u-hxy-lnd.mon.GLB", + "land.wtd.tavg-u-hxy-lnd.day.GLB", + "landIce.pflw.tavg-u-hxy-lnd.mon.GLB", + "landIce.snd.tavg-u-hxy-lnd.mon.GLB", + "landIce.snm.tavg-u-hxy-lnd.mon.GLB", + "landIce.snw.tavg-u-hxy-lnd.day.GLB", + "landIce.sootsn.tavg-u-hxy-lnd.mon.GLB", + "landIce.tpf.tavg-u-hxy-lnd.mon.GLB", + "ocean.absscint.tavg-op4-hxy-sea.mon.GLB", + "ocean.agessc.tavg-ol-hxy-sea.mon.GLB", + "ocean.bigthetao.tavg-ol-hm-sea.mon.GLB", + "ocean.bigthetao.tavg-ol-hxy-sea.dec.GLB", + "ocean.bigthetao.tavg-op20bar-hxy-sea.day.GLB", + "ocean.chcint.tavg-op4-hxy-sea.mon.GLB", + "ocean.ficeberg.tavg-ol-hxy-sea.mon.GLB", + "ocean.friver.tavg-u-hxy-sea.mon.GLB", + "ocean.hfbasin.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpmadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpmdiff.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpsmadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfds.tavg-u-hxy-sea.mon.30S-90S", + "ocean.hfx.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfx.tavg-u-hxy-sea.day.GLB", + "ocean.hfx.tavg-u-hxy-sea.mon.GLB", + "ocean.hfy.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfy.tavg-u-hxy-sea.day.GLB", + "ocean.hfy.tavg-u-hxy-sea.mon.GLB", + "ocean.htovgyre.tavg-u-hyb-sea.mon.GLB", + "ocean.htovovrt.tavg-u-hyb-sea.mon.GLB", + "ocean.masscello.tavg-ol-hxy-sea.dec.GLB", + "ocean.masso.tavg-u-hm-sea.dec.GLB", + "ocean.masso.tavg-u-hm-sea.mon.GLB", + "ocean.mlotst.tavg-u-hxy-sea.day.GLB", + "ocean.mlotst.tavg-u-hxy-sea.mon.30S-90S", + "ocean.mlotst.tmax-u-hxy-sea.mon.GLB", + "ocean.mlotst.tmin-u-hxy-sea.mon.GLB", + "ocean.mpw.tavg-u-hxy-sea.mon.GLB", + "ocean.mpw.tpt-u-hxy-sea.3hr.GLB", + "ocean.mpwswell.tavg-u-hxy-sea.mon.GLB", + "ocean.mpwswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.mpwwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.mpwwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.msftbarot.tavg-u-hxy-sea.mon.GLB", + "ocean.msftm.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftm.tavg-rho-hyb-sea.mon.GLB", + "ocean.msfty.tavg-ol-ht-sea.mon.GLB", + "ocean.msfty.tavg-rho-ht-sea.mon.GLB", + "ocean.obvfsq.tavg-ol-hxy-sea.mon.GLB", + "ocean.pbo.tavg-u-hxy-sea.mon.GLB", + "ocean.pfscint.tavg-op4-hxy-sea.mon.GLB", + "ocean.phcint.tavg-op4-hxy-sea.mon.GLB", + "ocean.pso.tavg-u-hxy-sea.mon.GLB", + "ocean.scint.tavg-op4-hxy-sea.mon.GLB", + "ocean.sduo.tavg-u-hxy-sea.mon.GLB", + "ocean.sduo.tpt-u-hxy-sea.3hr.GLB", + "ocean.sdvo.tavg-u-hxy-sea.mon.GLB", + "ocean.sdvo.tpt-u-hxy-sea.3hr.GLB", + "ocean.sfx.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfx.tavg-u-hxy-sea.mon.GLB", + "ocean.sfy.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfy.tavg-u-hxy-sea.mon.GLB", + "ocean.sltbasin.tavg-u-hyb-sea.mon.GLB", + "ocean.sltovgyre.tavg-u-hyb-sea.mon.GLB", + "ocean.sltovovrt.tavg-u-hyb-sea.mon.GLB", + "ocean.so.tavg-ol-hm-sea.mon.GLB", + "ocean.so.tavg-ol-hxy-sea.dec.GLB", + "ocean.so.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.sob.tavg-u-hxy-sea.mon.GLB", + "ocean.sos.tavg-u-hm-sea.mon.30S-90S", + "ocean.sos.tavg-u-hm-sea.mon.GLB", + "ocean.swh.tavg-u-hxy-sea.mon.GLB", + "ocean.swh.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhmax.tmax-u-hxy-sea.mon.GLB", + "ocean.swhmax.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhswell.tavg-u-hxy-sea.mon.GLB", + "ocean.swhswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.swhwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.t20d.tavg-u-hxy-sea.mon.GLB", + "ocean.tauuo.tavg-u-hxy-sea.3hr.GLB", + "ocean.tauuo.tavg-u-hxy-sea.dec.GLB", + "ocean.tauvo.tavg-u-hxy-sea.3hr.GLB", + "ocean.tauvo.tavg-u-hxy-sea.dec.GLB", + "ocean.thetao.tavg-d2000m-hxy-sea.mon.GLB", + "ocean.thetao.tavg-d300m-hxy-sea.mon.GLB", + "ocean.thetao.tavg-d700m-hxy-sea.mon.GLB", + "ocean.thetao.tavg-ol-hm-sea.mon.GLB", + "ocean.thetao.tavg-ol-hxy-sea.dec.GLB", + "ocean.thetao.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.thetao.tavg-op20bar-hxy-sea.day.GLB", + "ocean.thetaot.tavg-u-hxy-sea.mon.GLB", + "ocean.thkcello.tavg-ol-hxy-sea.dec.GLB", + "ocean.tob.tavg-u-hxy-sea.mon.GLB", + "ocean.tos.tavg-u-hm-sea.mon.GLB", + "ocean.tos.tavg-u-hxy-sea.mon.30S-90S", + "ocean.tos.tpt-u-hxy-sea.3hr.GLB", + "ocean.tossq.tavg-u-hxy-sea.day.GLB", + "ocean.umo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.uo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.uos.tavg-u-hxy-sea.day.GLB", + "ocean.vmo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.vo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.volcello.tavg-ol-hxy-sea.dec.GLB", + "ocean.volcello.tavg-ol-hxy-sea.mon.GLB", + "ocean.volcello.tavg-ol-hxy-sea.yr.GLB", + "ocean.volcello.ti-ol-hxy-sea.fx.GLB", + "ocean.volo.tavg-u-hm-sea.dec.GLB", + "ocean.volo.tavg-u-hm-sea.mon.GLB", + "ocean.vos.tavg-u-hxy-sea.day.GLB", + "ocean.vsf.tavg-u-hxy-sea.mon.GLB", + "ocean.wdir.tavg-u-hxy-sea.mon.GLB", + "ocean.wdir.tpt-u-hxy-sea.3hr.GLB", + "ocean.wdirswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wdirswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wdirwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wdirwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.wfcorr.tavg-u-hxy-sea.mon.GLB", + "ocean.wfo.tavg-u-hxy-sea.mon.GLB", + "ocean.wmo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.wo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.wpdir.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdir.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpdirswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdirswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpdirwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdirwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpp.tavg-u-hxy-sea.mon.GLB", + "ocean.wpp.tpt-u-hxy-sea.3hr.GLB", + "ocean.wppswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wppswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wppwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wppwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.zfullo.tavg-ol-hxy-sea.yr.GLB", + "ocean.zos.tavg-u-hxy-sea.mon.30S-90S", + "ocean.zossq.tavg-u-hxy-sea.mon.GLB", + "ocean.zostoga.tavg-u-hm-sea.day.GLB", + "ocnBgchem.bacc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.calc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chl.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chl.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.chl.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chlcalc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chldiat.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chldiat.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chldiaz.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chldiaz.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chlmisc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chlmisc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chlpico.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chlpico.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.detoc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dfe.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.dfe.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.dfe.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissic.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.dissic.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissoc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dmso.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.expc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.expcalc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.fgco2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fsfe.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fsn.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.graz.tavg-ol-hxy-sea.mon.30S-90S", + "ocnBgchem.icfriver.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intdic.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intdoc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intparag.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbfe.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbn.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbp.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbsi.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpcalcite.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpn2.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpoc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpp.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpp.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppcalc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppdiat.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppdiaz.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppmisc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppnitrate.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpppico.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.nh4.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.nh4.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.no3.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.no3.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.o2.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.ocfriver.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.ph.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.ph.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phyc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phyc.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.phyc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phycalc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phycalc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phydiat.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phydiat.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phydiaz.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phydiaz.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phymisc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phymisc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phypico.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phypico.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.po4.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.pp.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.si.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.spco2.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.spco2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.talk.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zmeso.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zmeso.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zmicro.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zmicro.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zmisc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zmisc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zooc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zooc.tavg-ol-hxy-sea.mon.GLB", + "seaIce.evspsbl.tavg-u-hxy-si.mon.GLB", + "seaIce.prra.tavg-u-hxy-si.mon.GLB", + "seaIce.prsn.tavg-u-hxy-si.mon.GLB", + "seaIce.rlds.tavg-u-hxy-si.mon.GLB", + "seaIce.rlus.tavg-u-hxy-si.mon.GLB", + "seaIce.rsds.tavg-u-hxy-si.day.GLB", + "seaIce.rsds.tavg-u-hxy-si.mon.GLB", + "seaIce.rsus.tavg-u-hxy-si.day.GLB", + "seaIce.rsus.tavg-u-hxy-si.mon.GLB", + "seaIce.sbl.tavg-u-hxy-si.mon.GLB", + "seaIce.siage.tavg-u-hxy-si.day.GLB", + "seaIce.siage.tavg-u-hxy-si.mon.30S-90S", + "seaIce.siarea.tavg-u-hm-u.mon.NH", + "seaIce.siarea.tavg-u-hm-u.mon.SH", + "seaIce.siconc.tavg-u-hxy-u.mon.30S-90S", + "seaIce.siconca.tavg-u-hxy-u.day.GLB", + "seaIce.siconca.tavg-u-hxy-u.mon.GLB", + "seaIce.sidconcdyn.tavg-u-hxy-sea.mon.GLB", + "seaIce.sidconcth.tavg-u-hxy-sea.mon.GLB", + "seaIce.sidmassdyn.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthsi.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthwat.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmeltbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmeltlat.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmelttop.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassth.tavg-u-hxy-si.mon.GLB", + "seaIce.sieqthick.tavg-u-hxy-si.mon.GLB", + "seaIce.siextent.tavg-u-hm-u.mon.NH", + "seaIce.siextent.tavg-u-hm-u.mon.SH", + "seaIce.siflcondbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflcondtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sifllattop.tavg-u-hxy-si.mon.GLB", + "seaIce.siflsensbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflsenstop.tavg-u-hxy-si.mon.GLB", + "seaIce.siflswdbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sihc.tavg-u-hxy-sea.mon.GLB", + "seaIce.sisndmassdyn.tavg-u-hxy-si.mon.GLB", + "seaIce.sisndmasssi.tavg-u-hxy-si.mon.GLB", + "seaIce.sisndmasswind.tavg-u-hxy-si.mon.GLB", + "seaIce.sisnhc.tavg-u-hxy-si.mon.GLB", + "seaIce.sisnmass.tavg-u-hm-u.mon.NH", + "seaIce.sisnmass.tavg-u-hm-u.mon.SH", + "seaIce.sispeed.tavg-u-hxy-si.day.GLB", + "seaIce.sispeed.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-si.day.GLB", + "seaIce.sithick.tavg-u-hxy-si.mon.30S-90S", + "seaIce.sitimefrac.tavg-u-hxy-sea.day.GLB", + "seaIce.sitimefrac.tavg-u-hxy-sea.mon.30S-90S", + "seaIce.siu.tavg-u-hxy-si.day.GLB", + "seaIce.siu.tavg-u-hxy-si.mon.30S-90S", + "seaIce.siv.tavg-u-hxy-si.day.GLB", + "seaIce.siv.tavg-u-hxy-si.mon.30S-90S", + "seaIce.sivol.tavg-u-hm-u.mon.NH", + "seaIce.sivol.tavg-u-hm-u.mon.SH", + "seaIce.snc.tavg-u-hxy-si.mon.GLB", + "seaIce.snd.tavg-u-hxy-sn.day.GLB", + "seaIce.snd.tavg-u-hxy-sn.mon.30S-90S", + "seaIce.snm.tavg-u-hxy-si.mon.GLB", + "seaIce.snw.tavg-u-hxy-si.mon.GLB", + "seaIce.ts.tavg-u-hxy-si.day.GLB", + "seaIce.ts.tavg-u-hxy-si.mon.30S-90S" + ], + "Medium": [ + "atmos.co2.tavg-h2m-hxy-u.mon.GLB", + "atmos.epfy.tavg-p39-hy-air.mon.GLB", + "atmos.epfz.tavg-p39-hy-air.mon.GLB", + "atmos.hfdsnb.tavg-u-hxy-lnd.day.GLB", + "atmos.noaahi2m.tavg-h2m-hxy-u.day.GLB", + "atmos.noaahi2m.tmax-h2m-hxy-u.day.GLB", + "atmos.pr.tavg-u-hxy-u.6hr.GLB", + "atmos.pr.tmax-u-hxy-u.6hr.GLB", + "atmos.prrsn.tavg-u-hxy-lnd.day.GLB", + "atmos.prsn.tavg-u-hxy-u.6hr.GLB", + "atmos.prsnc.tavg-u-hxy-lnd.day.GLB", + "atmos.prsnsn.tavg-u-hxy-lnd.day.GLB", + "atmos.ps.tpt-u-hxy-u.1hr.GLB", + "atmos.ps.tpt-u-hxy-u.3hr.GLB", + "atmos.psl.tavg-u-hxy-u.6hr.GLB", + "atmos.rldscs.tavg-u-hxy-u.day.GLB", + "atmos.rls.tavg-u-hxy-u.day.GLB", + "atmos.rlut.tavg-u-hxy-u.day.GLB", + "atmos.rsdsdiff.tavg-u-hxy-u.1hr.GLB", + "atmos.rsdsdiff.tavg-u-hxy-u.day.GLB", + "atmos.rsdt.tavg-u-hxy-u.day.GLB", + "atmos.rss.tavg-u-hxy-u.day.GLB", + "atmos.rsut.tavg-u-hxy-u.day.GLB", + "atmos.rv850.tavg-850hPa-hxy-air.6hr.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.1hr.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.3hr.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.6hr.GLB", + "atmos.snmsl.tavg-u-hxy-lnd.day.GLB", + "atmos.snrefr.tavg-u-hxy-lnd.day.GLB", + "atmos.snwc.tavg-u-hxy-lnd.day.GLB", + "atmos.tas.tavg-h2m-hxy-u.6hr.GLB", + "atmos.tauu.tavg-u-hxy-u.day.GLB", + "atmos.tauv.tavg-u-hxy-u.day.GLB", + "atmos.tdps.tavg-h2m-hxy-u.day.GLB", + "atmos.tdps.tavg-h2m-hxy-u.mon.GLB", + "atmos.ts.tavg-u-hxy-sn.day.GLB", + "atmos.ts.tavg-u-hxy-u.1hr.GLB", + "atmos.ts.tavg-u-hxy-u.day.GLB", + "atmos.ua.tavg-h100m-hxy-u.3hr.GLB", + "atmos.uas.tavg-h10m-hxy-u.6hr.GLB", + "atmos.utendepfd.tavg-p39-hy-air.mon.GLB", + "atmos.va.tavg-h100m-hxy-u.3hr.GLB", + "atmos.vas.tavg-h10m-hxy-u.6hr.GLB", + "atmos.vtem.tavg-p39-hy-air.mon.GLB", + "atmos.wbgt.tavg-h2m-hxy-u.day.GLB", + "atmos.wbgt.tmax-h2m-hxy-u.day.GLB", + "atmos.wsg.tmax-h100m-hxy-u.mon.GLB", + "atmos.wsg.tmax-h10m-hxy-u.mon.GLB", + "atmos.wtem.tavg-p39-hy-air.mon.GLB", + "atmos.zg.tavg-1000hPa-hxy-air.6hr.GLB", + "land.baresoilFrac.tavg-u-hxy-u.yr.GLB", + "land.cLitterCwd.tavg-u-hxy-lnd.mon.GLB", + "land.cLitterSubSurf.tavg-u-hxy-lnd.mon.GLB", + "land.cLitterSurf.tavg-u-hxy-lnd.mon.GLB", + "land.cOther.tavg-u-hxy-lnd.mon.GLB", + "land.cropFrac.tavg-u-hxy-u.yr.GLB", + "land.cropFracC3.tavg-u-hxy-u.mon.GLB", + "land.cropFracC4.tavg-u-hxy-u.mon.GLB", + "land.cSoil.tavg-sl-hxy-lnd.mon.GLB", + "land.cSoilPools.tavg-u-hxy-lnd.mon.GLB", + "land.cVeg.tavg-u-hxy-ng.mon.GLB", + "land.cVeg.tavg-u-hxy-shb.mon.GLB", + "land.cVeg.tavg-u-hxy-tree.mon.GLB", + "land.depthl.ti-u-hxy-u.fx.GLB", + "land.dgw.tavg-u-hxy-lnd.day.GLB", + "land.drivw.tavg-u-hxy-lnd.day.GLB", + "land.dsn.tavg-u-hxy-lnd.day.GLB", + "land.dsw.tavg-u-hxy-lnd.day.GLB", + "land.esn.tavg-u-hxy-sn.day.GLB", + "land.fLitterFire.tavg-u-hxy-lnd.mon.GLB", + "land.fNgasNonFire.tavg-u-hxy-lnd.mon.GLB", + "land.fVegFire.tavg-u-hxy-lnd.mon.GLB", + "land.fVegLitterMortality.tavg-u-hxy-lnd.mon.GLB", + "land.fVegLitterSenescence.tavg-u-hxy-lnd.mon.GLB", + "land.fVegSoilMortality.tavg-u-hxy-lnd.mon.GLB", + "land.fVegSoilSenescence.tavg-u-hxy-lnd.mon.GLB", + "land.gpp.tavg-u-hxy-ng.mon.GLB", + "land.gpp.tavg-u-hxy-shb.mon.GLB", + "land.gpp.tavg-u-hxy-tree.mon.GLB", + "land.grassFrac.tavg-u-hxy-u.yr.GLB", + "land.grassFracC3.tavg-u-hxy-u.mon.GLB", + "land.grassFracC4.tavg-u-hxy-u.mon.GLB", + "land.irrDem.tavg-u-hxy-u.day.GLB", + "land.irrGw.tavg-u-hxy-u.day.GLB", + "land.irrLut.tavg-u-hxy-u.day.GLB", + "land.irrSurf.tavg-u-hxy-u.day.GLB", + "land.mrro.tavg-u-hxy-lnd.3hr.GLB", + "land.mrros.tavg-u-hxy-lnd.3hr.GLB", + "land.mrsol.tpt-d10cm-hxy-lnd.3hr.GLB", + "land.nLeaf.tavg-u-hxy-lnd.mon.GLB", + "land.nLitterCwd.tavg-u-hxy-lnd.mon.GLB", + "land.nLitterSubSurf.tavg-u-hxy-lnd.mon.GLB", + "land.nLitterSurf.tavg-u-hxy-lnd.mon.GLB", + "land.nMineralNH4.tavg-u-hxy-lnd.mon.GLB", + "land.nMineralNO3.tavg-u-hxy-lnd.mon.GLB", + "land.nOther.tavg-u-hxy-lnd.mon.GLB", + "land.npp.tavg-u-hxy-ng.mon.GLB", + "land.npp.tavg-u-hxy-shb.mon.GLB", + "land.npp.tavg-u-hxy-tree.mon.GLB", + "land.nppLeaf.tavg-u-hxy-lnd.mon.GLB", + "land.nppOther.tavg-u-hxy-lnd.mon.GLB", + "land.nppRoot.tavg-u-hxy-lnd.mon.GLB", + "land.nppStem.tavg-u-hxy-lnd.mon.GLB", + "land.nRoot.tavg-u-hxy-lnd.mon.GLB", + "land.nStem.tavg-u-hxy-lnd.mon.GLB", + "land.pastureFracC3.tavg-u-hxy-u.mon.GLB", + "land.pastureFracC4.tavg-u-hxy-u.mon.GLB", + "land.qgwr.tavg-u-hxy-lnd.day.GLB", + "land.ra.tavg-u-hxy-ng.mon.GLB", + "land.ra.tavg-u-hxy-shb.mon.GLB", + "land.ra.tavg-u-hxy-tree.mon.GLB", + "land.raLeaf.tavg-u-hxy-lnd.mon.GLB", + "land.raOther.tavg-u-hxy-lnd.mon.GLB", + "land.raRoot.tavg-u-hxy-lnd.mon.GLB", + "land.raStem.tavg-u-hxy-lnd.mon.GLB", + "land.residualFrac.tavg-u-hxy-u.yr.GLB", + "land.rh.tavg-u-hxy-ng.mon.GLB", + "land.rh.tavg-u-hxy-shb.mon.GLB", + "land.rh.tavg-u-hxy-tree.mon.GLB", + "land.rhLitter.tavg-u-hxy-lnd.mon.GLB", + "land.rhSoil.tavg-u-hxy-lnd.mon.GLB", + "land.rzwc.tavg-u-hxy-lnd.day.GLB", + "land.sftlaf.ti-u-hxy-u.fx.GLB", + "land.shrubFrac.tavg-u-hxy-u.yr.GLB", + "land.sw.tavg-u-hxy-lnd.day.GLB", + "land.sweLut.tavg-u-hxy-multi.mon.GLB", + "land.treeFrac.tavg-u-hxy-u.yr.GLB", + "land.treeFracBdlDcd.tavg-u-hxy-u.mon.GLB", + "land.treeFracBdlEvg.tavg-u-hxy-u.mon.GLB", + "land.treeFracNdlDcd.tavg-u-hxy-u.mon.GLB", + "land.treeFracNdlEvg.tavg-u-hxy-u.mon.GLB", + "land.tsl.tavg-sl-hxy-lnd.day.GLB", + "land.vegFrac.tavg-u-hxy-u.yr.GLB", + "land.vegHeight.tavg-u-hxy-ng.mon.GLB", + "land.vegHeight.tavg-u-hxy-shb.mon.GLB", + "land.wetlandCH4cons.tavg-u-hxy-lnd.mon.GLB", + "land.wetlandCH4prod.tavg-u-hxy-lnd.mon.GLB", + "land.wetlandFrac.tavg-u-hxy-u.mon.GLB", + "landIce.agesno.tavg-u-hxy-lnd.mon.GLB", + "landIce.hfdsn.tavg-u-hxy-lnd.day.GLB", + "landIce.hfdsn.tavg-u-hxy-lnd.mon.GLB", + "landIce.lwsnl.tavg-u-hxy-lnd.day.GLB", + "landIce.lwsnl.tavg-u-hxy-lnd.mon.GLB", + "landIce.pflw.tavg-u-hxy-lnd.day.GLB", + "landIce.sbl.tavg-u-hxy-lnd.mon.GLB", + "landIce.sbl.tavg-u-hxy-u.day.GLB", + "landIce.sbl.tavg-u-hxy-u.mon.GLB", + "landIce.snc.tavg-u-hxy-lnd.day.GLB", + "landIce.snd.tavg-u-hxy-lnd.day.GLB", + "landIce.snm.tavg-u-hxy-lnd.day.GLB", + "landIce.tpf.tavg-u-hxy-lnd.day.GLB", + "landIce.tsn.tavg-u-hxy-lnd.day.GLB", + "landIce.tsn.tavg-u-hxy-lnd.mon.GLB", + "ocean.evspsbl.tavg-u-hxy-ifs.mon.GLB", + "ocean.ficeberg.tavg-u-hxy-sea.mon.GLB", + "ocean.hfacrossline.tavg-u-ht-sea.mon.GLB", + "ocean.hfevapds.tavg-u-hxy-ifs.mon.GLB", + "ocean.hfibthermds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfibthermds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfrainds.tavg-u-hxy-ifs.mon.GLB", + "ocean.hfrunoffds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfrunoffds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfsnthermds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfsnthermds.tavg-u-hxy-sea.mon.GLB", + "ocean.mfo.tavg-u-ht-sea.mon.GLB", + "ocean.msftmmpa.tavg-ol-hyb-sea.mon.GLB", + "ocean.sf6.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfacrossline.tavg-u-ht-sea.mon.GLB", + "ocean.sfdsi.tavg-u-hxy-sea.mon.GLB", + "ocean.sfriver.tavg-u-hxy-sea.mon.GLB", + "ocean.siflfwbot.tavg-u-hxy-sea.mon.GLB", + "ocean.so.tavg-ol-hxy-sea.day.GLB", + "ocean.t20d.tavg-u-hxy-sea.day.GLB", + "ocean.tnkebto.tavg-u-hxy-sea.yr.GLB", + "ocean.vsfcorr.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfevap.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfpr.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfriver.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfsit.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.arag.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.arag.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.calc.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.calc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chl.tavg-d0m-hxy-sea.day.GLB", + "ocnBgchem.chl.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.chlcalc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.co3.tavg-d0m-hxy-sea.day.GLB", + "ocnBgchem.co3.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.co3satarag.tavg-d0m-hxy-sea.day.GLB", + "ocnBgchem.co3satarag.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.dmso.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.epn.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.epp.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.epsi.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.expc.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.expcalc.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.fgdms.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fric.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.froc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.graz.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.intpp.tavg-u-hxy-sea.day.GLB", + "ocnBgchem.intppcalc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppdiat.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppdiaz.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppmisc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppnitrate.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intpppico.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.no3.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.o2.tavg-d0m-hxy-sea.day.GLB", + "ocnBgchem.o2.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.o2.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.ph.tavg-d0m-hxy-sea.day.GLB", + "ocnBgchem.ph.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.phyc.tavg-d0m-hxy-sea.day.GLB", + "ocnBgchem.phyc.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.pp.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.si.tavg-d0m-hxy-sea.mon.GLB", + "seaIce.sfdsi.tavg-u-hxy-si.mon.GLB", + "seaIce.siage.tavg-u-hxy-si.mon.GLB", + "seaIce.siarea.tavg-u-hm-u.day.NH", + "seaIce.siarea.tavg-u-hm-u.day.SH", + "seaIce.siareaacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.sicompstren.tavg-u-hxy-si.mon.GLB", + "seaIce.sidivvel.tpt-u-hxy-si.mon.GLB", + "seaIce.sidmasstranx.tavg-u-hxy-u.mon.GLB", + "seaIce.sidmasstrany.tavg-u-hxy-u.mon.GLB", + "seaIce.sidragbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidragtop.tavg-u-hxy-si.mon.GLB", + "seaIce.siextent.tavg-u-hm-u.day.NH", + "seaIce.siextent.tavg-u-hm-u.day.SH", + "seaIce.sifb.tavg-u-hxy-si.mon.GLB", + "seaIce.siflfwbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflfwdrain.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcecoriolx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcecorioly.tavg-u-hxy-si.mon.GLB", + "seaIce.siforceintstrx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforceintstry.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcetiltx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcetilty.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdconc.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdsnconc.tavg-u-hxy-si.day.GLB", + "seaIce.siitdsnconc.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdsnthick.tavg-u-hxy-si.day.GLB", + "seaIce.siitdsnthick.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdthick.tavg-u-hxy-si.mon.GLB", + "seaIce.simassacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.simpconc.tavg-u-hxy-si.mon.GLB", + "seaIce.simpeffconc.tavg-u-hxy-si.mon.GLB", + "seaIce.simprefrozen.tavg-u-hxy-simp.mon.GLB", + "seaIce.simpthick.tavg-u-hxy-simp.mon.GLB", + "seaIce.sirdgconc.tavg-u-hxy-si.mon.GLB", + "seaIce.sisali.tavg-u-hxy-si.mon.GLB", + "seaIce.sisaltmass.tavg-u-hxy-si.mon.GLB", + "seaIce.sishearvel.tpt-u-hxy-si.mon.GLB", + "seaIce.sisnhc.tavg-u-hxy-si.day.GLB", + "seaIce.sisnmass.tavg-u-hm-u.day.NH", + "seaIce.sisnmass.tavg-u-hm-u.day.SH", + "seaIce.sisnmassacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.sistressave.tpt-u-hxy-si.mon.GLB", + "seaIce.sistressmax.tpt-u-hxy-si.mon.GLB", + "seaIce.sistrxdtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sistrxubot.tavg-u-hxy-si.mon.GLB", + "seaIce.sistrydtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sistryubot.tavg-u-hxy-si.mon.GLB", + "seaIce.sitempbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sitempsnic.tavg-u-hxy-si.day.GLB", + "seaIce.sitempsnic.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-sir.mon.GLB", + "seaIce.sivol.tavg-u-hm-u.day.NH", + "seaIce.sivol.tavg-u-hm-u.day.SH" + ], + "Low": [ + "aerosol.sfpm1.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.sfpm10.tavg-h2m-hxy-u.1hr.GLB", + "atmos.hurs.tavg-h2m-hxy-u.1hr.GLB", + "atmos.hurs.tmin-h2m-hxy-crp.day.GLB", + "atmos.pr.tavg-u-hxy-crp.day.GLB", + "atmos.tas.tmax-h2m-hxy-crp.day.GLB", + "atmos.tas.tmin-h2m-hxy-crp.day.GLB", + "atmosChem.drynh3.tavg-u-hxy-u.day.GLB", + "atmosChem.drynh4.tavg-u-hxy-u.day.GLB", + "atmosChem.drynoy.tavg-u-hxy-u.day.GLB", + "atmosChem.flashrate.tavg-u-hxy-u.mon.GLB", + "atmosChem.wetnh3.tavg-u-hxy-u.day.GLB", + "atmosChem.wetnh4.tavg-u-hxy-u.day.GLB", + "atmosChem.wetnoy.tavg-u-hxy-u.day.GLB", + "land.c13Land.tavg-u-hxy-lnd.mon.GLB", + "land.c13Litter.tavg-u-hxy-lnd.mon.GLB", + "land.c13Soil.tavg-u-hxy-lnd.mon.GLB", + "land.c13Veg.tavg-u-hxy-lnd.mon.GLB", + "land.c14Land.tavg-u-hxy-lnd.mon.GLB", + "land.c14Litter.tavg-u-hxy-lnd.mon.GLB", + "land.c14Soil.tavg-u-hxy-lnd.mon.GLB", + "land.c14Veg.tavg-u-hxy-lnd.mon.GLB", + "land.c3PftFrac.tavg-u-hxy-u.mon.GLB", + "land.c4PftFrac.tavg-u-hxy-u.mon.GLB", + "land.gppc13.tavg-u-hxy-lnd.mon.GLB", + "land.gppc14.tavg-u-hxy-lnd.mon.GLB", + "land.irrLut.tavg-u-hxy-multi.mon.GLB", + "land.lai.tavg-u-hxy-lnd.day.GLB", + "land.netAtmosLandC13Flux.tavg-u-hxy-lnd.mon.GLB", + "land.netAtmosLandC14Flux.tavg-u-hxy-lnd.mon.GLB", + "land.rac13.tavg-u-hxy-lnd.mon.GLB", + "land.rac14.tavg-u-hxy-lnd.mon.GLB", + "land.rhc13.tavg-u-hxy-lnd.mon.GLB", + "land.rhc14.tavg-u-hxy-lnd.mon.GLB", + "ocean.difmxybo.tavg-ol-hxy-sea.yr.GLB", + "ocean.difmxylo.tavg-ol-hxy-sea.yr.GLB", + "ocean.diftrblo.tavg-ol-hxy-sea.yr.GLB", + "ocean.diftrelo.tavg-ol-hxy-sea.yr.GLB", + "ocean.difvho.tavg-ol-hxy-sea.yr.GLB", + "ocean.difvso.tavg-ol-hxy-sea.yr.GLB", + "ocean.dispkexyfo.tavg-u-hxy-sea.yr.GLB", + "ocean.dxto.ti-u-hxy-u.fx.GLB", + "ocean.dxuo.ti-u-hxy-u.fx.GLB", + "ocean.dxvo.ti-u-hxy-u.fx.GLB", + "ocean.dyto.ti-u-hxy-u.fx.GLB", + "ocean.dyuo.ti-u-hxy-u.fx.GLB", + "ocean.dyvo.ti-u-hxy-u.fx.GLB", + "ocean.mlotstsq.tavg-u-hxy-sea.mon.GLB", + "ocean.msftmmpa.tavg-rho-hyb-sea.mon.GLB", + "ocean.msftmsmpa.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftypa.tavg-ol-ht-sea.mon.GLB", + "ocean.msftypa.tavg-rho-ht-sea.mon.GLB", + "ocean.ocontempdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontempmint.tavg-u-hxy-sea.yr.GLB", + "ocean.ocontemppadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemppmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemppsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemprmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemptend.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottempdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottempmint.tavg-u-hxy-sea.yr.GLB", + "ocean.opottemppadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemppmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemppsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemprmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemptend.tavg-ol-hxy-sea.dec.GLB", + "ocean.osaltdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpsmadvect.tavg-ol-hxy-sea.mon.GLB", + "ocean.osaltpsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltrmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osalttend.tavg-ol-hxy-sea.yr.GLB", + "ocean.rsdoabsorb.tavg-ol-hxy-sea.yr.GLB", + "ocean.somint.tavg-u-hxy-sea.yr.GLB", + "ocean.sossq.tavg-u-hxy-sea.mon.GLB", + "ocean.thkcelluo.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcellvo.tavg-ol-hxy-sea.mon.GLB", + "ocean.tnpeo.tavg-u-hxy-sea.yr.GLB", + "ocean.tossq.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.dissi13c.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.dissi13c.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissi14c.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissi14cabio.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.dissi14cabio.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.fg13co2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fg14co2abio.tavg-u-hxy-sea.mon.GLB" + ] + }, + "esm-flat10": { + "Core": [ + "atmos.areacella.ti-u-hxy-u.fx.GLB", + "atmos.cl.tavg-al-hxy-u.mon.GLB", + "atmos.cli.tavg-al-hxy-u.mon.GLB", + "atmos.clivi.tavg-u-hxy-u.mon.GLB", + "atmos.clt.tavg-u-hxy-u.day.GLB", + "atmos.clt.tavg-u-hxy-u.mon.GLB", + "atmos.clw.tavg-al-hxy-u.mon.GLB", + "atmos.clwvi.tavg-u-hxy-u.mon.GLB", + "atmos.evspsbl.tavg-u-hxy-u.mon.GLB", + "atmos.hfls.tavg-u-hxy-u.mon.GLB", + "atmos.hfss.tavg-u-hxy-u.mon.GLB", + "atmos.hur.tavg-p19-hxy-air.mon.GLB", + "atmos.hur.tavg-p19-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.6hr.GLB", + "atmos.hurs.tavg-h2m-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.mon.GLB", + "atmos.hus.tavg-p19-hxy-u.day.GLB", + "atmos.hus.tavg-p19-hxy-u.mon.GLB", + "atmos.huss.tavg-h2m-hxy-u.day.GLB", + "atmos.huss.tavg-h2m-hxy-u.mon.GLB", + "atmos.huss.tpt-h2m-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.1hr.GLB", + "atmos.pr.tavg-u-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.day.GLB", + "atmos.pr.tavg-u-hxy-u.mon.GLB", + "atmos.prc.tavg-u-hxy-u.mon.GLB", + "atmos.prsn.tavg-u-hxy-u.mon.GLB", + "atmos.prw.tavg-u-hxy-u.mon.GLB", + "atmos.ps.tavg-u-hxy-u.day.GLB", + "atmos.ps.tavg-u-hxy-u.mon.GLB", + "atmos.psl.tavg-u-hxy-u.day.GLB", + "atmos.psl.tavg-u-hxy-u.mon.GLB", + "atmos.rlds.tavg-u-hxy-u.mon.GLB", + "atmos.rldscs.tavg-u-hxy-u.mon.GLB", + "atmos.rlus.tavg-u-hxy-u.mon.GLB", + "atmos.rluscs.tavg-u-hxy-u.mon.GLB", + "atmos.rlut.tavg-u-hxy-u.mon.GLB", + "atmos.rlutcs.tavg-u-hxy-u.mon.GLB", + "atmos.rsds.tavg-u-hxy-u.day.GLB", + "atmos.rsds.tavg-u-hxy-u.mon.GLB", + "atmos.rsdscs.tavg-u-hxy-u.mon.GLB", + "atmos.rsdt.tavg-u-hxy-u.mon.GLB", + "atmos.rsus.tavg-u-hxy-u.mon.GLB", + "atmos.rsuscs.tavg-u-hxy-u.mon.GLB", + "atmos.rsut.tavg-u-hxy-u.mon.GLB", + "atmos.rsutcs.tavg-u-hxy-u.mon.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.day.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.mon.GLB", + "atmos.sftlf.ti-u-hxy-u.fx.GLB", + "atmos.ta.tavg-p19-hxy-air.day.GLB", + "atmos.ta.tavg-p19-hxy-air.mon.GLB", + "atmos.ta.tpt-p3-hxy-air.6hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.day.GLB", + "atmos.tas.tavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tmax-h2m-hxy-u.day.GLB", + "atmos.tas.tmaxavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tmin-h2m-hxy-u.day.GLB", + "atmos.tas.tminavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tpt-h2m-hxy-u.3hr.GLB", + "atmos.tauu.tavg-u-hxy-u.mon.GLB", + "atmos.tauv.tavg-u-hxy-u.mon.GLB", + "atmos.ts.tavg-u-hxy-u.mon.GLB", + "atmos.ua.tavg-p19-hxy-air.day.GLB", + "atmos.ua.tavg-p19-hxy-air.mon.GLB", + "atmos.ua.tpt-p3-hxy-air.6hr.GLB", + "atmos.uas.tavg-h10m-hxy-u.day.GLB", + "atmos.uas.tavg-h10m-hxy-u.mon.GLB", + "atmos.uas.tpt-h10m-hxy-u.3hr.GLB", + "atmos.va.tavg-p19-hxy-air.day.GLB", + "atmos.va.tavg-p19-hxy-air.mon.GLB", + "atmos.va.tpt-p3-hxy-air.6hr.GLB", + "atmos.vas.tavg-h10m-hxy-u.day.GLB", + "atmos.vas.tavg-h10m-hxy-u.mon.GLB", + "atmos.vas.tpt-h10m-hxy-u.3hr.GLB", + "atmos.wap.tavg-p19-hxy-air.mon.GLB", + "atmos.wap.tavg-p19-hxy-u.day.GLB", + "atmos.zg.tavg-p19-hxy-air.day.GLB", + "atmos.zg.tavg-p19-hxy-air.mon.GLB", + "land.evspsblsoi.tavg-u-hxy-lnd.mon.GLB", + "land.evspsblveg.tavg-u-hxy-lnd.mon.GLB", + "land.lai.tavg-u-hxy-lnd.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.mon.GLB", + "land.mrros.tavg-u-hxy-lnd.mon.GLB", + "land.mrso.tavg-u-hxy-lnd.mon.GLB", + "land.mrsofc.ti-u-hxy-lnd.fx.GLB", + "land.mrsol.tavg-d10cm-hxy-lnd.mon.GLB", + "land.orog.ti-u-hxy-u.fx.GLB", + "land.rootd.ti-u-hxy-lnd.fx.GLB", + "land.sftgif.ti-u-hxy-u.fx.GLB", + "land.slthick.ti-sl-hxy-lnd.fx.GLB", + "landIce.mrfso.tavg-u-hxy-lnd.mon.GLB", + "landIce.snc.tavg-u-hxy-lnd.mon.GLB", + "landIce.snw.tavg-u-hxy-lnd.mon.GLB", + "ocean.areacello.ti-u-hxy-u.fx.GLB", + "ocean.basin.ti-u-hxy-u.fx.GLB", + "ocean.bigthetao.tavg-ol-hxy-sea.mon.GLB", + "ocean.deptho.ti-u-hxy-sea.fx.GLB", + "ocean.hfds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfgeou.ti-u-hxy-sea.fx.GLB", + "ocean.masscello.tavg-ol-hxy-sea.mon.GLB", + "ocean.masscello.ti-ol-hxy-sea.fx.GLB", + "ocean.mlotst.tavg-u-hxy-sea.mon.GLB", + "ocean.sftof.ti-u-hxy-u.fx.GLB", + "ocean.so.tavg-ol-hxy-sea.mon.GLB", + "ocean.sos.tavg-u-hxy-sea.day.GLB", + "ocean.sos.tavg-u-hxy-sea.mon.GLB", + "ocean.tauuo.tavg-u-hxy-sea.mon.GLB", + "ocean.tauvo.tavg-u-hxy-sea.mon.GLB", + "ocean.thetao.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcello.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcello.ti-ol-hxy-sea.fx.GLB", + "ocean.tos.tavg-u-hxy-sea.day.GLB", + "ocean.tos.tavg-u-hxy-sea.mon.GLB", + "ocean.umo.tavg-ol-hxy-sea.mon.GLB", + "ocean.uo.tavg-ol-hxy-sea.mon.GLB", + "ocean.vmo.tavg-ol-hxy-sea.mon.GLB", + "ocean.vo.tavg-ol-hxy-sea.mon.GLB", + "ocean.wmo.tavg-ol-hxy-sea.mon.GLB", + "ocean.wo.tavg-ol-hxy-sea.mon.GLB", + "ocean.zos.tavg-u-hxy-sea.day.GLB", + "ocean.zos.tavg-u-hxy-sea.mon.GLB", + "ocean.zostoga.tavg-u-hm-sea.mon.GLB", + "seaIce.siconc.tavg-u-hxy-u.day.GLB", + "seaIce.siconc.tavg-u-hxy-u.mon.GLB", + "seaIce.simass.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-si.mon.GLB", + "seaIce.sitimefrac.tavg-u-hxy-sea.mon.GLB", + "seaIce.siu.tavg-u-hxy-si.mon.GLB", + "seaIce.siv.tavg-u-hxy-si.mon.GLB", + "seaIce.snd.tavg-u-hxy-sn.mon.GLB", + "seaIce.ts.tavg-u-hxy-si.mon.GLB" + ], + "High": [ + "aerosol.abs550aer.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550bc.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550dust.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550no3.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550oa.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550so4.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550ss.tavg-u-hxy-u.mon.GLB", + "aerosol.airmass.tavg-al-hxy-u.mon.GLB", + "aerosol.aoanh.tavg-al-hxy-u.mon.NH", + "aerosol.bry.tavg-p39-hy-air.mon.GLB", + "aerosol.bs550aer.tpt-al-hxy-u.6hr.GLB", + "aerosol.c2h6.tavg-al-hxy-u.mon.GLB", + "aerosol.c3h6.tavg-al-hxy-u.mon.GLB", + "aerosol.c3h8.tavg-al-hxy-u.mon.GLB", + "aerosol.ccldncl.tavg-u-hxy-ccl.mon.GLB", + "aerosol.ccn.tavg-u-hxy-ccl.mon.30S-90S", + "aerosol.ccn.tavg-u-hxy-ccl.mon.GLB", + "aerosol.ccn1.tavg-al-hxy-u.mon.30S-90S", + "aerosol.ccn1.tavg-al-hxy-u.mon.GLB", + "aerosol.ccnp02.tavg-al-hxy-u.mon.30S-90S", + "aerosol.ccnp02.tavg-al-hxy-u.mon.GLB", + "aerosol.cdnc.tavg-al-hxy-u.mon.30S-90S", + "aerosol.cdnc.tavg-al-hxy-u.mon.GLB", + "aerosol.cfc114.tavg-al-hxy-u.mon.GLB", + "aerosol.ch3coch3.tavg-al-hxy-u.mon.GLB", + "aerosol.cheaqpso4.tavg-al-hxy-u.mon.GLB", + "aerosol.chegpso4.tavg-al-hxy-u.mon.GLB", + "aerosol.chepasoa.tavg-u-hxy-u.mon.GLB", + "aerosol.chepsoa.tavg-u-hxy-u.mon.GLB", + "aerosol.cly.tavg-p39-hy-air.mon.GLB", + "aerosol.co.tavg-al-hxy-u.mon.GLB", + "aerosol.co.tavg-h2m-hxy-u.day.GLB", + "aerosol.cod.tavg-u-hxy-u.day.GLB", + "aerosol.cod.tavg-u-hxy-u.mon.30S-90S", + "aerosol.cod.tavg-u-hxy-u.mon.GLB", + "aerosol.conccn.tavg-al-hxy-u.mon.GLB", + "aerosol.conccn.tpt-u-hs-u.3hr.GLB", + "aerosol.drybc.tavg-u-hxy-u.mon.GLB", + "aerosol.drydust.tavg-u-hxy-u.mon.GLB", + "aerosol.dryno3.tavg-u-hxy-u.mon.GLB", + "aerosol.dryo3.tavg-u-hxy-u.mon.GLB", + "aerosol.dryoa.tavg-u-hxy-u.mon.GLB", + "aerosol.dryso2.tavg-u-hxy-u.mon.GLB", + "aerosol.dryso4.tavg-u-hxy-u.mon.GLB", + "aerosol.dryss.tavg-u-hxy-u.mon.GLB", + "aerosol.ec550aer.tavg-al-hxy-u.mon.GLB", + "aerosol.ec550aer.tpt-u-hxy-u.6hr.GLB", + "aerosol.emiaco.tavg-u-hxy-u.mon.GLB", + "aerosol.emianox.tavg-u-hxy-u.mon.GLB", + "aerosol.emiaoa.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbbc.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbch4.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbco.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbdms.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbnh3.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbnox.tavg-u-hxy-u.mon.GLB", + "aerosol.emibboa.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbso2.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbvoc.tavg-u-hxy-u.mon.GLB", + "aerosol.emibc.tavg-u-hxy-u.mon.GLB", + "aerosol.emibvoc.tavg-u-hxy-u.mon.GLB", + "aerosol.emico.tavg-u-hxy-u.mon.GLB", + "aerosol.emidms.tavg-u-hxy-u.mon.30S-90S", + "aerosol.emidms.tavg-u-hxy-u.mon.GLB", + "aerosol.emidust.tavg-u-hxy-u.mon.GLB", + "aerosol.emiisop.tavg-u-hxy-u.mon.GLB", + "aerosol.emilnox.tavg-al-hxy-u.mon.GLB", + "aerosol.eminh3.tavg-u-hxy-u.mon.GLB", + "aerosol.eminox.tavg-u-hxy-u.mon.GLB", + "aerosol.emioa.tavg-u-hxy-u.mon.GLB", + "aerosol.emiso2.tavg-u-hxy-u.mon.GLB", + "aerosol.emiso4.tavg-u-hxy-u.mon.GLB", + "aerosol.emiss.tavg-u-hxy-u.mon.30S-90S", + "aerosol.emiss.tavg-u-hxy-u.mon.GLB", + "aerosol.emivoc.tavg-u-hxy-u.mon.GLB", + "aerosol.h2o.tavg-al-hxy-u.mon.GLB", + "aerosol.h2o.tavg-p39-hy-air.mon.GLB", + "aerosol.hcfc22.tavg-al-hxy-u.mon.GLB", + "aerosol.hcho.tavg-al-hxy-u.mon.GLB", + "aerosol.hcl.tavg-al-hxy-u.mon.GLB", + "aerosol.hcl.tavg-p39-hy-air.mon.GLB", + "aerosol.hfc125.tavg-al-hxy-u.mon.GLB", + "aerosol.hfc134a.tavg-al-hxy-u.mon.GLB", + "aerosol.hno3.tavg-al-hxy-u.mon.GLB", + "aerosol.hno3.tavg-p39-hy-air.mon.GLB", + "aerosol.ho2.tavg-p39-hy-air.mon.GLB", + "aerosol.isop.tavg-al-hxy-u.mon.GLB", + "aerosol.jno2.tavg-al-hxy-u.mon.GLB", + "aerosol.lossch4.tavg-al-hxy-u.mon.GLB", + "aerosol.lossco.tavg-al-hxy-u.mon.GLB", + "aerosol.lossn2o.tavg-al-hxy-u.mon.GLB", + "aerosol.lwp.tavg-u-hxy-u.mon.GLB", + "aerosol.mmraerh2o.tavg-al-hxy-u.mon.GLB", + "aerosol.mmraerh2o.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmraerh2o.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrbc.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrbc.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrbc.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrbc.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrdust.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrdust.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrdust.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrdust.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrnh4.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrnh4.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrnh4.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrnh4.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrno3.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrno3.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrno3.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrno3.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmroa.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmroa.tavg-al-hxy-u.mon.GLB", + "aerosol.mmroa.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmroa.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrpm1.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrpm1.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrpm2p5.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrpm2p5.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrso4.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrso4.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrso4.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrso4.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrsoa.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrsoa.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrsoa.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrss.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrss.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrss.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrss.tpt-h2m-hs-u.3hr.GLB", + "aerosol.nh50.tavg-al-hxy-u.mon.GLB", + "aerosol.no.tavg-al-hxy-u.mon.GLB", + "aerosol.no2.tavg-al-hxy-u.mon.GLB", + "aerosol.no2.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.noy.tavg-p39-hy-air.mon.GLB", + "aerosol.o3.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.o3loss.tavg-al-hxy-u.mon.GLB", + "aerosol.o3prod.tavg-al-hxy-u.mon.GLB", + "aerosol.od443aer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550aer.tavg-u-hxy-u.day.GLB", + "aerosol.od550aer.tavg-u-hxy-u.mon.30S-90S", + "aerosol.od550aer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550aerh2o.tavg-u-hxy-u.mon.GLB", + "aerosol.od550bb.tavg-u-hxy-u.mon.GLB", + "aerosol.od550bc.tavg-u-hxy-u.mon.GLB", + "aerosol.od550csaer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550dust.tavg-u-hxy-u.mon.GLB", + "aerosol.od550lt1aer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550no3.tavg-u-hxy-u.mon.GLB", + "aerosol.od550oa.tavg-u-hxy-u.mon.GLB", + "aerosol.od550so4.tavg-u-hxy-u.mon.GLB", + "aerosol.od550soa.tavg-u-hxy-u.mon.GLB", + "aerosol.od550ss.tavg-u-hxy-u.mon.GLB", + "aerosol.od865aer.tavg-u-hxy-u.mon.GLB", + "aerosol.oh.tavg-al-hxy-u.mon.GLB", + "aerosol.oh.tavg-p39-hy-air.mon.GLB", + "aerosol.pan.tavg-al-hxy-u.mon.GLB", + "aerosol.photo1d.tavg-al-hxy-u.mon.GLB", + "aerosol.pod0.tsum-u-hxy-u.mon.GLB", + "aerosol.reffccwctop.tavg-u-hxy-cl.mon.GLB", + "aerosol.reffclwtop.tavg-u-hxy-cl.mon.30S-90S", + "aerosol.reffclwtop.tavg-u-hxy-cl.mon.GLB", + "aerosol.rluscsaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rlutaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rlutcsaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rsutaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rsutcsaf.tavg-u-hxy-u.mon.GLB", + "aerosol.sfpm1.tavg-h2m-hxy-u.day.GLB", + "aerosol.sfpm10.tavg-al-hxy-u.mon.30S-90S", + "aerosol.sfpm10.tavg-al-hxy-u.mon.GLB", + "aerosol.sfpm10.tavg-h2m-hxy-u.day.GLB", + "aerosol.sfpm25.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.sfpm25.tavg-h2m-hxy-u.day.GLB", + "aerosol.so2.tavg-al-hxy-u.mon.30S-90S", + "aerosol.so2.tavg-al-hxy-u.mon.GLB", + "aerosol.so2.tavg-h2m-hxy-u.day.GLB", + "aerosol.so2.tpt-h2m-hs-u.3hr.GLB", + "aerosol.tatp.tavg-u-hxy-u.mon.GLB", + "aerosol.toz.tavg-u-hxy-u.day.GLB", + "aerosol.toz.tavg-u-hxy-u.mon.GLB", + "aerosol.tropoz.tavg-u-hxy-u.mon.GLB", + "aerosol.ttop.tavg-u-hxy-cl.mon.GLB", + "aerosol.ua.tavg-10hPa-hxy-air.day.GLB", + "aerosol.vt100.tavg-100hPa-hy-air.mon.GLB", + "aerosol.wa.tavg-al-hxy-u.mon.GLB", + "aerosol.wetbc.tavg-u-hxy-u.mon.GLB", + "aerosol.wetdust.tavg-u-hxy-u.mon.GLB", + "aerosol.wetoa.tavg-u-hxy-u.mon.GLB", + "aerosol.wetso2.tavg-u-hxy-u.mon.GLB", + "aerosol.wetso4.tavg-u-hxy-u.mon.GLB", + "aerosol.wetss.tavg-u-hxy-u.mon.GLB", + "aerosol.zg.tavg-10hPa-hxy-air.day.GLB", + "atmos.albisccp.tavg-u-hxy-cl.mon.30S-90S", + "atmos.bldep.tavg-u-hxy-u.mon.GLB", + "atmos.bldep.tmax-u-hxy-u.day.GLB", + "atmos.bldep.tmin-u-hxy-u.day.GLB", + "atmos.cl.tavg-al-hxy-u.mon.30S-90S", + "atmos.clc.tavg-al-hxy-u.mon.30S-90S", + "atmos.clc.tavg-al-hxy-u.mon.GLB", + "atmos.clcalipso.tavg-220hPa-hxy-air.mon.30S-90S", + "atmos.clcalipso.tavg-220hPa-hxy-air.mon.GLB", + "atmos.clcalipso.tavg-560hPa-hxy-air.mon.30S-90S", + "atmos.clcalipso.tavg-560hPa-hxy-air.mon.GLB", + "atmos.clcalipso.tavg-840hPa-hxy-air.mon.30S-90S", + "atmos.clcalipso.tavg-840hPa-hxy-air.mon.GLB", + "atmos.clcalipso.tavg-h40-hxy-air.mon.30S-90S", + "atmos.cldnci.tavg-u-hxy-cl.mon.GLB", + "atmos.cldncl.tavg-u-hxy-cl.mon.GLB", + "atmos.cldnvi.tavg-u-hxy-u.mon.GLB", + "atmos.cli.tavg-al-hxy-u.mon.30S-90S", + "atmos.clic.tavg-al-hxy-u.mon.30S-90S", + "atmos.clis.tavg-al-hxy-u.mon.30S-90S", + "atmos.clisccp.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clisccp.tavg-p7c-hxy-air.mon.GLB", + "atmos.clivi.tavg-u-hxy-u.mon.30S-90S", + "atmos.clivimodis.tavg-u-hxy-u.mon.30S-90S", + "atmos.clmodis.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clmodis.tavg-p7c-hxy-air.mon.GLB", + "atmos.clmodisice.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clmodisice.tavg-p7c-hxy-air.mon.GLB", + "atmos.clmodisiceReff.tavg-u-hxy-u.mon.GLB", + "atmos.clmodisliquid.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clmodisliquid.tavg-p7c-hxy-air.mon.GLB", + "atmos.clmodisliquidReff.tavg-u-hxy-u.mon.GLB", + "atmos.cls.tavg-al-hxy-u.mon.30S-90S", + "atmos.clt.tavg-u-hxy-u.mon.30S-90S", + "atmos.cltc.tavg-u-hxy-u.mon.GLB", + "atmos.cltcalipso.tavg-u-hxy-u.mon.30S-90S", + "atmos.cltisccp.tavg-u-hxy-u.mon.30S-90S", + "atmos.cltmodis.tavg-u-hxy-u.mon.30S-90S", + "atmos.clw.tavg-al-hxy-u.mon.30S-90S", + "atmos.clwc.tavg-al-hxy-u.mon.30S-90S", + "atmos.clws.tavg-al-hxy-u.mon.30S-90S", + "atmos.clwvi.tavg-u-hxy-u.mon.30S-90S", + "atmos.clwvimodis.tavg-u-hxy-u.mon.30S-90S", + "atmos.co2.tavg-al-hxy-u.mon.GLB", + "atmos.co2.tavg-p19-hxy-air.mon.GLB", + "atmos.co23D.tavg-al-hxy-u.mon.GLB", + "atmos.co2mass.tavg-u-hm-u.mon.GLB", + "atmos.dmc.tavg-alh-hxy-u.mon.30S-90S", + "atmos.edt.tavg-al-hxy-u.mon.30S-90S", + "atmos.evspsbl.tavg-u-hxy-lnd.day.GLB", + "atmos.evu.tavg-al-hxy-u.mon.30S-90S", + "atmos.fco2antt.tavg-u-hxy-u.mon.GLB", + "atmos.fco2fos.tavg-u-hxy-u.mon.GLB", + "atmos.fco2nat.tavg-u-hxy-u.mon.GLB", + "atmos.hfls.tavg-u-hxy-u.mon.30S-90S", + "atmos.hfss.tavg-u-hxy-u.mon.30S-90S", + "atmos.hur.tavg-al-hxy-u.mon.30S-90S", + "atmos.hur.tavg-al-hxy-u.mon.GLB", + "atmos.hur.tavg-p19-hxy-air.mon.30S-90S", + "atmos.hurs.tavg-h2m-hxy-u.mon.30S-90S", + "atmos.hus.tavg-al-hxy-u.mon.30S-90S", + "atmos.hus.tavg-al-hxy-u.mon.GLB", + "atmos.hus.tavg-p19-hxy-u.mon.30S-90S", + "atmos.hus.tpt-al-hxy-u.6hr.GLB", + "atmos.hus.tpt-p7h-hxy-air.6hr.GLB", + "atmos.huss.tavg-h2m-hxy-u.mon.30S-90S", + "atmos.huss.tpt-h2m-hxy-u.1hr.GLB", + "atmos.mc.tavg-alh-hxy-u.mon.GLB", + "atmos.mcd.tavg-alh-hxy-u.mon.30S-90S", + "atmos.mcu.tavg-alh-hxy-u.mon.30S-90S", + "atmos.mcu.tavg-alh-hxy-u.mon.GLB", + "atmos.pctisccp.tavg-u-hxy-cl.mon.30S-90S", + "atmos.pfull.tavg-al-hxy-u.mon.GLB", + "atmos.pfull.tclm-al-hxy-u.mon.30S-90S", + "atmos.phalf.tavg-alh-hxy-u.mon.GLB", + "atmos.pr.tavg-u-hxy-u.mon.30S-90S", + "atmos.pr.tmax-u-hxy-u.day.GLB", + "atmos.pr.tpt-u-hxy-u.6hr.GLB", + "atmos.prc.tavg-u-hxy-u.mon.30S-90S", + "atmos.prra.tavg-u-hxy-lnd.day.GLB", + "atmos.prra.tavg-u-hxy-u.mon.30S-90S", + "atmos.prsn.tavg-u-hxy-u.3hr.GLB", + "atmos.prsn.tavg-u-hxy-u.day.GLB", + "atmos.prsn.tavg-u-hxy-u.mon.30S-90S", + "atmos.prw.tavg-u-hxy-u.day.GLB", + "atmos.prw.tavg-u-hxy-u.mon.30S-90S", + "atmos.ps.tavg-u-hxy-u.1hr.GLB", + "atmos.ps.tavg-u-hxy-u.mon.30S-90S", + "atmos.ps.tpt-u-hxy-u.6hr.GLB", + "atmos.psl.tavg-u-hxy-u.mon.30S-90S", + "atmos.psl.tpt-u-hxy-u.1hr.GLB", + "atmos.psl.tpt-u-hxy-u.6hr.GLB", + "atmos.ptp.tavg-u-hxy-u.mon.GLB", + "atmos.reffcclwtop.tavg-u-hxy-ccl.mon.GLB", + "atmos.reffclic.tavg-al-hxy-ccl.mon.30S-90S", + "atmos.reffclis.tavg-al-hxy-scl.mon.30S-90S", + "atmos.reffclwc.tavg-al-hxy-ccl.mon.30S-90S", + "atmos.reffclws.tavg-al-hxy-scl.mon.30S-90S", + "atmos.reffsclwtop.tavg-u-hxy-scl.mon.GLB", + "atmos.rld.tavg-alh-hxy-u.mon.GLB", + "atmos.rld4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rldcs.tavg-alh-hxy-u.mon.GLB", + "atmos.rldcs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rlds.tavg-u-hxy-u.1hr.GLB", + "atmos.rlds.tavg-u-hxy-u.day.GLB", + "atmos.rlds.tavg-u-hxy-u.mon.30S-90S", + "atmos.rldscs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rlu.tavg-alh-hxy-u.mon.GLB", + "atmos.rlu4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rlucs.tavg-alh-hxy-u.mon.GLB", + "atmos.rlucs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rlus.tavg-u-hxy-u.day.GLB", + "atmos.rlus.tavg-u-hxy-u.mon.30S-90S", + "atmos.rlut.tavg-u-hxy-u.mon.30S-90S", + "atmos.rlut4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rlutcs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rlutcs4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rsd.tavg-alh-hxy-u.mon.GLB", + "atmos.rsd4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsdcs.tavg-alh-hxy-u.mon.GLB", + "atmos.rsdcs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsds.tavg-u-hxy-u.1hr.GLB", + "atmos.rsds.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsdscs.tavg-u-hxy-u.day.GLB", + "atmos.rsdscs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsdt.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsu.tavg-alh-hxy-u.mon.GLB", + "atmos.rsu4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsucs.tavg-alh-hxy-u.mon.GLB", + "atmos.rsucs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsus.tavg-u-hxy-u.day.GLB", + "atmos.rsus.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsuscs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsut.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsut4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rsutcs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsutcs4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rtmt.tavg-u-hxy-u.mon.GLB", + "atmos.rv850.tpt-850hPa-hxy-air.6hr.GLB", + "atmos.scldncl.tavg-u-hxy-scl.mon.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.mon.30S-90S", + "atmos.ta.tavg-al-hxy-u.mon.30S-90S", + "atmos.ta.tavg-al-hxy-u.mon.GLB", + "atmos.ta.tavg-p19-hxy-air.mon.30S-90S", + "atmos.ta.tavg-p39-hy-air.mon.GLB", + "atmos.ta.tpt-al-hxy-u.6hr.GLB", + "atmos.ta.tpt-p7h-hxy-air.6hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.1hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.mon.30S-90S", + "atmos.tas.tmaxavg-h2m-hxy-u.mon.30S-90S", + "atmos.tas.tminavg-h2m-hxy-u.mon.30S-90S", + "atmos.tnt.tavg-al-hxy-u.mon.GLB", + "atmos.tntrl.tavg-al-hxy-u.mon.GLB", + "atmos.tntrs.tavg-al-hxy-u.mon.GLB", + "atmos.ts.tavg-u-hxy-u.mon.30S-90S", + "atmos.ts.tpt-u-hxy-u.6hr.GLB", + "atmos.ua.tavg-al-hxy-u.mon.GLB", + "atmos.ua.tavg-p19-hxy-air.mon.30S-90S", + "atmos.ua.tavg-p39-hy-air.mon.GLB", + "atmos.ua.tpt-al-hxy-u.6hr.GLB", + "atmos.ua.tpt-p7h-hxy-air.6hr.GLB", + "atmos.uas.tavg-h10m-hxy-u.mon.30S-90S", + "atmos.uas.tpt-h10m-hxy-u.1hr.GLB", + "atmos.va.tavg-al-hxy-u.mon.GLB", + "atmos.va.tavg-p19-hxy-air.mon.30S-90S", + "atmos.va.tavg-p39-hy-air.mon.GLB", + "atmos.va.tpt-al-hxy-u.6hr.GLB", + "atmos.va.tpt-p7h-hxy-air.6hr.GLB", + "atmos.vas.tavg-h10m-hxy-u.mon.30S-90S", + "atmos.vas.tpt-h10m-hxy-u.1hr.GLB", + "atmos.wap.tavg-p19-hxy-air.mon.30S-90S", + "atmos.zg.tavg-1000hPa-hxy-air.day.GLB", + "atmos.zg.tavg-500hPa-hxy-air.day.GLB", + "atmos.zg.tavg-al-hxy-u.mon.GLB", + "atmos.zg.tavg-p19-hxy-air.mon.30S-90S", + "atmos.zg.tavg-p39-hy-air.mon.GLB", + "atmos.zg.tpt-500hPa-hxy-air.6hr.GLB", + "atmos.zg.tpt-al-hxy-u.6hr.GLB", + "atmos.zg.tpt-p7h-hxy-air.6hr.GLB", + "atmos.ztp.tavg-u-hxy-u.mon.GLB", + "atmosChem.c2h4.tavg-al-hxy-u.mon.GLB", + "atmosChem.c2h5oh.tavg-al-hxy-u.mon.GLB", + "atmosChem.c4h10.tavg-al-hxy-u.mon.GLB", + "atmosChem.cfc11.tavg-u-hm-u.mon.GLB", + "atmosChem.cfc113.tavg-u-hm-u.mon.GLB", + "atmosChem.cfc12.tavg-u-hm-u.mon.GLB", + "atmosChem.ch3oh.tavg-al-hxy-u.mon.GLB", + "atmosChem.ch4.tavg-al-hxy-u.mon.GLB", + "atmosChem.ch4.tavg-p39-hy-air.mon.GLB", + "atmosChem.ch4losssoil.tavg-u-hxy-u.mon.GLB", + "atmosChem.ch4ref.ti-al-hxy-u.fx.GLB", + "atmosChem.chegph2oo1d.tavg-al-hxy-u.mon.GLB", + "atmosChem.chepnh4.tavg-al-hxy-u.mon.GLB", + "atmosChem.chepno3.tavg-al-hxy-u.mon.GLB", + "atmosChem.dms.tavg-al-hxy-u.mon.30S-90S", + "atmosChem.dms.tavg-al-hxy-u.mon.GLB", + "atmosChem.do3chm.tavg-al-hxy-u.mon.GLB", + "atmosChem.dryh2.tavg-u-hxy-u.mon.GLB", + "atmosChem.dryhno3.tavg-u-hxy-u.mon.GLB", + "atmosChem.drynh3.tavg-u-hxy-u.mon.GLB", + "atmosChem.drynh4.tavg-u-hxy-u.mon.GLB", + "atmosChem.drynoy.tavg-u-hxy-u.mon.GLB", + "atmosChem.e90inst.tpt-al-hxy-u.mon.GLB", + "atmosChem.emiach4.tavg-u-hxy-u.mon.GLB", + "atmosChem.emiavnox.tavg-al-hxy-u.mon.GLB", + "atmosChem.emic2h4.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic2h5oh.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic2h6.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic3h6.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic3h8.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic4h10.tavg-u-hxy-u.mon.GLB", + "atmosChem.emich3oh.tavg-u-hxy-u.mon.GLB", + "atmosChem.emich4.tavg-u-hxy-u.mon.GLB", + "atmosChem.emih2.tavg-u-hxy-u.mon.GLB", + "atmosChem.emilkch4.tavg-u-hxy-u.mon.GLB", + "atmosChem.h2.tavg-al-hxy-u.mon.GLB", + "atmosChem.h2loss.tavg-al-hxy-u.mon.GLB", + "atmosChem.h2prod.tavg-al-hxy-u.mon.GLB", + "atmosChem.hcfc22.tavg-u-hm-u.mon.GLB", + "atmosChem.meanage.tavg-al-hxy-u.mon.GLB", + "atmosChem.meanage.tavg-p39-hy-air.mon.GLB", + "atmosChem.n2o.tavg-al-hxy-u.mon.GLB", + "atmosChem.n2o.tavg-p39-hy-air.mon.GLB", + "atmosChem.o3.tavg-al-hxy-u.mon.GLB", + "atmosChem.o3.tavg-p19-hxy-air.mon.GLB", + "atmosChem.o3.tavg-p39-hy-air.mon.GLB", + "atmosChem.o3.tpt-al-hxy-u.mon.GLB", + "atmosChem.o3ref.tclm-al-hxy-u.fx.GLB", + "atmosChem.o3ref.ti-al-hxy-u.fx.GLB", + "atmosChem.o3ste.tavg-al-hxy-u.mon.GLB", + "atmosChem.rlutch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rlutcsch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rlutcso3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rluto3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsutch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsutcsch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsutcso3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsuto3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.stratch4loss.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropch4loss.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropch4lossoh.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropdo3chm.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropo3ste.tavg-al-hxy-u.mon.GLB", + "atmosChem.wethno3.tavg-al-hxy-u.mon.GLB", + "atmosChem.wetnh3.tavg-u-hxy-u.mon.GLB", + "atmosChem.wetnh4.tavg-u-hxy-u.mon.GLB", + "atmosChem.wetno3.tavg-al-hxy-u.mon.GLB", + "atmosChem.wetnoy.tavg-u-hxy-u.mon.GLB", + "land.albc.tavg-u-hxy-veg.mon.GLB", + "land.areacellr.ti-u-hxy-u.fx.GLB", + "land.baresoilFrac.tavg-u-hxy-u.mon.GLB", + "land.burntFractionAll.tavg-u-hxy-u.mon.GLB", + "land.cGeologicStorage.tavg-u-hxy-u.mon.GLB", + "land.cLand.tavg-u-hxy-lnd.mon.GLB", + "land.cLitter.tavg-u-hxy-lnd.mon.GLB", + "land.cnc.tavg-u-hxy-u.mon.GLB", + "land.cProduct.tavg-u-hxy-lnd.mon.GLB", + "land.cropFrac.tavg-u-hxy-u.mon.GLB", + "land.cSoil.tavg-d100cm-hxy-lnd.mon.GLB", + "land.cSoil.tavg-u-hxy-lnd.mon.GLB", + "land.cVeg.tavg-u-hxy-lnd.mon.GLB", + "land.dcw.tavg-u-hxy-lnd.day.GLB", + "land.dslw.tavg-u-hxy-lnd.day.GLB", + "land.evspsblpot.tavg-u-hxy-lnd.day.GLB", + "land.evspsblpot.tavg-u-hxy-lnd.mon.GLB", + "land.fAnthDisturb.tavg-u-hxy-lnd.mon.GLB", + "land.fBNF.tavg-u-hxy-lnd.mon.GLB", + "land.fCLandToOcean.tavg-u-hxy-lnd.mon.GLB", + "land.fDeforestToAtmos.tavg-u-hxy-lnd.mon.GLB", + "land.fDeforestToProduct.tavg-u-hxy-lnd.mon.GLB", + "land.fFire.tavg-u-hxy-lnd.mon.GLB", + "land.fFireAll.tavg-u-hxy-lnd.mon.GLB", + "land.fFireNat.tavg-u-hxy-lnd.mon.GLB", + "land.fHarvestToAtmos.tavg-u-hxy-lnd.mon.GLB", + "land.fHarvestToGeologicStorage.tavg-u-hxy-lnd.mon.GLB", + "land.fHarvestToProduct.tavg-u-hxy-lnd.mon.GLB", + "land.fLitterSoil.tavg-u-hxy-lnd.mon.GLB", + "land.fN2O.tavg-u-hxy-lnd.mon.GLB", + "land.fNAnthDisturb.tavg-u-hxy-lnd.mon.GLB", + "land.fNdep.tavg-u-hxy-lnd.mon.GLB", + "land.fNfert.tavg-u-hxy-lnd.mon.GLB", + "land.fNLandToOcean.tavg-u-hxy-lnd.mon.GLB", + "land.fNLitterSoil.tavg-u-hxy-lnd.mon.GLB", + "land.fNloss.tavg-u-hxy-lnd.mon.GLB", + "land.fNnetmin.tavg-u-hxy-lnd.mon.GLB", + "land.fNOx.tavg-u-hxy-lnd.mon.GLB", + "land.fNProduct.tavg-u-hxy-lnd.mon.GLB", + "land.fNup.tavg-u-hxy-lnd.mon.GLB", + "land.fNVegLitter.tavg-u-hxy-lnd.mon.GLB", + "land.fNVegSoil.tavg-u-hxy-lnd.mon.GLB", + "land.fProductDecomp.tavg-u-hxy-lnd.mon.GLB", + "land.fVegLitter.tavg-u-hxy-lnd.mon.GLB", + "land.fVegSoil.tavg-u-hxy-lnd.mon.GLB", + "land.gpp.tavg-u-hxy-lnd.mon.GLB", + "land.grassFrac.tavg-u-hxy-u.mon.GLB", + "land.landCoverFrac.tavg-u-hxy-u.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.day.GLB", + "land.mrrob.tavg-u-hxy-lnd.day.GLB", + "land.mrros.tavg-u-hxy-lnd.day.GLB", + "land.mrsfl.tavg-sl-hxy-lnd.day.GLB", + "land.mrsfl.tavg-sl-hxy-lnd.mon.GLB", + "land.mrsll.tavg-sl-hxy-lnd.day.GLB", + "land.mrsll.tavg-sl-hxy-lnd.mon.GLB", + "land.mrso.tavg-u-hxy-lnd.day.GLB", + "land.mrsol.tavg-d10cm-hxy-lnd.day.GLB", + "land.mrsol.tavg-sl-hxy-lnd.day.GLB", + "land.mrsol.tavg-sl-hxy-lnd.mon.GLB", + "land.mrsow.tavg-u-hxy-lnd.day.GLB", + "land.mrtws.tavg-u-hxy-lnd.day.GLB", + "land.mrtws.tavg-u-hxy-lnd.mon.GLB", + "land.nbp.tavg-u-hxy-lnd.mon.GLB", + "land.nep.tavg-u-hxy-lnd.mon.GLB", + "land.nLand.tavg-u-hxy-lnd.mon.GLB", + "land.nLitter.tavg-u-hxy-lnd.mon.GLB", + "land.nMineral.tavg-u-hxy-lnd.mon.GLB", + "land.npp.tavg-u-hxy-lnd.mon.GLB", + "land.nProduct.tavg-u-hxy-lnd.mon.GLB", + "land.nSoil.tavg-u-hxy-lnd.mon.GLB", + "land.nVeg.tavg-u-hxy-lnd.mon.GLB", + "land.pastureFrac.tavg-u-hxy-u.mon.GLB", + "land.prveg.tavg-u-hxy-lnd.mon.GLB", + "land.ra.tavg-u-hxy-lnd.mon.GLB", + "land.residualFrac.tavg-u-hxy-u.mon.GLB", + "land.rh.tavg-u-hxy-lnd.mon.GLB", + "land.rivi.tavg-u-hxy-lnd.day.GLB", + "land.rivo.tavg-u-hxy-lnd.day.GLB", + "land.rsds.tavg-u-hxy-sn.mon.GLB", + "land.rsus.tavg-u-hxy-sn.mon.GLB", + "land.shrubFrac.tavg-u-hxy-u.mon.GLB", + "land.tas.tavg-u-hxy-u.1hr.GLB", + "land.tran.tavg-u-hxy-lnd.mon.GLB", + "land.treeFrac.tavg-u-hxy-u.mon.GLB", + "land.tsl.tavg-sl-hxy-lnd.mon.GLB", + "land.tslsi.tavg-u-hxy-u.day.GLB", + "land.vegFrac.tavg-u-hxy-u.mon.GLB", + "land.vegHeight.tavg-u-hxy-veg.mon.GLB", + "land.wetlandCH4.tavg-u-hxy-lnd.mon.GLB", + "land.wtd.tavg-u-hxy-lnd.day.GLB", + "landIce.snd.tavg-u-hxy-lnd.mon.GLB", + "ocean.absscint.tavg-op4-hxy-sea.mon.GLB", + "ocean.agessc.tavg-ol-hxy-sea.mon.GLB", + "ocean.bigthetao.tavg-ol-hm-sea.mon.GLB", + "ocean.bigthetao.tavg-ol-hxy-sea.dec.GLB", + "ocean.bigthetao.tavg-op20bar-hxy-sea.day.GLB", + "ocean.chcint.tavg-op4-hxy-sea.mon.GLB", + "ocean.ficeberg.tavg-ol-hxy-sea.mon.GLB", + "ocean.friver.tavg-u-hxy-sea.mon.GLB", + "ocean.hfbasin.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpmadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpmdiff.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpsmadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfds.tavg-u-hxy-sea.mon.30S-90S", + "ocean.hfx.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfx.tavg-u-hxy-sea.day.GLB", + "ocean.hfx.tavg-u-hxy-sea.mon.GLB", + "ocean.hfy.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfy.tavg-u-hxy-sea.day.GLB", + "ocean.hfy.tavg-u-hxy-sea.mon.GLB", + "ocean.htovgyre.tavg-u-hyb-sea.mon.GLB", + "ocean.htovovrt.tavg-u-hyb-sea.mon.GLB", + "ocean.masscello.tavg-ol-hxy-sea.dec.GLB", + "ocean.masso.tavg-u-hm-sea.dec.GLB", + "ocean.masso.tavg-u-hm-sea.mon.GLB", + "ocean.mlotst.tavg-u-hxy-sea.day.GLB", + "ocean.mlotst.tavg-u-hxy-sea.mon.30S-90S", + "ocean.mlotst.tmax-u-hxy-sea.mon.GLB", + "ocean.mlotst.tmin-u-hxy-sea.mon.GLB", + "ocean.mpw.tavg-u-hxy-sea.mon.GLB", + "ocean.mpw.tpt-u-hxy-sea.3hr.GLB", + "ocean.mpwswell.tavg-u-hxy-sea.mon.GLB", + "ocean.mpwswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.mpwwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.mpwwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.msftbarot.tavg-u-hxy-sea.mon.GLB", + "ocean.msftm.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftm.tavg-rho-hyb-sea.mon.GLB", + "ocean.msfty.tavg-ol-ht-sea.mon.GLB", + "ocean.msfty.tavg-rho-ht-sea.mon.GLB", + "ocean.obvfsq.tavg-ol-hxy-sea.mon.GLB", + "ocean.pbo.tavg-u-hxy-sea.mon.GLB", + "ocean.pfscint.tavg-op4-hxy-sea.mon.GLB", + "ocean.phcint.tavg-op4-hxy-sea.mon.GLB", + "ocean.pso.tavg-u-hxy-sea.mon.GLB", + "ocean.scint.tavg-op4-hxy-sea.mon.GLB", + "ocean.sduo.tavg-u-hxy-sea.mon.GLB", + "ocean.sduo.tpt-u-hxy-sea.3hr.GLB", + "ocean.sdvo.tavg-u-hxy-sea.mon.GLB", + "ocean.sdvo.tpt-u-hxy-sea.3hr.GLB", + "ocean.sfx.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfx.tavg-u-hxy-sea.mon.GLB", + "ocean.sfy.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfy.tavg-u-hxy-sea.mon.GLB", + "ocean.sltbasin.tavg-u-hyb-sea.mon.GLB", + "ocean.sltovgyre.tavg-u-hyb-sea.mon.GLB", + "ocean.sltovovrt.tavg-u-hyb-sea.mon.GLB", + "ocean.so.tavg-ol-hm-sea.mon.GLB", + "ocean.so.tavg-ol-hxy-sea.dec.GLB", + "ocean.so.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.sob.tavg-u-hxy-sea.mon.GLB", + "ocean.sos.tavg-u-hm-sea.mon.30S-90S", + "ocean.sos.tavg-u-hm-sea.mon.GLB", + "ocean.swh.tavg-u-hxy-sea.mon.GLB", + "ocean.swh.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhmax.tmax-u-hxy-sea.mon.GLB", + "ocean.swhmax.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhswell.tavg-u-hxy-sea.mon.GLB", + "ocean.swhswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.swhwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.tauuo.tavg-u-hxy-sea.3hr.GLB", + "ocean.tauuo.tavg-u-hxy-sea.dec.GLB", + "ocean.tauvo.tavg-u-hxy-sea.3hr.GLB", + "ocean.tauvo.tavg-u-hxy-sea.dec.GLB", + "ocean.thetao.tavg-ol-hm-sea.mon.GLB", + "ocean.thetao.tavg-ol-hxy-sea.dec.GLB", + "ocean.thetao.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.thetao.tavg-op20bar-hxy-sea.day.GLB", + "ocean.thkcello.tavg-ol-hxy-sea.dec.GLB", + "ocean.tob.tavg-u-hxy-sea.mon.GLB", + "ocean.tos.tavg-u-hm-sea.mon.GLB", + "ocean.tos.tavg-u-hxy-sea.mon.30S-90S", + "ocean.tos.tpt-u-hxy-sea.3hr.GLB", + "ocean.tossq.tavg-u-hxy-sea.day.GLB", + "ocean.umo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.uo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.uos.tavg-u-hxy-sea.day.GLB", + "ocean.vmo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.vo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.volcello.tavg-ol-hxy-sea.dec.GLB", + "ocean.volcello.tavg-ol-hxy-sea.mon.GLB", + "ocean.volcello.tavg-ol-hxy-sea.yr.GLB", + "ocean.volcello.ti-ol-hxy-sea.fx.GLB", + "ocean.volo.tavg-u-hm-sea.dec.GLB", + "ocean.volo.tavg-u-hm-sea.mon.GLB", + "ocean.vos.tavg-u-hxy-sea.day.GLB", + "ocean.wdir.tavg-u-hxy-sea.mon.GLB", + "ocean.wdir.tpt-u-hxy-sea.3hr.GLB", + "ocean.wdirswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wdirswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wdirwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wdirwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.wfcorr.tavg-u-hxy-sea.mon.GLB", + "ocean.wfo.tavg-u-hxy-sea.mon.GLB", + "ocean.wmo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.wo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.wpdir.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdir.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpdirswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdirswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpdirwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdirwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpp.tavg-u-hxy-sea.mon.GLB", + "ocean.wpp.tpt-u-hxy-sea.3hr.GLB", + "ocean.wppswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wppswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wppwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wppwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.zos.tavg-u-hxy-sea.mon.30S-90S", + "ocean.zossq.tavg-u-hxy-sea.mon.GLB", + "ocean.zostoga.tavg-u-hm-sea.day.GLB", + "ocnBgchem.bacc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.calc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chl.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chl.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chlcalc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chldiat.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chldiat.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chldiaz.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chldiaz.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chlmisc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chlmisc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chlpico.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chlpico.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.detoc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dfe.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.dfe.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissic.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.dissic.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissoc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dmso.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.expc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.expcalc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.fgco2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fsfe.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fsn.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.graz.tavg-ol-hxy-sea.mon.30S-90S", + "ocnBgchem.icfriver.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intdic.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intdoc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intparag.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbfe.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbn.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbp.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbsi.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpcalcite.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpn2.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpoc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpp.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpp.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppcalc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppdiat.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppdiaz.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppmisc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppnitrate.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpppico.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.nh4.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.nh4.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.no3.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.no3.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.o2.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.ocfriver.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.ph.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.ph.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phyc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phyc.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.phyc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phycalc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phycalc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phydiat.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phydiat.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phydiaz.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phydiaz.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phymisc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phymisc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phypico.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phypico.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.po4.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.pp.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.si.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.spco2.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.spco2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.talk.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zmeso.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zmeso.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zmicro.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zmicro.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zmisc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zmisc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zooc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zooc.tavg-ol-hxy-sea.mon.GLB", + "seaIce.evspsbl.tavg-u-hxy-si.mon.GLB", + "seaIce.prra.tavg-u-hxy-si.mon.GLB", + "seaIce.prsn.tavg-u-hxy-si.mon.GLB", + "seaIce.rlds.tavg-u-hxy-si.mon.GLB", + "seaIce.rlus.tavg-u-hxy-si.mon.GLB", + "seaIce.rsds.tavg-u-hxy-si.day.GLB", + "seaIce.rsds.tavg-u-hxy-si.mon.GLB", + "seaIce.rsus.tavg-u-hxy-si.day.GLB", + "seaIce.rsus.tavg-u-hxy-si.mon.GLB", + "seaIce.sbl.tavg-u-hxy-si.mon.GLB", + "seaIce.siage.tavg-u-hxy-si.day.GLB", + "seaIce.siage.tavg-u-hxy-si.mon.30S-90S", + "seaIce.siarea.tavg-u-hm-u.mon.NH", + "seaIce.siarea.tavg-u-hm-u.mon.SH", + "seaIce.siconc.tavg-u-hxy-u.mon.30S-90S", + "seaIce.siconca.tavg-u-hxy-u.day.GLB", + "seaIce.siconca.tavg-u-hxy-u.mon.GLB", + "seaIce.sidconcdyn.tavg-u-hxy-sea.mon.GLB", + "seaIce.sidconcth.tavg-u-hxy-sea.mon.GLB", + "seaIce.sidmassdyn.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthsi.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthwat.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmeltbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmeltlat.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmelttop.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassth.tavg-u-hxy-si.mon.GLB", + "seaIce.sieqthick.tavg-u-hxy-si.mon.GLB", + "seaIce.siextent.tavg-u-hm-u.mon.NH", + "seaIce.siextent.tavg-u-hm-u.mon.SH", + "seaIce.siflcondbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflcondtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sifllattop.tavg-u-hxy-si.mon.GLB", + "seaIce.siflsensbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflsenstop.tavg-u-hxy-si.mon.GLB", + "seaIce.siflswdbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sihc.tavg-u-hxy-sea.mon.GLB", + "seaIce.sisndmassdyn.tavg-u-hxy-si.mon.GLB", + "seaIce.sisndmasssi.tavg-u-hxy-si.mon.GLB", + "seaIce.sisndmasswind.tavg-u-hxy-si.mon.GLB", + "seaIce.sisnhc.tavg-u-hxy-si.mon.GLB", + "seaIce.sisnmass.tavg-u-hm-u.mon.NH", + "seaIce.sisnmass.tavg-u-hm-u.mon.SH", + "seaIce.sispeed.tavg-u-hxy-si.day.GLB", + "seaIce.sispeed.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-si.day.GLB", + "seaIce.sithick.tavg-u-hxy-si.mon.30S-90S", + "seaIce.sitimefrac.tavg-u-hxy-sea.day.GLB", + "seaIce.sitimefrac.tavg-u-hxy-sea.mon.30S-90S", + "seaIce.siu.tavg-u-hxy-si.day.GLB", + "seaIce.siu.tavg-u-hxy-si.mon.30S-90S", + "seaIce.siv.tavg-u-hxy-si.day.GLB", + "seaIce.siv.tavg-u-hxy-si.mon.30S-90S", + "seaIce.sivol.tavg-u-hm-u.mon.NH", + "seaIce.sivol.tavg-u-hm-u.mon.SH", + "seaIce.snc.tavg-u-hxy-si.mon.GLB", + "seaIce.snd.tavg-u-hxy-sn.day.GLB", + "seaIce.snd.tavg-u-hxy-sn.mon.30S-90S", + "seaIce.snm.tavg-u-hxy-si.mon.GLB", + "seaIce.snw.tavg-u-hxy-si.mon.GLB", + "seaIce.ts.tavg-u-hxy-si.day.GLB", + "seaIce.ts.tavg-u-hxy-si.mon.30S-90S" + ], + "Medium": [ + "atmos.rls.tavg-u-hxy-u.day.GLB", + "atmos.rls.tavg-u-hxy-u.mon.GLB", + "atmos.rss.tavg-u-hxy-u.day.GLB", + "atmos.rss.tavg-u-hxy-u.mon.GLB", + "land.cLeaf.tavg-u-hxy-lnd.mon.GLB", + "land.cLitterCwd.tavg-u-hxy-lnd.mon.GLB", + "land.cLitterSubSurf.tavg-u-hxy-lnd.mon.GLB", + "land.cLitterSurf.tavg-u-hxy-lnd.mon.GLB", + "land.cOther.tavg-u-hxy-lnd.mon.GLB", + "land.cRoot.tavg-u-hxy-lnd.mon.GLB", + "land.cropFracC3.tavg-u-hxy-u.mon.GLB", + "land.cropFracC4.tavg-u-hxy-u.mon.GLB", + "land.cSoil.tavg-sl-hxy-lnd.mon.GLB", + "land.cSoilPools.tavg-u-hxy-lnd.mon.GLB", + "land.cStem.tavg-u-hxy-lnd.mon.GLB", + "land.cVeg.tavg-u-hxy-ng.mon.GLB", + "land.cVeg.tavg-u-hxy-shb.mon.GLB", + "land.cVeg.tavg-u-hxy-tree.mon.GLB", + "land.fLitterFire.tavg-u-hxy-lnd.mon.GLB", + "land.fNgas.tavg-u-hxy-lnd.mon.GLB", + "land.fNgasFire.tavg-u-hxy-lnd.mon.GLB", + "land.fNgasNonFire.tavg-u-hxy-lnd.mon.GLB", + "land.fNleach.tavg-u-hxy-lnd.mon.GLB", + "land.fVegFire.tavg-u-hxy-lnd.mon.GLB", + "land.fVegLitterMortality.tavg-u-hxy-lnd.mon.GLB", + "land.fVegLitterSenescence.tavg-u-hxy-lnd.mon.GLB", + "land.fVegSoilMortality.tavg-u-hxy-lnd.mon.GLB", + "land.fVegSoilSenescence.tavg-u-hxy-lnd.mon.GLB", + "land.gpp.tavg-u-hxy-ng.mon.GLB", + "land.gpp.tavg-u-hxy-shb.mon.GLB", + "land.gpp.tavg-u-hxy-tree.mon.GLB", + "land.grassFracC3.tavg-u-hxy-u.mon.GLB", + "land.grassFracC4.tavg-u-hxy-u.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.3hr.GLB", + "land.mrros.tavg-u-hxy-lnd.3hr.GLB", + "land.mrsol.tpt-d10cm-hxy-lnd.3hr.GLB", + "land.nLeaf.tavg-u-hxy-lnd.mon.GLB", + "land.nLitterCwd.tavg-u-hxy-lnd.mon.GLB", + "land.nLitterSubSurf.tavg-u-hxy-lnd.mon.GLB", + "land.nLitterSurf.tavg-u-hxy-lnd.mon.GLB", + "land.nMineralNH4.tavg-u-hxy-lnd.mon.GLB", + "land.nMineralNO3.tavg-u-hxy-lnd.mon.GLB", + "land.nOther.tavg-u-hxy-lnd.mon.GLB", + "land.npp.tavg-u-hxy-ng.mon.GLB", + "land.npp.tavg-u-hxy-shb.mon.GLB", + "land.npp.tavg-u-hxy-tree.mon.GLB", + "land.nppLeaf.tavg-u-hxy-lnd.mon.GLB", + "land.nppOther.tavg-u-hxy-lnd.mon.GLB", + "land.nppRoot.tavg-u-hxy-lnd.mon.GLB", + "land.nppStem.tavg-u-hxy-lnd.mon.GLB", + "land.nRoot.tavg-u-hxy-lnd.mon.GLB", + "land.nStem.tavg-u-hxy-lnd.mon.GLB", + "land.pastureFracC3.tavg-u-hxy-u.mon.GLB", + "land.pastureFracC4.tavg-u-hxy-u.mon.GLB", + "land.ra.tavg-u-hxy-ng.mon.GLB", + "land.ra.tavg-u-hxy-shb.mon.GLB", + "land.ra.tavg-u-hxy-tree.mon.GLB", + "land.raLeaf.tavg-u-hxy-lnd.mon.GLB", + "land.raOther.tavg-u-hxy-lnd.mon.GLB", + "land.raRoot.tavg-u-hxy-lnd.mon.GLB", + "land.raStem.tavg-u-hxy-lnd.mon.GLB", + "land.rh.tavg-u-hxy-ng.mon.GLB", + "land.rh.tavg-u-hxy-shb.mon.GLB", + "land.rh.tavg-u-hxy-tree.mon.GLB", + "land.rhLitter.tavg-u-hxy-lnd.mon.GLB", + "land.rhSoil.tavg-u-hxy-lnd.mon.GLB", + "land.treeFracBdlDcd.tavg-u-hxy-u.mon.GLB", + "land.treeFracBdlEvg.tavg-u-hxy-u.mon.GLB", + "land.treeFracNdlDcd.tavg-u-hxy-u.mon.GLB", + "land.treeFracNdlEvg.tavg-u-hxy-u.mon.GLB", + "land.vegHeight.tavg-u-hxy-ng.mon.GLB", + "land.vegHeight.tavg-u-hxy-shb.mon.GLB", + "land.vegHeight.tavg-u-hxy-tree.mon.GLB", + "land.wetlandCH4cons.tavg-u-hxy-lnd.mon.GLB", + "land.wetlandCH4prod.tavg-u-hxy-lnd.mon.GLB", + "land.wetlandFrac.tavg-u-hxy-u.mon.GLB", + "ocean.evspsbl.tavg-u-hxy-ifs.mon.GLB", + "ocean.ficeberg.tavg-u-hxy-sea.mon.GLB", + "ocean.hfacrossline.tavg-u-ht-sea.mon.GLB", + "ocean.hfevapds.tavg-u-hxy-ifs.mon.GLB", + "ocean.hfibthermds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfibthermds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfrainds.tavg-u-hxy-ifs.mon.GLB", + "ocean.hfrunoffds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfrunoffds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfsnthermds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfsnthermds.tavg-u-hxy-sea.mon.GLB", + "ocean.mfo.tavg-u-ht-sea.mon.GLB", + "ocean.sf6.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfacrossline.tavg-u-ht-sea.mon.GLB", + "ocean.sfdsi.tavg-u-hxy-sea.mon.GLB", + "ocean.sfriver.tavg-u-hxy-sea.mon.GLB", + "ocean.siflfwbot.tavg-u-hxy-sea.mon.GLB", + "ocean.so.tavg-ol-hxy-sea.day.GLB", + "ocean.tnkebto.tavg-u-hxy-sea.yr.GLB", + "ocean.vsf.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfcorr.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfevap.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfpr.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfriver.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfsit.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.arag.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.arag.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.calc.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.calc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chl.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.chlcalc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dmso.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.epn.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.epp.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.expc.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.expcalc.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.fgdms.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fric.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.froc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.graz.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.intppcalc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppdiat.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppdiaz.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppmisc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppnitrate.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intpppico.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.o2.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.ph.tavg-op20bar-hxy-sea.day.GLB", + "seaIce.sfdsi.tavg-u-hxy-si.mon.GLB", + "seaIce.siage.tavg-u-hxy-si.mon.GLB", + "seaIce.siarea.tavg-u-hm-u.day.NH", + "seaIce.siarea.tavg-u-hm-u.day.SH", + "seaIce.siareaacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.sicompstren.tavg-u-hxy-si.mon.GLB", + "seaIce.sidivvel.tpt-u-hxy-si.mon.GLB", + "seaIce.sidmasstranx.tavg-u-hxy-u.mon.GLB", + "seaIce.sidmasstrany.tavg-u-hxy-u.mon.GLB", + "seaIce.sidragbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidragtop.tavg-u-hxy-si.mon.GLB", + "seaIce.siextent.tavg-u-hm-u.day.NH", + "seaIce.siextent.tavg-u-hm-u.day.SH", + "seaIce.sifb.tavg-u-hxy-si.mon.GLB", + "seaIce.siflfwbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflfwdrain.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcecoriolx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcecorioly.tavg-u-hxy-si.mon.GLB", + "seaIce.siforceintstrx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforceintstry.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcetiltx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcetilty.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdconc.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdsnconc.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdsnthick.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdthick.tavg-u-hxy-si.mon.GLB", + "seaIce.simassacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.simpconc.tavg-u-hxy-si.mon.GLB", + "seaIce.simpeffconc.tavg-u-hxy-si.mon.GLB", + "seaIce.simprefrozen.tavg-u-hxy-simp.mon.GLB", + "seaIce.simpthick.tavg-u-hxy-simp.mon.GLB", + "seaIce.sirdgconc.tavg-u-hxy-si.mon.GLB", + "seaIce.sisali.tavg-u-hxy-si.mon.GLB", + "seaIce.sisaltmass.tavg-u-hxy-si.mon.GLB", + "seaIce.sishearvel.tpt-u-hxy-si.mon.GLB", + "seaIce.sisnmass.tavg-u-hm-u.day.NH", + "seaIce.sisnmass.tavg-u-hm-u.day.SH", + "seaIce.sisnmassacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.sistressave.tpt-u-hxy-si.mon.GLB", + "seaIce.sistressmax.tpt-u-hxy-si.mon.GLB", + "seaIce.sistrxdtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sistrxubot.tavg-u-hxy-si.mon.GLB", + "seaIce.sistrydtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sistryubot.tavg-u-hxy-si.mon.GLB", + "seaIce.sitempbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sitempsnic.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-sir.mon.GLB", + "seaIce.sivol.tavg-u-hm-u.day.NH", + "seaIce.sivol.tavg-u-hm-u.day.SH" + ], + "Low": [ + "land.c13Land.tavg-u-hxy-lnd.mon.GLB", + "land.c13Litter.tavg-u-hxy-lnd.mon.GLB", + "land.c13Soil.tavg-u-hxy-lnd.mon.GLB", + "land.c13Veg.tavg-u-hxy-lnd.mon.GLB", + "land.c14Land.tavg-u-hxy-lnd.mon.GLB", + "land.c14Litter.tavg-u-hxy-lnd.mon.GLB", + "land.c14Soil.tavg-u-hxy-lnd.mon.GLB", + "land.c14Veg.tavg-u-hxy-lnd.mon.GLB", + "land.gppc13.tavg-u-hxy-lnd.mon.GLB", + "land.gppc14.tavg-u-hxy-lnd.mon.GLB", + "land.netAtmosLandC13Flux.tavg-u-hxy-lnd.mon.GLB", + "land.netAtmosLandC14Flux.tavg-u-hxy-lnd.mon.GLB", + "land.rac13.tavg-u-hxy-lnd.mon.GLB", + "land.rac14.tavg-u-hxy-lnd.mon.GLB", + "land.rhc13.tavg-u-hxy-lnd.mon.GLB", + "land.rhc14.tavg-u-hxy-lnd.mon.GLB", + "ocean.difmxybo.tavg-ol-hxy-sea.yr.GLB", + "ocean.difmxylo.tavg-ol-hxy-sea.yr.GLB", + "ocean.diftrblo.tavg-ol-hxy-sea.yr.GLB", + "ocean.diftrelo.tavg-ol-hxy-sea.yr.GLB", + "ocean.difvho.tavg-ol-hxy-sea.yr.GLB", + "ocean.difvso.tavg-ol-hxy-sea.yr.GLB", + "ocean.dispkexyfo.tavg-u-hxy-sea.yr.GLB", + "ocean.dxto.ti-u-hxy-u.fx.GLB", + "ocean.dxuo.ti-u-hxy-u.fx.GLB", + "ocean.dxvo.ti-u-hxy-u.fx.GLB", + "ocean.dyto.ti-u-hxy-u.fx.GLB", + "ocean.dyuo.ti-u-hxy-u.fx.GLB", + "ocean.dyvo.ti-u-hxy-u.fx.GLB", + "ocean.mlotstsq.tavg-u-hxy-sea.mon.GLB", + "ocean.msftmmpa.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftmmpa.tavg-rho-hyb-sea.mon.GLB", + "ocean.msftmsmpa.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftypa.tavg-ol-ht-sea.mon.GLB", + "ocean.msftypa.tavg-rho-ht-sea.mon.GLB", + "ocean.ocontempdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontempmint.tavg-u-hxy-sea.yr.GLB", + "ocean.ocontemppadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemppmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemppsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemprmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemptend.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottempdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottempmint.tavg-u-hxy-sea.yr.GLB", + "ocean.opottemppadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemppmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemppsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemprmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemptend.tavg-ol-hxy-sea.dec.GLB", + "ocean.osaltdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpsmadvect.tavg-ol-hxy-sea.mon.GLB", + "ocean.osaltpsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltrmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osalttend.tavg-ol-hxy-sea.yr.GLB", + "ocean.rsdoabsorb.tavg-ol-hxy-sea.yr.GLB", + "ocean.somint.tavg-u-hxy-sea.yr.GLB", + "ocean.sossq.tavg-u-hxy-sea.mon.GLB", + "ocean.thkcelluo.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcellvo.tavg-ol-hxy-sea.mon.GLB", + "ocean.tnpeo.tavg-u-hxy-sea.yr.GLB", + "ocean.tossq.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.dissi13c.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.dissi13c.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissi14c.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissi14cabio.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.dissi14cabio.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.fg13co2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fg14co2abio.tavg-u-hxy-sea.mon.GLB" + ] + }, + "esm-flat10-cdr": { + "Core": [ + "atmos.areacella.ti-u-hxy-u.fx.GLB", + "atmos.cl.tavg-al-hxy-u.mon.GLB", + "atmos.cli.tavg-al-hxy-u.mon.GLB", + "atmos.clivi.tavg-u-hxy-u.mon.GLB", + "atmos.clt.tavg-u-hxy-u.day.GLB", + "atmos.clt.tavg-u-hxy-u.mon.GLB", + "atmos.clw.tavg-al-hxy-u.mon.GLB", + "atmos.clwvi.tavg-u-hxy-u.mon.GLB", + "atmos.evspsbl.tavg-u-hxy-u.mon.GLB", + "atmos.hfls.tavg-u-hxy-u.mon.GLB", + "atmos.hfss.tavg-u-hxy-u.mon.GLB", + "atmos.hur.tavg-p19-hxy-air.mon.GLB", + "atmos.hur.tavg-p19-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.6hr.GLB", + "atmos.hurs.tavg-h2m-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.mon.GLB", + "atmos.hus.tavg-p19-hxy-u.day.GLB", + "atmos.hus.tavg-p19-hxy-u.mon.GLB", + "atmos.huss.tavg-h2m-hxy-u.day.GLB", + "atmos.huss.tavg-h2m-hxy-u.mon.GLB", + "atmos.huss.tpt-h2m-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.1hr.GLB", + "atmos.pr.tavg-u-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.day.GLB", + "atmos.pr.tavg-u-hxy-u.mon.GLB", + "atmos.prc.tavg-u-hxy-u.mon.GLB", + "atmos.prsn.tavg-u-hxy-u.mon.GLB", + "atmos.prw.tavg-u-hxy-u.mon.GLB", + "atmos.ps.tavg-u-hxy-u.day.GLB", + "atmos.ps.tavg-u-hxy-u.mon.GLB", + "atmos.psl.tavg-u-hxy-u.day.GLB", + "atmos.psl.tavg-u-hxy-u.mon.GLB", + "atmos.rlds.tavg-u-hxy-u.mon.GLB", + "atmos.rldscs.tavg-u-hxy-u.mon.GLB", + "atmos.rlus.tavg-u-hxy-u.mon.GLB", + "atmos.rluscs.tavg-u-hxy-u.mon.GLB", + "atmos.rlut.tavg-u-hxy-u.mon.GLB", + "atmos.rlutcs.tavg-u-hxy-u.mon.GLB", + "atmos.rsds.tavg-u-hxy-u.day.GLB", + "atmos.rsds.tavg-u-hxy-u.mon.GLB", + "atmos.rsdscs.tavg-u-hxy-u.mon.GLB", + "atmos.rsdt.tavg-u-hxy-u.mon.GLB", + "atmos.rsus.tavg-u-hxy-u.mon.GLB", + "atmos.rsuscs.tavg-u-hxy-u.mon.GLB", + "atmos.rsut.tavg-u-hxy-u.mon.GLB", + "atmos.rsutcs.tavg-u-hxy-u.mon.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.day.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.mon.GLB", + "atmos.sftlf.ti-u-hxy-u.fx.GLB", + "atmos.ta.tavg-p19-hxy-air.day.GLB", + "atmos.ta.tavg-p19-hxy-air.mon.GLB", + "atmos.ta.tpt-p3-hxy-air.6hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.day.GLB", + "atmos.tas.tavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tmax-h2m-hxy-u.day.GLB", + "atmos.tas.tmaxavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tmin-h2m-hxy-u.day.GLB", + "atmos.tas.tminavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tpt-h2m-hxy-u.3hr.GLB", + "atmos.tauu.tavg-u-hxy-u.mon.GLB", + "atmos.tauv.tavg-u-hxy-u.mon.GLB", + "atmos.ts.tavg-u-hxy-u.mon.GLB", + "atmos.ua.tavg-p19-hxy-air.day.GLB", + "atmos.ua.tavg-p19-hxy-air.mon.GLB", + "atmos.ua.tpt-p3-hxy-air.6hr.GLB", + "atmos.uas.tavg-h10m-hxy-u.day.GLB", + "atmos.uas.tavg-h10m-hxy-u.mon.GLB", + "atmos.uas.tpt-h10m-hxy-u.3hr.GLB", + "atmos.va.tavg-p19-hxy-air.day.GLB", + "atmos.va.tavg-p19-hxy-air.mon.GLB", + "atmos.va.tpt-p3-hxy-air.6hr.GLB", + "atmos.vas.tavg-h10m-hxy-u.day.GLB", + "atmos.vas.tavg-h10m-hxy-u.mon.GLB", + "atmos.vas.tpt-h10m-hxy-u.3hr.GLB", + "atmos.wap.tavg-p19-hxy-air.mon.GLB", + "atmos.wap.tavg-p19-hxy-u.day.GLB", + "atmos.zg.tavg-p19-hxy-air.day.GLB", + "atmos.zg.tavg-p19-hxy-air.mon.GLB", + "land.evspsblsoi.tavg-u-hxy-lnd.mon.GLB", + "land.evspsblveg.tavg-u-hxy-lnd.mon.GLB", + "land.lai.tavg-u-hxy-lnd.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.mon.GLB", + "land.mrros.tavg-u-hxy-lnd.mon.GLB", + "land.mrso.tavg-u-hxy-lnd.mon.GLB", + "land.mrsofc.ti-u-hxy-lnd.fx.GLB", + "land.mrsol.tavg-d10cm-hxy-lnd.mon.GLB", + "land.orog.ti-u-hxy-u.fx.GLB", + "land.rootd.ti-u-hxy-lnd.fx.GLB", + "land.sftgif.ti-u-hxy-u.fx.GLB", + "land.slthick.ti-sl-hxy-lnd.fx.GLB", + "landIce.mrfso.tavg-u-hxy-lnd.mon.GLB", + "landIce.snc.tavg-u-hxy-lnd.mon.GLB", + "landIce.snw.tavg-u-hxy-lnd.mon.GLB", + "ocean.areacello.ti-u-hxy-u.fx.GLB", + "ocean.basin.ti-u-hxy-u.fx.GLB", + "ocean.bigthetao.tavg-ol-hxy-sea.mon.GLB", + "ocean.deptho.ti-u-hxy-sea.fx.GLB", + "ocean.hfds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfgeou.ti-u-hxy-sea.fx.GLB", + "ocean.masscello.tavg-ol-hxy-sea.mon.GLB", + "ocean.masscello.ti-ol-hxy-sea.fx.GLB", + "ocean.mlotst.tavg-u-hxy-sea.mon.GLB", + "ocean.sftof.ti-u-hxy-u.fx.GLB", + "ocean.so.tavg-ol-hxy-sea.mon.GLB", + "ocean.sos.tavg-u-hxy-sea.day.GLB", + "ocean.sos.tavg-u-hxy-sea.mon.GLB", + "ocean.tauuo.tavg-u-hxy-sea.mon.GLB", + "ocean.tauvo.tavg-u-hxy-sea.mon.GLB", + "ocean.thetao.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcello.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcello.ti-ol-hxy-sea.fx.GLB", + "ocean.tos.tavg-u-hxy-sea.day.GLB", + "ocean.tos.tavg-u-hxy-sea.mon.GLB", + "ocean.umo.tavg-ol-hxy-sea.mon.GLB", + "ocean.uo.tavg-ol-hxy-sea.mon.GLB", + "ocean.vmo.tavg-ol-hxy-sea.mon.GLB", + "ocean.vo.tavg-ol-hxy-sea.mon.GLB", + "ocean.wmo.tavg-ol-hxy-sea.mon.GLB", + "ocean.wo.tavg-ol-hxy-sea.mon.GLB", + "ocean.zos.tavg-u-hxy-sea.day.GLB", + "ocean.zos.tavg-u-hxy-sea.mon.GLB", + "ocean.zostoga.tavg-u-hm-sea.mon.GLB", + "seaIce.siconc.tavg-u-hxy-u.day.GLB", + "seaIce.siconc.tavg-u-hxy-u.mon.GLB", + "seaIce.simass.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-si.mon.GLB", + "seaIce.sitimefrac.tavg-u-hxy-sea.mon.GLB", + "seaIce.siu.tavg-u-hxy-si.mon.GLB", + "seaIce.siv.tavg-u-hxy-si.mon.GLB", + "seaIce.snd.tavg-u-hxy-sn.mon.GLB", + "seaIce.ts.tavg-u-hxy-si.mon.GLB" + ], + "High": [ + "aerosol.abs550aer.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550bc.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550dust.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550no3.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550oa.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550so4.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550ss.tavg-u-hxy-u.mon.GLB", + "aerosol.airmass.tavg-al-hxy-u.mon.GLB", + "aerosol.aoanh.tavg-al-hxy-u.mon.NH", + "aerosol.bry.tavg-p39-hy-air.mon.GLB", + "aerosol.bs550aer.tpt-al-hxy-u.6hr.GLB", + "aerosol.c2h6.tavg-al-hxy-u.mon.GLB", + "aerosol.c3h6.tavg-al-hxy-u.mon.GLB", + "aerosol.c3h8.tavg-al-hxy-u.mon.GLB", + "aerosol.ccldncl.tavg-u-hxy-ccl.mon.GLB", + "aerosol.ccn.tavg-u-hxy-ccl.mon.30S-90S", + "aerosol.ccn.tavg-u-hxy-ccl.mon.GLB", + "aerosol.ccn1.tavg-al-hxy-u.mon.30S-90S", + "aerosol.ccn1.tavg-al-hxy-u.mon.GLB", + "aerosol.ccnp02.tavg-al-hxy-u.mon.30S-90S", + "aerosol.ccnp02.tavg-al-hxy-u.mon.GLB", + "aerosol.cdnc.tavg-al-hxy-u.mon.30S-90S", + "aerosol.cdnc.tavg-al-hxy-u.mon.GLB", + "aerosol.cfc114.tavg-al-hxy-u.mon.GLB", + "aerosol.ch3coch3.tavg-al-hxy-u.mon.GLB", + "aerosol.cheaqpso4.tavg-al-hxy-u.mon.GLB", + "aerosol.chegpso4.tavg-al-hxy-u.mon.GLB", + "aerosol.chepasoa.tavg-u-hxy-u.mon.GLB", + "aerosol.chepsoa.tavg-u-hxy-u.mon.GLB", + "aerosol.cly.tavg-p39-hy-air.mon.GLB", + "aerosol.co.tavg-al-hxy-u.mon.GLB", + "aerosol.co.tavg-h2m-hxy-u.day.GLB", + "aerosol.cod.tavg-u-hxy-u.day.GLB", + "aerosol.cod.tavg-u-hxy-u.mon.30S-90S", + "aerosol.cod.tavg-u-hxy-u.mon.GLB", + "aerosol.conccn.tavg-al-hxy-u.mon.GLB", + "aerosol.conccn.tpt-u-hs-u.3hr.GLB", + "aerosol.drybc.tavg-u-hxy-u.mon.GLB", + "aerosol.drydust.tavg-u-hxy-u.mon.GLB", + "aerosol.dryno3.tavg-u-hxy-u.mon.GLB", + "aerosol.dryo3.tavg-u-hxy-u.mon.GLB", + "aerosol.dryoa.tavg-u-hxy-u.mon.GLB", + "aerosol.dryso2.tavg-u-hxy-u.mon.GLB", + "aerosol.dryso4.tavg-u-hxy-u.mon.GLB", + "aerosol.dryss.tavg-u-hxy-u.mon.GLB", + "aerosol.ec550aer.tavg-al-hxy-u.mon.GLB", + "aerosol.ec550aer.tpt-u-hxy-u.6hr.GLB", + "aerosol.emiaco.tavg-u-hxy-u.mon.GLB", + "aerosol.emianox.tavg-u-hxy-u.mon.GLB", + "aerosol.emiaoa.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbbc.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbch4.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbco.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbdms.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbnh3.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbnox.tavg-u-hxy-u.mon.GLB", + "aerosol.emibboa.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbso2.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbvoc.tavg-u-hxy-u.mon.GLB", + "aerosol.emibc.tavg-u-hxy-u.mon.GLB", + "aerosol.emibvoc.tavg-u-hxy-u.mon.GLB", + "aerosol.emico.tavg-u-hxy-u.mon.GLB", + "aerosol.emidms.tavg-u-hxy-u.mon.30S-90S", + "aerosol.emidms.tavg-u-hxy-u.mon.GLB", + "aerosol.emidust.tavg-u-hxy-u.mon.GLB", + "aerosol.emiisop.tavg-u-hxy-u.mon.GLB", + "aerosol.emilnox.tavg-al-hxy-u.mon.GLB", + "aerosol.eminh3.tavg-u-hxy-u.mon.GLB", + "aerosol.eminox.tavg-u-hxy-u.mon.GLB", + "aerosol.emioa.tavg-u-hxy-u.mon.GLB", + "aerosol.emiso2.tavg-u-hxy-u.mon.GLB", + "aerosol.emiso4.tavg-u-hxy-u.mon.GLB", + "aerosol.emiss.tavg-u-hxy-u.mon.30S-90S", + "aerosol.emiss.tavg-u-hxy-u.mon.GLB", + "aerosol.emivoc.tavg-u-hxy-u.mon.GLB", + "aerosol.h2o.tavg-al-hxy-u.mon.GLB", + "aerosol.h2o.tavg-p39-hy-air.mon.GLB", + "aerosol.hcfc22.tavg-al-hxy-u.mon.GLB", + "aerosol.hcho.tavg-al-hxy-u.mon.GLB", + "aerosol.hcl.tavg-al-hxy-u.mon.GLB", + "aerosol.hcl.tavg-p39-hy-air.mon.GLB", + "aerosol.hfc125.tavg-al-hxy-u.mon.GLB", + "aerosol.hfc134a.tavg-al-hxy-u.mon.GLB", + "aerosol.hno3.tavg-al-hxy-u.mon.GLB", + "aerosol.hno3.tavg-p39-hy-air.mon.GLB", + "aerosol.ho2.tavg-p39-hy-air.mon.GLB", + "aerosol.isop.tavg-al-hxy-u.mon.GLB", + "aerosol.jno2.tavg-al-hxy-u.mon.GLB", + "aerosol.lossch4.tavg-al-hxy-u.mon.GLB", + "aerosol.lossco.tavg-al-hxy-u.mon.GLB", + "aerosol.lossn2o.tavg-al-hxy-u.mon.GLB", + "aerosol.lwp.tavg-u-hxy-u.mon.GLB", + "aerosol.mmraerh2o.tavg-al-hxy-u.mon.GLB", + "aerosol.mmraerh2o.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmraerh2o.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrbc.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrbc.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrbc.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrbc.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrdust.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrdust.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrdust.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrdust.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrnh4.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrnh4.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrnh4.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrnh4.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrno3.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrno3.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrno3.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrno3.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmroa.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmroa.tavg-al-hxy-u.mon.GLB", + "aerosol.mmroa.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmroa.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrpm1.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrpm1.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrpm2p5.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrpm2p5.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrso4.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrso4.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrso4.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrso4.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrsoa.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrsoa.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrsoa.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrss.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrss.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrss.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrss.tpt-h2m-hs-u.3hr.GLB", + "aerosol.nh50.tavg-al-hxy-u.mon.GLB", + "aerosol.no.tavg-al-hxy-u.mon.GLB", + "aerosol.no2.tavg-al-hxy-u.mon.GLB", + "aerosol.no2.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.noy.tavg-p39-hy-air.mon.GLB", + "aerosol.o3.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.o3loss.tavg-al-hxy-u.mon.GLB", + "aerosol.o3prod.tavg-al-hxy-u.mon.GLB", + "aerosol.od443aer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550aer.tavg-u-hxy-u.day.GLB", + "aerosol.od550aer.tavg-u-hxy-u.mon.30S-90S", + "aerosol.od550aer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550aerh2o.tavg-u-hxy-u.mon.GLB", + "aerosol.od550bb.tavg-u-hxy-u.mon.GLB", + "aerosol.od550bc.tavg-u-hxy-u.mon.GLB", + "aerosol.od550csaer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550dust.tavg-u-hxy-u.mon.GLB", + "aerosol.od550lt1aer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550no3.tavg-u-hxy-u.mon.GLB", + "aerosol.od550oa.tavg-u-hxy-u.mon.GLB", + "aerosol.od550so4.tavg-u-hxy-u.mon.GLB", + "aerosol.od550soa.tavg-u-hxy-u.mon.GLB", + "aerosol.od550ss.tavg-u-hxy-u.mon.GLB", + "aerosol.od865aer.tavg-u-hxy-u.mon.GLB", + "aerosol.oh.tavg-al-hxy-u.mon.GLB", + "aerosol.oh.tavg-p39-hy-air.mon.GLB", + "aerosol.pan.tavg-al-hxy-u.mon.GLB", + "aerosol.photo1d.tavg-al-hxy-u.mon.GLB", + "aerosol.pod0.tsum-u-hxy-u.mon.GLB", + "aerosol.reffccwctop.tavg-u-hxy-cl.mon.GLB", + "aerosol.reffclwtop.tavg-u-hxy-cl.mon.30S-90S", + "aerosol.reffclwtop.tavg-u-hxy-cl.mon.GLB", + "aerosol.rluscsaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rlutaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rlutcsaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rsutaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rsutcsaf.tavg-u-hxy-u.mon.GLB", + "aerosol.sfpm1.tavg-h2m-hxy-u.day.GLB", + "aerosol.sfpm10.tavg-al-hxy-u.mon.30S-90S", + "aerosol.sfpm10.tavg-al-hxy-u.mon.GLB", + "aerosol.sfpm10.tavg-h2m-hxy-u.day.GLB", + "aerosol.sfpm25.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.sfpm25.tavg-h2m-hxy-u.day.GLB", + "aerosol.so2.tavg-al-hxy-u.mon.30S-90S", + "aerosol.so2.tavg-al-hxy-u.mon.GLB", + "aerosol.so2.tavg-h2m-hxy-u.day.GLB", + "aerosol.so2.tpt-h2m-hs-u.3hr.GLB", + "aerosol.tatp.tavg-u-hxy-u.mon.GLB", + "aerosol.toz.tavg-u-hxy-u.day.GLB", + "aerosol.toz.tavg-u-hxy-u.mon.GLB", + "aerosol.tropoz.tavg-u-hxy-u.mon.GLB", + "aerosol.ttop.tavg-u-hxy-cl.mon.GLB", + "aerosol.ua.tavg-10hPa-hxy-air.day.GLB", + "aerosol.vt100.tavg-100hPa-hy-air.mon.GLB", + "aerosol.wa.tavg-al-hxy-u.mon.GLB", + "aerosol.wetbc.tavg-u-hxy-u.mon.GLB", + "aerosol.wetdust.tavg-u-hxy-u.mon.GLB", + "aerosol.wetoa.tavg-u-hxy-u.mon.GLB", + "aerosol.wetso2.tavg-u-hxy-u.mon.GLB", + "aerosol.wetso4.tavg-u-hxy-u.mon.GLB", + "aerosol.wetss.tavg-u-hxy-u.mon.GLB", + "aerosol.zg.tavg-10hPa-hxy-air.day.GLB", + "atmos.albisccp.tavg-u-hxy-cl.mon.30S-90S", + "atmos.bldep.tavg-u-hxy-u.mon.GLB", + "atmos.bldep.tmax-u-hxy-u.day.GLB", + "atmos.bldep.tmin-u-hxy-u.day.GLB", + "atmos.cl.tavg-al-hxy-u.mon.30S-90S", + "atmos.clc.tavg-al-hxy-u.mon.30S-90S", + "atmos.clc.tavg-al-hxy-u.mon.GLB", + "atmos.clcalipso.tavg-220hPa-hxy-air.mon.30S-90S", + "atmos.clcalipso.tavg-220hPa-hxy-air.mon.GLB", + "atmos.clcalipso.tavg-560hPa-hxy-air.mon.30S-90S", + "atmos.clcalipso.tavg-560hPa-hxy-air.mon.GLB", + "atmos.clcalipso.tavg-840hPa-hxy-air.mon.30S-90S", + "atmos.clcalipso.tavg-840hPa-hxy-air.mon.GLB", + "atmos.clcalipso.tavg-h40-hxy-air.mon.30S-90S", + "atmos.cldnci.tavg-u-hxy-cl.mon.GLB", + "atmos.cldncl.tavg-u-hxy-cl.mon.GLB", + "atmos.cldnvi.tavg-u-hxy-u.mon.GLB", + "atmos.cli.tavg-al-hxy-u.mon.30S-90S", + "atmos.clic.tavg-al-hxy-u.mon.30S-90S", + "atmos.clis.tavg-al-hxy-u.mon.30S-90S", + "atmos.clisccp.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clisccp.tavg-p7c-hxy-air.mon.GLB", + "atmos.clivi.tavg-u-hxy-u.mon.30S-90S", + "atmos.clivimodis.tavg-u-hxy-u.mon.30S-90S", + "atmos.clmodis.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clmodis.tavg-p7c-hxy-air.mon.GLB", + "atmos.clmodisice.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clmodisice.tavg-p7c-hxy-air.mon.GLB", + "atmos.clmodisiceReff.tavg-u-hxy-u.mon.GLB", + "atmos.clmodisliquid.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clmodisliquid.tavg-p7c-hxy-air.mon.GLB", + "atmos.clmodisliquidReff.tavg-u-hxy-u.mon.GLB", + "atmos.cls.tavg-al-hxy-u.mon.30S-90S", + "atmos.clt.tavg-u-hxy-u.mon.30S-90S", + "atmos.cltc.tavg-u-hxy-u.mon.GLB", + "atmos.cltcalipso.tavg-u-hxy-u.mon.30S-90S", + "atmos.cltisccp.tavg-u-hxy-u.mon.30S-90S", + "atmos.cltmodis.tavg-u-hxy-u.mon.30S-90S", + "atmos.clw.tavg-al-hxy-u.mon.30S-90S", + "atmos.clwc.tavg-al-hxy-u.mon.30S-90S", + "atmos.clws.tavg-al-hxy-u.mon.30S-90S", + "atmos.clwvi.tavg-u-hxy-u.mon.30S-90S", + "atmos.clwvimodis.tavg-u-hxy-u.mon.30S-90S", + "atmos.co2.tavg-al-hxy-u.mon.GLB", + "atmos.co2.tavg-p19-hxy-air.mon.GLB", + "atmos.co23D.tavg-al-hxy-u.mon.GLB", + "atmos.co2mass.tavg-u-hm-u.mon.GLB", + "atmos.dmc.tavg-alh-hxy-u.mon.30S-90S", + "atmos.edt.tavg-al-hxy-u.mon.30S-90S", + "atmos.evspsbl.tavg-u-hxy-lnd.day.GLB", + "atmos.evu.tavg-al-hxy-u.mon.30S-90S", + "atmos.fco2antt.tavg-u-hxy-u.mon.GLB", + "atmos.fco2fos.tavg-u-hxy-u.mon.GLB", + "atmos.fco2nat.tavg-u-hxy-u.mon.GLB", + "atmos.hfls.tavg-u-hxy-u.mon.30S-90S", + "atmos.hfss.tavg-u-hxy-u.mon.30S-90S", + "atmos.hur.tavg-al-hxy-u.mon.30S-90S", + "atmos.hur.tavg-al-hxy-u.mon.GLB", + "atmos.hur.tavg-p19-hxy-air.mon.30S-90S", + "atmos.hurs.tavg-h2m-hxy-u.mon.30S-90S", + "atmos.hus.tavg-al-hxy-u.mon.30S-90S", + "atmos.hus.tavg-al-hxy-u.mon.GLB", + "atmos.hus.tavg-p19-hxy-u.mon.30S-90S", + "atmos.hus.tpt-al-hxy-u.6hr.GLB", + "atmos.hus.tpt-p7h-hxy-air.6hr.GLB", + "atmos.huss.tavg-h2m-hxy-u.mon.30S-90S", + "atmos.huss.tpt-h2m-hxy-u.1hr.GLB", + "atmos.mc.tavg-alh-hxy-u.mon.GLB", + "atmos.mcd.tavg-alh-hxy-u.mon.30S-90S", + "atmos.mcu.tavg-alh-hxy-u.mon.30S-90S", + "atmos.mcu.tavg-alh-hxy-u.mon.GLB", + "atmos.pctisccp.tavg-u-hxy-cl.mon.30S-90S", + "atmos.pfull.tavg-al-hxy-u.mon.GLB", + "atmos.pfull.tclm-al-hxy-u.mon.30S-90S", + "atmos.phalf.tavg-alh-hxy-u.mon.GLB", + "atmos.pr.tavg-u-hxy-u.mon.30S-90S", + "atmos.pr.tmax-u-hxy-u.day.GLB", + "atmos.pr.tpt-u-hxy-u.6hr.GLB", + "atmos.prc.tavg-u-hxy-u.mon.30S-90S", + "atmos.prra.tavg-u-hxy-lnd.day.GLB", + "atmos.prra.tavg-u-hxy-u.mon.30S-90S", + "atmos.prsn.tavg-u-hxy-u.3hr.GLB", + "atmos.prsn.tavg-u-hxy-u.day.GLB", + "atmos.prsn.tavg-u-hxy-u.mon.30S-90S", + "atmos.prw.tavg-u-hxy-u.day.GLB", + "atmos.prw.tavg-u-hxy-u.mon.30S-90S", + "atmos.ps.tavg-u-hxy-u.1hr.GLB", + "atmos.ps.tavg-u-hxy-u.mon.30S-90S", + "atmos.ps.tpt-u-hxy-u.6hr.GLB", + "atmos.psl.tavg-u-hxy-u.mon.30S-90S", + "atmos.psl.tpt-u-hxy-u.1hr.GLB", + "atmos.psl.tpt-u-hxy-u.6hr.GLB", + "atmos.ptp.tavg-u-hxy-u.mon.GLB", + "atmos.reffcclwtop.tavg-u-hxy-ccl.mon.GLB", + "atmos.reffclic.tavg-al-hxy-ccl.mon.30S-90S", + "atmos.reffclis.tavg-al-hxy-scl.mon.30S-90S", + "atmos.reffclwc.tavg-al-hxy-ccl.mon.30S-90S", + "atmos.reffclws.tavg-al-hxy-scl.mon.30S-90S", + "atmos.reffsclwtop.tavg-u-hxy-scl.mon.GLB", + "atmos.rld.tavg-alh-hxy-u.mon.GLB", + "atmos.rld4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rldcs.tavg-alh-hxy-u.mon.GLB", + "atmos.rldcs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rlds.tavg-u-hxy-u.1hr.GLB", + "atmos.rlds.tavg-u-hxy-u.day.GLB", + "atmos.rlds.tavg-u-hxy-u.mon.30S-90S", + "atmos.rldscs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rlu.tavg-alh-hxy-u.mon.GLB", + "atmos.rlu4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rlucs.tavg-alh-hxy-u.mon.GLB", + "atmos.rlucs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rlus.tavg-u-hxy-u.day.GLB", + "atmos.rlus.tavg-u-hxy-u.mon.30S-90S", + "atmos.rlut.tavg-u-hxy-u.mon.30S-90S", + "atmos.rlut4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rlutcs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rlutcs4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rsd.tavg-alh-hxy-u.mon.GLB", + "atmos.rsd4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsdcs.tavg-alh-hxy-u.mon.GLB", + "atmos.rsdcs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsds.tavg-u-hxy-u.1hr.GLB", + "atmos.rsds.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsdscs.tavg-u-hxy-u.day.GLB", + "atmos.rsdscs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsdt.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsu.tavg-alh-hxy-u.mon.GLB", + "atmos.rsu4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsucs.tavg-alh-hxy-u.mon.GLB", + "atmos.rsucs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsus.tavg-u-hxy-u.day.GLB", + "atmos.rsus.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsuscs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsut.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsut4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rsutcs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsutcs4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rtmt.tavg-u-hxy-u.mon.GLB", + "atmos.rv850.tpt-850hPa-hxy-air.6hr.GLB", + "atmos.scldncl.tavg-u-hxy-scl.mon.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.mon.30S-90S", + "atmos.ta.tavg-al-hxy-u.mon.30S-90S", + "atmos.ta.tavg-al-hxy-u.mon.GLB", + "atmos.ta.tavg-p19-hxy-air.mon.30S-90S", + "atmos.ta.tavg-p39-hy-air.mon.GLB", + "atmos.ta.tpt-al-hxy-u.6hr.GLB", + "atmos.ta.tpt-p7h-hxy-air.6hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.1hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.mon.30S-90S", + "atmos.tas.tmaxavg-h2m-hxy-u.mon.30S-90S", + "atmos.tas.tminavg-h2m-hxy-u.mon.30S-90S", + "atmos.tnt.tavg-al-hxy-u.mon.GLB", + "atmos.tntrl.tavg-al-hxy-u.mon.GLB", + "atmos.tntrs.tavg-al-hxy-u.mon.GLB", + "atmos.ts.tavg-u-hxy-u.mon.30S-90S", + "atmos.ts.tpt-u-hxy-u.6hr.GLB", + "atmos.ua.tavg-al-hxy-u.mon.GLB", + "atmos.ua.tavg-p19-hxy-air.mon.30S-90S", + "atmos.ua.tavg-p39-hy-air.mon.GLB", + "atmos.ua.tpt-al-hxy-u.6hr.GLB", + "atmos.ua.tpt-p7h-hxy-air.6hr.GLB", + "atmos.uas.tavg-h10m-hxy-u.mon.30S-90S", + "atmos.uas.tpt-h10m-hxy-u.1hr.GLB", + "atmos.va.tavg-al-hxy-u.mon.GLB", + "atmos.va.tavg-p19-hxy-air.mon.30S-90S", + "atmos.va.tavg-p39-hy-air.mon.GLB", + "atmos.va.tpt-al-hxy-u.6hr.GLB", + "atmos.va.tpt-p7h-hxy-air.6hr.GLB", + "atmos.vas.tavg-h10m-hxy-u.mon.30S-90S", + "atmos.vas.tpt-h10m-hxy-u.1hr.GLB", + "atmos.wap.tavg-p19-hxy-air.mon.30S-90S", + "atmos.zg.tavg-1000hPa-hxy-air.day.GLB", + "atmos.zg.tavg-500hPa-hxy-air.day.GLB", + "atmos.zg.tavg-al-hxy-u.mon.GLB", + "atmos.zg.tavg-p19-hxy-air.mon.30S-90S", + "atmos.zg.tavg-p39-hy-air.mon.GLB", + "atmos.zg.tpt-500hPa-hxy-air.6hr.GLB", + "atmos.zg.tpt-al-hxy-u.6hr.GLB", + "atmos.zg.tpt-p7h-hxy-air.6hr.GLB", + "atmos.ztp.tavg-u-hxy-u.mon.GLB", + "atmosChem.c2h4.tavg-al-hxy-u.mon.GLB", + "atmosChem.c2h5oh.tavg-al-hxy-u.mon.GLB", + "atmosChem.c4h10.tavg-al-hxy-u.mon.GLB", + "atmosChem.cfc11.tavg-u-hm-u.mon.GLB", + "atmosChem.cfc113.tavg-u-hm-u.mon.GLB", + "atmosChem.cfc12.tavg-u-hm-u.mon.GLB", + "atmosChem.ch3oh.tavg-al-hxy-u.mon.GLB", + "atmosChem.ch4.tavg-al-hxy-u.mon.GLB", + "atmosChem.ch4.tavg-p39-hy-air.mon.GLB", + "atmosChem.ch4losssoil.tavg-u-hxy-u.mon.GLB", + "atmosChem.ch4ref.ti-al-hxy-u.fx.GLB", + "atmosChem.chegph2oo1d.tavg-al-hxy-u.mon.GLB", + "atmosChem.chepnh4.tavg-al-hxy-u.mon.GLB", + "atmosChem.chepno3.tavg-al-hxy-u.mon.GLB", + "atmosChem.dms.tavg-al-hxy-u.mon.30S-90S", + "atmosChem.dms.tavg-al-hxy-u.mon.GLB", + "atmosChem.do3chm.tavg-al-hxy-u.mon.GLB", + "atmosChem.dryh2.tavg-u-hxy-u.mon.GLB", + "atmosChem.dryhno3.tavg-u-hxy-u.mon.GLB", + "atmosChem.drynh3.tavg-u-hxy-u.mon.GLB", + "atmosChem.drynh4.tavg-u-hxy-u.mon.GLB", + "atmosChem.drynoy.tavg-u-hxy-u.mon.GLB", + "atmosChem.e90inst.tpt-al-hxy-u.mon.GLB", + "atmosChem.emiach4.tavg-u-hxy-u.mon.GLB", + "atmosChem.emiavnox.tavg-al-hxy-u.mon.GLB", + "atmosChem.emic2h4.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic2h5oh.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic2h6.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic3h6.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic3h8.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic4h10.tavg-u-hxy-u.mon.GLB", + "atmosChem.emich3oh.tavg-u-hxy-u.mon.GLB", + "atmosChem.emich4.tavg-u-hxy-u.mon.GLB", + "atmosChem.emih2.tavg-u-hxy-u.mon.GLB", + "atmosChem.emilkch4.tavg-u-hxy-u.mon.GLB", + "atmosChem.h2.tavg-al-hxy-u.mon.GLB", + "atmosChem.h2loss.tavg-al-hxy-u.mon.GLB", + "atmosChem.h2prod.tavg-al-hxy-u.mon.GLB", + "atmosChem.hcfc22.tavg-u-hm-u.mon.GLB", + "atmosChem.meanage.tavg-al-hxy-u.mon.GLB", + "atmosChem.meanage.tavg-p39-hy-air.mon.GLB", + "atmosChem.n2o.tavg-al-hxy-u.mon.GLB", + "atmosChem.n2o.tavg-p39-hy-air.mon.GLB", + "atmosChem.o3.tavg-al-hxy-u.mon.GLB", + "atmosChem.o3.tavg-p19-hxy-air.mon.GLB", + "atmosChem.o3.tavg-p39-hy-air.mon.GLB", + "atmosChem.o3.tpt-al-hxy-u.mon.GLB", + "atmosChem.o3ref.tclm-al-hxy-u.fx.GLB", + "atmosChem.o3ref.ti-al-hxy-u.fx.GLB", + "atmosChem.o3ste.tavg-al-hxy-u.mon.GLB", + "atmosChem.rlutch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rlutcsch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rlutcso3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rluto3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsutch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsutcsch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsutcso3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsuto3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.stratch4loss.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropch4loss.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropch4lossoh.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropdo3chm.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropo3ste.tavg-al-hxy-u.mon.GLB", + "atmosChem.wethno3.tavg-al-hxy-u.mon.GLB", + "atmosChem.wetnh3.tavg-u-hxy-u.mon.GLB", + "atmosChem.wetnh4.tavg-u-hxy-u.mon.GLB", + "atmosChem.wetno3.tavg-al-hxy-u.mon.GLB", + "atmosChem.wetnoy.tavg-u-hxy-u.mon.GLB", + "land.albc.tavg-u-hxy-veg.mon.GLB", + "land.areacellr.ti-u-hxy-u.fx.GLB", + "land.baresoilFrac.tavg-u-hxy-u.mon.GLB", + "land.burntFractionAll.tavg-u-hxy-u.mon.GLB", + "land.cGeologicStorage.tavg-u-hxy-u.mon.GLB", + "land.cLand.tavg-u-hxy-lnd.mon.GLB", + "land.cLitter.tavg-u-hxy-lnd.mon.GLB", + "land.cnc.tavg-u-hxy-u.mon.GLB", + "land.cProduct.tavg-u-hxy-lnd.mon.GLB", + "land.cropFrac.tavg-u-hxy-u.mon.GLB", + "land.cSoil.tavg-d100cm-hxy-lnd.mon.GLB", + "land.cSoil.tavg-u-hxy-lnd.mon.GLB", + "land.cVeg.tavg-u-hxy-lnd.mon.GLB", + "land.dcw.tavg-u-hxy-lnd.day.GLB", + "land.dslw.tavg-u-hxy-lnd.day.GLB", + "land.evspsblpot.tavg-u-hxy-lnd.day.GLB", + "land.evspsblpot.tavg-u-hxy-lnd.mon.GLB", + "land.fAnthDisturb.tavg-u-hxy-lnd.mon.GLB", + "land.fBNF.tavg-u-hxy-lnd.mon.GLB", + "land.fCLandToOcean.tavg-u-hxy-lnd.mon.GLB", + "land.fDeforestToAtmos.tavg-u-hxy-lnd.mon.GLB", + "land.fDeforestToProduct.tavg-u-hxy-lnd.mon.GLB", + "land.fFire.tavg-u-hxy-lnd.mon.GLB", + "land.fFireAll.tavg-u-hxy-lnd.mon.GLB", + "land.fFireNat.tavg-u-hxy-lnd.mon.GLB", + "land.fHarvestToAtmos.tavg-u-hxy-lnd.mon.GLB", + "land.fHarvestToGeologicStorage.tavg-u-hxy-lnd.mon.GLB", + "land.fHarvestToProduct.tavg-u-hxy-lnd.mon.GLB", + "land.fLitterSoil.tavg-u-hxy-lnd.mon.GLB", + "land.fN2O.tavg-u-hxy-lnd.mon.GLB", + "land.fNAnthDisturb.tavg-u-hxy-lnd.mon.GLB", + "land.fNdep.tavg-u-hxy-lnd.mon.GLB", + "land.fNfert.tavg-u-hxy-lnd.mon.GLB", + "land.fNLandToOcean.tavg-u-hxy-lnd.mon.GLB", + "land.fNLitterSoil.tavg-u-hxy-lnd.mon.GLB", + "land.fNloss.tavg-u-hxy-lnd.mon.GLB", + "land.fNnetmin.tavg-u-hxy-lnd.mon.GLB", + "land.fNOx.tavg-u-hxy-lnd.mon.GLB", + "land.fNProduct.tavg-u-hxy-lnd.mon.GLB", + "land.fNup.tavg-u-hxy-lnd.mon.GLB", + "land.fNVegLitter.tavg-u-hxy-lnd.mon.GLB", + "land.fNVegSoil.tavg-u-hxy-lnd.mon.GLB", + "land.fProductDecomp.tavg-u-hxy-lnd.mon.GLB", + "land.fVegLitter.tavg-u-hxy-lnd.mon.GLB", + "land.fVegSoil.tavg-u-hxy-lnd.mon.GLB", + "land.gpp.tavg-u-hxy-lnd.mon.GLB", + "land.grassFrac.tavg-u-hxy-u.mon.GLB", + "land.landCoverFrac.tavg-u-hxy-u.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.day.GLB", + "land.mrrob.tavg-u-hxy-lnd.day.GLB", + "land.mrros.tavg-u-hxy-lnd.day.GLB", + "land.mrsfl.tavg-sl-hxy-lnd.day.GLB", + "land.mrsfl.tavg-sl-hxy-lnd.mon.GLB", + "land.mrsll.tavg-sl-hxy-lnd.day.GLB", + "land.mrsll.tavg-sl-hxy-lnd.mon.GLB", + "land.mrso.tavg-u-hxy-lnd.day.GLB", + "land.mrsol.tavg-d10cm-hxy-lnd.day.GLB", + "land.mrsol.tavg-sl-hxy-lnd.day.GLB", + "land.mrsol.tavg-sl-hxy-lnd.mon.GLB", + "land.mrsow.tavg-u-hxy-lnd.day.GLB", + "land.mrtws.tavg-u-hxy-lnd.day.GLB", + "land.mrtws.tavg-u-hxy-lnd.mon.GLB", + "land.nbp.tavg-u-hxy-lnd.mon.GLB", + "land.nep.tavg-u-hxy-lnd.mon.GLB", + "land.nLand.tavg-u-hxy-lnd.mon.GLB", + "land.nLitter.tavg-u-hxy-lnd.mon.GLB", + "land.nMineral.tavg-u-hxy-lnd.mon.GLB", + "land.npp.tavg-u-hxy-lnd.mon.GLB", + "land.nProduct.tavg-u-hxy-lnd.mon.GLB", + "land.nSoil.tavg-u-hxy-lnd.mon.GLB", + "land.nVeg.tavg-u-hxy-lnd.mon.GLB", + "land.pastureFrac.tavg-u-hxy-u.mon.GLB", + "land.prveg.tavg-u-hxy-lnd.mon.GLB", + "land.ra.tavg-u-hxy-lnd.mon.GLB", + "land.residualFrac.tavg-u-hxy-u.mon.GLB", + "land.rh.tavg-u-hxy-lnd.mon.GLB", + "land.rivi.tavg-u-hxy-lnd.day.GLB", + "land.rivo.tavg-u-hxy-lnd.day.GLB", + "land.rsds.tavg-u-hxy-sn.mon.GLB", + "land.rsus.tavg-u-hxy-sn.mon.GLB", + "land.shrubFrac.tavg-u-hxy-u.mon.GLB", + "land.tas.tavg-u-hxy-u.1hr.GLB", + "land.tran.tavg-u-hxy-lnd.mon.GLB", + "land.treeFrac.tavg-u-hxy-u.mon.GLB", + "land.tsl.tavg-sl-hxy-lnd.mon.GLB", + "land.tslsi.tavg-u-hxy-u.day.GLB", + "land.vegFrac.tavg-u-hxy-u.mon.GLB", + "land.vegHeight.tavg-u-hxy-veg.mon.GLB", + "land.wetlandCH4.tavg-u-hxy-lnd.mon.GLB", + "land.wtd.tavg-u-hxy-lnd.day.GLB", + "landIce.snd.tavg-u-hxy-lnd.mon.GLB", + "ocean.absscint.tavg-op4-hxy-sea.mon.GLB", + "ocean.agessc.tavg-ol-hxy-sea.mon.GLB", + "ocean.bigthetao.tavg-ol-hm-sea.mon.GLB", + "ocean.bigthetao.tavg-ol-hxy-sea.dec.GLB", + "ocean.bigthetao.tavg-op20bar-hxy-sea.day.GLB", + "ocean.chcint.tavg-op4-hxy-sea.mon.GLB", + "ocean.ficeberg.tavg-ol-hxy-sea.mon.GLB", + "ocean.friver.tavg-u-hxy-sea.mon.GLB", + "ocean.hfbasin.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpmadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpmdiff.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpsmadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfds.tavg-u-hxy-sea.mon.30S-90S", + "ocean.hfx.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfx.tavg-u-hxy-sea.day.GLB", + "ocean.hfx.tavg-u-hxy-sea.mon.GLB", + "ocean.hfy.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfy.tavg-u-hxy-sea.day.GLB", + "ocean.hfy.tavg-u-hxy-sea.mon.GLB", + "ocean.htovgyre.tavg-u-hyb-sea.mon.GLB", + "ocean.htovovrt.tavg-u-hyb-sea.mon.GLB", + "ocean.masscello.tavg-ol-hxy-sea.dec.GLB", + "ocean.masso.tavg-u-hm-sea.dec.GLB", + "ocean.masso.tavg-u-hm-sea.mon.GLB", + "ocean.mlotst.tavg-u-hxy-sea.day.GLB", + "ocean.mlotst.tavg-u-hxy-sea.mon.30S-90S", + "ocean.mlotst.tmax-u-hxy-sea.mon.GLB", + "ocean.mlotst.tmin-u-hxy-sea.mon.GLB", + "ocean.mpw.tavg-u-hxy-sea.mon.GLB", + "ocean.mpw.tpt-u-hxy-sea.3hr.GLB", + "ocean.mpwswell.tavg-u-hxy-sea.mon.GLB", + "ocean.mpwswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.mpwwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.mpwwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.msftbarot.tavg-u-hxy-sea.mon.GLB", + "ocean.msftm.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftm.tavg-rho-hyb-sea.mon.GLB", + "ocean.msfty.tavg-ol-ht-sea.mon.GLB", + "ocean.msfty.tavg-rho-ht-sea.mon.GLB", + "ocean.obvfsq.tavg-ol-hxy-sea.mon.GLB", + "ocean.pbo.tavg-u-hxy-sea.mon.GLB", + "ocean.pfscint.tavg-op4-hxy-sea.mon.GLB", + "ocean.phcint.tavg-op4-hxy-sea.mon.GLB", + "ocean.pso.tavg-u-hxy-sea.mon.GLB", + "ocean.scint.tavg-op4-hxy-sea.mon.GLB", + "ocean.sduo.tavg-u-hxy-sea.mon.GLB", + "ocean.sduo.tpt-u-hxy-sea.3hr.GLB", + "ocean.sdvo.tavg-u-hxy-sea.mon.GLB", + "ocean.sdvo.tpt-u-hxy-sea.3hr.GLB", + "ocean.sfx.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfx.tavg-u-hxy-sea.mon.GLB", + "ocean.sfy.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfy.tavg-u-hxy-sea.mon.GLB", + "ocean.sltbasin.tavg-u-hyb-sea.mon.GLB", + "ocean.sltovgyre.tavg-u-hyb-sea.mon.GLB", + "ocean.sltovovrt.tavg-u-hyb-sea.mon.GLB", + "ocean.so.tavg-ol-hm-sea.mon.GLB", + "ocean.so.tavg-ol-hxy-sea.dec.GLB", + "ocean.so.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.sob.tavg-u-hxy-sea.mon.GLB", + "ocean.sos.tavg-u-hm-sea.mon.30S-90S", + "ocean.sos.tavg-u-hm-sea.mon.GLB", + "ocean.swh.tavg-u-hxy-sea.mon.GLB", + "ocean.swh.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhmax.tmax-u-hxy-sea.mon.GLB", + "ocean.swhmax.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhswell.tavg-u-hxy-sea.mon.GLB", + "ocean.swhswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.swhwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.tauuo.tavg-u-hxy-sea.3hr.GLB", + "ocean.tauuo.tavg-u-hxy-sea.dec.GLB", + "ocean.tauvo.tavg-u-hxy-sea.3hr.GLB", + "ocean.tauvo.tavg-u-hxy-sea.dec.GLB", + "ocean.thetao.tavg-ol-hm-sea.mon.GLB", + "ocean.thetao.tavg-ol-hxy-sea.dec.GLB", + "ocean.thetao.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.thetao.tavg-op20bar-hxy-sea.day.GLB", + "ocean.thkcello.tavg-ol-hxy-sea.dec.GLB", + "ocean.tob.tavg-u-hxy-sea.mon.GLB", + "ocean.tos.tavg-u-hm-sea.mon.GLB", + "ocean.tos.tavg-u-hxy-sea.mon.30S-90S", + "ocean.tos.tpt-u-hxy-sea.3hr.GLB", + "ocean.tossq.tavg-u-hxy-sea.day.GLB", + "ocean.umo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.uo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.uos.tavg-u-hxy-sea.day.GLB", + "ocean.vmo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.vo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.volcello.tavg-ol-hxy-sea.dec.GLB", + "ocean.volcello.tavg-ol-hxy-sea.mon.GLB", + "ocean.volcello.tavg-ol-hxy-sea.yr.GLB", + "ocean.volcello.ti-ol-hxy-sea.fx.GLB", + "ocean.volo.tavg-u-hm-sea.dec.GLB", + "ocean.volo.tavg-u-hm-sea.mon.GLB", + "ocean.vos.tavg-u-hxy-sea.day.GLB", + "ocean.wdir.tavg-u-hxy-sea.mon.GLB", + "ocean.wdir.tpt-u-hxy-sea.3hr.GLB", + "ocean.wdirswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wdirswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wdirwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wdirwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.wfcorr.tavg-u-hxy-sea.mon.GLB", + "ocean.wfo.tavg-u-hxy-sea.mon.GLB", + "ocean.wmo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.wo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.wpdir.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdir.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpdirswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdirswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpdirwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdirwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpp.tavg-u-hxy-sea.mon.GLB", + "ocean.wpp.tpt-u-hxy-sea.3hr.GLB", + "ocean.wppswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wppswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wppwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wppwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.zos.tavg-u-hxy-sea.mon.30S-90S", + "ocean.zossq.tavg-u-hxy-sea.mon.GLB", + "ocean.zostoga.tavg-u-hm-sea.day.GLB", + "ocnBgchem.bacc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.calc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chl.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chl.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chlcalc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chldiat.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chldiat.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chldiaz.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chldiaz.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chlmisc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chlmisc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chlpico.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chlpico.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.detoc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dfe.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.dfe.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissic.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.dissic.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissoc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dmso.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.expc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.expcalc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.fgco2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fsfe.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fsn.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.graz.tavg-ol-hxy-sea.mon.30S-90S", + "ocnBgchem.icfriver.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intdic.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intdoc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intparag.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbfe.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbn.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbp.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbsi.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpcalcite.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpn2.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpoc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpp.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpp.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppcalc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppdiat.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppdiaz.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppmisc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppnitrate.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpppico.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.nh4.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.nh4.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.no3.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.no3.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.o2.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.ocfriver.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.ph.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.ph.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phyc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phyc.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.phyc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phycalc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phycalc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phydiat.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phydiat.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phydiaz.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phydiaz.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phymisc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phymisc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phypico.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phypico.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.po4.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.pp.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.si.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.spco2.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.spco2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.talk.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zmeso.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zmeso.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zmicro.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zmicro.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zmisc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zmisc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zooc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zooc.tavg-ol-hxy-sea.mon.GLB", + "seaIce.evspsbl.tavg-u-hxy-si.mon.GLB", + "seaIce.prra.tavg-u-hxy-si.mon.GLB", + "seaIce.prsn.tavg-u-hxy-si.mon.GLB", + "seaIce.rlds.tavg-u-hxy-si.mon.GLB", + "seaIce.rlus.tavg-u-hxy-si.mon.GLB", + "seaIce.rsds.tavg-u-hxy-si.day.GLB", + "seaIce.rsds.tavg-u-hxy-si.mon.GLB", + "seaIce.rsus.tavg-u-hxy-si.day.GLB", + "seaIce.rsus.tavg-u-hxy-si.mon.GLB", + "seaIce.sbl.tavg-u-hxy-si.mon.GLB", + "seaIce.siage.tavg-u-hxy-si.day.GLB", + "seaIce.siage.tavg-u-hxy-si.mon.30S-90S", + "seaIce.siarea.tavg-u-hm-u.mon.NH", + "seaIce.siarea.tavg-u-hm-u.mon.SH", + "seaIce.siconc.tavg-u-hxy-u.mon.30S-90S", + "seaIce.siconca.tavg-u-hxy-u.day.GLB", + "seaIce.siconca.tavg-u-hxy-u.mon.GLB", + "seaIce.sidconcdyn.tavg-u-hxy-sea.mon.GLB", + "seaIce.sidconcth.tavg-u-hxy-sea.mon.GLB", + "seaIce.sidmassdyn.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthsi.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthwat.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmeltbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmeltlat.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmelttop.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassth.tavg-u-hxy-si.mon.GLB", + "seaIce.sieqthick.tavg-u-hxy-si.mon.GLB", + "seaIce.siextent.tavg-u-hm-u.mon.NH", + "seaIce.siextent.tavg-u-hm-u.mon.SH", + "seaIce.siflcondbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflcondtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sifllattop.tavg-u-hxy-si.mon.GLB", + "seaIce.siflsensbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflsenstop.tavg-u-hxy-si.mon.GLB", + "seaIce.siflswdbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sihc.tavg-u-hxy-sea.mon.GLB", + "seaIce.sisndmassdyn.tavg-u-hxy-si.mon.GLB", + "seaIce.sisndmasssi.tavg-u-hxy-si.mon.GLB", + "seaIce.sisndmasswind.tavg-u-hxy-si.mon.GLB", + "seaIce.sisnhc.tavg-u-hxy-si.mon.GLB", + "seaIce.sisnmass.tavg-u-hm-u.mon.NH", + "seaIce.sisnmass.tavg-u-hm-u.mon.SH", + "seaIce.sispeed.tavg-u-hxy-si.day.GLB", + "seaIce.sispeed.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-si.day.GLB", + "seaIce.sithick.tavg-u-hxy-si.mon.30S-90S", + "seaIce.sitimefrac.tavg-u-hxy-sea.day.GLB", + "seaIce.sitimefrac.tavg-u-hxy-sea.mon.30S-90S", + "seaIce.siu.tavg-u-hxy-si.day.GLB", + "seaIce.siu.tavg-u-hxy-si.mon.30S-90S", + "seaIce.siv.tavg-u-hxy-si.day.GLB", + "seaIce.siv.tavg-u-hxy-si.mon.30S-90S", + "seaIce.sivol.tavg-u-hm-u.mon.NH", + "seaIce.sivol.tavg-u-hm-u.mon.SH", + "seaIce.snc.tavg-u-hxy-si.mon.GLB", + "seaIce.snd.tavg-u-hxy-sn.day.GLB", + "seaIce.snd.tavg-u-hxy-sn.mon.30S-90S", + "seaIce.snm.tavg-u-hxy-si.mon.GLB", + "seaIce.snw.tavg-u-hxy-si.mon.GLB", + "seaIce.ts.tavg-u-hxy-si.day.GLB", + "seaIce.ts.tavg-u-hxy-si.mon.30S-90S" + ], + "Medium": [ + "atmos.rls.tavg-u-hxy-u.day.GLB", + "atmos.rls.tavg-u-hxy-u.mon.GLB", + "atmos.rss.tavg-u-hxy-u.day.GLB", + "atmos.rss.tavg-u-hxy-u.mon.GLB", + "land.cLeaf.tavg-u-hxy-lnd.mon.GLB", + "land.cLitterCwd.tavg-u-hxy-lnd.mon.GLB", + "land.cLitterSubSurf.tavg-u-hxy-lnd.mon.GLB", + "land.cLitterSurf.tavg-u-hxy-lnd.mon.GLB", + "land.cOther.tavg-u-hxy-lnd.mon.GLB", + "land.cRoot.tavg-u-hxy-lnd.mon.GLB", + "land.cropFracC3.tavg-u-hxy-u.mon.GLB", + "land.cropFracC4.tavg-u-hxy-u.mon.GLB", + "land.cSoil.tavg-sl-hxy-lnd.mon.GLB", + "land.cSoilPools.tavg-u-hxy-lnd.mon.GLB", + "land.cStem.tavg-u-hxy-lnd.mon.GLB", + "land.cVeg.tavg-u-hxy-ng.mon.GLB", + "land.cVeg.tavg-u-hxy-shb.mon.GLB", + "land.cVeg.tavg-u-hxy-tree.mon.GLB", + "land.fLitterFire.tavg-u-hxy-lnd.mon.GLB", + "land.fNgas.tavg-u-hxy-lnd.mon.GLB", + "land.fNgasFire.tavg-u-hxy-lnd.mon.GLB", + "land.fNgasNonFire.tavg-u-hxy-lnd.mon.GLB", + "land.fNleach.tavg-u-hxy-lnd.mon.GLB", + "land.fVegFire.tavg-u-hxy-lnd.mon.GLB", + "land.fVegLitterMortality.tavg-u-hxy-lnd.mon.GLB", + "land.fVegLitterSenescence.tavg-u-hxy-lnd.mon.GLB", + "land.fVegSoilMortality.tavg-u-hxy-lnd.mon.GLB", + "land.fVegSoilSenescence.tavg-u-hxy-lnd.mon.GLB", + "land.gpp.tavg-u-hxy-ng.mon.GLB", + "land.gpp.tavg-u-hxy-shb.mon.GLB", + "land.gpp.tavg-u-hxy-tree.mon.GLB", + "land.grassFracC3.tavg-u-hxy-u.mon.GLB", + "land.grassFracC4.tavg-u-hxy-u.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.3hr.GLB", + "land.mrros.tavg-u-hxy-lnd.3hr.GLB", + "land.mrsol.tpt-d10cm-hxy-lnd.3hr.GLB", + "land.nLeaf.tavg-u-hxy-lnd.mon.GLB", + "land.nLitterCwd.tavg-u-hxy-lnd.mon.GLB", + "land.nLitterSubSurf.tavg-u-hxy-lnd.mon.GLB", + "land.nLitterSurf.tavg-u-hxy-lnd.mon.GLB", + "land.nMineralNH4.tavg-u-hxy-lnd.mon.GLB", + "land.nMineralNO3.tavg-u-hxy-lnd.mon.GLB", + "land.nOther.tavg-u-hxy-lnd.mon.GLB", + "land.npp.tavg-u-hxy-ng.mon.GLB", + "land.npp.tavg-u-hxy-shb.mon.GLB", + "land.npp.tavg-u-hxy-tree.mon.GLB", + "land.nppLeaf.tavg-u-hxy-lnd.mon.GLB", + "land.nppOther.tavg-u-hxy-lnd.mon.GLB", + "land.nppRoot.tavg-u-hxy-lnd.mon.GLB", + "land.nppStem.tavg-u-hxy-lnd.mon.GLB", + "land.nRoot.tavg-u-hxy-lnd.mon.GLB", + "land.nStem.tavg-u-hxy-lnd.mon.GLB", + "land.pastureFracC3.tavg-u-hxy-u.mon.GLB", + "land.pastureFracC4.tavg-u-hxy-u.mon.GLB", + "land.ra.tavg-u-hxy-ng.mon.GLB", + "land.ra.tavg-u-hxy-shb.mon.GLB", + "land.ra.tavg-u-hxy-tree.mon.GLB", + "land.raLeaf.tavg-u-hxy-lnd.mon.GLB", + "land.raOther.tavg-u-hxy-lnd.mon.GLB", + "land.raRoot.tavg-u-hxy-lnd.mon.GLB", + "land.raStem.tavg-u-hxy-lnd.mon.GLB", + "land.rh.tavg-u-hxy-ng.mon.GLB", + "land.rh.tavg-u-hxy-shb.mon.GLB", + "land.rh.tavg-u-hxy-tree.mon.GLB", + "land.rhLitter.tavg-u-hxy-lnd.mon.GLB", + "land.rhSoil.tavg-u-hxy-lnd.mon.GLB", + "land.treeFracBdlDcd.tavg-u-hxy-u.mon.GLB", + "land.treeFracBdlEvg.tavg-u-hxy-u.mon.GLB", + "land.treeFracNdlDcd.tavg-u-hxy-u.mon.GLB", + "land.treeFracNdlEvg.tavg-u-hxy-u.mon.GLB", + "land.vegHeight.tavg-u-hxy-ng.mon.GLB", + "land.vegHeight.tavg-u-hxy-shb.mon.GLB", + "land.vegHeight.tavg-u-hxy-tree.mon.GLB", + "land.wetlandCH4cons.tavg-u-hxy-lnd.mon.GLB", + "land.wetlandCH4prod.tavg-u-hxy-lnd.mon.GLB", + "land.wetlandFrac.tavg-u-hxy-u.mon.GLB", + "ocean.evspsbl.tavg-u-hxy-ifs.mon.GLB", + "ocean.ficeberg.tavg-u-hxy-sea.mon.GLB", + "ocean.hfacrossline.tavg-u-ht-sea.mon.GLB", + "ocean.hfevapds.tavg-u-hxy-ifs.mon.GLB", + "ocean.hfibthermds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfibthermds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfrainds.tavg-u-hxy-ifs.mon.GLB", + "ocean.hfrunoffds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfrunoffds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfsnthermds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfsnthermds.tavg-u-hxy-sea.mon.GLB", + "ocean.mfo.tavg-u-ht-sea.mon.GLB", + "ocean.sf6.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfacrossline.tavg-u-ht-sea.mon.GLB", + "ocean.sfdsi.tavg-u-hxy-sea.mon.GLB", + "ocean.sfriver.tavg-u-hxy-sea.mon.GLB", + "ocean.siflfwbot.tavg-u-hxy-sea.mon.GLB", + "ocean.so.tavg-ol-hxy-sea.day.GLB", + "ocean.tnkebto.tavg-u-hxy-sea.yr.GLB", + "ocean.vsf.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfcorr.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfevap.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfpr.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfriver.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfsit.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.arag.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.arag.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.calc.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.calc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chl.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.chlcalc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dmso.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.epn.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.epp.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.expc.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.expcalc.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.fgdms.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fric.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.froc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.graz.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.intppcalc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppdiat.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppdiaz.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppmisc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppnitrate.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intpppico.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.o2.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.ph.tavg-op20bar-hxy-sea.day.GLB", + "seaIce.sfdsi.tavg-u-hxy-si.mon.GLB", + "seaIce.siage.tavg-u-hxy-si.mon.GLB", + "seaIce.siarea.tavg-u-hm-u.day.NH", + "seaIce.siarea.tavg-u-hm-u.day.SH", + "seaIce.siareaacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.sicompstren.tavg-u-hxy-si.mon.GLB", + "seaIce.sidivvel.tpt-u-hxy-si.mon.GLB", + "seaIce.sidmasstranx.tavg-u-hxy-u.mon.GLB", + "seaIce.sidmasstrany.tavg-u-hxy-u.mon.GLB", + "seaIce.sidragbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidragtop.tavg-u-hxy-si.mon.GLB", + "seaIce.siextent.tavg-u-hm-u.day.NH", + "seaIce.siextent.tavg-u-hm-u.day.SH", + "seaIce.sifb.tavg-u-hxy-si.mon.GLB", + "seaIce.siflfwbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflfwdrain.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcecoriolx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcecorioly.tavg-u-hxy-si.mon.GLB", + "seaIce.siforceintstrx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforceintstry.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcetiltx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcetilty.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdconc.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdsnconc.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdsnthick.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdthick.tavg-u-hxy-si.mon.GLB", + "seaIce.simassacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.simpconc.tavg-u-hxy-si.mon.GLB", + "seaIce.simpeffconc.tavg-u-hxy-si.mon.GLB", + "seaIce.simprefrozen.tavg-u-hxy-simp.mon.GLB", + "seaIce.simpthick.tavg-u-hxy-simp.mon.GLB", + "seaIce.sirdgconc.tavg-u-hxy-si.mon.GLB", + "seaIce.sisali.tavg-u-hxy-si.mon.GLB", + "seaIce.sisaltmass.tavg-u-hxy-si.mon.GLB", + "seaIce.sishearvel.tpt-u-hxy-si.mon.GLB", + "seaIce.sisnmass.tavg-u-hm-u.day.NH", + "seaIce.sisnmass.tavg-u-hm-u.day.SH", + "seaIce.sisnmassacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.sistressave.tpt-u-hxy-si.mon.GLB", + "seaIce.sistressmax.tpt-u-hxy-si.mon.GLB", + "seaIce.sistrxdtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sistrxubot.tavg-u-hxy-si.mon.GLB", + "seaIce.sistrydtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sistryubot.tavg-u-hxy-si.mon.GLB", + "seaIce.sitempbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sitempsnic.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-sir.mon.GLB", + "seaIce.sivol.tavg-u-hm-u.day.NH", + "seaIce.sivol.tavg-u-hm-u.day.SH" + ], + "Low": [ + "land.c13Land.tavg-u-hxy-lnd.mon.GLB", + "land.c13Litter.tavg-u-hxy-lnd.mon.GLB", + "land.c13Soil.tavg-u-hxy-lnd.mon.GLB", + "land.c13Veg.tavg-u-hxy-lnd.mon.GLB", + "land.c14Land.tavg-u-hxy-lnd.mon.GLB", + "land.c14Litter.tavg-u-hxy-lnd.mon.GLB", + "land.c14Soil.tavg-u-hxy-lnd.mon.GLB", + "land.c14Veg.tavg-u-hxy-lnd.mon.GLB", + "land.gppc13.tavg-u-hxy-lnd.mon.GLB", + "land.gppc14.tavg-u-hxy-lnd.mon.GLB", + "land.netAtmosLandC13Flux.tavg-u-hxy-lnd.mon.GLB", + "land.netAtmosLandC14Flux.tavg-u-hxy-lnd.mon.GLB", + "land.rac13.tavg-u-hxy-lnd.mon.GLB", + "land.rac14.tavg-u-hxy-lnd.mon.GLB", + "land.rhc13.tavg-u-hxy-lnd.mon.GLB", + "land.rhc14.tavg-u-hxy-lnd.mon.GLB", + "ocean.difmxybo.tavg-ol-hxy-sea.yr.GLB", + "ocean.difmxylo.tavg-ol-hxy-sea.yr.GLB", + "ocean.diftrblo.tavg-ol-hxy-sea.yr.GLB", + "ocean.diftrelo.tavg-ol-hxy-sea.yr.GLB", + "ocean.difvho.tavg-ol-hxy-sea.yr.GLB", + "ocean.difvso.tavg-ol-hxy-sea.yr.GLB", + "ocean.dispkexyfo.tavg-u-hxy-sea.yr.GLB", + "ocean.dxto.ti-u-hxy-u.fx.GLB", + "ocean.dxuo.ti-u-hxy-u.fx.GLB", + "ocean.dxvo.ti-u-hxy-u.fx.GLB", + "ocean.dyto.ti-u-hxy-u.fx.GLB", + "ocean.dyuo.ti-u-hxy-u.fx.GLB", + "ocean.dyvo.ti-u-hxy-u.fx.GLB", + "ocean.mlotstsq.tavg-u-hxy-sea.mon.GLB", + "ocean.msftmmpa.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftmmpa.tavg-rho-hyb-sea.mon.GLB", + "ocean.msftmsmpa.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftypa.tavg-ol-ht-sea.mon.GLB", + "ocean.msftypa.tavg-rho-ht-sea.mon.GLB", + "ocean.ocontempdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontempmint.tavg-u-hxy-sea.yr.GLB", + "ocean.ocontemppadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemppmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemppsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemprmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemptend.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottempdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottempmint.tavg-u-hxy-sea.yr.GLB", + "ocean.opottemppadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemppmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemppsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemprmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemptend.tavg-ol-hxy-sea.dec.GLB", + "ocean.osaltdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpsmadvect.tavg-ol-hxy-sea.mon.GLB", + "ocean.osaltpsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltrmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osalttend.tavg-ol-hxy-sea.yr.GLB", + "ocean.rsdoabsorb.tavg-ol-hxy-sea.yr.GLB", + "ocean.somint.tavg-u-hxy-sea.yr.GLB", + "ocean.sossq.tavg-u-hxy-sea.mon.GLB", + "ocean.thkcelluo.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcellvo.tavg-ol-hxy-sea.mon.GLB", + "ocean.tnpeo.tavg-u-hxy-sea.yr.GLB", + "ocean.tossq.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.dissi13c.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.dissi13c.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissi14c.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissi14cabio.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.dissi14cabio.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.fg13co2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fg14co2abio.tavg-u-hxy-sea.mon.GLB" + ] + }, + "esm-flat10-zec": { + "Core": [ + "atmos.areacella.ti-u-hxy-u.fx.GLB", + "atmos.cl.tavg-al-hxy-u.mon.GLB", + "atmos.cli.tavg-al-hxy-u.mon.GLB", + "atmos.clivi.tavg-u-hxy-u.mon.GLB", + "atmos.clt.tavg-u-hxy-u.day.GLB", + "atmos.clt.tavg-u-hxy-u.mon.GLB", + "atmos.clw.tavg-al-hxy-u.mon.GLB", + "atmos.clwvi.tavg-u-hxy-u.mon.GLB", + "atmos.evspsbl.tavg-u-hxy-u.mon.GLB", + "atmos.hfls.tavg-u-hxy-u.mon.GLB", + "atmos.hfss.tavg-u-hxy-u.mon.GLB", + "atmos.hur.tavg-p19-hxy-air.mon.GLB", + "atmos.hur.tavg-p19-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.6hr.GLB", + "atmos.hurs.tavg-h2m-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.mon.GLB", + "atmos.hus.tavg-p19-hxy-u.day.GLB", + "atmos.hus.tavg-p19-hxy-u.mon.GLB", + "atmos.huss.tavg-h2m-hxy-u.day.GLB", + "atmos.huss.tavg-h2m-hxy-u.mon.GLB", + "atmos.huss.tpt-h2m-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.1hr.GLB", + "atmos.pr.tavg-u-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.day.GLB", + "atmos.pr.tavg-u-hxy-u.mon.GLB", + "atmos.prc.tavg-u-hxy-u.mon.GLB", + "atmos.prsn.tavg-u-hxy-u.mon.GLB", + "atmos.prw.tavg-u-hxy-u.mon.GLB", + "atmos.ps.tavg-u-hxy-u.day.GLB", + "atmos.ps.tavg-u-hxy-u.mon.GLB", + "atmos.psl.tavg-u-hxy-u.day.GLB", + "atmos.psl.tavg-u-hxy-u.mon.GLB", + "atmos.rlds.tavg-u-hxy-u.mon.GLB", + "atmos.rldscs.tavg-u-hxy-u.mon.GLB", + "atmos.rlus.tavg-u-hxy-u.mon.GLB", + "atmos.rluscs.tavg-u-hxy-u.mon.GLB", + "atmos.rlut.tavg-u-hxy-u.mon.GLB", + "atmos.rlutcs.tavg-u-hxy-u.mon.GLB", + "atmos.rsds.tavg-u-hxy-u.day.GLB", + "atmos.rsds.tavg-u-hxy-u.mon.GLB", + "atmos.rsdscs.tavg-u-hxy-u.mon.GLB", + "atmos.rsdt.tavg-u-hxy-u.mon.GLB", + "atmos.rsus.tavg-u-hxy-u.mon.GLB", + "atmos.rsuscs.tavg-u-hxy-u.mon.GLB", + "atmos.rsut.tavg-u-hxy-u.mon.GLB", + "atmos.rsutcs.tavg-u-hxy-u.mon.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.day.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.mon.GLB", + "atmos.sftlf.ti-u-hxy-u.fx.GLB", + "atmos.ta.tavg-p19-hxy-air.day.GLB", + "atmos.ta.tavg-p19-hxy-air.mon.GLB", + "atmos.ta.tpt-p3-hxy-air.6hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.day.GLB", + "atmos.tas.tavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tmax-h2m-hxy-u.day.GLB", + "atmos.tas.tmaxavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tmin-h2m-hxy-u.day.GLB", + "atmos.tas.tminavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tpt-h2m-hxy-u.3hr.GLB", + "atmos.tauu.tavg-u-hxy-u.mon.GLB", + "atmos.tauv.tavg-u-hxy-u.mon.GLB", + "atmos.ts.tavg-u-hxy-u.mon.GLB", + "atmos.ua.tavg-p19-hxy-air.day.GLB", + "atmos.ua.tavg-p19-hxy-air.mon.GLB", + "atmos.ua.tpt-p3-hxy-air.6hr.GLB", + "atmos.uas.tavg-h10m-hxy-u.day.GLB", + "atmos.uas.tavg-h10m-hxy-u.mon.GLB", + "atmos.uas.tpt-h10m-hxy-u.3hr.GLB", + "atmos.va.tavg-p19-hxy-air.day.GLB", + "atmos.va.tavg-p19-hxy-air.mon.GLB", + "atmos.va.tpt-p3-hxy-air.6hr.GLB", + "atmos.vas.tavg-h10m-hxy-u.day.GLB", + "atmos.vas.tavg-h10m-hxy-u.mon.GLB", + "atmos.vas.tpt-h10m-hxy-u.3hr.GLB", + "atmos.wap.tavg-p19-hxy-air.mon.GLB", + "atmos.wap.tavg-p19-hxy-u.day.GLB", + "atmos.zg.tavg-p19-hxy-air.day.GLB", + "atmos.zg.tavg-p19-hxy-air.mon.GLB", + "land.evspsblsoi.tavg-u-hxy-lnd.mon.GLB", + "land.evspsblveg.tavg-u-hxy-lnd.mon.GLB", + "land.lai.tavg-u-hxy-lnd.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.mon.GLB", + "land.mrros.tavg-u-hxy-lnd.mon.GLB", + "land.mrso.tavg-u-hxy-lnd.mon.GLB", + "land.mrsofc.ti-u-hxy-lnd.fx.GLB", + "land.mrsol.tavg-d10cm-hxy-lnd.mon.GLB", + "land.orog.ti-u-hxy-u.fx.GLB", + "land.rootd.ti-u-hxy-lnd.fx.GLB", + "land.sftgif.ti-u-hxy-u.fx.GLB", + "land.slthick.ti-sl-hxy-lnd.fx.GLB", + "landIce.mrfso.tavg-u-hxy-lnd.mon.GLB", + "landIce.snc.tavg-u-hxy-lnd.mon.GLB", + "landIce.snw.tavg-u-hxy-lnd.mon.GLB", + "ocean.areacello.ti-u-hxy-u.fx.GLB", + "ocean.basin.ti-u-hxy-u.fx.GLB", + "ocean.bigthetao.tavg-ol-hxy-sea.mon.GLB", + "ocean.deptho.ti-u-hxy-sea.fx.GLB", + "ocean.hfds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfgeou.ti-u-hxy-sea.fx.GLB", + "ocean.masscello.tavg-ol-hxy-sea.mon.GLB", + "ocean.masscello.ti-ol-hxy-sea.fx.GLB", + "ocean.mlotst.tavg-u-hxy-sea.mon.GLB", + "ocean.sftof.ti-u-hxy-u.fx.GLB", + "ocean.so.tavg-ol-hxy-sea.mon.GLB", + "ocean.sos.tavg-u-hxy-sea.day.GLB", + "ocean.sos.tavg-u-hxy-sea.mon.GLB", + "ocean.tauuo.tavg-u-hxy-sea.mon.GLB", + "ocean.tauvo.tavg-u-hxy-sea.mon.GLB", + "ocean.thetao.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcello.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcello.ti-ol-hxy-sea.fx.GLB", + "ocean.tos.tavg-u-hxy-sea.day.GLB", + "ocean.tos.tavg-u-hxy-sea.mon.GLB", + "ocean.umo.tavg-ol-hxy-sea.mon.GLB", + "ocean.uo.tavg-ol-hxy-sea.mon.GLB", + "ocean.vmo.tavg-ol-hxy-sea.mon.GLB", + "ocean.vo.tavg-ol-hxy-sea.mon.GLB", + "ocean.wmo.tavg-ol-hxy-sea.mon.GLB", + "ocean.wo.tavg-ol-hxy-sea.mon.GLB", + "ocean.zos.tavg-u-hxy-sea.day.GLB", + "ocean.zos.tavg-u-hxy-sea.mon.GLB", + "ocean.zostoga.tavg-u-hm-sea.mon.GLB", + "seaIce.siconc.tavg-u-hxy-u.day.GLB", + "seaIce.siconc.tavg-u-hxy-u.mon.GLB", + "seaIce.simass.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-si.mon.GLB", + "seaIce.sitimefrac.tavg-u-hxy-sea.mon.GLB", + "seaIce.siu.tavg-u-hxy-si.mon.GLB", + "seaIce.siv.tavg-u-hxy-si.mon.GLB", + "seaIce.snd.tavg-u-hxy-sn.mon.GLB", + "seaIce.ts.tavg-u-hxy-si.mon.GLB" + ], + "High": [ + "aerosol.abs550aer.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550bc.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550dust.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550no3.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550oa.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550so4.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550ss.tavg-u-hxy-u.mon.GLB", + "aerosol.airmass.tavg-al-hxy-u.mon.GLB", + "aerosol.aoanh.tavg-al-hxy-u.mon.NH", + "aerosol.bry.tavg-p39-hy-air.mon.GLB", + "aerosol.bs550aer.tpt-al-hxy-u.6hr.GLB", + "aerosol.c2h6.tavg-al-hxy-u.mon.GLB", + "aerosol.c3h6.tavg-al-hxy-u.mon.GLB", + "aerosol.c3h8.tavg-al-hxy-u.mon.GLB", + "aerosol.ccldncl.tavg-u-hxy-ccl.mon.GLB", + "aerosol.ccn.tavg-u-hxy-ccl.mon.30S-90S", + "aerosol.ccn.tavg-u-hxy-ccl.mon.GLB", + "aerosol.ccn1.tavg-al-hxy-u.mon.30S-90S", + "aerosol.ccn1.tavg-al-hxy-u.mon.GLB", + "aerosol.ccnp02.tavg-al-hxy-u.mon.30S-90S", + "aerosol.ccnp02.tavg-al-hxy-u.mon.GLB", + "aerosol.cdnc.tavg-al-hxy-u.mon.30S-90S", + "aerosol.cdnc.tavg-al-hxy-u.mon.GLB", + "aerosol.cfc114.tavg-al-hxy-u.mon.GLB", + "aerosol.ch3coch3.tavg-al-hxy-u.mon.GLB", + "aerosol.cheaqpso4.tavg-al-hxy-u.mon.GLB", + "aerosol.chegpso4.tavg-al-hxy-u.mon.GLB", + "aerosol.chepasoa.tavg-u-hxy-u.mon.GLB", + "aerosol.chepsoa.tavg-u-hxy-u.mon.GLB", + "aerosol.cly.tavg-p39-hy-air.mon.GLB", + "aerosol.co.tavg-al-hxy-u.mon.GLB", + "aerosol.co.tavg-h2m-hxy-u.day.GLB", + "aerosol.cod.tavg-u-hxy-u.day.GLB", + "aerosol.cod.tavg-u-hxy-u.mon.30S-90S", + "aerosol.cod.tavg-u-hxy-u.mon.GLB", + "aerosol.conccn.tavg-al-hxy-u.mon.GLB", + "aerosol.conccn.tpt-u-hs-u.3hr.GLB", + "aerosol.drybc.tavg-u-hxy-u.mon.GLB", + "aerosol.drydust.tavg-u-hxy-u.mon.GLB", + "aerosol.dryno3.tavg-u-hxy-u.mon.GLB", + "aerosol.dryo3.tavg-u-hxy-u.mon.GLB", + "aerosol.dryoa.tavg-u-hxy-u.mon.GLB", + "aerosol.dryso2.tavg-u-hxy-u.mon.GLB", + "aerosol.dryso4.tavg-u-hxy-u.mon.GLB", + "aerosol.dryss.tavg-u-hxy-u.mon.GLB", + "aerosol.ec550aer.tavg-al-hxy-u.mon.GLB", + "aerosol.ec550aer.tpt-u-hxy-u.6hr.GLB", + "aerosol.emiaco.tavg-u-hxy-u.mon.GLB", + "aerosol.emianox.tavg-u-hxy-u.mon.GLB", + "aerosol.emiaoa.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbbc.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbch4.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbco.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbdms.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbnh3.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbnox.tavg-u-hxy-u.mon.GLB", + "aerosol.emibboa.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbso2.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbvoc.tavg-u-hxy-u.mon.GLB", + "aerosol.emibc.tavg-u-hxy-u.mon.GLB", + "aerosol.emibvoc.tavg-u-hxy-u.mon.GLB", + "aerosol.emico.tavg-u-hxy-u.mon.GLB", + "aerosol.emidms.tavg-u-hxy-u.mon.30S-90S", + "aerosol.emidms.tavg-u-hxy-u.mon.GLB", + "aerosol.emidust.tavg-u-hxy-u.mon.GLB", + "aerosol.emiisop.tavg-u-hxy-u.mon.GLB", + "aerosol.emilnox.tavg-al-hxy-u.mon.GLB", + "aerosol.eminh3.tavg-u-hxy-u.mon.GLB", + "aerosol.eminox.tavg-u-hxy-u.mon.GLB", + "aerosol.emioa.tavg-u-hxy-u.mon.GLB", + "aerosol.emiso2.tavg-u-hxy-u.mon.GLB", + "aerosol.emiso4.tavg-u-hxy-u.mon.GLB", + "aerosol.emiss.tavg-u-hxy-u.mon.30S-90S", + "aerosol.emiss.tavg-u-hxy-u.mon.GLB", + "aerosol.emivoc.tavg-u-hxy-u.mon.GLB", + "aerosol.h2o.tavg-al-hxy-u.mon.GLB", + "aerosol.h2o.tavg-p39-hy-air.mon.GLB", + "aerosol.hcfc22.tavg-al-hxy-u.mon.GLB", + "aerosol.hcho.tavg-al-hxy-u.mon.GLB", + "aerosol.hcl.tavg-al-hxy-u.mon.GLB", + "aerosol.hcl.tavg-p39-hy-air.mon.GLB", + "aerosol.hfc125.tavg-al-hxy-u.mon.GLB", + "aerosol.hfc134a.tavg-al-hxy-u.mon.GLB", + "aerosol.hno3.tavg-al-hxy-u.mon.GLB", + "aerosol.hno3.tavg-p39-hy-air.mon.GLB", + "aerosol.ho2.tavg-p39-hy-air.mon.GLB", + "aerosol.isop.tavg-al-hxy-u.mon.GLB", + "aerosol.jno2.tavg-al-hxy-u.mon.GLB", + "aerosol.lossch4.tavg-al-hxy-u.mon.GLB", + "aerosol.lossco.tavg-al-hxy-u.mon.GLB", + "aerosol.lossn2o.tavg-al-hxy-u.mon.GLB", + "aerosol.lwp.tavg-u-hxy-u.mon.GLB", + "aerosol.mmraerh2o.tavg-al-hxy-u.mon.GLB", + "aerosol.mmraerh2o.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmraerh2o.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrbc.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrbc.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrbc.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrbc.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrdust.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrdust.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrdust.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrdust.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrnh4.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrnh4.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrnh4.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrnh4.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrno3.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrno3.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrno3.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrno3.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmroa.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmroa.tavg-al-hxy-u.mon.GLB", + "aerosol.mmroa.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmroa.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrpm1.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrpm1.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrpm2p5.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrpm2p5.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrso4.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrso4.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrso4.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrso4.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrsoa.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrsoa.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrsoa.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrss.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrss.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrss.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrss.tpt-h2m-hs-u.3hr.GLB", + "aerosol.nh50.tavg-al-hxy-u.mon.GLB", + "aerosol.no.tavg-al-hxy-u.mon.GLB", + "aerosol.no2.tavg-al-hxy-u.mon.GLB", + "aerosol.no2.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.noy.tavg-p39-hy-air.mon.GLB", + "aerosol.o3.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.o3loss.tavg-al-hxy-u.mon.GLB", + "aerosol.o3prod.tavg-al-hxy-u.mon.GLB", + "aerosol.od443aer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550aer.tavg-u-hxy-u.day.GLB", + "aerosol.od550aer.tavg-u-hxy-u.mon.30S-90S", + "aerosol.od550aer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550aerh2o.tavg-u-hxy-u.mon.GLB", + "aerosol.od550bb.tavg-u-hxy-u.mon.GLB", + "aerosol.od550bc.tavg-u-hxy-u.mon.GLB", + "aerosol.od550csaer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550dust.tavg-u-hxy-u.mon.GLB", + "aerosol.od550lt1aer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550no3.tavg-u-hxy-u.mon.GLB", + "aerosol.od550oa.tavg-u-hxy-u.mon.GLB", + "aerosol.od550so4.tavg-u-hxy-u.mon.GLB", + "aerosol.od550soa.tavg-u-hxy-u.mon.GLB", + "aerosol.od550ss.tavg-u-hxy-u.mon.GLB", + "aerosol.od865aer.tavg-u-hxy-u.mon.GLB", + "aerosol.oh.tavg-al-hxy-u.mon.GLB", + "aerosol.oh.tavg-p39-hy-air.mon.GLB", + "aerosol.pan.tavg-al-hxy-u.mon.GLB", + "aerosol.photo1d.tavg-al-hxy-u.mon.GLB", + "aerosol.pod0.tsum-u-hxy-u.mon.GLB", + "aerosol.reffccwctop.tavg-u-hxy-cl.mon.GLB", + "aerosol.reffclwtop.tavg-u-hxy-cl.mon.30S-90S", + "aerosol.reffclwtop.tavg-u-hxy-cl.mon.GLB", + "aerosol.rluscsaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rlutaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rlutcsaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rsutaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rsutcsaf.tavg-u-hxy-u.mon.GLB", + "aerosol.sfpm1.tavg-h2m-hxy-u.day.GLB", + "aerosol.sfpm10.tavg-al-hxy-u.mon.30S-90S", + "aerosol.sfpm10.tavg-al-hxy-u.mon.GLB", + "aerosol.sfpm10.tavg-h2m-hxy-u.day.GLB", + "aerosol.sfpm25.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.sfpm25.tavg-h2m-hxy-u.day.GLB", + "aerosol.so2.tavg-al-hxy-u.mon.30S-90S", + "aerosol.so2.tavg-al-hxy-u.mon.GLB", + "aerosol.so2.tavg-h2m-hxy-u.day.GLB", + "aerosol.so2.tpt-h2m-hs-u.3hr.GLB", + "aerosol.tatp.tavg-u-hxy-u.mon.GLB", + "aerosol.toz.tavg-u-hxy-u.day.GLB", + "aerosol.toz.tavg-u-hxy-u.mon.GLB", + "aerosol.tropoz.tavg-u-hxy-u.mon.GLB", + "aerosol.ttop.tavg-u-hxy-cl.mon.GLB", + "aerosol.ua.tavg-10hPa-hxy-air.day.GLB", + "aerosol.vt100.tavg-100hPa-hy-air.mon.GLB", + "aerosol.wa.tavg-al-hxy-u.mon.GLB", + "aerosol.wetbc.tavg-u-hxy-u.mon.GLB", + "aerosol.wetdust.tavg-u-hxy-u.mon.GLB", + "aerosol.wetoa.tavg-u-hxy-u.mon.GLB", + "aerosol.wetso2.tavg-u-hxy-u.mon.GLB", + "aerosol.wetso4.tavg-u-hxy-u.mon.GLB", + "aerosol.wetss.tavg-u-hxy-u.mon.GLB", + "aerosol.zg.tavg-10hPa-hxy-air.day.GLB", + "atmos.albisccp.tavg-u-hxy-cl.mon.30S-90S", + "atmos.bldep.tavg-u-hxy-u.mon.GLB", + "atmos.bldep.tmax-u-hxy-u.day.GLB", + "atmos.bldep.tmin-u-hxy-u.day.GLB", + "atmos.cl.tavg-al-hxy-u.mon.30S-90S", + "atmos.clc.tavg-al-hxy-u.mon.30S-90S", + "atmos.clc.tavg-al-hxy-u.mon.GLB", + "atmos.clcalipso.tavg-220hPa-hxy-air.mon.30S-90S", + "atmos.clcalipso.tavg-220hPa-hxy-air.mon.GLB", + "atmos.clcalipso.tavg-560hPa-hxy-air.mon.30S-90S", + "atmos.clcalipso.tavg-560hPa-hxy-air.mon.GLB", + "atmos.clcalipso.tavg-840hPa-hxy-air.mon.30S-90S", + "atmos.clcalipso.tavg-840hPa-hxy-air.mon.GLB", + "atmos.clcalipso.tavg-h40-hxy-air.mon.30S-90S", + "atmos.cldnci.tavg-u-hxy-cl.mon.GLB", + "atmos.cldncl.tavg-u-hxy-cl.mon.GLB", + "atmos.cldnvi.tavg-u-hxy-u.mon.GLB", + "atmos.cli.tavg-al-hxy-u.mon.30S-90S", + "atmos.clic.tavg-al-hxy-u.mon.30S-90S", + "atmos.clis.tavg-al-hxy-u.mon.30S-90S", + "atmos.clisccp.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clisccp.tavg-p7c-hxy-air.mon.GLB", + "atmos.clivi.tavg-u-hxy-u.mon.30S-90S", + "atmos.clivimodis.tavg-u-hxy-u.mon.30S-90S", + "atmos.clmodis.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clmodis.tavg-p7c-hxy-air.mon.GLB", + "atmos.clmodisice.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clmodisice.tavg-p7c-hxy-air.mon.GLB", + "atmos.clmodisiceReff.tavg-u-hxy-u.mon.GLB", + "atmos.clmodisliquid.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clmodisliquid.tavg-p7c-hxy-air.mon.GLB", + "atmos.clmodisliquidReff.tavg-u-hxy-u.mon.GLB", + "atmos.cls.tavg-al-hxy-u.mon.30S-90S", + "atmos.clt.tavg-u-hxy-u.mon.30S-90S", + "atmos.cltc.tavg-u-hxy-u.mon.GLB", + "atmos.cltcalipso.tavg-u-hxy-u.mon.30S-90S", + "atmos.cltisccp.tavg-u-hxy-u.mon.30S-90S", + "atmos.cltmodis.tavg-u-hxy-u.mon.30S-90S", + "atmos.clw.tavg-al-hxy-u.mon.30S-90S", + "atmos.clwc.tavg-al-hxy-u.mon.30S-90S", + "atmos.clws.tavg-al-hxy-u.mon.30S-90S", + "atmos.clwvi.tavg-u-hxy-u.mon.30S-90S", + "atmos.clwvimodis.tavg-u-hxy-u.mon.30S-90S", + "atmos.co2.tavg-al-hxy-u.mon.GLB", + "atmos.co2.tavg-p19-hxy-air.mon.GLB", + "atmos.co23D.tavg-al-hxy-u.mon.GLB", + "atmos.co2mass.tavg-u-hm-u.mon.GLB", + "atmos.dmc.tavg-alh-hxy-u.mon.30S-90S", + "atmos.edt.tavg-al-hxy-u.mon.30S-90S", + "atmos.evspsbl.tavg-u-hxy-lnd.day.GLB", + "atmos.evu.tavg-al-hxy-u.mon.30S-90S", + "atmos.fco2antt.tavg-u-hxy-u.mon.GLB", + "atmos.fco2fos.tavg-u-hxy-u.mon.GLB", + "atmos.fco2nat.tavg-u-hxy-u.mon.GLB", + "atmos.hfls.tavg-u-hxy-u.mon.30S-90S", + "atmos.hfss.tavg-u-hxy-u.mon.30S-90S", + "atmos.hur.tavg-al-hxy-u.mon.30S-90S", + "atmos.hur.tavg-al-hxy-u.mon.GLB", + "atmos.hur.tavg-p19-hxy-air.mon.30S-90S", + "atmos.hurs.tavg-h2m-hxy-u.mon.30S-90S", + "atmos.hus.tavg-al-hxy-u.mon.30S-90S", + "atmos.hus.tavg-al-hxy-u.mon.GLB", + "atmos.hus.tavg-p19-hxy-u.mon.30S-90S", + "atmos.hus.tpt-al-hxy-u.6hr.GLB", + "atmos.hus.tpt-p7h-hxy-air.6hr.GLB", + "atmos.huss.tavg-h2m-hxy-u.mon.30S-90S", + "atmos.huss.tpt-h2m-hxy-u.1hr.GLB", + "atmos.mc.tavg-alh-hxy-u.mon.GLB", + "atmos.mcd.tavg-alh-hxy-u.mon.30S-90S", + "atmos.mcu.tavg-alh-hxy-u.mon.30S-90S", + "atmos.mcu.tavg-alh-hxy-u.mon.GLB", + "atmos.pctisccp.tavg-u-hxy-cl.mon.30S-90S", + "atmos.pfull.tavg-al-hxy-u.mon.GLB", + "atmos.pfull.tclm-al-hxy-u.mon.30S-90S", + "atmos.phalf.tavg-alh-hxy-u.mon.GLB", + "atmos.pr.tavg-u-hxy-u.mon.30S-90S", + "atmos.pr.tmax-u-hxy-u.day.GLB", + "atmos.pr.tpt-u-hxy-u.6hr.GLB", + "atmos.prc.tavg-u-hxy-u.mon.30S-90S", + "atmos.prra.tavg-u-hxy-lnd.day.GLB", + "atmos.prra.tavg-u-hxy-u.mon.30S-90S", + "atmos.prsn.tavg-u-hxy-u.3hr.GLB", + "atmos.prsn.tavg-u-hxy-u.day.GLB", + "atmos.prsn.tavg-u-hxy-u.mon.30S-90S", + "atmos.prw.tavg-u-hxy-u.day.GLB", + "atmos.prw.tavg-u-hxy-u.mon.30S-90S", + "atmos.ps.tavg-u-hxy-u.1hr.GLB", + "atmos.ps.tavg-u-hxy-u.mon.30S-90S", + "atmos.ps.tpt-u-hxy-u.6hr.GLB", + "atmos.psl.tavg-u-hxy-u.mon.30S-90S", + "atmos.psl.tpt-u-hxy-u.1hr.GLB", + "atmos.psl.tpt-u-hxy-u.6hr.GLB", + "atmos.ptp.tavg-u-hxy-u.mon.GLB", + "atmos.reffcclwtop.tavg-u-hxy-ccl.mon.GLB", + "atmos.reffclic.tavg-al-hxy-ccl.mon.30S-90S", + "atmos.reffclis.tavg-al-hxy-scl.mon.30S-90S", + "atmos.reffclwc.tavg-al-hxy-ccl.mon.30S-90S", + "atmos.reffclws.tavg-al-hxy-scl.mon.30S-90S", + "atmos.reffsclwtop.tavg-u-hxy-scl.mon.GLB", + "atmos.rld.tavg-alh-hxy-u.mon.GLB", + "atmos.rld4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rldcs.tavg-alh-hxy-u.mon.GLB", + "atmos.rldcs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rlds.tavg-u-hxy-u.1hr.GLB", + "atmos.rlds.tavg-u-hxy-u.day.GLB", + "atmos.rlds.tavg-u-hxy-u.mon.30S-90S", + "atmos.rldscs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rlu.tavg-alh-hxy-u.mon.GLB", + "atmos.rlu4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rlucs.tavg-alh-hxy-u.mon.GLB", + "atmos.rlucs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rlus.tavg-u-hxy-u.day.GLB", + "atmos.rlus.tavg-u-hxy-u.mon.30S-90S", + "atmos.rlut.tavg-u-hxy-u.mon.30S-90S", + "atmos.rlut4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rlutcs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rlutcs4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rsd.tavg-alh-hxy-u.mon.GLB", + "atmos.rsd4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsdcs.tavg-alh-hxy-u.mon.GLB", + "atmos.rsdcs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsds.tavg-u-hxy-u.1hr.GLB", + "atmos.rsds.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsdscs.tavg-u-hxy-u.day.GLB", + "atmos.rsdscs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsdt.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsu.tavg-alh-hxy-u.mon.GLB", + "atmos.rsu4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsucs.tavg-alh-hxy-u.mon.GLB", + "atmos.rsucs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsus.tavg-u-hxy-u.day.GLB", + "atmos.rsus.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsuscs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsut.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsut4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rsutcs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsutcs4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rtmt.tavg-u-hxy-u.mon.GLB", + "atmos.rv850.tpt-850hPa-hxy-air.6hr.GLB", + "atmos.scldncl.tavg-u-hxy-scl.mon.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.mon.30S-90S", + "atmos.ta.tavg-al-hxy-u.mon.30S-90S", + "atmos.ta.tavg-al-hxy-u.mon.GLB", + "atmos.ta.tavg-p19-hxy-air.mon.30S-90S", + "atmos.ta.tavg-p39-hy-air.mon.GLB", + "atmos.ta.tpt-al-hxy-u.6hr.GLB", + "atmos.ta.tpt-p7h-hxy-air.6hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.1hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.mon.30S-90S", + "atmos.tas.tmaxavg-h2m-hxy-u.mon.30S-90S", + "atmos.tas.tminavg-h2m-hxy-u.mon.30S-90S", + "atmos.tnt.tavg-al-hxy-u.mon.GLB", + "atmos.tntrl.tavg-al-hxy-u.mon.GLB", + "atmos.tntrs.tavg-al-hxy-u.mon.GLB", + "atmos.ts.tavg-u-hxy-u.mon.30S-90S", + "atmos.ts.tpt-u-hxy-u.6hr.GLB", + "atmos.ua.tavg-al-hxy-u.mon.GLB", + "atmos.ua.tavg-p19-hxy-air.mon.30S-90S", + "atmos.ua.tavg-p39-hy-air.mon.GLB", + "atmos.ua.tpt-al-hxy-u.6hr.GLB", + "atmos.ua.tpt-p7h-hxy-air.6hr.GLB", + "atmos.uas.tavg-h10m-hxy-u.mon.30S-90S", + "atmos.uas.tpt-h10m-hxy-u.1hr.GLB", + "atmos.va.tavg-al-hxy-u.mon.GLB", + "atmos.va.tavg-p19-hxy-air.mon.30S-90S", + "atmos.va.tavg-p39-hy-air.mon.GLB", + "atmos.va.tpt-al-hxy-u.6hr.GLB", + "atmos.va.tpt-p7h-hxy-air.6hr.GLB", + "atmos.vas.tavg-h10m-hxy-u.mon.30S-90S", + "atmos.vas.tpt-h10m-hxy-u.1hr.GLB", + "atmos.wap.tavg-p19-hxy-air.mon.30S-90S", + "atmos.zg.tavg-1000hPa-hxy-air.day.GLB", + "atmos.zg.tavg-500hPa-hxy-air.day.GLB", + "atmos.zg.tavg-al-hxy-u.mon.GLB", + "atmos.zg.tavg-p19-hxy-air.mon.30S-90S", + "atmos.zg.tavg-p39-hy-air.mon.GLB", + "atmos.zg.tpt-500hPa-hxy-air.6hr.GLB", + "atmos.zg.tpt-al-hxy-u.6hr.GLB", + "atmos.zg.tpt-p7h-hxy-air.6hr.GLB", + "atmos.ztp.tavg-u-hxy-u.mon.GLB", + "atmosChem.c2h4.tavg-al-hxy-u.mon.GLB", + "atmosChem.c2h5oh.tavg-al-hxy-u.mon.GLB", + "atmosChem.c4h10.tavg-al-hxy-u.mon.GLB", + "atmosChem.cfc11.tavg-u-hm-u.mon.GLB", + "atmosChem.cfc113.tavg-u-hm-u.mon.GLB", + "atmosChem.cfc12.tavg-u-hm-u.mon.GLB", + "atmosChem.ch3oh.tavg-al-hxy-u.mon.GLB", + "atmosChem.ch4.tavg-al-hxy-u.mon.GLB", + "atmosChem.ch4.tavg-p39-hy-air.mon.GLB", + "atmosChem.ch4losssoil.tavg-u-hxy-u.mon.GLB", + "atmosChem.ch4ref.ti-al-hxy-u.fx.GLB", + "atmosChem.chegph2oo1d.tavg-al-hxy-u.mon.GLB", + "atmosChem.chepnh4.tavg-al-hxy-u.mon.GLB", + "atmosChem.chepno3.tavg-al-hxy-u.mon.GLB", + "atmosChem.dms.tavg-al-hxy-u.mon.30S-90S", + "atmosChem.dms.tavg-al-hxy-u.mon.GLB", + "atmosChem.do3chm.tavg-al-hxy-u.mon.GLB", + "atmosChem.dryh2.tavg-u-hxy-u.mon.GLB", + "atmosChem.dryhno3.tavg-u-hxy-u.mon.GLB", + "atmosChem.drynh3.tavg-u-hxy-u.mon.GLB", + "atmosChem.drynh4.tavg-u-hxy-u.mon.GLB", + "atmosChem.drynoy.tavg-u-hxy-u.mon.GLB", + "atmosChem.e90inst.tpt-al-hxy-u.mon.GLB", + "atmosChem.emiach4.tavg-u-hxy-u.mon.GLB", + "atmosChem.emiavnox.tavg-al-hxy-u.mon.GLB", + "atmosChem.emic2h4.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic2h5oh.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic2h6.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic3h6.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic3h8.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic4h10.tavg-u-hxy-u.mon.GLB", + "atmosChem.emich3oh.tavg-u-hxy-u.mon.GLB", + "atmosChem.emich4.tavg-u-hxy-u.mon.GLB", + "atmosChem.emih2.tavg-u-hxy-u.mon.GLB", + "atmosChem.emilkch4.tavg-u-hxy-u.mon.GLB", + "atmosChem.h2.tavg-al-hxy-u.mon.GLB", + "atmosChem.h2loss.tavg-al-hxy-u.mon.GLB", + "atmosChem.h2prod.tavg-al-hxy-u.mon.GLB", + "atmosChem.hcfc22.tavg-u-hm-u.mon.GLB", + "atmosChem.meanage.tavg-al-hxy-u.mon.GLB", + "atmosChem.meanage.tavg-p39-hy-air.mon.GLB", + "atmosChem.n2o.tavg-al-hxy-u.mon.GLB", + "atmosChem.n2o.tavg-p39-hy-air.mon.GLB", + "atmosChem.o3.tavg-al-hxy-u.mon.GLB", + "atmosChem.o3.tavg-p19-hxy-air.mon.GLB", + "atmosChem.o3.tavg-p39-hy-air.mon.GLB", + "atmosChem.o3.tpt-al-hxy-u.mon.GLB", + "atmosChem.o3ref.tclm-al-hxy-u.fx.GLB", + "atmosChem.o3ref.ti-al-hxy-u.fx.GLB", + "atmosChem.o3ste.tavg-al-hxy-u.mon.GLB", + "atmosChem.rlutch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rlutcsch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rlutcso3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rluto3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsutch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsutcsch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsutcso3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsuto3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.stratch4loss.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropch4loss.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropch4lossoh.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropdo3chm.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropo3ste.tavg-al-hxy-u.mon.GLB", + "atmosChem.wethno3.tavg-al-hxy-u.mon.GLB", + "atmosChem.wetnh3.tavg-u-hxy-u.mon.GLB", + "atmosChem.wetnh4.tavg-u-hxy-u.mon.GLB", + "atmosChem.wetno3.tavg-al-hxy-u.mon.GLB", + "atmosChem.wetnoy.tavg-u-hxy-u.mon.GLB", + "land.albc.tavg-u-hxy-veg.mon.GLB", + "land.areacellr.ti-u-hxy-u.fx.GLB", + "land.baresoilFrac.tavg-u-hxy-u.mon.GLB", + "land.burntFractionAll.tavg-u-hxy-u.mon.GLB", + "land.cGeologicStorage.tavg-u-hxy-u.mon.GLB", + "land.cLand.tavg-u-hxy-lnd.mon.GLB", + "land.cLitter.tavg-u-hxy-lnd.mon.GLB", + "land.cnc.tavg-u-hxy-u.mon.GLB", + "land.cProduct.tavg-u-hxy-lnd.mon.GLB", + "land.cropFrac.tavg-u-hxy-u.mon.GLB", + "land.cSoil.tavg-d100cm-hxy-lnd.mon.GLB", + "land.cSoil.tavg-u-hxy-lnd.mon.GLB", + "land.cVeg.tavg-u-hxy-lnd.mon.GLB", + "land.dcw.tavg-u-hxy-lnd.day.GLB", + "land.dslw.tavg-u-hxy-lnd.day.GLB", + "land.evspsblpot.tavg-u-hxy-lnd.day.GLB", + "land.evspsblpot.tavg-u-hxy-lnd.mon.GLB", + "land.fAnthDisturb.tavg-u-hxy-lnd.mon.GLB", + "land.fBNF.tavg-u-hxy-lnd.mon.GLB", + "land.fCLandToOcean.tavg-u-hxy-lnd.mon.GLB", + "land.fDeforestToAtmos.tavg-u-hxy-lnd.mon.GLB", + "land.fDeforestToProduct.tavg-u-hxy-lnd.mon.GLB", + "land.fFire.tavg-u-hxy-lnd.mon.GLB", + "land.fFireAll.tavg-u-hxy-lnd.mon.GLB", + "land.fFireNat.tavg-u-hxy-lnd.mon.GLB", + "land.fHarvestToAtmos.tavg-u-hxy-lnd.mon.GLB", + "land.fHarvestToGeologicStorage.tavg-u-hxy-lnd.mon.GLB", + "land.fHarvestToProduct.tavg-u-hxy-lnd.mon.GLB", + "land.fLitterSoil.tavg-u-hxy-lnd.mon.GLB", + "land.fN2O.tavg-u-hxy-lnd.mon.GLB", + "land.fNAnthDisturb.tavg-u-hxy-lnd.mon.GLB", + "land.fNdep.tavg-u-hxy-lnd.mon.GLB", + "land.fNfert.tavg-u-hxy-lnd.mon.GLB", + "land.fNLandToOcean.tavg-u-hxy-lnd.mon.GLB", + "land.fNLitterSoil.tavg-u-hxy-lnd.mon.GLB", + "land.fNloss.tavg-u-hxy-lnd.mon.GLB", + "land.fNnetmin.tavg-u-hxy-lnd.mon.GLB", + "land.fNOx.tavg-u-hxy-lnd.mon.GLB", + "land.fNProduct.tavg-u-hxy-lnd.mon.GLB", + "land.fNup.tavg-u-hxy-lnd.mon.GLB", + "land.fNVegLitter.tavg-u-hxy-lnd.mon.GLB", + "land.fNVegSoil.tavg-u-hxy-lnd.mon.GLB", + "land.fProductDecomp.tavg-u-hxy-lnd.mon.GLB", + "land.fVegLitter.tavg-u-hxy-lnd.mon.GLB", + "land.fVegSoil.tavg-u-hxy-lnd.mon.GLB", + "land.gpp.tavg-u-hxy-lnd.mon.GLB", + "land.grassFrac.tavg-u-hxy-u.mon.GLB", + "land.landCoverFrac.tavg-u-hxy-u.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.day.GLB", + "land.mrrob.tavg-u-hxy-lnd.day.GLB", + "land.mrros.tavg-u-hxy-lnd.day.GLB", + "land.mrsfl.tavg-sl-hxy-lnd.day.GLB", + "land.mrsfl.tavg-sl-hxy-lnd.mon.GLB", + "land.mrsll.tavg-sl-hxy-lnd.day.GLB", + "land.mrsll.tavg-sl-hxy-lnd.mon.GLB", + "land.mrso.tavg-u-hxy-lnd.day.GLB", + "land.mrsol.tavg-d10cm-hxy-lnd.day.GLB", + "land.mrsol.tavg-sl-hxy-lnd.day.GLB", + "land.mrsol.tavg-sl-hxy-lnd.mon.GLB", + "land.mrsow.tavg-u-hxy-lnd.day.GLB", + "land.mrtws.tavg-u-hxy-lnd.day.GLB", + "land.mrtws.tavg-u-hxy-lnd.mon.GLB", + "land.nbp.tavg-u-hxy-lnd.mon.GLB", + "land.nep.tavg-u-hxy-lnd.mon.GLB", + "land.nLand.tavg-u-hxy-lnd.mon.GLB", + "land.nLitter.tavg-u-hxy-lnd.mon.GLB", + "land.nMineral.tavg-u-hxy-lnd.mon.GLB", + "land.npp.tavg-u-hxy-lnd.mon.GLB", + "land.nProduct.tavg-u-hxy-lnd.mon.GLB", + "land.nSoil.tavg-u-hxy-lnd.mon.GLB", + "land.nVeg.tavg-u-hxy-lnd.mon.GLB", + "land.pastureFrac.tavg-u-hxy-u.mon.GLB", + "land.prveg.tavg-u-hxy-lnd.mon.GLB", + "land.ra.tavg-u-hxy-lnd.mon.GLB", + "land.residualFrac.tavg-u-hxy-u.mon.GLB", + "land.rh.tavg-u-hxy-lnd.mon.GLB", + "land.rivi.tavg-u-hxy-lnd.day.GLB", + "land.rivo.tavg-u-hxy-lnd.day.GLB", + "land.rsds.tavg-u-hxy-sn.mon.GLB", + "land.rsus.tavg-u-hxy-sn.mon.GLB", + "land.shrubFrac.tavg-u-hxy-u.mon.GLB", + "land.tas.tavg-u-hxy-u.1hr.GLB", + "land.tran.tavg-u-hxy-lnd.mon.GLB", + "land.treeFrac.tavg-u-hxy-u.mon.GLB", + "land.tsl.tavg-sl-hxy-lnd.mon.GLB", + "land.tslsi.tavg-u-hxy-u.day.GLB", + "land.vegFrac.tavg-u-hxy-u.mon.GLB", + "land.vegHeight.tavg-u-hxy-veg.mon.GLB", + "land.wetlandCH4.tavg-u-hxy-lnd.mon.GLB", + "land.wtd.tavg-u-hxy-lnd.day.GLB", + "landIce.snd.tavg-u-hxy-lnd.mon.GLB", + "ocean.absscint.tavg-op4-hxy-sea.mon.GLB", + "ocean.agessc.tavg-ol-hxy-sea.mon.GLB", + "ocean.bigthetao.tavg-ol-hm-sea.mon.GLB", + "ocean.bigthetao.tavg-ol-hxy-sea.dec.GLB", + "ocean.bigthetao.tavg-op20bar-hxy-sea.day.GLB", + "ocean.chcint.tavg-op4-hxy-sea.mon.GLB", + "ocean.ficeberg.tavg-ol-hxy-sea.mon.GLB", + "ocean.friver.tavg-u-hxy-sea.mon.GLB", + "ocean.hfbasin.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpmadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpmdiff.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpsmadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfds.tavg-u-hxy-sea.mon.30S-90S", + "ocean.hfx.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfx.tavg-u-hxy-sea.day.GLB", + "ocean.hfx.tavg-u-hxy-sea.mon.GLB", + "ocean.hfy.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfy.tavg-u-hxy-sea.day.GLB", + "ocean.hfy.tavg-u-hxy-sea.mon.GLB", + "ocean.htovgyre.tavg-u-hyb-sea.mon.GLB", + "ocean.htovovrt.tavg-u-hyb-sea.mon.GLB", + "ocean.masscello.tavg-ol-hxy-sea.dec.GLB", + "ocean.masso.tavg-u-hm-sea.dec.GLB", + "ocean.masso.tavg-u-hm-sea.mon.GLB", + "ocean.mlotst.tavg-u-hxy-sea.day.GLB", + "ocean.mlotst.tavg-u-hxy-sea.mon.30S-90S", + "ocean.mlotst.tmax-u-hxy-sea.mon.GLB", + "ocean.mlotst.tmin-u-hxy-sea.mon.GLB", + "ocean.mpw.tavg-u-hxy-sea.mon.GLB", + "ocean.mpw.tpt-u-hxy-sea.3hr.GLB", + "ocean.mpwswell.tavg-u-hxy-sea.mon.GLB", + "ocean.mpwswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.mpwwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.mpwwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.msftbarot.tavg-u-hxy-sea.mon.GLB", + "ocean.msftm.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftm.tavg-rho-hyb-sea.mon.GLB", + "ocean.msfty.tavg-ol-ht-sea.mon.GLB", + "ocean.msfty.tavg-rho-ht-sea.mon.GLB", + "ocean.obvfsq.tavg-ol-hxy-sea.mon.GLB", + "ocean.pbo.tavg-u-hxy-sea.mon.GLB", + "ocean.pfscint.tavg-op4-hxy-sea.mon.GLB", + "ocean.phcint.tavg-op4-hxy-sea.mon.GLB", + "ocean.pso.tavg-u-hxy-sea.mon.GLB", + "ocean.scint.tavg-op4-hxy-sea.mon.GLB", + "ocean.sduo.tavg-u-hxy-sea.mon.GLB", + "ocean.sduo.tpt-u-hxy-sea.3hr.GLB", + "ocean.sdvo.tavg-u-hxy-sea.mon.GLB", + "ocean.sdvo.tpt-u-hxy-sea.3hr.GLB", + "ocean.sfx.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfx.tavg-u-hxy-sea.mon.GLB", + "ocean.sfy.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfy.tavg-u-hxy-sea.mon.GLB", + "ocean.sltbasin.tavg-u-hyb-sea.mon.GLB", + "ocean.sltovgyre.tavg-u-hyb-sea.mon.GLB", + "ocean.sltovovrt.tavg-u-hyb-sea.mon.GLB", + "ocean.so.tavg-ol-hm-sea.mon.GLB", + "ocean.so.tavg-ol-hxy-sea.dec.GLB", + "ocean.so.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.sob.tavg-u-hxy-sea.mon.GLB", + "ocean.sos.tavg-u-hm-sea.mon.30S-90S", + "ocean.sos.tavg-u-hm-sea.mon.GLB", + "ocean.swh.tavg-u-hxy-sea.mon.GLB", + "ocean.swh.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhmax.tmax-u-hxy-sea.mon.GLB", + "ocean.swhmax.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhswell.tavg-u-hxy-sea.mon.GLB", + "ocean.swhswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.swhwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.tauuo.tavg-u-hxy-sea.3hr.GLB", + "ocean.tauuo.tavg-u-hxy-sea.dec.GLB", + "ocean.tauvo.tavg-u-hxy-sea.3hr.GLB", + "ocean.tauvo.tavg-u-hxy-sea.dec.GLB", + "ocean.thetao.tavg-ol-hm-sea.mon.GLB", + "ocean.thetao.tavg-ol-hxy-sea.dec.GLB", + "ocean.thetao.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.thetao.tavg-op20bar-hxy-sea.day.GLB", + "ocean.thkcello.tavg-ol-hxy-sea.dec.GLB", + "ocean.tob.tavg-u-hxy-sea.mon.GLB", + "ocean.tos.tavg-u-hm-sea.mon.GLB", + "ocean.tos.tavg-u-hxy-sea.mon.30S-90S", + "ocean.tos.tpt-u-hxy-sea.3hr.GLB", + "ocean.tossq.tavg-u-hxy-sea.day.GLB", + "ocean.umo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.uo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.uos.tavg-u-hxy-sea.day.GLB", + "ocean.vmo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.vo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.volcello.tavg-ol-hxy-sea.dec.GLB", + "ocean.volcello.tavg-ol-hxy-sea.mon.GLB", + "ocean.volcello.tavg-ol-hxy-sea.yr.GLB", + "ocean.volcello.ti-ol-hxy-sea.fx.GLB", + "ocean.volo.tavg-u-hm-sea.dec.GLB", + "ocean.volo.tavg-u-hm-sea.mon.GLB", + "ocean.vos.tavg-u-hxy-sea.day.GLB", + "ocean.wdir.tavg-u-hxy-sea.mon.GLB", + "ocean.wdir.tpt-u-hxy-sea.3hr.GLB", + "ocean.wdirswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wdirswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wdirwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wdirwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.wfcorr.tavg-u-hxy-sea.mon.GLB", + "ocean.wfo.tavg-u-hxy-sea.mon.GLB", + "ocean.wmo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.wo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.wpdir.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdir.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpdirswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdirswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpdirwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdirwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpp.tavg-u-hxy-sea.mon.GLB", + "ocean.wpp.tpt-u-hxy-sea.3hr.GLB", + "ocean.wppswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wppswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wppwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wppwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.zos.tavg-u-hxy-sea.mon.30S-90S", + "ocean.zossq.tavg-u-hxy-sea.mon.GLB", + "ocean.zostoga.tavg-u-hm-sea.day.GLB", + "ocnBgchem.bacc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.calc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chl.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chl.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chlcalc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chldiat.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chldiat.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chldiaz.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chldiaz.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chlmisc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chlmisc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chlpico.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chlpico.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.detoc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dfe.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.dfe.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissic.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.dissic.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissoc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dmso.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.expc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.expcalc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.fgco2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fsfe.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fsn.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.graz.tavg-ol-hxy-sea.mon.30S-90S", + "ocnBgchem.icfriver.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intdic.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intdoc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intparag.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbfe.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbn.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbp.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbsi.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpcalcite.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpn2.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpoc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpp.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpp.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppcalc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppdiat.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppdiaz.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppmisc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppnitrate.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpppico.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.nh4.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.nh4.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.no3.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.no3.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.o2.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.ocfriver.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.ph.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.ph.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phyc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phyc.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.phyc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phycalc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phycalc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phydiat.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phydiat.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phydiaz.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phydiaz.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phymisc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phymisc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phypico.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phypico.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.po4.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.pp.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.si.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.spco2.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.spco2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.talk.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zmeso.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zmeso.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zmicro.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zmicro.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zmisc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zmisc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zooc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zooc.tavg-ol-hxy-sea.mon.GLB", + "seaIce.evspsbl.tavg-u-hxy-si.mon.GLB", + "seaIce.prra.tavg-u-hxy-si.mon.GLB", + "seaIce.prsn.tavg-u-hxy-si.mon.GLB", + "seaIce.rlds.tavg-u-hxy-si.mon.GLB", + "seaIce.rlus.tavg-u-hxy-si.mon.GLB", + "seaIce.rsds.tavg-u-hxy-si.day.GLB", + "seaIce.rsds.tavg-u-hxy-si.mon.GLB", + "seaIce.rsus.tavg-u-hxy-si.day.GLB", + "seaIce.rsus.tavg-u-hxy-si.mon.GLB", + "seaIce.sbl.tavg-u-hxy-si.mon.GLB", + "seaIce.siage.tavg-u-hxy-si.day.GLB", + "seaIce.siage.tavg-u-hxy-si.mon.30S-90S", + "seaIce.siarea.tavg-u-hm-u.mon.NH", + "seaIce.siarea.tavg-u-hm-u.mon.SH", + "seaIce.siconc.tavg-u-hxy-u.mon.30S-90S", + "seaIce.siconca.tavg-u-hxy-u.day.GLB", + "seaIce.siconca.tavg-u-hxy-u.mon.GLB", + "seaIce.sidconcdyn.tavg-u-hxy-sea.mon.GLB", + "seaIce.sidconcth.tavg-u-hxy-sea.mon.GLB", + "seaIce.sidmassdyn.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthsi.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthwat.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmeltbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmeltlat.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmelttop.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassth.tavg-u-hxy-si.mon.GLB", + "seaIce.sieqthick.tavg-u-hxy-si.mon.GLB", + "seaIce.siextent.tavg-u-hm-u.mon.NH", + "seaIce.siextent.tavg-u-hm-u.mon.SH", + "seaIce.siflcondbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflcondtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sifllattop.tavg-u-hxy-si.mon.GLB", + "seaIce.siflsensbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflsenstop.tavg-u-hxy-si.mon.GLB", + "seaIce.siflswdbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sihc.tavg-u-hxy-sea.mon.GLB", + "seaIce.sisndmassdyn.tavg-u-hxy-si.mon.GLB", + "seaIce.sisndmasssi.tavg-u-hxy-si.mon.GLB", + "seaIce.sisndmasswind.tavg-u-hxy-si.mon.GLB", + "seaIce.sisnhc.tavg-u-hxy-si.mon.GLB", + "seaIce.sisnmass.tavg-u-hm-u.mon.NH", + "seaIce.sisnmass.tavg-u-hm-u.mon.SH", + "seaIce.sispeed.tavg-u-hxy-si.day.GLB", + "seaIce.sispeed.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-si.day.GLB", + "seaIce.sithick.tavg-u-hxy-si.mon.30S-90S", + "seaIce.sitimefrac.tavg-u-hxy-sea.day.GLB", + "seaIce.sitimefrac.tavg-u-hxy-sea.mon.30S-90S", + "seaIce.siu.tavg-u-hxy-si.day.GLB", + "seaIce.siu.tavg-u-hxy-si.mon.30S-90S", + "seaIce.siv.tavg-u-hxy-si.day.GLB", + "seaIce.siv.tavg-u-hxy-si.mon.30S-90S", + "seaIce.sivol.tavg-u-hm-u.mon.NH", + "seaIce.sivol.tavg-u-hm-u.mon.SH", + "seaIce.snc.tavg-u-hxy-si.mon.GLB", + "seaIce.snd.tavg-u-hxy-sn.day.GLB", + "seaIce.snd.tavg-u-hxy-sn.mon.30S-90S", + "seaIce.snm.tavg-u-hxy-si.mon.GLB", + "seaIce.snw.tavg-u-hxy-si.mon.GLB", + "seaIce.ts.tavg-u-hxy-si.day.GLB", + "seaIce.ts.tavg-u-hxy-si.mon.30S-90S" + ], + "Medium": [ + "atmos.rls.tavg-u-hxy-u.day.GLB", + "atmos.rls.tavg-u-hxy-u.mon.GLB", + "atmos.rss.tavg-u-hxy-u.day.GLB", + "atmos.rss.tavg-u-hxy-u.mon.GLB", + "land.cLeaf.tavg-u-hxy-lnd.mon.GLB", + "land.cLitterCwd.tavg-u-hxy-lnd.mon.GLB", + "land.cLitterSubSurf.tavg-u-hxy-lnd.mon.GLB", + "land.cLitterSurf.tavg-u-hxy-lnd.mon.GLB", + "land.cOther.tavg-u-hxy-lnd.mon.GLB", + "land.cRoot.tavg-u-hxy-lnd.mon.GLB", + "land.cropFracC3.tavg-u-hxy-u.mon.GLB", + "land.cropFracC4.tavg-u-hxy-u.mon.GLB", + "land.cSoil.tavg-sl-hxy-lnd.mon.GLB", + "land.cSoilPools.tavg-u-hxy-lnd.mon.GLB", + "land.cStem.tavg-u-hxy-lnd.mon.GLB", + "land.cVeg.tavg-u-hxy-ng.mon.GLB", + "land.cVeg.tavg-u-hxy-shb.mon.GLB", + "land.cVeg.tavg-u-hxy-tree.mon.GLB", + "land.fLitterFire.tavg-u-hxy-lnd.mon.GLB", + "land.fNgas.tavg-u-hxy-lnd.mon.GLB", + "land.fNgasFire.tavg-u-hxy-lnd.mon.GLB", + "land.fNgasNonFire.tavg-u-hxy-lnd.mon.GLB", + "land.fNleach.tavg-u-hxy-lnd.mon.GLB", + "land.fVegFire.tavg-u-hxy-lnd.mon.GLB", + "land.fVegLitterMortality.tavg-u-hxy-lnd.mon.GLB", + "land.fVegLitterSenescence.tavg-u-hxy-lnd.mon.GLB", + "land.fVegSoilMortality.tavg-u-hxy-lnd.mon.GLB", + "land.fVegSoilSenescence.tavg-u-hxy-lnd.mon.GLB", + "land.gpp.tavg-u-hxy-ng.mon.GLB", + "land.gpp.tavg-u-hxy-shb.mon.GLB", + "land.gpp.tavg-u-hxy-tree.mon.GLB", + "land.grassFracC3.tavg-u-hxy-u.mon.GLB", + "land.grassFracC4.tavg-u-hxy-u.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.3hr.GLB", + "land.mrros.tavg-u-hxy-lnd.3hr.GLB", + "land.mrsol.tpt-d10cm-hxy-lnd.3hr.GLB", + "land.nLeaf.tavg-u-hxy-lnd.mon.GLB", + "land.nLitterCwd.tavg-u-hxy-lnd.mon.GLB", + "land.nLitterSubSurf.tavg-u-hxy-lnd.mon.GLB", + "land.nLitterSurf.tavg-u-hxy-lnd.mon.GLB", + "land.nMineralNH4.tavg-u-hxy-lnd.mon.GLB", + "land.nMineralNO3.tavg-u-hxy-lnd.mon.GLB", + "land.nOther.tavg-u-hxy-lnd.mon.GLB", + "land.npp.tavg-u-hxy-ng.mon.GLB", + "land.npp.tavg-u-hxy-shb.mon.GLB", + "land.npp.tavg-u-hxy-tree.mon.GLB", + "land.nppLeaf.tavg-u-hxy-lnd.mon.GLB", + "land.nppOther.tavg-u-hxy-lnd.mon.GLB", + "land.nppRoot.tavg-u-hxy-lnd.mon.GLB", + "land.nppStem.tavg-u-hxy-lnd.mon.GLB", + "land.nRoot.tavg-u-hxy-lnd.mon.GLB", + "land.nStem.tavg-u-hxy-lnd.mon.GLB", + "land.pastureFracC3.tavg-u-hxy-u.mon.GLB", + "land.pastureFracC4.tavg-u-hxy-u.mon.GLB", + "land.ra.tavg-u-hxy-ng.mon.GLB", + "land.ra.tavg-u-hxy-shb.mon.GLB", + "land.ra.tavg-u-hxy-tree.mon.GLB", + "land.raLeaf.tavg-u-hxy-lnd.mon.GLB", + "land.raOther.tavg-u-hxy-lnd.mon.GLB", + "land.raRoot.tavg-u-hxy-lnd.mon.GLB", + "land.raStem.tavg-u-hxy-lnd.mon.GLB", + "land.rh.tavg-u-hxy-ng.mon.GLB", + "land.rh.tavg-u-hxy-shb.mon.GLB", + "land.rh.tavg-u-hxy-tree.mon.GLB", + "land.rhLitter.tavg-u-hxy-lnd.mon.GLB", + "land.rhSoil.tavg-u-hxy-lnd.mon.GLB", + "land.treeFracBdlDcd.tavg-u-hxy-u.mon.GLB", + "land.treeFracBdlEvg.tavg-u-hxy-u.mon.GLB", + "land.treeFracNdlDcd.tavg-u-hxy-u.mon.GLB", + "land.treeFracNdlEvg.tavg-u-hxy-u.mon.GLB", + "land.vegHeight.tavg-u-hxy-ng.mon.GLB", + "land.vegHeight.tavg-u-hxy-shb.mon.GLB", + "land.vegHeight.tavg-u-hxy-tree.mon.GLB", + "land.wetlandCH4cons.tavg-u-hxy-lnd.mon.GLB", + "land.wetlandCH4prod.tavg-u-hxy-lnd.mon.GLB", + "land.wetlandFrac.tavg-u-hxy-u.mon.GLB", + "ocean.evspsbl.tavg-u-hxy-ifs.mon.GLB", + "ocean.ficeberg.tavg-u-hxy-sea.mon.GLB", + "ocean.hfacrossline.tavg-u-ht-sea.mon.GLB", + "ocean.hfevapds.tavg-u-hxy-ifs.mon.GLB", + "ocean.hfibthermds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfibthermds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfrainds.tavg-u-hxy-ifs.mon.GLB", + "ocean.hfrunoffds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfrunoffds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfsnthermds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfsnthermds.tavg-u-hxy-sea.mon.GLB", + "ocean.mfo.tavg-u-ht-sea.mon.GLB", + "ocean.sf6.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfacrossline.tavg-u-ht-sea.mon.GLB", + "ocean.sfdsi.tavg-u-hxy-sea.mon.GLB", + "ocean.sfriver.tavg-u-hxy-sea.mon.GLB", + "ocean.siflfwbot.tavg-u-hxy-sea.mon.GLB", + "ocean.so.tavg-ol-hxy-sea.day.GLB", + "ocean.tnkebto.tavg-u-hxy-sea.yr.GLB", + "ocean.vsf.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfcorr.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfevap.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfpr.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfriver.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfsit.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.arag.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.arag.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.calc.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.calc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chl.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.chlcalc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dmso.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.epn.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.epp.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.expc.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.expcalc.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.fgdms.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fric.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.froc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.graz.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.intppcalc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppdiat.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppdiaz.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppmisc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppnitrate.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intpppico.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.o2.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.ph.tavg-op20bar-hxy-sea.day.GLB", + "seaIce.sfdsi.tavg-u-hxy-si.mon.GLB", + "seaIce.siage.tavg-u-hxy-si.mon.GLB", + "seaIce.siarea.tavg-u-hm-u.day.NH", + "seaIce.siarea.tavg-u-hm-u.day.SH", + "seaIce.siareaacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.sicompstren.tavg-u-hxy-si.mon.GLB", + "seaIce.sidivvel.tpt-u-hxy-si.mon.GLB", + "seaIce.sidmasstranx.tavg-u-hxy-u.mon.GLB", + "seaIce.sidmasstrany.tavg-u-hxy-u.mon.GLB", + "seaIce.sidragbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidragtop.tavg-u-hxy-si.mon.GLB", + "seaIce.siextent.tavg-u-hm-u.day.NH", + "seaIce.siextent.tavg-u-hm-u.day.SH", + "seaIce.sifb.tavg-u-hxy-si.mon.GLB", + "seaIce.siflfwbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflfwdrain.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcecoriolx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcecorioly.tavg-u-hxy-si.mon.GLB", + "seaIce.siforceintstrx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforceintstry.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcetiltx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcetilty.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdconc.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdsnconc.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdsnthick.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdthick.tavg-u-hxy-si.mon.GLB", + "seaIce.simassacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.simpconc.tavg-u-hxy-si.mon.GLB", + "seaIce.simpeffconc.tavg-u-hxy-si.mon.GLB", + "seaIce.simprefrozen.tavg-u-hxy-simp.mon.GLB", + "seaIce.simpthick.tavg-u-hxy-simp.mon.GLB", + "seaIce.sirdgconc.tavg-u-hxy-si.mon.GLB", + "seaIce.sisali.tavg-u-hxy-si.mon.GLB", + "seaIce.sisaltmass.tavg-u-hxy-si.mon.GLB", + "seaIce.sishearvel.tpt-u-hxy-si.mon.GLB", + "seaIce.sisnmass.tavg-u-hm-u.day.NH", + "seaIce.sisnmass.tavg-u-hm-u.day.SH", + "seaIce.sisnmassacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.sistressave.tpt-u-hxy-si.mon.GLB", + "seaIce.sistressmax.tpt-u-hxy-si.mon.GLB", + "seaIce.sistrxdtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sistrxubot.tavg-u-hxy-si.mon.GLB", + "seaIce.sistrydtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sistryubot.tavg-u-hxy-si.mon.GLB", + "seaIce.sitempbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sitempsnic.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-sir.mon.GLB", + "seaIce.sivol.tavg-u-hm-u.day.NH", + "seaIce.sivol.tavg-u-hm-u.day.SH" + ], + "Low": [ + "land.c13Land.tavg-u-hxy-lnd.mon.GLB", + "land.c13Litter.tavg-u-hxy-lnd.mon.GLB", + "land.c13Soil.tavg-u-hxy-lnd.mon.GLB", + "land.c13Veg.tavg-u-hxy-lnd.mon.GLB", + "land.c14Land.tavg-u-hxy-lnd.mon.GLB", + "land.c14Litter.tavg-u-hxy-lnd.mon.GLB", + "land.c14Soil.tavg-u-hxy-lnd.mon.GLB", + "land.c14Veg.tavg-u-hxy-lnd.mon.GLB", + "land.gppc13.tavg-u-hxy-lnd.mon.GLB", + "land.gppc14.tavg-u-hxy-lnd.mon.GLB", + "land.netAtmosLandC13Flux.tavg-u-hxy-lnd.mon.GLB", + "land.netAtmosLandC14Flux.tavg-u-hxy-lnd.mon.GLB", + "land.rac13.tavg-u-hxy-lnd.mon.GLB", + "land.rac14.tavg-u-hxy-lnd.mon.GLB", + "land.rhc13.tavg-u-hxy-lnd.mon.GLB", + "land.rhc14.tavg-u-hxy-lnd.mon.GLB", + "ocean.difmxybo.tavg-ol-hxy-sea.yr.GLB", + "ocean.difmxylo.tavg-ol-hxy-sea.yr.GLB", + "ocean.diftrblo.tavg-ol-hxy-sea.yr.GLB", + "ocean.diftrelo.tavg-ol-hxy-sea.yr.GLB", + "ocean.difvho.tavg-ol-hxy-sea.yr.GLB", + "ocean.difvso.tavg-ol-hxy-sea.yr.GLB", + "ocean.dispkexyfo.tavg-u-hxy-sea.yr.GLB", + "ocean.dxto.ti-u-hxy-u.fx.GLB", + "ocean.dxuo.ti-u-hxy-u.fx.GLB", + "ocean.dxvo.ti-u-hxy-u.fx.GLB", + "ocean.dyto.ti-u-hxy-u.fx.GLB", + "ocean.dyuo.ti-u-hxy-u.fx.GLB", + "ocean.dyvo.ti-u-hxy-u.fx.GLB", + "ocean.mlotstsq.tavg-u-hxy-sea.mon.GLB", + "ocean.msftmmpa.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftmmpa.tavg-rho-hyb-sea.mon.GLB", + "ocean.msftmsmpa.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftypa.tavg-ol-ht-sea.mon.GLB", + "ocean.msftypa.tavg-rho-ht-sea.mon.GLB", + "ocean.ocontempdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontempmint.tavg-u-hxy-sea.yr.GLB", + "ocean.ocontemppadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemppmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemppsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemprmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemptend.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottempdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottempmint.tavg-u-hxy-sea.yr.GLB", + "ocean.opottemppadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemppmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemppsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemprmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemptend.tavg-ol-hxy-sea.dec.GLB", + "ocean.osaltdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpsmadvect.tavg-ol-hxy-sea.mon.GLB", + "ocean.osaltpsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltrmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osalttend.tavg-ol-hxy-sea.yr.GLB", + "ocean.rsdoabsorb.tavg-ol-hxy-sea.yr.GLB", + "ocean.somint.tavg-u-hxy-sea.yr.GLB", + "ocean.sossq.tavg-u-hxy-sea.mon.GLB", + "ocean.thkcelluo.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcellvo.tavg-ol-hxy-sea.mon.GLB", + "ocean.tnpeo.tavg-u-hxy-sea.yr.GLB", + "ocean.tossq.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.dissi13c.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.dissi13c.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissi14c.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissi14cabio.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.dissi14cabio.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.fg13co2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fg14co2abio.tavg-u-hxy-sea.mon.GLB" + ] + }, + "esm-hist": { + "Core": [ + "atmos.areacella.ti-u-hxy-u.fx.GLB", + "atmos.cl.tavg-al-hxy-u.mon.GLB", + "atmos.cli.tavg-al-hxy-u.mon.GLB", + "atmos.clivi.tavg-u-hxy-u.mon.GLB", + "atmos.clt.tavg-u-hxy-u.day.GLB", + "atmos.clt.tavg-u-hxy-u.mon.GLB", + "atmos.clw.tavg-al-hxy-u.mon.GLB", + "atmos.clwvi.tavg-u-hxy-u.mon.GLB", + "atmos.evspsbl.tavg-u-hxy-u.mon.GLB", + "atmos.hfls.tavg-u-hxy-u.mon.GLB", + "atmos.hfss.tavg-u-hxy-u.mon.GLB", + "atmos.hur.tavg-p19-hxy-air.mon.GLB", + "atmos.hur.tavg-p19-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.6hr.GLB", + "atmos.hurs.tavg-h2m-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.mon.GLB", + "atmos.hus.tavg-p19-hxy-u.day.GLB", + "atmos.hus.tavg-p19-hxy-u.mon.GLB", + "atmos.huss.tavg-h2m-hxy-u.day.GLB", + "atmos.huss.tavg-h2m-hxy-u.mon.GLB", + "atmos.huss.tpt-h2m-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.1hr.GLB", + "atmos.pr.tavg-u-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.day.GLB", + "atmos.pr.tavg-u-hxy-u.mon.GLB", + "atmos.prc.tavg-u-hxy-u.mon.GLB", + "atmos.prsn.tavg-u-hxy-u.mon.GLB", + "atmos.prw.tavg-u-hxy-u.mon.GLB", + "atmos.ps.tavg-u-hxy-u.day.GLB", + "atmos.ps.tavg-u-hxy-u.mon.GLB", + "atmos.psl.tavg-u-hxy-u.day.GLB", + "atmos.psl.tavg-u-hxy-u.mon.GLB", + "atmos.rlds.tavg-u-hxy-u.mon.GLB", + "atmos.rldscs.tavg-u-hxy-u.mon.GLB", + "atmos.rlus.tavg-u-hxy-u.mon.GLB", + "atmos.rluscs.tavg-u-hxy-u.mon.GLB", + "atmos.rlut.tavg-u-hxy-u.mon.GLB", + "atmos.rlutcs.tavg-u-hxy-u.mon.GLB", + "atmos.rsds.tavg-u-hxy-u.day.GLB", + "atmos.rsds.tavg-u-hxy-u.mon.GLB", + "atmos.rsdscs.tavg-u-hxy-u.mon.GLB", + "atmos.rsdt.tavg-u-hxy-u.mon.GLB", + "atmos.rsus.tavg-u-hxy-u.mon.GLB", + "atmos.rsuscs.tavg-u-hxy-u.mon.GLB", + "atmos.rsut.tavg-u-hxy-u.mon.GLB", + "atmos.rsutcs.tavg-u-hxy-u.mon.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.day.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.mon.GLB", + "atmos.sftlf.ti-u-hxy-u.fx.GLB", + "atmos.ta.tavg-p19-hxy-air.day.GLB", + "atmos.ta.tavg-p19-hxy-air.mon.GLB", + "atmos.ta.tpt-p3-hxy-air.6hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.day.GLB", + "atmos.tas.tavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tmax-h2m-hxy-u.day.GLB", + "atmos.tas.tmaxavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tmin-h2m-hxy-u.day.GLB", + "atmos.tas.tminavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tpt-h2m-hxy-u.3hr.GLB", + "atmos.tauu.tavg-u-hxy-u.mon.GLB", + "atmos.tauv.tavg-u-hxy-u.mon.GLB", + "atmos.ts.tavg-u-hxy-u.mon.GLB", + "atmos.ua.tavg-p19-hxy-air.day.GLB", + "atmos.ua.tavg-p19-hxy-air.mon.GLB", + "atmos.ua.tpt-p3-hxy-air.6hr.GLB", + "atmos.uas.tavg-h10m-hxy-u.day.GLB", + "atmos.uas.tavg-h10m-hxy-u.mon.GLB", + "atmos.uas.tpt-h10m-hxy-u.3hr.GLB", + "atmos.va.tavg-p19-hxy-air.day.GLB", + "atmos.va.tavg-p19-hxy-air.mon.GLB", + "atmos.va.tpt-p3-hxy-air.6hr.GLB", + "atmos.vas.tavg-h10m-hxy-u.day.GLB", + "atmos.vas.tavg-h10m-hxy-u.mon.GLB", + "atmos.vas.tpt-h10m-hxy-u.3hr.GLB", + "atmos.wap.tavg-p19-hxy-air.mon.GLB", + "atmos.wap.tavg-p19-hxy-u.day.GLB", + "atmos.zg.tavg-p19-hxy-air.day.GLB", + "atmos.zg.tavg-p19-hxy-air.mon.GLB", + "land.evspsblsoi.tavg-u-hxy-lnd.mon.GLB", + "land.evspsblveg.tavg-u-hxy-lnd.mon.GLB", + "land.lai.tavg-u-hxy-lnd.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.mon.GLB", + "land.mrros.tavg-u-hxy-lnd.mon.GLB", + "land.mrso.tavg-u-hxy-lnd.mon.GLB", + "land.mrsofc.ti-u-hxy-lnd.fx.GLB", + "land.mrsol.tavg-d10cm-hxy-lnd.mon.GLB", + "land.orog.ti-u-hxy-u.fx.GLB", + "land.rootd.ti-u-hxy-lnd.fx.GLB", + "land.sftgif.ti-u-hxy-u.fx.GLB", + "land.slthick.ti-sl-hxy-lnd.fx.GLB", + "landIce.mrfso.tavg-u-hxy-lnd.mon.GLB", + "landIce.snc.tavg-u-hxy-lnd.mon.GLB", + "landIce.snw.tavg-u-hxy-lnd.mon.GLB", + "ocean.areacello.ti-u-hxy-u.fx.GLB", + "ocean.basin.ti-u-hxy-u.fx.GLB", + "ocean.bigthetao.tavg-ol-hxy-sea.mon.GLB", + "ocean.deptho.ti-u-hxy-sea.fx.GLB", + "ocean.hfds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfgeou.ti-u-hxy-sea.fx.GLB", + "ocean.masscello.tavg-ol-hxy-sea.mon.GLB", + "ocean.masscello.ti-ol-hxy-sea.fx.GLB", + "ocean.mlotst.tavg-u-hxy-sea.mon.GLB", + "ocean.sftof.ti-u-hxy-u.fx.GLB", + "ocean.so.tavg-ol-hxy-sea.mon.GLB", + "ocean.sos.tavg-u-hxy-sea.day.GLB", + "ocean.sos.tavg-u-hxy-sea.mon.GLB", + "ocean.tauuo.tavg-u-hxy-sea.mon.GLB", + "ocean.tauvo.tavg-u-hxy-sea.mon.GLB", + "ocean.thetao.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcello.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcello.ti-ol-hxy-sea.fx.GLB", + "ocean.tos.tavg-u-hxy-sea.day.GLB", + "ocean.tos.tavg-u-hxy-sea.mon.GLB", + "ocean.umo.tavg-ol-hxy-sea.mon.GLB", + "ocean.uo.tavg-ol-hxy-sea.mon.GLB", + "ocean.vmo.tavg-ol-hxy-sea.mon.GLB", + "ocean.vo.tavg-ol-hxy-sea.mon.GLB", + "ocean.wmo.tavg-ol-hxy-sea.mon.GLB", + "ocean.wo.tavg-ol-hxy-sea.mon.GLB", + "ocean.zos.tavg-u-hxy-sea.day.GLB", + "ocean.zos.tavg-u-hxy-sea.mon.GLB", + "ocean.zostoga.tavg-u-hm-sea.mon.GLB", + "seaIce.siconc.tavg-u-hxy-u.day.GLB", + "seaIce.siconc.tavg-u-hxy-u.mon.GLB", + "seaIce.simass.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-si.mon.GLB", + "seaIce.sitimefrac.tavg-u-hxy-sea.mon.GLB", + "seaIce.siu.tavg-u-hxy-si.mon.GLB", + "seaIce.siv.tavg-u-hxy-si.mon.GLB", + "seaIce.snd.tavg-u-hxy-sn.mon.GLB", + "seaIce.ts.tavg-u-hxy-si.mon.GLB" + ], + "High": [ + "aerosol.abs550aer.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550bc.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550dust.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550no3.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550oa.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550so4.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550ss.tavg-u-hxy-u.mon.GLB", + "aerosol.airmass.tavg-al-hxy-u.mon.GLB", + "aerosol.aoanh.tavg-al-hxy-u.mon.NH", + "aerosol.bry.tavg-p39-hy-air.mon.GLB", + "aerosol.bs550aer.tpt-al-hxy-u.6hr.GLB", + "aerosol.c2h6.tavg-al-hxy-u.mon.GLB", + "aerosol.c3h6.tavg-al-hxy-u.mon.GLB", + "aerosol.c3h8.tavg-al-hxy-u.mon.GLB", + "aerosol.ccldncl.tavg-u-hxy-ccl.mon.GLB", + "aerosol.ccn.tavg-u-hxy-ccl.mon.30S-90S", + "aerosol.ccn.tavg-u-hxy-ccl.mon.GLB", + "aerosol.ccn1.tavg-al-hxy-u.mon.30S-90S", + "aerosol.ccn1.tavg-al-hxy-u.mon.GLB", + "aerosol.ccnp02.tavg-al-hxy-u.mon.30S-90S", + "aerosol.ccnp02.tavg-al-hxy-u.mon.GLB", + "aerosol.cdnc.tavg-al-hxy-u.mon.30S-90S", + "aerosol.cdnc.tavg-al-hxy-u.mon.GLB", + "aerosol.cfc114.tavg-al-hxy-u.mon.GLB", + "aerosol.ch3coch3.tavg-al-hxy-u.mon.GLB", + "aerosol.cheaqpso4.tavg-al-hxy-u.mon.GLB", + "aerosol.chegpso4.tavg-al-hxy-u.mon.GLB", + "aerosol.chepasoa.tavg-u-hxy-u.mon.GLB", + "aerosol.chepsoa.tavg-u-hxy-u.mon.GLB", + "aerosol.cly.tavg-p39-hy-air.mon.GLB", + "aerosol.co.tavg-al-hxy-u.mon.GLB", + "aerosol.co.tavg-h2m-hxy-u.day.GLB", + "aerosol.cod.tavg-u-hxy-u.day.GLB", + "aerosol.cod.tavg-u-hxy-u.mon.30S-90S", + "aerosol.cod.tavg-u-hxy-u.mon.GLB", + "aerosol.conccn.tavg-al-hxy-u.mon.GLB", + "aerosol.conccn.tpt-u-hs-u.3hr.GLB", + "aerosol.depdust.tavg-u-hxy-u.mon.GLB", + "aerosol.drybc.tavg-u-hxy-u.mon.GLB", + "aerosol.drydust.tavg-u-hxy-u.mon.GLB", + "aerosol.dryno3.tavg-u-hxy-u.mon.GLB", + "aerosol.dryo3.tavg-u-hxy-u.mon.GLB", + "aerosol.dryoa.tavg-u-hxy-u.mon.GLB", + "aerosol.dryso2.tavg-u-hxy-u.mon.GLB", + "aerosol.dryso4.tavg-u-hxy-u.mon.GLB", + "aerosol.dryss.tavg-u-hxy-u.mon.GLB", + "aerosol.ec550aer.tavg-al-hxy-u.mon.GLB", + "aerosol.ec550aer.tpt-u-hxy-u.6hr.GLB", + "aerosol.emiaco.tavg-u-hxy-u.mon.GLB", + "aerosol.emianox.tavg-u-hxy-u.mon.GLB", + "aerosol.emiaoa.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbbc.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbch4.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbco.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbdms.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbnh3.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbnox.tavg-u-hxy-u.mon.GLB", + "aerosol.emibboa.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbso2.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbvoc.tavg-u-hxy-u.mon.GLB", + "aerosol.emibc.tavg-u-hxy-u.mon.GLB", + "aerosol.emibvoc.tavg-u-hxy-u.mon.GLB", + "aerosol.emico.tavg-u-hxy-u.mon.GLB", + "aerosol.emidms.tavg-u-hxy-u.mon.30S-90S", + "aerosol.emidms.tavg-u-hxy-u.mon.GLB", + "aerosol.emidust.tavg-u-hxy-u.mon.GLB", + "aerosol.emiisop.tavg-u-hxy-u.mon.GLB", + "aerosol.emilnox.tavg-al-hxy-u.mon.GLB", + "aerosol.eminh3.tavg-u-hxy-u.mon.GLB", + "aerosol.eminox.tavg-u-hxy-u.mon.GLB", + "aerosol.emioa.tavg-u-hxy-u.mon.GLB", + "aerosol.emiso2.tavg-u-hxy-u.mon.GLB", + "aerosol.emiso4.tavg-u-hxy-u.mon.GLB", + "aerosol.emiss.tavg-u-hxy-u.mon.30S-90S", + "aerosol.emiss.tavg-u-hxy-u.mon.GLB", + "aerosol.emivoc.tavg-u-hxy-u.mon.GLB", + "aerosol.h2o.tavg-al-hxy-u.mon.GLB", + "aerosol.h2o.tavg-p39-hy-air.mon.GLB", + "aerosol.hcfc22.tavg-al-hxy-u.mon.GLB", + "aerosol.hcho.tavg-al-hxy-u.mon.GLB", + "aerosol.hcl.tavg-al-hxy-u.mon.GLB", + "aerosol.hcl.tavg-p39-hy-air.mon.GLB", + "aerosol.hfc125.tavg-al-hxy-u.mon.GLB", + "aerosol.hfc134a.tavg-al-hxy-u.mon.GLB", + "aerosol.hno3.tavg-al-hxy-u.mon.GLB", + "aerosol.hno3.tavg-p39-hy-air.mon.GLB", + "aerosol.ho2.tavg-p39-hy-air.mon.GLB", + "aerosol.isop.tavg-al-hxy-u.mon.GLB", + "aerosol.jno2.tavg-al-hxy-u.mon.GLB", + "aerosol.lossch4.tavg-al-hxy-u.mon.GLB", + "aerosol.lossco.tavg-al-hxy-u.mon.GLB", + "aerosol.lossn2o.tavg-al-hxy-u.mon.GLB", + "aerosol.lwp.tavg-u-hxy-u.mon.GLB", + "aerosol.mmraerh2o.tavg-al-hxy-u.mon.GLB", + "aerosol.mmraerh2o.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmraerh2o.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrbc.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrbc.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrbc.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrbc.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrdust.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrdust.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrdust.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrdust.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrnh4.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrnh4.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrnh4.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrnh4.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrno3.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrno3.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrno3.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrno3.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmroa.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmroa.tavg-al-hxy-u.mon.GLB", + "aerosol.mmroa.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmroa.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrpm1.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrpm1.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrpm2p5.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrpm2p5.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrso4.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrso4.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrso4.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrso4.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrsoa.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrsoa.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrsoa.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrss.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrss.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrss.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrss.tpt-h2m-hs-u.3hr.GLB", + "aerosol.nh50.tavg-al-hxy-u.mon.GLB", + "aerosol.no.tavg-al-hxy-u.mon.GLB", + "aerosol.no2.tavg-al-hxy-u.mon.GLB", + "aerosol.no2.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.noy.tavg-p39-hy-air.mon.GLB", + "aerosol.o3.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.o3.tmax-h2m-hxy-u.day.GLB", + "aerosol.o3loss.tavg-al-hxy-u.mon.GLB", + "aerosol.o3prod.tavg-al-hxy-u.mon.GLB", + "aerosol.od443aer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550aer.tavg-u-hxy-u.day.GLB", + "aerosol.od550aer.tavg-u-hxy-u.mon.30S-90S", + "aerosol.od550aer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550aerh2o.tavg-u-hxy-u.mon.GLB", + "aerosol.od550bb.tavg-u-hxy-u.mon.GLB", + "aerosol.od550bc.tavg-u-hxy-u.mon.GLB", + "aerosol.od550csaer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550dust.tavg-u-hxy-u.mon.GLB", + "aerosol.od550lt1aer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550no3.tavg-u-hxy-u.mon.GLB", + "aerosol.od550oa.tavg-u-hxy-u.mon.GLB", + "aerosol.od550so4.tavg-u-hxy-u.mon.GLB", + "aerosol.od550soa.tavg-u-hxy-u.mon.GLB", + "aerosol.od550ss.tavg-u-hxy-u.mon.GLB", + "aerosol.od865aer.tavg-u-hxy-u.mon.GLB", + "aerosol.oh.tavg-al-hxy-u.mon.GLB", + "aerosol.oh.tavg-p39-hy-air.mon.GLB", + "aerosol.pan.tavg-al-hxy-u.mon.GLB", + "aerosol.photo1d.tavg-al-hxy-u.mon.GLB", + "aerosol.pod0.tsum-u-hxy-u.mon.GLB", + "aerosol.reffccwctop.tavg-u-hxy-cl.mon.GLB", + "aerosol.reffclwtop.tavg-u-hxy-cl.mon.30S-90S", + "aerosol.reffclwtop.tavg-u-hxy-cl.mon.GLB", + "aerosol.rluscsaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rlutaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rlutcsaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rsutaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rsutcsaf.tavg-u-hxy-u.mon.GLB", + "aerosol.sfpm1.tavg-h2m-hxy-u.day.GLB", + "aerosol.sfpm10.tavg-al-hxy-u.mon.30S-90S", + "aerosol.sfpm10.tavg-al-hxy-u.mon.GLB", + "aerosol.sfpm10.tavg-h2m-hxy-u.day.GLB", + "aerosol.sfpm25.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.sfpm25.tavg-h2m-hxy-u.day.GLB", + "aerosol.so2.tavg-al-hxy-u.mon.30S-90S", + "aerosol.so2.tavg-al-hxy-u.mon.GLB", + "aerosol.so2.tavg-h2m-hxy-u.day.GLB", + "aerosol.so2.tpt-h2m-hs-u.3hr.GLB", + "aerosol.tatp.tavg-u-hxy-u.mon.GLB", + "aerosol.toz.tavg-u-hxy-u.day.GLB", + "aerosol.toz.tavg-u-hxy-u.mon.GLB", + "aerosol.tropoz.tavg-u-hxy-u.mon.GLB", + "aerosol.ttop.tavg-u-hxy-cl.mon.GLB", + "aerosol.ua.tavg-10hPa-hxy-air.day.GLB", + "aerosol.vt100.tavg-100hPa-hy-air.mon.GLB", + "aerosol.wa.tavg-al-hxy-u.mon.GLB", + "aerosol.wetbc.tavg-u-hxy-u.mon.GLB", + "aerosol.wetdust.tavg-u-hxy-u.mon.GLB", + "aerosol.wetoa.tavg-u-hxy-u.mon.GLB", + "aerosol.wetso2.tavg-u-hxy-u.mon.GLB", + "aerosol.wetso4.tavg-u-hxy-u.mon.GLB", + "aerosol.wetss.tavg-u-hxy-u.mon.GLB", + "aerosol.zg.tavg-10hPa-hxy-air.day.GLB", + "atmos.albisccp.tavg-u-hxy-cl.day.GLB", + "atmos.albisccp.tavg-u-hxy-cl.mon.30S-90S", + "atmos.albisccp.tavg-u-hxy-cl.mon.GLB", + "atmos.aod550volso4.tavg-u-hxy-u.mon.GLB", + "atmos.bldep.tavg-u-hxy-u.mon.GLB", + "atmos.bldep.tmax-u-hxy-u.day.GLB", + "atmos.bldep.tmin-u-hxy-u.day.GLB", + "atmos.bldep.tpt-u-hxy-u.3hr.GLB", + "atmos.ccb.tavg-u-hxy-ccl.day.GLB", + "atmos.ccb.tavg-u-hxy-ccl.mon.GLB", + "atmos.cct.tavg-u-hxy-ccl.day.GLB", + "atmos.cct.tavg-u-hxy-ccl.mon.GLB", + "atmos.ci.tavg-u-hxy-u.mon.GLB", + "atmos.cl.tavg-al-hxy-u.day.GLB", + "atmos.cl.tavg-al-hxy-u.mon.30S-90S", + "atmos.clc.tavg-al-hxy-u.mon.30S-90S", + "atmos.clc.tavg-al-hxy-u.mon.GLB", + "atmos.clcalipso.tavg-220hPa-hxy-air.day.GLB", + "atmos.clcalipso.tavg-220hPa-hxy-air.mon.30S-90S", + "atmos.clcalipso.tavg-220hPa-hxy-air.mon.GLB", + "atmos.clcalipso.tavg-560hPa-hxy-air.day.GLB", + "atmos.clcalipso.tavg-560hPa-hxy-air.mon.30S-90S", + "atmos.clcalipso.tavg-560hPa-hxy-air.mon.GLB", + "atmos.clcalipso.tavg-840hPa-hxy-air.day.GLB", + "atmos.clcalipso.tavg-840hPa-hxy-air.mon.30S-90S", + "atmos.clcalipso.tavg-840hPa-hxy-air.mon.GLB", + "atmos.clcalipso.tavg-h40-hxy-air.mon.30S-90S", + "atmos.clcalipso.tavg-h40-hxy-air.mon.GLB", + "atmos.cldnci.tavg-u-hxy-cl.mon.GLB", + "atmos.cldncl.tavg-u-hxy-cl.mon.GLB", + "atmos.cldnvi.tavg-u-hxy-u.day.GLB", + "atmos.cldnvi.tavg-u-hxy-u.mon.GLB", + "atmos.cli.tavg-al-hxy-u.day.GLB", + "atmos.cli.tavg-al-hxy-u.mon.30S-90S", + "atmos.clic.tavg-al-hxy-u.mon.30S-90S", + "atmos.clic.tavg-al-hxy-u.mon.GLB", + "atmos.clis.tavg-al-hxy-u.mon.30S-90S", + "atmos.clis.tavg-al-hxy-u.mon.GLB", + "atmos.clisccp.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clisccp.tavg-p7c-hxy-air.mon.GLB", + "atmos.clivi.tavg-u-hxy-u.3hr.GLB", + "atmos.clivi.tavg-u-hxy-u.day.GLB", + "atmos.clivi.tavg-u-hxy-u.mon.30S-90S", + "atmos.clivic.tavg-u-hxy-u.day.GLB", + "atmos.clivimodis.tavg-u-hxy-u.mon.30S-90S", + "atmos.clivimodis.tavg-u-hxy-u.mon.GLB", + "atmos.clmisr.tavg-h16-hxy-air.mon.GLB", + "atmos.clmodis.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clmodis.tavg-p7c-hxy-air.mon.GLB", + "atmos.clmodisice.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clmodisice.tavg-p7c-hxy-air.mon.GLB", + "atmos.clmodisiceReff.tavg-u-hxy-u.mon.GLB", + "atmos.clmodisliquid.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clmodisliquid.tavg-p7c-hxy-air.mon.GLB", + "atmos.clmodisliquidReff.tavg-u-hxy-u.mon.GLB", + "atmos.cls.tavg-al-hxy-u.mon.30S-90S", + "atmos.cls.tavg-al-hxy-u.mon.GLB", + "atmos.clt.tavg-u-hxy-lnd.day.GLB", + "atmos.clt.tavg-u-hxy-u.1hr.30S-90S", + "atmos.clt.tavg-u-hxy-u.3hr.GLB", + "atmos.clt.tavg-u-hxy-u.mon.30S-90S", + "atmos.cltc.tavg-u-hxy-u.mon.GLB", + "atmos.cltcalipso.tavg-u-hxy-u.day.GLB", + "atmos.cltcalipso.tavg-u-hxy-u.mon.30S-90S", + "atmos.cltcalipso.tavg-u-hxy-u.mon.GLB", + "atmos.cltcalipso.tpt-u-hxy-u.3hr.GLB", + "atmos.cltisccp.tavg-u-hxy-u.day.GLB", + "atmos.cltisccp.tavg-u-hxy-u.mon.30S-90S", + "atmos.cltisccp.tavg-u-hxy-u.mon.GLB", + "atmos.cltmodis.tavg-u-hxy-u.mon.30S-90S", + "atmos.cltmodis.tavg-u-hxy-u.mon.GLB", + "atmos.clw.tavg-al-hxy-u.day.GLB", + "atmos.clw.tavg-al-hxy-u.mon.30S-90S", + "atmos.clwc.tavg-al-hxy-u.mon.30S-90S", + "atmos.clwc.tavg-al-hxy-u.mon.GLB", + "atmos.clws.tavg-al-hxy-u.mon.30S-90S", + "atmos.clws.tavg-al-hxy-u.mon.GLB", + "atmos.clwvi.tavg-u-hxy-u.3hr.GLB", + "atmos.clwvi.tavg-u-hxy-u.day.GLB", + "atmos.clwvi.tavg-u-hxy-u.mon.30S-90S", + "atmos.clwvic.tavg-u-hxy-u.day.GLB", + "atmos.clwvimodis.tavg-u-hxy-u.mon.30S-90S", + "atmos.clwvimodis.tavg-u-hxy-u.mon.GLB", + "atmos.co2.tavg-al-hxy-u.mon.GLB", + "atmos.co2.tavg-h2m-hxy-u.mon.GLB", + "atmos.co2.tavg-p19-hxy-air.mon.GLB", + "atmos.co2.tclm-p19-hxy-air.mon.GLB", + "atmos.co2.tclm-u-hm-u.mon.GLB", + "atmos.co23D.tavg-al-hxy-u.mon.GLB", + "atmos.co2mass.tavg-u-hm-u.mon.GLB", + "atmos.dmc.tavg-alh-hxy-u.mon.30S-90S", + "atmos.dmc.tavg-alh-hxy-u.mon.GLB", + "atmos.edt.tavg-al-hxy-u.mon.30S-90S", + "atmos.edt.tavg-al-hxy-u.mon.GLB", + "atmos.epfy.tavg-p39-hy-air.day.GLB", + "atmos.epfy.tavg-p39-hy-air.mon.GLB", + "atmos.epfz.tavg-p39-hy-air.day.GLB", + "atmos.epfz.tavg-p39-hy-air.mon.GLB", + "atmos.evspsbl.tavg-u-hxy-lnd.day.GLB", + "atmos.evu.tavg-al-hxy-u.mon.30S-90S", + "atmos.evu.tavg-al-hxy-u.mon.GLB", + "atmos.fco2antt.tavg-u-hxy-u.mon.GLB", + "atmos.fco2fos.tavg-u-hxy-u.mon.GLB", + "atmos.fco2nat.tavg-u-hxy-u.mon.GLB", + "atmos.hfls.tavg-u-hxy-is.mon.GRL", + "atmos.hfls.tavg-u-hxy-u.3hr.GLB", + "atmos.hfls.tavg-u-hxy-u.day.GLB", + "atmos.hfls.tavg-u-hxy-u.mon.30S-90S", + "atmos.hfss.tavg-u-hxy-u.3hr.GLB", + "atmos.hfss.tavg-u-hxy-u.day.GLB", + "atmos.hfss.tavg-u-hxy-u.mon.30S-90S", + "atmos.hur.tavg-al-hxy-u.mon.30S-90S", + "atmos.hur.tavg-al-hxy-u.mon.GLB", + "atmos.hur.tavg-p19-hxy-air.mon.30S-90S", + "atmos.hurs.tavg-h2m-hxy-u.1hr.30S-90S", + "atmos.hurs.tavg-h2m-hxy-u.mon.30S-90S", + "atmos.hurs.tmax-h2m-hxy-u.day.GLB", + "atmos.hurs.tmin-h2m-hxy-u.day.GLB", + "atmos.hurs.tpt-h2m-hxy-u.3hr.GLB", + "atmos.hus.tavg-al-hxy-u.mon.30S-90S", + "atmos.hus.tavg-al-hxy-u.mon.GLB", + "atmos.hus.tavg-p19-hxy-u.mon.30S-90S", + "atmos.hus.tpt-al-hxy-u.6hr.GLB", + "atmos.hus.tpt-p7h-hxy-air.6hr.GLB", + "atmos.huss.tavg-h2m-hxy-u.6hr.GLB", + "atmos.huss.tavg-h2m-hxy-u.mon.30S-90S", + "atmos.huss.tpt-h2m-hxy-u.1hr.GLB", + "atmos.intuadse.tavg-u-hxy-u.day.GLB", + "atmos.intuadse.tavg-u-hxy-u.mon.GLB", + "atmos.intuaw.tavg-u-hxy-u.day.GLB", + "atmos.intuaw.tavg-u-hxy-u.mon.GLB", + "atmos.intuaw.tpt-u-hxy-u.6hr.GLB", + "atmos.intvadse.tavg-u-hxy-u.day.GLB", + "atmos.intvadse.tavg-u-hxy-u.mon.GLB", + "atmos.intvaw.tavg-u-hxy-u.day.GLB", + "atmos.intvaw.tavg-u-hxy-u.mon.GLB", + "atmos.intvaw.tpt-u-hxy-u.6hr.GLB", + "atmos.loadbc.tavg-u-hxy-u.day.GLB", + "atmos.loadoa.tavg-u-hxy-u.day.GLB", + "atmos.loadpoa.tavg-u-hxy-u.day.GLB", + "atmos.loadso4.tavg-u-hxy-u.mon.GLB", + "atmos.mc.tavg-alh-hxy-u.mon.GLB", + "atmos.mcd.tavg-alh-hxy-u.mon.30S-90S", + "atmos.mcd.tavg-alh-hxy-u.mon.GLB", + "atmos.mcu.tavg-alh-hxy-u.mon.30S-90S", + "atmos.mcu.tavg-alh-hxy-u.mon.GLB", + "atmos.pctisccp.tavg-u-hxy-cl.day.GLB", + "atmos.pctisccp.tavg-u-hxy-cl.mon.30S-90S", + "atmos.pctisccp.tavg-u-hxy-cl.mon.GLB", + "atmos.pfull.tavg-al-hxy-u.day.GLB", + "atmos.pfull.tavg-al-hxy-u.mon.GLB", + "atmos.pfull.tclm-al-hxy-u.mon.30S-90S", + "atmos.pfull.tclm-al-hxy-u.mon.GLB", + "atmos.phalf.tavg-alh-hxy-u.mon.GLB", + "atmos.phalf.tclm-alh-hxy-u.mon.GLB", + "atmos.pr.tavg-u-hxy-u.1hr.30S-90S", + "atmos.pr.tavg-u-hxy-u.mon.30S-90S", + "atmos.pr.tmax-u-hxy-u.day.GLB", + "atmos.pr.tmax-u-hxy-u.mon.GLB", + "atmos.pr.tpt-u-hxy-u.6hr.GLB", + "atmos.pr17O.tavg-u-hxy-u.mon.GLB", + "atmos.pr18O.tavg-u-hxy-u.mon.GLB", + "atmos.pr2h.tavg-u-hxy-u.mon.GLB", + "atmos.prc.tavg-u-hxy-u.day.GLB", + "atmos.prc.tavg-u-hxy-u.mon.30S-90S", + "atmos.prra.tavg-u-hxy-is.mon.GRL", + "atmos.prra.tavg-u-hxy-lnd.day.GLB", + "atmos.prra.tavg-u-hxy-u.6hr.GLB", + "atmos.prra.tavg-u-hxy-u.mon.30S-90S", + "atmos.prra.tavg-u-hxy-u.mon.GLB", + "atmos.prsn.tavg-u-hxy-is.mon.GRL", + "atmos.prsn.tavg-u-hxy-u.3hr.GLB", + "atmos.prsn.tavg-u-hxy-u.6hr.GLB", + "atmos.prsn.tavg-u-hxy-u.day.GLB", + "atmos.prsn.tavg-u-hxy-u.mon.30S-90S", + "atmos.prsn18O.tavg-u-hxy-u.mon.GLB", + "atmos.prsn2h.tavg-u-hxy-u.mon.GLB", + "atmos.prw.tavg-u-hxy-u.3hr.GLB", + "atmos.prw.tavg-u-hxy-u.day.GLB", + "atmos.prw.tavg-u-hxy-u.mon.30S-90S", + "atmos.prw.tpt-u-hxy-u.6hr.GLB", + "atmos.ps.tavg-u-hxy-u.1hr.GLB", + "atmos.ps.tavg-u-hxy-u.6hr.GLB", + "atmos.ps.tavg-u-hxy-u.mon.30S-90S", + "atmos.ps.tpt-u-hxy-u.1hr.30S-90S", + "atmos.ps.tpt-u-hxy-u.3hr.GLB", + "atmos.ps.tpt-u-hxy-u.6hr.GLB", + "atmos.psl.tavg-u-hxy-u.mon.30S-90S", + "atmos.psl.tpt-u-hxy-u.1hr.GLB", + "atmos.psl.tpt-u-hxy-u.6hr.GLB", + "atmos.ptp.tavg-u-hxy-u.mon.GLB", + "atmos.reffcclwtop.tavg-u-hxy-ccl.mon.GLB", + "atmos.reffclic.tavg-al-hxy-ccl.mon.30S-90S", + "atmos.reffclic.tavg-al-hxy-ccl.mon.GLB", + "atmos.reffclis.tavg-al-hxy-scl.mon.30S-90S", + "atmos.reffclis.tavg-al-hxy-scl.mon.GLB", + "atmos.reffclwc.tavg-al-hxy-ccl.mon.30S-90S", + "atmos.reffclwc.tavg-al-hxy-ccl.mon.GLB", + "atmos.reffclws.tavg-al-hxy-scl.mon.30S-90S", + "atmos.reffclws.tavg-al-hxy-scl.mon.GLB", + "atmos.reffsclwtop.tavg-u-hxy-scl.mon.GLB", + "atmos.rld.tavg-alh-hxy-u.mon.GLB", + "atmos.rld4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rldcs.tavg-alh-hxy-u.mon.GLB", + "atmos.rldcs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rlds.tavg-u-hxy-u.1hr.30S-90S", + "atmos.rlds.tavg-u-hxy-u.1hr.GLB", + "atmos.rlds.tavg-u-hxy-u.3hr.GLB", + "atmos.rlds.tavg-u-hxy-u.6hr.GLB", + "atmos.rlds.tavg-u-hxy-u.day.GLB", + "atmos.rlds.tavg-u-hxy-u.mon.30S-90S", + "atmos.rldscs.tavg-u-hxy-u.day.GLB", + "atmos.rldscs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rls.tavg-u-hxy-u.mon.GLB", + "atmos.rlu.tavg-alh-hxy-u.mon.GLB", + "atmos.rlu4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rlucs.tavg-alh-hxy-u.mon.GLB", + "atmos.rlucs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rlus.tavg-u-hxy-u.3hr.GLB", + "atmos.rlus.tavg-u-hxy-u.day.GLB", + "atmos.rlus.tavg-u-hxy-u.mon.30S-90S", + "atmos.rluscs.tavg-u-hxy-u.day.GLB", + "atmos.rlut.tavg-u-hxy-u.3hr.GLB", + "atmos.rlut.tavg-u-hxy-u.day.GLB", + "atmos.rlut.tavg-u-hxy-u.mon.30S-90S", + "atmos.rlut4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rlutcs.tavg-u-hxy-u.3hr.GLB", + "atmos.rlutcs.tavg-u-hxy-u.day.GLB", + "atmos.rlutcs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rlutcs4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rsd.tavg-alh-hxy-u.mon.GLB", + "atmos.rsd4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsdcs.tavg-alh-hxy-u.mon.GLB", + "atmos.rsdcs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsds.tavg-u-hxy-u.1hr.30S-90S", + "atmos.rsds.tavg-u-hxy-u.1hr.GLB", + "atmos.rsds.tavg-u-hxy-u.3hr.GLB", + "atmos.rsds.tavg-u-hxy-u.6hr.GLB", + "atmos.rsds.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsdscs.tavg-u-hxy-u.day.GLB", + "atmos.rsdscs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsdt.tavg-u-hxy-u.day.GLB", + "atmos.rsdt.tavg-u-hxy-u.mon.30S-90S", + "atmos.rss.tavg-u-hxy-u.mon.GLB", + "atmos.rsu.tavg-alh-hxy-u.mon.GLB", + "atmos.rsu4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsucs.tavg-alh-hxy-u.mon.GLB", + "atmos.rsucs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsus.tavg-u-hxy-u.3hr.GLB", + "atmos.rsus.tavg-u-hxy-u.day.GLB", + "atmos.rsus.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsuscs.tavg-u-hxy-u.day.GLB", + "atmos.rsuscs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsut.tavg-u-hxy-u.3hr.GLB", + "atmos.rsut.tavg-u-hxy-u.day.GLB", + "atmos.rsut.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsut4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rsutcs.tavg-u-hxy-u.3hr.GLB", + "atmos.rsutcs.tavg-u-hxy-u.day.GLB", + "atmos.rsutcs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsutcs4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rtmt.tavg-u-hxy-u.mon.GLB", + "atmos.rv850.tpt-850hPa-hxy-air.6hr.GLB", + "atmos.sci.tavg-u-hxy-u.mon.GLB", + "atmos.scldncl.tavg-u-hxy-scl.mon.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.1hr.30S-90S", + "atmos.sfcWind.tavg-h10m-hxy-u.6hr.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.mon.30S-90S", + "atmos.sfcWind.tmax-h10m-hxy-u.day.GLB", + "atmos.sfcWind.tmaxavg-h10m-hxy-u.mon.GLB", + "atmos.smc.tavg-alh-hxy-u.mon.GLB", + "atmos.ta.tavg-700hPa-hxy-air.day.GLB", + "atmos.ta.tavg-850hPa-hxy-air.day.GLB", + "atmos.ta.tavg-al-hxy-u.mon.30S-90S", + "atmos.ta.tavg-al-hxy-u.mon.GLB", + "atmos.ta.tavg-p19-hxy-air.mon.30S-90S", + "atmos.ta.tavg-p39-hy-air.day.GLB", + "atmos.ta.tavg-p39-hy-air.mon.GLB", + "atmos.ta.tpt-al-hxy-u.6hr.GLB", + "atmos.ta.tpt-p5u-hxy-u.6hr.GLB", + "atmos.ta.tpt-p7h-hxy-air.6hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.1hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.6hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.mon.30S-90S", + "atmos.tas.tmaxavg-h2m-hxy-u.mon.30S-90S", + "atmos.tas.tminavg-h2m-hxy-u.mon.30S-90S", + "atmos.tauu.tavg-u-hxy-u.day.GLB", + "atmos.tauunoegw.tavg-p39-hy-air.day.GLB", + "atmos.tauunowgw.tavg-p39-hy-air.day.GLB", + "atmos.tauuogw.tavg-p39-hy-air.day.GLB", + "atmos.tauv.tavg-u-hxy-u.day.GLB", + "atmos.tauvnogw.tavg-p39-hy-air.day.GLB", + "atmos.tauvogw.tavg-p39-hy-air.day.GLB", + "atmos.tdps.tavg-h2m-hxy-u.mon.GLB", + "atmos.tnhus.tavg-al-hxy-u.mon.GLB", + "atmos.tnhusa.tavg-al-hxy-u.mon.GLB", + "atmos.tnhusc.tavg-al-hxy-u.mon.GLB", + "atmos.tnhusd.tavg-al-hxy-u.mon.GLB", + "atmos.tnhusmp.tavg-al-hxy-u.mon.GLB", + "atmos.tnhuspbl.tavg-al-hxy-u.mon.GLB", + "atmos.tnhusscp.tavg-al-hxy-u.mon.GLB", + "atmos.tnhusscpbl.tavg-al-hxy-u.mon.GLB", + "atmos.tnt.tavg-al-hxy-u.mon.GLB", + "atmos.tnta.tavg-al-hxy-u.mon.GLB", + "atmos.tntc.tavg-al-hxy-u.mon.GLB", + "atmos.tntd.tavg-al-hxy-u.mon.GLB", + "atmos.tntmp.tavg-al-hxy-u.mon.GLB", + "atmos.tntmp.tavg-p39-hy-air.day.GLB", + "atmos.tntmp.tavg-p39-hy-air.mon.GLB", + "atmos.tntpbl.tavg-al-hxy-u.mon.GLB", + "atmos.tntr.tavg-al-hxy-u.mon.GLB", + "atmos.tntrl.tavg-al-hxy-u.mon.GLB", + "atmos.tntrl.tavg-p39-hy-air.day.GLB", + "atmos.tntrl.tavg-p39-hy-air.mon.GLB", + "atmos.tntrlcs.tavg-al-hxy-u.mon.GLB", + "atmos.tntrs.tavg-al-hxy-u.mon.GLB", + "atmos.tntrs.tavg-p39-hy-air.day.GLB", + "atmos.tntrs.tavg-p39-hy-air.mon.GLB", + "atmos.tntrscs.tavg-al-hxy-u.mon.GLB", + "atmos.tntscp.tavg-al-hxy-u.mon.GLB", + "atmos.tntscpbl.tavg-al-hxy-u.mon.GLB", + "atmos.ts.tavg-u-hxy-u.6hr.GLB", + "atmos.ts.tavg-u-hxy-u.day.GLB", + "atmos.ts.tavg-u-hxy-u.mon.30S-90S", + "atmos.ts.tpt-u-hxy-u.3hr.GLB", + "atmos.ts.tpt-u-hxy-u.6hr.GLB", + "atmos.ua.tavg-al-hxy-u.mon.GLB", + "atmos.ua.tavg-p19-hxy-air.mon.30S-90S", + "atmos.ua.tavg-p39-hy-air.day.GLB", + "atmos.ua.tavg-p39-hy-air.mon.GLB", + "atmos.ua.tpt-al-hxy-u.6hr.GLB", + "atmos.ua.tpt-h100m-hxy-u.1hr.GLB", + "atmos.ua.tpt-p5u-hxy-air.6hr.GLB", + "atmos.ua.tpt-p7h-hxy-air.6hr.GLB", + "atmos.uas.tavg-h10m-hxy-u.mon.30S-90S", + "atmos.uas.tpt-h10m-hxy-u.1hr.GLB", + "atmos.uas.tpt-h10m-hxy-u.6hr.GLB", + "atmos.utendepfd.tavg-p39-hy-air.day.GLB", + "atmos.utendepfd.tavg-p39-hy-air.mon.GLB", + "atmos.utendnogw.tavg-p39-hy-air.day.GLB", + "atmos.utendnogw.tavg-p39-hy-air.mon.GLB", + "atmos.utendogw.tavg-p39-hy-air.day.GLB", + "atmos.utendogw.tavg-p39-hy-air.mon.GLB", + "atmos.utendvtem.tavg-p39-hy-air.day.GLB", + "atmos.utendwtem.tavg-p39-hy-air.day.GLB", + "atmos.va.tavg-al-hxy-u.mon.GLB", + "atmos.va.tavg-p19-hxy-air.mon.30S-90S", + "atmos.va.tavg-p39-hy-air.mon.GLB", + "atmos.va.tpt-al-hxy-u.6hr.GLB", + "atmos.va.tpt-h100m-hxy-u.1hr.GLB", + "atmos.va.tpt-p5u-hxy-air.6hr.GLB", + "atmos.va.tpt-p7h-hxy-air.6hr.GLB", + "atmos.vas.tavg-h10m-hxy-u.mon.30S-90S", + "atmos.vas.tpt-h10m-hxy-u.1hr.GLB", + "atmos.vas.tpt-h10m-hxy-u.6hr.GLB", + "atmos.vtem.tavg-p39-hy-air.day.GLB", + "atmos.vtem.tavg-p39-hy-air.mon.GLB", + "atmos.wap.tavg-500hPa-hxy-air.day.GLB", + "atmos.wap.tavg-p19-hxy-air.mon.30S-90S", + "atmos.wsg.tmax-h100m-hxy-u.1hr.GLB", + "atmos.wsg.tmax-h10m-hxy-u.1hr.GLB", + "atmos.wtem.tavg-p39-hy-air.day.GLB", + "atmos.wtem.tavg-p39-hy-air.mon.GLB", + "atmos.zg.tavg-1000hPa-hxy-air.day.GLB", + "atmos.zg.tavg-500hPa-hxy-air.day.GLB", + "atmos.zg.tavg-al-hxy-u.mon.GLB", + "atmos.zg.tavg-p19-hxy-air.mon.30S-90S", + "atmos.zg.tavg-p39-hy-air.day.GLB", + "atmos.zg.tavg-p39-hy-air.mon.GLB", + "atmos.zg.tpt-500hPa-hxy-air.6hr.GLB", + "atmos.zg.tpt-al-hxy-u.6hr.GLB", + "atmos.zg.tpt-p3-hxy-air.6hr.GLB", + "atmos.zg.tpt-p7h-hxy-air.6hr.GLB", + "atmos.ztp.tavg-u-hxy-u.mon.GLB", + "atmosChem.c2h4.tavg-al-hxy-u.mon.GLB", + "atmosChem.c2h5oh.tavg-al-hxy-u.mon.GLB", + "atmosChem.c4h10.tavg-al-hxy-u.mon.GLB", + "atmosChem.cfc11.tavg-u-hm-u.mon.GLB", + "atmosChem.cfc113.tavg-u-hm-u.mon.GLB", + "atmosChem.cfc12.tavg-u-hm-u.mon.GLB", + "atmosChem.ch3oh.tavg-al-hxy-u.mon.GLB", + "atmosChem.ch4.tavg-al-hxy-u.mon.GLB", + "atmosChem.ch4.tavg-p19-hxy-air.mon.GLB", + "atmosChem.ch4.tavg-p39-hy-air.mon.GLB", + "atmosChem.ch4.tavg-u-hm-u.mon.GLB", + "atmosChem.ch4.tclm-p19-hxy-air.mon.GLB", + "atmosChem.ch4.tclm-u-hm-u.mon.GLB", + "atmosChem.ch4losssoil.tavg-u-hxy-u.mon.GLB", + "atmosChem.ch4ref.ti-al-hxy-u.fx.GLB", + "atmosChem.chegph2oo1d.tavg-al-hxy-u.mon.GLB", + "atmosChem.chepnh4.tavg-al-hxy-u.mon.GLB", + "atmosChem.chepno3.tavg-al-hxy-u.mon.GLB", + "atmosChem.dms.tavg-al-hxy-u.mon.30S-90S", + "atmosChem.dms.tavg-al-hxy-u.mon.GLB", + "atmosChem.do3chm.tavg-al-hxy-u.mon.GLB", + "atmosChem.dryh2.tavg-u-hxy-u.mon.GLB", + "atmosChem.dryhno3.tavg-u-hxy-u.mon.GLB", + "atmosChem.drynh3.tavg-u-hxy-u.mon.GLB", + "atmosChem.drynh4.tavg-u-hxy-u.mon.GLB", + "atmosChem.drynoy.tavg-u-hxy-u.mon.GLB", + "atmosChem.e90inst.tpt-al-hxy-u.mon.GLB", + "atmosChem.emiach4.tavg-u-hxy-u.mon.GLB", + "atmosChem.emiavnox.tavg-al-hxy-u.mon.GLB", + "atmosChem.emic2h4.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic2h5oh.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic2h6.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic3h6.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic3h8.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic4h10.tavg-u-hxy-u.mon.GLB", + "atmosChem.emich3oh.tavg-u-hxy-u.mon.GLB", + "atmosChem.emich4.tavg-u-hxy-u.mon.GLB", + "atmosChem.emih2.tavg-u-hxy-u.mon.GLB", + "atmosChem.emilkch4.tavg-u-hxy-u.mon.GLB", + "atmosChem.h2.tavg-al-hxy-u.mon.GLB", + "atmosChem.h2loss.tavg-al-hxy-u.mon.GLB", + "atmosChem.h2prod.tavg-al-hxy-u.mon.GLB", + "atmosChem.hcfc22.tavg-u-hm-u.mon.GLB", + "atmosChem.meanage.tavg-al-hxy-u.mon.GLB", + "atmosChem.meanage.tavg-p39-hy-air.mon.GLB", + "atmosChem.n2o.tavg-al-hxy-u.mon.GLB", + "atmosChem.n2o.tavg-p19-hxy-air.mon.GLB", + "atmosChem.n2o.tavg-p39-hy-air.mon.GLB", + "atmosChem.n2o.tavg-u-hm-u.mon.GLB", + "atmosChem.n2o.tclm-p19-hxy-air.mon.GLB", + "atmosChem.n2o.tclm-u-hm-u.mon.GLB", + "atmosChem.o3.tavg-al-hxy-u.mon.GLB", + "atmosChem.o3.tavg-p19-hxy-air.mon.GLB", + "atmosChem.o3.tavg-p39-hy-air.mon.GLB", + "atmosChem.o3.tclm-p19-hxy-air.mon.GLB", + "atmosChem.o3.tpt-al-hxy-u.mon.GLB", + "atmosChem.o3ref.tclm-al-hxy-u.fx.GLB", + "atmosChem.o3ref.ti-al-hxy-u.fx.GLB", + "atmosChem.o3ste.tavg-al-hxy-u.mon.GLB", + "atmosChem.rlutch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rlutcsch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rlutcso3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rluto3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsutch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsutcsch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsutcso3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsuto3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.stratch4loss.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropch4loss.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropch4lossoh.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropdo3chm.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropo3ste.tavg-al-hxy-u.mon.GLB", + "atmosChem.wethno3.tavg-al-hxy-u.mon.GLB", + "atmosChem.wetnh3.tavg-u-hxy-u.mon.GLB", + "atmosChem.wetnh4.tavg-u-hxy-u.mon.GLB", + "atmosChem.wetno3.tavg-al-hxy-u.mon.GLB", + "atmosChem.wetnoy.tavg-u-hxy-u.mon.GLB", + "land.albc.tavg-u-hxy-veg.mon.GLB", + "land.areacellr.ti-u-hxy-u.fx.GLB", + "land.baresoilFrac.tavg-u-hxy-u.mon.GLB", + "land.burntFractionAll.tavg-u-hxy-u.mon.GLB", + "land.cGeologicStorage.tavg-u-hxy-u.mon.GLB", + "land.cLand.tavg-u-hxy-lnd.mon.GLB", + "land.cLeaf.tavg-u-hxy-lnd.mon.GLB", + "land.cLitter.tavg-u-hxy-lnd.mon.GLB", + "land.cnc.tavg-u-hxy-u.mon.GLB", + "land.cProduct.tavg-u-hxy-lnd.mon.GLB", + "land.cRoot.tavg-u-hxy-lnd.mon.GLB", + "land.cropFrac.tavg-u-hxy-u.mon.GLB", + "land.cSoil.tavg-d100cm-hxy-lnd.mon.GLB", + "land.cSoil.tavg-sl-hxy-lnd.mon.GLB", + "land.cSoil.tavg-u-hxy-lnd.mon.GLB", + "land.cStem.tavg-u-hxy-lnd.mon.GLB", + "land.cVeg.tavg-u-hxy-lnd.mon.GLB", + "land.dcw.tavg-u-hxy-lnd.day.GLB", + "land.depthl.ti-u-hxy-u.fx.GLB", + "land.depthsl.ti-u-hxy-u.fx.GLB", + "land.dslw.tavg-u-hxy-lnd.day.GLB", + "land.evspsblpot.tavg-u-hxy-lnd.day.GLB", + "land.evspsblpot.tavg-u-hxy-lnd.mon.GLB", + "land.evspsblsoi.tavg-u-hxy-u.day.GLB", + "land.evspsblveg.tavg-u-hxy-u.day.GLB", + "land.fAnthDisturb.tavg-u-hxy-lnd.mon.GLB", + "land.fBNF.tavg-u-hxy-lnd.mon.GLB", + "land.fCLandToOcean.tavg-u-hxy-lnd.mon.GLB", + "land.fDeforestToAtmos.tavg-u-hxy-lnd.mon.GLB", + "land.fDeforestToProduct.tavg-u-hxy-lnd.mon.GLB", + "land.fFire.tavg-u-hxy-lnd.mon.GLB", + "land.fFireAll.tavg-u-hxy-lnd.mon.GLB", + "land.fFireNat.tavg-u-hxy-lnd.mon.GLB", + "land.fHarvestToAtmos.tavg-u-hxy-lnd.mon.GLB", + "land.fHarvestToGeologicStorage.tavg-u-hxy-lnd.mon.GLB", + "land.fHarvestToProduct.tavg-u-hxy-lnd.mon.GLB", + "land.fLitterSoil.tavg-u-hxy-lnd.mon.GLB", + "land.fLuc.tavg-u-hxy-lnd.mon.GLB", + "land.fN2O.tavg-u-hxy-lnd.mon.GLB", + "land.fNAnthDisturb.tavg-u-hxy-lnd.mon.GLB", + "land.fNdep.tavg-u-hxy-lnd.mon.GLB", + "land.fNfert.tavg-u-hxy-lnd.mon.GLB", + "land.fNgas.tavg-u-hxy-lnd.mon.GLB", + "land.fNgasFire.tavg-u-hxy-lnd.mon.GLB", + "land.fNLandToOcean.tavg-u-hxy-lnd.mon.GLB", + "land.fNleach.tavg-u-hxy-lnd.mon.GLB", + "land.fNLitterSoil.tavg-u-hxy-lnd.mon.GLB", + "land.fNloss.tavg-u-hxy-lnd.mon.GLB", + "land.fNnetmin.tavg-u-hxy-lnd.mon.GLB", + "land.fNOx.tavg-u-hxy-lnd.mon.GLB", + "land.fNProduct.tavg-u-hxy-lnd.mon.GLB", + "land.fNup.tavg-u-hxy-lnd.mon.GLB", + "land.fNVegLitter.tavg-u-hxy-lnd.mon.GLB", + "land.fNVegSoil.tavg-u-hxy-lnd.mon.GLB", + "land.fProductDecomp.tavg-u-hxy-lnd.mon.GLB", + "land.fVegLitter.tavg-u-hxy-lnd.mon.GLB", + "land.fVegSoil.tavg-u-hxy-lnd.mon.GLB", + "land.gpp.tavg-u-hxy-lnd.mon.GLB", + "land.gppVgt.tavg-u-hxy-multi.day.GLB", + "land.grassFrac.tavg-u-hxy-u.mon.GLB", + "land.laiVgt.tavg-u-hxy-multi.day.GLB", + "land.landCoverFrac.tavg-u-hxy-u.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.day.GLB", + "land.mrrob.tavg-u-hxy-lnd.day.GLB", + "land.mrros.tavg-u-hxy-lnd.day.GLB", + "land.mrsfl.tavg-sl-hxy-lnd.day.GLB", + "land.mrsfl.tavg-sl-hxy-lnd.mon.GLB", + "land.mrsll.tavg-sl-hxy-lnd.day.GLB", + "land.mrsll.tavg-sl-hxy-lnd.mon.GLB", + "land.mrso.tavg-u-hxy-lnd.day.GLB", + "land.mrsol.tavg-d10cm-hxy-lnd.day.GLB", + "land.mrsol.tavg-sl-hxy-lnd.day.GLB", + "land.mrsol.tavg-sl-hxy-lnd.mon.GLB", + "land.mrsol.tpt-d10cm-hxy-lnd.3hr.GLB", + "land.mrsow.tavg-u-hxy-lnd.day.GLB", + "land.mrtws.tavg-u-hxy-lnd.day.GLB", + "land.mrtws.tavg-u-hxy-lnd.mon.GLB", + "land.nbp.tavg-u-hxy-lnd.mon.GLB", + "land.nep.tavg-u-hxy-lnd.mon.GLB", + "land.nLand.tavg-u-hxy-lnd.mon.GLB", + "land.nLitter.tavg-u-hxy-lnd.mon.GLB", + "land.nMineral.tavg-u-hxy-lnd.mon.GLB", + "land.npp.tavg-u-hxy-lnd.mon.GLB", + "land.nProduct.tavg-u-hxy-lnd.mon.GLB", + "land.nSoil.tavg-u-hxy-lnd.mon.GLB", + "land.nVeg.tavg-u-hxy-lnd.mon.GLB", + "land.orog.ti-u-hxy-u.fx.30S-90S", + "land.pastureFrac.tavg-u-hxy-u.mon.GLB", + "land.prveg.tavg-u-hxy-lnd.mon.GLB", + "land.ra.tavg-u-hxy-lnd.mon.GLB", + "land.residualFrac.tavg-u-hxy-u.mon.GLB", + "land.rh.tavg-u-hxy-lnd.mon.GLB", + "land.rivi.tavg-u-hxy-lnd.day.GLB", + "land.rivo.tavg-u-hxy-lnd.day.GLB", + "land.rsds.tavg-u-hxy-lnd.mon.GLB", + "land.rsds.tavg-u-hxy-sn.mon.GLB", + "land.rsus.tavg-u-hxy-lnd.mon.GLB", + "land.rsus.tavg-u-hxy-sn.mon.GLB", + "land.sftgif.tavg-u-hxy-u.mon.GLB", + "land.sftlaf.ti-u-hxy-u.fx.GLB", + "land.shrubFrac.tavg-u-hxy-u.mon.GLB", + "land.srfrad.tavg-u-hxy-u.3hr.GLB", + "land.tas.tavg-u-hxy-u.1hr.30S-90S", + "land.tas.tavg-u-hxy-u.1hr.GLB", + "land.tran.tavg-u-hxy-lnd.mon.GLB", + "land.treeFrac.tavg-u-hxy-u.mon.GLB", + "land.tsl.tavg-sl-hxy-lnd.day.GLB", + "land.tsl.tavg-sl-hxy-lnd.mon.GLB", + "land.tslsi.tavg-u-hxy-u.day.GLB", + "land.tslsi.tpt-u-hxy-lsi.3hr.GLB", + "land.vegFrac.tavg-u-hxy-u.mon.GLB", + "land.vegHeight.tavg-u-hxy-tree.mon.GLB", + "land.vegHeight.tavg-u-hxy-veg.mon.GLB", + "land.wetlandCH4.tavg-u-hxy-lnd.mon.GLB", + "land.wtd.tavg-u-hxy-lnd.day.GLB", + "landIce.acabf.tavg-u-hxy-is.mon.GLB", + "landIce.hfdsn.tavg-u-hxy-lnd.mon.GLB", + "landIce.hfgeoubed.ti-u-hxy-gis.fx.GRL", + "landIce.hfls.tavg-u-hxy-is.mon.GLB", + "landIce.hfss.tavg-u-hxy-is.mon.GLB", + "landIce.icem.tavg-u-hxy-is.mon.GLB", + "landIce.litemptop.tavg-u-hxy-is.mon.GLB", + "landIce.lithk.ti-u-hxy-is.fx.GRL", + "landIce.lithk.ti-u-hxy-u.fx.GLB", + "landIce.mrro.tavg-u-hxy-is.mon.GLB", + "landIce.orog.tavg-u-hxy-is.mon.GLB", + "landIce.pflw.tavg-u-hxy-lnd.mon.GLB", + "landIce.prra.tavg-u-hxy-is.mon.GLB", + "landIce.prsn.tavg-u-hxy-is.mon.GLB", + "landIce.rlds.tavg-u-hxy-is.mon.GLB", + "landIce.rlus.tavg-u-hxy-is.mon.GLB", + "landIce.rsds.tavg-u-hxy-is.mon.GLB", + "landIce.rsus.tavg-u-hxy-is.mon.GLB", + "landIce.sbl.tavg-u-hxy-is.mon.GLB", + "landIce.sbl.tavg-u-hxy-lnd.mon.GLB", + "landIce.sbl.tavg-u-hxy-u.mon.GLB", + "landIce.sftflf.tavg-u-hxy-u.mon.GLB", + "landIce.sftflf.ti-u-hxy-u.fx.GLB", + "landIce.sftgrf.tavg-u-hxy-u.mon.GLB", + "landIce.sftgrf.ti-u-hxy-u.fx.GLB", + "landIce.snc.tavg-u-hxy-is.mon.GLB", + "landIce.snc.tavg-u-hxy-lnd.day.GLB", + "landIce.snd.tavg-u-hxy-lnd.mon.GLB", + "landIce.snicem.tavg-u-hxy-is.mon.GLB", + "landIce.snicem.tavg-u-hxy-is.mon.GRL", + "landIce.snm.tavg-u-hxy-is.mon.GLB", + "landIce.snm.tavg-u-hxy-lnd.mon.GLB", + "landIce.snrefr.tavg-u-hxy-is.mon.GLB", + "landIce.snw.tavg-u-hxy-lnd.day.GLB", + "landIce.sootsn.tavg-u-hxy-lnd.mon.GLB", + "landIce.tas.tavg-u-hxy-is.mon.GLB", + "landIce.topg.ti-u-hxy-gis.fx.GRL", + "landIce.tpf.tavg-u-hxy-lnd.mon.GLB", + "landIce.ts.tavg-u-hxy-is.mon.GLB", + "landIce.tsn.tavg-u-hxy-is.mon.GLB", + "landIce.tsn.tavg-u-hxy-lnd.mon.GLB", + "ocean.absscint.tavg-op4-hxy-sea.mon.GLB", + "ocean.agessc.tavg-ol-hxy-sea.mon.GLB", + "ocean.bigthetao.tavg-ol-hm-sea.mon.GLB", + "ocean.bigthetao.tavg-ol-hxy-sea.dec.GLB", + "ocean.bigthetao.tavg-op20bar-hxy-sea.day.GLB", + "ocean.chcint.tavg-op4-hxy-sea.mon.GLB", + "ocean.ficeberg.tavg-ol-hxy-sea.3hr.GLB", + "ocean.ficeberg.tavg-ol-hxy-sea.mon.GLB", + "ocean.ficeberg.tavg-u-hxy-sea.mon.GLB", + "ocean.flandice.tavg-u-hxy-sea.3hr.GLB", + "ocean.flandice.tavg-u-hxy-sea.mon.GLB", + "ocean.friver.tavg-u-hxy-sea.3hr.GLB", + "ocean.friver.tavg-u-hxy-sea.mon.GLB", + "ocean.hfbasin.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpmadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpmdiff.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpsmadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfds.tavg-u-hxy-sea.3hr.GLB", + "ocean.hfds.tavg-u-hxy-sea.mon.30S-90S", + "ocean.hfgeou.tavg-u-hxy-sea.mon.GLB", + "ocean.hfrunoffds.tavg-ol-hxy-sea.3hr.GLB", + "ocean.hfx.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfx.tavg-u-hxy-sea.day.GLB", + "ocean.hfx.tavg-u-hxy-sea.mon.GLB", + "ocean.hfy.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfy.tavg-u-hxy-sea.day.GLB", + "ocean.hfy.tavg-u-hxy-sea.mon.GLB", + "ocean.htovgyre.tavg-u-hyb-sea.mon.GLB", + "ocean.htovovrt.tavg-u-hyb-sea.mon.GLB", + "ocean.masscello.tavg-ol-hxy-sea.dec.GLB", + "ocean.masso.tavg-u-hm-sea.dec.GLB", + "ocean.masso.tavg-u-hm-sea.mon.GLB", + "ocean.mlotst.tavg-u-hxy-sea.day.GLB", + "ocean.mlotst.tavg-u-hxy-sea.mon.30S-90S", + "ocean.mlotst.tmax-u-hxy-sea.mon.GLB", + "ocean.mlotst.tmin-u-hxy-sea.mon.GLB", + "ocean.mpw.tavg-u-hxy-sea.mon.GLB", + "ocean.mpw.tpt-u-hxy-sea.3hr.GLB", + "ocean.mpwswell.tavg-u-hxy-sea.mon.GLB", + "ocean.mpwswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.mpwwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.mpwwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.msftbarot.tavg-u-hxy-sea.mon.GLB", + "ocean.msftm.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftm.tavg-rho-hyb-sea.mon.GLB", + "ocean.msfty.tavg-ol-ht-sea.mon.GLB", + "ocean.msfty.tavg-rho-ht-sea.mon.GLB", + "ocean.obvfsq.tavg-ol-hxy-sea.mon.GLB", + "ocean.opottemptend.tavg-ol-hxy-sea.yr.GLB", + "ocean.pbo.tavg-u-hxy-sea.mon.GLB", + "ocean.pfscint.tavg-op4-hxy-sea.mon.GLB", + "ocean.phcint.tavg-op4-hxy-sea.mon.GLB", + "ocean.pso.tavg-u-hxy-sea.mon.GLB", + "ocean.rsds.tavg-u-hxy-ifs.mon.GLB", + "ocean.rsntds.tavg-u-hxy-sea.3hr.GLB", + "ocean.rsus.tavg-u-hxy-ifs.mon.GLB", + "ocean.scint.tavg-op4-hxy-sea.mon.GLB", + "ocean.sduo.tavg-u-hxy-sea.mon.GLB", + "ocean.sduo.tpt-u-hxy-sea.3hr.GLB", + "ocean.sdvo.tavg-u-hxy-sea.mon.GLB", + "ocean.sdvo.tpt-u-hxy-sea.3hr.GLB", + "ocean.sfdsi.tavg-u-hxy-sea.3hr.GLB", + "ocean.sfx.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfx.tavg-u-hxy-sea.mon.GLB", + "ocean.sfy.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfy.tavg-u-hxy-sea.mon.GLB", + "ocean.sltbasin.tavg-u-hyb-sea.mon.GLB", + "ocean.sltovgyre.tavg-u-hyb-sea.mon.GLB", + "ocean.sltovovrt.tavg-u-hyb-sea.mon.GLB", + "ocean.so.tavg-ol-hm-sea.mon.GLB", + "ocean.so.tavg-ol-hxy-sea.dec.GLB", + "ocean.so.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.sob.tavg-u-hxy-sea.mon.GLB", + "ocean.sos.tavg-u-hm-sea.mon.30S-90S", + "ocean.sos.tavg-u-hm-sea.mon.GLB", + "ocean.sw17O.tavg-ol-hxy-sea.mon.GLB", + "ocean.sw18O.tavg-ol-hxy-sea.mon.GLB", + "ocean.sw2H.tavg-ol-hxy-sea.mon.GLB", + "ocean.swh.tavg-u-hxy-sea.mon.GLB", + "ocean.swh.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhmax.tmax-u-hxy-sea.mon.GLB", + "ocean.swhmax.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhswell.tavg-u-hxy-sea.mon.GLB", + "ocean.swhswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.swhwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.t20d.tavg-u-hxy-sea.mon.GLB", + "ocean.tauuo.tavg-u-hxy-sea.3hr.GLB", + "ocean.tauuo.tavg-u-hxy-sea.dec.GLB", + "ocean.tauvo.tavg-u-hxy-sea.3hr.GLB", + "ocean.tauvo.tavg-u-hxy-sea.dec.GLB", + "ocean.thetao.tavg-d2000m-hxy-sea.mon.GLB", + "ocean.thetao.tavg-d300m-hxy-sea.mon.GLB", + "ocean.thetao.tavg-d700m-hxy-sea.mon.GLB", + "ocean.thetao.tavg-ol-hm-sea.mon.GLB", + "ocean.thetao.tavg-ol-hxy-sea.dec.GLB", + "ocean.thetao.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.thetao.tavg-op20bar-hxy-sea.day.GLB", + "ocean.thetaot.tavg-u-hxy-sea.mon.GLB", + "ocean.thkcello.tavg-ol-hxy-sea.dec.GLB", + "ocean.tob.tavg-u-hxy-sea.mon.GLB", + "ocean.tos.tavg-u-hm-sea.mon.GLB", + "ocean.tos.tavg-u-hxy-sea.mon.30S-90S", + "ocean.tos.tpt-u-hxy-sea.3hr.GLB", + "ocean.tossq.tavg-u-hxy-sea.day.GLB", + "ocean.umo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.uo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.uos.tavg-u-hxy-sea.day.GLB", + "ocean.vmo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.vo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.volcello.tavg-ol-hxy-sea.dec.GLB", + "ocean.volcello.tavg-ol-hxy-sea.mon.GLB", + "ocean.volcello.tavg-ol-hxy-sea.yr.GLB", + "ocean.volcello.ti-ol-hxy-sea.fx.GLB", + "ocean.volo.tavg-u-hm-sea.dec.GLB", + "ocean.volo.tavg-u-hm-sea.mon.GLB", + "ocean.vos.tavg-u-hxy-sea.day.GLB", + "ocean.vsf.tavg-u-hxy-sea.mon.GLB", + "ocean.wdir.tavg-u-hxy-sea.mon.GLB", + "ocean.wdir.tpt-u-hxy-sea.3hr.GLB", + "ocean.wdirswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wdirswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wdirwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wdirwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.wfcorr.tavg-u-hxy-sea.mon.GLB", + "ocean.wfo.tavg-u-hxy-sea.3hr.GLB", + "ocean.wfo.tavg-u-hxy-sea.mon.GLB", + "ocean.wmo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.wo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.wpdir.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdir.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpdirswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdirswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpdirwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdirwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpp.tavg-u-hxy-sea.mon.GLB", + "ocean.wpp.tpt-u-hxy-sea.3hr.GLB", + "ocean.wppswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wppswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wppwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wppwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.zfullo.tavg-ol-hxy-sea.yr.GLB", + "ocean.zos.tavg-u-hxy-sea.mon.30S-90S", + "ocean.zossq.tavg-u-hxy-sea.mon.GLB", + "ocean.zostoga.tavg-u-hm-sea.day.GLB", + "ocnBgchem.bacc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.calc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chl.tavg-d0m-hxy-sea.day.GLB", + "ocnBgchem.chl.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chl.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.chl.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chlcalc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chldiat.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chldiat.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chldiaz.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chldiaz.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chlmisc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chlmisc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chlpico.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chlpico.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.detoc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dfe.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.dfe.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.dfe.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissic.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.dissic.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissoc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dmso.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.dmso.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.dpco2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.dpo2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.expc.tavg-d1000m-hxy-sea.mon.GLB", + "ocnBgchem.expc.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.expc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.expcalc.tavg-d1000m-hxy-sea.mon.GLB", + "ocnBgchem.expcalc.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.expcalc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.fgco2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fric.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.froc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fsfe.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fsn.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.graz.tavg-ol-hxy-sea.mon.30S-90S", + "ocnBgchem.graz.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.icfriver.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intdic.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intdoc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intparag.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbfe.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbn.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbp.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbsi.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpcalcite.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpn2.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpoc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpp.tavg-u-hxy-sea.day.GLB", + "ocnBgchem.intpp.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpp.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppcalc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppdiat.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppdiaz.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppmisc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppnitrate.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpppico.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.nh4.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.nh4.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.no3.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.no3.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.o2.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.ocfriver.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.ph.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.ph.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phyc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phyc.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.phyc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phycalc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phycalc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phydiat.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phydiat.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phydiaz.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phydiaz.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phymisc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phymisc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phypico.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phypico.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.po4.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.pp.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.si.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.spco2.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.spco2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.talk.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zmeso.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zmeso.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zmicro.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zmicro.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zmisc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zmisc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zooc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zooc.tavg-ol-hxy-sea.mon.GLB", + "seaIce.evspsbl.tavg-u-hxy-si.mon.GLB", + "seaIce.prra.tavg-u-hxy-si.mon.GLB", + "seaIce.prsn.tavg-u-hxy-si.mon.GLB", + "seaIce.rlds.tavg-u-hxy-si.day.GLB", + "seaIce.rlds.tavg-u-hxy-si.mon.GLB", + "seaIce.rlus.tavg-u-hxy-si.day.GLB", + "seaIce.rlus.tavg-u-hxy-si.mon.GLB", + "seaIce.rsds.tavg-u-hxy-si.day.GLB", + "seaIce.rsds.tavg-u-hxy-si.mon.GLB", + "seaIce.rsus.tavg-u-hxy-si.day.GLB", + "seaIce.rsus.tavg-u-hxy-si.mon.GLB", + "seaIce.sbl.tavg-u-hxy-si.mon.GLB", + "seaIce.siage.tavg-u-hxy-si.day.GLB", + "seaIce.siage.tavg-u-hxy-si.mon.30S-90S", + "seaIce.siarea.tavg-u-hm-u.mon.NH", + "seaIce.siarea.tavg-u-hm-u.mon.SH", + "seaIce.siareaacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.siconc.tavg-u-hxy-u.mon.30S-90S", + "seaIce.siconca.tavg-u-hxy-u.day.GLB", + "seaIce.siconca.tavg-u-hxy-u.mon.GLB", + "seaIce.sidconcdyn.tavg-u-hxy-sea.mon.GLB", + "seaIce.sidconcth.tavg-u-hxy-sea.mon.GLB", + "seaIce.sidmassdyn.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthsi.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthwat.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmeltbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmeltlat.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmelttop.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassth.tavg-u-hxy-si.mon.GLB", + "seaIce.sieqthick.tavg-u-hxy-si.mon.GLB", + "seaIce.siextent.tavg-u-hm-u.mon.NH", + "seaIce.siextent.tavg-u-hm-u.mon.SH", + "seaIce.siflcondbot.tavg-u-hxy-si.day.GLB", + "seaIce.siflcondbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflcondtop.tavg-u-hxy-si.day.GLB", + "seaIce.siflcondtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sifllattop.tavg-u-hxy-si.day.GLB", + "seaIce.sifllattop.tavg-u-hxy-si.mon.GLB", + "seaIce.siflsensbot.tavg-u-hxy-si.day.GLB", + "seaIce.siflsensbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflsenstop.tavg-u-hxy-si.day.GLB", + "seaIce.siflsenstop.tavg-u-hxy-si.mon.GLB", + "seaIce.siflswdbot.tavg-u-hxy-si.day.GLB", + "seaIce.siflswdbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sihc.tavg-u-hxy-sea.day.GLB", + "seaIce.sihc.tavg-u-hxy-sea.mon.GLB", + "seaIce.siitdconc.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdsnconc.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdsnthick.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdthick.tavg-u-hxy-si.mon.GLB", + "seaIce.simassacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.simpconc.tavg-u-hxy-si.mon.GLB", + "seaIce.sirdgconc.tavg-u-hxy-si.mon.GLB", + "seaIce.sisaltmass.tavg-u-hxy-si.mon.GLB", + "seaIce.sisndmassdyn.tavg-u-hxy-si.mon.GLB", + "seaIce.sisndmasssi.tavg-u-hxy-si.mon.GLB", + "seaIce.sisndmasswind.tavg-u-hxy-si.mon.GLB", + "seaIce.sisnhc.tavg-u-hxy-si.day.GLB", + "seaIce.sisnhc.tavg-u-hxy-si.mon.GLB", + "seaIce.sisnmass.tavg-u-hm-u.mon.NH", + "seaIce.sisnmass.tavg-u-hm-u.mon.SH", + "seaIce.sisnmassacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.sispeed.tavg-u-hxy-si.day.GLB", + "seaIce.sispeed.tavg-u-hxy-si.mon.GLB", + "seaIce.sistressave.tpt-u-hxy-si.mon.GLB", + "seaIce.sistressmax.tpt-u-hxy-si.mon.GLB", + "seaIce.sistrxdtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sistrxubot.tavg-u-hxy-si.mon.GLB", + "seaIce.sistrydtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sistryubot.tavg-u-hxy-si.mon.GLB", + "seaIce.sitempsnic.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-si.day.GLB", + "seaIce.sithick.tavg-u-hxy-si.mon.30S-90S", + "seaIce.sitimefrac.tavg-u-hxy-sea.day.GLB", + "seaIce.sitimefrac.tavg-u-hxy-sea.mon.30S-90S", + "seaIce.siu.tavg-u-hxy-si.day.GLB", + "seaIce.siu.tavg-u-hxy-si.mon.30S-90S", + "seaIce.siv.tavg-u-hxy-si.day.GLB", + "seaIce.siv.tavg-u-hxy-si.mon.30S-90S", + "seaIce.sivol.tavg-u-hm-u.mon.NH", + "seaIce.sivol.tavg-u-hm-u.mon.SH", + "seaIce.snc.tavg-u-hxy-si.mon.GLB", + "seaIce.snd.tavg-u-hxy-sn.day.GLB", + "seaIce.snd.tavg-u-hxy-sn.mon.30S-90S", + "seaIce.snm.tavg-u-hxy-si.mon.GLB", + "seaIce.snw.tavg-u-hxy-si.mon.GLB", + "seaIce.ts.tavg-u-hxy-si.day.GLB", + "seaIce.ts.tavg-u-hxy-si.mon.30S-90S" + ], + "Medium": [ + "atmos.bldep.tavg-u-hxy-u.1hr.GLB", + "atmos.clic.tpt-al-hxy-u.3hr.GLB", + "atmos.clis.tpt-al-hxy-u.3hr.GLB", + "atmos.clivi.tpt-u-hxy-u.3hr.GLB", + "atmos.clt.tpt-u-hxy-u.3hr.GLB", + "atmos.clwc.tpt-al-hxy-u.3hr.GLB", + "atmos.clws.tpt-al-hxy-u.3hr.GLB", + "atmos.clwvi.tpt-u-hxy-u.3hr.GLB", + "atmos.dtauc.tpt-al-hxy-ccl.3hr.GLB", + "atmos.dtaus.tpt-al-hxy-scl.3hr.GLB", + "atmos.hfdsnb.tavg-u-hxy-lnd.day.GLB", + "atmos.hfls.tavg-u-hxy-is.mon.ATA", + "atmos.hfls.tavg-u-hxy-u.1hr.GLB", + "atmos.hfss.tavg-u-hxy-is.mon.ATA", + "atmos.hfss.tavg-u-hxy-is.mon.GRL", + "atmos.hfss.tavg-u-hxy-u.1hr.GLB", + "atmos.hur.tavg-700hPa-hxy-air.day.GLB", + "atmos.hur.tpt-100hPa-hxy-u.6hr.GLB", + "atmos.hur.tpt-500hPa-hxy-air.6hr.GLB", + "atmos.hur.tpt-850hPa-hxy-air.6hr.GLB", + "atmos.hurs.tavg-h2m-hxy-u.1hr.GLB", + "atmos.hus.tpt-al-hxy-u.3hr.GLB", + "atmos.hus.tpt-p6-hxy-air.3hr.GLB", + "atmos.noaahi2m.tavg-h2m-hxy-u.day.GLB", + "atmos.noaahi2m.tmax-h2m-hxy-u.day.GLB", + "atmos.pfull.tpt-al-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.6hr.GLB", + "atmos.pr.tmax-u-hxy-u.6hr.GLB", + "atmos.pr.tpt-u-hxy-u.3hr.GLB", + "atmos.prra.tavg-u-hxy-is.mon.ATA", + "atmos.prrsn.tavg-u-hxy-lnd.day.GLB", + "atmos.prsn.tavg-u-hxy-is.mon.ATA", + "atmos.prsnc.tavg-u-hxy-lnd.day.GLB", + "atmos.prsnsn.tavg-u-hxy-lnd.day.GLB", + "atmos.prw.tpt-u-hxy-u.3hr.GLB", + "atmos.ps.tpt-u-hxy-u.1hr.GLB", + "atmos.psitem.tavg-p39-hy-air.day.GLB", + "atmos.psl.tavg-u-hxy-u.6hr.GLB", + "atmos.reffclic.tpt-al-hxy-ccl.3hr.GLB", + "atmos.reffclis.tpt-al-hxy-scl.3hr.GLB", + "atmos.reffclwc.tpt-al-hxy-ccl.3hr.GLB", + "atmos.reffclws.tpt-al-hxy-scl.3hr.GLB", + "atmos.rlds.tavg-u-hxy-is.mon.ATA", + "atmos.rlds.tavg-u-hxy-is.mon.GRL", + "atmos.rlds.tpt-u-hxy-u.3hr.GLB", + "atmos.rldscs.tpt-u-hxy-u.3hr.GLB", + "atmos.rls.tavg-u-hxy-u.day.GLB", + "atmos.rlus.tavg-u-hxy-is.mon.ATA", + "atmos.rlus.tavg-u-hxy-is.mon.GRL", + "atmos.rlus.tavg-u-hxy-u.1hr.GLB", + "atmos.rlut.tpt-u-hxy-u.3hr.GLB", + "atmos.rlutcs.tpt-u-hxy-u.3hr.GLB", + "atmos.rsds.tavg-u-hxy-is.mon.ATA", + "atmos.rsds.tavg-u-hxy-is.mon.GRL", + "atmos.rsds.tpt-u-hxy-u.3hr.GLB", + "atmos.rsdscs.tpt-u-hxy-u.3hr.GLB", + "atmos.rsdsdiff.tavg-u-hxy-u.1hr.GLB", + "atmos.rsdsdiff.tavg-u-hxy-u.day.GLB", + "atmos.rss.tavg-u-hxy-u.day.GLB", + "atmos.rsus.tavg-u-hxy-is.mon.ATA", + "atmos.rsus.tavg-u-hxy-is.mon.GRL", + "atmos.rsus.tavg-u-hxy-u.1hr.GLB", + "atmos.rsut.tpt-u-hxy-u.3hr.GLB", + "atmos.rsutcs.tpt-u-hxy-u.3hr.GLB", + "atmos.rv850.tavg-850hPa-hxy-air.6hr.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.1hr.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.3hr.GLB", + "atmos.snmsl.tavg-u-hxy-lnd.day.GLB", + "atmos.snrefr.tavg-u-hxy-lnd.day.GLB", + "atmos.snwc.tavg-u-hxy-lnd.day.GLB", + "atmos.ta.tpt-al-hxy-u.3hr.GLB", + "atmos.ta.tpt-p6-hxy-air.3hr.GLB", + "atmos.tas.tavg-h2m-hm-is.mon.ATA", + "atmos.tas.tavg-h2m-hm-is.mon.GRL", + "atmos.tauunoegw.tavg-p19-hxy-air.mon.GLB", + "atmos.tauunowgw.tavg-p19-hxy-air.mon.GLB", + "atmos.tauuogw.tavg-p19-hxy-air.mon.GLB", + "atmos.tauupbl.tavg-u-hxy-u.day.GLB", + "atmos.tauvnogw.tavg-p19-hxy-air.mon.GLB", + "atmos.tauvogw.tavg-p19-hxy-air.mon.GLB", + "atmos.tauvpbl.tavg-u-hxy-u.day.GLB", + "atmos.tdps.tavg-h2m-hxy-u.day.GLB", + "atmos.tntc.tavg-p39-hy-air.mon.GLB", + "atmos.tntnogw.tavg-p39-hy-air.mon.GLB", + "atmos.tntogw.tavg-p39-hy-air.mon.GLB", + "atmos.tntrlcs.tavg-p39-hy-air.mon.GLB", + "atmos.tntrscs.tavg-p39-hy-air.mon.GLB", + "atmos.tntscp.tavg-p39-hy-air.mon.GLB", + "atmos.ts.tavg-u-hxy-is.mon.ATA", + "atmos.ts.tavg-u-hxy-is.mon.GRL", + "atmos.ts.tavg-u-hxy-sn.day.GLB", + "atmos.ts.tavg-u-hxy-u.1hr.GLB", + "atmos.ua.tavg-h100m-hxy-u.3hr.GLB", + "atmos.ua.tpt-200hPa-hxy-u.6hr.GLB", + "atmos.ua.tpt-p6-hxy-air.3hr.GLB", + "atmos.uas.tavg-h10m-hxy-u.6hr.GLB", + "atmos.utendnogw.tavg-p19-hxy-air.day.GLB", + "atmos.utendnogw.tavg-p19-hxy-air.mon.GLB", + "atmos.utendogw.tavg-p19-hxy-air.day.GLB", + "atmos.utendogw.tavg-p19-hxy-air.mon.GLB", + "atmos.va.tavg-h100m-hxy-u.3hr.GLB", + "atmos.va.tpt-200hPa-hxy-u.6hr.GLB", + "atmos.va.tpt-p6-hxy-air.3hr.GLB", + "atmos.vas.tavg-h10m-hxy-u.6hr.GLB", + "atmos.vtendnogw.tavg-p19-hxy-air.day.GLB", + "atmos.vtendnogw.tavg-p19-hxy-air.mon.GLB", + "atmos.vtendogw.tavg-p19-hxy-air.day.GLB", + "atmos.vtendogw.tavg-p19-hxy-air.mon.GLB", + "atmos.wap.tpt-p6-hxy-air.3hr.GLB", + "atmos.wbgt.tavg-h2m-hxy-u.day.GLB", + "atmos.wbgt.tmax-h2m-hxy-u.day.GLB", + "atmos.wsg.tmax-h100m-hxy-u.mon.GLB", + "atmos.wsg.tmax-h10m-hxy-u.mon.GLB", + "atmos.zg.tavg-1000hPa-hxy-air.6hr.GLB", + "atmos.zg.tpt-700hPa-hxy-u.6hr.GLB", + "atmos.zg.tpt-925hPa-hxy-u.6hr.GLB", + "atmosChem.flashrate.tavg-u-hxy-u.day.GLB", + "land.areacellg.ti-u-hxy-u.fx.ATA", + "land.areacellg.ti-u-hxy-u.fx.GRL", + "land.baresoilFrac.tavg-u-hxy-u.yr.GLB", + "land.cLitterCwd.tavg-u-hxy-lnd.mon.GLB", + "land.cLitterLut.tpt-u-hxy-multi.yr.GLB", + "land.cLitterSubSurf.tavg-u-hxy-lnd.mon.GLB", + "land.cLitterSurf.tavg-u-hxy-lnd.mon.GLB", + "land.cOther.tavg-u-hxy-lnd.mon.GLB", + "land.cProductLut.tpt-u-hxy-multi.yr.GLB", + "land.cropFrac.tavg-u-hxy-u.yr.GLB", + "land.cropFracC3.tavg-u-hxy-u.mon.GLB", + "land.cropFracC4.tavg-u-hxy-u.mon.GLB", + "land.cSoilLut.tpt-u-hxy-multi.yr.GLB", + "land.cSoilPools.tavg-u-hxy-lnd.mon.GLB", + "land.cVeg.tavg-u-hxy-ng.mon.GLB", + "land.cVeg.tavg-u-hxy-shb.mon.GLB", + "land.cVeg.tavg-u-hxy-tree.mon.GLB", + "land.cVegLut.tpt-u-hxy-multi.yr.GLB", + "land.dgw.tavg-u-hxy-lnd.day.GLB", + "land.drivw.tavg-u-hxy-lnd.day.GLB", + "land.dsn.tavg-u-hxy-lnd.day.GLB", + "land.dsw.tavg-u-hxy-lnd.day.GLB", + "land.esn.tavg-u-hxy-sn.day.GLB", + "land.evspsblsoi.tavg-u-hxy-u.3hr.GLB", + "land.evspsblveg.tavg-u-hxy-u.3hr.GLB", + "land.fLitterFire.tavg-u-hxy-lnd.mon.GLB", + "land.fLulccAtmLut.tavg-u-hxy-multi.mon.GLB", + "land.fNgasNonFire.tavg-u-hxy-lnd.mon.GLB", + "land.fracInLut.tsum-u-hxy-lnd.yr.GLB", + "land.fracLut.tpt-u-hxy-u.mon.GLB", + "land.fracLut.tpt-u-hxy-u.yr.GLB", + "land.fracOutLut.tsum-u-hxy-lnd.yr.GLB", + "land.fVegFire.tavg-u-hxy-lnd.mon.GLB", + "land.fVegLitterMortality.tavg-u-hxy-lnd.mon.GLB", + "land.fVegLitterSenescence.tavg-u-hxy-lnd.mon.GLB", + "land.fVegSoilMortality.tavg-u-hxy-lnd.mon.GLB", + "land.fVegSoilSenescence.tavg-u-hxy-lnd.mon.GLB", + "land.gpp.tavg-u-hxy-ng.mon.GLB", + "land.gpp.tavg-u-hxy-shb.mon.GLB", + "land.gpp.tavg-u-hxy-tree.mon.GLB", + "land.gppLut.tavg-u-hxy-multi.mon.GLB", + "land.grassFrac.tavg-u-hxy-u.yr.GLB", + "land.grassFracC3.tavg-u-hxy-u.mon.GLB", + "land.grassFracC4.tavg-u-hxy-u.mon.GLB", + "land.hfdsl.tavg-u-hxy-lnd.3hr.GLB", + "land.hflsLut.tavg-u-hxy-multi.mon.GLB", + "land.hfssLut.tavg-u-hxy-multi.mon.GLB", + "land.irrDem.tavg-u-hxy-u.day.GLB", + "land.irrGw.tavg-u-hxy-u.day.GLB", + "land.irrLut.tavg-u-hxy-multi.mon.GLB", + "land.irrLut.tavg-u-hxy-u.day.GLB", + "land.irrSurf.tavg-u-hxy-u.day.GLB", + "land.laiLut.tavg-u-hxy-multi.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.3hr.GLB", + "land.mrros.tavg-u-hxy-lnd.3hr.GLB", + "land.mrsol.tavg-d100cm-hxy-lnd.3hr.GLB", + "land.mrsolLut.tavg-d10cm-hxy-multi.mon.GLB", + "land.nbpLut.tavg-u-hxy-multi.mon.GLB", + "land.nLeaf.tavg-u-hxy-lnd.mon.GLB", + "land.nLitterCwd.tavg-u-hxy-lnd.mon.GLB", + "land.nLitterSubSurf.tavg-u-hxy-lnd.mon.GLB", + "land.nLitterSurf.tavg-u-hxy-lnd.mon.GLB", + "land.nMineralNH4.tavg-u-hxy-lnd.mon.GLB", + "land.nMineralNO3.tavg-u-hxy-lnd.mon.GLB", + "land.nOther.tavg-u-hxy-lnd.mon.GLB", + "land.npp.tavg-u-hxy-ng.mon.GLB", + "land.npp.tavg-u-hxy-shb.mon.GLB", + "land.npp.tavg-u-hxy-tree.mon.GLB", + "land.nppLeaf.tavg-u-hxy-lnd.mon.GLB", + "land.nppLut.tavg-u-hxy-multi.mon.GLB", + "land.nppOther.tavg-u-hxy-lnd.mon.GLB", + "land.nppRoot.tavg-u-hxy-lnd.mon.GLB", + "land.nppStem.tavg-u-hxy-lnd.mon.GLB", + "land.nppVgt.tavg-u-hxy-multi.day.GLB", + "land.nRoot.tavg-u-hxy-lnd.mon.GLB", + "land.nStem.tavg-u-hxy-lnd.mon.GLB", + "land.orog.tavg-u-hxy-is.mon.ATA", + "land.orog.tavg-u-hxy-is.mon.GRL", + "land.orog.tavg-u-hxy-is.yr.ATA", + "land.orog.tavg-u-hxy-is.yr.GRL", + "land.pastureFracC3.tavg-u-hxy-u.mon.GLB", + "land.pastureFracC4.tavg-u-hxy-u.mon.GLB", + "land.qgwr.tavg-u-hxy-lnd.day.GLB", + "land.ra.tavg-u-hxy-ng.mon.GLB", + "land.ra.tavg-u-hxy-shb.mon.GLB", + "land.ra.tavg-u-hxy-tree.mon.GLB", + "land.raLeaf.tavg-u-hxy-lnd.mon.GLB", + "land.raLut.tavg-u-hxy-multi.mon.GLB", + "land.raOther.tavg-u-hxy-lnd.mon.GLB", + "land.raRoot.tavg-u-hxy-lnd.mon.GLB", + "land.raStem.tavg-u-hxy-lnd.mon.GLB", + "land.raVgt.tavg-u-hxy-multi.day.GLB", + "land.residualFrac.tavg-u-hxy-u.yr.GLB", + "land.rh.tavg-u-hxy-ng.mon.GLB", + "land.rh.tavg-u-hxy-shb.mon.GLB", + "land.rh.tavg-u-hxy-tree.mon.GLB", + "land.rhLitter.tavg-u-hxy-lnd.mon.GLB", + "land.rhLut.tavg-u-hxy-multi.mon.GLB", + "land.rhSoil.tavg-u-hxy-lnd.mon.GLB", + "land.rhVgt.tavg-u-hxy-multi.day.GLB", + "land.rzwc.tavg-u-hxy-lnd.day.GLB", + "land.sftgif.tavg-u-hxy-u.yr.ATA", + "land.sftgif.tavg-u-hxy-u.yr.GRL", + "land.shrubFrac.tavg-u-hxy-u.yr.GLB", + "land.sw.tavg-u-hxy-lnd.day.GLB", + "land.sweLut.tavg-u-hxy-multi.mon.GLB", + "land.tasLut.tavg-h2m-hxy-multi.mon.GLB", + "land.tran.tavg-u-hxy-u.3hr.GLB", + "land.treeFrac.tavg-u-hxy-u.yr.GLB", + "land.treeFracBdlDcd.tavg-u-hxy-u.mon.GLB", + "land.treeFracBdlEvg.tavg-u-hxy-u.mon.GLB", + "land.treeFracNdlDcd.tavg-u-hxy-u.mon.GLB", + "land.treeFracNdlEvg.tavg-u-hxy-u.mon.GLB", + "land.tsLut.tavg-u-hxy-multi.mon.GLB", + "land.vegFrac.tavg-u-hxy-u.yr.GLB", + "land.vegHeight.tavg-u-hxy-ng.mon.GLB", + "land.vegHeight.tavg-u-hxy-shb.mon.GLB", + "land.wetlandCH4cons.tavg-u-hxy-lnd.mon.GLB", + "land.wetlandCH4prod.tavg-u-hxy-lnd.mon.GLB", + "land.wetlandFrac.tavg-u-hxy-u.mon.GLB", + "landIce.acabf.tavg-u-hxy-is.mon.ATA", + "landIce.acabf.tavg-u-hxy-is.mon.GRL", + "landIce.acabf.tavg-u-hxy-is.yr.ATA", + "landIce.acabf.tavg-u-hxy-is.yr.GRL", + "landIce.agesno.tavg-u-hxy-lnd.mon.GLB", + "landIce.hfdsn.tavg-u-hxy-lnd.day.GLB", + "landIce.hfgeoubed.tavg-u-hxy-gis.yr.ATA", + "landIce.hfgeoubed.tavg-u-hxy-gis.yr.GRL", + "landIce.hfgeoubed.ti-u-hxy-gis.fx.ATA", + "landIce.iareafl.tavg-u-hm-fis.yr.ATA", + "landIce.iareafl.tavg-u-hm-fis.yr.GRL", + "landIce.iareagr.tavg-u-hm-gis.yr.ATA", + "landIce.iareagr.tavg-u-hm-gis.yr.GRL", + "landIce.icem.tavg-u-hxy-is.mon.ATA", + "landIce.icem.tavg-u-hxy-is.mon.GRL", + "landIce.libmassbf.tavg-u-hxy-fis.mon.ATA", + "landIce.libmassbf.tavg-u-hxy-fis.mon.GRL", + "landIce.libmassbf.tavg-u-hxy-fis.yr.ATA", + "landIce.libmassbf.tavg-u-hxy-fis.yr.GRL", + "landIce.libmassbf.tavg-u-hxy-gis.mon.ATA", + "landIce.libmassbf.tavg-u-hxy-gis.mon.GRL", + "landIce.libmassbf.tavg-u-hxy-gis.yr.ATA", + "landIce.libmassbf.tavg-u-hxy-gis.yr.GRL", + "landIce.licalvf.tavg-u-hxy-is.mon.ATA", + "landIce.licalvf.tavg-u-hxy-is.mon.GRL", + "landIce.licalvf.tavg-u-hxy-is.yr.ATA", + "landIce.licalvf.tavg-u-hxy-is.yr.GRL", + "landIce.lifmassbf.tavg-u-hxy-is.mon.ATA", + "landIce.lifmassbf.tavg-u-hxy-is.mon.GRL", + "landIce.lifmassbf.tavg-u-hxy-is.yr.ATA", + "landIce.lifmassbf.tavg-u-hxy-is.yr.GRL", + "landIce.lim.tavg-u-hm-is.yr.ATA", + "landIce.lim.tavg-u-hm-is.yr.GRL", + "landIce.limnsw.tavg-u-hm-is.yr.ATA", + "landIce.limnsw.tavg-u-hm-is.yr.GRL", + "landIce.litempbot.tavg-u-hxy-fis.mon.ATA", + "landIce.litempbot.tavg-u-hxy-fis.mon.GRL", + "landIce.litempbot.tavg-u-hxy-fis.yr.ATA", + "landIce.litempbot.tavg-u-hxy-fis.yr.GRL", + "landIce.litempbot.tavg-u-hxy-gis.mon.ATA", + "landIce.litempbot.tavg-u-hxy-gis.mon.GRL", + "landIce.litempbot.tavg-u-hxy-gis.yr.ATA", + "landIce.litempbot.tavg-u-hxy-gis.yr.GRL", + "landIce.litemptop.tavg-u-hxy-is.mon.ATA", + "landIce.litemptop.tavg-u-hxy-is.mon.GRL", + "landIce.litemptop.tavg-u-hxy-is.yr.ATA", + "landIce.litemptop.tavg-u-hxy-is.yr.GRL", + "landIce.lithk.tavg-u-hxy-is.yr.ATA", + "landIce.lithk.tavg-u-hxy-is.yr.GRL", + "landIce.lithk.ti-u-hxy-is.fx.ATA", + "landIce.lwsnl.tavg-u-hxy-lnd.day.GLB", + "landIce.lwsnl.tavg-u-hxy-lnd.mon.GLB", + "landIce.modelcellareai.tavg-u-hxy-u.yr.ATA", + "landIce.modelcellareai.tavg-u-hxy-u.yr.GRL", + "landIce.mrroLi.tavg-u-hxy-is.mon.ATA", + "landIce.mrroLi.tavg-u-hxy-is.mon.GRL", + "landIce.pflw.tavg-u-hxy-lnd.day.GLB", + "landIce.sbl.tavg-u-hxy-is.mon.ATA", + "landIce.sbl.tavg-u-hxy-is.mon.GRL", + "landIce.sbl.tavg-u-hxy-u.day.GLB", + "landIce.sftflf.tavg-u-hxy-u.yr.ATA", + "landIce.sftflf.tavg-u-hxy-u.yr.GRL", + "landIce.sftgrf.tavg-u-hxy-u.yr.ATA", + "landIce.sftgrf.tavg-u-hxy-u.yr.GRL", + "landIce.snc.tavg-u-hxy-is.mon.ATA", + "landIce.snc.tavg-u-hxy-is.mon.GRL", + "landIce.snc.tavg-u-hxy-is.yr.ATA", + "landIce.snc.tavg-u-hxy-is.yr.GRL", + "landIce.snd.tavg-u-hxy-lnd.day.GLB", + "landIce.snicem.tavg-u-hxy-is.mon.ATA", + "landIce.snm.tavg-u-hxy-is.mon.ATA", + "landIce.snm.tavg-u-hxy-is.mon.GRL", + "landIce.snm.tavg-u-hxy-lnd.day.GLB", + "landIce.snrefr.tavg-u-hxy-is.mon.ATA", + "landIce.snrefr.tavg-u-hxy-is.mon.GRL", + "landIce.strbasemag.tavg-u-hxy-is.yr.ATA", + "landIce.strbasemag.tavg-u-hxy-is.yr.GRL", + "landIce.tendacabf.tavg-u-hm-is.yr.ATA", + "landIce.tendacabf.tavg-u-hm-is.yr.GRL", + "landIce.tendlibmassbf.tavg-u-hm-is.yr.ATA", + "landIce.tendlibmassbf.tavg-u-hm-is.yr.GRL", + "landIce.tendlicalvf.tavg-u-hm-is.yr.ATA", + "landIce.tendlicalvf.tavg-u-hm-is.yr.GRL", + "landIce.topg.tavg-u-hxy-gis.yr.ATA", + "landIce.topg.tavg-u-hxy-gis.yr.GRL", + "landIce.topg.ti-u-hxy-gis.fx.ATA", + "landIce.tpf.tavg-u-hxy-lnd.day.GLB", + "landIce.tsn.tavg-u-hxy-is.mon.ATA", + "landIce.tsn.tavg-u-hxy-is.mon.GRL", + "landIce.tsn.tavg-u-hxy-lnd.day.GLB", + "landIce.xvelbase.tavg-u-hxy-is.yr.ATA", + "landIce.xvelbase.tavg-u-hxy-is.yr.GRL", + "landIce.xvelmean.tavg-u-hxy-is.yr.ATA", + "landIce.xvelmean.tavg-u-hxy-is.yr.GRL", + "landIce.xvelsurf.tavg-u-hxy-is.yr.ATA", + "landIce.xvelsurf.tavg-u-hxy-is.yr.GRL", + "landIce.yvelbase.tavg-u-hxy-is.yr.ATA", + "landIce.yvelbase.tavg-u-hxy-is.yr.GRL", + "landIce.yvelmean.tavg-u-hxy-is.yr.ATA", + "landIce.yvelmean.tavg-u-hxy-is.yr.GRL", + "landIce.yvelsurf.tavg-u-hxy-is.yr.ATA", + "landIce.yvelsurf.tavg-u-hxy-is.yr.GRL", + "landIce.zvelbase.tavg-u-hxy-is.yr.ATA", + "landIce.zvelbase.tavg-u-hxy-is.yr.GRL", + "landIce.zvelsurf.tavg-u-hxy-is.yr.ATA", + "landIce.zvelsurf.tavg-u-hxy-is.yr.GRL", + "ocean.evspsbl.tavg-u-hxy-ifs.mon.GLB", + "ocean.hfacrossline.tavg-u-ht-sea.mon.GLB", + "ocean.hfevapds.tavg-u-hxy-ifs.mon.GLB", + "ocean.hfibthermds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfibthermds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfrainds.tavg-u-hxy-ifs.mon.GLB", + "ocean.hfrunoffds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfrunoffds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfsnthermds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfsnthermds.tavg-u-hxy-sea.mon.GLB", + "ocean.mfo.tavg-u-ht-sea.mon.GLB", + "ocean.msftmmpa.tavg-ol-hyb-sea.mon.GLB", + "ocean.sf6.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfacrossline.tavg-u-ht-sea.mon.GLB", + "ocean.sfdsi.tavg-u-hxy-sea.mon.GLB", + "ocean.sfriver.tavg-u-hxy-sea.mon.GLB", + "ocean.siflfwbot.tavg-u-hxy-sea.mon.GLB", + "ocean.so.tavg-ol-hxy-sea.day.GLB", + "ocean.t17d.tavg-u-hxy-sea.mon.GLB", + "ocean.t20d.tavg-u-hxy-sea.day.GLB", + "ocean.tnkebto.tavg-u-hxy-sea.yr.GLB", + "ocean.vsfcorr.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfevap.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfpr.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfriver.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfsit.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.arag.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.arag.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.calc.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.calc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chl.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.chlcalc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.co3.tavg-d0m-hxy-sea.day.GLB", + "ocnBgchem.co3.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.co3satarag.tavg-d0m-hxy-sea.day.GLB", + "ocnBgchem.co3satarag.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.detoc.tavg-ol-hxy-sea.day.GLB", + "ocnBgchem.dissoc.tavg-ol-hxy-sea.day.GLB", + "ocnBgchem.dmso.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.epn.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.epp.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.epsi.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.exparagob.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.expcalcob.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.expcob.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.expfeob.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.expnob.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.exppob.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.expsiob.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fgdms.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.frfe.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.frn.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppcalc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppdiat.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppdiaz.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppmisc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppnano.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppnitrate.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intpppico.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limfecalc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limfediat.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limfediaz.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limfemisc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limfepico.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limirrcalc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limirrdiat.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limirrdiaz.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limirrmisc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limirrpico.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limncalc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limndiat.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limndiaz.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limnmisc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limnpico.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.no3.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.o2.tavg-d0m-hxy-sea.day.GLB", + "ocnBgchem.o2.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.o2.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.o2sat.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.ph.tavg-d0m-hxy-sea.day.GLB", + "ocnBgchem.ph.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.phyc.tavg-d0m-hxy-sea.day.GLB", + "ocnBgchem.phyc.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.pp.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.pp.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.si.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.sialgc.tavg-u-hxy-si.mon.GLB", + "ocnBgchem.sichl.tavg-u-hxy-si.mon.GLB", + "ocnBgchem.sigpp.tavg-u-hxy-si.mon.GLB", + "ocnBgchem.sino3.tavg-u-hxy-si.mon.GLB", + "ocnBgchem.sisi.tavg-u-hxy-si.mon.GLB", + "seaIce.sfdsi.tavg-u-hxy-si.mon.GLB", + "seaIce.siage.tavg-u-hxy-si.mon.GLB", + "seaIce.siarea.tavg-u-hm-u.day.NH", + "seaIce.siarea.tavg-u-hm-u.day.SH", + "seaIce.sicompstren.tavg-u-hxy-si.mon.GLB", + "seaIce.sidivvel.tpt-u-hxy-si.mon.GLB", + "seaIce.sidmasstranx.tavg-u-hxy-u.mon.GLB", + "seaIce.sidmasstrany.tavg-u-hxy-u.mon.GLB", + "seaIce.sidragbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidragtop.tavg-u-hxy-si.mon.GLB", + "seaIce.siextent.tavg-u-hm-u.day.NH", + "seaIce.siextent.tavg-u-hm-u.day.SH", + "seaIce.sifb.tavg-u-hxy-si.day.GLB", + "seaIce.sifb.tavg-u-hxy-si.mon.GLB", + "seaIce.siflfwbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflfwdrain.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcecoriolx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcecorioly.tavg-u-hxy-si.mon.GLB", + "seaIce.siforceintstrx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforceintstry.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcetiltx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcetilty.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdconc.tavg-u-hxy-si.day.GLB", + "seaIce.siitdsnconc.tavg-u-hxy-si.day.GLB", + "seaIce.siitdsnthick.tavg-u-hxy-si.day.GLB", + "seaIce.siitdthick.tavg-u-hxy-si.day.GLB", + "seaIce.simpconc.tavg-u-hxy-si.day.GLB", + "seaIce.simpeffconc.tavg-u-hxy-si.day.GLB", + "seaIce.simpeffconc.tavg-u-hxy-si.mon.GLB", + "seaIce.simprefrozen.tavg-u-hxy-simp.day.GLB", + "seaIce.simprefrozen.tavg-u-hxy-simp.mon.GLB", + "seaIce.simpthick.tavg-u-hxy-si.day.GLB", + "seaIce.simpthick.tavg-u-hxy-simp.mon.GLB", + "seaIce.sirdgconc.tavg-u-hxy-si.day.GLB", + "seaIce.sisali.tavg-u-hxy-si.day.GLB", + "seaIce.sisali.tavg-u-hxy-si.mon.GLB", + "seaIce.sisaltmass.tavg-u-hxy-si.day.GLB", + "seaIce.sishearvel.tpt-u-hxy-si.mon.GLB", + "seaIce.sisnmass.tavg-u-hm-u.day.NH", + "seaIce.sisnmass.tavg-u-hm-u.day.SH", + "seaIce.sitempbot.tavg-u-hxy-si.day.GLB", + "seaIce.sitempbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sitempsnic.tavg-u-hxy-si.day.GLB", + "seaIce.sithick.tavg-u-hxy-sir.day.GLB", + "seaIce.sithick.tavg-u-hxy-sir.mon.GLB", + "seaIce.sivol.tavg-u-hm-u.day.NH", + "seaIce.sivol.tavg-u-hm-u.day.SH" + ], + "Low": [ + "aerosol.ccldncl.tavg-u-hxy-ccl.day.GLB", + "aerosol.sfpm1.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.sfpm10.tavg-h2m-hxy-u.1hr.GLB", + "atmos.cldnci.tavg-u-hxy-cl.day.GLB", + "atmos.hurs.tmin-h2m-hxy-crp.day.GLB", + "atmos.loaddust.tavg-u-hxy-u.day.GLB", + "atmos.loadnh4.tavg-u-hxy-u.day.GLB", + "atmos.loadno3.tavg-u-hxy-u.day.GLB", + "atmos.loadso4.tavg-u-hxy-u.day.GLB", + "atmos.loadsoa.tavg-u-hxy-u.day.GLB", + "atmos.loadss.tavg-u-hxy-u.day.GLB", + "atmos.pr.tavg-u-hxy-crp.day.GLB", + "atmos.reffcclwtop.tavg-u-hxy-ccl.day.GLB", + "atmos.reffsclwtop.tavg-u-hxy-scl.day.GLB", + "atmos.rsdscsdiff.tavg-u-hxy-u.day.GLB", + "atmos.scldncl.tavg-u-hxy-scl.day.GLB", + "atmos.tas.tmax-h2m-hxy-crp.day.GLB", + "atmos.tas.tmin-h2m-hxy-crp.day.GLB", + "atmos.zfull.ti-al-hxy-u.fx.GLB", + "atmosChem.drynh3.tavg-u-hxy-u.day.GLB", + "atmosChem.drynh4.tavg-u-hxy-u.day.GLB", + "atmosChem.drynoy.tavg-u-hxy-u.day.GLB", + "atmosChem.flashrate.tavg-u-hxy-u.mon.GLB", + "atmosChem.wetnh3.tavg-u-hxy-u.day.GLB", + "atmosChem.wetnh4.tavg-u-hxy-u.day.GLB", + "atmosChem.wetnoy.tavg-u-hxy-u.day.GLB", + "land.c13Land.tavg-u-hxy-lnd.mon.GLB", + "land.c13Litter.tavg-u-hxy-lnd.mon.GLB", + "land.c13Soil.tavg-u-hxy-lnd.mon.GLB", + "land.c13Veg.tavg-u-hxy-lnd.mon.GLB", + "land.c14Land.tavg-u-hxy-lnd.mon.GLB", + "land.c14Litter.tavg-u-hxy-lnd.mon.GLB", + "land.c14Soil.tavg-u-hxy-lnd.mon.GLB", + "land.c14Veg.tavg-u-hxy-lnd.mon.GLB", + "land.c3PftFrac.tavg-u-hxy-u.mon.GLB", + "land.c4PftFrac.tavg-u-hxy-u.mon.GLB", + "land.gppc13.tavg-u-hxy-lnd.mon.GLB", + "land.gppc14.tavg-u-hxy-lnd.mon.GLB", + "land.lai.tavg-u-hxy-lnd.day.GLB", + "land.netAtmosLandC13Flux.tavg-u-hxy-lnd.mon.GLB", + "land.netAtmosLandC14Flux.tavg-u-hxy-lnd.mon.GLB", + "land.rac13.tavg-u-hxy-lnd.mon.GLB", + "land.rac14.tavg-u-hxy-lnd.mon.GLB", + "land.rhc13.tavg-u-hxy-lnd.mon.GLB", + "land.rhc14.tavg-u-hxy-lnd.mon.GLB", + "ocean.difmxybo.tavg-ol-hxy-sea.yr.GLB", + "ocean.difmxylo.tavg-ol-hxy-sea.yr.GLB", + "ocean.diftrblo.tavg-ol-hxy-sea.yr.GLB", + "ocean.diftrelo.tavg-ol-hxy-sea.yr.GLB", + "ocean.difvho.tavg-ol-hxy-sea.yr.GLB", + "ocean.difvso.tavg-ol-hxy-sea.yr.GLB", + "ocean.dispkexyfo.tavg-u-hxy-sea.yr.GLB", + "ocean.dxto.ti-u-hxy-u.fx.GLB", + "ocean.dxuo.ti-u-hxy-u.fx.GLB", + "ocean.dxvo.ti-u-hxy-u.fx.GLB", + "ocean.dyto.ti-u-hxy-u.fx.GLB", + "ocean.dyuo.ti-u-hxy-u.fx.GLB", + "ocean.dyvo.ti-u-hxy-u.fx.GLB", + "ocean.mlotstsq.tavg-u-hxy-sea.mon.GLB", + "ocean.msftmmpa.tavg-rho-hyb-sea.mon.GLB", + "ocean.msftmsmpa.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftypa.tavg-ol-ht-sea.mon.GLB", + "ocean.msftypa.tavg-rho-ht-sea.mon.GLB", + "ocean.ocontempdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontempmint.tavg-u-hxy-sea.yr.GLB", + "ocean.ocontemppadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemppmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemppsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemprmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemptend.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottempdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottempmint.tavg-u-hxy-sea.yr.GLB", + "ocean.opottemppadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemppmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemppsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemprmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemptend.tavg-ol-hxy-sea.dec.GLB", + "ocean.osaltdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpsmadvect.tavg-ol-hxy-sea.mon.GLB", + "ocean.osaltpsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltrmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osalttend.tavg-ol-hxy-sea.yr.GLB", + "ocean.rsdo.tavg-ol-hxy-sea.day.GLB", + "ocean.rsdoabsorb.tavg-ol-hxy-sea.yr.GLB", + "ocean.somint.tavg-u-hxy-sea.yr.GLB", + "ocean.sossq.tavg-u-hxy-sea.mon.GLB", + "ocean.thkcelluo.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcellvo.tavg-ol-hxy-sea.mon.GLB", + "ocean.tnpeo.tavg-u-hxy-sea.yr.GLB", + "ocean.tossq.tavg-u-hxy-sea.mon.GLB", + "ocean.wo.tavg-ol-hxy-sea.day.GLB", + "ocnBgchem.dissi13c.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.dissi13c.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissi14c.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissi14cabio.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.dissi14cabio.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.expcob.tavg-u-hxy-sea.day.GLB", + "ocnBgchem.fg13co2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fg14co2abio.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intpoc.tavg-u-hxy-sea.day.GLB", + "ocnBgchem.o2min.tavg-u-hxy-sea.day.GLB", + "ocnBgchem.phycalc.tavg-ol-hxy-sea.day.GLB", + "ocnBgchem.phydiat.tavg-d0m-hxy-sea.day.GLB", + "ocnBgchem.phydiaz.tavg-d0m-hxy-sea.day.GLB", + "ocnBgchem.phymisc.tavg-d0m-hxy-sea.day.GLB", + "ocnBgchem.phynano.tavg-u-hxy-sea.day.GLB", + "ocnBgchem.phypico.tavg-ol-hxy-sea.day.GLB", + "ocnBgchem.zmeso.tavg-ol-hxy-sea.day.GLB", + "ocnBgchem.zmicro.tavg-ol-hxy-sea.day.GLB", + "ocnBgchem.zooc.tavg-ol-hxy-sea.day.GLB" + ] + }, + "esm-piControl": { + "Core": [ + "atmos.areacella.ti-u-hxy-u.fx.GLB", + "atmos.cl.tavg-al-hxy-u.mon.GLB", + "atmos.cli.tavg-al-hxy-u.mon.GLB", + "atmos.clivi.tavg-u-hxy-u.mon.GLB", + "atmos.clt.tavg-u-hxy-u.day.GLB", + "atmos.clt.tavg-u-hxy-u.mon.GLB", + "atmos.clw.tavg-al-hxy-u.mon.GLB", + "atmos.clwvi.tavg-u-hxy-u.mon.GLB", + "atmos.evspsbl.tavg-u-hxy-u.mon.GLB", + "atmos.hfls.tavg-u-hxy-u.mon.GLB", + "atmos.hfss.tavg-u-hxy-u.mon.GLB", + "atmos.hur.tavg-p19-hxy-air.mon.GLB", + "atmos.hur.tavg-p19-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.6hr.GLB", + "atmos.hurs.tavg-h2m-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.mon.GLB", + "atmos.hus.tavg-p19-hxy-u.day.GLB", + "atmos.hus.tavg-p19-hxy-u.mon.GLB", + "atmos.huss.tavg-h2m-hxy-u.day.GLB", + "atmos.huss.tavg-h2m-hxy-u.mon.GLB", + "atmos.huss.tpt-h2m-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.1hr.GLB", + "atmos.pr.tavg-u-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.day.GLB", + "atmos.pr.tavg-u-hxy-u.mon.GLB", + "atmos.prc.tavg-u-hxy-u.mon.GLB", + "atmos.prsn.tavg-u-hxy-u.mon.GLB", + "atmos.prw.tavg-u-hxy-u.mon.GLB", + "atmos.ps.tavg-u-hxy-u.day.GLB", + "atmos.ps.tavg-u-hxy-u.mon.GLB", + "atmos.psl.tavg-u-hxy-u.day.GLB", + "atmos.psl.tavg-u-hxy-u.mon.GLB", + "atmos.rlds.tavg-u-hxy-u.mon.GLB", + "atmos.rldscs.tavg-u-hxy-u.mon.GLB", + "atmos.rlus.tavg-u-hxy-u.mon.GLB", + "atmos.rluscs.tavg-u-hxy-u.mon.GLB", + "atmos.rlut.tavg-u-hxy-u.mon.GLB", + "atmos.rlutcs.tavg-u-hxy-u.mon.GLB", + "atmos.rsds.tavg-u-hxy-u.day.GLB", + "atmos.rsds.tavg-u-hxy-u.mon.GLB", + "atmos.rsdscs.tavg-u-hxy-u.mon.GLB", + "atmos.rsdt.tavg-u-hxy-u.mon.GLB", + "atmos.rsus.tavg-u-hxy-u.mon.GLB", + "atmos.rsuscs.tavg-u-hxy-u.mon.GLB", + "atmos.rsut.tavg-u-hxy-u.mon.GLB", + "atmos.rsutcs.tavg-u-hxy-u.mon.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.day.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.mon.GLB", + "atmos.sftlf.ti-u-hxy-u.fx.GLB", + "atmos.ta.tavg-p19-hxy-air.day.GLB", + "atmos.ta.tavg-p19-hxy-air.mon.GLB", + "atmos.ta.tpt-p3-hxy-air.6hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.day.GLB", + "atmos.tas.tavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tmax-h2m-hxy-u.day.GLB", + "atmos.tas.tmaxavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tmin-h2m-hxy-u.day.GLB", + "atmos.tas.tminavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tpt-h2m-hxy-u.3hr.GLB", + "atmos.tauu.tavg-u-hxy-u.mon.GLB", + "atmos.tauv.tavg-u-hxy-u.mon.GLB", + "atmos.ts.tavg-u-hxy-u.mon.GLB", + "atmos.ua.tavg-p19-hxy-air.day.GLB", + "atmos.ua.tavg-p19-hxy-air.mon.GLB", + "atmos.ua.tpt-p3-hxy-air.6hr.GLB", + "atmos.uas.tavg-h10m-hxy-u.day.GLB", + "atmos.uas.tavg-h10m-hxy-u.mon.GLB", + "atmos.uas.tpt-h10m-hxy-u.3hr.GLB", + "atmos.va.tavg-p19-hxy-air.day.GLB", + "atmos.va.tavg-p19-hxy-air.mon.GLB", + "atmos.va.tpt-p3-hxy-air.6hr.GLB", + "atmos.vas.tavg-h10m-hxy-u.day.GLB", + "atmos.vas.tavg-h10m-hxy-u.mon.GLB", + "atmos.vas.tpt-h10m-hxy-u.3hr.GLB", + "atmos.wap.tavg-p19-hxy-air.mon.GLB", + "atmos.wap.tavg-p19-hxy-u.day.GLB", + "atmos.zg.tavg-p19-hxy-air.day.GLB", + "atmos.zg.tavg-p19-hxy-air.mon.GLB", + "land.evspsblsoi.tavg-u-hxy-lnd.mon.GLB", + "land.evspsblveg.tavg-u-hxy-lnd.mon.GLB", + "land.lai.tavg-u-hxy-lnd.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.mon.GLB", + "land.mrros.tavg-u-hxy-lnd.mon.GLB", + "land.mrso.tavg-u-hxy-lnd.mon.GLB", + "land.mrsofc.ti-u-hxy-lnd.fx.GLB", + "land.mrsol.tavg-d10cm-hxy-lnd.mon.GLB", + "land.orog.ti-u-hxy-u.fx.GLB", + "land.rootd.ti-u-hxy-lnd.fx.GLB", + "land.sftgif.ti-u-hxy-u.fx.GLB", + "land.slthick.ti-sl-hxy-lnd.fx.GLB", + "landIce.mrfso.tavg-u-hxy-lnd.mon.GLB", + "landIce.snc.tavg-u-hxy-lnd.mon.GLB", + "landIce.snw.tavg-u-hxy-lnd.mon.GLB", + "ocean.areacello.ti-u-hxy-u.fx.GLB", + "ocean.basin.ti-u-hxy-u.fx.GLB", + "ocean.bigthetao.tavg-ol-hxy-sea.mon.GLB", + "ocean.deptho.ti-u-hxy-sea.fx.GLB", + "ocean.hfds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfgeou.ti-u-hxy-sea.fx.GLB", + "ocean.masscello.tavg-ol-hxy-sea.mon.GLB", + "ocean.masscello.ti-ol-hxy-sea.fx.GLB", + "ocean.mlotst.tavg-u-hxy-sea.mon.GLB", + "ocean.sftof.ti-u-hxy-u.fx.GLB", + "ocean.so.tavg-ol-hxy-sea.mon.GLB", + "ocean.sos.tavg-u-hxy-sea.day.GLB", + "ocean.sos.tavg-u-hxy-sea.mon.GLB", + "ocean.tauuo.tavg-u-hxy-sea.mon.GLB", + "ocean.tauvo.tavg-u-hxy-sea.mon.GLB", + "ocean.thetao.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcello.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcello.ti-ol-hxy-sea.fx.GLB", + "ocean.tos.tavg-u-hxy-sea.day.GLB", + "ocean.tos.tavg-u-hxy-sea.mon.GLB", + "ocean.umo.tavg-ol-hxy-sea.mon.GLB", + "ocean.uo.tavg-ol-hxy-sea.mon.GLB", + "ocean.vmo.tavg-ol-hxy-sea.mon.GLB", + "ocean.vo.tavg-ol-hxy-sea.mon.GLB", + "ocean.wmo.tavg-ol-hxy-sea.mon.GLB", + "ocean.wo.tavg-ol-hxy-sea.mon.GLB", + "ocean.zos.tavg-u-hxy-sea.day.GLB", + "ocean.zos.tavg-u-hxy-sea.mon.GLB", + "ocean.zostoga.tavg-u-hm-sea.mon.GLB", + "seaIce.siconc.tavg-u-hxy-u.day.GLB", + "seaIce.siconc.tavg-u-hxy-u.mon.GLB", + "seaIce.simass.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-si.mon.GLB", + "seaIce.sitimefrac.tavg-u-hxy-sea.mon.GLB", + "seaIce.siu.tavg-u-hxy-si.mon.GLB", + "seaIce.siv.tavg-u-hxy-si.mon.GLB", + "seaIce.snd.tavg-u-hxy-sn.mon.GLB", + "seaIce.ts.tavg-u-hxy-si.mon.GLB" + ], + "High": [ + "aerosol.abs550aer.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550bc.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550dust.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550no3.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550oa.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550so4.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550ss.tavg-u-hxy-u.mon.GLB", + "aerosol.airmass.tavg-al-hxy-u.mon.GLB", + "aerosol.aoanh.tavg-al-hxy-u.mon.NH", + "aerosol.bry.tavg-p39-hy-air.mon.GLB", + "aerosol.bs550aer.tpt-al-hxy-u.6hr.GLB", + "aerosol.c2h6.tavg-al-hxy-u.mon.GLB", + "aerosol.c3h6.tavg-al-hxy-u.mon.GLB", + "aerosol.c3h8.tavg-al-hxy-u.mon.GLB", + "aerosol.ccldncl.tavg-u-hxy-ccl.mon.GLB", + "aerosol.ccn.tavg-u-hxy-ccl.mon.30S-90S", + "aerosol.ccn.tavg-u-hxy-ccl.mon.GLB", + "aerosol.ccn1.tavg-al-hxy-u.mon.30S-90S", + "aerosol.ccn1.tavg-al-hxy-u.mon.GLB", + "aerosol.ccnp02.tavg-al-hxy-u.mon.30S-90S", + "aerosol.ccnp02.tavg-al-hxy-u.mon.GLB", + "aerosol.cdnc.tavg-al-hxy-u.mon.30S-90S", + "aerosol.cdnc.tavg-al-hxy-u.mon.GLB", + "aerosol.ch3coch3.tavg-al-hxy-u.mon.GLB", + "aerosol.cheaqpso4.tavg-al-hxy-u.mon.GLB", + "aerosol.chegpso4.tavg-al-hxy-u.mon.GLB", + "aerosol.chepasoa.tavg-u-hxy-u.mon.GLB", + "aerosol.chepsoa.tavg-u-hxy-u.mon.GLB", + "aerosol.cly.tavg-p39-hy-air.mon.GLB", + "aerosol.co.tavg-al-hxy-u.mon.GLB", + "aerosol.co.tavg-h2m-hxy-u.day.GLB", + "aerosol.cod.tavg-u-hxy-u.day.GLB", + "aerosol.cod.tavg-u-hxy-u.mon.30S-90S", + "aerosol.cod.tavg-u-hxy-u.mon.GLB", + "aerosol.conccn.tavg-al-hxy-u.mon.GLB", + "aerosol.conccn.tpt-u-hs-u.3hr.GLB", + "aerosol.depdust.tavg-u-hxy-u.mon.GLB", + "aerosol.drybc.tavg-u-hxy-u.mon.GLB", + "aerosol.drydust.tavg-u-hxy-u.mon.GLB", + "aerosol.dryno3.tavg-u-hxy-u.mon.GLB", + "aerosol.dryo3.tavg-u-hxy-u.mon.GLB", + "aerosol.dryoa.tavg-u-hxy-u.mon.GLB", + "aerosol.dryso2.tavg-u-hxy-u.mon.GLB", + "aerosol.dryso4.tavg-u-hxy-u.mon.GLB", + "aerosol.dryss.tavg-u-hxy-u.mon.GLB", + "aerosol.ec550aer.tavg-al-hxy-u.mon.GLB", + "aerosol.ec550aer.tpt-u-hxy-u.6hr.GLB", + "aerosol.emiaco.tavg-u-hxy-u.mon.GLB", + "aerosol.emianox.tavg-u-hxy-u.mon.GLB", + "aerosol.emiaoa.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbbc.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbch4.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbco.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbdms.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbnh3.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbnox.tavg-u-hxy-u.mon.GLB", + "aerosol.emibboa.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbso2.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbvoc.tavg-u-hxy-u.mon.GLB", + "aerosol.emibc.tavg-u-hxy-u.mon.GLB", + "aerosol.emibvoc.tavg-u-hxy-u.mon.GLB", + "aerosol.emico.tavg-u-hxy-u.mon.GLB", + "aerosol.emidms.tavg-u-hxy-u.mon.30S-90S", + "aerosol.emidms.tavg-u-hxy-u.mon.GLB", + "aerosol.emidust.tavg-u-hxy-u.mon.GLB", + "aerosol.emiisop.tavg-u-hxy-u.mon.GLB", + "aerosol.emilnox.tavg-al-hxy-u.mon.GLB", + "aerosol.eminh3.tavg-u-hxy-u.mon.GLB", + "aerosol.eminox.tavg-u-hxy-u.mon.GLB", + "aerosol.emioa.tavg-u-hxy-u.mon.GLB", + "aerosol.emiso2.tavg-u-hxy-u.mon.GLB", + "aerosol.emiso4.tavg-u-hxy-u.mon.GLB", + "aerosol.emiss.tavg-u-hxy-u.mon.30S-90S", + "aerosol.emiss.tavg-u-hxy-u.mon.GLB", + "aerosol.emivoc.tavg-u-hxy-u.mon.GLB", + "aerosol.h2o.tavg-al-hxy-u.mon.GLB", + "aerosol.h2o.tavg-p39-hy-air.mon.GLB", + "aerosol.hcho.tavg-al-hxy-u.mon.GLB", + "aerosol.hcl.tavg-al-hxy-u.mon.GLB", + "aerosol.hcl.tavg-p39-hy-air.mon.GLB", + "aerosol.hno3.tavg-al-hxy-u.mon.GLB", + "aerosol.hno3.tavg-p39-hy-air.mon.GLB", + "aerosol.ho2.tavg-p39-hy-air.mon.GLB", + "aerosol.isop.tavg-al-hxy-u.mon.GLB", + "aerosol.jno2.tavg-al-hxy-u.mon.GLB", + "aerosol.lossch4.tavg-al-hxy-u.mon.GLB", + "aerosol.lossco.tavg-al-hxy-u.mon.GLB", + "aerosol.lossn2o.tavg-al-hxy-u.mon.GLB", + "aerosol.lwp.tavg-u-hxy-u.mon.GLB", + "aerosol.mmraerh2o.tavg-al-hxy-u.mon.GLB", + "aerosol.mmraerh2o.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmraerh2o.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrbc.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrbc.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrbc.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrbc.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrdust.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrdust.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrdust.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrdust.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrnh4.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrnh4.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrnh4.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrnh4.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrno3.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrno3.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrno3.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrno3.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmroa.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmroa.tavg-al-hxy-u.mon.GLB", + "aerosol.mmroa.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmroa.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrpm1.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrpm1.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrpm2p5.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrpm2p5.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrso4.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrso4.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrso4.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrso4.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrsoa.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrsoa.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrsoa.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrss.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrss.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrss.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrss.tpt-h2m-hs-u.3hr.GLB", + "aerosol.nh50.tavg-al-hxy-u.mon.GLB", + "aerosol.no.tavg-al-hxy-u.mon.GLB", + "aerosol.no2.tavg-al-hxy-u.mon.GLB", + "aerosol.no2.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.noy.tavg-p39-hy-air.mon.GLB", + "aerosol.o3.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.o3.tmax-h2m-hxy-u.day.GLB", + "aerosol.o3loss.tavg-al-hxy-u.mon.GLB", + "aerosol.o3prod.tavg-al-hxy-u.mon.GLB", + "aerosol.od443aer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550aer.tavg-u-hxy-u.day.GLB", + "aerosol.od550aer.tavg-u-hxy-u.mon.30S-90S", + "aerosol.od550aer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550aerh2o.tavg-u-hxy-u.mon.GLB", + "aerosol.od550bb.tavg-u-hxy-u.mon.GLB", + "aerosol.od550bc.tavg-u-hxy-u.mon.GLB", + "aerosol.od550csaer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550dust.tavg-u-hxy-u.mon.GLB", + "aerosol.od550lt1aer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550no3.tavg-u-hxy-u.mon.GLB", + "aerosol.od550oa.tavg-u-hxy-u.mon.GLB", + "aerosol.od550so4.tavg-u-hxy-u.mon.GLB", + "aerosol.od550soa.tavg-u-hxy-u.mon.GLB", + "aerosol.od550ss.tavg-u-hxy-u.mon.GLB", + "aerosol.od865aer.tavg-u-hxy-u.mon.GLB", + "aerosol.oh.tavg-al-hxy-u.mon.GLB", + "aerosol.oh.tavg-p39-hy-air.mon.GLB", + "aerosol.pan.tavg-al-hxy-u.mon.GLB", + "aerosol.photo1d.tavg-al-hxy-u.mon.GLB", + "aerosol.pod0.tsum-u-hxy-u.mon.GLB", + "aerosol.reffccwctop.tavg-u-hxy-cl.mon.GLB", + "aerosol.reffclwtop.tavg-u-hxy-cl.mon.30S-90S", + "aerosol.reffclwtop.tavg-u-hxy-cl.mon.GLB", + "aerosol.rluscsaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rlutaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rlutcsaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rsutaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rsutcsaf.tavg-u-hxy-u.mon.GLB", + "aerosol.sfpm1.tavg-h2m-hxy-u.day.GLB", + "aerosol.sfpm10.tavg-al-hxy-u.mon.30S-90S", + "aerosol.sfpm10.tavg-al-hxy-u.mon.GLB", + "aerosol.sfpm10.tavg-h2m-hxy-u.day.GLB", + "aerosol.sfpm25.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.sfpm25.tavg-h2m-hxy-u.day.GLB", + "aerosol.so2.tavg-al-hxy-u.mon.30S-90S", + "aerosol.so2.tavg-al-hxy-u.mon.GLB", + "aerosol.so2.tavg-h2m-hxy-u.day.GLB", + "aerosol.so2.tpt-h2m-hs-u.3hr.GLB", + "aerosol.tatp.tavg-u-hxy-u.mon.GLB", + "aerosol.toz.tavg-u-hxy-u.day.GLB", + "aerosol.toz.tavg-u-hxy-u.mon.GLB", + "aerosol.tropoz.tavg-u-hxy-u.mon.GLB", + "aerosol.ttop.tavg-u-hxy-cl.mon.GLB", + "aerosol.ua.tavg-10hPa-hxy-air.day.GLB", + "aerosol.vt100.tavg-100hPa-hy-air.mon.GLB", + "aerosol.wa.tavg-al-hxy-u.mon.GLB", + "aerosol.wetbc.tavg-u-hxy-u.mon.GLB", + "aerosol.wetdust.tavg-u-hxy-u.mon.GLB", + "aerosol.wetoa.tavg-u-hxy-u.mon.GLB", + "aerosol.wetso2.tavg-u-hxy-u.mon.GLB", + "aerosol.wetso4.tavg-u-hxy-u.mon.GLB", + "aerosol.wetss.tavg-u-hxy-u.mon.GLB", + "aerosol.zg.tavg-10hPa-hxy-air.day.GLB", + "atmos.albisccp.tavg-u-hxy-cl.day.GLB", + "atmos.albisccp.tavg-u-hxy-cl.mon.30S-90S", + "atmos.albisccp.tavg-u-hxy-cl.mon.GLB", + "atmos.aod550volso4.tavg-u-hxy-u.mon.GLB", + "atmos.bldep.tavg-u-hxy-u.mon.GLB", + "atmos.bldep.tmax-u-hxy-u.day.GLB", + "atmos.bldep.tmin-u-hxy-u.day.GLB", + "atmos.ccb.tavg-u-hxy-ccl.day.GLB", + "atmos.ccb.tavg-u-hxy-ccl.mon.GLB", + "atmos.cct.tavg-u-hxy-ccl.day.GLB", + "atmos.cct.tavg-u-hxy-ccl.mon.GLB", + "atmos.ci.tavg-u-hxy-u.mon.GLB", + "atmos.cl.tavg-al-hxy-u.day.GLB", + "atmos.cl.tavg-al-hxy-u.mon.30S-90S", + "atmos.clc.tavg-al-hxy-u.mon.30S-90S", + "atmos.clc.tavg-al-hxy-u.mon.GLB", + "atmos.clcalipso.tavg-220hPa-hxy-air.day.GLB", + "atmos.clcalipso.tavg-220hPa-hxy-air.mon.30S-90S", + "atmos.clcalipso.tavg-220hPa-hxy-air.mon.GLB", + "atmos.clcalipso.tavg-560hPa-hxy-air.day.GLB", + "atmos.clcalipso.tavg-560hPa-hxy-air.mon.30S-90S", + "atmos.clcalipso.tavg-560hPa-hxy-air.mon.GLB", + "atmos.clcalipso.tavg-840hPa-hxy-air.day.GLB", + "atmos.clcalipso.tavg-840hPa-hxy-air.mon.30S-90S", + "atmos.clcalipso.tavg-840hPa-hxy-air.mon.GLB", + "atmos.clcalipso.tavg-h40-hxy-air.mon.30S-90S", + "atmos.clcalipso.tavg-h40-hxy-air.mon.GLB", + "atmos.cldnci.tavg-u-hxy-cl.mon.GLB", + "atmos.cldncl.tavg-u-hxy-cl.mon.GLB", + "atmos.cldnvi.tavg-u-hxy-u.day.GLB", + "atmos.cldnvi.tavg-u-hxy-u.mon.GLB", + "atmos.cli.tavg-al-hxy-u.mon.30S-90S", + "atmos.clic.tavg-al-hxy-u.mon.30S-90S", + "atmos.clic.tavg-al-hxy-u.mon.GLB", + "atmos.clis.tavg-al-hxy-u.mon.30S-90S", + "atmos.clis.tavg-al-hxy-u.mon.GLB", + "atmos.clisccp.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clisccp.tavg-p7c-hxy-air.mon.GLB", + "atmos.clivi.tavg-u-hxy-u.day.GLB", + "atmos.clivi.tavg-u-hxy-u.mon.30S-90S", + "atmos.clivic.tavg-u-hxy-u.day.GLB", + "atmos.clivimodis.tavg-u-hxy-u.mon.30S-90S", + "atmos.clmisr.tavg-h16-hxy-air.mon.GLB", + "atmos.clmodis.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clmodis.tavg-p7c-hxy-air.mon.GLB", + "atmos.clmodisice.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clmodisice.tavg-p7c-hxy-air.mon.GLB", + "atmos.clmodisiceReff.tavg-u-hxy-u.mon.GLB", + "atmos.clmodisliquid.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clmodisliquid.tavg-p7c-hxy-air.mon.GLB", + "atmos.clmodisliquidReff.tavg-u-hxy-u.mon.GLB", + "atmos.cls.tavg-al-hxy-u.mon.30S-90S", + "atmos.cls.tavg-al-hxy-u.mon.GLB", + "atmos.clt.tavg-u-hxy-lnd.day.GLB", + "atmos.clt.tavg-u-hxy-u.1hr.30S-90S", + "atmos.clt.tavg-u-hxy-u.mon.30S-90S", + "atmos.cltc.tavg-u-hxy-u.mon.GLB", + "atmos.cltcalipso.tavg-u-hxy-u.day.GLB", + "atmos.cltcalipso.tavg-u-hxy-u.mon.30S-90S", + "atmos.cltcalipso.tavg-u-hxy-u.mon.GLB", + "atmos.cltisccp.tavg-u-hxy-u.day.GLB", + "atmos.cltisccp.tavg-u-hxy-u.mon.30S-90S", + "atmos.cltisccp.tavg-u-hxy-u.mon.GLB", + "atmos.cltmodis.tavg-u-hxy-u.mon.30S-90S", + "atmos.clw.tavg-al-hxy-u.mon.30S-90S", + "atmos.clwc.tavg-al-hxy-u.mon.30S-90S", + "atmos.clwc.tavg-al-hxy-u.mon.GLB", + "atmos.clws.tavg-al-hxy-u.mon.30S-90S", + "atmos.clws.tavg-al-hxy-u.mon.GLB", + "atmos.clwvi.tavg-u-hxy-u.day.GLB", + "atmos.clwvi.tavg-u-hxy-u.mon.30S-90S", + "atmos.clwvic.tavg-u-hxy-u.day.GLB", + "atmos.clwvimodis.tavg-u-hxy-u.mon.30S-90S", + "atmos.co2.tavg-al-hxy-u.mon.GLB", + "atmos.co2.tavg-h2m-hxy-u.mon.GLB", + "atmos.co2.tavg-p19-hxy-air.mon.GLB", + "atmos.co2.tclm-p19-hxy-air.mon.GLB", + "atmos.co2.tclm-u-hm-u.mon.GLB", + "atmos.co2mass.tavg-u-hm-u.mon.GLB", + "atmos.dmc.tavg-alh-hxy-u.mon.30S-90S", + "atmos.dmc.tavg-alh-hxy-u.mon.GLB", + "atmos.edt.tavg-al-hxy-u.mon.30S-90S", + "atmos.edt.tavg-al-hxy-u.mon.GLB", + "atmos.epfy.tavg-p39-hy-air.day.GLB", + "atmos.epfy.tavg-p39-hy-air.mon.GLB", + "atmos.epfz.tavg-p39-hy-air.day.GLB", + "atmos.epfz.tavg-p39-hy-air.mon.GLB", + "atmos.evspsbl.tavg-u-hxy-lnd.day.GLB", + "atmos.evu.tavg-al-hxy-u.mon.30S-90S", + "atmos.evu.tavg-al-hxy-u.mon.GLB", + "atmos.fco2antt.tavg-u-hxy-u.mon.GLB", + "atmos.fco2nat.tavg-u-hxy-u.mon.GLB", + "atmos.hfls.tavg-u-hxy-is.mon.GRL", + "atmos.hfls.tavg-u-hxy-u.day.GLB", + "atmos.hfls.tavg-u-hxy-u.mon.30S-90S", + "atmos.hfss.tavg-u-hxy-u.day.GLB", + "atmos.hfss.tavg-u-hxy-u.mon.30S-90S", + "atmos.hur.tavg-al-hxy-u.mon.30S-90S", + "atmos.hur.tavg-al-hxy-u.mon.GLB", + "atmos.hur.tavg-p19-hxy-air.mon.30S-90S", + "atmos.hurs.tavg-h2m-hxy-u.1hr.30S-90S", + "atmos.hurs.tavg-h2m-hxy-u.mon.30S-90S", + "atmos.hurs.tmax-h2m-hxy-u.day.GLB", + "atmos.hurs.tmin-h2m-hxy-u.day.GLB", + "atmos.hus.tavg-al-hxy-u.mon.30S-90S", + "atmos.hus.tavg-al-hxy-u.mon.GLB", + "atmos.hus.tavg-p19-hxy-u.mon.30S-90S", + "atmos.hus.tpt-p7h-hxy-air.6hr.GLB", + "atmos.huss.tavg-h2m-hxy-u.6hr.GLB", + "atmos.huss.tavg-h2m-hxy-u.mon.30S-90S", + "atmos.intuadse.tavg-u-hxy-u.day.GLB", + "atmos.intuadse.tavg-u-hxy-u.mon.GLB", + "atmos.intuaw.tavg-u-hxy-u.day.GLB", + "atmos.intuaw.tavg-u-hxy-u.mon.GLB", + "atmos.intuaw.tpt-u-hxy-u.6hr.GLB", + "atmos.intvadse.tavg-u-hxy-u.day.GLB", + "atmos.intvadse.tavg-u-hxy-u.mon.GLB", + "atmos.intvaw.tavg-u-hxy-u.day.GLB", + "atmos.intvaw.tavg-u-hxy-u.mon.GLB", + "atmos.intvaw.tpt-u-hxy-u.6hr.GLB", + "atmos.loadbc.tavg-u-hxy-u.day.GLB", + "atmos.loadoa.tavg-u-hxy-u.day.GLB", + "atmos.loadpoa.tavg-u-hxy-u.day.GLB", + "atmos.loadso4.tavg-u-hxy-u.mon.GLB", + "atmos.mc.tavg-alh-hxy-u.mon.GLB", + "atmos.mcd.tavg-alh-hxy-u.mon.30S-90S", + "atmos.mcd.tavg-alh-hxy-u.mon.GLB", + "atmos.mcu.tavg-alh-hxy-u.mon.30S-90S", + "atmos.mcu.tavg-alh-hxy-u.mon.GLB", + "atmos.pctisccp.tavg-u-hxy-cl.day.GLB", + "atmos.pctisccp.tavg-u-hxy-cl.mon.30S-90S", + "atmos.pctisccp.tavg-u-hxy-cl.mon.GLB", + "atmos.pfull.tavg-al-hxy-u.day.GLB", + "atmos.pfull.tavg-al-hxy-u.mon.GLB", + "atmos.pfull.tclm-al-hxy-u.mon.30S-90S", + "atmos.pfull.tclm-al-hxy-u.mon.GLB", + "atmos.phalf.tavg-alh-hxy-u.mon.GLB", + "atmos.phalf.tclm-alh-hxy-u.mon.GLB", + "atmos.pr.tavg-u-hxy-u.1hr.30S-90S", + "atmos.pr.tavg-u-hxy-u.mon.30S-90S", + "atmos.pr.tmax-u-hxy-u.day.GLB", + "atmos.pr.tmax-u-hxy-u.mon.GLB", + "atmos.pr.tpt-u-hxy-u.6hr.GLB", + "atmos.pr17O.tavg-u-hxy-u.mon.GLB", + "atmos.pr18O.tavg-u-hxy-u.mon.GLB", + "atmos.pr2h.tavg-u-hxy-u.mon.GLB", + "atmos.prc.tavg-u-hxy-u.day.GLB", + "atmos.prc.tavg-u-hxy-u.mon.30S-90S", + "atmos.prra.tavg-u-hxy-is.mon.GRL", + "atmos.prra.tavg-u-hxy-lnd.day.GLB", + "atmos.prra.tavg-u-hxy-u.6hr.GLB", + "atmos.prra.tavg-u-hxy-u.mon.30S-90S", + "atmos.prra.tavg-u-hxy-u.mon.GLB", + "atmos.prsn.tavg-u-hxy-is.mon.GRL", + "atmos.prsn.tavg-u-hxy-u.3hr.GLB", + "atmos.prsn.tavg-u-hxy-u.6hr.GLB", + "atmos.prsn.tavg-u-hxy-u.day.GLB", + "atmos.prsn.tavg-u-hxy-u.mon.30S-90S", + "atmos.prsn18O.tavg-u-hxy-u.mon.GLB", + "atmos.prsn2h.tavg-u-hxy-u.mon.GLB", + "atmos.prw.tavg-u-hxy-u.day.GLB", + "atmos.prw.tavg-u-hxy-u.mon.30S-90S", + "atmos.prw.tpt-u-hxy-u.6hr.GLB", + "atmos.ps.tavg-u-hxy-u.1hr.GLB", + "atmos.ps.tavg-u-hxy-u.6hr.GLB", + "atmos.ps.tavg-u-hxy-u.mon.30S-90S", + "atmos.ps.tpt-u-hxy-u.1hr.30S-90S", + "atmos.psl.tavg-u-hxy-u.mon.30S-90S", + "atmos.psl.tpt-u-hxy-u.1hr.GLB", + "atmos.psl.tpt-u-hxy-u.6hr.GLB", + "atmos.ptp.tavg-u-hxy-u.mon.GLB", + "atmos.reffcclwtop.tavg-u-hxy-ccl.mon.GLB", + "atmos.reffclic.tavg-al-hxy-ccl.mon.30S-90S", + "atmos.reffclic.tavg-al-hxy-ccl.mon.GLB", + "atmos.reffclis.tavg-al-hxy-scl.mon.30S-90S", + "atmos.reffclis.tavg-al-hxy-scl.mon.GLB", + "atmos.reffclwc.tavg-al-hxy-ccl.mon.30S-90S", + "atmos.reffclwc.tavg-al-hxy-ccl.mon.GLB", + "atmos.reffclws.tavg-al-hxy-scl.mon.30S-90S", + "atmos.reffclws.tavg-al-hxy-scl.mon.GLB", + "atmos.reffsclwtop.tavg-u-hxy-scl.mon.GLB", + "atmos.rld.tavg-alh-hxy-u.mon.GLB", + "atmos.rld4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rldcs.tavg-alh-hxy-u.mon.GLB", + "atmos.rldcs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rlds.tavg-u-hxy-u.1hr.30S-90S", + "atmos.rlds.tavg-u-hxy-u.6hr.GLB", + "atmos.rlds.tavg-u-hxy-u.day.GLB", + "atmos.rlds.tavg-u-hxy-u.mon.30S-90S", + "atmos.rldscs.tavg-u-hxy-u.day.GLB", + "atmos.rldscs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rls.tavg-u-hxy-u.mon.GLB", + "atmos.rlu.tavg-alh-hxy-u.mon.GLB", + "atmos.rlu4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rlucs.tavg-alh-hxy-u.mon.GLB", + "atmos.rlucs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rlus.tavg-u-hxy-u.day.GLB", + "atmos.rlus.tavg-u-hxy-u.mon.30S-90S", + "atmos.rluscs.tavg-u-hxy-u.day.GLB", + "atmos.rlut.tavg-u-hxy-u.day.GLB", + "atmos.rlut.tavg-u-hxy-u.mon.30S-90S", + "atmos.rlut4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rlutcs.tavg-u-hxy-u.day.GLB", + "atmos.rlutcs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rlutcs4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rsd.tavg-alh-hxy-u.mon.GLB", + "atmos.rsd4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsdcs.tavg-alh-hxy-u.mon.GLB", + "atmos.rsdcs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsds.tavg-u-hxy-u.1hr.30S-90S", + "atmos.rsds.tavg-u-hxy-u.6hr.GLB", + "atmos.rsds.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsdscs.tavg-u-hxy-u.day.GLB", + "atmos.rsdscs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsdt.tavg-u-hxy-u.day.GLB", + "atmos.rsdt.tavg-u-hxy-u.mon.30S-90S", + "atmos.rss.tavg-u-hxy-u.mon.GLB", + "atmos.rsu.tavg-alh-hxy-u.mon.GLB", + "atmos.rsu4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsucs.tavg-alh-hxy-u.mon.GLB", + "atmos.rsucs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsus.tavg-u-hxy-u.day.GLB", + "atmos.rsus.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsuscs.tavg-u-hxy-u.day.GLB", + "atmos.rsuscs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsut.tavg-u-hxy-u.day.GLB", + "atmos.rsut.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsut4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rsutcs.tavg-u-hxy-u.day.GLB", + "atmos.rsutcs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsutcs4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rtmt.tavg-u-hxy-u.mon.GLB", + "atmos.rv850.tpt-850hPa-hxy-air.6hr.GLB", + "atmos.sci.tavg-u-hxy-u.mon.GLB", + "atmos.scldncl.tavg-u-hxy-scl.mon.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.1hr.30S-90S", + "atmos.sfcWind.tavg-h10m-hxy-u.6hr.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.mon.30S-90S", + "atmos.sfcWind.tmax-h10m-hxy-u.day.GLB", + "atmos.sfcWind.tmaxavg-h10m-hxy-u.mon.GLB", + "atmos.smc.tavg-alh-hxy-u.mon.GLB", + "atmos.ta.tavg-700hPa-hxy-air.day.GLB", + "atmos.ta.tavg-850hPa-hxy-air.day.GLB", + "atmos.ta.tavg-al-hxy-u.mon.30S-90S", + "atmos.ta.tavg-al-hxy-u.mon.GLB", + "atmos.ta.tavg-p19-hxy-air.mon.30S-90S", + "atmos.ta.tavg-p39-hy-air.day.GLB", + "atmos.ta.tavg-p39-hy-air.mon.GLB", + "atmos.tas.tavg-h2m-hxy-u.1hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.6hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.mon.30S-90S", + "atmos.tas.tmaxavg-h2m-hxy-u.mon.30S-90S", + "atmos.tas.tminavg-h2m-hxy-u.mon.30S-90S", + "atmos.tauu.tavg-u-hxy-u.day.GLB", + "atmos.tauunoegw.tavg-p39-hy-air.day.GLB", + "atmos.tauunowgw.tavg-p39-hy-air.day.GLB", + "atmos.tauuogw.tavg-p39-hy-air.day.GLB", + "atmos.tauv.tavg-u-hxy-u.day.GLB", + "atmos.tauvnogw.tavg-p39-hy-air.day.GLB", + "atmos.tauvogw.tavg-p39-hy-air.day.GLB", + "atmos.tdps.tavg-h2m-hxy-u.mon.GLB", + "atmos.tnhus.tavg-al-hxy-u.mon.GLB", + "atmos.tnhusa.tavg-al-hxy-u.mon.GLB", + "atmos.tnhusc.tavg-al-hxy-u.mon.GLB", + "atmos.tnhusd.tavg-al-hxy-u.mon.GLB", + "atmos.tnhusmp.tavg-al-hxy-u.mon.GLB", + "atmos.tnhuspbl.tavg-al-hxy-u.mon.GLB", + "atmos.tnhusscp.tavg-al-hxy-u.mon.GLB", + "atmos.tnhusscpbl.tavg-al-hxy-u.mon.GLB", + "atmos.tnt.tavg-al-hxy-u.mon.GLB", + "atmos.tnta.tavg-al-hxy-u.mon.GLB", + "atmos.tntc.tavg-al-hxy-u.mon.GLB", + "atmos.tntd.tavg-al-hxy-u.mon.GLB", + "atmos.tntmp.tavg-al-hxy-u.mon.GLB", + "atmos.tntmp.tavg-p39-hy-air.day.GLB", + "atmos.tntmp.tavg-p39-hy-air.mon.GLB", + "atmos.tntpbl.tavg-al-hxy-u.mon.GLB", + "atmos.tntr.tavg-al-hxy-u.mon.GLB", + "atmos.tntrl.tavg-al-hxy-u.mon.GLB", + "atmos.tntrl.tavg-p39-hy-air.day.GLB", + "atmos.tntrl.tavg-p39-hy-air.mon.GLB", + "atmos.tntrlcs.tavg-al-hxy-u.mon.GLB", + "atmos.tntrs.tavg-al-hxy-u.mon.GLB", + "atmos.tntrs.tavg-p39-hy-air.day.GLB", + "atmos.tntrs.tavg-p39-hy-air.mon.GLB", + "atmos.tntrscs.tavg-al-hxy-u.mon.GLB", + "atmos.tntscp.tavg-al-hxy-u.mon.GLB", + "atmos.tntscpbl.tavg-al-hxy-u.mon.GLB", + "atmos.ts.tavg-u-hxy-u.6hr.GLB", + "atmos.ts.tavg-u-hxy-u.day.GLB", + "atmos.ts.tavg-u-hxy-u.mon.30S-90S", + "atmos.ua.tavg-al-hxy-u.mon.GLB", + "atmos.ua.tavg-p19-hxy-air.mon.30S-90S", + "atmos.ua.tavg-p39-hy-air.day.GLB", + "atmos.ua.tavg-p39-hy-air.mon.GLB", + "atmos.ua.tpt-h100m-hxy-u.1hr.GLB", + "atmos.uas.tavg-h10m-hxy-u.mon.30S-90S", + "atmos.uas.tpt-h10m-hxy-u.1hr.GLB", + "atmos.uas.tpt-h10m-hxy-u.6hr.GLB", + "atmos.utendepfd.tavg-p39-hy-air.day.GLB", + "atmos.utendepfd.tavg-p39-hy-air.mon.GLB", + "atmos.utendnogw.tavg-p39-hy-air.day.GLB", + "atmos.utendnogw.tavg-p39-hy-air.mon.GLB", + "atmos.utendogw.tavg-p39-hy-air.day.GLB", + "atmos.utendogw.tavg-p39-hy-air.mon.GLB", + "atmos.utendvtem.tavg-p39-hy-air.day.GLB", + "atmos.utendwtem.tavg-p39-hy-air.day.GLB", + "atmos.va.tavg-al-hxy-u.mon.GLB", + "atmos.va.tavg-p19-hxy-air.mon.30S-90S", + "atmos.va.tavg-p39-hy-air.mon.GLB", + "atmos.va.tpt-h100m-hxy-u.1hr.GLB", + "atmos.vas.tavg-h10m-hxy-u.mon.30S-90S", + "atmos.vas.tpt-h10m-hxy-u.1hr.GLB", + "atmos.vas.tpt-h10m-hxy-u.6hr.GLB", + "atmos.vtem.tavg-p39-hy-air.day.GLB", + "atmos.vtem.tavg-p39-hy-air.mon.GLB", + "atmos.wap.tavg-500hPa-hxy-air.day.GLB", + "atmos.wap.tavg-p19-hxy-air.mon.30S-90S", + "atmos.wtem.tavg-p39-hy-air.day.GLB", + "atmos.wtem.tavg-p39-hy-air.mon.GLB", + "atmos.zg.tavg-1000hPa-hxy-air.day.GLB", + "atmos.zg.tavg-500hPa-hxy-air.day.GLB", + "atmos.zg.tavg-al-hxy-u.mon.GLB", + "atmos.zg.tavg-p19-hxy-air.mon.30S-90S", + "atmos.zg.tavg-p39-hy-air.day.GLB", + "atmos.zg.tavg-p39-hy-air.mon.GLB", + "atmos.zg.tpt-500hPa-hxy-air.6hr.GLB", + "atmos.zg.tpt-p3-hxy-air.6hr.GLB", + "atmos.zg.tpt-p7h-hxy-air.6hr.GLB", + "atmos.ztp.tavg-u-hxy-u.mon.GLB", + "atmosChem.c2h4.tavg-al-hxy-u.mon.GLB", + "atmosChem.c2h5oh.tavg-al-hxy-u.mon.GLB", + "atmosChem.c4h10.tavg-al-hxy-u.mon.GLB", + "atmosChem.cfc11.tavg-u-hm-u.mon.GLB", + "atmosChem.cfc113.tavg-u-hm-u.mon.GLB", + "atmosChem.cfc12.tavg-u-hm-u.mon.GLB", + "atmosChem.ch3oh.tavg-al-hxy-u.mon.GLB", + "atmosChem.ch4.tavg-al-hxy-u.mon.GLB", + "atmosChem.ch4.tavg-p19-hxy-air.mon.GLB", + "atmosChem.ch4.tavg-p39-hy-air.mon.GLB", + "atmosChem.ch4.tavg-u-hm-u.mon.GLB", + "atmosChem.ch4.tclm-p19-hxy-air.mon.GLB", + "atmosChem.ch4.tclm-u-hm-u.mon.GLB", + "atmosChem.ch4losssoil.tavg-u-hxy-u.mon.GLB", + "atmosChem.ch4ref.ti-al-hxy-u.fx.GLB", + "atmosChem.chegph2oo1d.tavg-al-hxy-u.mon.GLB", + "atmosChem.chepnh4.tavg-al-hxy-u.mon.GLB", + "atmosChem.chepno3.tavg-al-hxy-u.mon.GLB", + "atmosChem.dms.tavg-al-hxy-u.mon.30S-90S", + "atmosChem.dms.tavg-al-hxy-u.mon.GLB", + "atmosChem.do3chm.tavg-al-hxy-u.mon.GLB", + "atmosChem.dryh2.tavg-u-hxy-u.mon.GLB", + "atmosChem.dryhno3.tavg-u-hxy-u.mon.GLB", + "atmosChem.drynh3.tavg-u-hxy-u.mon.GLB", + "atmosChem.drynh4.tavg-u-hxy-u.mon.GLB", + "atmosChem.drynoy.tavg-u-hxy-u.mon.GLB", + "atmosChem.e90inst.tpt-al-hxy-u.mon.GLB", + "atmosChem.emiach4.tavg-u-hxy-u.mon.GLB", + "atmosChem.emiavnox.tavg-al-hxy-u.mon.GLB", + "atmosChem.emic2h4.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic2h5oh.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic2h6.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic3h6.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic3h8.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic4h10.tavg-u-hxy-u.mon.GLB", + "atmosChem.emich3oh.tavg-u-hxy-u.mon.GLB", + "atmosChem.emich4.tavg-u-hxy-u.mon.GLB", + "atmosChem.emih2.tavg-u-hxy-u.mon.GLB", + "atmosChem.emilkch4.tavg-u-hxy-u.mon.GLB", + "atmosChem.h2.tavg-al-hxy-u.mon.GLB", + "atmosChem.h2loss.tavg-al-hxy-u.mon.GLB", + "atmosChem.h2prod.tavg-al-hxy-u.mon.GLB", + "atmosChem.hcfc22.tavg-u-hm-u.mon.GLB", + "atmosChem.meanage.tavg-al-hxy-u.mon.GLB", + "atmosChem.meanage.tavg-p39-hy-air.mon.GLB", + "atmosChem.n2o.tavg-al-hxy-u.mon.GLB", + "atmosChem.n2o.tavg-p19-hxy-air.mon.GLB", + "atmosChem.n2o.tavg-p39-hy-air.mon.GLB", + "atmosChem.n2o.tavg-u-hm-u.mon.GLB", + "atmosChem.n2o.tclm-p19-hxy-air.mon.GLB", + "atmosChem.n2o.tclm-u-hm-u.mon.GLB", + "atmosChem.o3.tavg-al-hxy-u.mon.GLB", + "atmosChem.o3.tavg-p19-hxy-air.mon.GLB", + "atmosChem.o3.tavg-p39-hy-air.mon.GLB", + "atmosChem.o3.tclm-p19-hxy-air.mon.GLB", + "atmosChem.o3.tpt-al-hxy-u.mon.GLB", + "atmosChem.o3ref.tclm-al-hxy-u.fx.GLB", + "atmosChem.o3ref.ti-al-hxy-u.fx.GLB", + "atmosChem.o3ste.tavg-al-hxy-u.mon.GLB", + "atmosChem.rlutch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rlutcsch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rlutcso3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rluto3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsutch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsutcsch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsutcso3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsuto3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.stratch4loss.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropch4loss.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropch4lossoh.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropdo3chm.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropo3ste.tavg-al-hxy-u.mon.GLB", + "atmosChem.wethno3.tavg-al-hxy-u.mon.GLB", + "atmosChem.wetnh3.tavg-u-hxy-u.mon.GLB", + "atmosChem.wetnh4.tavg-u-hxy-u.mon.GLB", + "atmosChem.wetno3.tavg-al-hxy-u.mon.GLB", + "atmosChem.wetnoy.tavg-u-hxy-u.mon.GLB", + "land.areacellr.ti-u-hxy-u.fx.GLB", + "land.baresoilFrac.tavg-u-hxy-u.mon.GLB", + "land.burntFractionAll.tavg-u-hxy-u.mon.GLB", + "land.cLand.tavg-u-hxy-lnd.mon.GLB", + "land.cLeaf.tavg-u-hxy-lnd.mon.GLB", + "land.cLitter.tavg-u-hxy-lnd.mon.GLB", + "land.cProduct.tavg-u-hxy-lnd.mon.GLB", + "land.cRoot.tavg-u-hxy-lnd.mon.GLB", + "land.cropFrac.tavg-u-hxy-u.mon.GLB", + "land.cSoil.tavg-d100cm-hxy-lnd.mon.GLB", + "land.cSoil.tavg-sl-hxy-lnd.mon.GLB", + "land.cSoil.tavg-u-hxy-lnd.mon.GLB", + "land.cStem.tavg-u-hxy-lnd.mon.GLB", + "land.cVeg.tavg-u-hxy-lnd.mon.GLB", + "land.dcw.tavg-u-hxy-lnd.day.GLB", + "land.depthl.ti-u-hxy-u.fx.GLB", + "land.depthsl.ti-u-hxy-u.fx.GLB", + "land.dslw.tavg-u-hxy-lnd.day.GLB", + "land.evspsblpot.tavg-u-hxy-lnd.day.GLB", + "land.evspsblpot.tavg-u-hxy-lnd.mon.GLB", + "land.evspsblsoi.tavg-u-hxy-u.day.GLB", + "land.evspsblveg.tavg-u-hxy-u.day.GLB", + "land.fBNF.tavg-u-hxy-lnd.mon.GLB", + "land.fFire.tavg-u-hxy-lnd.mon.GLB", + "land.fFireAll.tavg-u-hxy-lnd.mon.GLB", + "land.fFireNat.tavg-u-hxy-lnd.mon.GLB", + "land.fLuc.tavg-u-hxy-lnd.mon.GLB", + "land.fNgas.tavg-u-hxy-lnd.mon.GLB", + "land.fNgasFire.tavg-u-hxy-lnd.mon.GLB", + "land.fNLandToOcean.tavg-u-hxy-lnd.mon.GLB", + "land.fNleach.tavg-u-hxy-lnd.mon.GLB", + "land.fNLitterSoil.tavg-u-hxy-lnd.mon.GLB", + "land.fNloss.tavg-u-hxy-lnd.mon.GLB", + "land.fNup.tavg-u-hxy-lnd.mon.GLB", + "land.fNVegSoil.tavg-u-hxy-lnd.mon.GLB", + "land.gpp.tavg-u-hxy-lnd.mon.GLB", + "land.grassFrac.tavg-u-hxy-u.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.day.GLB", + "land.mrrob.tavg-u-hxy-lnd.day.GLB", + "land.mrros.tavg-u-hxy-lnd.day.GLB", + "land.mrsfl.tavg-sl-hxy-lnd.day.GLB", + "land.mrsfl.tavg-sl-hxy-lnd.mon.GLB", + "land.mrsll.tavg-sl-hxy-lnd.day.GLB", + "land.mrsll.tavg-sl-hxy-lnd.mon.GLB", + "land.mrso.tavg-u-hxy-lnd.day.GLB", + "land.mrsol.tavg-d10cm-hxy-lnd.day.GLB", + "land.mrsol.tavg-sl-hxy-lnd.day.GLB", + "land.mrsol.tavg-sl-hxy-lnd.mon.GLB", + "land.mrsow.tavg-u-hxy-lnd.day.GLB", + "land.mrtws.tavg-u-hxy-lnd.day.GLB", + "land.nbp.tavg-u-hxy-lnd.mon.GLB", + "land.nep.tavg-u-hxy-lnd.mon.GLB", + "land.nLand.tavg-u-hxy-lnd.mon.GLB", + "land.nLitter.tavg-u-hxy-lnd.mon.GLB", + "land.nMineral.tavg-u-hxy-lnd.mon.GLB", + "land.npp.tavg-u-hxy-lnd.mon.GLB", + "land.nProduct.tavg-u-hxy-lnd.mon.GLB", + "land.nSoil.tavg-u-hxy-lnd.mon.GLB", + "land.nVeg.tavg-u-hxy-lnd.mon.GLB", + "land.orog.ti-u-hxy-u.fx.30S-90S", + "land.ra.tavg-u-hxy-lnd.mon.GLB", + "land.rh.tavg-u-hxy-lnd.mon.GLB", + "land.rivi.tavg-u-hxy-lnd.day.GLB", + "land.rivo.tavg-u-hxy-lnd.day.GLB", + "land.rsds.tavg-u-hxy-lnd.mon.GLB", + "land.rsds.tavg-u-hxy-sn.mon.GLB", + "land.rsus.tavg-u-hxy-lnd.mon.GLB", + "land.rsus.tavg-u-hxy-sn.mon.GLB", + "land.sftgif.tavg-u-hxy-u.mon.GLB", + "land.sftlaf.ti-u-hxy-u.fx.GLB", + "land.shrubFrac.tavg-u-hxy-u.mon.GLB", + "land.tas.tavg-u-hxy-u.1hr.30S-90S", + "land.tran.tavg-u-hxy-lnd.mon.GLB", + "land.treeFrac.tavg-u-hxy-u.mon.GLB", + "land.tsl.tavg-sl-hxy-lnd.day.GLB", + "land.tsl.tavg-sl-hxy-lnd.mon.GLB", + "land.tslsi.tavg-u-hxy-u.day.GLB", + "land.vegFrac.tavg-u-hxy-u.mon.GLB", + "land.vegHeight.tavg-u-hxy-tree.mon.GLB", + "land.vegHeight.tavg-u-hxy-veg.mon.GLB", + "land.wetlandCH4.tavg-u-hxy-lnd.mon.GLB", + "land.wtd.tavg-u-hxy-lnd.day.GLB", + "landIce.acabf.tavg-u-hxy-is.mon.GLB", + "landIce.hfdsn.tavg-u-hxy-lnd.mon.GLB", + "landIce.hfgeoubed.ti-u-hxy-gis.fx.GRL", + "landIce.hfls.tavg-u-hxy-is.mon.GLB", + "landIce.hfss.tavg-u-hxy-is.mon.GLB", + "landIce.icem.tavg-u-hxy-is.mon.GLB", + "landIce.litemptop.tavg-u-hxy-is.mon.GLB", + "landIce.lithk.ti-u-hxy-is.fx.GRL", + "landIce.lithk.ti-u-hxy-u.fx.GLB", + "landIce.mrro.tavg-u-hxy-is.mon.GLB", + "landIce.orog.tavg-u-hxy-is.mon.GLB", + "landIce.pflw.tavg-u-hxy-lnd.mon.GLB", + "landIce.prra.tavg-u-hxy-is.mon.GLB", + "landIce.prsn.tavg-u-hxy-is.mon.GLB", + "landIce.rlds.tavg-u-hxy-is.mon.GLB", + "landIce.rlus.tavg-u-hxy-is.mon.GLB", + "landIce.rsds.tavg-u-hxy-is.mon.GLB", + "landIce.rsus.tavg-u-hxy-is.mon.GLB", + "landIce.sbl.tavg-u-hxy-is.mon.GLB", + "landIce.sbl.tavg-u-hxy-lnd.mon.GLB", + "landIce.sbl.tavg-u-hxy-u.mon.GLB", + "landIce.sftflf.tavg-u-hxy-u.mon.GLB", + "landIce.sftflf.ti-u-hxy-u.fx.GLB", + "landIce.sftgrf.tavg-u-hxy-u.mon.GLB", + "landIce.sftgrf.ti-u-hxy-u.fx.GLB", + "landIce.snc.tavg-u-hxy-is.mon.GLB", + "landIce.snc.tavg-u-hxy-lnd.day.GLB", + "landIce.snd.tavg-u-hxy-lnd.mon.GLB", + "landIce.snicem.tavg-u-hxy-is.mon.GLB", + "landIce.snicem.tavg-u-hxy-is.mon.GRL", + "landIce.snm.tavg-u-hxy-is.mon.GLB", + "landIce.snm.tavg-u-hxy-lnd.mon.GLB", + "landIce.snrefr.tavg-u-hxy-is.mon.GLB", + "landIce.snw.tavg-u-hxy-lnd.day.GLB", + "landIce.sootsn.tavg-u-hxy-lnd.mon.GLB", + "landIce.tas.tavg-u-hxy-is.mon.GLB", + "landIce.topg.ti-u-hxy-gis.fx.GRL", + "landIce.tpf.tavg-u-hxy-lnd.mon.GLB", + "landIce.ts.tavg-u-hxy-is.mon.GLB", + "landIce.tsn.tavg-u-hxy-is.mon.GLB", + "landIce.tsn.tavg-u-hxy-lnd.mon.GLB", + "ocean.absscint.tavg-op4-hxy-sea.mon.GLB", + "ocean.agessc.tavg-ol-hxy-sea.mon.GLB", + "ocean.bigthetao.tavg-ol-hm-sea.mon.GLB", + "ocean.bigthetao.tavg-ol-hxy-sea.dec.GLB", + "ocean.bigthetao.tavg-op20bar-hxy-sea.day.GLB", + "ocean.chcint.tavg-op4-hxy-sea.mon.GLB", + "ocean.ficeberg.tavg-ol-hxy-sea.3hr.GLB", + "ocean.ficeberg.tavg-u-hxy-sea.mon.GLB", + "ocean.flandice.tavg-u-hxy-sea.3hr.GLB", + "ocean.flandice.tavg-u-hxy-sea.mon.GLB", + "ocean.friver.tavg-u-hxy-sea.3hr.GLB", + "ocean.hfbasin.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpmadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpmdiff.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpsmadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfds.tavg-u-hxy-sea.3hr.GLB", + "ocean.hfds.tavg-u-hxy-sea.mon.30S-90S", + "ocean.hfgeou.tavg-u-hxy-sea.mon.GLB", + "ocean.hfrunoffds.tavg-ol-hxy-sea.3hr.GLB", + "ocean.hfx.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfx.tavg-u-hxy-sea.day.GLB", + "ocean.hfx.tavg-u-hxy-sea.mon.GLB", + "ocean.hfy.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfy.tavg-u-hxy-sea.day.GLB", + "ocean.hfy.tavg-u-hxy-sea.mon.GLB", + "ocean.htovgyre.tavg-u-hyb-sea.mon.GLB", + "ocean.htovovrt.tavg-u-hyb-sea.mon.GLB", + "ocean.masscello.tavg-ol-hxy-sea.dec.GLB", + "ocean.masso.tavg-u-hm-sea.dec.GLB", + "ocean.masso.tavg-u-hm-sea.mon.GLB", + "ocean.mlotst.tavg-u-hxy-sea.day.GLB", + "ocean.mlotst.tavg-u-hxy-sea.mon.30S-90S", + "ocean.mlotst.tmax-u-hxy-sea.mon.GLB", + "ocean.mlotst.tmin-u-hxy-sea.mon.GLB", + "ocean.mpw.tavg-u-hxy-sea.mon.GLB", + "ocean.mpw.tpt-u-hxy-sea.3hr.GLB", + "ocean.mpwswell.tavg-u-hxy-sea.mon.GLB", + "ocean.mpwswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.mpwwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.mpwwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.msftbarot.tavg-u-hxy-sea.mon.GLB", + "ocean.msftm.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftm.tavg-rho-hyb-sea.mon.GLB", + "ocean.msfty.tavg-ol-ht-sea.mon.GLB", + "ocean.msfty.tavg-rho-ht-sea.mon.GLB", + "ocean.obvfsq.tavg-ol-hxy-sea.mon.GLB", + "ocean.opottemptend.tavg-ol-hxy-sea.yr.GLB", + "ocean.pbo.tavg-u-hxy-sea.mon.GLB", + "ocean.pfscint.tavg-op4-hxy-sea.mon.GLB", + "ocean.phcint.tavg-op4-hxy-sea.mon.GLB", + "ocean.pso.tavg-u-hxy-sea.mon.GLB", + "ocean.rsds.tavg-u-hxy-ifs.mon.GLB", + "ocean.rsntds.tavg-u-hxy-sea.3hr.GLB", + "ocean.rsus.tavg-u-hxy-ifs.mon.GLB", + "ocean.scint.tavg-op4-hxy-sea.mon.GLB", + "ocean.sduo.tavg-u-hxy-sea.mon.GLB", + "ocean.sduo.tpt-u-hxy-sea.3hr.GLB", + "ocean.sdvo.tavg-u-hxy-sea.mon.GLB", + "ocean.sdvo.tpt-u-hxy-sea.3hr.GLB", + "ocean.sfdsi.tavg-u-hxy-sea.3hr.GLB", + "ocean.sfx.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfx.tavg-u-hxy-sea.mon.GLB", + "ocean.sfy.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfy.tavg-u-hxy-sea.mon.GLB", + "ocean.sltbasin.tavg-u-hyb-sea.mon.GLB", + "ocean.sltovgyre.tavg-u-hyb-sea.mon.GLB", + "ocean.sltovovrt.tavg-u-hyb-sea.mon.GLB", + "ocean.so.tavg-ol-hm-sea.mon.GLB", + "ocean.so.tavg-ol-hxy-sea.dec.GLB", + "ocean.so.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.sob.tavg-u-hxy-sea.mon.GLB", + "ocean.sos.tavg-u-hm-sea.mon.30S-90S", + "ocean.sos.tavg-u-hm-sea.mon.GLB", + "ocean.sw17O.tavg-ol-hxy-sea.mon.GLB", + "ocean.sw18O.tavg-ol-hxy-sea.mon.GLB", + "ocean.sw2H.tavg-ol-hxy-sea.mon.GLB", + "ocean.swh.tavg-u-hxy-sea.mon.GLB", + "ocean.swh.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhmax.tmax-u-hxy-sea.mon.GLB", + "ocean.swhmax.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhswell.tavg-u-hxy-sea.mon.GLB", + "ocean.swhswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.swhwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.t20d.tavg-u-hxy-sea.mon.GLB", + "ocean.tauuo.tavg-u-hxy-sea.3hr.GLB", + "ocean.tauuo.tavg-u-hxy-sea.dec.GLB", + "ocean.tauvo.tavg-u-hxy-sea.3hr.GLB", + "ocean.tauvo.tavg-u-hxy-sea.dec.GLB", + "ocean.thetao.tavg-d2000m-hxy-sea.mon.GLB", + "ocean.thetao.tavg-d300m-hxy-sea.mon.GLB", + "ocean.thetao.tavg-d700m-hxy-sea.mon.GLB", + "ocean.thetao.tavg-ol-hm-sea.mon.GLB", + "ocean.thetao.tavg-ol-hxy-sea.dec.GLB", + "ocean.thetao.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.thetao.tavg-op20bar-hxy-sea.day.GLB", + "ocean.thetaot.tavg-u-hxy-sea.mon.GLB", + "ocean.thkcello.tavg-ol-hxy-sea.dec.GLB", + "ocean.tob.tavg-u-hxy-sea.mon.GLB", + "ocean.tos.tavg-u-hm-sea.mon.GLB", + "ocean.tos.tavg-u-hxy-sea.mon.30S-90S", + "ocean.tos.tpt-u-hxy-sea.3hr.GLB", + "ocean.tossq.tavg-u-hxy-sea.day.GLB", + "ocean.umo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.uo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.uos.tavg-u-hxy-sea.day.GLB", + "ocean.vmo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.vo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.volcello.tavg-ol-hxy-sea.dec.GLB", + "ocean.volcello.tavg-ol-hxy-sea.mon.GLB", + "ocean.volcello.tavg-ol-hxy-sea.yr.GLB", + "ocean.volcello.ti-ol-hxy-sea.fx.GLB", + "ocean.volo.tavg-u-hm-sea.dec.GLB", + "ocean.volo.tavg-u-hm-sea.mon.GLB", + "ocean.vos.tavg-u-hxy-sea.day.GLB", + "ocean.vsf.tavg-u-hxy-sea.mon.GLB", + "ocean.wdir.tavg-u-hxy-sea.mon.GLB", + "ocean.wdir.tpt-u-hxy-sea.3hr.GLB", + "ocean.wdirswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wdirswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wdirwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wdirwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.wfcorr.tavg-u-hxy-sea.mon.GLB", + "ocean.wfo.tavg-u-hxy-sea.3hr.GLB", + "ocean.wfo.tavg-u-hxy-sea.mon.GLB", + "ocean.wmo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.wo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.wpdir.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdir.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpdirswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdirswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpdirwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdirwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpp.tavg-u-hxy-sea.mon.GLB", + "ocean.wpp.tpt-u-hxy-sea.3hr.GLB", + "ocean.wppswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wppswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wppwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wppwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.zfullo.tavg-ol-hxy-sea.yr.GLB", + "ocean.zos.tavg-u-hxy-sea.mon.30S-90S", + "ocean.zossq.tavg-u-hxy-sea.mon.GLB", + "ocean.zostoga.tavg-u-hm-sea.day.GLB", + "ocnBgchem.bacc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.calc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chl.tavg-d0m-hxy-sea.day.GLB", + "ocnBgchem.chl.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chl.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.chl.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chlcalc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chldiat.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chldiaz.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chlmisc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chlpico.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.detoc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dfe.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.dfe.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.dfe.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissic.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.dissic.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissoc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dmso.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.dmso.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.dpco2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.dpo2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.expc.tavg-d1000m-hxy-sea.mon.GLB", + "ocnBgchem.expc.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.expcalc.tavg-d1000m-hxy-sea.mon.GLB", + "ocnBgchem.expcalc.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.fgco2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fric.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.froc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.graz.tavg-ol-hxy-sea.mon.30S-90S", + "ocnBgchem.graz.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.intdic.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intdoc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intparag.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbfe.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbn.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbp.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbsi.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpcalcite.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpn2.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpoc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpp.tavg-u-hxy-sea.day.GLB", + "ocnBgchem.intpp.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpp.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppcalc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppdiat.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppdiaz.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppmisc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppnitrate.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpppico.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.nh4.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.nh4.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.no3.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.no3.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.o2.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.ph.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.ph.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phyc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phyc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phycalc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phycalc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phydiat.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phydiat.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phydiaz.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phymisc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phymisc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phypico.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phypico.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.po4.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.pp.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.si.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.spco2.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.spco2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.talk.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zmeso.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zmeso.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zmicro.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zmicro.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zmisc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zmisc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zooc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zooc.tavg-ol-hxy-sea.mon.GLB", + "seaIce.evspsbl.tavg-u-hxy-si.mon.GLB", + "seaIce.prra.tavg-u-hxy-si.mon.GLB", + "seaIce.prsn.tavg-u-hxy-si.mon.GLB", + "seaIce.rlds.tavg-u-hxy-si.day.GLB", + "seaIce.rlds.tavg-u-hxy-si.mon.GLB", + "seaIce.rlus.tavg-u-hxy-si.day.GLB", + "seaIce.rlus.tavg-u-hxy-si.mon.GLB", + "seaIce.rsds.tavg-u-hxy-si.day.GLB", + "seaIce.rsds.tavg-u-hxy-si.mon.GLB", + "seaIce.rsus.tavg-u-hxy-si.day.GLB", + "seaIce.rsus.tavg-u-hxy-si.mon.GLB", + "seaIce.sbl.tavg-u-hxy-si.mon.GLB", + "seaIce.siage.tavg-u-hxy-si.day.GLB", + "seaIce.siage.tavg-u-hxy-si.mon.30S-90S", + "seaIce.siarea.tavg-u-hm-u.mon.NH", + "seaIce.siarea.tavg-u-hm-u.mon.SH", + "seaIce.siareaacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.siconc.tavg-u-hxy-u.mon.30S-90S", + "seaIce.siconca.tavg-u-hxy-u.day.GLB", + "seaIce.siconca.tavg-u-hxy-u.mon.GLB", + "seaIce.sidconcdyn.tavg-u-hxy-sea.mon.GLB", + "seaIce.sidconcth.tavg-u-hxy-sea.mon.GLB", + "seaIce.sidmassdyn.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthsi.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthwat.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmeltbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmeltlat.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmelttop.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassth.tavg-u-hxy-si.mon.GLB", + "seaIce.sieqthick.tavg-u-hxy-si.mon.GLB", + "seaIce.siextent.tavg-u-hm-u.mon.NH", + "seaIce.siextent.tavg-u-hm-u.mon.SH", + "seaIce.siflcondbot.tavg-u-hxy-si.day.GLB", + "seaIce.siflcondbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflcondtop.tavg-u-hxy-si.day.GLB", + "seaIce.siflcondtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sifllattop.tavg-u-hxy-si.day.GLB", + "seaIce.sifllattop.tavg-u-hxy-si.mon.GLB", + "seaIce.siflsensbot.tavg-u-hxy-si.day.GLB", + "seaIce.siflsensbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflsenstop.tavg-u-hxy-si.day.GLB", + "seaIce.siflsenstop.tavg-u-hxy-si.mon.GLB", + "seaIce.siflswdbot.tavg-u-hxy-si.day.GLB", + "seaIce.siflswdbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sihc.tavg-u-hxy-sea.day.GLB", + "seaIce.sihc.tavg-u-hxy-sea.mon.GLB", + "seaIce.siitdconc.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdsnconc.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdsnthick.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdthick.tavg-u-hxy-si.mon.GLB", + "seaIce.simassacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.simpconc.tavg-u-hxy-si.mon.GLB", + "seaIce.sirdgconc.tavg-u-hxy-si.mon.GLB", + "seaIce.sisaltmass.tavg-u-hxy-si.mon.GLB", + "seaIce.sisndmassdyn.tavg-u-hxy-si.mon.GLB", + "seaIce.sisndmasssi.tavg-u-hxy-si.mon.GLB", + "seaIce.sisndmasswind.tavg-u-hxy-si.mon.GLB", + "seaIce.sisnhc.tavg-u-hxy-si.day.GLB", + "seaIce.sisnhc.tavg-u-hxy-si.mon.GLB", + "seaIce.sisnmass.tavg-u-hm-u.mon.NH", + "seaIce.sisnmass.tavg-u-hm-u.mon.SH", + "seaIce.sisnmassacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.sispeed.tavg-u-hxy-si.day.GLB", + "seaIce.sispeed.tavg-u-hxy-si.mon.GLB", + "seaIce.sistressave.tpt-u-hxy-si.mon.GLB", + "seaIce.sistressmax.tpt-u-hxy-si.mon.GLB", + "seaIce.sistrxdtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sistrxubot.tavg-u-hxy-si.mon.GLB", + "seaIce.sistrydtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sistryubot.tavg-u-hxy-si.mon.GLB", + "seaIce.sitempsnic.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-si.day.GLB", + "seaIce.sithick.tavg-u-hxy-si.mon.30S-90S", + "seaIce.sitimefrac.tavg-u-hxy-sea.day.GLB", + "seaIce.sitimefrac.tavg-u-hxy-sea.mon.30S-90S", + "seaIce.siu.tavg-u-hxy-si.day.GLB", + "seaIce.siu.tavg-u-hxy-si.mon.30S-90S", + "seaIce.siv.tavg-u-hxy-si.day.GLB", + "seaIce.siv.tavg-u-hxy-si.mon.30S-90S", + "seaIce.sivol.tavg-u-hm-u.mon.NH", + "seaIce.sivol.tavg-u-hm-u.mon.SH", + "seaIce.snc.tavg-u-hxy-si.mon.GLB", + "seaIce.snd.tavg-u-hxy-sn.day.GLB", + "seaIce.snd.tavg-u-hxy-sn.mon.30S-90S", + "seaIce.snm.tavg-u-hxy-si.mon.GLB", + "seaIce.snw.tavg-u-hxy-si.mon.GLB", + "seaIce.ts.tavg-u-hxy-si.day.GLB", + "seaIce.ts.tavg-u-hxy-si.mon.30S-90S" + ], + "Medium": [ + "atmos.hfdsnb.tavg-u-hxy-lnd.day.GLB", + "atmos.hfls.tavg-u-hxy-is.mon.ATA", + "atmos.hfss.tavg-u-hxy-is.mon.ATA", + "atmos.hfss.tavg-u-hxy-is.mon.GRL", + "atmos.hur.tavg-700hPa-hxy-air.day.GLB", + "atmos.hur.tpt-100hPa-hxy-u.6hr.GLB", + "atmos.hur.tpt-500hPa-hxy-air.6hr.GLB", + "atmos.hur.tpt-850hPa-hxy-air.6hr.GLB", + "atmos.hurs.tpt-h2m-hxy-u.3hr.GLB", + "atmos.noaahi2m.tavg-h2m-hxy-u.day.GLB", + "atmos.noaahi2m.tmax-h2m-hxy-u.day.GLB", + "atmos.pr.tavg-u-hxy-u.6hr.GLB", + "atmos.pr.tmax-u-hxy-u.6hr.GLB", + "atmos.prra.tavg-u-hxy-is.mon.ATA", + "atmos.prrsn.tavg-u-hxy-lnd.day.GLB", + "atmos.prsn.tavg-u-hxy-is.mon.ATA", + "atmos.prsnc.tavg-u-hxy-lnd.day.GLB", + "atmos.prsnsn.tavg-u-hxy-lnd.day.GLB", + "atmos.ps.tpt-u-hxy-u.3hr.GLB", + "atmos.psitem.tavg-p39-hy-air.day.GLB", + "atmos.psl.tavg-u-hxy-u.6hr.GLB", + "atmos.rlds.tavg-u-hxy-is.mon.ATA", + "atmos.rlds.tavg-u-hxy-is.mon.GRL", + "atmos.rlds.tavg-u-hxy-u.3hr.GLB", + "atmos.rls.tavg-u-hxy-u.day.GLB", + "atmos.rlus.tavg-u-hxy-is.mon.ATA", + "atmos.rlus.tavg-u-hxy-is.mon.GRL", + "atmos.rsds.tavg-u-hxy-is.mon.ATA", + "atmos.rsds.tavg-u-hxy-is.mon.GRL", + "atmos.rsds.tavg-u-hxy-u.3hr.GLB", + "atmos.rsdsdiff.tavg-u-hxy-u.day.GLB", + "atmos.rss.tavg-u-hxy-u.day.GLB", + "atmos.rsus.tavg-u-hxy-is.mon.ATA", + "atmos.rsus.tavg-u-hxy-is.mon.GRL", + "atmos.rv850.tavg-850hPa-hxy-air.6hr.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.3hr.GLB", + "atmos.snmsl.tavg-u-hxy-lnd.day.GLB", + "atmos.snrefr.tavg-u-hxy-lnd.day.GLB", + "atmos.snwc.tavg-u-hxy-lnd.day.GLB", + "atmos.tas.tavg-h2m-hm-is.mon.ATA", + "atmos.tas.tavg-h2m-hm-is.mon.GRL", + "atmos.tauunoegw.tavg-p19-hxy-air.mon.GLB", + "atmos.tauunowgw.tavg-p19-hxy-air.mon.GLB", + "atmos.tauuogw.tavg-p19-hxy-air.mon.GLB", + "atmos.tauupbl.tavg-u-hxy-u.day.GLB", + "atmos.tauvnogw.tavg-p19-hxy-air.mon.GLB", + "atmos.tauvogw.tavg-p19-hxy-air.mon.GLB", + "atmos.tauvpbl.tavg-u-hxy-u.day.GLB", + "atmos.tdps.tavg-h2m-hxy-u.day.GLB", + "atmos.tntc.tavg-p39-hy-air.mon.GLB", + "atmos.tntnogw.tavg-p39-hy-air.mon.GLB", + "atmos.tntogw.tavg-p39-hy-air.mon.GLB", + "atmos.tntrlcs.tavg-p39-hy-air.mon.GLB", + "atmos.tntrscs.tavg-p39-hy-air.mon.GLB", + "atmos.tntscp.tavg-p39-hy-air.mon.GLB", + "atmos.ts.tavg-u-hxy-is.mon.ATA", + "atmos.ts.tavg-u-hxy-is.mon.GRL", + "atmos.ts.tavg-u-hxy-sn.day.GLB", + "atmos.ua.tavg-h100m-hxy-u.3hr.GLB", + "atmos.ua.tpt-200hPa-hxy-u.6hr.GLB", + "atmos.uas.tavg-h10m-hxy-u.6hr.GLB", + "atmos.utendnogw.tavg-p19-hxy-air.day.GLB", + "atmos.utendnogw.tavg-p19-hxy-air.mon.GLB", + "atmos.utendogw.tavg-p19-hxy-air.day.GLB", + "atmos.utendogw.tavg-p19-hxy-air.mon.GLB", + "atmos.va.tavg-h100m-hxy-u.3hr.GLB", + "atmos.va.tpt-200hPa-hxy-u.6hr.GLB", + "atmos.vas.tavg-h10m-hxy-u.6hr.GLB", + "atmos.vtendnogw.tavg-p19-hxy-air.day.GLB", + "atmos.vtendnogw.tavg-p19-hxy-air.mon.GLB", + "atmos.vtendogw.tavg-p19-hxy-air.day.GLB", + "atmos.vtendogw.tavg-p19-hxy-air.mon.GLB", + "atmos.wbgt.tavg-h2m-hxy-u.day.GLB", + "atmos.wbgt.tmax-h2m-hxy-u.day.GLB", + "atmos.zg.tavg-1000hPa-hxy-air.6hr.GLB", + "atmos.zg.tpt-700hPa-hxy-u.6hr.GLB", + "atmos.zg.tpt-925hPa-hxy-u.6hr.GLB", + "atmosChem.flashrate.tavg-u-hxy-u.day.GLB", + "land.areacellg.ti-u-hxy-u.fx.ATA", + "land.areacellg.ti-u-hxy-u.fx.GRL", + "land.baresoilFrac.tavg-u-hxy-u.yr.GLB", + "land.cropFrac.tavg-u-hxy-u.yr.GLB", + "land.dgw.tavg-u-hxy-lnd.day.GLB", + "land.drivw.tavg-u-hxy-lnd.day.GLB", + "land.dsn.tavg-u-hxy-lnd.day.GLB", + "land.dsw.tavg-u-hxy-lnd.day.GLB", + "land.esn.tavg-u-hxy-sn.day.GLB", + "land.grassFrac.tavg-u-hxy-u.yr.GLB", + "land.irrDem.tavg-u-hxy-u.day.GLB", + "land.irrGw.tavg-u-hxy-u.day.GLB", + "land.irrLut.tavg-u-hxy-u.day.GLB", + "land.irrSurf.tavg-u-hxy-u.day.GLB", + "land.mrro.tavg-u-hxy-lnd.3hr.GLB", + "land.mrros.tavg-u-hxy-lnd.3hr.GLB", + "land.mrsol.tpt-d10cm-hxy-lnd.3hr.GLB", + "land.orog.tavg-u-hxy-is.mon.ATA", + "land.orog.tavg-u-hxy-is.mon.GRL", + "land.orog.tavg-u-hxy-is.yr.ATA", + "land.orog.tavg-u-hxy-is.yr.GRL", + "land.qgwr.tavg-u-hxy-lnd.day.GLB", + "land.residualFrac.tavg-u-hxy-u.yr.GLB", + "land.rzwc.tavg-u-hxy-lnd.day.GLB", + "land.sftgif.tavg-u-hxy-u.yr.ATA", + "land.sftgif.tavg-u-hxy-u.yr.GRL", + "land.shrubFrac.tavg-u-hxy-u.yr.GLB", + "land.sw.tavg-u-hxy-lnd.day.GLB", + "land.sweLut.tavg-u-hxy-multi.mon.GLB", + "land.treeFrac.tavg-u-hxy-u.yr.GLB", + "land.vegFrac.tavg-u-hxy-u.yr.GLB", + "landIce.acabf.tavg-u-hxy-is.mon.ATA", + "landIce.acabf.tavg-u-hxy-is.mon.GRL", + "landIce.acabf.tavg-u-hxy-is.yr.ATA", + "landIce.acabf.tavg-u-hxy-is.yr.GRL", + "landIce.agesno.tavg-u-hxy-lnd.mon.GLB", + "landIce.hfdsn.tavg-u-hxy-lnd.day.GLB", + "landIce.hfgeoubed.tavg-u-hxy-gis.yr.ATA", + "landIce.hfgeoubed.tavg-u-hxy-gis.yr.GRL", + "landIce.hfgeoubed.ti-u-hxy-gis.fx.ATA", + "landIce.iareafl.tavg-u-hm-fis.yr.ATA", + "landIce.iareafl.tavg-u-hm-fis.yr.GRL", + "landIce.iareagr.tavg-u-hm-gis.yr.ATA", + "landIce.iareagr.tavg-u-hm-gis.yr.GRL", + "landIce.icem.tavg-u-hxy-is.mon.ATA", + "landIce.icem.tavg-u-hxy-is.mon.GRL", + "landIce.libmassbf.tavg-u-hxy-fis.mon.ATA", + "landIce.libmassbf.tavg-u-hxy-fis.mon.GRL", + "landIce.libmassbf.tavg-u-hxy-fis.yr.ATA", + "landIce.libmassbf.tavg-u-hxy-fis.yr.GRL", + "landIce.libmassbf.tavg-u-hxy-gis.mon.ATA", + "landIce.libmassbf.tavg-u-hxy-gis.mon.GRL", + "landIce.libmassbf.tavg-u-hxy-gis.yr.ATA", + "landIce.libmassbf.tavg-u-hxy-gis.yr.GRL", + "landIce.licalvf.tavg-u-hxy-is.mon.ATA", + "landIce.licalvf.tavg-u-hxy-is.mon.GRL", + "landIce.licalvf.tavg-u-hxy-is.yr.ATA", + "landIce.licalvf.tavg-u-hxy-is.yr.GRL", + "landIce.lifmassbf.tavg-u-hxy-is.mon.ATA", + "landIce.lifmassbf.tavg-u-hxy-is.mon.GRL", + "landIce.lifmassbf.tavg-u-hxy-is.yr.ATA", + "landIce.lifmassbf.tavg-u-hxy-is.yr.GRL", + "landIce.lim.tavg-u-hm-is.yr.ATA", + "landIce.lim.tavg-u-hm-is.yr.GRL", + "landIce.limnsw.tavg-u-hm-is.yr.ATA", + "landIce.limnsw.tavg-u-hm-is.yr.GRL", + "landIce.litempbot.tavg-u-hxy-fis.mon.ATA", + "landIce.litempbot.tavg-u-hxy-fis.mon.GRL", + "landIce.litempbot.tavg-u-hxy-fis.yr.ATA", + "landIce.litempbot.tavg-u-hxy-fis.yr.GRL", + "landIce.litempbot.tavg-u-hxy-gis.mon.ATA", + "landIce.litempbot.tavg-u-hxy-gis.mon.GRL", + "landIce.litempbot.tavg-u-hxy-gis.yr.ATA", + "landIce.litempbot.tavg-u-hxy-gis.yr.GRL", + "landIce.litemptop.tavg-u-hxy-is.mon.ATA", + "landIce.litemptop.tavg-u-hxy-is.mon.GRL", + "landIce.litemptop.tavg-u-hxy-is.yr.ATA", + "landIce.litemptop.tavg-u-hxy-is.yr.GRL", + "landIce.lithk.tavg-u-hxy-is.yr.ATA", + "landIce.lithk.tavg-u-hxy-is.yr.GRL", + "landIce.lithk.ti-u-hxy-is.fx.ATA", + "landIce.lwsnl.tavg-u-hxy-lnd.day.GLB", + "landIce.lwsnl.tavg-u-hxy-lnd.mon.GLB", + "landIce.modelcellareai.tavg-u-hxy-u.yr.ATA", + "landIce.modelcellareai.tavg-u-hxy-u.yr.GRL", + "landIce.mrroLi.tavg-u-hxy-is.mon.ATA", + "landIce.mrroLi.tavg-u-hxy-is.mon.GRL", + "landIce.pflw.tavg-u-hxy-lnd.day.GLB", + "landIce.sbl.tavg-u-hxy-is.mon.ATA", + "landIce.sbl.tavg-u-hxy-is.mon.GRL", + "landIce.sbl.tavg-u-hxy-u.day.GLB", + "landIce.sftflf.tavg-u-hxy-u.yr.ATA", + "landIce.sftflf.tavg-u-hxy-u.yr.GRL", + "landIce.sftgrf.tavg-u-hxy-u.yr.ATA", + "landIce.sftgrf.tavg-u-hxy-u.yr.GRL", + "landIce.snc.tavg-u-hxy-is.mon.ATA", + "landIce.snc.tavg-u-hxy-is.mon.GRL", + "landIce.snc.tavg-u-hxy-is.yr.ATA", + "landIce.snc.tavg-u-hxy-is.yr.GRL", + "landIce.snd.tavg-u-hxy-lnd.day.GLB", + "landIce.snicem.tavg-u-hxy-is.mon.ATA", + "landIce.snm.tavg-u-hxy-is.mon.ATA", + "landIce.snm.tavg-u-hxy-is.mon.GRL", + "landIce.snm.tavg-u-hxy-lnd.day.GLB", + "landIce.snrefr.tavg-u-hxy-is.mon.ATA", + "landIce.snrefr.tavg-u-hxy-is.mon.GRL", + "landIce.strbasemag.tavg-u-hxy-is.yr.ATA", + "landIce.strbasemag.tavg-u-hxy-is.yr.GRL", + "landIce.tendacabf.tavg-u-hm-is.yr.ATA", + "landIce.tendacabf.tavg-u-hm-is.yr.GRL", + "landIce.tendlibmassbf.tavg-u-hm-is.yr.ATA", + "landIce.tendlibmassbf.tavg-u-hm-is.yr.GRL", + "landIce.tendlicalvf.tavg-u-hm-is.yr.ATA", + "landIce.tendlicalvf.tavg-u-hm-is.yr.GRL", + "landIce.topg.tavg-u-hxy-gis.yr.ATA", + "landIce.topg.tavg-u-hxy-gis.yr.GRL", + "landIce.topg.ti-u-hxy-gis.fx.ATA", + "landIce.tpf.tavg-u-hxy-lnd.day.GLB", + "landIce.tsn.tavg-u-hxy-is.mon.ATA", + "landIce.tsn.tavg-u-hxy-is.mon.GRL", + "landIce.tsn.tavg-u-hxy-lnd.day.GLB", + "landIce.xvelbase.tavg-u-hxy-is.yr.ATA", + "landIce.xvelbase.tavg-u-hxy-is.yr.GRL", + "landIce.xvelmean.tavg-u-hxy-is.yr.ATA", + "landIce.xvelmean.tavg-u-hxy-is.yr.GRL", + "landIce.xvelsurf.tavg-u-hxy-is.yr.ATA", + "landIce.xvelsurf.tavg-u-hxy-is.yr.GRL", + "landIce.yvelbase.tavg-u-hxy-is.yr.ATA", + "landIce.yvelbase.tavg-u-hxy-is.yr.GRL", + "landIce.yvelmean.tavg-u-hxy-is.yr.ATA", + "landIce.yvelmean.tavg-u-hxy-is.yr.GRL", + "landIce.yvelsurf.tavg-u-hxy-is.yr.ATA", + "landIce.yvelsurf.tavg-u-hxy-is.yr.GRL", + "landIce.zvelbase.tavg-u-hxy-is.yr.ATA", + "landIce.zvelbase.tavg-u-hxy-is.yr.GRL", + "landIce.zvelsurf.tavg-u-hxy-is.yr.ATA", + "landIce.zvelsurf.tavg-u-hxy-is.yr.GRL", + "ocean.evspsbl.tavg-u-hxy-ifs.mon.GLB", + "ocean.ficeberg.tavg-ol-hxy-sea.mon.GLB", + "ocean.friver.tavg-u-hxy-sea.mon.GLB", + "ocean.hfacrossline.tavg-u-ht-sea.mon.GLB", + "ocean.hfevapds.tavg-u-hxy-ifs.mon.GLB", + "ocean.hfibthermds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfibthermds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfrainds.tavg-u-hxy-ifs.mon.GLB", + "ocean.hfrunoffds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfrunoffds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfsnthermds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfsnthermds.tavg-u-hxy-sea.mon.GLB", + "ocean.mfo.tavg-u-ht-sea.mon.GLB", + "ocean.msftmmpa.tavg-ol-hyb-sea.mon.GLB", + "ocean.sfacrossline.tavg-u-ht-sea.mon.GLB", + "ocean.sfdsi.tavg-u-hxy-sea.mon.GLB", + "ocean.sfriver.tavg-u-hxy-sea.mon.GLB", + "ocean.siflfwbot.tavg-u-hxy-sea.mon.GLB", + "ocean.so.tavg-ol-hxy-sea.day.GLB", + "ocean.t17d.tavg-u-hxy-sea.mon.GLB", + "ocean.t20d.tavg-u-hxy-sea.day.GLB", + "ocean.tnkebto.tavg-u-hxy-sea.yr.GLB", + "ocean.vsfcorr.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfevap.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfpr.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfriver.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfsit.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.arag.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.arag.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.calc.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.calc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chl.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.co3.tavg-d0m-hxy-sea.day.GLB", + "ocnBgchem.co3.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.co3satarag.tavg-d0m-hxy-sea.day.GLB", + "ocnBgchem.co3satarag.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.detoc.tavg-ol-hxy-sea.day.GLB", + "ocnBgchem.dissoc.tavg-ol-hxy-sea.day.GLB", + "ocnBgchem.epsi.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.exparagob.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.expc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.expcalc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.expcalcob.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.expcob.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.expfeob.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.expnob.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.exppob.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.expsiob.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.frfe.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.frn.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppcalc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppdiat.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppdiaz.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppmisc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppnano.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intpppico.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limfecalc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limfediat.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limfediaz.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limfemisc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limfepico.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limirrcalc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limirrdiat.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limirrdiaz.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limirrmisc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limirrpico.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limncalc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limndiat.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limndiaz.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limnmisc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limnpico.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.no3.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.o2.tavg-d0m-hxy-sea.day.GLB", + "ocnBgchem.o2.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.o2.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.o2sat.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.ph.tavg-d0m-hxy-sea.day.GLB", + "ocnBgchem.ph.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.phyc.tavg-d0m-hxy-sea.day.GLB", + "ocnBgchem.phyc.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.phyc.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.pp.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.pp.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.si.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.sialgc.tavg-u-hxy-si.mon.GLB", + "ocnBgchem.sichl.tavg-u-hxy-si.mon.GLB", + "ocnBgchem.sigpp.tavg-u-hxy-si.mon.GLB", + "ocnBgchem.sino3.tavg-u-hxy-si.mon.GLB", + "ocnBgchem.sisi.tavg-u-hxy-si.mon.GLB", + "seaIce.sfdsi.tavg-u-hxy-si.mon.GLB", + "seaIce.siage.tavg-u-hxy-si.mon.GLB", + "seaIce.siarea.tavg-u-hm-u.day.NH", + "seaIce.siarea.tavg-u-hm-u.day.SH", + "seaIce.sicompstren.tavg-u-hxy-si.mon.GLB", + "seaIce.sidivvel.tpt-u-hxy-si.mon.GLB", + "seaIce.sidmasstranx.tavg-u-hxy-u.mon.GLB", + "seaIce.sidmasstrany.tavg-u-hxy-u.mon.GLB", + "seaIce.sidragbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidragtop.tavg-u-hxy-si.mon.GLB", + "seaIce.siextent.tavg-u-hm-u.day.NH", + "seaIce.siextent.tavg-u-hm-u.day.SH", + "seaIce.sifb.tavg-u-hxy-si.day.GLB", + "seaIce.sifb.tavg-u-hxy-si.mon.GLB", + "seaIce.siflfwbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflfwdrain.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcecoriolx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcecorioly.tavg-u-hxy-si.mon.GLB", + "seaIce.siforceintstrx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforceintstry.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcetiltx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcetilty.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdconc.tavg-u-hxy-si.day.GLB", + "seaIce.siitdsnconc.tavg-u-hxy-si.day.GLB", + "seaIce.siitdsnthick.tavg-u-hxy-si.day.GLB", + "seaIce.siitdthick.tavg-u-hxy-si.day.GLB", + "seaIce.simpconc.tavg-u-hxy-si.day.GLB", + "seaIce.simpeffconc.tavg-u-hxy-si.day.GLB", + "seaIce.simpeffconc.tavg-u-hxy-si.mon.GLB", + "seaIce.simprefrozen.tavg-u-hxy-simp.day.GLB", + "seaIce.simprefrozen.tavg-u-hxy-simp.mon.GLB", + "seaIce.simpthick.tavg-u-hxy-si.day.GLB", + "seaIce.simpthick.tavg-u-hxy-simp.mon.GLB", + "seaIce.sirdgconc.tavg-u-hxy-si.day.GLB", + "seaIce.sisali.tavg-u-hxy-si.day.GLB", + "seaIce.sisali.tavg-u-hxy-si.mon.GLB", + "seaIce.sisaltmass.tavg-u-hxy-si.day.GLB", + "seaIce.sishearvel.tpt-u-hxy-si.mon.GLB", + "seaIce.sisnmass.tavg-u-hm-u.day.NH", + "seaIce.sisnmass.tavg-u-hm-u.day.SH", + "seaIce.sitempbot.tavg-u-hxy-si.day.GLB", + "seaIce.sitempbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sitempsnic.tavg-u-hxy-si.day.GLB", + "seaIce.sithick.tavg-u-hxy-sir.day.GLB", + "seaIce.sithick.tavg-u-hxy-sir.mon.GLB", + "seaIce.sivol.tavg-u-hm-u.day.NH", + "seaIce.sivol.tavg-u-hm-u.day.SH" + ], + "Low": [ + "aerosol.ccldncl.tavg-u-hxy-ccl.day.GLB", + "aerosol.sfpm1.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.sfpm10.tavg-h2m-hxy-u.1hr.GLB", + "atmos.cldnci.tavg-u-hxy-cl.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.1hr.GLB", + "atmos.hurs.tmin-h2m-hxy-crp.day.GLB", + "atmos.loaddust.tavg-u-hxy-u.day.GLB", + "atmos.loadnh4.tavg-u-hxy-u.day.GLB", + "atmos.loadno3.tavg-u-hxy-u.day.GLB", + "atmos.loadso4.tavg-u-hxy-u.day.GLB", + "atmos.loadsoa.tavg-u-hxy-u.day.GLB", + "atmos.loadss.tavg-u-hxy-u.day.GLB", + "atmos.pr.tavg-u-hxy-crp.day.GLB", + "atmos.reffcclwtop.tavg-u-hxy-ccl.day.GLB", + "atmos.reffsclwtop.tavg-u-hxy-scl.day.GLB", + "atmos.rsds.tavg-u-hxy-u.1hr.GLB", + "atmos.rsdscsdiff.tavg-u-hxy-u.day.GLB", + "atmos.scldncl.tavg-u-hxy-scl.day.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.1hr.GLB", + "atmos.tas.tmax-h2m-hxy-crp.day.GLB", + "atmos.tas.tmin-h2m-hxy-crp.day.GLB", + "atmos.zfull.ti-al-hxy-u.fx.GLB", + "atmosChem.drynh3.tavg-u-hxy-u.day.GLB", + "atmosChem.drynh4.tavg-u-hxy-u.day.GLB", + "atmosChem.drynoy.tavg-u-hxy-u.day.GLB", + "atmosChem.wetnh3.tavg-u-hxy-u.day.GLB", + "atmosChem.wetnh4.tavg-u-hxy-u.day.GLB", + "atmosChem.wetnoy.tavg-u-hxy-u.day.GLB", + "land.c3PftFrac.tavg-u-hxy-u.mon.GLB", + "land.c4PftFrac.tavg-u-hxy-u.mon.GLB", + "land.cropFracC3.tavg-u-hxy-u.mon.GLB", + "land.cropFracC4.tavg-u-hxy-u.mon.GLB", + "land.fHarvestToAtmos.tavg-u-hxy-lnd.mon.GLB", + "land.irrLut.tavg-u-hxy-multi.mon.GLB", + "land.lai.tavg-u-hxy-lnd.day.GLB", + "land.pastureFrac.tavg-u-hxy-u.mon.GLB", + "land.pastureFracC3.tavg-u-hxy-u.mon.GLB", + "land.pastureFracC4.tavg-u-hxy-u.mon.GLB", + "land.prveg.tavg-u-hxy-lnd.mon.GLB", + "land.residualFrac.tavg-u-hxy-u.mon.GLB", + "land.tas.tavg-u-hxy-u.1hr.GLB", + "ocean.difmxybo.tavg-ol-hxy-sea.yr.GLB", + "ocean.difmxylo.tavg-ol-hxy-sea.yr.GLB", + "ocean.diftrblo.tavg-ol-hxy-sea.yr.GLB", + "ocean.diftrelo.tavg-ol-hxy-sea.yr.GLB", + "ocean.difvho.tavg-ol-hxy-sea.yr.GLB", + "ocean.difvso.tavg-ol-hxy-sea.yr.GLB", + "ocean.dispkexyfo.tavg-u-hxy-sea.yr.GLB", + "ocean.dxto.ti-u-hxy-u.fx.GLB", + "ocean.dxuo.ti-u-hxy-u.fx.GLB", + "ocean.dxvo.ti-u-hxy-u.fx.GLB", + "ocean.dyto.ti-u-hxy-u.fx.GLB", + "ocean.dyuo.ti-u-hxy-u.fx.GLB", + "ocean.dyvo.ti-u-hxy-u.fx.GLB", + "ocean.mlotstsq.tavg-u-hxy-sea.mon.GLB", + "ocean.msftmmpa.tavg-rho-hyb-sea.mon.GLB", + "ocean.msftmsmpa.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftypa.tavg-ol-ht-sea.mon.GLB", + "ocean.msftypa.tavg-rho-ht-sea.mon.GLB", + "ocean.ocontempdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontempmint.tavg-u-hxy-sea.yr.GLB", + "ocean.ocontemppadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemppmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemppsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemprmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemptend.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottempdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottempmint.tavg-u-hxy-sea.yr.GLB", + "ocean.opottemppadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemppmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemppsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemprmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemptend.tavg-ol-hxy-sea.dec.GLB", + "ocean.osaltdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpsmadvect.tavg-ol-hxy-sea.mon.GLB", + "ocean.osaltpsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltrmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osalttend.tavg-ol-hxy-sea.yr.GLB", + "ocean.rsdo.tavg-ol-hxy-sea.day.GLB", + "ocean.rsdoabsorb.tavg-ol-hxy-sea.yr.GLB", + "ocean.somint.tavg-u-hxy-sea.yr.GLB", + "ocean.sossq.tavg-u-hxy-sea.mon.GLB", + "ocean.thkcelluo.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcellvo.tavg-ol-hxy-sea.mon.GLB", + "ocean.tnpeo.tavg-u-hxy-sea.yr.GLB", + "ocean.tossq.tavg-u-hxy-sea.mon.GLB", + "ocean.wo.tavg-ol-hxy-sea.day.GLB", + "ocnBgchem.expcob.tavg-u-hxy-sea.day.GLB", + "ocnBgchem.intpoc.tavg-u-hxy-sea.day.GLB", + "ocnBgchem.o2min.tavg-u-hxy-sea.day.GLB", + "ocnBgchem.phycalc.tavg-ol-hxy-sea.day.GLB", + "ocnBgchem.phydiat.tavg-d0m-hxy-sea.day.GLB", + "ocnBgchem.phydiaz.tavg-d0m-hxy-sea.day.GLB", + "ocnBgchem.phymisc.tavg-d0m-hxy-sea.day.GLB", + "ocnBgchem.phynano.tavg-u-hxy-sea.day.GLB", + "ocnBgchem.phypico.tavg-ol-hxy-sea.day.GLB", + "ocnBgchem.zmeso.tavg-ol-hxy-sea.day.GLB", + "ocnBgchem.zmicro.tavg-ol-hxy-sea.day.GLB", + "ocnBgchem.zooc.tavg-ol-hxy-sea.day.GLB" + ] + }, + "esm-s7h-noFireChange": { + "Core": [ + "atmos.areacella.ti-u-hxy-u.fx.GLB", + "atmos.cl.tavg-al-hxy-u.mon.GLB", + "atmos.cli.tavg-al-hxy-u.mon.GLB", + "atmos.clivi.tavg-u-hxy-u.mon.GLB", + "atmos.clt.tavg-u-hxy-u.day.GLB", + "atmos.clt.tavg-u-hxy-u.mon.GLB", + "atmos.clw.tavg-al-hxy-u.mon.GLB", + "atmos.clwvi.tavg-u-hxy-u.mon.GLB", + "atmos.evspsbl.tavg-u-hxy-u.mon.GLB", + "atmos.hfls.tavg-u-hxy-u.mon.GLB", + "atmos.hfss.tavg-u-hxy-u.mon.GLB", + "atmos.hur.tavg-p19-hxy-air.mon.GLB", + "atmos.hur.tavg-p19-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.6hr.GLB", + "atmos.hurs.tavg-h2m-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.mon.GLB", + "atmos.hus.tavg-p19-hxy-u.day.GLB", + "atmos.hus.tavg-p19-hxy-u.mon.GLB", + "atmos.huss.tavg-h2m-hxy-u.day.GLB", + "atmos.huss.tavg-h2m-hxy-u.mon.GLB", + "atmos.huss.tpt-h2m-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.1hr.GLB", + "atmos.pr.tavg-u-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.day.GLB", + "atmos.pr.tavg-u-hxy-u.mon.GLB", + "atmos.prc.tavg-u-hxy-u.mon.GLB", + "atmos.prsn.tavg-u-hxy-u.mon.GLB", + "atmos.prw.tavg-u-hxy-u.mon.GLB", + "atmos.ps.tavg-u-hxy-u.day.GLB", + "atmos.ps.tavg-u-hxy-u.mon.GLB", + "atmos.psl.tavg-u-hxy-u.day.GLB", + "atmos.psl.tavg-u-hxy-u.mon.GLB", + "atmos.rlds.tavg-u-hxy-u.mon.GLB", + "atmos.rldscs.tavg-u-hxy-u.mon.GLB", + "atmos.rlus.tavg-u-hxy-u.mon.GLB", + "atmos.rluscs.tavg-u-hxy-u.mon.GLB", + "atmos.rlut.tavg-u-hxy-u.mon.GLB", + "atmos.rlutcs.tavg-u-hxy-u.mon.GLB", + "atmos.rsds.tavg-u-hxy-u.day.GLB", + "atmos.rsds.tavg-u-hxy-u.mon.GLB", + "atmos.rsdscs.tavg-u-hxy-u.mon.GLB", + "atmos.rsdt.tavg-u-hxy-u.mon.GLB", + "atmos.rsus.tavg-u-hxy-u.mon.GLB", + "atmos.rsuscs.tavg-u-hxy-u.mon.GLB", + "atmos.rsut.tavg-u-hxy-u.mon.GLB", + "atmos.rsutcs.tavg-u-hxy-u.mon.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.day.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.mon.GLB", + "atmos.sftlf.ti-u-hxy-u.fx.GLB", + "atmos.ta.tavg-p19-hxy-air.day.GLB", + "atmos.ta.tavg-p19-hxy-air.mon.GLB", + "atmos.ta.tpt-p3-hxy-air.6hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.day.GLB", + "atmos.tas.tavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tmax-h2m-hxy-u.day.GLB", + "atmos.tas.tmaxavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tmin-h2m-hxy-u.day.GLB", + "atmos.tas.tminavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tpt-h2m-hxy-u.3hr.GLB", + "atmos.tauu.tavg-u-hxy-u.mon.GLB", + "atmos.tauv.tavg-u-hxy-u.mon.GLB", + "atmos.ts.tavg-u-hxy-u.mon.GLB", + "atmos.ua.tavg-p19-hxy-air.day.GLB", + "atmos.ua.tavg-p19-hxy-air.mon.GLB", + "atmos.ua.tpt-p3-hxy-air.6hr.GLB", + "atmos.uas.tavg-h10m-hxy-u.day.GLB", + "atmos.uas.tavg-h10m-hxy-u.mon.GLB", + "atmos.uas.tpt-h10m-hxy-u.3hr.GLB", + "atmos.va.tavg-p19-hxy-air.day.GLB", + "atmos.va.tavg-p19-hxy-air.mon.GLB", + "atmos.va.tpt-p3-hxy-air.6hr.GLB", + "atmos.vas.tavg-h10m-hxy-u.day.GLB", + "atmos.vas.tavg-h10m-hxy-u.mon.GLB", + "atmos.vas.tpt-h10m-hxy-u.3hr.GLB", + "atmos.wap.tavg-p19-hxy-air.mon.GLB", + "atmos.wap.tavg-p19-hxy-u.day.GLB", + "atmos.zg.tavg-p19-hxy-air.day.GLB", + "atmos.zg.tavg-p19-hxy-air.mon.GLB", + "land.evspsblsoi.tavg-u-hxy-lnd.mon.GLB", + "land.evspsblveg.tavg-u-hxy-lnd.mon.GLB", + "land.lai.tavg-u-hxy-lnd.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.mon.GLB", + "land.mrros.tavg-u-hxy-lnd.mon.GLB", + "land.mrso.tavg-u-hxy-lnd.mon.GLB", + "land.mrsofc.ti-u-hxy-lnd.fx.GLB", + "land.mrsol.tavg-d10cm-hxy-lnd.mon.GLB", + "land.orog.ti-u-hxy-u.fx.GLB", + "land.rootd.ti-u-hxy-lnd.fx.GLB", + "land.sftgif.ti-u-hxy-u.fx.GLB", + "land.slthick.ti-sl-hxy-lnd.fx.GLB", + "landIce.mrfso.tavg-u-hxy-lnd.mon.GLB", + "landIce.snc.tavg-u-hxy-lnd.mon.GLB", + "landIce.snw.tavg-u-hxy-lnd.mon.GLB", + "ocean.areacello.ti-u-hxy-u.fx.GLB", + "ocean.basin.ti-u-hxy-u.fx.GLB", + "ocean.bigthetao.tavg-ol-hxy-sea.mon.GLB", + "ocean.deptho.ti-u-hxy-sea.fx.GLB", + "ocean.hfds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfgeou.ti-u-hxy-sea.fx.GLB", + "ocean.masscello.tavg-ol-hxy-sea.mon.GLB", + "ocean.masscello.ti-ol-hxy-sea.fx.GLB", + "ocean.mlotst.tavg-u-hxy-sea.mon.GLB", + "ocean.sftof.ti-u-hxy-u.fx.GLB", + "ocean.so.tavg-ol-hxy-sea.mon.GLB", + "ocean.sos.tavg-u-hxy-sea.day.GLB", + "ocean.sos.tavg-u-hxy-sea.mon.GLB", + "ocean.tauuo.tavg-u-hxy-sea.mon.GLB", + "ocean.tauvo.tavg-u-hxy-sea.mon.GLB", + "ocean.thetao.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcello.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcello.ti-ol-hxy-sea.fx.GLB", + "ocean.tos.tavg-u-hxy-sea.day.GLB", + "ocean.tos.tavg-u-hxy-sea.mon.GLB", + "ocean.umo.tavg-ol-hxy-sea.mon.GLB", + "ocean.uo.tavg-ol-hxy-sea.mon.GLB", + "ocean.vmo.tavg-ol-hxy-sea.mon.GLB", + "ocean.vo.tavg-ol-hxy-sea.mon.GLB", + "ocean.wmo.tavg-ol-hxy-sea.mon.GLB", + "ocean.wo.tavg-ol-hxy-sea.mon.GLB", + "ocean.zos.tavg-u-hxy-sea.day.GLB", + "ocean.zos.tavg-u-hxy-sea.mon.GLB", + "ocean.zostoga.tavg-u-hm-sea.mon.GLB", + "seaIce.siconc.tavg-u-hxy-u.day.GLB", + "seaIce.siconc.tavg-u-hxy-u.mon.GLB", + "seaIce.simass.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-si.mon.GLB", + "seaIce.sitimefrac.tavg-u-hxy-sea.mon.GLB", + "seaIce.siu.tavg-u-hxy-si.mon.GLB", + "seaIce.siv.tavg-u-hxy-si.mon.GLB", + "seaIce.snd.tavg-u-hxy-sn.mon.GLB", + "seaIce.ts.tavg-u-hxy-si.mon.GLB" + ], + "High": [ + "aerosol.abs550aer.tavg-u-hxy-u.mon.GLB", + "aerosol.ccn.tavg-u-hxy-ccl.mon.GLB", + "aerosol.cdnc.tavg-al-hxy-u.mon.GLB", + "aerosol.conccn.tavg-al-hxy-u.mon.GLB", + "aerosol.emibbbc.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbch4.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbco.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbdms.tavg-u-hxy-u.mon.GLB", + "aerosol.emibboa.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbso2.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbvoc.tavg-u-hxy-u.mon.GLB", + "aerosol.lwp.tavg-u-hxy-u.mon.GLB", + "aerosol.mmrpm2p5.tavg-al-hxy-u.mon.GLB", + "aerosol.od550bb.tavg-u-hxy-u.mon.GLB", + "aerosol.od550bc.tavg-u-hxy-u.mon.GLB", + "aerosol.od550oa.tavg-u-hxy-u.mon.GLB", + "aerosol.od550soa.tavg-u-hxy-u.mon.GLB", + "atmos.cldnvi.tavg-u-hxy-u.day.GLB", + "atmos.cltc.tavg-u-hxy-u.mon.GLB", + "atmos.co2.tclm-p19-hxy-air.mon.GLB", + "atmos.fco2nat.tavg-u-hxy-u.mon.GLB", + "atmos.loadbc.tavg-u-hxy-u.day.GLB", + "atmos.loadoa.tavg-u-hxy-u.day.GLB", + "atmos.loadpoa.tavg-u-hxy-u.day.GLB", + "atmos.prra.tavg-u-hxy-u.mon.GLB", + "atmos.reffsclwtop.tavg-u-hxy-scl.mon.GLB", + "atmos.rls.tavg-u-hxy-u.mon.GLB", + "atmos.rss.tavg-u-hxy-u.mon.GLB", + "atmos.rtmt.tavg-u-hxy-u.mon.GLB", + "atmos.tntrs.tavg-al-hxy-u.mon.GLB", + "land.baresoilFrac.tavg-u-hxy-u.mon.GLB", + "land.burntFractionAll.tavg-u-hxy-u.mon.GLB", + "land.cLand.tavg-u-hxy-lnd.mon.GLB", + "land.cLeaf.tavg-u-hxy-lnd.mon.GLB", + "land.cLitter.tavg-u-hxy-lnd.mon.GLB", + "land.cProduct.tavg-u-hxy-lnd.mon.GLB", + "land.cRoot.tavg-u-hxy-lnd.mon.GLB", + "land.cropFrac.tavg-u-hxy-u.mon.GLB", + "land.cSoil.tavg-u-hxy-lnd.mon.GLB", + "land.cStem.tavg-u-hxy-lnd.mon.GLB", + "land.cVeg.tavg-u-hxy-lnd.mon.GLB", + "land.fBNF.tavg-u-hxy-lnd.mon.GLB", + "land.fFire.tavg-u-hxy-lnd.mon.GLB", + "land.fLuc.tavg-u-hxy-lnd.mon.GLB", + "land.fNgas.tavg-u-hxy-lnd.mon.GLB", + "land.fNgasFire.tavg-u-hxy-lnd.mon.GLB", + "land.fNLandToOcean.tavg-u-hxy-lnd.mon.GLB", + "land.fNleach.tavg-u-hxy-lnd.mon.GLB", + "land.fNLitterSoil.tavg-u-hxy-lnd.mon.GLB", + "land.fNloss.tavg-u-hxy-lnd.mon.GLB", + "land.fNup.tavg-u-hxy-lnd.mon.GLB", + "land.fNVegSoil.tavg-u-hxy-lnd.mon.GLB", + "land.gpp.tavg-u-hxy-lnd.mon.GLB", + "land.grassFrac.tavg-u-hxy-u.mon.GLB", + "land.nbp.tavg-u-hxy-lnd.mon.GLB", + "land.nep.tavg-u-hxy-lnd.mon.GLB", + "land.nLand.tavg-u-hxy-lnd.mon.GLB", + "land.nLitter.tavg-u-hxy-lnd.mon.GLB", + "land.nMineral.tavg-u-hxy-lnd.mon.GLB", + "land.npp.tavg-u-hxy-lnd.mon.GLB", + "land.nProduct.tavg-u-hxy-lnd.mon.GLB", + "land.nSoil.tavg-u-hxy-lnd.mon.GLB", + "land.nVeg.tavg-u-hxy-lnd.mon.GLB", + "land.ra.tavg-u-hxy-lnd.mon.GLB", + "land.rh.tavg-u-hxy-lnd.mon.GLB", + "land.shrubFrac.tavg-u-hxy-u.mon.GLB", + "land.tran.tavg-u-hxy-lnd.mon.GLB", + "land.treeFrac.tavg-u-hxy-u.mon.GLB", + "land.tsl.tavg-sl-hxy-lnd.mon.GLB", + "land.vegHeight.tavg-u-hxy-tree.mon.GLB", + "landIce.pflw.tavg-u-hxy-lnd.mon.GLB", + "landIce.snd.tavg-u-hxy-lnd.mon.GLB", + "landIce.snm.tavg-u-hxy-lnd.mon.GLB", + "landIce.sootsn.tavg-u-hxy-lnd.mon.GLB", + "landIce.tpf.tavg-u-hxy-lnd.mon.GLB", + "ocnBgchem.chl.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dfe.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.dissic.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.fgco2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.no3.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.po4.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.spco2.tavg-u-hxy-sea.mon.GLB" + ], + "Medium": [], + "Low": [] + }, + "esm-scen7-h-Aer": { + "Core": [ + "atmos.areacella.ti-u-hxy-u.fx.GLB", + "atmos.cl.tavg-al-hxy-u.mon.GLB", + "atmos.cli.tavg-al-hxy-u.mon.GLB", + "atmos.clivi.tavg-u-hxy-u.mon.GLB", + "atmos.clt.tavg-u-hxy-u.day.GLB", + "atmos.clt.tavg-u-hxy-u.mon.GLB", + "atmos.clw.tavg-al-hxy-u.mon.GLB", + "atmos.clwvi.tavg-u-hxy-u.mon.GLB", + "atmos.evspsbl.tavg-u-hxy-u.mon.GLB", + "atmos.hfls.tavg-u-hxy-u.mon.GLB", + "atmos.hfss.tavg-u-hxy-u.mon.GLB", + "atmos.hur.tavg-p19-hxy-air.mon.GLB", + "atmos.hur.tavg-p19-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.6hr.GLB", + "atmos.hurs.tavg-h2m-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.mon.GLB", + "atmos.hus.tavg-p19-hxy-u.day.GLB", + "atmos.hus.tavg-p19-hxy-u.mon.GLB", + "atmos.huss.tavg-h2m-hxy-u.day.GLB", + "atmos.huss.tavg-h2m-hxy-u.mon.GLB", + "atmos.huss.tpt-h2m-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.1hr.GLB", + "atmos.pr.tavg-u-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.day.GLB", + "atmos.pr.tavg-u-hxy-u.mon.GLB", + "atmos.prc.tavg-u-hxy-u.mon.GLB", + "atmos.prsn.tavg-u-hxy-u.mon.GLB", + "atmos.prw.tavg-u-hxy-u.mon.GLB", + "atmos.ps.tavg-u-hxy-u.day.GLB", + "atmos.ps.tavg-u-hxy-u.mon.GLB", + "atmos.psl.tavg-u-hxy-u.day.GLB", + "atmos.psl.tavg-u-hxy-u.mon.GLB", + "atmos.rlds.tavg-u-hxy-u.mon.GLB", + "atmos.rldscs.tavg-u-hxy-u.mon.GLB", + "atmos.rlus.tavg-u-hxy-u.mon.GLB", + "atmos.rluscs.tavg-u-hxy-u.mon.GLB", + "atmos.rlut.tavg-u-hxy-u.mon.GLB", + "atmos.rlutcs.tavg-u-hxy-u.mon.GLB", + "atmos.rsds.tavg-u-hxy-u.day.GLB", + "atmos.rsds.tavg-u-hxy-u.mon.GLB", + "atmos.rsdscs.tavg-u-hxy-u.mon.GLB", + "atmos.rsdt.tavg-u-hxy-u.mon.GLB", + "atmos.rsus.tavg-u-hxy-u.mon.GLB", + "atmos.rsuscs.tavg-u-hxy-u.mon.GLB", + "atmos.rsut.tavg-u-hxy-u.mon.GLB", + "atmos.rsutcs.tavg-u-hxy-u.mon.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.day.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.mon.GLB", + "atmos.sftlf.ti-u-hxy-u.fx.GLB", + "atmos.ta.tavg-p19-hxy-air.day.GLB", + "atmos.ta.tavg-p19-hxy-air.mon.GLB", + "atmos.ta.tpt-p3-hxy-air.6hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.day.GLB", + "atmos.tas.tavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tmax-h2m-hxy-u.day.GLB", + "atmos.tas.tmaxavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tmin-h2m-hxy-u.day.GLB", + "atmos.tas.tminavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tpt-h2m-hxy-u.3hr.GLB", + "atmos.tauu.tavg-u-hxy-u.mon.GLB", + "atmos.tauv.tavg-u-hxy-u.mon.GLB", + "atmos.ts.tavg-u-hxy-u.mon.GLB", + "atmos.ua.tavg-p19-hxy-air.day.GLB", + "atmos.ua.tavg-p19-hxy-air.mon.GLB", + "atmos.ua.tpt-p3-hxy-air.6hr.GLB", + "atmos.uas.tavg-h10m-hxy-u.day.GLB", + "atmos.uas.tavg-h10m-hxy-u.mon.GLB", + "atmos.uas.tpt-h10m-hxy-u.3hr.GLB", + "atmos.va.tavg-p19-hxy-air.day.GLB", + "atmos.va.tavg-p19-hxy-air.mon.GLB", + "atmos.va.tpt-p3-hxy-air.6hr.GLB", + "atmos.vas.tavg-h10m-hxy-u.day.GLB", + "atmos.vas.tavg-h10m-hxy-u.mon.GLB", + "atmos.vas.tpt-h10m-hxy-u.3hr.GLB", + "atmos.wap.tavg-p19-hxy-air.mon.GLB", + "atmos.wap.tavg-p19-hxy-u.day.GLB", + "atmos.zg.tavg-p19-hxy-air.day.GLB", + "atmos.zg.tavg-p19-hxy-air.mon.GLB", + "land.evspsblsoi.tavg-u-hxy-lnd.mon.GLB", + "land.evspsblveg.tavg-u-hxy-lnd.mon.GLB", + "land.lai.tavg-u-hxy-lnd.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.mon.GLB", + "land.mrros.tavg-u-hxy-lnd.mon.GLB", + "land.mrso.tavg-u-hxy-lnd.mon.GLB", + "land.mrsofc.ti-u-hxy-lnd.fx.GLB", + "land.mrsol.tavg-d10cm-hxy-lnd.mon.GLB", + "land.orog.ti-u-hxy-u.fx.GLB", + "land.rootd.ti-u-hxy-lnd.fx.GLB", + "land.sftgif.ti-u-hxy-u.fx.GLB", + "land.slthick.ti-sl-hxy-lnd.fx.GLB", + "landIce.mrfso.tavg-u-hxy-lnd.mon.GLB", + "landIce.snc.tavg-u-hxy-lnd.mon.GLB", + "landIce.snw.tavg-u-hxy-lnd.mon.GLB", + "ocean.areacello.ti-u-hxy-u.fx.GLB", + "ocean.basin.ti-u-hxy-u.fx.GLB", + "ocean.bigthetao.tavg-ol-hxy-sea.mon.GLB", + "ocean.deptho.ti-u-hxy-sea.fx.GLB", + "ocean.hfds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfgeou.ti-u-hxy-sea.fx.GLB", + "ocean.masscello.tavg-ol-hxy-sea.mon.GLB", + "ocean.masscello.ti-ol-hxy-sea.fx.GLB", + "ocean.mlotst.tavg-u-hxy-sea.mon.GLB", + "ocean.sftof.ti-u-hxy-u.fx.GLB", + "ocean.so.tavg-ol-hxy-sea.mon.GLB", + "ocean.sos.tavg-u-hxy-sea.day.GLB", + "ocean.sos.tavg-u-hxy-sea.mon.GLB", + "ocean.tauuo.tavg-u-hxy-sea.mon.GLB", + "ocean.tauvo.tavg-u-hxy-sea.mon.GLB", + "ocean.thetao.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcello.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcello.ti-ol-hxy-sea.fx.GLB", + "ocean.tos.tavg-u-hxy-sea.day.GLB", + "ocean.tos.tavg-u-hxy-sea.mon.GLB", + "ocean.umo.tavg-ol-hxy-sea.mon.GLB", + "ocean.uo.tavg-ol-hxy-sea.mon.GLB", + "ocean.vmo.tavg-ol-hxy-sea.mon.GLB", + "ocean.vo.tavg-ol-hxy-sea.mon.GLB", + "ocean.wmo.tavg-ol-hxy-sea.mon.GLB", + "ocean.wo.tavg-ol-hxy-sea.mon.GLB", + "ocean.zos.tavg-u-hxy-sea.day.GLB", + "ocean.zos.tavg-u-hxy-sea.mon.GLB", + "ocean.zostoga.tavg-u-hm-sea.mon.GLB", + "seaIce.siconc.tavg-u-hxy-u.day.GLB", + "seaIce.siconc.tavg-u-hxy-u.mon.GLB", + "seaIce.simass.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-si.mon.GLB", + "seaIce.sitimefrac.tavg-u-hxy-sea.mon.GLB", + "seaIce.siu.tavg-u-hxy-si.mon.GLB", + "seaIce.siv.tavg-u-hxy-si.mon.GLB", + "seaIce.snd.tavg-u-hxy-sn.mon.GLB", + "seaIce.ts.tavg-u-hxy-si.mon.GLB" + ], + "High": [ + "aerosol.abs550aer.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550bc.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550dust.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550no3.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550oa.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550so4.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550ss.tavg-u-hxy-u.mon.GLB", + "aerosol.airmass.tavg-al-hxy-u.mon.GLB", + "aerosol.aoanh.tavg-al-hxy-u.mon.NH", + "aerosol.bry.tavg-p39-hy-air.mon.GLB", + "aerosol.bs550aer.tpt-al-hxy-u.6hr.GLB", + "aerosol.c2h6.tavg-al-hxy-u.mon.GLB", + "aerosol.c3h6.tavg-al-hxy-u.mon.GLB", + "aerosol.c3h8.tavg-al-hxy-u.mon.GLB", + "aerosol.ccldncl.tavg-u-hxy-ccl.mon.GLB", + "aerosol.ccn.tavg-u-hxy-ccl.mon.30S-90S", + "aerosol.ccn.tavg-u-hxy-ccl.mon.GLB", + "aerosol.ccn1.tavg-al-hxy-u.mon.30S-90S", + "aerosol.ccn1.tavg-al-hxy-u.mon.GLB", + "aerosol.ccnp02.tavg-al-hxy-u.mon.30S-90S", + "aerosol.ccnp02.tavg-al-hxy-u.mon.GLB", + "aerosol.cdnc.tavg-al-hxy-u.mon.30S-90S", + "aerosol.cdnc.tavg-al-hxy-u.mon.GLB", + "aerosol.cfc114.tavg-al-hxy-u.mon.GLB", + "aerosol.ch3coch3.tavg-al-hxy-u.mon.GLB", + "aerosol.cheaqpso4.tavg-al-hxy-u.mon.GLB", + "aerosol.chegpso4.tavg-al-hxy-u.mon.GLB", + "aerosol.chepasoa.tavg-u-hxy-u.mon.GLB", + "aerosol.chepsoa.tavg-u-hxy-u.mon.GLB", + "aerosol.cly.tavg-p39-hy-air.mon.GLB", + "aerosol.co.tavg-al-hxy-u.mon.GLB", + "aerosol.co.tavg-h2m-hxy-u.day.GLB", + "aerosol.cod.tavg-u-hxy-u.day.GLB", + "aerosol.cod.tavg-u-hxy-u.mon.30S-90S", + "aerosol.cod.tavg-u-hxy-u.mon.GLB", + "aerosol.conccn.tavg-al-hxy-u.mon.GLB", + "aerosol.conccn.tpt-u-hs-u.3hr.GLB", + "aerosol.drybc.tavg-u-hxy-u.mon.GLB", + "aerosol.drydust.tavg-u-hxy-u.mon.GLB", + "aerosol.dryno3.tavg-u-hxy-u.mon.GLB", + "aerosol.dryo3.tavg-u-hxy-u.mon.GLB", + "aerosol.dryoa.tavg-u-hxy-u.mon.GLB", + "aerosol.dryso2.tavg-u-hxy-u.mon.GLB", + "aerosol.dryso4.tavg-u-hxy-u.mon.GLB", + "aerosol.dryss.tavg-u-hxy-u.mon.GLB", + "aerosol.ec550aer.tavg-al-hxy-u.mon.GLB", + "aerosol.ec550aer.tpt-u-hxy-u.6hr.GLB", + "aerosol.emiaco.tavg-u-hxy-u.mon.GLB", + "aerosol.emianox.tavg-u-hxy-u.mon.GLB", + "aerosol.emiaoa.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbbc.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbch4.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbco.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbdms.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbnh3.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbnox.tavg-u-hxy-u.mon.GLB", + "aerosol.emibboa.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbso2.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbvoc.tavg-u-hxy-u.mon.GLB", + "aerosol.emibc.tavg-u-hxy-u.mon.GLB", + "aerosol.emibvoc.tavg-u-hxy-u.mon.GLB", + "aerosol.emico.tavg-u-hxy-u.mon.GLB", + "aerosol.emidms.tavg-u-hxy-u.mon.30S-90S", + "aerosol.emidms.tavg-u-hxy-u.mon.GLB", + "aerosol.emidust.tavg-u-hxy-u.mon.GLB", + "aerosol.emiisop.tavg-u-hxy-u.mon.GLB", + "aerosol.emilnox.tavg-al-hxy-u.mon.GLB", + "aerosol.eminh3.tavg-u-hxy-u.mon.GLB", + "aerosol.eminox.tavg-u-hxy-u.mon.GLB", + "aerosol.emioa.tavg-u-hxy-u.mon.GLB", + "aerosol.emiso2.tavg-u-hxy-u.mon.GLB", + "aerosol.emiso4.tavg-u-hxy-u.mon.GLB", + "aerosol.emiss.tavg-u-hxy-u.mon.30S-90S", + "aerosol.emiss.tavg-u-hxy-u.mon.GLB", + "aerosol.emivoc.tavg-u-hxy-u.mon.GLB", + "aerosol.h2o.tavg-al-hxy-u.mon.GLB", + "aerosol.h2o.tavg-p39-hy-air.mon.GLB", + "aerosol.hcfc22.tavg-al-hxy-u.mon.GLB", + "aerosol.hcho.tavg-al-hxy-u.mon.GLB", + "aerosol.hcl.tavg-al-hxy-u.mon.GLB", + "aerosol.hcl.tavg-p39-hy-air.mon.GLB", + "aerosol.hfc125.tavg-al-hxy-u.mon.GLB", + "aerosol.hfc134a.tavg-al-hxy-u.mon.GLB", + "aerosol.hno3.tavg-al-hxy-u.mon.GLB", + "aerosol.hno3.tavg-p39-hy-air.mon.GLB", + "aerosol.ho2.tavg-p39-hy-air.mon.GLB", + "aerosol.isop.tavg-al-hxy-u.mon.GLB", + "aerosol.jno2.tavg-al-hxy-u.mon.GLB", + "aerosol.lossch4.tavg-al-hxy-u.mon.GLB", + "aerosol.lossco.tavg-al-hxy-u.mon.GLB", + "aerosol.lossn2o.tavg-al-hxy-u.mon.GLB", + "aerosol.lwp.tavg-u-hxy-u.mon.GLB", + "aerosol.mmraerh2o.tavg-al-hxy-u.mon.GLB", + "aerosol.mmraerh2o.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmraerh2o.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrbc.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrbc.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrbc.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrbc.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrdust.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrdust.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrdust.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrdust.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrnh4.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrnh4.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrnh4.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrnh4.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrno3.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrno3.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrno3.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrno3.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmroa.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmroa.tavg-al-hxy-u.mon.GLB", + "aerosol.mmroa.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmroa.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrpm1.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrpm1.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrpm2p5.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrpm2p5.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrso4.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrso4.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrso4.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrso4.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrsoa.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrsoa.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrsoa.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrss.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrss.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrss.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrss.tpt-h2m-hs-u.3hr.GLB", + "aerosol.nh50.tavg-al-hxy-u.mon.GLB", + "aerosol.no.tavg-al-hxy-u.mon.GLB", + "aerosol.no2.tavg-al-hxy-u.mon.GLB", + "aerosol.no2.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.noy.tavg-p39-hy-air.mon.GLB", + "aerosol.o3.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.o3.tmax-h2m-hxy-u.day.GLB", + "aerosol.o3loss.tavg-al-hxy-u.mon.GLB", + "aerosol.o3prod.tavg-al-hxy-u.mon.GLB", + "aerosol.od443aer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550aer.tavg-u-hxy-u.day.GLB", + "aerosol.od550aer.tavg-u-hxy-u.mon.30S-90S", + "aerosol.od550aer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550aerh2o.tavg-u-hxy-u.mon.GLB", + "aerosol.od550bb.tavg-u-hxy-u.mon.GLB", + "aerosol.od550bc.tavg-u-hxy-u.mon.GLB", + "aerosol.od550csaer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550dust.tavg-u-hxy-u.mon.GLB", + "aerosol.od550lt1aer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550no3.tavg-u-hxy-u.mon.GLB", + "aerosol.od550oa.tavg-u-hxy-u.mon.GLB", + "aerosol.od550so4.tavg-u-hxy-u.mon.GLB", + "aerosol.od550soa.tavg-u-hxy-u.mon.GLB", + "aerosol.od550ss.tavg-u-hxy-u.mon.GLB", + "aerosol.od865aer.tavg-u-hxy-u.mon.GLB", + "aerosol.oh.tavg-al-hxy-u.mon.GLB", + "aerosol.oh.tavg-p39-hy-air.mon.GLB", + "aerosol.pan.tavg-al-hxy-u.mon.GLB", + "aerosol.photo1d.tavg-al-hxy-u.mon.GLB", + "aerosol.pod0.tsum-u-hxy-u.mon.GLB", + "aerosol.reffccwctop.tavg-u-hxy-cl.mon.GLB", + "aerosol.reffclwtop.tavg-u-hxy-cl.mon.30S-90S", + "aerosol.reffclwtop.tavg-u-hxy-cl.mon.GLB", + "aerosol.rluscsaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rlutaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rlutcsaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rsutaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rsutcsaf.tavg-u-hxy-u.mon.GLB", + "aerosol.sfpm1.tavg-h2m-hxy-u.day.GLB", + "aerosol.sfpm10.tavg-al-hxy-u.mon.30S-90S", + "aerosol.sfpm10.tavg-al-hxy-u.mon.GLB", + "aerosol.sfpm10.tavg-h2m-hxy-u.day.GLB", + "aerosol.sfpm25.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.sfpm25.tavg-h2m-hxy-u.day.GLB", + "aerosol.so2.tavg-al-hxy-u.mon.30S-90S", + "aerosol.so2.tavg-al-hxy-u.mon.GLB", + "aerosol.so2.tavg-h2m-hxy-u.day.GLB", + "aerosol.so2.tpt-h2m-hs-u.3hr.GLB", + "aerosol.tatp.tavg-u-hxy-u.mon.GLB", + "aerosol.toz.tavg-u-hxy-u.day.GLB", + "aerosol.toz.tavg-u-hxy-u.mon.GLB", + "aerosol.tropoz.tavg-u-hxy-u.mon.GLB", + "aerosol.ttop.tavg-u-hxy-cl.mon.GLB", + "aerosol.ua.tavg-10hPa-hxy-air.day.GLB", + "aerosol.vt100.tavg-100hPa-hy-air.mon.GLB", + "aerosol.wa.tavg-al-hxy-u.mon.GLB", + "aerosol.wetbc.tavg-u-hxy-u.mon.GLB", + "aerosol.wetdust.tavg-u-hxy-u.mon.GLB", + "aerosol.wetoa.tavg-u-hxy-u.mon.GLB", + "aerosol.wetso2.tavg-u-hxy-u.mon.GLB", + "aerosol.wetso4.tavg-u-hxy-u.mon.GLB", + "aerosol.wetss.tavg-u-hxy-u.mon.GLB", + "aerosol.zg.tavg-10hPa-hxy-air.day.GLB", + "atmos.albisccp.tavg-u-hxy-cl.mon.30S-90S", + "atmos.bldep.tavg-u-hxy-u.mon.GLB", + "atmos.bldep.tmax-u-hxy-u.day.GLB", + "atmos.bldep.tmin-u-hxy-u.day.GLB", + "atmos.cl.tavg-al-hxy-u.mon.30S-90S", + "atmos.clc.tavg-al-hxy-u.mon.30S-90S", + "atmos.clc.tavg-al-hxy-u.mon.GLB", + "atmos.clcalipso.tavg-220hPa-hxy-air.mon.30S-90S", + "atmos.clcalipso.tavg-220hPa-hxy-air.mon.GLB", + "atmos.clcalipso.tavg-560hPa-hxy-air.mon.30S-90S", + "atmos.clcalipso.tavg-560hPa-hxy-air.mon.GLB", + "atmos.clcalipso.tavg-840hPa-hxy-air.mon.30S-90S", + "atmos.clcalipso.tavg-840hPa-hxy-air.mon.GLB", + "atmos.clcalipso.tavg-h40-hxy-air.mon.30S-90S", + "atmos.cldnci.tavg-u-hxy-cl.mon.GLB", + "atmos.cldncl.tavg-u-hxy-cl.mon.GLB", + "atmos.cldnvi.tavg-u-hxy-u.mon.GLB", + "atmos.cli.tavg-al-hxy-u.mon.30S-90S", + "atmos.clic.tavg-al-hxy-u.mon.30S-90S", + "atmos.clis.tavg-al-hxy-u.mon.30S-90S", + "atmos.clisccp.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clisccp.tavg-p7c-hxy-air.mon.GLB", + "atmos.clivi.tavg-u-hxy-u.mon.30S-90S", + "atmos.clivimodis.tavg-u-hxy-u.mon.30S-90S", + "atmos.clmodis.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clmodis.tavg-p7c-hxy-air.mon.GLB", + "atmos.clmodisice.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clmodisice.tavg-p7c-hxy-air.mon.GLB", + "atmos.clmodisiceReff.tavg-u-hxy-u.mon.GLB", + "atmos.clmodisliquid.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clmodisliquid.tavg-p7c-hxy-air.mon.GLB", + "atmos.clmodisliquidReff.tavg-u-hxy-u.mon.GLB", + "atmos.cls.tavg-al-hxy-u.mon.30S-90S", + "atmos.clt.tavg-u-hxy-u.mon.30S-90S", + "atmos.cltc.tavg-u-hxy-u.mon.GLB", + "atmos.cltcalipso.tavg-u-hxy-u.mon.30S-90S", + "atmos.cltisccp.tavg-u-hxy-u.mon.30S-90S", + "atmos.cltmodis.tavg-u-hxy-u.mon.30S-90S", + "atmos.clw.tavg-al-hxy-u.mon.30S-90S", + "atmos.clwc.tavg-al-hxy-u.mon.30S-90S", + "atmos.clws.tavg-al-hxy-u.mon.30S-90S", + "atmos.clwvi.tavg-u-hxy-u.mon.30S-90S", + "atmos.clwvimodis.tavg-u-hxy-u.mon.30S-90S", + "atmos.co2.tavg-al-hxy-u.mon.GLB", + "atmos.co2.tavg-p19-hxy-air.mon.GLB", + "atmos.co23D.tavg-al-hxy-u.mon.GLB", + "atmos.co2mass.tavg-u-hm-u.mon.GLB", + "atmos.dmc.tavg-alh-hxy-u.mon.30S-90S", + "atmos.edt.tavg-al-hxy-u.mon.30S-90S", + "atmos.evspsbl.tavg-u-hxy-lnd.day.GLB", + "atmos.evu.tavg-al-hxy-u.mon.30S-90S", + "atmos.fco2antt.tavg-u-hxy-u.mon.GLB", + "atmos.fco2fos.tavg-u-hxy-u.mon.GLB", + "atmos.fco2nat.tavg-u-hxy-u.mon.GLB", + "atmos.hfls.tavg-u-hxy-u.mon.30S-90S", + "atmos.hfss.tavg-u-hxy-u.mon.30S-90S", + "atmos.hur.tavg-al-hxy-u.mon.30S-90S", + "atmos.hur.tavg-al-hxy-u.mon.GLB", + "atmos.hur.tavg-p19-hxy-air.mon.30S-90S", + "atmos.hurs.tavg-h2m-hxy-u.mon.30S-90S", + "atmos.hurs.tmax-h2m-hxy-u.day.GLB", + "atmos.hurs.tmin-h2m-hxy-u.day.GLB", + "atmos.hus.tavg-al-hxy-u.mon.30S-90S", + "atmos.hus.tavg-al-hxy-u.mon.GLB", + "atmos.hus.tavg-p19-hxy-u.mon.30S-90S", + "atmos.hus.tpt-al-hxy-u.6hr.GLB", + "atmos.hus.tpt-p7h-hxy-air.6hr.GLB", + "atmos.huss.tavg-h2m-hxy-u.mon.30S-90S", + "atmos.huss.tpt-h2m-hxy-u.1hr.GLB", + "atmos.mc.tavg-alh-hxy-u.mon.GLB", + "atmos.mcd.tavg-alh-hxy-u.mon.30S-90S", + "atmos.mcu.tavg-alh-hxy-u.mon.30S-90S", + "atmos.mcu.tavg-alh-hxy-u.mon.GLB", + "atmos.pctisccp.tavg-u-hxy-cl.mon.30S-90S", + "atmos.pfull.tavg-al-hxy-u.mon.GLB", + "atmos.pfull.tclm-al-hxy-u.mon.30S-90S", + "atmos.phalf.tavg-alh-hxy-u.mon.GLB", + "atmos.pr.tavg-u-hxy-u.mon.30S-90S", + "atmos.pr.tmax-u-hxy-u.day.GLB", + "atmos.pr.tpt-u-hxy-u.6hr.GLB", + "atmos.prc.tavg-u-hxy-u.mon.30S-90S", + "atmos.prra.tavg-u-hxy-lnd.day.GLB", + "atmos.prra.tavg-u-hxy-u.mon.30S-90S", + "atmos.prsn.tavg-u-hxy-u.3hr.GLB", + "atmos.prsn.tavg-u-hxy-u.day.GLB", + "atmos.prsn.tavg-u-hxy-u.mon.30S-90S", + "atmos.prw.tavg-u-hxy-u.day.GLB", + "atmos.prw.tavg-u-hxy-u.mon.30S-90S", + "atmos.ps.tavg-u-hxy-u.1hr.GLB", + "atmos.ps.tavg-u-hxy-u.mon.30S-90S", + "atmos.ps.tpt-u-hxy-u.6hr.GLB", + "atmos.psl.tavg-u-hxy-u.mon.30S-90S", + "atmos.psl.tpt-u-hxy-u.1hr.GLB", + "atmos.psl.tpt-u-hxy-u.6hr.GLB", + "atmos.ptp.tavg-u-hxy-u.mon.GLB", + "atmos.reffcclwtop.tavg-u-hxy-ccl.mon.GLB", + "atmos.reffclic.tavg-al-hxy-ccl.mon.30S-90S", + "atmos.reffclis.tavg-al-hxy-scl.mon.30S-90S", + "atmos.reffclwc.tavg-al-hxy-ccl.mon.30S-90S", + "atmos.reffclws.tavg-al-hxy-scl.mon.30S-90S", + "atmos.reffsclwtop.tavg-u-hxy-scl.mon.GLB", + "atmos.rld.tavg-alh-hxy-u.mon.GLB", + "atmos.rld4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rldcs.tavg-alh-hxy-u.mon.GLB", + "atmos.rldcs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rlds.tavg-u-hxy-u.1hr.GLB", + "atmos.rlds.tavg-u-hxy-u.day.GLB", + "atmos.rlds.tavg-u-hxy-u.mon.30S-90S", + "atmos.rldscs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rlu.tavg-alh-hxy-u.mon.GLB", + "atmos.rlu4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rlucs.tavg-alh-hxy-u.mon.GLB", + "atmos.rlucs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rlus.tavg-u-hxy-u.day.GLB", + "atmos.rlus.tavg-u-hxy-u.mon.30S-90S", + "atmos.rlut.tavg-u-hxy-u.mon.30S-90S", + "atmos.rlut4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rlutcs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rlutcs4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rsd.tavg-alh-hxy-u.mon.GLB", + "atmos.rsd4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsdcs.tavg-alh-hxy-u.mon.GLB", + "atmos.rsdcs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsds.tavg-u-hxy-u.1hr.GLB", + "atmos.rsds.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsdscs.tavg-u-hxy-u.day.GLB", + "atmos.rsdscs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsdt.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsu.tavg-alh-hxy-u.mon.GLB", + "atmos.rsu4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsucs.tavg-alh-hxy-u.mon.GLB", + "atmos.rsucs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsus.tavg-u-hxy-u.day.GLB", + "atmos.rsus.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsuscs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsut.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsut4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rsutcs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsutcs4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rtmt.tavg-u-hxy-u.mon.GLB", + "atmos.rv850.tpt-850hPa-hxy-air.6hr.GLB", + "atmos.scldncl.tavg-u-hxy-scl.mon.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.mon.30S-90S", + "atmos.ta.tavg-al-hxy-u.mon.30S-90S", + "atmos.ta.tavg-al-hxy-u.mon.GLB", + "atmos.ta.tavg-p19-hxy-air.mon.30S-90S", + "atmos.ta.tavg-p39-hy-air.mon.GLB", + "atmos.ta.tpt-al-hxy-u.6hr.GLB", + "atmos.ta.tpt-p7h-hxy-air.6hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.1hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.mon.30S-90S", + "atmos.tas.tmaxavg-h2m-hxy-u.mon.30S-90S", + "atmos.tas.tminavg-h2m-hxy-u.mon.30S-90S", + "atmos.tnt.tavg-al-hxy-u.mon.GLB", + "atmos.tntrl.tavg-al-hxy-u.mon.GLB", + "atmos.tntrs.tavg-al-hxy-u.mon.GLB", + "atmos.ts.tavg-u-hxy-u.mon.30S-90S", + "atmos.ts.tpt-u-hxy-u.6hr.GLB", + "atmos.ua.tavg-al-hxy-u.mon.GLB", + "atmos.ua.tavg-p19-hxy-air.mon.30S-90S", + "atmos.ua.tavg-p39-hy-air.mon.GLB", + "atmos.ua.tpt-al-hxy-u.6hr.GLB", + "atmos.ua.tpt-p7h-hxy-air.6hr.GLB", + "atmos.uas.tavg-h10m-hxy-u.mon.30S-90S", + "atmos.uas.tpt-h10m-hxy-u.1hr.GLB", + "atmos.va.tavg-al-hxy-u.mon.GLB", + "atmos.va.tavg-p19-hxy-air.mon.30S-90S", + "atmos.va.tavg-p39-hy-air.mon.GLB", + "atmos.va.tpt-al-hxy-u.6hr.GLB", + "atmos.va.tpt-p7h-hxy-air.6hr.GLB", + "atmos.vas.tavg-h10m-hxy-u.mon.30S-90S", + "atmos.vas.tpt-h10m-hxy-u.1hr.GLB", + "atmos.wap.tavg-p19-hxy-air.mon.30S-90S", + "atmos.zg.tavg-1000hPa-hxy-air.day.GLB", + "atmos.zg.tavg-500hPa-hxy-air.day.GLB", + "atmos.zg.tavg-al-hxy-u.mon.GLB", + "atmos.zg.tavg-p19-hxy-air.mon.30S-90S", + "atmos.zg.tavg-p39-hy-air.mon.GLB", + "atmos.zg.tpt-500hPa-hxy-air.6hr.GLB", + "atmos.zg.tpt-al-hxy-u.6hr.GLB", + "atmos.zg.tpt-p7h-hxy-air.6hr.GLB", + "atmos.ztp.tavg-u-hxy-u.mon.GLB", + "atmosChem.c2h4.tavg-al-hxy-u.mon.GLB", + "atmosChem.c2h5oh.tavg-al-hxy-u.mon.GLB", + "atmosChem.c4h10.tavg-al-hxy-u.mon.GLB", + "atmosChem.cfc11.tavg-u-hm-u.mon.GLB", + "atmosChem.cfc113.tavg-u-hm-u.mon.GLB", + "atmosChem.cfc12.tavg-u-hm-u.mon.GLB", + "atmosChem.ch3oh.tavg-al-hxy-u.mon.GLB", + "atmosChem.ch4.tavg-al-hxy-u.mon.GLB", + "atmosChem.ch4.tavg-p39-hy-air.mon.GLB", + "atmosChem.ch4losssoil.tavg-u-hxy-u.mon.GLB", + "atmosChem.ch4ref.ti-al-hxy-u.fx.GLB", + "atmosChem.chegph2oo1d.tavg-al-hxy-u.mon.GLB", + "atmosChem.chepnh4.tavg-al-hxy-u.mon.GLB", + "atmosChem.chepno3.tavg-al-hxy-u.mon.GLB", + "atmosChem.dms.tavg-al-hxy-u.mon.30S-90S", + "atmosChem.dms.tavg-al-hxy-u.mon.GLB", + "atmosChem.do3chm.tavg-al-hxy-u.mon.GLB", + "atmosChem.dryh2.tavg-u-hxy-u.mon.GLB", + "atmosChem.dryhno3.tavg-u-hxy-u.mon.GLB", + "atmosChem.drynh3.tavg-u-hxy-u.mon.GLB", + "atmosChem.drynh4.tavg-u-hxy-u.mon.GLB", + "atmosChem.drynoy.tavg-u-hxy-u.mon.GLB", + "atmosChem.e90inst.tpt-al-hxy-u.mon.GLB", + "atmosChem.emiach4.tavg-u-hxy-u.mon.GLB", + "atmosChem.emiavnox.tavg-al-hxy-u.mon.GLB", + "atmosChem.emic2h4.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic2h5oh.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic2h6.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic3h6.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic3h8.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic4h10.tavg-u-hxy-u.mon.GLB", + "atmosChem.emich3oh.tavg-u-hxy-u.mon.GLB", + "atmosChem.emich4.tavg-u-hxy-u.mon.GLB", + "atmosChem.emih2.tavg-u-hxy-u.mon.GLB", + "atmosChem.emilkch4.tavg-u-hxy-u.mon.GLB", + "atmosChem.h2.tavg-al-hxy-u.mon.GLB", + "atmosChem.h2loss.tavg-al-hxy-u.mon.GLB", + "atmosChem.h2prod.tavg-al-hxy-u.mon.GLB", + "atmosChem.hcfc22.tavg-u-hm-u.mon.GLB", + "atmosChem.meanage.tavg-al-hxy-u.mon.GLB", + "atmosChem.meanage.tavg-p39-hy-air.mon.GLB", + "atmosChem.n2o.tavg-al-hxy-u.mon.GLB", + "atmosChem.n2o.tavg-p39-hy-air.mon.GLB", + "atmosChem.o3.tavg-al-hxy-u.mon.GLB", + "atmosChem.o3.tavg-p19-hxy-air.mon.GLB", + "atmosChem.o3.tavg-p39-hy-air.mon.GLB", + "atmosChem.o3.tpt-al-hxy-u.mon.GLB", + "atmosChem.o3ref.tclm-al-hxy-u.fx.GLB", + "atmosChem.o3ref.ti-al-hxy-u.fx.GLB", + "atmosChem.o3ste.tavg-al-hxy-u.mon.GLB", + "atmosChem.rlutch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rlutcsch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rlutcso3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rluto3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsutch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsutcsch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsutcso3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsuto3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.stratch4loss.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropch4loss.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropch4lossoh.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropdo3chm.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropo3ste.tavg-al-hxy-u.mon.GLB", + "atmosChem.wethno3.tavg-al-hxy-u.mon.GLB", + "atmosChem.wetnh3.tavg-u-hxy-u.mon.GLB", + "atmosChem.wetnh4.tavg-u-hxy-u.mon.GLB", + "atmosChem.wetno3.tavg-al-hxy-u.mon.GLB", + "atmosChem.wetnoy.tavg-u-hxy-u.mon.GLB", + "land.albc.tavg-u-hxy-veg.mon.GLB", + "land.areacellr.ti-u-hxy-u.fx.GLB", + "land.baresoilFrac.tavg-u-hxy-u.mon.GLB", + "land.burntFractionAll.tavg-u-hxy-u.mon.GLB", + "land.cGeologicStorage.tavg-u-hxy-u.mon.GLB", + "land.cLand.tavg-u-hxy-lnd.mon.GLB", + "land.cLitter.tavg-u-hxy-lnd.mon.GLB", + "land.cnc.tavg-u-hxy-u.mon.GLB", + "land.cProduct.tavg-u-hxy-lnd.mon.GLB", + "land.cropFrac.tavg-u-hxy-u.mon.GLB", + "land.cSoil.tavg-d100cm-hxy-lnd.mon.GLB", + "land.cSoil.tavg-u-hxy-lnd.mon.GLB", + "land.cVeg.tavg-u-hxy-lnd.mon.GLB", + "land.dcw.tavg-u-hxy-lnd.day.GLB", + "land.dslw.tavg-u-hxy-lnd.day.GLB", + "land.evspsblpot.tavg-u-hxy-lnd.day.GLB", + "land.evspsblpot.tavg-u-hxy-lnd.mon.GLB", + "land.fAnthDisturb.tavg-u-hxy-lnd.mon.GLB", + "land.fBNF.tavg-u-hxy-lnd.mon.GLB", + "land.fCLandToOcean.tavg-u-hxy-lnd.mon.GLB", + "land.fDeforestToAtmos.tavg-u-hxy-lnd.mon.GLB", + "land.fDeforestToProduct.tavg-u-hxy-lnd.mon.GLB", + "land.fFire.tavg-u-hxy-lnd.mon.GLB", + "land.fFireAll.tavg-u-hxy-lnd.mon.GLB", + "land.fFireNat.tavg-u-hxy-lnd.mon.GLB", + "land.fHarvestToAtmos.tavg-u-hxy-lnd.mon.GLB", + "land.fHarvestToGeologicStorage.tavg-u-hxy-lnd.mon.GLB", + "land.fHarvestToProduct.tavg-u-hxy-lnd.mon.GLB", + "land.fLitterSoil.tavg-u-hxy-lnd.mon.GLB", + "land.fN2O.tavg-u-hxy-lnd.mon.GLB", + "land.fNAnthDisturb.tavg-u-hxy-lnd.mon.GLB", + "land.fNdep.tavg-u-hxy-lnd.mon.GLB", + "land.fNfert.tavg-u-hxy-lnd.mon.GLB", + "land.fNLandToOcean.tavg-u-hxy-lnd.mon.GLB", + "land.fNLitterSoil.tavg-u-hxy-lnd.mon.GLB", + "land.fNloss.tavg-u-hxy-lnd.mon.GLB", + "land.fNnetmin.tavg-u-hxy-lnd.mon.GLB", + "land.fNOx.tavg-u-hxy-lnd.mon.GLB", + "land.fNProduct.tavg-u-hxy-lnd.mon.GLB", + "land.fNup.tavg-u-hxy-lnd.mon.GLB", + "land.fNVegLitter.tavg-u-hxy-lnd.mon.GLB", + "land.fNVegSoil.tavg-u-hxy-lnd.mon.GLB", + "land.fProductDecomp.tavg-u-hxy-lnd.mon.GLB", + "land.fVegLitter.tavg-u-hxy-lnd.mon.GLB", + "land.fVegSoil.tavg-u-hxy-lnd.mon.GLB", + "land.gpp.tavg-u-hxy-lnd.mon.GLB", + "land.grassFrac.tavg-u-hxy-u.mon.GLB", + "land.landCoverFrac.tavg-u-hxy-u.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.day.GLB", + "land.mrrob.tavg-u-hxy-lnd.day.GLB", + "land.mrros.tavg-u-hxy-lnd.day.GLB", + "land.mrsfl.tavg-sl-hxy-lnd.day.GLB", + "land.mrsfl.tavg-sl-hxy-lnd.mon.GLB", + "land.mrsll.tavg-sl-hxy-lnd.day.GLB", + "land.mrsll.tavg-sl-hxy-lnd.mon.GLB", + "land.mrso.tavg-u-hxy-lnd.day.GLB", + "land.mrsol.tavg-d10cm-hxy-lnd.day.GLB", + "land.mrsol.tavg-sl-hxy-lnd.day.GLB", + "land.mrsol.tavg-sl-hxy-lnd.mon.GLB", + "land.mrsow.tavg-u-hxy-lnd.day.GLB", + "land.mrtws.tavg-u-hxy-lnd.day.GLB", + "land.mrtws.tavg-u-hxy-lnd.mon.GLB", + "land.nbp.tavg-u-hxy-lnd.mon.GLB", + "land.nep.tavg-u-hxy-lnd.mon.GLB", + "land.nLand.tavg-u-hxy-lnd.mon.GLB", + "land.nLitter.tavg-u-hxy-lnd.mon.GLB", + "land.nMineral.tavg-u-hxy-lnd.mon.GLB", + "land.npp.tavg-u-hxy-lnd.mon.GLB", + "land.nProduct.tavg-u-hxy-lnd.mon.GLB", + "land.nSoil.tavg-u-hxy-lnd.mon.GLB", + "land.nVeg.tavg-u-hxy-lnd.mon.GLB", + "land.pastureFrac.tavg-u-hxy-u.mon.GLB", + "land.prveg.tavg-u-hxy-lnd.mon.GLB", + "land.ra.tavg-u-hxy-lnd.mon.GLB", + "land.residualFrac.tavg-u-hxy-u.mon.GLB", + "land.rh.tavg-u-hxy-lnd.mon.GLB", + "land.rivi.tavg-u-hxy-lnd.day.GLB", + "land.rivo.tavg-u-hxy-lnd.day.GLB", + "land.rsds.tavg-u-hxy-sn.mon.GLB", + "land.rsus.tavg-u-hxy-sn.mon.GLB", + "land.shrubFrac.tavg-u-hxy-u.mon.GLB", + "land.tas.tavg-u-hxy-u.1hr.GLB", + "land.tran.tavg-u-hxy-lnd.mon.GLB", + "land.treeFrac.tavg-u-hxy-u.mon.GLB", + "land.tsl.tavg-sl-hxy-lnd.mon.GLB", + "land.tslsi.tavg-u-hxy-u.day.GLB", + "land.vegFrac.tavg-u-hxy-u.mon.GLB", + "land.vegHeight.tavg-u-hxy-veg.mon.GLB", + "land.wetlandCH4.tavg-u-hxy-lnd.mon.GLB", + "land.wtd.tavg-u-hxy-lnd.day.GLB", + "landIce.snd.tavg-u-hxy-lnd.mon.GLB", + "landIce.snw.tavg-u-hxy-lnd.day.GLB", + "ocean.absscint.tavg-op4-hxy-sea.mon.GLB", + "ocean.agessc.tavg-ol-hxy-sea.mon.GLB", + "ocean.bigthetao.tavg-ol-hm-sea.mon.GLB", + "ocean.bigthetao.tavg-ol-hxy-sea.dec.GLB", + "ocean.bigthetao.tavg-op20bar-hxy-sea.day.GLB", + "ocean.chcint.tavg-op4-hxy-sea.mon.GLB", + "ocean.ficeberg.tavg-ol-hxy-sea.mon.GLB", + "ocean.friver.tavg-u-hxy-sea.mon.GLB", + "ocean.hfbasin.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpmadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpmdiff.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpsmadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfds.tavg-u-hxy-sea.mon.30S-90S", + "ocean.hfx.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfx.tavg-u-hxy-sea.day.GLB", + "ocean.hfx.tavg-u-hxy-sea.mon.GLB", + "ocean.hfy.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfy.tavg-u-hxy-sea.day.GLB", + "ocean.hfy.tavg-u-hxy-sea.mon.GLB", + "ocean.htovgyre.tavg-u-hyb-sea.mon.GLB", + "ocean.htovovrt.tavg-u-hyb-sea.mon.GLB", + "ocean.masscello.tavg-ol-hxy-sea.dec.GLB", + "ocean.masso.tavg-u-hm-sea.dec.GLB", + "ocean.masso.tavg-u-hm-sea.mon.GLB", + "ocean.mlotst.tavg-u-hxy-sea.day.GLB", + "ocean.mlotst.tavg-u-hxy-sea.mon.30S-90S", + "ocean.mlotst.tmax-u-hxy-sea.mon.GLB", + "ocean.mlotst.tmin-u-hxy-sea.mon.GLB", + "ocean.mpw.tavg-u-hxy-sea.mon.GLB", + "ocean.mpw.tpt-u-hxy-sea.3hr.GLB", + "ocean.mpwswell.tavg-u-hxy-sea.mon.GLB", + "ocean.mpwswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.mpwwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.mpwwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.msftbarot.tavg-u-hxy-sea.mon.GLB", + "ocean.msftm.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftm.tavg-rho-hyb-sea.mon.GLB", + "ocean.msfty.tavg-ol-ht-sea.mon.GLB", + "ocean.msfty.tavg-rho-ht-sea.mon.GLB", + "ocean.obvfsq.tavg-ol-hxy-sea.mon.GLB", + "ocean.pbo.tavg-u-hxy-sea.mon.GLB", + "ocean.pfscint.tavg-op4-hxy-sea.mon.GLB", + "ocean.phcint.tavg-op4-hxy-sea.mon.GLB", + "ocean.pso.tavg-u-hxy-sea.mon.GLB", + "ocean.scint.tavg-op4-hxy-sea.mon.GLB", + "ocean.sduo.tavg-u-hxy-sea.mon.GLB", + "ocean.sduo.tpt-u-hxy-sea.3hr.GLB", + "ocean.sdvo.tavg-u-hxy-sea.mon.GLB", + "ocean.sdvo.tpt-u-hxy-sea.3hr.GLB", + "ocean.sfx.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfx.tavg-u-hxy-sea.mon.GLB", + "ocean.sfy.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfy.tavg-u-hxy-sea.mon.GLB", + "ocean.sltbasin.tavg-u-hyb-sea.mon.GLB", + "ocean.sltovgyre.tavg-u-hyb-sea.mon.GLB", + "ocean.sltovovrt.tavg-u-hyb-sea.mon.GLB", + "ocean.so.tavg-ol-hm-sea.mon.GLB", + "ocean.so.tavg-ol-hxy-sea.dec.GLB", + "ocean.so.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.sob.tavg-u-hxy-sea.mon.GLB", + "ocean.sos.tavg-u-hm-sea.mon.30S-90S", + "ocean.sos.tavg-u-hm-sea.mon.GLB", + "ocean.swh.tavg-u-hxy-sea.mon.GLB", + "ocean.swh.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhmax.tmax-u-hxy-sea.mon.GLB", + "ocean.swhmax.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhswell.tavg-u-hxy-sea.mon.GLB", + "ocean.swhswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.swhwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.tauuo.tavg-u-hxy-sea.3hr.GLB", + "ocean.tauuo.tavg-u-hxy-sea.dec.GLB", + "ocean.tauvo.tavg-u-hxy-sea.3hr.GLB", + "ocean.tauvo.tavg-u-hxy-sea.dec.GLB", + "ocean.thetao.tavg-ol-hm-sea.mon.GLB", + "ocean.thetao.tavg-ol-hxy-sea.dec.GLB", + "ocean.thetao.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.thetao.tavg-op20bar-hxy-sea.day.GLB", + "ocean.thkcello.tavg-ol-hxy-sea.dec.GLB", + "ocean.tob.tavg-u-hxy-sea.mon.GLB", + "ocean.tos.tavg-u-hm-sea.mon.GLB", + "ocean.tos.tavg-u-hxy-sea.mon.30S-90S", + "ocean.tos.tpt-u-hxy-sea.3hr.GLB", + "ocean.tossq.tavg-u-hxy-sea.day.GLB", + "ocean.umo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.uo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.uos.tavg-u-hxy-sea.day.GLB", + "ocean.vmo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.vo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.volcello.tavg-ol-hxy-sea.dec.GLB", + "ocean.volcello.tavg-ol-hxy-sea.mon.GLB", + "ocean.volcello.tavg-ol-hxy-sea.yr.GLB", + "ocean.volcello.ti-ol-hxy-sea.fx.GLB", + "ocean.volo.tavg-u-hm-sea.dec.GLB", + "ocean.volo.tavg-u-hm-sea.mon.GLB", + "ocean.vos.tavg-u-hxy-sea.day.GLB", + "ocean.wdir.tavg-u-hxy-sea.mon.GLB", + "ocean.wdir.tpt-u-hxy-sea.3hr.GLB", + "ocean.wdirswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wdirswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wdirwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wdirwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.wfcorr.tavg-u-hxy-sea.mon.GLB", + "ocean.wfo.tavg-u-hxy-sea.mon.GLB", + "ocean.wmo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.wo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.wpdir.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdir.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpdirswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdirswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpdirwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdirwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpp.tavg-u-hxy-sea.mon.GLB", + "ocean.wpp.tpt-u-hxy-sea.3hr.GLB", + "ocean.wppswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wppswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wppwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wppwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.zos.tavg-u-hxy-sea.mon.30S-90S", + "ocean.zossq.tavg-u-hxy-sea.mon.GLB", + "ocean.zostoga.tavg-u-hm-sea.day.GLB", + "ocnBgchem.bacc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.calc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chl.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chl.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chlcalc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chldiat.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chldiat.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chldiaz.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chldiaz.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chlmisc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chlmisc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chlpico.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chlpico.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.detoc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dfe.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.dfe.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissic.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.dissic.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissoc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dmso.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.expc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.expcalc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.fgco2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fsfe.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fsn.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.graz.tavg-ol-hxy-sea.mon.30S-90S", + "ocnBgchem.icfriver.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intdic.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intdoc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intparag.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbfe.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbn.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbp.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbsi.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpcalcite.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpn2.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpoc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpp.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpp.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppcalc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppdiat.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppdiaz.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppmisc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppnitrate.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpppico.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.nh4.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.nh4.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.no3.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.no3.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.o2.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.ocfriver.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.ph.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.ph.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phyc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phyc.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.phyc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phycalc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phycalc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phydiat.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phydiat.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phydiaz.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phydiaz.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phymisc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phymisc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phypico.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phypico.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.po4.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.pp.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.si.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.spco2.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.spco2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.talk.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zmeso.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zmeso.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zmicro.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zmicro.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zmisc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zmisc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zooc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zooc.tavg-ol-hxy-sea.mon.GLB", + "seaIce.evspsbl.tavg-u-hxy-si.mon.GLB", + "seaIce.prra.tavg-u-hxy-si.mon.GLB", + "seaIce.prsn.tavg-u-hxy-si.mon.GLB", + "seaIce.rlds.tavg-u-hxy-si.mon.GLB", + "seaIce.rlus.tavg-u-hxy-si.mon.GLB", + "seaIce.rsds.tavg-u-hxy-si.day.GLB", + "seaIce.rsds.tavg-u-hxy-si.mon.GLB", + "seaIce.rsus.tavg-u-hxy-si.day.GLB", + "seaIce.rsus.tavg-u-hxy-si.mon.GLB", + "seaIce.sbl.tavg-u-hxy-si.mon.GLB", + "seaIce.siage.tavg-u-hxy-si.day.GLB", + "seaIce.siage.tavg-u-hxy-si.mon.30S-90S", + "seaIce.siarea.tavg-u-hm-u.mon.NH", + "seaIce.siarea.tavg-u-hm-u.mon.SH", + "seaIce.siconc.tavg-u-hxy-u.mon.30S-90S", + "seaIce.siconca.tavg-u-hxy-u.day.GLB", + "seaIce.siconca.tavg-u-hxy-u.mon.GLB", + "seaIce.sidconcdyn.tavg-u-hxy-sea.mon.GLB", + "seaIce.sidconcth.tavg-u-hxy-sea.mon.GLB", + "seaIce.sidmassdyn.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthsi.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthwat.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmeltbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmeltlat.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmelttop.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassth.tavg-u-hxy-si.mon.GLB", + "seaIce.sieqthick.tavg-u-hxy-si.mon.GLB", + "seaIce.siextent.tavg-u-hm-u.mon.NH", + "seaIce.siextent.tavg-u-hm-u.mon.SH", + "seaIce.siflcondbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflcondtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sifllattop.tavg-u-hxy-si.mon.GLB", + "seaIce.siflsensbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflsenstop.tavg-u-hxy-si.mon.GLB", + "seaIce.siflswdbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sihc.tavg-u-hxy-sea.mon.GLB", + "seaIce.sisndmassdyn.tavg-u-hxy-si.mon.GLB", + "seaIce.sisndmasssi.tavg-u-hxy-si.mon.GLB", + "seaIce.sisndmasswind.tavg-u-hxy-si.mon.GLB", + "seaIce.sisnhc.tavg-u-hxy-si.mon.GLB", + "seaIce.sisnmass.tavg-u-hm-u.mon.NH", + "seaIce.sisnmass.tavg-u-hm-u.mon.SH", + "seaIce.sispeed.tavg-u-hxy-si.day.GLB", + "seaIce.sispeed.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-si.day.GLB", + "seaIce.sithick.tavg-u-hxy-si.mon.30S-90S", + "seaIce.sitimefrac.tavg-u-hxy-sea.day.GLB", + "seaIce.sitimefrac.tavg-u-hxy-sea.mon.30S-90S", + "seaIce.siu.tavg-u-hxy-si.day.GLB", + "seaIce.siu.tavg-u-hxy-si.mon.30S-90S", + "seaIce.siv.tavg-u-hxy-si.day.GLB", + "seaIce.siv.tavg-u-hxy-si.mon.30S-90S", + "seaIce.sivol.tavg-u-hm-u.mon.NH", + "seaIce.sivol.tavg-u-hm-u.mon.SH", + "seaIce.snc.tavg-u-hxy-si.mon.GLB", + "seaIce.snd.tavg-u-hxy-sn.day.GLB", + "seaIce.snd.tavg-u-hxy-sn.mon.30S-90S", + "seaIce.snm.tavg-u-hxy-si.mon.GLB", + "seaIce.snw.tavg-u-hxy-si.mon.GLB", + "seaIce.ts.tavg-u-hxy-si.day.GLB", + "seaIce.ts.tavg-u-hxy-si.mon.30S-90S" + ], + "Medium": [ + "atmos.noaahi2m.tavg-h2m-hxy-u.day.GLB", + "atmos.noaahi2m.tmax-h2m-hxy-u.day.GLB", + "atmos.rls.tavg-u-hxy-u.day.GLB", + "atmos.rls.tavg-u-hxy-u.mon.GLB", + "atmos.rss.tavg-u-hxy-u.day.GLB", + "atmos.rss.tavg-u-hxy-u.mon.GLB", + "atmos.wbgt.tavg-h2m-hxy-u.day.GLB", + "atmos.wbgt.tmax-h2m-hxy-u.day.GLB", + "land.cLeaf.tavg-u-hxy-lnd.mon.GLB", + "land.cLitterCwd.tavg-u-hxy-lnd.mon.GLB", + "land.cLitterSubSurf.tavg-u-hxy-lnd.mon.GLB", + "land.cLitterSurf.tavg-u-hxy-lnd.mon.GLB", + "land.cOther.tavg-u-hxy-lnd.mon.GLB", + "land.cRoot.tavg-u-hxy-lnd.mon.GLB", + "land.cropFracC3.tavg-u-hxy-u.mon.GLB", + "land.cropFracC4.tavg-u-hxy-u.mon.GLB", + "land.cSoil.tavg-sl-hxy-lnd.mon.GLB", + "land.cSoilPools.tavg-u-hxy-lnd.mon.GLB", + "land.cStem.tavg-u-hxy-lnd.mon.GLB", + "land.cVeg.tavg-u-hxy-ng.mon.GLB", + "land.cVeg.tavg-u-hxy-shb.mon.GLB", + "land.cVeg.tavg-u-hxy-tree.mon.GLB", + "land.fLitterFire.tavg-u-hxy-lnd.mon.GLB", + "land.fNgas.tavg-u-hxy-lnd.mon.GLB", + "land.fNgasFire.tavg-u-hxy-lnd.mon.GLB", + "land.fNgasNonFire.tavg-u-hxy-lnd.mon.GLB", + "land.fNleach.tavg-u-hxy-lnd.mon.GLB", + "land.fVegFire.tavg-u-hxy-lnd.mon.GLB", + "land.fVegLitterMortality.tavg-u-hxy-lnd.mon.GLB", + "land.fVegLitterSenescence.tavg-u-hxy-lnd.mon.GLB", + "land.fVegSoilMortality.tavg-u-hxy-lnd.mon.GLB", + "land.fVegSoilSenescence.tavg-u-hxy-lnd.mon.GLB", + "land.gpp.tavg-u-hxy-ng.mon.GLB", + "land.gpp.tavg-u-hxy-shb.mon.GLB", + "land.gpp.tavg-u-hxy-tree.mon.GLB", + "land.grassFracC3.tavg-u-hxy-u.mon.GLB", + "land.grassFracC4.tavg-u-hxy-u.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.3hr.GLB", + "land.mrros.tavg-u-hxy-lnd.3hr.GLB", + "land.mrsol.tpt-d10cm-hxy-lnd.3hr.GLB", + "land.nLeaf.tavg-u-hxy-lnd.mon.GLB", + "land.nLitterCwd.tavg-u-hxy-lnd.mon.GLB", + "land.nLitterSubSurf.tavg-u-hxy-lnd.mon.GLB", + "land.nLitterSurf.tavg-u-hxy-lnd.mon.GLB", + "land.nMineralNH4.tavg-u-hxy-lnd.mon.GLB", + "land.nMineralNO3.tavg-u-hxy-lnd.mon.GLB", + "land.nOther.tavg-u-hxy-lnd.mon.GLB", + "land.npp.tavg-u-hxy-ng.mon.GLB", + "land.npp.tavg-u-hxy-shb.mon.GLB", + "land.npp.tavg-u-hxy-tree.mon.GLB", + "land.nppLeaf.tavg-u-hxy-lnd.mon.GLB", + "land.nppOther.tavg-u-hxy-lnd.mon.GLB", + "land.nppRoot.tavg-u-hxy-lnd.mon.GLB", + "land.nppStem.tavg-u-hxy-lnd.mon.GLB", + "land.nRoot.tavg-u-hxy-lnd.mon.GLB", + "land.nStem.tavg-u-hxy-lnd.mon.GLB", + "land.pastureFracC3.tavg-u-hxy-u.mon.GLB", + "land.pastureFracC4.tavg-u-hxy-u.mon.GLB", + "land.ra.tavg-u-hxy-ng.mon.GLB", + "land.ra.tavg-u-hxy-shb.mon.GLB", + "land.ra.tavg-u-hxy-tree.mon.GLB", + "land.raLeaf.tavg-u-hxy-lnd.mon.GLB", + "land.raOther.tavg-u-hxy-lnd.mon.GLB", + "land.raRoot.tavg-u-hxy-lnd.mon.GLB", + "land.raStem.tavg-u-hxy-lnd.mon.GLB", + "land.rh.tavg-u-hxy-ng.mon.GLB", + "land.rh.tavg-u-hxy-shb.mon.GLB", + "land.rh.tavg-u-hxy-tree.mon.GLB", + "land.rhLitter.tavg-u-hxy-lnd.mon.GLB", + "land.rhSoil.tavg-u-hxy-lnd.mon.GLB", + "land.treeFracBdlDcd.tavg-u-hxy-u.mon.GLB", + "land.treeFracBdlEvg.tavg-u-hxy-u.mon.GLB", + "land.treeFracNdlDcd.tavg-u-hxy-u.mon.GLB", + "land.treeFracNdlEvg.tavg-u-hxy-u.mon.GLB", + "land.vegHeight.tavg-u-hxy-ng.mon.GLB", + "land.vegHeight.tavg-u-hxy-shb.mon.GLB", + "land.vegHeight.tavg-u-hxy-tree.mon.GLB", + "land.wetlandCH4cons.tavg-u-hxy-lnd.mon.GLB", + "land.wetlandCH4prod.tavg-u-hxy-lnd.mon.GLB", + "land.wetlandFrac.tavg-u-hxy-u.mon.GLB", + "ocean.evspsbl.tavg-u-hxy-ifs.mon.GLB", + "ocean.ficeberg.tavg-u-hxy-sea.mon.GLB", + "ocean.hfacrossline.tavg-u-ht-sea.mon.GLB", + "ocean.hfevapds.tavg-u-hxy-ifs.mon.GLB", + "ocean.hfibthermds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfibthermds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfrainds.tavg-u-hxy-ifs.mon.GLB", + "ocean.hfrunoffds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfrunoffds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfsnthermds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfsnthermds.tavg-u-hxy-sea.mon.GLB", + "ocean.mfo.tavg-u-ht-sea.mon.GLB", + "ocean.sf6.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfacrossline.tavg-u-ht-sea.mon.GLB", + "ocean.sfdsi.tavg-u-hxy-sea.mon.GLB", + "ocean.sfriver.tavg-u-hxy-sea.mon.GLB", + "ocean.siflfwbot.tavg-u-hxy-sea.mon.GLB", + "ocean.so.tavg-ol-hxy-sea.day.GLB", + "ocean.tnkebto.tavg-u-hxy-sea.yr.GLB", + "ocean.vsf.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfcorr.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfevap.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfpr.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfriver.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfsit.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.arag.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.arag.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.calc.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.calc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chl.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.chlcalc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dmso.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.epn.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.epp.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.expc.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.expcalc.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.fgdms.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fric.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.froc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.graz.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.intppcalc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppdiat.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppdiaz.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppmisc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppnitrate.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intpppico.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.o2.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.ph.tavg-op20bar-hxy-sea.day.GLB", + "seaIce.sfdsi.tavg-u-hxy-si.mon.GLB", + "seaIce.siage.tavg-u-hxy-si.mon.GLB", + "seaIce.siarea.tavg-u-hm-u.day.NH", + "seaIce.siarea.tavg-u-hm-u.day.SH", + "seaIce.siareaacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.sicompstren.tavg-u-hxy-si.mon.GLB", + "seaIce.sidivvel.tpt-u-hxy-si.mon.GLB", + "seaIce.sidmasstranx.tavg-u-hxy-u.mon.GLB", + "seaIce.sidmasstrany.tavg-u-hxy-u.mon.GLB", + "seaIce.sidragbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidragtop.tavg-u-hxy-si.mon.GLB", + "seaIce.siextent.tavg-u-hm-u.day.NH", + "seaIce.siextent.tavg-u-hm-u.day.SH", + "seaIce.sifb.tavg-u-hxy-si.mon.GLB", + "seaIce.siflfwbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflfwdrain.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcecoriolx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcecorioly.tavg-u-hxy-si.mon.GLB", + "seaIce.siforceintstrx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforceintstry.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcetiltx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcetilty.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdconc.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdsnconc.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdsnthick.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdthick.tavg-u-hxy-si.mon.GLB", + "seaIce.simassacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.simpconc.tavg-u-hxy-si.mon.GLB", + "seaIce.simpeffconc.tavg-u-hxy-si.mon.GLB", + "seaIce.simprefrozen.tavg-u-hxy-simp.mon.GLB", + "seaIce.simpthick.tavg-u-hxy-simp.mon.GLB", + "seaIce.sirdgconc.tavg-u-hxy-si.mon.GLB", + "seaIce.sisali.tavg-u-hxy-si.mon.GLB", + "seaIce.sisaltmass.tavg-u-hxy-si.mon.GLB", + "seaIce.sishearvel.tpt-u-hxy-si.mon.GLB", + "seaIce.sisnmass.tavg-u-hm-u.day.NH", + "seaIce.sisnmass.tavg-u-hm-u.day.SH", + "seaIce.sisnmassacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.sistressave.tpt-u-hxy-si.mon.GLB", + "seaIce.sistressmax.tpt-u-hxy-si.mon.GLB", + "seaIce.sistrxdtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sistrxubot.tavg-u-hxy-si.mon.GLB", + "seaIce.sistrydtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sistryubot.tavg-u-hxy-si.mon.GLB", + "seaIce.sitempbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sitempsnic.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-sir.mon.GLB", + "seaIce.sivol.tavg-u-hm-u.day.NH", + "seaIce.sivol.tavg-u-hm-u.day.SH" + ], + "Low": [ + "aerosol.sfpm1.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.sfpm10.tavg-h2m-hxy-u.1hr.GLB", + "atmos.hurs.tavg-h2m-hxy-u.1hr.GLB", + "land.c13Land.tavg-u-hxy-lnd.mon.GLB", + "land.c13Litter.tavg-u-hxy-lnd.mon.GLB", + "land.c13Soil.tavg-u-hxy-lnd.mon.GLB", + "land.c13Veg.tavg-u-hxy-lnd.mon.GLB", + "land.c14Land.tavg-u-hxy-lnd.mon.GLB", + "land.c14Litter.tavg-u-hxy-lnd.mon.GLB", + "land.c14Soil.tavg-u-hxy-lnd.mon.GLB", + "land.c14Veg.tavg-u-hxy-lnd.mon.GLB", + "land.gppc13.tavg-u-hxy-lnd.mon.GLB", + "land.gppc14.tavg-u-hxy-lnd.mon.GLB", + "land.netAtmosLandC13Flux.tavg-u-hxy-lnd.mon.GLB", + "land.netAtmosLandC14Flux.tavg-u-hxy-lnd.mon.GLB", + "land.rac13.tavg-u-hxy-lnd.mon.GLB", + "land.rac14.tavg-u-hxy-lnd.mon.GLB", + "land.rhc13.tavg-u-hxy-lnd.mon.GLB", + "land.rhc14.tavg-u-hxy-lnd.mon.GLB", + "ocean.difmxybo.tavg-ol-hxy-sea.yr.GLB", + "ocean.difmxylo.tavg-ol-hxy-sea.yr.GLB", + "ocean.diftrblo.tavg-ol-hxy-sea.yr.GLB", + "ocean.diftrelo.tavg-ol-hxy-sea.yr.GLB", + "ocean.difvho.tavg-ol-hxy-sea.yr.GLB", + "ocean.difvso.tavg-ol-hxy-sea.yr.GLB", + "ocean.dispkexyfo.tavg-u-hxy-sea.yr.GLB", + "ocean.dxto.ti-u-hxy-u.fx.GLB", + "ocean.dxuo.ti-u-hxy-u.fx.GLB", + "ocean.dxvo.ti-u-hxy-u.fx.GLB", + "ocean.dyto.ti-u-hxy-u.fx.GLB", + "ocean.dyuo.ti-u-hxy-u.fx.GLB", + "ocean.dyvo.ti-u-hxy-u.fx.GLB", + "ocean.mlotstsq.tavg-u-hxy-sea.mon.GLB", + "ocean.msftmmpa.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftmmpa.tavg-rho-hyb-sea.mon.GLB", + "ocean.msftmsmpa.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftypa.tavg-ol-ht-sea.mon.GLB", + "ocean.msftypa.tavg-rho-ht-sea.mon.GLB", + "ocean.ocontempdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontempmint.tavg-u-hxy-sea.yr.GLB", + "ocean.ocontemppadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemppmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemppsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemprmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemptend.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottempdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottempmint.tavg-u-hxy-sea.yr.GLB", + "ocean.opottemppadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemppmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemppsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemprmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemptend.tavg-ol-hxy-sea.dec.GLB", + "ocean.osaltdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpsmadvect.tavg-ol-hxy-sea.mon.GLB", + "ocean.osaltpsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltrmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osalttend.tavg-ol-hxy-sea.yr.GLB", + "ocean.rsdoabsorb.tavg-ol-hxy-sea.yr.GLB", + "ocean.somint.tavg-u-hxy-sea.yr.GLB", + "ocean.sossq.tavg-u-hxy-sea.mon.GLB", + "ocean.thkcelluo.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcellvo.tavg-ol-hxy-sea.mon.GLB", + "ocean.tnpeo.tavg-u-hxy-sea.yr.GLB", + "ocean.tossq.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.dissi13c.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.dissi13c.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissi14c.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissi14cabio.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.dissi14cabio.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.fg13co2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fg14co2abio.tavg-u-hxy-sea.mon.GLB" + ] + }, + "esm-scen7-h-AQ": { + "Core": [ + "atmos.areacella.ti-u-hxy-u.fx.GLB", + "atmos.cl.tavg-al-hxy-u.mon.GLB", + "atmos.cli.tavg-al-hxy-u.mon.GLB", + "atmos.clivi.tavg-u-hxy-u.mon.GLB", + "atmos.clt.tavg-u-hxy-u.day.GLB", + "atmos.clt.tavg-u-hxy-u.mon.GLB", + "atmos.clw.tavg-al-hxy-u.mon.GLB", + "atmos.clwvi.tavg-u-hxy-u.mon.GLB", + "atmos.evspsbl.tavg-u-hxy-u.mon.GLB", + "atmos.hfls.tavg-u-hxy-u.mon.GLB", + "atmos.hfss.tavg-u-hxy-u.mon.GLB", + "atmos.hur.tavg-p19-hxy-air.mon.GLB", + "atmos.hur.tavg-p19-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.6hr.GLB", + "atmos.hurs.tavg-h2m-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.mon.GLB", + "atmos.hus.tavg-p19-hxy-u.day.GLB", + "atmos.hus.tavg-p19-hxy-u.mon.GLB", + "atmos.huss.tavg-h2m-hxy-u.day.GLB", + "atmos.huss.tavg-h2m-hxy-u.mon.GLB", + "atmos.huss.tpt-h2m-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.1hr.GLB", + "atmos.pr.tavg-u-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.day.GLB", + "atmos.pr.tavg-u-hxy-u.mon.GLB", + "atmos.prc.tavg-u-hxy-u.mon.GLB", + "atmos.prsn.tavg-u-hxy-u.mon.GLB", + "atmos.prw.tavg-u-hxy-u.mon.GLB", + "atmos.ps.tavg-u-hxy-u.day.GLB", + "atmos.ps.tavg-u-hxy-u.mon.GLB", + "atmos.psl.tavg-u-hxy-u.day.GLB", + "atmos.psl.tavg-u-hxy-u.mon.GLB", + "atmos.rlds.tavg-u-hxy-u.mon.GLB", + "atmos.rldscs.tavg-u-hxy-u.mon.GLB", + "atmos.rlus.tavg-u-hxy-u.mon.GLB", + "atmos.rluscs.tavg-u-hxy-u.mon.GLB", + "atmos.rlut.tavg-u-hxy-u.mon.GLB", + "atmos.rlutcs.tavg-u-hxy-u.mon.GLB", + "atmos.rsds.tavg-u-hxy-u.day.GLB", + "atmos.rsds.tavg-u-hxy-u.mon.GLB", + "atmos.rsdscs.tavg-u-hxy-u.mon.GLB", + "atmos.rsdt.tavg-u-hxy-u.mon.GLB", + "atmos.rsus.tavg-u-hxy-u.mon.GLB", + "atmos.rsuscs.tavg-u-hxy-u.mon.GLB", + "atmos.rsut.tavg-u-hxy-u.mon.GLB", + "atmos.rsutcs.tavg-u-hxy-u.mon.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.day.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.mon.GLB", + "atmos.sftlf.ti-u-hxy-u.fx.GLB", + "atmos.ta.tavg-p19-hxy-air.day.GLB", + "atmos.ta.tavg-p19-hxy-air.mon.GLB", + "atmos.ta.tpt-p3-hxy-air.6hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.day.GLB", + "atmos.tas.tavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tmax-h2m-hxy-u.day.GLB", + "atmos.tas.tmaxavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tmin-h2m-hxy-u.day.GLB", + "atmos.tas.tminavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tpt-h2m-hxy-u.3hr.GLB", + "atmos.tauu.tavg-u-hxy-u.mon.GLB", + "atmos.tauv.tavg-u-hxy-u.mon.GLB", + "atmos.ts.tavg-u-hxy-u.mon.GLB", + "atmos.ua.tavg-p19-hxy-air.day.GLB", + "atmos.ua.tavg-p19-hxy-air.mon.GLB", + "atmos.ua.tpt-p3-hxy-air.6hr.GLB", + "atmos.uas.tavg-h10m-hxy-u.day.GLB", + "atmos.uas.tavg-h10m-hxy-u.mon.GLB", + "atmos.uas.tpt-h10m-hxy-u.3hr.GLB", + "atmos.va.tavg-p19-hxy-air.day.GLB", + "atmos.va.tavg-p19-hxy-air.mon.GLB", + "atmos.va.tpt-p3-hxy-air.6hr.GLB", + "atmos.vas.tavg-h10m-hxy-u.day.GLB", + "atmos.vas.tavg-h10m-hxy-u.mon.GLB", + "atmos.vas.tpt-h10m-hxy-u.3hr.GLB", + "atmos.wap.tavg-p19-hxy-air.mon.GLB", + "atmos.wap.tavg-p19-hxy-u.day.GLB", + "atmos.zg.tavg-p19-hxy-air.day.GLB", + "atmos.zg.tavg-p19-hxy-air.mon.GLB", + "land.evspsblsoi.tavg-u-hxy-lnd.mon.GLB", + "land.evspsblveg.tavg-u-hxy-lnd.mon.GLB", + "land.lai.tavg-u-hxy-lnd.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.mon.GLB", + "land.mrros.tavg-u-hxy-lnd.mon.GLB", + "land.mrso.tavg-u-hxy-lnd.mon.GLB", + "land.mrsofc.ti-u-hxy-lnd.fx.GLB", + "land.mrsol.tavg-d10cm-hxy-lnd.mon.GLB", + "land.orog.ti-u-hxy-u.fx.GLB", + "land.rootd.ti-u-hxy-lnd.fx.GLB", + "land.sftgif.ti-u-hxy-u.fx.GLB", + "land.slthick.ti-sl-hxy-lnd.fx.GLB", + "landIce.mrfso.tavg-u-hxy-lnd.mon.GLB", + "landIce.snc.tavg-u-hxy-lnd.mon.GLB", + "landIce.snw.tavg-u-hxy-lnd.mon.GLB", + "ocean.areacello.ti-u-hxy-u.fx.GLB", + "ocean.basin.ti-u-hxy-u.fx.GLB", + "ocean.bigthetao.tavg-ol-hxy-sea.mon.GLB", + "ocean.deptho.ti-u-hxy-sea.fx.GLB", + "ocean.hfds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfgeou.ti-u-hxy-sea.fx.GLB", + "ocean.masscello.tavg-ol-hxy-sea.mon.GLB", + "ocean.masscello.ti-ol-hxy-sea.fx.GLB", + "ocean.mlotst.tavg-u-hxy-sea.mon.GLB", + "ocean.sftof.ti-u-hxy-u.fx.GLB", + "ocean.so.tavg-ol-hxy-sea.mon.GLB", + "ocean.sos.tavg-u-hxy-sea.day.GLB", + "ocean.sos.tavg-u-hxy-sea.mon.GLB", + "ocean.tauuo.tavg-u-hxy-sea.mon.GLB", + "ocean.tauvo.tavg-u-hxy-sea.mon.GLB", + "ocean.thetao.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcello.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcello.ti-ol-hxy-sea.fx.GLB", + "ocean.tos.tavg-u-hxy-sea.day.GLB", + "ocean.tos.tavg-u-hxy-sea.mon.GLB", + "ocean.umo.tavg-ol-hxy-sea.mon.GLB", + "ocean.uo.tavg-ol-hxy-sea.mon.GLB", + "ocean.vmo.tavg-ol-hxy-sea.mon.GLB", + "ocean.vo.tavg-ol-hxy-sea.mon.GLB", + "ocean.wmo.tavg-ol-hxy-sea.mon.GLB", + "ocean.wo.tavg-ol-hxy-sea.mon.GLB", + "ocean.zos.tavg-u-hxy-sea.day.GLB", + "ocean.zos.tavg-u-hxy-sea.mon.GLB", + "ocean.zostoga.tavg-u-hm-sea.mon.GLB", + "seaIce.siconc.tavg-u-hxy-u.day.GLB", + "seaIce.siconc.tavg-u-hxy-u.mon.GLB", + "seaIce.simass.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-si.mon.GLB", + "seaIce.sitimefrac.tavg-u-hxy-sea.mon.GLB", + "seaIce.siu.tavg-u-hxy-si.mon.GLB", + "seaIce.siv.tavg-u-hxy-si.mon.GLB", + "seaIce.snd.tavg-u-hxy-sn.mon.GLB", + "seaIce.ts.tavg-u-hxy-si.mon.GLB" + ], + "High": [ + "aerosol.abs550aer.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550bc.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550dust.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550no3.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550oa.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550so4.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550ss.tavg-u-hxy-u.mon.GLB", + "aerosol.airmass.tavg-al-hxy-u.mon.GLB", + "aerosol.aoanh.tavg-al-hxy-u.mon.NH", + "aerosol.bry.tavg-p39-hy-air.mon.GLB", + "aerosol.bs550aer.tpt-al-hxy-u.6hr.GLB", + "aerosol.c2h6.tavg-al-hxy-u.mon.GLB", + "aerosol.c3h6.tavg-al-hxy-u.mon.GLB", + "aerosol.c3h8.tavg-al-hxy-u.mon.GLB", + "aerosol.ccldncl.tavg-u-hxy-ccl.mon.GLB", + "aerosol.ccn.tavg-u-hxy-ccl.mon.30S-90S", + "aerosol.ccn.tavg-u-hxy-ccl.mon.GLB", + "aerosol.ccn1.tavg-al-hxy-u.mon.30S-90S", + "aerosol.ccn1.tavg-al-hxy-u.mon.GLB", + "aerosol.ccnp02.tavg-al-hxy-u.mon.30S-90S", + "aerosol.ccnp02.tavg-al-hxy-u.mon.GLB", + "aerosol.cdnc.tavg-al-hxy-u.mon.30S-90S", + "aerosol.cdnc.tavg-al-hxy-u.mon.GLB", + "aerosol.cfc114.tavg-al-hxy-u.mon.GLB", + "aerosol.ch3coch3.tavg-al-hxy-u.mon.GLB", + "aerosol.cheaqpso4.tavg-al-hxy-u.mon.GLB", + "aerosol.chegpso4.tavg-al-hxy-u.mon.GLB", + "aerosol.chepasoa.tavg-u-hxy-u.mon.GLB", + "aerosol.chepsoa.tavg-u-hxy-u.mon.GLB", + "aerosol.cly.tavg-p39-hy-air.mon.GLB", + "aerosol.co.tavg-al-hxy-u.mon.GLB", + "aerosol.co.tavg-h2m-hxy-u.day.GLB", + "aerosol.cod.tavg-u-hxy-u.day.GLB", + "aerosol.cod.tavg-u-hxy-u.mon.30S-90S", + "aerosol.cod.tavg-u-hxy-u.mon.GLB", + "aerosol.conccn.tavg-al-hxy-u.mon.GLB", + "aerosol.conccn.tpt-u-hs-u.3hr.GLB", + "aerosol.drybc.tavg-u-hxy-u.mon.GLB", + "aerosol.drydust.tavg-u-hxy-u.mon.GLB", + "aerosol.dryno3.tavg-u-hxy-u.mon.GLB", + "aerosol.dryo3.tavg-u-hxy-u.mon.GLB", + "aerosol.dryoa.tavg-u-hxy-u.mon.GLB", + "aerosol.dryso2.tavg-u-hxy-u.mon.GLB", + "aerosol.dryso4.tavg-u-hxy-u.mon.GLB", + "aerosol.dryss.tavg-u-hxy-u.mon.GLB", + "aerosol.ec550aer.tavg-al-hxy-u.mon.GLB", + "aerosol.ec550aer.tpt-u-hxy-u.6hr.GLB", + "aerosol.emiaco.tavg-u-hxy-u.mon.GLB", + "aerosol.emianox.tavg-u-hxy-u.mon.GLB", + "aerosol.emiaoa.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbbc.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbch4.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbco.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbdms.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbnh3.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbnox.tavg-u-hxy-u.mon.GLB", + "aerosol.emibboa.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbso2.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbvoc.tavg-u-hxy-u.mon.GLB", + "aerosol.emibc.tavg-u-hxy-u.mon.GLB", + "aerosol.emibvoc.tavg-u-hxy-u.mon.GLB", + "aerosol.emico.tavg-u-hxy-u.mon.GLB", + "aerosol.emidms.tavg-u-hxy-u.mon.30S-90S", + "aerosol.emidms.tavg-u-hxy-u.mon.GLB", + "aerosol.emidust.tavg-u-hxy-u.mon.GLB", + "aerosol.emiisop.tavg-u-hxy-u.mon.GLB", + "aerosol.emilnox.tavg-al-hxy-u.mon.GLB", + "aerosol.eminh3.tavg-u-hxy-u.mon.GLB", + "aerosol.eminox.tavg-u-hxy-u.mon.GLB", + "aerosol.emioa.tavg-u-hxy-u.mon.GLB", + "aerosol.emiso2.tavg-u-hxy-u.mon.GLB", + "aerosol.emiso4.tavg-u-hxy-u.mon.GLB", + "aerosol.emiss.tavg-u-hxy-u.mon.30S-90S", + "aerosol.emiss.tavg-u-hxy-u.mon.GLB", + "aerosol.emivoc.tavg-u-hxy-u.mon.GLB", + "aerosol.h2o.tavg-al-hxy-u.mon.GLB", + "aerosol.h2o.tavg-p39-hy-air.mon.GLB", + "aerosol.hcfc22.tavg-al-hxy-u.mon.GLB", + "aerosol.hcho.tavg-al-hxy-u.mon.GLB", + "aerosol.hcl.tavg-al-hxy-u.mon.GLB", + "aerosol.hcl.tavg-p39-hy-air.mon.GLB", + "aerosol.hfc125.tavg-al-hxy-u.mon.GLB", + "aerosol.hfc134a.tavg-al-hxy-u.mon.GLB", + "aerosol.hno3.tavg-al-hxy-u.mon.GLB", + "aerosol.hno3.tavg-p39-hy-air.mon.GLB", + "aerosol.ho2.tavg-p39-hy-air.mon.GLB", + "aerosol.isop.tavg-al-hxy-u.mon.GLB", + "aerosol.jno2.tavg-al-hxy-u.mon.GLB", + "aerosol.lossch4.tavg-al-hxy-u.mon.GLB", + "aerosol.lossco.tavg-al-hxy-u.mon.GLB", + "aerosol.lossn2o.tavg-al-hxy-u.mon.GLB", + "aerosol.lwp.tavg-u-hxy-u.mon.GLB", + "aerosol.mmraerh2o.tavg-al-hxy-u.mon.GLB", + "aerosol.mmraerh2o.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmraerh2o.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrbc.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrbc.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrbc.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrbc.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrdust.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrdust.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrdust.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrdust.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrnh4.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrnh4.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrnh4.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrnh4.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrno3.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrno3.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrno3.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrno3.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmroa.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmroa.tavg-al-hxy-u.mon.GLB", + "aerosol.mmroa.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmroa.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrpm1.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrpm1.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrpm2p5.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrpm2p5.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrso4.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrso4.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrso4.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrso4.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrsoa.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrsoa.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrsoa.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrss.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrss.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrss.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrss.tpt-h2m-hs-u.3hr.GLB", + "aerosol.nh50.tavg-al-hxy-u.mon.GLB", + "aerosol.no.tavg-al-hxy-u.mon.GLB", + "aerosol.no2.tavg-al-hxy-u.mon.GLB", + "aerosol.no2.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.noy.tavg-p39-hy-air.mon.GLB", + "aerosol.o3.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.o3.tmax-h2m-hxy-u.day.GLB", + "aerosol.o3loss.tavg-al-hxy-u.mon.GLB", + "aerosol.o3prod.tavg-al-hxy-u.mon.GLB", + "aerosol.od443aer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550aer.tavg-u-hxy-u.day.GLB", + "aerosol.od550aer.tavg-u-hxy-u.mon.30S-90S", + "aerosol.od550aer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550aerh2o.tavg-u-hxy-u.mon.GLB", + "aerosol.od550bb.tavg-u-hxy-u.mon.GLB", + "aerosol.od550bc.tavg-u-hxy-u.mon.GLB", + "aerosol.od550csaer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550dust.tavg-u-hxy-u.mon.GLB", + "aerosol.od550lt1aer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550no3.tavg-u-hxy-u.mon.GLB", + "aerosol.od550oa.tavg-u-hxy-u.mon.GLB", + "aerosol.od550so4.tavg-u-hxy-u.mon.GLB", + "aerosol.od550soa.tavg-u-hxy-u.mon.GLB", + "aerosol.od550ss.tavg-u-hxy-u.mon.GLB", + "aerosol.od865aer.tavg-u-hxy-u.mon.GLB", + "aerosol.oh.tavg-al-hxy-u.mon.GLB", + "aerosol.oh.tavg-p39-hy-air.mon.GLB", + "aerosol.pan.tavg-al-hxy-u.mon.GLB", + "aerosol.photo1d.tavg-al-hxy-u.mon.GLB", + "aerosol.pod0.tsum-u-hxy-u.mon.GLB", + "aerosol.reffccwctop.tavg-u-hxy-cl.mon.GLB", + "aerosol.reffclwtop.tavg-u-hxy-cl.mon.30S-90S", + "aerosol.reffclwtop.tavg-u-hxy-cl.mon.GLB", + "aerosol.rluscsaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rlutaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rlutcsaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rsutaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rsutcsaf.tavg-u-hxy-u.mon.GLB", + "aerosol.sfpm1.tavg-h2m-hxy-u.day.GLB", + "aerosol.sfpm10.tavg-al-hxy-u.mon.30S-90S", + "aerosol.sfpm10.tavg-al-hxy-u.mon.GLB", + "aerosol.sfpm10.tavg-h2m-hxy-u.day.GLB", + "aerosol.sfpm25.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.sfpm25.tavg-h2m-hxy-u.day.GLB", + "aerosol.so2.tavg-al-hxy-u.mon.30S-90S", + "aerosol.so2.tavg-al-hxy-u.mon.GLB", + "aerosol.so2.tavg-h2m-hxy-u.day.GLB", + "aerosol.so2.tpt-h2m-hs-u.3hr.GLB", + "aerosol.tatp.tavg-u-hxy-u.mon.GLB", + "aerosol.toz.tavg-u-hxy-u.day.GLB", + "aerosol.toz.tavg-u-hxy-u.mon.GLB", + "aerosol.tropoz.tavg-u-hxy-u.mon.GLB", + "aerosol.ttop.tavg-u-hxy-cl.mon.GLB", + "aerosol.ua.tavg-10hPa-hxy-air.day.GLB", + "aerosol.vt100.tavg-100hPa-hy-air.mon.GLB", + "aerosol.wa.tavg-al-hxy-u.mon.GLB", + "aerosol.wetbc.tavg-u-hxy-u.mon.GLB", + "aerosol.wetdust.tavg-u-hxy-u.mon.GLB", + "aerosol.wetoa.tavg-u-hxy-u.mon.GLB", + "aerosol.wetso2.tavg-u-hxy-u.mon.GLB", + "aerosol.wetso4.tavg-u-hxy-u.mon.GLB", + "aerosol.wetss.tavg-u-hxy-u.mon.GLB", + "aerosol.zg.tavg-10hPa-hxy-air.day.GLB", + "atmos.albisccp.tavg-u-hxy-cl.mon.30S-90S", + "atmos.bldep.tavg-u-hxy-u.mon.GLB", + "atmos.bldep.tmax-u-hxy-u.day.GLB", + "atmos.bldep.tmin-u-hxy-u.day.GLB", + "atmos.cl.tavg-al-hxy-u.mon.30S-90S", + "atmos.clc.tavg-al-hxy-u.mon.30S-90S", + "atmos.clc.tavg-al-hxy-u.mon.GLB", + "atmos.clcalipso.tavg-220hPa-hxy-air.mon.30S-90S", + "atmos.clcalipso.tavg-220hPa-hxy-air.mon.GLB", + "atmos.clcalipso.tavg-560hPa-hxy-air.mon.30S-90S", + "atmos.clcalipso.tavg-560hPa-hxy-air.mon.GLB", + "atmos.clcalipso.tavg-840hPa-hxy-air.mon.30S-90S", + "atmos.clcalipso.tavg-840hPa-hxy-air.mon.GLB", + "atmos.clcalipso.tavg-h40-hxy-air.mon.30S-90S", + "atmos.cldnci.tavg-u-hxy-cl.mon.GLB", + "atmos.cldncl.tavg-u-hxy-cl.mon.GLB", + "atmos.cldnvi.tavg-u-hxy-u.mon.GLB", + "atmos.cli.tavg-al-hxy-u.mon.30S-90S", + "atmos.clic.tavg-al-hxy-u.mon.30S-90S", + "atmos.clis.tavg-al-hxy-u.mon.30S-90S", + "atmos.clisccp.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clisccp.tavg-p7c-hxy-air.mon.GLB", + "atmos.clivi.tavg-u-hxy-u.mon.30S-90S", + "atmos.clivimodis.tavg-u-hxy-u.mon.30S-90S", + "atmos.clmodis.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clmodis.tavg-p7c-hxy-air.mon.GLB", + "atmos.clmodisice.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clmodisice.tavg-p7c-hxy-air.mon.GLB", + "atmos.clmodisiceReff.tavg-u-hxy-u.mon.GLB", + "atmos.clmodisliquid.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clmodisliquid.tavg-p7c-hxy-air.mon.GLB", + "atmos.clmodisliquidReff.tavg-u-hxy-u.mon.GLB", + "atmos.cls.tavg-al-hxy-u.mon.30S-90S", + "atmos.clt.tavg-u-hxy-u.mon.30S-90S", + "atmos.cltc.tavg-u-hxy-u.mon.GLB", + "atmos.cltcalipso.tavg-u-hxy-u.mon.30S-90S", + "atmos.cltisccp.tavg-u-hxy-u.mon.30S-90S", + "atmos.cltmodis.tavg-u-hxy-u.mon.30S-90S", + "atmos.clw.tavg-al-hxy-u.mon.30S-90S", + "atmos.clwc.tavg-al-hxy-u.mon.30S-90S", + "atmos.clws.tavg-al-hxy-u.mon.30S-90S", + "atmos.clwvi.tavg-u-hxy-u.mon.30S-90S", + "atmos.clwvimodis.tavg-u-hxy-u.mon.30S-90S", + "atmos.co2.tavg-al-hxy-u.mon.GLB", + "atmos.co2.tavg-p19-hxy-air.mon.GLB", + "atmos.co23D.tavg-al-hxy-u.mon.GLB", + "atmos.co2mass.tavg-u-hm-u.mon.GLB", + "atmos.dmc.tavg-alh-hxy-u.mon.30S-90S", + "atmos.edt.tavg-al-hxy-u.mon.30S-90S", + "atmos.evspsbl.tavg-u-hxy-lnd.day.GLB", + "atmos.evu.tavg-al-hxy-u.mon.30S-90S", + "atmos.fco2antt.tavg-u-hxy-u.mon.GLB", + "atmos.fco2fos.tavg-u-hxy-u.mon.GLB", + "atmos.fco2nat.tavg-u-hxy-u.mon.GLB", + "atmos.hfls.tavg-u-hxy-u.mon.30S-90S", + "atmos.hfss.tavg-u-hxy-u.mon.30S-90S", + "atmos.hur.tavg-al-hxy-u.mon.30S-90S", + "atmos.hur.tavg-al-hxy-u.mon.GLB", + "atmos.hur.tavg-p19-hxy-air.mon.30S-90S", + "atmos.hurs.tavg-h2m-hxy-u.mon.30S-90S", + "atmos.hurs.tmax-h2m-hxy-u.day.GLB", + "atmos.hurs.tmin-h2m-hxy-u.day.GLB", + "atmos.hus.tavg-al-hxy-u.mon.30S-90S", + "atmos.hus.tavg-al-hxy-u.mon.GLB", + "atmos.hus.tavg-p19-hxy-u.mon.30S-90S", + "atmos.hus.tpt-al-hxy-u.6hr.GLB", + "atmos.hus.tpt-p7h-hxy-air.6hr.GLB", + "atmos.huss.tavg-h2m-hxy-u.mon.30S-90S", + "atmos.huss.tpt-h2m-hxy-u.1hr.GLB", + "atmos.mc.tavg-alh-hxy-u.mon.GLB", + "atmos.mcd.tavg-alh-hxy-u.mon.30S-90S", + "atmos.mcu.tavg-alh-hxy-u.mon.30S-90S", + "atmos.mcu.tavg-alh-hxy-u.mon.GLB", + "atmos.pctisccp.tavg-u-hxy-cl.mon.30S-90S", + "atmos.pfull.tavg-al-hxy-u.mon.GLB", + "atmos.pfull.tclm-al-hxy-u.mon.30S-90S", + "atmos.phalf.tavg-alh-hxy-u.mon.GLB", + "atmos.pr.tavg-u-hxy-u.mon.30S-90S", + "atmos.pr.tmax-u-hxy-u.day.GLB", + "atmos.pr.tpt-u-hxy-u.6hr.GLB", + "atmos.prc.tavg-u-hxy-u.mon.30S-90S", + "atmos.prra.tavg-u-hxy-lnd.day.GLB", + "atmos.prra.tavg-u-hxy-u.mon.30S-90S", + "atmos.prsn.tavg-u-hxy-u.3hr.GLB", + "atmos.prsn.tavg-u-hxy-u.day.GLB", + "atmos.prsn.tavg-u-hxy-u.mon.30S-90S", + "atmos.prw.tavg-u-hxy-u.day.GLB", + "atmos.prw.tavg-u-hxy-u.mon.30S-90S", + "atmos.ps.tavg-u-hxy-u.1hr.GLB", + "atmos.ps.tavg-u-hxy-u.mon.30S-90S", + "atmos.ps.tpt-u-hxy-u.6hr.GLB", + "atmos.psl.tavg-u-hxy-u.mon.30S-90S", + "atmos.psl.tpt-u-hxy-u.1hr.GLB", + "atmos.psl.tpt-u-hxy-u.6hr.GLB", + "atmos.ptp.tavg-u-hxy-u.mon.GLB", + "atmos.reffcclwtop.tavg-u-hxy-ccl.mon.GLB", + "atmos.reffclic.tavg-al-hxy-ccl.mon.30S-90S", + "atmos.reffclis.tavg-al-hxy-scl.mon.30S-90S", + "atmos.reffclwc.tavg-al-hxy-ccl.mon.30S-90S", + "atmos.reffclws.tavg-al-hxy-scl.mon.30S-90S", + "atmos.reffsclwtop.tavg-u-hxy-scl.mon.GLB", + "atmos.rld.tavg-alh-hxy-u.mon.GLB", + "atmos.rld4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rldcs.tavg-alh-hxy-u.mon.GLB", + "atmos.rldcs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rlds.tavg-u-hxy-u.1hr.GLB", + "atmos.rlds.tavg-u-hxy-u.day.GLB", + "atmos.rlds.tavg-u-hxy-u.mon.30S-90S", + "atmos.rldscs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rlu.tavg-alh-hxy-u.mon.GLB", + "atmos.rlu4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rlucs.tavg-alh-hxy-u.mon.GLB", + "atmos.rlucs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rlus.tavg-u-hxy-u.day.GLB", + "atmos.rlus.tavg-u-hxy-u.mon.30S-90S", + "atmos.rlut.tavg-u-hxy-u.mon.30S-90S", + "atmos.rlut4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rlutcs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rlutcs4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rsd.tavg-alh-hxy-u.mon.GLB", + "atmos.rsd4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsdcs.tavg-alh-hxy-u.mon.GLB", + "atmos.rsdcs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsds.tavg-u-hxy-u.1hr.GLB", + "atmos.rsds.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsdscs.tavg-u-hxy-u.day.GLB", + "atmos.rsdscs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsdt.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsu.tavg-alh-hxy-u.mon.GLB", + "atmos.rsu4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsucs.tavg-alh-hxy-u.mon.GLB", + "atmos.rsucs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsus.tavg-u-hxy-u.day.GLB", + "atmos.rsus.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsuscs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsut.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsut4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rsutcs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsutcs4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rtmt.tavg-u-hxy-u.mon.GLB", + "atmos.rv850.tpt-850hPa-hxy-air.6hr.GLB", + "atmos.scldncl.tavg-u-hxy-scl.mon.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.mon.30S-90S", + "atmos.ta.tavg-al-hxy-u.mon.30S-90S", + "atmos.ta.tavg-al-hxy-u.mon.GLB", + "atmos.ta.tavg-p19-hxy-air.mon.30S-90S", + "atmos.ta.tavg-p39-hy-air.mon.GLB", + "atmos.ta.tpt-al-hxy-u.6hr.GLB", + "atmos.ta.tpt-p7h-hxy-air.6hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.1hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.mon.30S-90S", + "atmos.tas.tmaxavg-h2m-hxy-u.mon.30S-90S", + "atmos.tas.tminavg-h2m-hxy-u.mon.30S-90S", + "atmos.tnt.tavg-al-hxy-u.mon.GLB", + "atmos.tntrl.tavg-al-hxy-u.mon.GLB", + "atmos.tntrs.tavg-al-hxy-u.mon.GLB", + "atmos.ts.tavg-u-hxy-u.mon.30S-90S", + "atmos.ts.tpt-u-hxy-u.6hr.GLB", + "atmos.ua.tavg-al-hxy-u.mon.GLB", + "atmos.ua.tavg-p19-hxy-air.mon.30S-90S", + "atmos.ua.tavg-p39-hy-air.mon.GLB", + "atmos.ua.tpt-al-hxy-u.6hr.GLB", + "atmos.ua.tpt-p7h-hxy-air.6hr.GLB", + "atmos.uas.tavg-h10m-hxy-u.mon.30S-90S", + "atmos.uas.tpt-h10m-hxy-u.1hr.GLB", + "atmos.va.tavg-al-hxy-u.mon.GLB", + "atmos.va.tavg-p19-hxy-air.mon.30S-90S", + "atmos.va.tavg-p39-hy-air.mon.GLB", + "atmos.va.tpt-al-hxy-u.6hr.GLB", + "atmos.va.tpt-p7h-hxy-air.6hr.GLB", + "atmos.vas.tavg-h10m-hxy-u.mon.30S-90S", + "atmos.vas.tpt-h10m-hxy-u.1hr.GLB", + "atmos.wap.tavg-p19-hxy-air.mon.30S-90S", + "atmos.zg.tavg-1000hPa-hxy-air.day.GLB", + "atmos.zg.tavg-500hPa-hxy-air.day.GLB", + "atmos.zg.tavg-al-hxy-u.mon.GLB", + "atmos.zg.tavg-p19-hxy-air.mon.30S-90S", + "atmos.zg.tavg-p39-hy-air.mon.GLB", + "atmos.zg.tpt-500hPa-hxy-air.6hr.GLB", + "atmos.zg.tpt-al-hxy-u.6hr.GLB", + "atmos.zg.tpt-p7h-hxy-air.6hr.GLB", + "atmos.ztp.tavg-u-hxy-u.mon.GLB", + "atmosChem.c2h4.tavg-al-hxy-u.mon.GLB", + "atmosChem.c2h5oh.tavg-al-hxy-u.mon.GLB", + "atmosChem.c4h10.tavg-al-hxy-u.mon.GLB", + "atmosChem.cfc11.tavg-u-hm-u.mon.GLB", + "atmosChem.cfc113.tavg-u-hm-u.mon.GLB", + "atmosChem.cfc12.tavg-u-hm-u.mon.GLB", + "atmosChem.ch3oh.tavg-al-hxy-u.mon.GLB", + "atmosChem.ch4.tavg-al-hxy-u.mon.GLB", + "atmosChem.ch4.tavg-p39-hy-air.mon.GLB", + "atmosChem.ch4losssoil.tavg-u-hxy-u.mon.GLB", + "atmosChem.ch4ref.ti-al-hxy-u.fx.GLB", + "atmosChem.chegph2oo1d.tavg-al-hxy-u.mon.GLB", + "atmosChem.chepnh4.tavg-al-hxy-u.mon.GLB", + "atmosChem.chepno3.tavg-al-hxy-u.mon.GLB", + "atmosChem.dms.tavg-al-hxy-u.mon.30S-90S", + "atmosChem.dms.tavg-al-hxy-u.mon.GLB", + "atmosChem.do3chm.tavg-al-hxy-u.mon.GLB", + "atmosChem.dryh2.tavg-u-hxy-u.mon.GLB", + "atmosChem.dryhno3.tavg-u-hxy-u.mon.GLB", + "atmosChem.drynh3.tavg-u-hxy-u.mon.GLB", + "atmosChem.drynh4.tavg-u-hxy-u.mon.GLB", + "atmosChem.drynoy.tavg-u-hxy-u.mon.GLB", + "atmosChem.e90inst.tpt-al-hxy-u.mon.GLB", + "atmosChem.emiach4.tavg-u-hxy-u.mon.GLB", + "atmosChem.emiavnox.tavg-al-hxy-u.mon.GLB", + "atmosChem.emic2h4.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic2h5oh.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic2h6.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic3h6.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic3h8.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic4h10.tavg-u-hxy-u.mon.GLB", + "atmosChem.emich3oh.tavg-u-hxy-u.mon.GLB", + "atmosChem.emich4.tavg-u-hxy-u.mon.GLB", + "atmosChem.emih2.tavg-u-hxy-u.mon.GLB", + "atmosChem.emilkch4.tavg-u-hxy-u.mon.GLB", + "atmosChem.h2.tavg-al-hxy-u.mon.GLB", + "atmosChem.h2loss.tavg-al-hxy-u.mon.GLB", + "atmosChem.h2prod.tavg-al-hxy-u.mon.GLB", + "atmosChem.hcfc22.tavg-u-hm-u.mon.GLB", + "atmosChem.meanage.tavg-al-hxy-u.mon.GLB", + "atmosChem.meanage.tavg-p39-hy-air.mon.GLB", + "atmosChem.n2o.tavg-al-hxy-u.mon.GLB", + "atmosChem.n2o.tavg-p39-hy-air.mon.GLB", + "atmosChem.o3.tavg-al-hxy-u.mon.GLB", + "atmosChem.o3.tavg-p19-hxy-air.mon.GLB", + "atmosChem.o3.tavg-p39-hy-air.mon.GLB", + "atmosChem.o3.tpt-al-hxy-u.mon.GLB", + "atmosChem.o3ref.tclm-al-hxy-u.fx.GLB", + "atmosChem.o3ref.ti-al-hxy-u.fx.GLB", + "atmosChem.o3ste.tavg-al-hxy-u.mon.GLB", + "atmosChem.rlutch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rlutcsch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rlutcso3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rluto3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsutch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsutcsch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsutcso3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsuto3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.stratch4loss.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropch4loss.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropch4lossoh.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropdo3chm.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropo3ste.tavg-al-hxy-u.mon.GLB", + "atmosChem.wethno3.tavg-al-hxy-u.mon.GLB", + "atmosChem.wetnh3.tavg-u-hxy-u.mon.GLB", + "atmosChem.wetnh4.tavg-u-hxy-u.mon.GLB", + "atmosChem.wetno3.tavg-al-hxy-u.mon.GLB", + "atmosChem.wetnoy.tavg-u-hxy-u.mon.GLB", + "land.albc.tavg-u-hxy-veg.mon.GLB", + "land.areacellr.ti-u-hxy-u.fx.GLB", + "land.baresoilFrac.tavg-u-hxy-u.mon.GLB", + "land.burntFractionAll.tavg-u-hxy-u.mon.GLB", + "land.cGeologicStorage.tavg-u-hxy-u.mon.GLB", + "land.cLand.tavg-u-hxy-lnd.mon.GLB", + "land.cLitter.tavg-u-hxy-lnd.mon.GLB", + "land.cnc.tavg-u-hxy-u.mon.GLB", + "land.cProduct.tavg-u-hxy-lnd.mon.GLB", + "land.cropFrac.tavg-u-hxy-u.mon.GLB", + "land.cSoil.tavg-d100cm-hxy-lnd.mon.GLB", + "land.cSoil.tavg-u-hxy-lnd.mon.GLB", + "land.cVeg.tavg-u-hxy-lnd.mon.GLB", + "land.dcw.tavg-u-hxy-lnd.day.GLB", + "land.dslw.tavg-u-hxy-lnd.day.GLB", + "land.evspsblpot.tavg-u-hxy-lnd.day.GLB", + "land.evspsblpot.tavg-u-hxy-lnd.mon.GLB", + "land.fAnthDisturb.tavg-u-hxy-lnd.mon.GLB", + "land.fBNF.tavg-u-hxy-lnd.mon.GLB", + "land.fCLandToOcean.tavg-u-hxy-lnd.mon.GLB", + "land.fDeforestToAtmos.tavg-u-hxy-lnd.mon.GLB", + "land.fDeforestToProduct.tavg-u-hxy-lnd.mon.GLB", + "land.fFire.tavg-u-hxy-lnd.mon.GLB", + "land.fFireAll.tavg-u-hxy-lnd.mon.GLB", + "land.fFireNat.tavg-u-hxy-lnd.mon.GLB", + "land.fHarvestToAtmos.tavg-u-hxy-lnd.mon.GLB", + "land.fHarvestToGeologicStorage.tavg-u-hxy-lnd.mon.GLB", + "land.fHarvestToProduct.tavg-u-hxy-lnd.mon.GLB", + "land.fLitterSoil.tavg-u-hxy-lnd.mon.GLB", + "land.fN2O.tavg-u-hxy-lnd.mon.GLB", + "land.fNAnthDisturb.tavg-u-hxy-lnd.mon.GLB", + "land.fNdep.tavg-u-hxy-lnd.mon.GLB", + "land.fNfert.tavg-u-hxy-lnd.mon.GLB", + "land.fNLandToOcean.tavg-u-hxy-lnd.mon.GLB", + "land.fNLitterSoil.tavg-u-hxy-lnd.mon.GLB", + "land.fNloss.tavg-u-hxy-lnd.mon.GLB", + "land.fNnetmin.tavg-u-hxy-lnd.mon.GLB", + "land.fNOx.tavg-u-hxy-lnd.mon.GLB", + "land.fNProduct.tavg-u-hxy-lnd.mon.GLB", + "land.fNup.tavg-u-hxy-lnd.mon.GLB", + "land.fNVegLitter.tavg-u-hxy-lnd.mon.GLB", + "land.fNVegSoil.tavg-u-hxy-lnd.mon.GLB", + "land.fProductDecomp.tavg-u-hxy-lnd.mon.GLB", + "land.fVegLitter.tavg-u-hxy-lnd.mon.GLB", + "land.fVegSoil.tavg-u-hxy-lnd.mon.GLB", + "land.gpp.tavg-u-hxy-lnd.mon.GLB", + "land.grassFrac.tavg-u-hxy-u.mon.GLB", + "land.landCoverFrac.tavg-u-hxy-u.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.day.GLB", + "land.mrrob.tavg-u-hxy-lnd.day.GLB", + "land.mrros.tavg-u-hxy-lnd.day.GLB", + "land.mrsfl.tavg-sl-hxy-lnd.day.GLB", + "land.mrsfl.tavg-sl-hxy-lnd.mon.GLB", + "land.mrsll.tavg-sl-hxy-lnd.day.GLB", + "land.mrsll.tavg-sl-hxy-lnd.mon.GLB", + "land.mrso.tavg-u-hxy-lnd.day.GLB", + "land.mrsol.tavg-d10cm-hxy-lnd.day.GLB", + "land.mrsol.tavg-sl-hxy-lnd.day.GLB", + "land.mrsol.tavg-sl-hxy-lnd.mon.GLB", + "land.mrsow.tavg-u-hxy-lnd.day.GLB", + "land.mrtws.tavg-u-hxy-lnd.day.GLB", + "land.mrtws.tavg-u-hxy-lnd.mon.GLB", + "land.nbp.tavg-u-hxy-lnd.mon.GLB", + "land.nep.tavg-u-hxy-lnd.mon.GLB", + "land.nLand.tavg-u-hxy-lnd.mon.GLB", + "land.nLitter.tavg-u-hxy-lnd.mon.GLB", + "land.nMineral.tavg-u-hxy-lnd.mon.GLB", + "land.npp.tavg-u-hxy-lnd.mon.GLB", + "land.nProduct.tavg-u-hxy-lnd.mon.GLB", + "land.nSoil.tavg-u-hxy-lnd.mon.GLB", + "land.nVeg.tavg-u-hxy-lnd.mon.GLB", + "land.pastureFrac.tavg-u-hxy-u.mon.GLB", + "land.prveg.tavg-u-hxy-lnd.mon.GLB", + "land.ra.tavg-u-hxy-lnd.mon.GLB", + "land.residualFrac.tavg-u-hxy-u.mon.GLB", + "land.rh.tavg-u-hxy-lnd.mon.GLB", + "land.rivi.tavg-u-hxy-lnd.day.GLB", + "land.rivo.tavg-u-hxy-lnd.day.GLB", + "land.rsds.tavg-u-hxy-sn.mon.GLB", + "land.rsus.tavg-u-hxy-sn.mon.GLB", + "land.shrubFrac.tavg-u-hxy-u.mon.GLB", + "land.tas.tavg-u-hxy-u.1hr.GLB", + "land.tran.tavg-u-hxy-lnd.mon.GLB", + "land.treeFrac.tavg-u-hxy-u.mon.GLB", + "land.tsl.tavg-sl-hxy-lnd.mon.GLB", + "land.tslsi.tavg-u-hxy-u.day.GLB", + "land.vegFrac.tavg-u-hxy-u.mon.GLB", + "land.vegHeight.tavg-u-hxy-veg.mon.GLB", + "land.wetlandCH4.tavg-u-hxy-lnd.mon.GLB", + "land.wtd.tavg-u-hxy-lnd.day.GLB", + "landIce.snd.tavg-u-hxy-lnd.mon.GLB", + "landIce.snw.tavg-u-hxy-lnd.day.GLB", + "ocean.absscint.tavg-op4-hxy-sea.mon.GLB", + "ocean.agessc.tavg-ol-hxy-sea.mon.GLB", + "ocean.bigthetao.tavg-ol-hm-sea.mon.GLB", + "ocean.bigthetao.tavg-ol-hxy-sea.dec.GLB", + "ocean.bigthetao.tavg-op20bar-hxy-sea.day.GLB", + "ocean.chcint.tavg-op4-hxy-sea.mon.GLB", + "ocean.ficeberg.tavg-ol-hxy-sea.mon.GLB", + "ocean.friver.tavg-u-hxy-sea.mon.GLB", + "ocean.hfbasin.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpmadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpmdiff.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpsmadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfds.tavg-u-hxy-sea.mon.30S-90S", + "ocean.hfx.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfx.tavg-u-hxy-sea.day.GLB", + "ocean.hfx.tavg-u-hxy-sea.mon.GLB", + "ocean.hfy.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfy.tavg-u-hxy-sea.day.GLB", + "ocean.hfy.tavg-u-hxy-sea.mon.GLB", + "ocean.htovgyre.tavg-u-hyb-sea.mon.GLB", + "ocean.htovovrt.tavg-u-hyb-sea.mon.GLB", + "ocean.masscello.tavg-ol-hxy-sea.dec.GLB", + "ocean.masso.tavg-u-hm-sea.dec.GLB", + "ocean.masso.tavg-u-hm-sea.mon.GLB", + "ocean.mlotst.tavg-u-hxy-sea.day.GLB", + "ocean.mlotst.tavg-u-hxy-sea.mon.30S-90S", + "ocean.mlotst.tmax-u-hxy-sea.mon.GLB", + "ocean.mlotst.tmin-u-hxy-sea.mon.GLB", + "ocean.mpw.tavg-u-hxy-sea.mon.GLB", + "ocean.mpw.tpt-u-hxy-sea.3hr.GLB", + "ocean.mpwswell.tavg-u-hxy-sea.mon.GLB", + "ocean.mpwswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.mpwwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.mpwwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.msftbarot.tavg-u-hxy-sea.mon.GLB", + "ocean.msftm.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftm.tavg-rho-hyb-sea.mon.GLB", + "ocean.msfty.tavg-ol-ht-sea.mon.GLB", + "ocean.msfty.tavg-rho-ht-sea.mon.GLB", + "ocean.obvfsq.tavg-ol-hxy-sea.mon.GLB", + "ocean.pbo.tavg-u-hxy-sea.mon.GLB", + "ocean.pfscint.tavg-op4-hxy-sea.mon.GLB", + "ocean.phcint.tavg-op4-hxy-sea.mon.GLB", + "ocean.pso.tavg-u-hxy-sea.mon.GLB", + "ocean.scint.tavg-op4-hxy-sea.mon.GLB", + "ocean.sduo.tavg-u-hxy-sea.mon.GLB", + "ocean.sduo.tpt-u-hxy-sea.3hr.GLB", + "ocean.sdvo.tavg-u-hxy-sea.mon.GLB", + "ocean.sdvo.tpt-u-hxy-sea.3hr.GLB", + "ocean.sfx.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfx.tavg-u-hxy-sea.mon.GLB", + "ocean.sfy.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfy.tavg-u-hxy-sea.mon.GLB", + "ocean.sltbasin.tavg-u-hyb-sea.mon.GLB", + "ocean.sltovgyre.tavg-u-hyb-sea.mon.GLB", + "ocean.sltovovrt.tavg-u-hyb-sea.mon.GLB", + "ocean.so.tavg-ol-hm-sea.mon.GLB", + "ocean.so.tavg-ol-hxy-sea.dec.GLB", + "ocean.so.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.sob.tavg-u-hxy-sea.mon.GLB", + "ocean.sos.tavg-u-hm-sea.mon.30S-90S", + "ocean.sos.tavg-u-hm-sea.mon.GLB", + "ocean.swh.tavg-u-hxy-sea.mon.GLB", + "ocean.swh.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhmax.tmax-u-hxy-sea.mon.GLB", + "ocean.swhmax.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhswell.tavg-u-hxy-sea.mon.GLB", + "ocean.swhswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.swhwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.tauuo.tavg-u-hxy-sea.3hr.GLB", + "ocean.tauuo.tavg-u-hxy-sea.dec.GLB", + "ocean.tauvo.tavg-u-hxy-sea.3hr.GLB", + "ocean.tauvo.tavg-u-hxy-sea.dec.GLB", + "ocean.thetao.tavg-ol-hm-sea.mon.GLB", + "ocean.thetao.tavg-ol-hxy-sea.dec.GLB", + "ocean.thetao.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.thetao.tavg-op20bar-hxy-sea.day.GLB", + "ocean.thkcello.tavg-ol-hxy-sea.dec.GLB", + "ocean.tob.tavg-u-hxy-sea.mon.GLB", + "ocean.tos.tavg-u-hm-sea.mon.GLB", + "ocean.tos.tavg-u-hxy-sea.mon.30S-90S", + "ocean.tos.tpt-u-hxy-sea.3hr.GLB", + "ocean.tossq.tavg-u-hxy-sea.day.GLB", + "ocean.umo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.uo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.uos.tavg-u-hxy-sea.day.GLB", + "ocean.vmo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.vo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.volcello.tavg-ol-hxy-sea.dec.GLB", + "ocean.volcello.tavg-ol-hxy-sea.mon.GLB", + "ocean.volcello.tavg-ol-hxy-sea.yr.GLB", + "ocean.volcello.ti-ol-hxy-sea.fx.GLB", + "ocean.volo.tavg-u-hm-sea.dec.GLB", + "ocean.volo.tavg-u-hm-sea.mon.GLB", + "ocean.vos.tavg-u-hxy-sea.day.GLB", + "ocean.wdir.tavg-u-hxy-sea.mon.GLB", + "ocean.wdir.tpt-u-hxy-sea.3hr.GLB", + "ocean.wdirswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wdirswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wdirwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wdirwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.wfcorr.tavg-u-hxy-sea.mon.GLB", + "ocean.wfo.tavg-u-hxy-sea.mon.GLB", + "ocean.wmo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.wo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.wpdir.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdir.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpdirswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdirswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpdirwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdirwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpp.tavg-u-hxy-sea.mon.GLB", + "ocean.wpp.tpt-u-hxy-sea.3hr.GLB", + "ocean.wppswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wppswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wppwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wppwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.zos.tavg-u-hxy-sea.mon.30S-90S", + "ocean.zossq.tavg-u-hxy-sea.mon.GLB", + "ocean.zostoga.tavg-u-hm-sea.day.GLB", + "ocnBgchem.bacc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.calc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chl.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chl.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chlcalc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chldiat.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chldiat.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chldiaz.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chldiaz.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chlmisc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chlmisc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chlpico.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chlpico.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.detoc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dfe.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.dfe.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissic.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.dissic.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissoc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dmso.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.expc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.expcalc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.fgco2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fsfe.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fsn.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.graz.tavg-ol-hxy-sea.mon.30S-90S", + "ocnBgchem.icfriver.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intdic.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intdoc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intparag.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbfe.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbn.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbp.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbsi.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpcalcite.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpn2.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpoc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpp.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpp.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppcalc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppdiat.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppdiaz.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppmisc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppnitrate.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpppico.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.nh4.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.nh4.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.no3.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.no3.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.o2.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.ocfriver.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.ph.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.ph.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phyc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phyc.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.phyc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phycalc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phycalc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phydiat.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phydiat.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phydiaz.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phydiaz.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phymisc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phymisc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phypico.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phypico.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.po4.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.pp.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.si.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.spco2.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.spco2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.talk.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zmeso.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zmeso.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zmicro.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zmicro.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zmisc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zmisc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zooc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zooc.tavg-ol-hxy-sea.mon.GLB", + "seaIce.evspsbl.tavg-u-hxy-si.mon.GLB", + "seaIce.prra.tavg-u-hxy-si.mon.GLB", + "seaIce.prsn.tavg-u-hxy-si.mon.GLB", + "seaIce.rlds.tavg-u-hxy-si.mon.GLB", + "seaIce.rlus.tavg-u-hxy-si.mon.GLB", + "seaIce.rsds.tavg-u-hxy-si.day.GLB", + "seaIce.rsds.tavg-u-hxy-si.mon.GLB", + "seaIce.rsus.tavg-u-hxy-si.day.GLB", + "seaIce.rsus.tavg-u-hxy-si.mon.GLB", + "seaIce.sbl.tavg-u-hxy-si.mon.GLB", + "seaIce.siage.tavg-u-hxy-si.day.GLB", + "seaIce.siage.tavg-u-hxy-si.mon.30S-90S", + "seaIce.siarea.tavg-u-hm-u.mon.NH", + "seaIce.siarea.tavg-u-hm-u.mon.SH", + "seaIce.siconc.tavg-u-hxy-u.mon.30S-90S", + "seaIce.siconca.tavg-u-hxy-u.day.GLB", + "seaIce.siconca.tavg-u-hxy-u.mon.GLB", + "seaIce.sidconcdyn.tavg-u-hxy-sea.mon.GLB", + "seaIce.sidconcth.tavg-u-hxy-sea.mon.GLB", + "seaIce.sidmassdyn.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthsi.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthwat.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmeltbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmeltlat.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmelttop.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassth.tavg-u-hxy-si.mon.GLB", + "seaIce.sieqthick.tavg-u-hxy-si.mon.GLB", + "seaIce.siextent.tavg-u-hm-u.mon.NH", + "seaIce.siextent.tavg-u-hm-u.mon.SH", + "seaIce.siflcondbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflcondtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sifllattop.tavg-u-hxy-si.mon.GLB", + "seaIce.siflsensbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflsenstop.tavg-u-hxy-si.mon.GLB", + "seaIce.siflswdbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sihc.tavg-u-hxy-sea.mon.GLB", + "seaIce.sisndmassdyn.tavg-u-hxy-si.mon.GLB", + "seaIce.sisndmasssi.tavg-u-hxy-si.mon.GLB", + "seaIce.sisndmasswind.tavg-u-hxy-si.mon.GLB", + "seaIce.sisnhc.tavg-u-hxy-si.mon.GLB", + "seaIce.sisnmass.tavg-u-hm-u.mon.NH", + "seaIce.sisnmass.tavg-u-hm-u.mon.SH", + "seaIce.sispeed.tavg-u-hxy-si.day.GLB", + "seaIce.sispeed.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-si.day.GLB", + "seaIce.sithick.tavg-u-hxy-si.mon.30S-90S", + "seaIce.sitimefrac.tavg-u-hxy-sea.day.GLB", + "seaIce.sitimefrac.tavg-u-hxy-sea.mon.30S-90S", + "seaIce.siu.tavg-u-hxy-si.day.GLB", + "seaIce.siu.tavg-u-hxy-si.mon.30S-90S", + "seaIce.siv.tavg-u-hxy-si.day.GLB", + "seaIce.siv.tavg-u-hxy-si.mon.30S-90S", + "seaIce.sivol.tavg-u-hm-u.mon.NH", + "seaIce.sivol.tavg-u-hm-u.mon.SH", + "seaIce.snc.tavg-u-hxy-si.mon.GLB", + "seaIce.snd.tavg-u-hxy-sn.day.GLB", + "seaIce.snd.tavg-u-hxy-sn.mon.30S-90S", + "seaIce.snm.tavg-u-hxy-si.mon.GLB", + "seaIce.snw.tavg-u-hxy-si.mon.GLB", + "seaIce.ts.tavg-u-hxy-si.day.GLB", + "seaIce.ts.tavg-u-hxy-si.mon.30S-90S" + ], + "Medium": [ + "atmos.noaahi2m.tavg-h2m-hxy-u.day.GLB", + "atmos.noaahi2m.tmax-h2m-hxy-u.day.GLB", + "atmos.rls.tavg-u-hxy-u.day.GLB", + "atmos.rls.tavg-u-hxy-u.mon.GLB", + "atmos.rss.tavg-u-hxy-u.day.GLB", + "atmos.rss.tavg-u-hxy-u.mon.GLB", + "atmos.wbgt.tavg-h2m-hxy-u.day.GLB", + "atmos.wbgt.tmax-h2m-hxy-u.day.GLB", + "land.cLeaf.tavg-u-hxy-lnd.mon.GLB", + "land.cLitterCwd.tavg-u-hxy-lnd.mon.GLB", + "land.cLitterSubSurf.tavg-u-hxy-lnd.mon.GLB", + "land.cLitterSurf.tavg-u-hxy-lnd.mon.GLB", + "land.cOther.tavg-u-hxy-lnd.mon.GLB", + "land.cRoot.tavg-u-hxy-lnd.mon.GLB", + "land.cropFracC3.tavg-u-hxy-u.mon.GLB", + "land.cropFracC4.tavg-u-hxy-u.mon.GLB", + "land.cSoil.tavg-sl-hxy-lnd.mon.GLB", + "land.cSoilPools.tavg-u-hxy-lnd.mon.GLB", + "land.cStem.tavg-u-hxy-lnd.mon.GLB", + "land.cVeg.tavg-u-hxy-ng.mon.GLB", + "land.cVeg.tavg-u-hxy-shb.mon.GLB", + "land.cVeg.tavg-u-hxy-tree.mon.GLB", + "land.fLitterFire.tavg-u-hxy-lnd.mon.GLB", + "land.fNgas.tavg-u-hxy-lnd.mon.GLB", + "land.fNgasFire.tavg-u-hxy-lnd.mon.GLB", + "land.fNgasNonFire.tavg-u-hxy-lnd.mon.GLB", + "land.fNleach.tavg-u-hxy-lnd.mon.GLB", + "land.fVegFire.tavg-u-hxy-lnd.mon.GLB", + "land.fVegLitterMortality.tavg-u-hxy-lnd.mon.GLB", + "land.fVegLitterSenescence.tavg-u-hxy-lnd.mon.GLB", + "land.fVegSoilMortality.tavg-u-hxy-lnd.mon.GLB", + "land.fVegSoilSenescence.tavg-u-hxy-lnd.mon.GLB", + "land.gpp.tavg-u-hxy-ng.mon.GLB", + "land.gpp.tavg-u-hxy-shb.mon.GLB", + "land.gpp.tavg-u-hxy-tree.mon.GLB", + "land.grassFracC3.tavg-u-hxy-u.mon.GLB", + "land.grassFracC4.tavg-u-hxy-u.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.3hr.GLB", + "land.mrros.tavg-u-hxy-lnd.3hr.GLB", + "land.mrsol.tpt-d10cm-hxy-lnd.3hr.GLB", + "land.nLeaf.tavg-u-hxy-lnd.mon.GLB", + "land.nLitterCwd.tavg-u-hxy-lnd.mon.GLB", + "land.nLitterSubSurf.tavg-u-hxy-lnd.mon.GLB", + "land.nLitterSurf.tavg-u-hxy-lnd.mon.GLB", + "land.nMineralNH4.tavg-u-hxy-lnd.mon.GLB", + "land.nMineralNO3.tavg-u-hxy-lnd.mon.GLB", + "land.nOther.tavg-u-hxy-lnd.mon.GLB", + "land.npp.tavg-u-hxy-ng.mon.GLB", + "land.npp.tavg-u-hxy-shb.mon.GLB", + "land.npp.tavg-u-hxy-tree.mon.GLB", + "land.nppLeaf.tavg-u-hxy-lnd.mon.GLB", + "land.nppOther.tavg-u-hxy-lnd.mon.GLB", + "land.nppRoot.tavg-u-hxy-lnd.mon.GLB", + "land.nppStem.tavg-u-hxy-lnd.mon.GLB", + "land.nRoot.tavg-u-hxy-lnd.mon.GLB", + "land.nStem.tavg-u-hxy-lnd.mon.GLB", + "land.pastureFracC3.tavg-u-hxy-u.mon.GLB", + "land.pastureFracC4.tavg-u-hxy-u.mon.GLB", + "land.ra.tavg-u-hxy-ng.mon.GLB", + "land.ra.tavg-u-hxy-shb.mon.GLB", + "land.ra.tavg-u-hxy-tree.mon.GLB", + "land.raLeaf.tavg-u-hxy-lnd.mon.GLB", + "land.raOther.tavg-u-hxy-lnd.mon.GLB", + "land.raRoot.tavg-u-hxy-lnd.mon.GLB", + "land.raStem.tavg-u-hxy-lnd.mon.GLB", + "land.rh.tavg-u-hxy-ng.mon.GLB", + "land.rh.tavg-u-hxy-shb.mon.GLB", + "land.rh.tavg-u-hxy-tree.mon.GLB", + "land.rhLitter.tavg-u-hxy-lnd.mon.GLB", + "land.rhSoil.tavg-u-hxy-lnd.mon.GLB", + "land.treeFracBdlDcd.tavg-u-hxy-u.mon.GLB", + "land.treeFracBdlEvg.tavg-u-hxy-u.mon.GLB", + "land.treeFracNdlDcd.tavg-u-hxy-u.mon.GLB", + "land.treeFracNdlEvg.tavg-u-hxy-u.mon.GLB", + "land.vegHeight.tavg-u-hxy-ng.mon.GLB", + "land.vegHeight.tavg-u-hxy-shb.mon.GLB", + "land.vegHeight.tavg-u-hxy-tree.mon.GLB", + "land.wetlandCH4cons.tavg-u-hxy-lnd.mon.GLB", + "land.wetlandCH4prod.tavg-u-hxy-lnd.mon.GLB", + "land.wetlandFrac.tavg-u-hxy-u.mon.GLB", + "ocean.evspsbl.tavg-u-hxy-ifs.mon.GLB", + "ocean.ficeberg.tavg-u-hxy-sea.mon.GLB", + "ocean.hfacrossline.tavg-u-ht-sea.mon.GLB", + "ocean.hfevapds.tavg-u-hxy-ifs.mon.GLB", + "ocean.hfibthermds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfibthermds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfrainds.tavg-u-hxy-ifs.mon.GLB", + "ocean.hfrunoffds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfrunoffds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfsnthermds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfsnthermds.tavg-u-hxy-sea.mon.GLB", + "ocean.mfo.tavg-u-ht-sea.mon.GLB", + "ocean.sf6.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfacrossline.tavg-u-ht-sea.mon.GLB", + "ocean.sfdsi.tavg-u-hxy-sea.mon.GLB", + "ocean.sfriver.tavg-u-hxy-sea.mon.GLB", + "ocean.siflfwbot.tavg-u-hxy-sea.mon.GLB", + "ocean.so.tavg-ol-hxy-sea.day.GLB", + "ocean.tnkebto.tavg-u-hxy-sea.yr.GLB", + "ocean.vsf.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfcorr.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfevap.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfpr.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfriver.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfsit.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.arag.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.arag.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.calc.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.calc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chl.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.chlcalc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dmso.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.epn.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.epp.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.expc.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.expcalc.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.fgdms.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fric.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.froc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.graz.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.intppcalc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppdiat.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppdiaz.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppmisc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppnitrate.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intpppico.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.o2.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.ph.tavg-op20bar-hxy-sea.day.GLB", + "seaIce.sfdsi.tavg-u-hxy-si.mon.GLB", + "seaIce.siage.tavg-u-hxy-si.mon.GLB", + "seaIce.siarea.tavg-u-hm-u.day.NH", + "seaIce.siarea.tavg-u-hm-u.day.SH", + "seaIce.siareaacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.sicompstren.tavg-u-hxy-si.mon.GLB", + "seaIce.sidivvel.tpt-u-hxy-si.mon.GLB", + "seaIce.sidmasstranx.tavg-u-hxy-u.mon.GLB", + "seaIce.sidmasstrany.tavg-u-hxy-u.mon.GLB", + "seaIce.sidragbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidragtop.tavg-u-hxy-si.mon.GLB", + "seaIce.siextent.tavg-u-hm-u.day.NH", + "seaIce.siextent.tavg-u-hm-u.day.SH", + "seaIce.sifb.tavg-u-hxy-si.mon.GLB", + "seaIce.siflfwbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflfwdrain.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcecoriolx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcecorioly.tavg-u-hxy-si.mon.GLB", + "seaIce.siforceintstrx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforceintstry.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcetiltx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcetilty.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdconc.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdsnconc.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdsnthick.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdthick.tavg-u-hxy-si.mon.GLB", + "seaIce.simassacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.simpconc.tavg-u-hxy-si.mon.GLB", + "seaIce.simpeffconc.tavg-u-hxy-si.mon.GLB", + "seaIce.simprefrozen.tavg-u-hxy-simp.mon.GLB", + "seaIce.simpthick.tavg-u-hxy-simp.mon.GLB", + "seaIce.sirdgconc.tavg-u-hxy-si.mon.GLB", + "seaIce.sisali.tavg-u-hxy-si.mon.GLB", + "seaIce.sisaltmass.tavg-u-hxy-si.mon.GLB", + "seaIce.sishearvel.tpt-u-hxy-si.mon.GLB", + "seaIce.sisnmass.tavg-u-hm-u.day.NH", + "seaIce.sisnmass.tavg-u-hm-u.day.SH", + "seaIce.sisnmassacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.sistressave.tpt-u-hxy-si.mon.GLB", + "seaIce.sistressmax.tpt-u-hxy-si.mon.GLB", + "seaIce.sistrxdtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sistrxubot.tavg-u-hxy-si.mon.GLB", + "seaIce.sistrydtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sistryubot.tavg-u-hxy-si.mon.GLB", + "seaIce.sitempbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sitempsnic.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-sir.mon.GLB", + "seaIce.sivol.tavg-u-hm-u.day.NH", + "seaIce.sivol.tavg-u-hm-u.day.SH" + ], + "Low": [ + "aerosol.sfpm1.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.sfpm10.tavg-h2m-hxy-u.1hr.GLB", + "atmos.hurs.tavg-h2m-hxy-u.1hr.GLB", + "land.c13Land.tavg-u-hxy-lnd.mon.GLB", + "land.c13Litter.tavg-u-hxy-lnd.mon.GLB", + "land.c13Soil.tavg-u-hxy-lnd.mon.GLB", + "land.c13Veg.tavg-u-hxy-lnd.mon.GLB", + "land.c14Land.tavg-u-hxy-lnd.mon.GLB", + "land.c14Litter.tavg-u-hxy-lnd.mon.GLB", + "land.c14Soil.tavg-u-hxy-lnd.mon.GLB", + "land.c14Veg.tavg-u-hxy-lnd.mon.GLB", + "land.gppc13.tavg-u-hxy-lnd.mon.GLB", + "land.gppc14.tavg-u-hxy-lnd.mon.GLB", + "land.netAtmosLandC13Flux.tavg-u-hxy-lnd.mon.GLB", + "land.netAtmosLandC14Flux.tavg-u-hxy-lnd.mon.GLB", + "land.rac13.tavg-u-hxy-lnd.mon.GLB", + "land.rac14.tavg-u-hxy-lnd.mon.GLB", + "land.rhc13.tavg-u-hxy-lnd.mon.GLB", + "land.rhc14.tavg-u-hxy-lnd.mon.GLB", + "ocean.difmxybo.tavg-ol-hxy-sea.yr.GLB", + "ocean.difmxylo.tavg-ol-hxy-sea.yr.GLB", + "ocean.diftrblo.tavg-ol-hxy-sea.yr.GLB", + "ocean.diftrelo.tavg-ol-hxy-sea.yr.GLB", + "ocean.difvho.tavg-ol-hxy-sea.yr.GLB", + "ocean.difvso.tavg-ol-hxy-sea.yr.GLB", + "ocean.dispkexyfo.tavg-u-hxy-sea.yr.GLB", + "ocean.dxto.ti-u-hxy-u.fx.GLB", + "ocean.dxuo.ti-u-hxy-u.fx.GLB", + "ocean.dxvo.ti-u-hxy-u.fx.GLB", + "ocean.dyto.ti-u-hxy-u.fx.GLB", + "ocean.dyuo.ti-u-hxy-u.fx.GLB", + "ocean.dyvo.ti-u-hxy-u.fx.GLB", + "ocean.mlotstsq.tavg-u-hxy-sea.mon.GLB", + "ocean.msftmmpa.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftmmpa.tavg-rho-hyb-sea.mon.GLB", + "ocean.msftmsmpa.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftypa.tavg-ol-ht-sea.mon.GLB", + "ocean.msftypa.tavg-rho-ht-sea.mon.GLB", + "ocean.ocontempdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontempmint.tavg-u-hxy-sea.yr.GLB", + "ocean.ocontemppadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemppmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemppsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemprmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemptend.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottempdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottempmint.tavg-u-hxy-sea.yr.GLB", + "ocean.opottemppadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemppmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemppsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemprmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemptend.tavg-ol-hxy-sea.dec.GLB", + "ocean.osaltdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpsmadvect.tavg-ol-hxy-sea.mon.GLB", + "ocean.osaltpsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltrmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osalttend.tavg-ol-hxy-sea.yr.GLB", + "ocean.rsdoabsorb.tavg-ol-hxy-sea.yr.GLB", + "ocean.somint.tavg-u-hxy-sea.yr.GLB", + "ocean.sossq.tavg-u-hxy-sea.mon.GLB", + "ocean.thkcelluo.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcellvo.tavg-ol-hxy-sea.mon.GLB", + "ocean.tnpeo.tavg-u-hxy-sea.yr.GLB", + "ocean.tossq.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.dissi13c.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.dissi13c.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissi14c.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissi14cabio.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.dissi14cabio.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.fg13co2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fg14co2abio.tavg-u-hxy-sea.mon.GLB" + ] + }, + "esm-scen7-vlho-Aer": { + "Core": [ + "atmos.areacella.ti-u-hxy-u.fx.GLB", + "atmos.cl.tavg-al-hxy-u.mon.GLB", + "atmos.cli.tavg-al-hxy-u.mon.GLB", + "atmos.clivi.tavg-u-hxy-u.mon.GLB", + "atmos.clt.tavg-u-hxy-u.day.GLB", + "atmos.clt.tavg-u-hxy-u.mon.GLB", + "atmos.clw.tavg-al-hxy-u.mon.GLB", + "atmos.clwvi.tavg-u-hxy-u.mon.GLB", + "atmos.evspsbl.tavg-u-hxy-u.mon.GLB", + "atmos.hfls.tavg-u-hxy-u.mon.GLB", + "atmos.hfss.tavg-u-hxy-u.mon.GLB", + "atmos.hur.tavg-p19-hxy-air.mon.GLB", + "atmos.hur.tavg-p19-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.6hr.GLB", + "atmos.hurs.tavg-h2m-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.mon.GLB", + "atmos.hus.tavg-p19-hxy-u.day.GLB", + "atmos.hus.tavg-p19-hxy-u.mon.GLB", + "atmos.huss.tavg-h2m-hxy-u.day.GLB", + "atmos.huss.tavg-h2m-hxy-u.mon.GLB", + "atmos.huss.tpt-h2m-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.1hr.GLB", + "atmos.pr.tavg-u-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.day.GLB", + "atmos.pr.tavg-u-hxy-u.mon.GLB", + "atmos.prc.tavg-u-hxy-u.mon.GLB", + "atmos.prsn.tavg-u-hxy-u.mon.GLB", + "atmos.prw.tavg-u-hxy-u.mon.GLB", + "atmos.ps.tavg-u-hxy-u.day.GLB", + "atmos.ps.tavg-u-hxy-u.mon.GLB", + "atmos.psl.tavg-u-hxy-u.day.GLB", + "atmos.psl.tavg-u-hxy-u.mon.GLB", + "atmos.rlds.tavg-u-hxy-u.mon.GLB", + "atmos.rldscs.tavg-u-hxy-u.mon.GLB", + "atmos.rlus.tavg-u-hxy-u.mon.GLB", + "atmos.rluscs.tavg-u-hxy-u.mon.GLB", + "atmos.rlut.tavg-u-hxy-u.mon.GLB", + "atmos.rlutcs.tavg-u-hxy-u.mon.GLB", + "atmos.rsds.tavg-u-hxy-u.day.GLB", + "atmos.rsds.tavg-u-hxy-u.mon.GLB", + "atmos.rsdscs.tavg-u-hxy-u.mon.GLB", + "atmos.rsdt.tavg-u-hxy-u.mon.GLB", + "atmos.rsus.tavg-u-hxy-u.mon.GLB", + "atmos.rsuscs.tavg-u-hxy-u.mon.GLB", + "atmos.rsut.tavg-u-hxy-u.mon.GLB", + "atmos.rsutcs.tavg-u-hxy-u.mon.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.day.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.mon.GLB", + "atmos.sftlf.ti-u-hxy-u.fx.GLB", + "atmos.ta.tavg-p19-hxy-air.day.GLB", + "atmos.ta.tavg-p19-hxy-air.mon.GLB", + "atmos.ta.tpt-p3-hxy-air.6hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.day.GLB", + "atmos.tas.tavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tmax-h2m-hxy-u.day.GLB", + "atmos.tas.tmaxavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tmin-h2m-hxy-u.day.GLB", + "atmos.tas.tminavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tpt-h2m-hxy-u.3hr.GLB", + "atmos.tauu.tavg-u-hxy-u.mon.GLB", + "atmos.tauv.tavg-u-hxy-u.mon.GLB", + "atmos.ts.tavg-u-hxy-u.mon.GLB", + "atmos.ua.tavg-p19-hxy-air.day.GLB", + "atmos.ua.tavg-p19-hxy-air.mon.GLB", + "atmos.ua.tpt-p3-hxy-air.6hr.GLB", + "atmos.uas.tavg-h10m-hxy-u.day.GLB", + "atmos.uas.tavg-h10m-hxy-u.mon.GLB", + "atmos.uas.tpt-h10m-hxy-u.3hr.GLB", + "atmos.va.tavg-p19-hxy-air.day.GLB", + "atmos.va.tavg-p19-hxy-air.mon.GLB", + "atmos.va.tpt-p3-hxy-air.6hr.GLB", + "atmos.vas.tavg-h10m-hxy-u.day.GLB", + "atmos.vas.tavg-h10m-hxy-u.mon.GLB", + "atmos.vas.tpt-h10m-hxy-u.3hr.GLB", + "atmos.wap.tavg-p19-hxy-air.mon.GLB", + "atmos.wap.tavg-p19-hxy-u.day.GLB", + "atmos.zg.tavg-p19-hxy-air.day.GLB", + "atmos.zg.tavg-p19-hxy-air.mon.GLB", + "land.evspsblsoi.tavg-u-hxy-lnd.mon.GLB", + "land.evspsblveg.tavg-u-hxy-lnd.mon.GLB", + "land.lai.tavg-u-hxy-lnd.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.mon.GLB", + "land.mrros.tavg-u-hxy-lnd.mon.GLB", + "land.mrso.tavg-u-hxy-lnd.mon.GLB", + "land.mrsofc.ti-u-hxy-lnd.fx.GLB", + "land.mrsol.tavg-d10cm-hxy-lnd.mon.GLB", + "land.orog.ti-u-hxy-u.fx.GLB", + "land.rootd.ti-u-hxy-lnd.fx.GLB", + "land.sftgif.ti-u-hxy-u.fx.GLB", + "land.slthick.ti-sl-hxy-lnd.fx.GLB", + "landIce.mrfso.tavg-u-hxy-lnd.mon.GLB", + "landIce.snc.tavg-u-hxy-lnd.mon.GLB", + "landIce.snw.tavg-u-hxy-lnd.mon.GLB", + "ocean.areacello.ti-u-hxy-u.fx.GLB", + "ocean.basin.ti-u-hxy-u.fx.GLB", + "ocean.bigthetao.tavg-ol-hxy-sea.mon.GLB", + "ocean.deptho.ti-u-hxy-sea.fx.GLB", + "ocean.hfds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfgeou.ti-u-hxy-sea.fx.GLB", + "ocean.masscello.tavg-ol-hxy-sea.mon.GLB", + "ocean.masscello.ti-ol-hxy-sea.fx.GLB", + "ocean.mlotst.tavg-u-hxy-sea.mon.GLB", + "ocean.sftof.ti-u-hxy-u.fx.GLB", + "ocean.so.tavg-ol-hxy-sea.mon.GLB", + "ocean.sos.tavg-u-hxy-sea.day.GLB", + "ocean.sos.tavg-u-hxy-sea.mon.GLB", + "ocean.tauuo.tavg-u-hxy-sea.mon.GLB", + "ocean.tauvo.tavg-u-hxy-sea.mon.GLB", + "ocean.thetao.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcello.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcello.ti-ol-hxy-sea.fx.GLB", + "ocean.tos.tavg-u-hxy-sea.day.GLB", + "ocean.tos.tavg-u-hxy-sea.mon.GLB", + "ocean.umo.tavg-ol-hxy-sea.mon.GLB", + "ocean.uo.tavg-ol-hxy-sea.mon.GLB", + "ocean.vmo.tavg-ol-hxy-sea.mon.GLB", + "ocean.vo.tavg-ol-hxy-sea.mon.GLB", + "ocean.wmo.tavg-ol-hxy-sea.mon.GLB", + "ocean.wo.tavg-ol-hxy-sea.mon.GLB", + "ocean.zos.tavg-u-hxy-sea.day.GLB", + "ocean.zos.tavg-u-hxy-sea.mon.GLB", + "ocean.zostoga.tavg-u-hm-sea.mon.GLB", + "seaIce.siconc.tavg-u-hxy-u.day.GLB", + "seaIce.siconc.tavg-u-hxy-u.mon.GLB", + "seaIce.simass.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-si.mon.GLB", + "seaIce.sitimefrac.tavg-u-hxy-sea.mon.GLB", + "seaIce.siu.tavg-u-hxy-si.mon.GLB", + "seaIce.siv.tavg-u-hxy-si.mon.GLB", + "seaIce.snd.tavg-u-hxy-sn.mon.GLB", + "seaIce.ts.tavg-u-hxy-si.mon.GLB" + ], + "High": [ + "aerosol.abs550aer.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550bc.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550dust.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550no3.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550oa.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550so4.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550ss.tavg-u-hxy-u.mon.GLB", + "aerosol.airmass.tavg-al-hxy-u.mon.GLB", + "aerosol.aoanh.tavg-al-hxy-u.mon.NH", + "aerosol.bry.tavg-p39-hy-air.mon.GLB", + "aerosol.bs550aer.tpt-al-hxy-u.6hr.GLB", + "aerosol.c2h6.tavg-al-hxy-u.mon.GLB", + "aerosol.c3h6.tavg-al-hxy-u.mon.GLB", + "aerosol.c3h8.tavg-al-hxy-u.mon.GLB", + "aerosol.ccldncl.tavg-u-hxy-ccl.mon.GLB", + "aerosol.ccn.tavg-u-hxy-ccl.mon.30S-90S", + "aerosol.ccn.tavg-u-hxy-ccl.mon.GLB", + "aerosol.ccn1.tavg-al-hxy-u.mon.30S-90S", + "aerosol.ccn1.tavg-al-hxy-u.mon.GLB", + "aerosol.ccnp02.tavg-al-hxy-u.mon.30S-90S", + "aerosol.ccnp02.tavg-al-hxy-u.mon.GLB", + "aerosol.cdnc.tavg-al-hxy-u.mon.30S-90S", + "aerosol.cdnc.tavg-al-hxy-u.mon.GLB", + "aerosol.cfc114.tavg-al-hxy-u.mon.GLB", + "aerosol.ch3coch3.tavg-al-hxy-u.mon.GLB", + "aerosol.cheaqpso4.tavg-al-hxy-u.mon.GLB", + "aerosol.chegpso4.tavg-al-hxy-u.mon.GLB", + "aerosol.chepasoa.tavg-u-hxy-u.mon.GLB", + "aerosol.chepsoa.tavg-u-hxy-u.mon.GLB", + "aerosol.cly.tavg-p39-hy-air.mon.GLB", + "aerosol.co.tavg-al-hxy-u.mon.GLB", + "aerosol.co.tavg-h2m-hxy-u.day.GLB", + "aerosol.cod.tavg-u-hxy-u.day.GLB", + "aerosol.cod.tavg-u-hxy-u.mon.30S-90S", + "aerosol.cod.tavg-u-hxy-u.mon.GLB", + "aerosol.conccn.tavg-al-hxy-u.mon.GLB", + "aerosol.conccn.tpt-u-hs-u.3hr.GLB", + "aerosol.drybc.tavg-u-hxy-u.mon.GLB", + "aerosol.drydust.tavg-u-hxy-u.mon.GLB", + "aerosol.dryno3.tavg-u-hxy-u.mon.GLB", + "aerosol.dryo3.tavg-u-hxy-u.mon.GLB", + "aerosol.dryoa.tavg-u-hxy-u.mon.GLB", + "aerosol.dryso2.tavg-u-hxy-u.mon.GLB", + "aerosol.dryso4.tavg-u-hxy-u.mon.GLB", + "aerosol.dryss.tavg-u-hxy-u.mon.GLB", + "aerosol.ec550aer.tavg-al-hxy-u.mon.GLB", + "aerosol.ec550aer.tpt-u-hxy-u.6hr.GLB", + "aerosol.emiaco.tavg-u-hxy-u.mon.GLB", + "aerosol.emianox.tavg-u-hxy-u.mon.GLB", + "aerosol.emiaoa.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbbc.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbch4.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbco.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbdms.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbnh3.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbnox.tavg-u-hxy-u.mon.GLB", + "aerosol.emibboa.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbso2.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbvoc.tavg-u-hxy-u.mon.GLB", + "aerosol.emibc.tavg-u-hxy-u.mon.GLB", + "aerosol.emibvoc.tavg-u-hxy-u.mon.GLB", + "aerosol.emico.tavg-u-hxy-u.mon.GLB", + "aerosol.emidms.tavg-u-hxy-u.mon.30S-90S", + "aerosol.emidms.tavg-u-hxy-u.mon.GLB", + "aerosol.emidust.tavg-u-hxy-u.mon.GLB", + "aerosol.emiisop.tavg-u-hxy-u.mon.GLB", + "aerosol.emilnox.tavg-al-hxy-u.mon.GLB", + "aerosol.eminh3.tavg-u-hxy-u.mon.GLB", + "aerosol.eminox.tavg-u-hxy-u.mon.GLB", + "aerosol.emioa.tavg-u-hxy-u.mon.GLB", + "aerosol.emiso2.tavg-u-hxy-u.mon.GLB", + "aerosol.emiso4.tavg-u-hxy-u.mon.GLB", + "aerosol.emiss.tavg-u-hxy-u.mon.30S-90S", + "aerosol.emiss.tavg-u-hxy-u.mon.GLB", + "aerosol.emivoc.tavg-u-hxy-u.mon.GLB", + "aerosol.h2o.tavg-al-hxy-u.mon.GLB", + "aerosol.h2o.tavg-p39-hy-air.mon.GLB", + "aerosol.hcfc22.tavg-al-hxy-u.mon.GLB", + "aerosol.hcho.tavg-al-hxy-u.mon.GLB", + "aerosol.hcl.tavg-al-hxy-u.mon.GLB", + "aerosol.hcl.tavg-p39-hy-air.mon.GLB", + "aerosol.hfc125.tavg-al-hxy-u.mon.GLB", + "aerosol.hfc134a.tavg-al-hxy-u.mon.GLB", + "aerosol.hno3.tavg-al-hxy-u.mon.GLB", + "aerosol.hno3.tavg-p39-hy-air.mon.GLB", + "aerosol.ho2.tavg-p39-hy-air.mon.GLB", + "aerosol.isop.tavg-al-hxy-u.mon.GLB", + "aerosol.jno2.tavg-al-hxy-u.mon.GLB", + "aerosol.lossch4.tavg-al-hxy-u.mon.GLB", + "aerosol.lossco.tavg-al-hxy-u.mon.GLB", + "aerosol.lossn2o.tavg-al-hxy-u.mon.GLB", + "aerosol.lwp.tavg-u-hxy-u.mon.GLB", + "aerosol.mmraerh2o.tavg-al-hxy-u.mon.GLB", + "aerosol.mmraerh2o.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmraerh2o.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrbc.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrbc.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrbc.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrbc.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrdust.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrdust.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrdust.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrdust.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrnh4.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrnh4.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrnh4.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrnh4.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrno3.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrno3.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrno3.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrno3.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmroa.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmroa.tavg-al-hxy-u.mon.GLB", + "aerosol.mmroa.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmroa.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrpm1.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrpm1.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrpm2p5.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrpm2p5.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrso4.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrso4.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrso4.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrso4.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrsoa.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrsoa.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrsoa.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrss.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrss.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrss.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrss.tpt-h2m-hs-u.3hr.GLB", + "aerosol.nh50.tavg-al-hxy-u.mon.GLB", + "aerosol.no.tavg-al-hxy-u.mon.GLB", + "aerosol.no2.tavg-al-hxy-u.mon.GLB", + "aerosol.no2.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.noy.tavg-p39-hy-air.mon.GLB", + "aerosol.o3.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.o3.tmax-h2m-hxy-u.day.GLB", + "aerosol.o3loss.tavg-al-hxy-u.mon.GLB", + "aerosol.o3prod.tavg-al-hxy-u.mon.GLB", + "aerosol.od443aer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550aer.tavg-u-hxy-u.day.GLB", + "aerosol.od550aer.tavg-u-hxy-u.mon.30S-90S", + "aerosol.od550aer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550aerh2o.tavg-u-hxy-u.mon.GLB", + "aerosol.od550bb.tavg-u-hxy-u.mon.GLB", + "aerosol.od550bc.tavg-u-hxy-u.mon.GLB", + "aerosol.od550csaer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550dust.tavg-u-hxy-u.mon.GLB", + "aerosol.od550lt1aer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550no3.tavg-u-hxy-u.mon.GLB", + "aerosol.od550oa.tavg-u-hxy-u.mon.GLB", + "aerosol.od550so4.tavg-u-hxy-u.mon.GLB", + "aerosol.od550soa.tavg-u-hxy-u.mon.GLB", + "aerosol.od550ss.tavg-u-hxy-u.mon.GLB", + "aerosol.od865aer.tavg-u-hxy-u.mon.GLB", + "aerosol.oh.tavg-al-hxy-u.mon.GLB", + "aerosol.oh.tavg-p39-hy-air.mon.GLB", + "aerosol.pan.tavg-al-hxy-u.mon.GLB", + "aerosol.photo1d.tavg-al-hxy-u.mon.GLB", + "aerosol.pod0.tsum-u-hxy-u.mon.GLB", + "aerosol.reffccwctop.tavg-u-hxy-cl.mon.GLB", + "aerosol.reffclwtop.tavg-u-hxy-cl.mon.30S-90S", + "aerosol.reffclwtop.tavg-u-hxy-cl.mon.GLB", + "aerosol.rluscsaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rlutaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rlutcsaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rsutaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rsutcsaf.tavg-u-hxy-u.mon.GLB", + "aerosol.sfpm1.tavg-h2m-hxy-u.day.GLB", + "aerosol.sfpm10.tavg-al-hxy-u.mon.30S-90S", + "aerosol.sfpm10.tavg-al-hxy-u.mon.GLB", + "aerosol.sfpm10.tavg-h2m-hxy-u.day.GLB", + "aerosol.sfpm25.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.sfpm25.tavg-h2m-hxy-u.day.GLB", + "aerosol.so2.tavg-al-hxy-u.mon.30S-90S", + "aerosol.so2.tavg-al-hxy-u.mon.GLB", + "aerosol.so2.tavg-h2m-hxy-u.day.GLB", + "aerosol.so2.tpt-h2m-hs-u.3hr.GLB", + "aerosol.tatp.tavg-u-hxy-u.mon.GLB", + "aerosol.toz.tavg-u-hxy-u.day.GLB", + "aerosol.toz.tavg-u-hxy-u.mon.GLB", + "aerosol.tropoz.tavg-u-hxy-u.mon.GLB", + "aerosol.ttop.tavg-u-hxy-cl.mon.GLB", + "aerosol.ua.tavg-10hPa-hxy-air.day.GLB", + "aerosol.vt100.tavg-100hPa-hy-air.mon.GLB", + "aerosol.wa.tavg-al-hxy-u.mon.GLB", + "aerosol.wetbc.tavg-u-hxy-u.mon.GLB", + "aerosol.wetdust.tavg-u-hxy-u.mon.GLB", + "aerosol.wetoa.tavg-u-hxy-u.mon.GLB", + "aerosol.wetso2.tavg-u-hxy-u.mon.GLB", + "aerosol.wetso4.tavg-u-hxy-u.mon.GLB", + "aerosol.wetss.tavg-u-hxy-u.mon.GLB", + "aerosol.zg.tavg-10hPa-hxy-air.day.GLB", + "atmos.albisccp.tavg-u-hxy-cl.mon.30S-90S", + "atmos.bldep.tavg-u-hxy-u.mon.GLB", + "atmos.bldep.tmax-u-hxy-u.day.GLB", + "atmos.bldep.tmin-u-hxy-u.day.GLB", + "atmos.cl.tavg-al-hxy-u.mon.30S-90S", + "atmos.clc.tavg-al-hxy-u.mon.30S-90S", + "atmos.clc.tavg-al-hxy-u.mon.GLB", + "atmos.clcalipso.tavg-220hPa-hxy-air.mon.30S-90S", + "atmos.clcalipso.tavg-220hPa-hxy-air.mon.GLB", + "atmos.clcalipso.tavg-560hPa-hxy-air.mon.30S-90S", + "atmos.clcalipso.tavg-560hPa-hxy-air.mon.GLB", + "atmos.clcalipso.tavg-840hPa-hxy-air.mon.30S-90S", + "atmos.clcalipso.tavg-840hPa-hxy-air.mon.GLB", + "atmos.clcalipso.tavg-h40-hxy-air.mon.30S-90S", + "atmos.cldnci.tavg-u-hxy-cl.mon.GLB", + "atmos.cldncl.tavg-u-hxy-cl.mon.GLB", + "atmos.cldnvi.tavg-u-hxy-u.mon.GLB", + "atmos.cli.tavg-al-hxy-u.mon.30S-90S", + "atmos.clic.tavg-al-hxy-u.mon.30S-90S", + "atmos.clis.tavg-al-hxy-u.mon.30S-90S", + "atmos.clisccp.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clisccp.tavg-p7c-hxy-air.mon.GLB", + "atmos.clivi.tavg-u-hxy-u.mon.30S-90S", + "atmos.clivimodis.tavg-u-hxy-u.mon.30S-90S", + "atmos.clmodis.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clmodis.tavg-p7c-hxy-air.mon.GLB", + "atmos.clmodisice.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clmodisice.tavg-p7c-hxy-air.mon.GLB", + "atmos.clmodisiceReff.tavg-u-hxy-u.mon.GLB", + "atmos.clmodisliquid.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clmodisliquid.tavg-p7c-hxy-air.mon.GLB", + "atmos.clmodisliquidReff.tavg-u-hxy-u.mon.GLB", + "atmos.cls.tavg-al-hxy-u.mon.30S-90S", + "atmos.clt.tavg-u-hxy-u.mon.30S-90S", + "atmos.cltc.tavg-u-hxy-u.mon.GLB", + "atmos.cltcalipso.tavg-u-hxy-u.mon.30S-90S", + "atmos.cltisccp.tavg-u-hxy-u.mon.30S-90S", + "atmos.cltmodis.tavg-u-hxy-u.mon.30S-90S", + "atmos.clw.tavg-al-hxy-u.mon.30S-90S", + "atmos.clwc.tavg-al-hxy-u.mon.30S-90S", + "atmos.clws.tavg-al-hxy-u.mon.30S-90S", + "atmos.clwvi.tavg-u-hxy-u.mon.30S-90S", + "atmos.clwvimodis.tavg-u-hxy-u.mon.30S-90S", + "atmos.co2.tavg-al-hxy-u.mon.GLB", + "atmos.co2.tavg-p19-hxy-air.mon.GLB", + "atmos.co23D.tavg-al-hxy-u.mon.GLB", + "atmos.co2mass.tavg-u-hm-u.mon.GLB", + "atmos.dmc.tavg-alh-hxy-u.mon.30S-90S", + "atmos.edt.tavg-al-hxy-u.mon.30S-90S", + "atmos.evspsbl.tavg-u-hxy-lnd.day.GLB", + "atmos.evu.tavg-al-hxy-u.mon.30S-90S", + "atmos.fco2antt.tavg-u-hxy-u.mon.GLB", + "atmos.fco2fos.tavg-u-hxy-u.mon.GLB", + "atmos.fco2nat.tavg-u-hxy-u.mon.GLB", + "atmos.hfls.tavg-u-hxy-u.mon.30S-90S", + "atmos.hfss.tavg-u-hxy-u.mon.30S-90S", + "atmos.hur.tavg-al-hxy-u.mon.30S-90S", + "atmos.hur.tavg-al-hxy-u.mon.GLB", + "atmos.hur.tavg-p19-hxy-air.mon.30S-90S", + "atmos.hurs.tavg-h2m-hxy-u.mon.30S-90S", + "atmos.hurs.tmax-h2m-hxy-u.day.GLB", + "atmos.hurs.tmin-h2m-hxy-u.day.GLB", + "atmos.hus.tavg-al-hxy-u.mon.30S-90S", + "atmos.hus.tavg-al-hxy-u.mon.GLB", + "atmos.hus.tavg-p19-hxy-u.mon.30S-90S", + "atmos.hus.tpt-al-hxy-u.6hr.GLB", + "atmos.hus.tpt-p7h-hxy-air.6hr.GLB", + "atmos.huss.tavg-h2m-hxy-u.mon.30S-90S", + "atmos.huss.tpt-h2m-hxy-u.1hr.GLB", + "atmos.mc.tavg-alh-hxy-u.mon.GLB", + "atmos.mcd.tavg-alh-hxy-u.mon.30S-90S", + "atmos.mcu.tavg-alh-hxy-u.mon.30S-90S", + "atmos.mcu.tavg-alh-hxy-u.mon.GLB", + "atmos.pctisccp.tavg-u-hxy-cl.mon.30S-90S", + "atmos.pfull.tavg-al-hxy-u.mon.GLB", + "atmos.pfull.tclm-al-hxy-u.mon.30S-90S", + "atmos.phalf.tavg-alh-hxy-u.mon.GLB", + "atmos.pr.tavg-u-hxy-u.mon.30S-90S", + "atmos.pr.tmax-u-hxy-u.day.GLB", + "atmos.pr.tpt-u-hxy-u.6hr.GLB", + "atmos.prc.tavg-u-hxy-u.mon.30S-90S", + "atmos.prra.tavg-u-hxy-lnd.day.GLB", + "atmos.prra.tavg-u-hxy-u.mon.30S-90S", + "atmos.prsn.tavg-u-hxy-u.3hr.GLB", + "atmos.prsn.tavg-u-hxy-u.day.GLB", + "atmos.prsn.tavg-u-hxy-u.mon.30S-90S", + "atmos.prw.tavg-u-hxy-u.day.GLB", + "atmos.prw.tavg-u-hxy-u.mon.30S-90S", + "atmos.ps.tavg-u-hxy-u.1hr.GLB", + "atmos.ps.tavg-u-hxy-u.mon.30S-90S", + "atmos.ps.tpt-u-hxy-u.6hr.GLB", + "atmos.psl.tavg-u-hxy-u.mon.30S-90S", + "atmos.psl.tpt-u-hxy-u.1hr.GLB", + "atmos.psl.tpt-u-hxy-u.6hr.GLB", + "atmos.ptp.tavg-u-hxy-u.mon.GLB", + "atmos.reffcclwtop.tavg-u-hxy-ccl.mon.GLB", + "atmos.reffclic.tavg-al-hxy-ccl.mon.30S-90S", + "atmos.reffclis.tavg-al-hxy-scl.mon.30S-90S", + "atmos.reffclwc.tavg-al-hxy-ccl.mon.30S-90S", + "atmos.reffclws.tavg-al-hxy-scl.mon.30S-90S", + "atmos.reffsclwtop.tavg-u-hxy-scl.mon.GLB", + "atmos.rld.tavg-alh-hxy-u.mon.GLB", + "atmos.rld4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rldcs.tavg-alh-hxy-u.mon.GLB", + "atmos.rldcs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rlds.tavg-u-hxy-u.1hr.GLB", + "atmos.rlds.tavg-u-hxy-u.day.GLB", + "atmos.rlds.tavg-u-hxy-u.mon.30S-90S", + "atmos.rldscs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rlu.tavg-alh-hxy-u.mon.GLB", + "atmos.rlu4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rlucs.tavg-alh-hxy-u.mon.GLB", + "atmos.rlucs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rlus.tavg-u-hxy-u.day.GLB", + "atmos.rlus.tavg-u-hxy-u.mon.30S-90S", + "atmos.rlut.tavg-u-hxy-u.mon.30S-90S", + "atmos.rlut4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rlutcs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rlutcs4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rsd.tavg-alh-hxy-u.mon.GLB", + "atmos.rsd4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsdcs.tavg-alh-hxy-u.mon.GLB", + "atmos.rsdcs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsds.tavg-u-hxy-u.1hr.GLB", + "atmos.rsds.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsdscs.tavg-u-hxy-u.day.GLB", + "atmos.rsdscs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsdt.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsu.tavg-alh-hxy-u.mon.GLB", + "atmos.rsu4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsucs.tavg-alh-hxy-u.mon.GLB", + "atmos.rsucs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsus.tavg-u-hxy-u.day.GLB", + "atmos.rsus.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsuscs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsut.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsut4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rsutcs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsutcs4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rtmt.tavg-u-hxy-u.mon.GLB", + "atmos.rv850.tpt-850hPa-hxy-air.6hr.GLB", + "atmos.scldncl.tavg-u-hxy-scl.mon.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.mon.30S-90S", + "atmos.ta.tavg-al-hxy-u.mon.30S-90S", + "atmos.ta.tavg-al-hxy-u.mon.GLB", + "atmos.ta.tavg-p19-hxy-air.mon.30S-90S", + "atmos.ta.tavg-p39-hy-air.mon.GLB", + "atmos.ta.tpt-al-hxy-u.6hr.GLB", + "atmos.ta.tpt-p7h-hxy-air.6hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.1hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.mon.30S-90S", + "atmos.tas.tmaxavg-h2m-hxy-u.mon.30S-90S", + "atmos.tas.tminavg-h2m-hxy-u.mon.30S-90S", + "atmos.tnt.tavg-al-hxy-u.mon.GLB", + "atmos.tntrl.tavg-al-hxy-u.mon.GLB", + "atmos.tntrs.tavg-al-hxy-u.mon.GLB", + "atmos.ts.tavg-u-hxy-u.mon.30S-90S", + "atmos.ts.tpt-u-hxy-u.6hr.GLB", + "atmos.ua.tavg-al-hxy-u.mon.GLB", + "atmos.ua.tavg-p19-hxy-air.mon.30S-90S", + "atmos.ua.tavg-p39-hy-air.mon.GLB", + "atmos.ua.tpt-al-hxy-u.6hr.GLB", + "atmos.ua.tpt-p7h-hxy-air.6hr.GLB", + "atmos.uas.tavg-h10m-hxy-u.mon.30S-90S", + "atmos.uas.tpt-h10m-hxy-u.1hr.GLB", + "atmos.va.tavg-al-hxy-u.mon.GLB", + "atmos.va.tavg-p19-hxy-air.mon.30S-90S", + "atmos.va.tavg-p39-hy-air.mon.GLB", + "atmos.va.tpt-al-hxy-u.6hr.GLB", + "atmos.va.tpt-p7h-hxy-air.6hr.GLB", + "atmos.vas.tavg-h10m-hxy-u.mon.30S-90S", + "atmos.vas.tpt-h10m-hxy-u.1hr.GLB", + "atmos.wap.tavg-p19-hxy-air.mon.30S-90S", + "atmos.zg.tavg-1000hPa-hxy-air.day.GLB", + "atmos.zg.tavg-500hPa-hxy-air.day.GLB", + "atmos.zg.tavg-al-hxy-u.mon.GLB", + "atmos.zg.tavg-p19-hxy-air.mon.30S-90S", + "atmos.zg.tavg-p39-hy-air.mon.GLB", + "atmos.zg.tpt-500hPa-hxy-air.6hr.GLB", + "atmos.zg.tpt-al-hxy-u.6hr.GLB", + "atmos.zg.tpt-p7h-hxy-air.6hr.GLB", + "atmos.ztp.tavg-u-hxy-u.mon.GLB", + "atmosChem.c2h4.tavg-al-hxy-u.mon.GLB", + "atmosChem.c2h5oh.tavg-al-hxy-u.mon.GLB", + "atmosChem.c4h10.tavg-al-hxy-u.mon.GLB", + "atmosChem.cfc11.tavg-u-hm-u.mon.GLB", + "atmosChem.cfc113.tavg-u-hm-u.mon.GLB", + "atmosChem.cfc12.tavg-u-hm-u.mon.GLB", + "atmosChem.ch3oh.tavg-al-hxy-u.mon.GLB", + "atmosChem.ch4.tavg-al-hxy-u.mon.GLB", + "atmosChem.ch4.tavg-p39-hy-air.mon.GLB", + "atmosChem.ch4losssoil.tavg-u-hxy-u.mon.GLB", + "atmosChem.ch4ref.ti-al-hxy-u.fx.GLB", + "atmosChem.chegph2oo1d.tavg-al-hxy-u.mon.GLB", + "atmosChem.chepnh4.tavg-al-hxy-u.mon.GLB", + "atmosChem.chepno3.tavg-al-hxy-u.mon.GLB", + "atmosChem.dms.tavg-al-hxy-u.mon.30S-90S", + "atmosChem.dms.tavg-al-hxy-u.mon.GLB", + "atmosChem.do3chm.tavg-al-hxy-u.mon.GLB", + "atmosChem.dryh2.tavg-u-hxy-u.mon.GLB", + "atmosChem.dryhno3.tavg-u-hxy-u.mon.GLB", + "atmosChem.drynh3.tavg-u-hxy-u.mon.GLB", + "atmosChem.drynh4.tavg-u-hxy-u.mon.GLB", + "atmosChem.drynoy.tavg-u-hxy-u.mon.GLB", + "atmosChem.e90inst.tpt-al-hxy-u.mon.GLB", + "atmosChem.emiach4.tavg-u-hxy-u.mon.GLB", + "atmosChem.emiavnox.tavg-al-hxy-u.mon.GLB", + "atmosChem.emic2h4.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic2h5oh.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic2h6.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic3h6.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic3h8.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic4h10.tavg-u-hxy-u.mon.GLB", + "atmosChem.emich3oh.tavg-u-hxy-u.mon.GLB", + "atmosChem.emich4.tavg-u-hxy-u.mon.GLB", + "atmosChem.emih2.tavg-u-hxy-u.mon.GLB", + "atmosChem.emilkch4.tavg-u-hxy-u.mon.GLB", + "atmosChem.h2.tavg-al-hxy-u.mon.GLB", + "atmosChem.h2loss.tavg-al-hxy-u.mon.GLB", + "atmosChem.h2prod.tavg-al-hxy-u.mon.GLB", + "atmosChem.hcfc22.tavg-u-hm-u.mon.GLB", + "atmosChem.meanage.tavg-al-hxy-u.mon.GLB", + "atmosChem.meanage.tavg-p39-hy-air.mon.GLB", + "atmosChem.n2o.tavg-al-hxy-u.mon.GLB", + "atmosChem.n2o.tavg-p39-hy-air.mon.GLB", + "atmosChem.o3.tavg-al-hxy-u.mon.GLB", + "atmosChem.o3.tavg-p19-hxy-air.mon.GLB", + "atmosChem.o3.tavg-p39-hy-air.mon.GLB", + "atmosChem.o3.tpt-al-hxy-u.mon.GLB", + "atmosChem.o3ref.tclm-al-hxy-u.fx.GLB", + "atmosChem.o3ref.ti-al-hxy-u.fx.GLB", + "atmosChem.o3ste.tavg-al-hxy-u.mon.GLB", + "atmosChem.rlutch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rlutcsch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rlutcso3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rluto3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsutch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsutcsch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsutcso3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsuto3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.stratch4loss.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropch4loss.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropch4lossoh.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropdo3chm.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropo3ste.tavg-al-hxy-u.mon.GLB", + "atmosChem.wethno3.tavg-al-hxy-u.mon.GLB", + "atmosChem.wetnh3.tavg-u-hxy-u.mon.GLB", + "atmosChem.wetnh4.tavg-u-hxy-u.mon.GLB", + "atmosChem.wetno3.tavg-al-hxy-u.mon.GLB", + "atmosChem.wetnoy.tavg-u-hxy-u.mon.GLB", + "land.albc.tavg-u-hxy-veg.mon.GLB", + "land.areacellr.ti-u-hxy-u.fx.GLB", + "land.baresoilFrac.tavg-u-hxy-u.mon.GLB", + "land.burntFractionAll.tavg-u-hxy-u.mon.GLB", + "land.cGeologicStorage.tavg-u-hxy-u.mon.GLB", + "land.cLand.tavg-u-hxy-lnd.mon.GLB", + "land.cLitter.tavg-u-hxy-lnd.mon.GLB", + "land.cnc.tavg-u-hxy-u.mon.GLB", + "land.cProduct.tavg-u-hxy-lnd.mon.GLB", + "land.cropFrac.tavg-u-hxy-u.mon.GLB", + "land.cSoil.tavg-d100cm-hxy-lnd.mon.GLB", + "land.cSoil.tavg-u-hxy-lnd.mon.GLB", + "land.cVeg.tavg-u-hxy-lnd.mon.GLB", + "land.dcw.tavg-u-hxy-lnd.day.GLB", + "land.dslw.tavg-u-hxy-lnd.day.GLB", + "land.evspsblpot.tavg-u-hxy-lnd.day.GLB", + "land.evspsblpot.tavg-u-hxy-lnd.mon.GLB", + "land.fAnthDisturb.tavg-u-hxy-lnd.mon.GLB", + "land.fBNF.tavg-u-hxy-lnd.mon.GLB", + "land.fCLandToOcean.tavg-u-hxy-lnd.mon.GLB", + "land.fDeforestToAtmos.tavg-u-hxy-lnd.mon.GLB", + "land.fDeforestToProduct.tavg-u-hxy-lnd.mon.GLB", + "land.fFire.tavg-u-hxy-lnd.mon.GLB", + "land.fFireAll.tavg-u-hxy-lnd.mon.GLB", + "land.fFireNat.tavg-u-hxy-lnd.mon.GLB", + "land.fHarvestToAtmos.tavg-u-hxy-lnd.mon.GLB", + "land.fHarvestToGeologicStorage.tavg-u-hxy-lnd.mon.GLB", + "land.fHarvestToProduct.tavg-u-hxy-lnd.mon.GLB", + "land.fLitterSoil.tavg-u-hxy-lnd.mon.GLB", + "land.fN2O.tavg-u-hxy-lnd.mon.GLB", + "land.fNAnthDisturb.tavg-u-hxy-lnd.mon.GLB", + "land.fNdep.tavg-u-hxy-lnd.mon.GLB", + "land.fNfert.tavg-u-hxy-lnd.mon.GLB", + "land.fNLandToOcean.tavg-u-hxy-lnd.mon.GLB", + "land.fNLitterSoil.tavg-u-hxy-lnd.mon.GLB", + "land.fNloss.tavg-u-hxy-lnd.mon.GLB", + "land.fNnetmin.tavg-u-hxy-lnd.mon.GLB", + "land.fNOx.tavg-u-hxy-lnd.mon.GLB", + "land.fNProduct.tavg-u-hxy-lnd.mon.GLB", + "land.fNup.tavg-u-hxy-lnd.mon.GLB", + "land.fNVegLitter.tavg-u-hxy-lnd.mon.GLB", + "land.fNVegSoil.tavg-u-hxy-lnd.mon.GLB", + "land.fProductDecomp.tavg-u-hxy-lnd.mon.GLB", + "land.fVegLitter.tavg-u-hxy-lnd.mon.GLB", + "land.fVegSoil.tavg-u-hxy-lnd.mon.GLB", + "land.gpp.tavg-u-hxy-lnd.mon.GLB", + "land.grassFrac.tavg-u-hxy-u.mon.GLB", + "land.landCoverFrac.tavg-u-hxy-u.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.day.GLB", + "land.mrrob.tavg-u-hxy-lnd.day.GLB", + "land.mrros.tavg-u-hxy-lnd.day.GLB", + "land.mrsfl.tavg-sl-hxy-lnd.day.GLB", + "land.mrsfl.tavg-sl-hxy-lnd.mon.GLB", + "land.mrsll.tavg-sl-hxy-lnd.day.GLB", + "land.mrsll.tavg-sl-hxy-lnd.mon.GLB", + "land.mrso.tavg-u-hxy-lnd.day.GLB", + "land.mrsol.tavg-d10cm-hxy-lnd.day.GLB", + "land.mrsol.tavg-sl-hxy-lnd.day.GLB", + "land.mrsol.tavg-sl-hxy-lnd.mon.GLB", + "land.mrsow.tavg-u-hxy-lnd.day.GLB", + "land.mrtws.tavg-u-hxy-lnd.day.GLB", + "land.mrtws.tavg-u-hxy-lnd.mon.GLB", + "land.nbp.tavg-u-hxy-lnd.mon.GLB", + "land.nep.tavg-u-hxy-lnd.mon.GLB", + "land.nLand.tavg-u-hxy-lnd.mon.GLB", + "land.nLitter.tavg-u-hxy-lnd.mon.GLB", + "land.nMineral.tavg-u-hxy-lnd.mon.GLB", + "land.npp.tavg-u-hxy-lnd.mon.GLB", + "land.nProduct.tavg-u-hxy-lnd.mon.GLB", + "land.nSoil.tavg-u-hxy-lnd.mon.GLB", + "land.nVeg.tavg-u-hxy-lnd.mon.GLB", + "land.pastureFrac.tavg-u-hxy-u.mon.GLB", + "land.prveg.tavg-u-hxy-lnd.mon.GLB", + "land.ra.tavg-u-hxy-lnd.mon.GLB", + "land.residualFrac.tavg-u-hxy-u.mon.GLB", + "land.rh.tavg-u-hxy-lnd.mon.GLB", + "land.rivi.tavg-u-hxy-lnd.day.GLB", + "land.rivo.tavg-u-hxy-lnd.day.GLB", + "land.rsds.tavg-u-hxy-sn.mon.GLB", + "land.rsus.tavg-u-hxy-sn.mon.GLB", + "land.shrubFrac.tavg-u-hxy-u.mon.GLB", + "land.tas.tavg-u-hxy-u.1hr.GLB", + "land.tran.tavg-u-hxy-lnd.mon.GLB", + "land.treeFrac.tavg-u-hxy-u.mon.GLB", + "land.tsl.tavg-sl-hxy-lnd.mon.GLB", + "land.tslsi.tavg-u-hxy-u.day.GLB", + "land.vegFrac.tavg-u-hxy-u.mon.GLB", + "land.vegHeight.tavg-u-hxy-veg.mon.GLB", + "land.wetlandCH4.tavg-u-hxy-lnd.mon.GLB", + "land.wtd.tavg-u-hxy-lnd.day.GLB", + "landIce.snd.tavg-u-hxy-lnd.mon.GLB", + "landIce.snw.tavg-u-hxy-lnd.day.GLB", + "ocean.absscint.tavg-op4-hxy-sea.mon.GLB", + "ocean.agessc.tavg-ol-hxy-sea.mon.GLB", + "ocean.bigthetao.tavg-ol-hm-sea.mon.GLB", + "ocean.bigthetao.tavg-ol-hxy-sea.dec.GLB", + "ocean.bigthetao.tavg-op20bar-hxy-sea.day.GLB", + "ocean.chcint.tavg-op4-hxy-sea.mon.GLB", + "ocean.ficeberg.tavg-ol-hxy-sea.mon.GLB", + "ocean.friver.tavg-u-hxy-sea.mon.GLB", + "ocean.hfbasin.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpmadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpmdiff.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpsmadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfds.tavg-u-hxy-sea.mon.30S-90S", + "ocean.hfx.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfx.tavg-u-hxy-sea.day.GLB", + "ocean.hfx.tavg-u-hxy-sea.mon.GLB", + "ocean.hfy.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfy.tavg-u-hxy-sea.day.GLB", + "ocean.hfy.tavg-u-hxy-sea.mon.GLB", + "ocean.htovgyre.tavg-u-hyb-sea.mon.GLB", + "ocean.htovovrt.tavg-u-hyb-sea.mon.GLB", + "ocean.masscello.tavg-ol-hxy-sea.dec.GLB", + "ocean.masso.tavg-u-hm-sea.dec.GLB", + "ocean.masso.tavg-u-hm-sea.mon.GLB", + "ocean.mlotst.tavg-u-hxy-sea.day.GLB", + "ocean.mlotst.tavg-u-hxy-sea.mon.30S-90S", + "ocean.mlotst.tmax-u-hxy-sea.mon.GLB", + "ocean.mlotst.tmin-u-hxy-sea.mon.GLB", + "ocean.mpw.tavg-u-hxy-sea.mon.GLB", + "ocean.mpw.tpt-u-hxy-sea.3hr.GLB", + "ocean.mpwswell.tavg-u-hxy-sea.mon.GLB", + "ocean.mpwswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.mpwwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.mpwwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.msftbarot.tavg-u-hxy-sea.mon.GLB", + "ocean.msftm.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftm.tavg-rho-hyb-sea.mon.GLB", + "ocean.msfty.tavg-ol-ht-sea.mon.GLB", + "ocean.msfty.tavg-rho-ht-sea.mon.GLB", + "ocean.obvfsq.tavg-ol-hxy-sea.mon.GLB", + "ocean.pbo.tavg-u-hxy-sea.mon.GLB", + "ocean.pfscint.tavg-op4-hxy-sea.mon.GLB", + "ocean.phcint.tavg-op4-hxy-sea.mon.GLB", + "ocean.pso.tavg-u-hxy-sea.mon.GLB", + "ocean.scint.tavg-op4-hxy-sea.mon.GLB", + "ocean.sduo.tavg-u-hxy-sea.mon.GLB", + "ocean.sduo.tpt-u-hxy-sea.3hr.GLB", + "ocean.sdvo.tavg-u-hxy-sea.mon.GLB", + "ocean.sdvo.tpt-u-hxy-sea.3hr.GLB", + "ocean.sfx.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfx.tavg-u-hxy-sea.mon.GLB", + "ocean.sfy.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfy.tavg-u-hxy-sea.mon.GLB", + "ocean.sltbasin.tavg-u-hyb-sea.mon.GLB", + "ocean.sltovgyre.tavg-u-hyb-sea.mon.GLB", + "ocean.sltovovrt.tavg-u-hyb-sea.mon.GLB", + "ocean.so.tavg-ol-hm-sea.mon.GLB", + "ocean.so.tavg-ol-hxy-sea.dec.GLB", + "ocean.so.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.sob.tavg-u-hxy-sea.mon.GLB", + "ocean.sos.tavg-u-hm-sea.mon.30S-90S", + "ocean.sos.tavg-u-hm-sea.mon.GLB", + "ocean.swh.tavg-u-hxy-sea.mon.GLB", + "ocean.swh.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhmax.tmax-u-hxy-sea.mon.GLB", + "ocean.swhmax.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhswell.tavg-u-hxy-sea.mon.GLB", + "ocean.swhswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.swhwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.tauuo.tavg-u-hxy-sea.3hr.GLB", + "ocean.tauuo.tavg-u-hxy-sea.dec.GLB", + "ocean.tauvo.tavg-u-hxy-sea.3hr.GLB", + "ocean.tauvo.tavg-u-hxy-sea.dec.GLB", + "ocean.thetao.tavg-ol-hm-sea.mon.GLB", + "ocean.thetao.tavg-ol-hxy-sea.dec.GLB", + "ocean.thetao.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.thetao.tavg-op20bar-hxy-sea.day.GLB", + "ocean.thkcello.tavg-ol-hxy-sea.dec.GLB", + "ocean.tob.tavg-u-hxy-sea.mon.GLB", + "ocean.tos.tavg-u-hm-sea.mon.GLB", + "ocean.tos.tavg-u-hxy-sea.mon.30S-90S", + "ocean.tos.tpt-u-hxy-sea.3hr.GLB", + "ocean.tossq.tavg-u-hxy-sea.day.GLB", + "ocean.umo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.uo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.uos.tavg-u-hxy-sea.day.GLB", + "ocean.vmo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.vo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.volcello.tavg-ol-hxy-sea.dec.GLB", + "ocean.volcello.tavg-ol-hxy-sea.mon.GLB", + "ocean.volcello.tavg-ol-hxy-sea.yr.GLB", + "ocean.volcello.ti-ol-hxy-sea.fx.GLB", + "ocean.volo.tavg-u-hm-sea.dec.GLB", + "ocean.volo.tavg-u-hm-sea.mon.GLB", + "ocean.vos.tavg-u-hxy-sea.day.GLB", + "ocean.wdir.tavg-u-hxy-sea.mon.GLB", + "ocean.wdir.tpt-u-hxy-sea.3hr.GLB", + "ocean.wdirswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wdirswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wdirwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wdirwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.wfcorr.tavg-u-hxy-sea.mon.GLB", + "ocean.wfo.tavg-u-hxy-sea.mon.GLB", + "ocean.wmo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.wo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.wpdir.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdir.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpdirswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdirswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpdirwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdirwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpp.tavg-u-hxy-sea.mon.GLB", + "ocean.wpp.tpt-u-hxy-sea.3hr.GLB", + "ocean.wppswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wppswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wppwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wppwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.zos.tavg-u-hxy-sea.mon.30S-90S", + "ocean.zossq.tavg-u-hxy-sea.mon.GLB", + "ocean.zostoga.tavg-u-hm-sea.day.GLB", + "ocnBgchem.bacc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.calc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chl.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chl.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chlcalc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chldiat.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chldiat.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chldiaz.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chldiaz.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chlmisc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chlmisc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chlpico.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chlpico.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.detoc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dfe.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.dfe.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissic.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.dissic.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissoc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dmso.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.expc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.expcalc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.fgco2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fsfe.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fsn.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.graz.tavg-ol-hxy-sea.mon.30S-90S", + "ocnBgchem.icfriver.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intdic.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intdoc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intparag.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbfe.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbn.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbp.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbsi.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpcalcite.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpn2.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpoc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpp.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpp.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppcalc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppdiat.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppdiaz.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppmisc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppnitrate.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpppico.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.nh4.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.nh4.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.no3.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.no3.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.o2.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.ocfriver.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.ph.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.ph.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phyc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phyc.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.phyc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phycalc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phycalc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phydiat.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phydiat.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phydiaz.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phydiaz.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phymisc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phymisc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phypico.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phypico.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.po4.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.pp.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.si.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.spco2.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.spco2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.talk.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zmeso.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zmeso.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zmicro.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zmicro.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zmisc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zmisc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zooc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zooc.tavg-ol-hxy-sea.mon.GLB", + "seaIce.evspsbl.tavg-u-hxy-si.mon.GLB", + "seaIce.prra.tavg-u-hxy-si.mon.GLB", + "seaIce.prsn.tavg-u-hxy-si.mon.GLB", + "seaIce.rlds.tavg-u-hxy-si.mon.GLB", + "seaIce.rlus.tavg-u-hxy-si.mon.GLB", + "seaIce.rsds.tavg-u-hxy-si.day.GLB", + "seaIce.rsds.tavg-u-hxy-si.mon.GLB", + "seaIce.rsus.tavg-u-hxy-si.day.GLB", + "seaIce.rsus.tavg-u-hxy-si.mon.GLB", + "seaIce.sbl.tavg-u-hxy-si.mon.GLB", + "seaIce.siage.tavg-u-hxy-si.day.GLB", + "seaIce.siage.tavg-u-hxy-si.mon.30S-90S", + "seaIce.siarea.tavg-u-hm-u.mon.NH", + "seaIce.siarea.tavg-u-hm-u.mon.SH", + "seaIce.siconc.tavg-u-hxy-u.mon.30S-90S", + "seaIce.siconca.tavg-u-hxy-u.day.GLB", + "seaIce.siconca.tavg-u-hxy-u.mon.GLB", + "seaIce.sidconcdyn.tavg-u-hxy-sea.mon.GLB", + "seaIce.sidconcth.tavg-u-hxy-sea.mon.GLB", + "seaIce.sidmassdyn.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthsi.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthwat.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmeltbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmeltlat.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmelttop.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassth.tavg-u-hxy-si.mon.GLB", + "seaIce.sieqthick.tavg-u-hxy-si.mon.GLB", + "seaIce.siextent.tavg-u-hm-u.mon.NH", + "seaIce.siextent.tavg-u-hm-u.mon.SH", + "seaIce.siflcondbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflcondtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sifllattop.tavg-u-hxy-si.mon.GLB", + "seaIce.siflsensbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflsenstop.tavg-u-hxy-si.mon.GLB", + "seaIce.siflswdbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sihc.tavg-u-hxy-sea.mon.GLB", + "seaIce.sisndmassdyn.tavg-u-hxy-si.mon.GLB", + "seaIce.sisndmasssi.tavg-u-hxy-si.mon.GLB", + "seaIce.sisndmasswind.tavg-u-hxy-si.mon.GLB", + "seaIce.sisnhc.tavg-u-hxy-si.mon.GLB", + "seaIce.sisnmass.tavg-u-hm-u.mon.NH", + "seaIce.sisnmass.tavg-u-hm-u.mon.SH", + "seaIce.sispeed.tavg-u-hxy-si.day.GLB", + "seaIce.sispeed.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-si.day.GLB", + "seaIce.sithick.tavg-u-hxy-si.mon.30S-90S", + "seaIce.sitimefrac.tavg-u-hxy-sea.day.GLB", + "seaIce.sitimefrac.tavg-u-hxy-sea.mon.30S-90S", + "seaIce.siu.tavg-u-hxy-si.day.GLB", + "seaIce.siu.tavg-u-hxy-si.mon.30S-90S", + "seaIce.siv.tavg-u-hxy-si.day.GLB", + "seaIce.siv.tavg-u-hxy-si.mon.30S-90S", + "seaIce.sivol.tavg-u-hm-u.mon.NH", + "seaIce.sivol.tavg-u-hm-u.mon.SH", + "seaIce.snc.tavg-u-hxy-si.mon.GLB", + "seaIce.snd.tavg-u-hxy-sn.day.GLB", + "seaIce.snd.tavg-u-hxy-sn.mon.30S-90S", + "seaIce.snm.tavg-u-hxy-si.mon.GLB", + "seaIce.snw.tavg-u-hxy-si.mon.GLB", + "seaIce.ts.tavg-u-hxy-si.day.GLB", + "seaIce.ts.tavg-u-hxy-si.mon.30S-90S" + ], + "Medium": [ + "atmos.noaahi2m.tavg-h2m-hxy-u.day.GLB", + "atmos.noaahi2m.tmax-h2m-hxy-u.day.GLB", + "atmos.rls.tavg-u-hxy-u.day.GLB", + "atmos.rls.tavg-u-hxy-u.mon.GLB", + "atmos.rss.tavg-u-hxy-u.day.GLB", + "atmos.rss.tavg-u-hxy-u.mon.GLB", + "atmos.wbgt.tavg-h2m-hxy-u.day.GLB", + "atmos.wbgt.tmax-h2m-hxy-u.day.GLB", + "land.cLeaf.tavg-u-hxy-lnd.mon.GLB", + "land.cLitterCwd.tavg-u-hxy-lnd.mon.GLB", + "land.cLitterSubSurf.tavg-u-hxy-lnd.mon.GLB", + "land.cLitterSurf.tavg-u-hxy-lnd.mon.GLB", + "land.cOther.tavg-u-hxy-lnd.mon.GLB", + "land.cRoot.tavg-u-hxy-lnd.mon.GLB", + "land.cropFracC3.tavg-u-hxy-u.mon.GLB", + "land.cropFracC4.tavg-u-hxy-u.mon.GLB", + "land.cSoil.tavg-sl-hxy-lnd.mon.GLB", + "land.cSoilPools.tavg-u-hxy-lnd.mon.GLB", + "land.cStem.tavg-u-hxy-lnd.mon.GLB", + "land.cVeg.tavg-u-hxy-ng.mon.GLB", + "land.cVeg.tavg-u-hxy-shb.mon.GLB", + "land.cVeg.tavg-u-hxy-tree.mon.GLB", + "land.fLitterFire.tavg-u-hxy-lnd.mon.GLB", + "land.fNgas.tavg-u-hxy-lnd.mon.GLB", + "land.fNgasFire.tavg-u-hxy-lnd.mon.GLB", + "land.fNgasNonFire.tavg-u-hxy-lnd.mon.GLB", + "land.fNleach.tavg-u-hxy-lnd.mon.GLB", + "land.fVegFire.tavg-u-hxy-lnd.mon.GLB", + "land.fVegLitterMortality.tavg-u-hxy-lnd.mon.GLB", + "land.fVegLitterSenescence.tavg-u-hxy-lnd.mon.GLB", + "land.fVegSoilMortality.tavg-u-hxy-lnd.mon.GLB", + "land.fVegSoilSenescence.tavg-u-hxy-lnd.mon.GLB", + "land.gpp.tavg-u-hxy-ng.mon.GLB", + "land.gpp.tavg-u-hxy-shb.mon.GLB", + "land.gpp.tavg-u-hxy-tree.mon.GLB", + "land.grassFracC3.tavg-u-hxy-u.mon.GLB", + "land.grassFracC4.tavg-u-hxy-u.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.3hr.GLB", + "land.mrros.tavg-u-hxy-lnd.3hr.GLB", + "land.mrsol.tpt-d10cm-hxy-lnd.3hr.GLB", + "land.nLeaf.tavg-u-hxy-lnd.mon.GLB", + "land.nLitterCwd.tavg-u-hxy-lnd.mon.GLB", + "land.nLitterSubSurf.tavg-u-hxy-lnd.mon.GLB", + "land.nLitterSurf.tavg-u-hxy-lnd.mon.GLB", + "land.nMineralNH4.tavg-u-hxy-lnd.mon.GLB", + "land.nMineralNO3.tavg-u-hxy-lnd.mon.GLB", + "land.nOther.tavg-u-hxy-lnd.mon.GLB", + "land.npp.tavg-u-hxy-ng.mon.GLB", + "land.npp.tavg-u-hxy-shb.mon.GLB", + "land.npp.tavg-u-hxy-tree.mon.GLB", + "land.nppLeaf.tavg-u-hxy-lnd.mon.GLB", + "land.nppOther.tavg-u-hxy-lnd.mon.GLB", + "land.nppRoot.tavg-u-hxy-lnd.mon.GLB", + "land.nppStem.tavg-u-hxy-lnd.mon.GLB", + "land.nRoot.tavg-u-hxy-lnd.mon.GLB", + "land.nStem.tavg-u-hxy-lnd.mon.GLB", + "land.pastureFracC3.tavg-u-hxy-u.mon.GLB", + "land.pastureFracC4.tavg-u-hxy-u.mon.GLB", + "land.ra.tavg-u-hxy-ng.mon.GLB", + "land.ra.tavg-u-hxy-shb.mon.GLB", + "land.ra.tavg-u-hxy-tree.mon.GLB", + "land.raLeaf.tavg-u-hxy-lnd.mon.GLB", + "land.raOther.tavg-u-hxy-lnd.mon.GLB", + "land.raRoot.tavg-u-hxy-lnd.mon.GLB", + "land.raStem.tavg-u-hxy-lnd.mon.GLB", + "land.rh.tavg-u-hxy-ng.mon.GLB", + "land.rh.tavg-u-hxy-shb.mon.GLB", + "land.rh.tavg-u-hxy-tree.mon.GLB", + "land.rhLitter.tavg-u-hxy-lnd.mon.GLB", + "land.rhSoil.tavg-u-hxy-lnd.mon.GLB", + "land.treeFracBdlDcd.tavg-u-hxy-u.mon.GLB", + "land.treeFracBdlEvg.tavg-u-hxy-u.mon.GLB", + "land.treeFracNdlDcd.tavg-u-hxy-u.mon.GLB", + "land.treeFracNdlEvg.tavg-u-hxy-u.mon.GLB", + "land.vegHeight.tavg-u-hxy-ng.mon.GLB", + "land.vegHeight.tavg-u-hxy-shb.mon.GLB", + "land.vegHeight.tavg-u-hxy-tree.mon.GLB", + "land.wetlandCH4cons.tavg-u-hxy-lnd.mon.GLB", + "land.wetlandCH4prod.tavg-u-hxy-lnd.mon.GLB", + "land.wetlandFrac.tavg-u-hxy-u.mon.GLB", + "ocean.evspsbl.tavg-u-hxy-ifs.mon.GLB", + "ocean.ficeberg.tavg-u-hxy-sea.mon.GLB", + "ocean.hfacrossline.tavg-u-ht-sea.mon.GLB", + "ocean.hfevapds.tavg-u-hxy-ifs.mon.GLB", + "ocean.hfibthermds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfibthermds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfrainds.tavg-u-hxy-ifs.mon.GLB", + "ocean.hfrunoffds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfrunoffds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfsnthermds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfsnthermds.tavg-u-hxy-sea.mon.GLB", + "ocean.mfo.tavg-u-ht-sea.mon.GLB", + "ocean.sf6.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfacrossline.tavg-u-ht-sea.mon.GLB", + "ocean.sfdsi.tavg-u-hxy-sea.mon.GLB", + "ocean.sfriver.tavg-u-hxy-sea.mon.GLB", + "ocean.siflfwbot.tavg-u-hxy-sea.mon.GLB", + "ocean.so.tavg-ol-hxy-sea.day.GLB", + "ocean.tnkebto.tavg-u-hxy-sea.yr.GLB", + "ocean.vsf.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfcorr.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfevap.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfpr.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfriver.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfsit.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.arag.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.arag.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.calc.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.calc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chl.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.chlcalc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dmso.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.epn.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.epp.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.expc.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.expcalc.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.fgdms.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fric.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.froc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.graz.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.intppcalc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppdiat.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppdiaz.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppmisc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppnitrate.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intpppico.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.o2.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.ph.tavg-op20bar-hxy-sea.day.GLB", + "seaIce.sfdsi.tavg-u-hxy-si.mon.GLB", + "seaIce.siage.tavg-u-hxy-si.mon.GLB", + "seaIce.siarea.tavg-u-hm-u.day.NH", + "seaIce.siarea.tavg-u-hm-u.day.SH", + "seaIce.siareaacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.sicompstren.tavg-u-hxy-si.mon.GLB", + "seaIce.sidivvel.tpt-u-hxy-si.mon.GLB", + "seaIce.sidmasstranx.tavg-u-hxy-u.mon.GLB", + "seaIce.sidmasstrany.tavg-u-hxy-u.mon.GLB", + "seaIce.sidragbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidragtop.tavg-u-hxy-si.mon.GLB", + "seaIce.siextent.tavg-u-hm-u.day.NH", + "seaIce.siextent.tavg-u-hm-u.day.SH", + "seaIce.sifb.tavg-u-hxy-si.mon.GLB", + "seaIce.siflfwbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflfwdrain.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcecoriolx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcecorioly.tavg-u-hxy-si.mon.GLB", + "seaIce.siforceintstrx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforceintstry.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcetiltx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcetilty.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdconc.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdsnconc.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdsnthick.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdthick.tavg-u-hxy-si.mon.GLB", + "seaIce.simassacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.simpconc.tavg-u-hxy-si.mon.GLB", + "seaIce.simpeffconc.tavg-u-hxy-si.mon.GLB", + "seaIce.simprefrozen.tavg-u-hxy-simp.mon.GLB", + "seaIce.simpthick.tavg-u-hxy-simp.mon.GLB", + "seaIce.sirdgconc.tavg-u-hxy-si.mon.GLB", + "seaIce.sisali.tavg-u-hxy-si.mon.GLB", + "seaIce.sisaltmass.tavg-u-hxy-si.mon.GLB", + "seaIce.sishearvel.tpt-u-hxy-si.mon.GLB", + "seaIce.sisnmass.tavg-u-hm-u.day.NH", + "seaIce.sisnmass.tavg-u-hm-u.day.SH", + "seaIce.sisnmassacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.sistressave.tpt-u-hxy-si.mon.GLB", + "seaIce.sistressmax.tpt-u-hxy-si.mon.GLB", + "seaIce.sistrxdtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sistrxubot.tavg-u-hxy-si.mon.GLB", + "seaIce.sistrydtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sistryubot.tavg-u-hxy-si.mon.GLB", + "seaIce.sitempbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sitempsnic.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-sir.mon.GLB", + "seaIce.sivol.tavg-u-hm-u.day.NH", + "seaIce.sivol.tavg-u-hm-u.day.SH" + ], + "Low": [ + "aerosol.sfpm1.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.sfpm10.tavg-h2m-hxy-u.1hr.GLB", + "atmos.hurs.tavg-h2m-hxy-u.1hr.GLB", + "land.c13Land.tavg-u-hxy-lnd.mon.GLB", + "land.c13Litter.tavg-u-hxy-lnd.mon.GLB", + "land.c13Soil.tavg-u-hxy-lnd.mon.GLB", + "land.c13Veg.tavg-u-hxy-lnd.mon.GLB", + "land.c14Land.tavg-u-hxy-lnd.mon.GLB", + "land.c14Litter.tavg-u-hxy-lnd.mon.GLB", + "land.c14Soil.tavg-u-hxy-lnd.mon.GLB", + "land.c14Veg.tavg-u-hxy-lnd.mon.GLB", + "land.gppc13.tavg-u-hxy-lnd.mon.GLB", + "land.gppc14.tavg-u-hxy-lnd.mon.GLB", + "land.netAtmosLandC13Flux.tavg-u-hxy-lnd.mon.GLB", + "land.netAtmosLandC14Flux.tavg-u-hxy-lnd.mon.GLB", + "land.rac13.tavg-u-hxy-lnd.mon.GLB", + "land.rac14.tavg-u-hxy-lnd.mon.GLB", + "land.rhc13.tavg-u-hxy-lnd.mon.GLB", + "land.rhc14.tavg-u-hxy-lnd.mon.GLB", + "ocean.difmxybo.tavg-ol-hxy-sea.yr.GLB", + "ocean.difmxylo.tavg-ol-hxy-sea.yr.GLB", + "ocean.diftrblo.tavg-ol-hxy-sea.yr.GLB", + "ocean.diftrelo.tavg-ol-hxy-sea.yr.GLB", + "ocean.difvho.tavg-ol-hxy-sea.yr.GLB", + "ocean.difvso.tavg-ol-hxy-sea.yr.GLB", + "ocean.dispkexyfo.tavg-u-hxy-sea.yr.GLB", + "ocean.dxto.ti-u-hxy-u.fx.GLB", + "ocean.dxuo.ti-u-hxy-u.fx.GLB", + "ocean.dxvo.ti-u-hxy-u.fx.GLB", + "ocean.dyto.ti-u-hxy-u.fx.GLB", + "ocean.dyuo.ti-u-hxy-u.fx.GLB", + "ocean.dyvo.ti-u-hxy-u.fx.GLB", + "ocean.mlotstsq.tavg-u-hxy-sea.mon.GLB", + "ocean.msftmmpa.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftmmpa.tavg-rho-hyb-sea.mon.GLB", + "ocean.msftmsmpa.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftypa.tavg-ol-ht-sea.mon.GLB", + "ocean.msftypa.tavg-rho-ht-sea.mon.GLB", + "ocean.ocontempdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontempmint.tavg-u-hxy-sea.yr.GLB", + "ocean.ocontemppadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemppmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemppsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemprmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemptend.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottempdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottempmint.tavg-u-hxy-sea.yr.GLB", + "ocean.opottemppadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemppmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemppsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemprmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemptend.tavg-ol-hxy-sea.dec.GLB", + "ocean.osaltdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpsmadvect.tavg-ol-hxy-sea.mon.GLB", + "ocean.osaltpsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltrmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osalttend.tavg-ol-hxy-sea.yr.GLB", + "ocean.rsdoabsorb.tavg-ol-hxy-sea.yr.GLB", + "ocean.somint.tavg-u-hxy-sea.yr.GLB", + "ocean.sossq.tavg-u-hxy-sea.mon.GLB", + "ocean.thkcelluo.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcellvo.tavg-ol-hxy-sea.mon.GLB", + "ocean.tnpeo.tavg-u-hxy-sea.yr.GLB", + "ocean.tossq.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.dissi13c.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.dissi13c.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissi14c.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissi14cabio.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.dissi14cabio.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.fg13co2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fg14co2abio.tavg-u-hxy-sea.mon.GLB" + ] + }, + "esm-scen7-vlho-AQ": { + "Core": [ + "atmos.areacella.ti-u-hxy-u.fx.GLB", + "atmos.cl.tavg-al-hxy-u.mon.GLB", + "atmos.cli.tavg-al-hxy-u.mon.GLB", + "atmos.clivi.tavg-u-hxy-u.mon.GLB", + "atmos.clt.tavg-u-hxy-u.day.GLB", + "atmos.clt.tavg-u-hxy-u.mon.GLB", + "atmos.clw.tavg-al-hxy-u.mon.GLB", + "atmos.clwvi.tavg-u-hxy-u.mon.GLB", + "atmos.evspsbl.tavg-u-hxy-u.mon.GLB", + "atmos.hfls.tavg-u-hxy-u.mon.GLB", + "atmos.hfss.tavg-u-hxy-u.mon.GLB", + "atmos.hur.tavg-p19-hxy-air.mon.GLB", + "atmos.hur.tavg-p19-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.6hr.GLB", + "atmos.hurs.tavg-h2m-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.mon.GLB", + "atmos.hus.tavg-p19-hxy-u.day.GLB", + "atmos.hus.tavg-p19-hxy-u.mon.GLB", + "atmos.huss.tavg-h2m-hxy-u.day.GLB", + "atmos.huss.tavg-h2m-hxy-u.mon.GLB", + "atmos.huss.tpt-h2m-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.1hr.GLB", + "atmos.pr.tavg-u-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.day.GLB", + "atmos.pr.tavg-u-hxy-u.mon.GLB", + "atmos.prc.tavg-u-hxy-u.mon.GLB", + "atmos.prsn.tavg-u-hxy-u.mon.GLB", + "atmos.prw.tavg-u-hxy-u.mon.GLB", + "atmos.ps.tavg-u-hxy-u.day.GLB", + "atmos.ps.tavg-u-hxy-u.mon.GLB", + "atmos.psl.tavg-u-hxy-u.day.GLB", + "atmos.psl.tavg-u-hxy-u.mon.GLB", + "atmos.rlds.tavg-u-hxy-u.mon.GLB", + "atmos.rldscs.tavg-u-hxy-u.mon.GLB", + "atmos.rlus.tavg-u-hxy-u.mon.GLB", + "atmos.rluscs.tavg-u-hxy-u.mon.GLB", + "atmos.rlut.tavg-u-hxy-u.mon.GLB", + "atmos.rlutcs.tavg-u-hxy-u.mon.GLB", + "atmos.rsds.tavg-u-hxy-u.day.GLB", + "atmos.rsds.tavg-u-hxy-u.mon.GLB", + "atmos.rsdscs.tavg-u-hxy-u.mon.GLB", + "atmos.rsdt.tavg-u-hxy-u.mon.GLB", + "atmos.rsus.tavg-u-hxy-u.mon.GLB", + "atmos.rsuscs.tavg-u-hxy-u.mon.GLB", + "atmos.rsut.tavg-u-hxy-u.mon.GLB", + "atmos.rsutcs.tavg-u-hxy-u.mon.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.day.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.mon.GLB", + "atmos.sftlf.ti-u-hxy-u.fx.GLB", + "atmos.ta.tavg-p19-hxy-air.day.GLB", + "atmos.ta.tavg-p19-hxy-air.mon.GLB", + "atmos.ta.tpt-p3-hxy-air.6hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.day.GLB", + "atmos.tas.tavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tmax-h2m-hxy-u.day.GLB", + "atmos.tas.tmaxavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tmin-h2m-hxy-u.day.GLB", + "atmos.tas.tminavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tpt-h2m-hxy-u.3hr.GLB", + "atmos.tauu.tavg-u-hxy-u.mon.GLB", + "atmos.tauv.tavg-u-hxy-u.mon.GLB", + "atmos.ts.tavg-u-hxy-u.mon.GLB", + "atmos.ua.tavg-p19-hxy-air.day.GLB", + "atmos.ua.tavg-p19-hxy-air.mon.GLB", + "atmos.ua.tpt-p3-hxy-air.6hr.GLB", + "atmos.uas.tavg-h10m-hxy-u.day.GLB", + "atmos.uas.tavg-h10m-hxy-u.mon.GLB", + "atmos.uas.tpt-h10m-hxy-u.3hr.GLB", + "atmos.va.tavg-p19-hxy-air.day.GLB", + "atmos.va.tavg-p19-hxy-air.mon.GLB", + "atmos.va.tpt-p3-hxy-air.6hr.GLB", + "atmos.vas.tavg-h10m-hxy-u.day.GLB", + "atmos.vas.tavg-h10m-hxy-u.mon.GLB", + "atmos.vas.tpt-h10m-hxy-u.3hr.GLB", + "atmos.wap.tavg-p19-hxy-air.mon.GLB", + "atmos.wap.tavg-p19-hxy-u.day.GLB", + "atmos.zg.tavg-p19-hxy-air.day.GLB", + "atmos.zg.tavg-p19-hxy-air.mon.GLB", + "land.evspsblsoi.tavg-u-hxy-lnd.mon.GLB", + "land.evspsblveg.tavg-u-hxy-lnd.mon.GLB", + "land.lai.tavg-u-hxy-lnd.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.mon.GLB", + "land.mrros.tavg-u-hxy-lnd.mon.GLB", + "land.mrso.tavg-u-hxy-lnd.mon.GLB", + "land.mrsofc.ti-u-hxy-lnd.fx.GLB", + "land.mrsol.tavg-d10cm-hxy-lnd.mon.GLB", + "land.orog.ti-u-hxy-u.fx.GLB", + "land.rootd.ti-u-hxy-lnd.fx.GLB", + "land.sftgif.ti-u-hxy-u.fx.GLB", + "land.slthick.ti-sl-hxy-lnd.fx.GLB", + "landIce.mrfso.tavg-u-hxy-lnd.mon.GLB", + "landIce.snc.tavg-u-hxy-lnd.mon.GLB", + "landIce.snw.tavg-u-hxy-lnd.mon.GLB", + "ocean.areacello.ti-u-hxy-u.fx.GLB", + "ocean.basin.ti-u-hxy-u.fx.GLB", + "ocean.bigthetao.tavg-ol-hxy-sea.mon.GLB", + "ocean.deptho.ti-u-hxy-sea.fx.GLB", + "ocean.hfds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfgeou.ti-u-hxy-sea.fx.GLB", + "ocean.masscello.tavg-ol-hxy-sea.mon.GLB", + "ocean.masscello.ti-ol-hxy-sea.fx.GLB", + "ocean.mlotst.tavg-u-hxy-sea.mon.GLB", + "ocean.sftof.ti-u-hxy-u.fx.GLB", + "ocean.so.tavg-ol-hxy-sea.mon.GLB", + "ocean.sos.tavg-u-hxy-sea.day.GLB", + "ocean.sos.tavg-u-hxy-sea.mon.GLB", + "ocean.tauuo.tavg-u-hxy-sea.mon.GLB", + "ocean.tauvo.tavg-u-hxy-sea.mon.GLB", + "ocean.thetao.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcello.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcello.ti-ol-hxy-sea.fx.GLB", + "ocean.tos.tavg-u-hxy-sea.day.GLB", + "ocean.tos.tavg-u-hxy-sea.mon.GLB", + "ocean.umo.tavg-ol-hxy-sea.mon.GLB", + "ocean.uo.tavg-ol-hxy-sea.mon.GLB", + "ocean.vmo.tavg-ol-hxy-sea.mon.GLB", + "ocean.vo.tavg-ol-hxy-sea.mon.GLB", + "ocean.wmo.tavg-ol-hxy-sea.mon.GLB", + "ocean.wo.tavg-ol-hxy-sea.mon.GLB", + "ocean.zos.tavg-u-hxy-sea.day.GLB", + "ocean.zos.tavg-u-hxy-sea.mon.GLB", + "ocean.zostoga.tavg-u-hm-sea.mon.GLB", + "seaIce.siconc.tavg-u-hxy-u.day.GLB", + "seaIce.siconc.tavg-u-hxy-u.mon.GLB", + "seaIce.simass.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-si.mon.GLB", + "seaIce.sitimefrac.tavg-u-hxy-sea.mon.GLB", + "seaIce.siu.tavg-u-hxy-si.mon.GLB", + "seaIce.siv.tavg-u-hxy-si.mon.GLB", + "seaIce.snd.tavg-u-hxy-sn.mon.GLB", + "seaIce.ts.tavg-u-hxy-si.mon.GLB" + ], + "High": [ + "aerosol.abs550aer.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550bc.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550dust.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550no3.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550oa.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550so4.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550ss.tavg-u-hxy-u.mon.GLB", + "aerosol.airmass.tavg-al-hxy-u.mon.GLB", + "aerosol.aoanh.tavg-al-hxy-u.mon.NH", + "aerosol.bry.tavg-p39-hy-air.mon.GLB", + "aerosol.bs550aer.tpt-al-hxy-u.6hr.GLB", + "aerosol.c2h6.tavg-al-hxy-u.mon.GLB", + "aerosol.c3h6.tavg-al-hxy-u.mon.GLB", + "aerosol.c3h8.tavg-al-hxy-u.mon.GLB", + "aerosol.ccldncl.tavg-u-hxy-ccl.mon.GLB", + "aerosol.ccn.tavg-u-hxy-ccl.mon.30S-90S", + "aerosol.ccn.tavg-u-hxy-ccl.mon.GLB", + "aerosol.ccn1.tavg-al-hxy-u.mon.30S-90S", + "aerosol.ccn1.tavg-al-hxy-u.mon.GLB", + "aerosol.ccnp02.tavg-al-hxy-u.mon.30S-90S", + "aerosol.ccnp02.tavg-al-hxy-u.mon.GLB", + "aerosol.cdnc.tavg-al-hxy-u.mon.30S-90S", + "aerosol.cdnc.tavg-al-hxy-u.mon.GLB", + "aerosol.cfc114.tavg-al-hxy-u.mon.GLB", + "aerosol.ch3coch3.tavg-al-hxy-u.mon.GLB", + "aerosol.cheaqpso4.tavg-al-hxy-u.mon.GLB", + "aerosol.chegpso4.tavg-al-hxy-u.mon.GLB", + "aerosol.chepasoa.tavg-u-hxy-u.mon.GLB", + "aerosol.chepsoa.tavg-u-hxy-u.mon.GLB", + "aerosol.cly.tavg-p39-hy-air.mon.GLB", + "aerosol.co.tavg-al-hxy-u.mon.GLB", + "aerosol.co.tavg-h2m-hxy-u.day.GLB", + "aerosol.cod.tavg-u-hxy-u.day.GLB", + "aerosol.cod.tavg-u-hxy-u.mon.30S-90S", + "aerosol.cod.tavg-u-hxy-u.mon.GLB", + "aerosol.conccn.tavg-al-hxy-u.mon.GLB", + "aerosol.conccn.tpt-u-hs-u.3hr.GLB", + "aerosol.drybc.tavg-u-hxy-u.mon.GLB", + "aerosol.drydust.tavg-u-hxy-u.mon.GLB", + "aerosol.dryno3.tavg-u-hxy-u.mon.GLB", + "aerosol.dryo3.tavg-u-hxy-u.mon.GLB", + "aerosol.dryoa.tavg-u-hxy-u.mon.GLB", + "aerosol.dryso2.tavg-u-hxy-u.mon.GLB", + "aerosol.dryso4.tavg-u-hxy-u.mon.GLB", + "aerosol.dryss.tavg-u-hxy-u.mon.GLB", + "aerosol.ec550aer.tavg-al-hxy-u.mon.GLB", + "aerosol.ec550aer.tpt-u-hxy-u.6hr.GLB", + "aerosol.emiaco.tavg-u-hxy-u.mon.GLB", + "aerosol.emianox.tavg-u-hxy-u.mon.GLB", + "aerosol.emiaoa.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbbc.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbch4.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbco.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbdms.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbnh3.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbnox.tavg-u-hxy-u.mon.GLB", + "aerosol.emibboa.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbso2.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbvoc.tavg-u-hxy-u.mon.GLB", + "aerosol.emibc.tavg-u-hxy-u.mon.GLB", + "aerosol.emibvoc.tavg-u-hxy-u.mon.GLB", + "aerosol.emico.tavg-u-hxy-u.mon.GLB", + "aerosol.emidms.tavg-u-hxy-u.mon.30S-90S", + "aerosol.emidms.tavg-u-hxy-u.mon.GLB", + "aerosol.emidust.tavg-u-hxy-u.mon.GLB", + "aerosol.emiisop.tavg-u-hxy-u.mon.GLB", + "aerosol.emilnox.tavg-al-hxy-u.mon.GLB", + "aerosol.eminh3.tavg-u-hxy-u.mon.GLB", + "aerosol.eminox.tavg-u-hxy-u.mon.GLB", + "aerosol.emioa.tavg-u-hxy-u.mon.GLB", + "aerosol.emiso2.tavg-u-hxy-u.mon.GLB", + "aerosol.emiso4.tavg-u-hxy-u.mon.GLB", + "aerosol.emiss.tavg-u-hxy-u.mon.30S-90S", + "aerosol.emiss.tavg-u-hxy-u.mon.GLB", + "aerosol.emivoc.tavg-u-hxy-u.mon.GLB", + "aerosol.h2o.tavg-al-hxy-u.mon.GLB", + "aerosol.h2o.tavg-p39-hy-air.mon.GLB", + "aerosol.hcfc22.tavg-al-hxy-u.mon.GLB", + "aerosol.hcho.tavg-al-hxy-u.mon.GLB", + "aerosol.hcl.tavg-al-hxy-u.mon.GLB", + "aerosol.hcl.tavg-p39-hy-air.mon.GLB", + "aerosol.hfc125.tavg-al-hxy-u.mon.GLB", + "aerosol.hfc134a.tavg-al-hxy-u.mon.GLB", + "aerosol.hno3.tavg-al-hxy-u.mon.GLB", + "aerosol.hno3.tavg-p39-hy-air.mon.GLB", + "aerosol.ho2.tavg-p39-hy-air.mon.GLB", + "aerosol.isop.tavg-al-hxy-u.mon.GLB", + "aerosol.jno2.tavg-al-hxy-u.mon.GLB", + "aerosol.lossch4.tavg-al-hxy-u.mon.GLB", + "aerosol.lossco.tavg-al-hxy-u.mon.GLB", + "aerosol.lossn2o.tavg-al-hxy-u.mon.GLB", + "aerosol.lwp.tavg-u-hxy-u.mon.GLB", + "aerosol.mmraerh2o.tavg-al-hxy-u.mon.GLB", + "aerosol.mmraerh2o.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmraerh2o.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrbc.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrbc.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrbc.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrbc.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrdust.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrdust.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrdust.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrdust.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrnh4.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrnh4.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrnh4.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrnh4.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrno3.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrno3.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrno3.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrno3.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmroa.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmroa.tavg-al-hxy-u.mon.GLB", + "aerosol.mmroa.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmroa.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrpm1.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrpm1.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrpm2p5.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrpm2p5.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrso4.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrso4.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrso4.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrso4.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrsoa.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrsoa.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrsoa.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrss.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrss.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrss.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrss.tpt-h2m-hs-u.3hr.GLB", + "aerosol.nh50.tavg-al-hxy-u.mon.GLB", + "aerosol.no.tavg-al-hxy-u.mon.GLB", + "aerosol.no2.tavg-al-hxy-u.mon.GLB", + "aerosol.no2.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.noy.tavg-p39-hy-air.mon.GLB", + "aerosol.o3.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.o3.tmax-h2m-hxy-u.day.GLB", + "aerosol.o3loss.tavg-al-hxy-u.mon.GLB", + "aerosol.o3prod.tavg-al-hxy-u.mon.GLB", + "aerosol.od443aer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550aer.tavg-u-hxy-u.day.GLB", + "aerosol.od550aer.tavg-u-hxy-u.mon.30S-90S", + "aerosol.od550aer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550aerh2o.tavg-u-hxy-u.mon.GLB", + "aerosol.od550bb.tavg-u-hxy-u.mon.GLB", + "aerosol.od550bc.tavg-u-hxy-u.mon.GLB", + "aerosol.od550csaer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550dust.tavg-u-hxy-u.mon.GLB", + "aerosol.od550lt1aer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550no3.tavg-u-hxy-u.mon.GLB", + "aerosol.od550oa.tavg-u-hxy-u.mon.GLB", + "aerosol.od550so4.tavg-u-hxy-u.mon.GLB", + "aerosol.od550soa.tavg-u-hxy-u.mon.GLB", + "aerosol.od550ss.tavg-u-hxy-u.mon.GLB", + "aerosol.od865aer.tavg-u-hxy-u.mon.GLB", + "aerosol.oh.tavg-al-hxy-u.mon.GLB", + "aerosol.oh.tavg-p39-hy-air.mon.GLB", + "aerosol.pan.tavg-al-hxy-u.mon.GLB", + "aerosol.photo1d.tavg-al-hxy-u.mon.GLB", + "aerosol.pod0.tsum-u-hxy-u.mon.GLB", + "aerosol.reffccwctop.tavg-u-hxy-cl.mon.GLB", + "aerosol.reffclwtop.tavg-u-hxy-cl.mon.30S-90S", + "aerosol.reffclwtop.tavg-u-hxy-cl.mon.GLB", + "aerosol.rluscsaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rlutaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rlutcsaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rsutaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rsutcsaf.tavg-u-hxy-u.mon.GLB", + "aerosol.sfpm1.tavg-h2m-hxy-u.day.GLB", + "aerosol.sfpm10.tavg-al-hxy-u.mon.30S-90S", + "aerosol.sfpm10.tavg-al-hxy-u.mon.GLB", + "aerosol.sfpm10.tavg-h2m-hxy-u.day.GLB", + "aerosol.sfpm25.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.sfpm25.tavg-h2m-hxy-u.day.GLB", + "aerosol.so2.tavg-al-hxy-u.mon.30S-90S", + "aerosol.so2.tavg-al-hxy-u.mon.GLB", + "aerosol.so2.tavg-h2m-hxy-u.day.GLB", + "aerosol.so2.tpt-h2m-hs-u.3hr.GLB", + "aerosol.tatp.tavg-u-hxy-u.mon.GLB", + "aerosol.toz.tavg-u-hxy-u.day.GLB", + "aerosol.toz.tavg-u-hxy-u.mon.GLB", + "aerosol.tropoz.tavg-u-hxy-u.mon.GLB", + "aerosol.ttop.tavg-u-hxy-cl.mon.GLB", + "aerosol.ua.tavg-10hPa-hxy-air.day.GLB", + "aerosol.vt100.tavg-100hPa-hy-air.mon.GLB", + "aerosol.wa.tavg-al-hxy-u.mon.GLB", + "aerosol.wetbc.tavg-u-hxy-u.mon.GLB", + "aerosol.wetdust.tavg-u-hxy-u.mon.GLB", + "aerosol.wetoa.tavg-u-hxy-u.mon.GLB", + "aerosol.wetso2.tavg-u-hxy-u.mon.GLB", + "aerosol.wetso4.tavg-u-hxy-u.mon.GLB", + "aerosol.wetss.tavg-u-hxy-u.mon.GLB", + "aerosol.zg.tavg-10hPa-hxy-air.day.GLB", + "atmos.albisccp.tavg-u-hxy-cl.mon.30S-90S", + "atmos.bldep.tavg-u-hxy-u.mon.GLB", + "atmos.bldep.tmax-u-hxy-u.day.GLB", + "atmos.bldep.tmin-u-hxy-u.day.GLB", + "atmos.cl.tavg-al-hxy-u.mon.30S-90S", + "atmos.clc.tavg-al-hxy-u.mon.30S-90S", + "atmos.clc.tavg-al-hxy-u.mon.GLB", + "atmos.clcalipso.tavg-220hPa-hxy-air.mon.30S-90S", + "atmos.clcalipso.tavg-220hPa-hxy-air.mon.GLB", + "atmos.clcalipso.tavg-560hPa-hxy-air.mon.30S-90S", + "atmos.clcalipso.tavg-560hPa-hxy-air.mon.GLB", + "atmos.clcalipso.tavg-840hPa-hxy-air.mon.30S-90S", + "atmos.clcalipso.tavg-840hPa-hxy-air.mon.GLB", + "atmos.clcalipso.tavg-h40-hxy-air.mon.30S-90S", + "atmos.cldnci.tavg-u-hxy-cl.mon.GLB", + "atmos.cldncl.tavg-u-hxy-cl.mon.GLB", + "atmos.cldnvi.tavg-u-hxy-u.mon.GLB", + "atmos.cli.tavg-al-hxy-u.mon.30S-90S", + "atmos.clic.tavg-al-hxy-u.mon.30S-90S", + "atmos.clis.tavg-al-hxy-u.mon.30S-90S", + "atmos.clisccp.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clisccp.tavg-p7c-hxy-air.mon.GLB", + "atmos.clivi.tavg-u-hxy-u.mon.30S-90S", + "atmos.clivimodis.tavg-u-hxy-u.mon.30S-90S", + "atmos.clmodis.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clmodis.tavg-p7c-hxy-air.mon.GLB", + "atmos.clmodisice.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clmodisice.tavg-p7c-hxy-air.mon.GLB", + "atmos.clmodisiceReff.tavg-u-hxy-u.mon.GLB", + "atmos.clmodisliquid.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clmodisliquid.tavg-p7c-hxy-air.mon.GLB", + "atmos.clmodisliquidReff.tavg-u-hxy-u.mon.GLB", + "atmos.cls.tavg-al-hxy-u.mon.30S-90S", + "atmos.clt.tavg-u-hxy-u.mon.30S-90S", + "atmos.cltc.tavg-u-hxy-u.mon.GLB", + "atmos.cltcalipso.tavg-u-hxy-u.mon.30S-90S", + "atmos.cltisccp.tavg-u-hxy-u.mon.30S-90S", + "atmos.cltmodis.tavg-u-hxy-u.mon.30S-90S", + "atmos.clw.tavg-al-hxy-u.mon.30S-90S", + "atmos.clwc.tavg-al-hxy-u.mon.30S-90S", + "atmos.clws.tavg-al-hxy-u.mon.30S-90S", + "atmos.clwvi.tavg-u-hxy-u.mon.30S-90S", + "atmos.clwvimodis.tavg-u-hxy-u.mon.30S-90S", + "atmos.co2.tavg-al-hxy-u.mon.GLB", + "atmos.co2.tavg-p19-hxy-air.mon.GLB", + "atmos.co23D.tavg-al-hxy-u.mon.GLB", + "atmos.co2mass.tavg-u-hm-u.mon.GLB", + "atmos.dmc.tavg-alh-hxy-u.mon.30S-90S", + "atmos.edt.tavg-al-hxy-u.mon.30S-90S", + "atmos.evspsbl.tavg-u-hxy-lnd.day.GLB", + "atmos.evu.tavg-al-hxy-u.mon.30S-90S", + "atmos.fco2antt.tavg-u-hxy-u.mon.GLB", + "atmos.fco2fos.tavg-u-hxy-u.mon.GLB", + "atmos.fco2nat.tavg-u-hxy-u.mon.GLB", + "atmos.hfls.tavg-u-hxy-u.mon.30S-90S", + "atmos.hfss.tavg-u-hxy-u.mon.30S-90S", + "atmos.hur.tavg-al-hxy-u.mon.30S-90S", + "atmos.hur.tavg-al-hxy-u.mon.GLB", + "atmos.hur.tavg-p19-hxy-air.mon.30S-90S", + "atmos.hurs.tavg-h2m-hxy-u.mon.30S-90S", + "atmos.hurs.tmax-h2m-hxy-u.day.GLB", + "atmos.hurs.tmin-h2m-hxy-u.day.GLB", + "atmos.hus.tavg-al-hxy-u.mon.30S-90S", + "atmos.hus.tavg-al-hxy-u.mon.GLB", + "atmos.hus.tavg-p19-hxy-u.mon.30S-90S", + "atmos.hus.tpt-al-hxy-u.6hr.GLB", + "atmos.hus.tpt-p7h-hxy-air.6hr.GLB", + "atmos.huss.tavg-h2m-hxy-u.mon.30S-90S", + "atmos.huss.tpt-h2m-hxy-u.1hr.GLB", + "atmos.mc.tavg-alh-hxy-u.mon.GLB", + "atmos.mcd.tavg-alh-hxy-u.mon.30S-90S", + "atmos.mcu.tavg-alh-hxy-u.mon.30S-90S", + "atmos.mcu.tavg-alh-hxy-u.mon.GLB", + "atmos.pctisccp.tavg-u-hxy-cl.mon.30S-90S", + "atmos.pfull.tavg-al-hxy-u.mon.GLB", + "atmos.pfull.tclm-al-hxy-u.mon.30S-90S", + "atmos.phalf.tavg-alh-hxy-u.mon.GLB", + "atmos.pr.tavg-u-hxy-u.mon.30S-90S", + "atmos.pr.tmax-u-hxy-u.day.GLB", + "atmos.pr.tpt-u-hxy-u.6hr.GLB", + "atmos.prc.tavg-u-hxy-u.mon.30S-90S", + "atmos.prra.tavg-u-hxy-lnd.day.GLB", + "atmos.prra.tavg-u-hxy-u.mon.30S-90S", + "atmos.prsn.tavg-u-hxy-u.3hr.GLB", + "atmos.prsn.tavg-u-hxy-u.day.GLB", + "atmos.prsn.tavg-u-hxy-u.mon.30S-90S", + "atmos.prw.tavg-u-hxy-u.day.GLB", + "atmos.prw.tavg-u-hxy-u.mon.30S-90S", + "atmos.ps.tavg-u-hxy-u.1hr.GLB", + "atmos.ps.tavg-u-hxy-u.mon.30S-90S", + "atmos.ps.tpt-u-hxy-u.6hr.GLB", + "atmos.psl.tavg-u-hxy-u.mon.30S-90S", + "atmos.psl.tpt-u-hxy-u.1hr.GLB", + "atmos.psl.tpt-u-hxy-u.6hr.GLB", + "atmos.ptp.tavg-u-hxy-u.mon.GLB", + "atmos.reffcclwtop.tavg-u-hxy-ccl.mon.GLB", + "atmos.reffclic.tavg-al-hxy-ccl.mon.30S-90S", + "atmos.reffclis.tavg-al-hxy-scl.mon.30S-90S", + "atmos.reffclwc.tavg-al-hxy-ccl.mon.30S-90S", + "atmos.reffclws.tavg-al-hxy-scl.mon.30S-90S", + "atmos.reffsclwtop.tavg-u-hxy-scl.mon.GLB", + "atmos.rld.tavg-alh-hxy-u.mon.GLB", + "atmos.rld4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rldcs.tavg-alh-hxy-u.mon.GLB", + "atmos.rldcs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rlds.tavg-u-hxy-u.1hr.GLB", + "atmos.rlds.tavg-u-hxy-u.day.GLB", + "atmos.rlds.tavg-u-hxy-u.mon.30S-90S", + "atmos.rldscs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rlu.tavg-alh-hxy-u.mon.GLB", + "atmos.rlu4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rlucs.tavg-alh-hxy-u.mon.GLB", + "atmos.rlucs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rlus.tavg-u-hxy-u.day.GLB", + "atmos.rlus.tavg-u-hxy-u.mon.30S-90S", + "atmos.rlut.tavg-u-hxy-u.mon.30S-90S", + "atmos.rlut4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rlutcs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rlutcs4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rsd.tavg-alh-hxy-u.mon.GLB", + "atmos.rsd4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsdcs.tavg-alh-hxy-u.mon.GLB", + "atmos.rsdcs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsds.tavg-u-hxy-u.1hr.GLB", + "atmos.rsds.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsdscs.tavg-u-hxy-u.day.GLB", + "atmos.rsdscs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsdt.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsu.tavg-alh-hxy-u.mon.GLB", + "atmos.rsu4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsucs.tavg-alh-hxy-u.mon.GLB", + "atmos.rsucs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsus.tavg-u-hxy-u.day.GLB", + "atmos.rsus.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsuscs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsut.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsut4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rsutcs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsutcs4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rtmt.tavg-u-hxy-u.mon.GLB", + "atmos.rv850.tpt-850hPa-hxy-air.6hr.GLB", + "atmos.scldncl.tavg-u-hxy-scl.mon.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.mon.30S-90S", + "atmos.ta.tavg-al-hxy-u.mon.30S-90S", + "atmos.ta.tavg-al-hxy-u.mon.GLB", + "atmos.ta.tavg-p19-hxy-air.mon.30S-90S", + "atmos.ta.tavg-p39-hy-air.mon.GLB", + "atmos.ta.tpt-al-hxy-u.6hr.GLB", + "atmos.ta.tpt-p7h-hxy-air.6hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.1hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.mon.30S-90S", + "atmos.tas.tmaxavg-h2m-hxy-u.mon.30S-90S", + "atmos.tas.tminavg-h2m-hxy-u.mon.30S-90S", + "atmos.tnt.tavg-al-hxy-u.mon.GLB", + "atmos.tntrl.tavg-al-hxy-u.mon.GLB", + "atmos.tntrs.tavg-al-hxy-u.mon.GLB", + "atmos.ts.tavg-u-hxy-u.mon.30S-90S", + "atmos.ts.tpt-u-hxy-u.6hr.GLB", + "atmos.ua.tavg-al-hxy-u.mon.GLB", + "atmos.ua.tavg-p19-hxy-air.mon.30S-90S", + "atmos.ua.tavg-p39-hy-air.mon.GLB", + "atmos.ua.tpt-al-hxy-u.6hr.GLB", + "atmos.ua.tpt-p7h-hxy-air.6hr.GLB", + "atmos.uas.tavg-h10m-hxy-u.mon.30S-90S", + "atmos.uas.tpt-h10m-hxy-u.1hr.GLB", + "atmos.va.tavg-al-hxy-u.mon.GLB", + "atmos.va.tavg-p19-hxy-air.mon.30S-90S", + "atmos.va.tavg-p39-hy-air.mon.GLB", + "atmos.va.tpt-al-hxy-u.6hr.GLB", + "atmos.va.tpt-p7h-hxy-air.6hr.GLB", + "atmos.vas.tavg-h10m-hxy-u.mon.30S-90S", + "atmos.vas.tpt-h10m-hxy-u.1hr.GLB", + "atmos.wap.tavg-p19-hxy-air.mon.30S-90S", + "atmos.zg.tavg-1000hPa-hxy-air.day.GLB", + "atmos.zg.tavg-500hPa-hxy-air.day.GLB", + "atmos.zg.tavg-al-hxy-u.mon.GLB", + "atmos.zg.tavg-p19-hxy-air.mon.30S-90S", + "atmos.zg.tavg-p39-hy-air.mon.GLB", + "atmos.zg.tpt-500hPa-hxy-air.6hr.GLB", + "atmos.zg.tpt-al-hxy-u.6hr.GLB", + "atmos.zg.tpt-p7h-hxy-air.6hr.GLB", + "atmos.ztp.tavg-u-hxy-u.mon.GLB", + "atmosChem.c2h4.tavg-al-hxy-u.mon.GLB", + "atmosChem.c2h5oh.tavg-al-hxy-u.mon.GLB", + "atmosChem.c4h10.tavg-al-hxy-u.mon.GLB", + "atmosChem.cfc11.tavg-u-hm-u.mon.GLB", + "atmosChem.cfc113.tavg-u-hm-u.mon.GLB", + "atmosChem.cfc12.tavg-u-hm-u.mon.GLB", + "atmosChem.ch3oh.tavg-al-hxy-u.mon.GLB", + "atmosChem.ch4.tavg-al-hxy-u.mon.GLB", + "atmosChem.ch4.tavg-p39-hy-air.mon.GLB", + "atmosChem.ch4losssoil.tavg-u-hxy-u.mon.GLB", + "atmosChem.ch4ref.ti-al-hxy-u.fx.GLB", + "atmosChem.chegph2oo1d.tavg-al-hxy-u.mon.GLB", + "atmosChem.chepnh4.tavg-al-hxy-u.mon.GLB", + "atmosChem.chepno3.tavg-al-hxy-u.mon.GLB", + "atmosChem.dms.tavg-al-hxy-u.mon.30S-90S", + "atmosChem.dms.tavg-al-hxy-u.mon.GLB", + "atmosChem.do3chm.tavg-al-hxy-u.mon.GLB", + "atmosChem.dryh2.tavg-u-hxy-u.mon.GLB", + "atmosChem.dryhno3.tavg-u-hxy-u.mon.GLB", + "atmosChem.drynh3.tavg-u-hxy-u.mon.GLB", + "atmosChem.drynh4.tavg-u-hxy-u.mon.GLB", + "atmosChem.drynoy.tavg-u-hxy-u.mon.GLB", + "atmosChem.e90inst.tpt-al-hxy-u.mon.GLB", + "atmosChem.emiach4.tavg-u-hxy-u.mon.GLB", + "atmosChem.emiavnox.tavg-al-hxy-u.mon.GLB", + "atmosChem.emic2h4.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic2h5oh.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic2h6.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic3h6.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic3h8.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic4h10.tavg-u-hxy-u.mon.GLB", + "atmosChem.emich3oh.tavg-u-hxy-u.mon.GLB", + "atmosChem.emich4.tavg-u-hxy-u.mon.GLB", + "atmosChem.emih2.tavg-u-hxy-u.mon.GLB", + "atmosChem.emilkch4.tavg-u-hxy-u.mon.GLB", + "atmosChem.h2.tavg-al-hxy-u.mon.GLB", + "atmosChem.h2loss.tavg-al-hxy-u.mon.GLB", + "atmosChem.h2prod.tavg-al-hxy-u.mon.GLB", + "atmosChem.hcfc22.tavg-u-hm-u.mon.GLB", + "atmosChem.meanage.tavg-al-hxy-u.mon.GLB", + "atmosChem.meanage.tavg-p39-hy-air.mon.GLB", + "atmosChem.n2o.tavg-al-hxy-u.mon.GLB", + "atmosChem.n2o.tavg-p39-hy-air.mon.GLB", + "atmosChem.o3.tavg-al-hxy-u.mon.GLB", + "atmosChem.o3.tavg-p19-hxy-air.mon.GLB", + "atmosChem.o3.tavg-p39-hy-air.mon.GLB", + "atmosChem.o3.tpt-al-hxy-u.mon.GLB", + "atmosChem.o3ref.tclm-al-hxy-u.fx.GLB", + "atmosChem.o3ref.ti-al-hxy-u.fx.GLB", + "atmosChem.o3ste.tavg-al-hxy-u.mon.GLB", + "atmosChem.rlutch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rlutcsch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rlutcso3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rluto3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsutch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsutcsch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsutcso3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsuto3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.stratch4loss.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropch4loss.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropch4lossoh.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropdo3chm.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropo3ste.tavg-al-hxy-u.mon.GLB", + "atmosChem.wethno3.tavg-al-hxy-u.mon.GLB", + "atmosChem.wetnh3.tavg-u-hxy-u.mon.GLB", + "atmosChem.wetnh4.tavg-u-hxy-u.mon.GLB", + "atmosChem.wetno3.tavg-al-hxy-u.mon.GLB", + "atmosChem.wetnoy.tavg-u-hxy-u.mon.GLB", + "land.albc.tavg-u-hxy-veg.mon.GLB", + "land.areacellr.ti-u-hxy-u.fx.GLB", + "land.baresoilFrac.tavg-u-hxy-u.mon.GLB", + "land.burntFractionAll.tavg-u-hxy-u.mon.GLB", + "land.cGeologicStorage.tavg-u-hxy-u.mon.GLB", + "land.cLand.tavg-u-hxy-lnd.mon.GLB", + "land.cLitter.tavg-u-hxy-lnd.mon.GLB", + "land.cnc.tavg-u-hxy-u.mon.GLB", + "land.cProduct.tavg-u-hxy-lnd.mon.GLB", + "land.cropFrac.tavg-u-hxy-u.mon.GLB", + "land.cSoil.tavg-d100cm-hxy-lnd.mon.GLB", + "land.cSoil.tavg-u-hxy-lnd.mon.GLB", + "land.cVeg.tavg-u-hxy-lnd.mon.GLB", + "land.dcw.tavg-u-hxy-lnd.day.GLB", + "land.dslw.tavg-u-hxy-lnd.day.GLB", + "land.evspsblpot.tavg-u-hxy-lnd.day.GLB", + "land.evspsblpot.tavg-u-hxy-lnd.mon.GLB", + "land.fAnthDisturb.tavg-u-hxy-lnd.mon.GLB", + "land.fBNF.tavg-u-hxy-lnd.mon.GLB", + "land.fCLandToOcean.tavg-u-hxy-lnd.mon.GLB", + "land.fDeforestToAtmos.tavg-u-hxy-lnd.mon.GLB", + "land.fDeforestToProduct.tavg-u-hxy-lnd.mon.GLB", + "land.fFire.tavg-u-hxy-lnd.mon.GLB", + "land.fFireAll.tavg-u-hxy-lnd.mon.GLB", + "land.fFireNat.tavg-u-hxy-lnd.mon.GLB", + "land.fHarvestToAtmos.tavg-u-hxy-lnd.mon.GLB", + "land.fHarvestToGeologicStorage.tavg-u-hxy-lnd.mon.GLB", + "land.fHarvestToProduct.tavg-u-hxy-lnd.mon.GLB", + "land.fLitterSoil.tavg-u-hxy-lnd.mon.GLB", + "land.fN2O.tavg-u-hxy-lnd.mon.GLB", + "land.fNAnthDisturb.tavg-u-hxy-lnd.mon.GLB", + "land.fNdep.tavg-u-hxy-lnd.mon.GLB", + "land.fNfert.tavg-u-hxy-lnd.mon.GLB", + "land.fNLandToOcean.tavg-u-hxy-lnd.mon.GLB", + "land.fNLitterSoil.tavg-u-hxy-lnd.mon.GLB", + "land.fNloss.tavg-u-hxy-lnd.mon.GLB", + "land.fNnetmin.tavg-u-hxy-lnd.mon.GLB", + "land.fNOx.tavg-u-hxy-lnd.mon.GLB", + "land.fNProduct.tavg-u-hxy-lnd.mon.GLB", + "land.fNup.tavg-u-hxy-lnd.mon.GLB", + "land.fNVegLitter.tavg-u-hxy-lnd.mon.GLB", + "land.fNVegSoil.tavg-u-hxy-lnd.mon.GLB", + "land.fProductDecomp.tavg-u-hxy-lnd.mon.GLB", + "land.fVegLitter.tavg-u-hxy-lnd.mon.GLB", + "land.fVegSoil.tavg-u-hxy-lnd.mon.GLB", + "land.gpp.tavg-u-hxy-lnd.mon.GLB", + "land.grassFrac.tavg-u-hxy-u.mon.GLB", + "land.landCoverFrac.tavg-u-hxy-u.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.day.GLB", + "land.mrrob.tavg-u-hxy-lnd.day.GLB", + "land.mrros.tavg-u-hxy-lnd.day.GLB", + "land.mrsfl.tavg-sl-hxy-lnd.day.GLB", + "land.mrsfl.tavg-sl-hxy-lnd.mon.GLB", + "land.mrsll.tavg-sl-hxy-lnd.day.GLB", + "land.mrsll.tavg-sl-hxy-lnd.mon.GLB", + "land.mrso.tavg-u-hxy-lnd.day.GLB", + "land.mrsol.tavg-d10cm-hxy-lnd.day.GLB", + "land.mrsol.tavg-sl-hxy-lnd.day.GLB", + "land.mrsol.tavg-sl-hxy-lnd.mon.GLB", + "land.mrsow.tavg-u-hxy-lnd.day.GLB", + "land.mrtws.tavg-u-hxy-lnd.day.GLB", + "land.mrtws.tavg-u-hxy-lnd.mon.GLB", + "land.nbp.tavg-u-hxy-lnd.mon.GLB", + "land.nep.tavg-u-hxy-lnd.mon.GLB", + "land.nLand.tavg-u-hxy-lnd.mon.GLB", + "land.nLitter.tavg-u-hxy-lnd.mon.GLB", + "land.nMineral.tavg-u-hxy-lnd.mon.GLB", + "land.npp.tavg-u-hxy-lnd.mon.GLB", + "land.nProduct.tavg-u-hxy-lnd.mon.GLB", + "land.nSoil.tavg-u-hxy-lnd.mon.GLB", + "land.nVeg.tavg-u-hxy-lnd.mon.GLB", + "land.pastureFrac.tavg-u-hxy-u.mon.GLB", + "land.prveg.tavg-u-hxy-lnd.mon.GLB", + "land.ra.tavg-u-hxy-lnd.mon.GLB", + "land.residualFrac.tavg-u-hxy-u.mon.GLB", + "land.rh.tavg-u-hxy-lnd.mon.GLB", + "land.rivi.tavg-u-hxy-lnd.day.GLB", + "land.rivo.tavg-u-hxy-lnd.day.GLB", + "land.rsds.tavg-u-hxy-sn.mon.GLB", + "land.rsus.tavg-u-hxy-sn.mon.GLB", + "land.shrubFrac.tavg-u-hxy-u.mon.GLB", + "land.tas.tavg-u-hxy-u.1hr.GLB", + "land.tran.tavg-u-hxy-lnd.mon.GLB", + "land.treeFrac.tavg-u-hxy-u.mon.GLB", + "land.tsl.tavg-sl-hxy-lnd.mon.GLB", + "land.tslsi.tavg-u-hxy-u.day.GLB", + "land.vegFrac.tavg-u-hxy-u.mon.GLB", + "land.vegHeight.tavg-u-hxy-veg.mon.GLB", + "land.wetlandCH4.tavg-u-hxy-lnd.mon.GLB", + "land.wtd.tavg-u-hxy-lnd.day.GLB", + "landIce.snd.tavg-u-hxy-lnd.mon.GLB", + "landIce.snw.tavg-u-hxy-lnd.day.GLB", + "ocean.absscint.tavg-op4-hxy-sea.mon.GLB", + "ocean.agessc.tavg-ol-hxy-sea.mon.GLB", + "ocean.bigthetao.tavg-ol-hm-sea.mon.GLB", + "ocean.bigthetao.tavg-ol-hxy-sea.dec.GLB", + "ocean.bigthetao.tavg-op20bar-hxy-sea.day.GLB", + "ocean.chcint.tavg-op4-hxy-sea.mon.GLB", + "ocean.ficeberg.tavg-ol-hxy-sea.mon.GLB", + "ocean.friver.tavg-u-hxy-sea.mon.GLB", + "ocean.hfbasin.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpmadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpmdiff.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpsmadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfds.tavg-u-hxy-sea.mon.30S-90S", + "ocean.hfx.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfx.tavg-u-hxy-sea.day.GLB", + "ocean.hfx.tavg-u-hxy-sea.mon.GLB", + "ocean.hfy.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfy.tavg-u-hxy-sea.day.GLB", + "ocean.hfy.tavg-u-hxy-sea.mon.GLB", + "ocean.htovgyre.tavg-u-hyb-sea.mon.GLB", + "ocean.htovovrt.tavg-u-hyb-sea.mon.GLB", + "ocean.masscello.tavg-ol-hxy-sea.dec.GLB", + "ocean.masso.tavg-u-hm-sea.dec.GLB", + "ocean.masso.tavg-u-hm-sea.mon.GLB", + "ocean.mlotst.tavg-u-hxy-sea.day.GLB", + "ocean.mlotst.tavg-u-hxy-sea.mon.30S-90S", + "ocean.mlotst.tmax-u-hxy-sea.mon.GLB", + "ocean.mlotst.tmin-u-hxy-sea.mon.GLB", + "ocean.mpw.tavg-u-hxy-sea.mon.GLB", + "ocean.mpw.tpt-u-hxy-sea.3hr.GLB", + "ocean.mpwswell.tavg-u-hxy-sea.mon.GLB", + "ocean.mpwswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.mpwwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.mpwwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.msftbarot.tavg-u-hxy-sea.mon.GLB", + "ocean.msftm.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftm.tavg-rho-hyb-sea.mon.GLB", + "ocean.msfty.tavg-ol-ht-sea.mon.GLB", + "ocean.msfty.tavg-rho-ht-sea.mon.GLB", + "ocean.obvfsq.tavg-ol-hxy-sea.mon.GLB", + "ocean.pbo.tavg-u-hxy-sea.mon.GLB", + "ocean.pfscint.tavg-op4-hxy-sea.mon.GLB", + "ocean.phcint.tavg-op4-hxy-sea.mon.GLB", + "ocean.pso.tavg-u-hxy-sea.mon.GLB", + "ocean.scint.tavg-op4-hxy-sea.mon.GLB", + "ocean.sduo.tavg-u-hxy-sea.mon.GLB", + "ocean.sduo.tpt-u-hxy-sea.3hr.GLB", + "ocean.sdvo.tavg-u-hxy-sea.mon.GLB", + "ocean.sdvo.tpt-u-hxy-sea.3hr.GLB", + "ocean.sfx.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfx.tavg-u-hxy-sea.mon.GLB", + "ocean.sfy.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfy.tavg-u-hxy-sea.mon.GLB", + "ocean.sltbasin.tavg-u-hyb-sea.mon.GLB", + "ocean.sltovgyre.tavg-u-hyb-sea.mon.GLB", + "ocean.sltovovrt.tavg-u-hyb-sea.mon.GLB", + "ocean.so.tavg-ol-hm-sea.mon.GLB", + "ocean.so.tavg-ol-hxy-sea.dec.GLB", + "ocean.so.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.sob.tavg-u-hxy-sea.mon.GLB", + "ocean.sos.tavg-u-hm-sea.mon.30S-90S", + "ocean.sos.tavg-u-hm-sea.mon.GLB", + "ocean.swh.tavg-u-hxy-sea.mon.GLB", + "ocean.swh.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhmax.tmax-u-hxy-sea.mon.GLB", + "ocean.swhmax.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhswell.tavg-u-hxy-sea.mon.GLB", + "ocean.swhswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.swhwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.tauuo.tavg-u-hxy-sea.3hr.GLB", + "ocean.tauuo.tavg-u-hxy-sea.dec.GLB", + "ocean.tauvo.tavg-u-hxy-sea.3hr.GLB", + "ocean.tauvo.tavg-u-hxy-sea.dec.GLB", + "ocean.thetao.tavg-ol-hm-sea.mon.GLB", + "ocean.thetao.tavg-ol-hxy-sea.dec.GLB", + "ocean.thetao.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.thetao.tavg-op20bar-hxy-sea.day.GLB", + "ocean.thkcello.tavg-ol-hxy-sea.dec.GLB", + "ocean.tob.tavg-u-hxy-sea.mon.GLB", + "ocean.tos.tavg-u-hm-sea.mon.GLB", + "ocean.tos.tavg-u-hxy-sea.mon.30S-90S", + "ocean.tos.tpt-u-hxy-sea.3hr.GLB", + "ocean.tossq.tavg-u-hxy-sea.day.GLB", + "ocean.umo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.uo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.uos.tavg-u-hxy-sea.day.GLB", + "ocean.vmo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.vo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.volcello.tavg-ol-hxy-sea.dec.GLB", + "ocean.volcello.tavg-ol-hxy-sea.mon.GLB", + "ocean.volcello.tavg-ol-hxy-sea.yr.GLB", + "ocean.volcello.ti-ol-hxy-sea.fx.GLB", + "ocean.volo.tavg-u-hm-sea.dec.GLB", + "ocean.volo.tavg-u-hm-sea.mon.GLB", + "ocean.vos.tavg-u-hxy-sea.day.GLB", + "ocean.wdir.tavg-u-hxy-sea.mon.GLB", + "ocean.wdir.tpt-u-hxy-sea.3hr.GLB", + "ocean.wdirswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wdirswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wdirwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wdirwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.wfcorr.tavg-u-hxy-sea.mon.GLB", + "ocean.wfo.tavg-u-hxy-sea.mon.GLB", + "ocean.wmo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.wo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.wpdir.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdir.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpdirswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdirswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpdirwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdirwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpp.tavg-u-hxy-sea.mon.GLB", + "ocean.wpp.tpt-u-hxy-sea.3hr.GLB", + "ocean.wppswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wppswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wppwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wppwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.zos.tavg-u-hxy-sea.mon.30S-90S", + "ocean.zossq.tavg-u-hxy-sea.mon.GLB", + "ocean.zostoga.tavg-u-hm-sea.day.GLB", + "ocnBgchem.bacc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.calc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chl.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chl.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chlcalc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chldiat.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chldiat.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chldiaz.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chldiaz.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chlmisc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chlmisc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chlpico.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chlpico.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.detoc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dfe.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.dfe.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissic.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.dissic.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissoc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dmso.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.expc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.expcalc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.fgco2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fsfe.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fsn.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.graz.tavg-ol-hxy-sea.mon.30S-90S", + "ocnBgchem.icfriver.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intdic.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intdoc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intparag.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbfe.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbn.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbp.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbsi.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpcalcite.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpn2.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpoc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpp.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpp.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppcalc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppdiat.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppdiaz.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppmisc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppnitrate.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpppico.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.nh4.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.nh4.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.no3.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.no3.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.o2.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.ocfriver.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.ph.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.ph.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phyc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phyc.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.phyc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phycalc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phycalc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phydiat.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phydiat.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phydiaz.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phydiaz.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phymisc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phymisc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phypico.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phypico.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.po4.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.pp.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.si.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.spco2.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.spco2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.talk.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zmeso.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zmeso.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zmicro.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zmicro.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zmisc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zmisc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zooc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zooc.tavg-ol-hxy-sea.mon.GLB", + "seaIce.evspsbl.tavg-u-hxy-si.mon.GLB", + "seaIce.prra.tavg-u-hxy-si.mon.GLB", + "seaIce.prsn.tavg-u-hxy-si.mon.GLB", + "seaIce.rlds.tavg-u-hxy-si.mon.GLB", + "seaIce.rlus.tavg-u-hxy-si.mon.GLB", + "seaIce.rsds.tavg-u-hxy-si.day.GLB", + "seaIce.rsds.tavg-u-hxy-si.mon.GLB", + "seaIce.rsus.tavg-u-hxy-si.day.GLB", + "seaIce.rsus.tavg-u-hxy-si.mon.GLB", + "seaIce.sbl.tavg-u-hxy-si.mon.GLB", + "seaIce.siage.tavg-u-hxy-si.day.GLB", + "seaIce.siage.tavg-u-hxy-si.mon.30S-90S", + "seaIce.siarea.tavg-u-hm-u.mon.NH", + "seaIce.siarea.tavg-u-hm-u.mon.SH", + "seaIce.siconc.tavg-u-hxy-u.mon.30S-90S", + "seaIce.siconca.tavg-u-hxy-u.day.GLB", + "seaIce.siconca.tavg-u-hxy-u.mon.GLB", + "seaIce.sidconcdyn.tavg-u-hxy-sea.mon.GLB", + "seaIce.sidconcth.tavg-u-hxy-sea.mon.GLB", + "seaIce.sidmassdyn.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthsi.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthwat.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmeltbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmeltlat.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmelttop.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassth.tavg-u-hxy-si.mon.GLB", + "seaIce.sieqthick.tavg-u-hxy-si.mon.GLB", + "seaIce.siextent.tavg-u-hm-u.mon.NH", + "seaIce.siextent.tavg-u-hm-u.mon.SH", + "seaIce.siflcondbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflcondtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sifllattop.tavg-u-hxy-si.mon.GLB", + "seaIce.siflsensbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflsenstop.tavg-u-hxy-si.mon.GLB", + "seaIce.siflswdbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sihc.tavg-u-hxy-sea.mon.GLB", + "seaIce.sisndmassdyn.tavg-u-hxy-si.mon.GLB", + "seaIce.sisndmasssi.tavg-u-hxy-si.mon.GLB", + "seaIce.sisndmasswind.tavg-u-hxy-si.mon.GLB", + "seaIce.sisnhc.tavg-u-hxy-si.mon.GLB", + "seaIce.sisnmass.tavg-u-hm-u.mon.NH", + "seaIce.sisnmass.tavg-u-hm-u.mon.SH", + "seaIce.sispeed.tavg-u-hxy-si.day.GLB", + "seaIce.sispeed.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-si.day.GLB", + "seaIce.sithick.tavg-u-hxy-si.mon.30S-90S", + "seaIce.sitimefrac.tavg-u-hxy-sea.day.GLB", + "seaIce.sitimefrac.tavg-u-hxy-sea.mon.30S-90S", + "seaIce.siu.tavg-u-hxy-si.day.GLB", + "seaIce.siu.tavg-u-hxy-si.mon.30S-90S", + "seaIce.siv.tavg-u-hxy-si.day.GLB", + "seaIce.siv.tavg-u-hxy-si.mon.30S-90S", + "seaIce.sivol.tavg-u-hm-u.mon.NH", + "seaIce.sivol.tavg-u-hm-u.mon.SH", + "seaIce.snc.tavg-u-hxy-si.mon.GLB", + "seaIce.snd.tavg-u-hxy-sn.day.GLB", + "seaIce.snd.tavg-u-hxy-sn.mon.30S-90S", + "seaIce.snm.tavg-u-hxy-si.mon.GLB", + "seaIce.snw.tavg-u-hxy-si.mon.GLB", + "seaIce.ts.tavg-u-hxy-si.day.GLB", + "seaIce.ts.tavg-u-hxy-si.mon.30S-90S" + ], + "Medium": [ + "atmos.noaahi2m.tavg-h2m-hxy-u.day.GLB", + "atmos.noaahi2m.tmax-h2m-hxy-u.day.GLB", + "atmos.rls.tavg-u-hxy-u.day.GLB", + "atmos.rls.tavg-u-hxy-u.mon.GLB", + "atmos.rss.tavg-u-hxy-u.day.GLB", + "atmos.rss.tavg-u-hxy-u.mon.GLB", + "atmos.wbgt.tavg-h2m-hxy-u.day.GLB", + "atmos.wbgt.tmax-h2m-hxy-u.day.GLB", + "land.cLeaf.tavg-u-hxy-lnd.mon.GLB", + "land.cLitterCwd.tavg-u-hxy-lnd.mon.GLB", + "land.cLitterSubSurf.tavg-u-hxy-lnd.mon.GLB", + "land.cLitterSurf.tavg-u-hxy-lnd.mon.GLB", + "land.cOther.tavg-u-hxy-lnd.mon.GLB", + "land.cRoot.tavg-u-hxy-lnd.mon.GLB", + "land.cropFracC3.tavg-u-hxy-u.mon.GLB", + "land.cropFracC4.tavg-u-hxy-u.mon.GLB", + "land.cSoil.tavg-sl-hxy-lnd.mon.GLB", + "land.cSoilPools.tavg-u-hxy-lnd.mon.GLB", + "land.cStem.tavg-u-hxy-lnd.mon.GLB", + "land.cVeg.tavg-u-hxy-ng.mon.GLB", + "land.cVeg.tavg-u-hxy-shb.mon.GLB", + "land.cVeg.tavg-u-hxy-tree.mon.GLB", + "land.fLitterFire.tavg-u-hxy-lnd.mon.GLB", + "land.fNgas.tavg-u-hxy-lnd.mon.GLB", + "land.fNgasFire.tavg-u-hxy-lnd.mon.GLB", + "land.fNgasNonFire.tavg-u-hxy-lnd.mon.GLB", + "land.fNleach.tavg-u-hxy-lnd.mon.GLB", + "land.fVegFire.tavg-u-hxy-lnd.mon.GLB", + "land.fVegLitterMortality.tavg-u-hxy-lnd.mon.GLB", + "land.fVegLitterSenescence.tavg-u-hxy-lnd.mon.GLB", + "land.fVegSoilMortality.tavg-u-hxy-lnd.mon.GLB", + "land.fVegSoilSenescence.tavg-u-hxy-lnd.mon.GLB", + "land.gpp.tavg-u-hxy-ng.mon.GLB", + "land.gpp.tavg-u-hxy-shb.mon.GLB", + "land.gpp.tavg-u-hxy-tree.mon.GLB", + "land.grassFracC3.tavg-u-hxy-u.mon.GLB", + "land.grassFracC4.tavg-u-hxy-u.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.3hr.GLB", + "land.mrros.tavg-u-hxy-lnd.3hr.GLB", + "land.mrsol.tpt-d10cm-hxy-lnd.3hr.GLB", + "land.nLeaf.tavg-u-hxy-lnd.mon.GLB", + "land.nLitterCwd.tavg-u-hxy-lnd.mon.GLB", + "land.nLitterSubSurf.tavg-u-hxy-lnd.mon.GLB", + "land.nLitterSurf.tavg-u-hxy-lnd.mon.GLB", + "land.nMineralNH4.tavg-u-hxy-lnd.mon.GLB", + "land.nMineralNO3.tavg-u-hxy-lnd.mon.GLB", + "land.nOther.tavg-u-hxy-lnd.mon.GLB", + "land.npp.tavg-u-hxy-ng.mon.GLB", + "land.npp.tavg-u-hxy-shb.mon.GLB", + "land.npp.tavg-u-hxy-tree.mon.GLB", + "land.nppLeaf.tavg-u-hxy-lnd.mon.GLB", + "land.nppOther.tavg-u-hxy-lnd.mon.GLB", + "land.nppRoot.tavg-u-hxy-lnd.mon.GLB", + "land.nppStem.tavg-u-hxy-lnd.mon.GLB", + "land.nRoot.tavg-u-hxy-lnd.mon.GLB", + "land.nStem.tavg-u-hxy-lnd.mon.GLB", + "land.pastureFracC3.tavg-u-hxy-u.mon.GLB", + "land.pastureFracC4.tavg-u-hxy-u.mon.GLB", + "land.ra.tavg-u-hxy-ng.mon.GLB", + "land.ra.tavg-u-hxy-shb.mon.GLB", + "land.ra.tavg-u-hxy-tree.mon.GLB", + "land.raLeaf.tavg-u-hxy-lnd.mon.GLB", + "land.raOther.tavg-u-hxy-lnd.mon.GLB", + "land.raRoot.tavg-u-hxy-lnd.mon.GLB", + "land.raStem.tavg-u-hxy-lnd.mon.GLB", + "land.rh.tavg-u-hxy-ng.mon.GLB", + "land.rh.tavg-u-hxy-shb.mon.GLB", + "land.rh.tavg-u-hxy-tree.mon.GLB", + "land.rhLitter.tavg-u-hxy-lnd.mon.GLB", + "land.rhSoil.tavg-u-hxy-lnd.mon.GLB", + "land.treeFracBdlDcd.tavg-u-hxy-u.mon.GLB", + "land.treeFracBdlEvg.tavg-u-hxy-u.mon.GLB", + "land.treeFracNdlDcd.tavg-u-hxy-u.mon.GLB", + "land.treeFracNdlEvg.tavg-u-hxy-u.mon.GLB", + "land.vegHeight.tavg-u-hxy-ng.mon.GLB", + "land.vegHeight.tavg-u-hxy-shb.mon.GLB", + "land.vegHeight.tavg-u-hxy-tree.mon.GLB", + "land.wetlandCH4cons.tavg-u-hxy-lnd.mon.GLB", + "land.wetlandCH4prod.tavg-u-hxy-lnd.mon.GLB", + "land.wetlandFrac.tavg-u-hxy-u.mon.GLB", + "ocean.evspsbl.tavg-u-hxy-ifs.mon.GLB", + "ocean.ficeberg.tavg-u-hxy-sea.mon.GLB", + "ocean.hfacrossline.tavg-u-ht-sea.mon.GLB", + "ocean.hfevapds.tavg-u-hxy-ifs.mon.GLB", + "ocean.hfibthermds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfibthermds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfrainds.tavg-u-hxy-ifs.mon.GLB", + "ocean.hfrunoffds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfrunoffds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfsnthermds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfsnthermds.tavg-u-hxy-sea.mon.GLB", + "ocean.mfo.tavg-u-ht-sea.mon.GLB", + "ocean.sf6.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfacrossline.tavg-u-ht-sea.mon.GLB", + "ocean.sfdsi.tavg-u-hxy-sea.mon.GLB", + "ocean.sfriver.tavg-u-hxy-sea.mon.GLB", + "ocean.siflfwbot.tavg-u-hxy-sea.mon.GLB", + "ocean.so.tavg-ol-hxy-sea.day.GLB", + "ocean.tnkebto.tavg-u-hxy-sea.yr.GLB", + "ocean.vsf.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfcorr.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfevap.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfpr.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfriver.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfsit.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.arag.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.arag.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.calc.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.calc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chl.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.chlcalc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dmso.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.epn.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.epp.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.expc.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.expcalc.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.fgdms.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fric.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.froc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.graz.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.intppcalc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppdiat.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppdiaz.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppmisc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppnitrate.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intpppico.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.o2.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.ph.tavg-op20bar-hxy-sea.day.GLB", + "seaIce.sfdsi.tavg-u-hxy-si.mon.GLB", + "seaIce.siage.tavg-u-hxy-si.mon.GLB", + "seaIce.siarea.tavg-u-hm-u.day.NH", + "seaIce.siarea.tavg-u-hm-u.day.SH", + "seaIce.siareaacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.sicompstren.tavg-u-hxy-si.mon.GLB", + "seaIce.sidivvel.tpt-u-hxy-si.mon.GLB", + "seaIce.sidmasstranx.tavg-u-hxy-u.mon.GLB", + "seaIce.sidmasstrany.tavg-u-hxy-u.mon.GLB", + "seaIce.sidragbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidragtop.tavg-u-hxy-si.mon.GLB", + "seaIce.siextent.tavg-u-hm-u.day.NH", + "seaIce.siextent.tavg-u-hm-u.day.SH", + "seaIce.sifb.tavg-u-hxy-si.mon.GLB", + "seaIce.siflfwbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflfwdrain.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcecoriolx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcecorioly.tavg-u-hxy-si.mon.GLB", + "seaIce.siforceintstrx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforceintstry.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcetiltx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcetilty.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdconc.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdsnconc.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdsnthick.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdthick.tavg-u-hxy-si.mon.GLB", + "seaIce.simassacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.simpconc.tavg-u-hxy-si.mon.GLB", + "seaIce.simpeffconc.tavg-u-hxy-si.mon.GLB", + "seaIce.simprefrozen.tavg-u-hxy-simp.mon.GLB", + "seaIce.simpthick.tavg-u-hxy-simp.mon.GLB", + "seaIce.sirdgconc.tavg-u-hxy-si.mon.GLB", + "seaIce.sisali.tavg-u-hxy-si.mon.GLB", + "seaIce.sisaltmass.tavg-u-hxy-si.mon.GLB", + "seaIce.sishearvel.tpt-u-hxy-si.mon.GLB", + "seaIce.sisnmass.tavg-u-hm-u.day.NH", + "seaIce.sisnmass.tavg-u-hm-u.day.SH", + "seaIce.sisnmassacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.sistressave.tpt-u-hxy-si.mon.GLB", + "seaIce.sistressmax.tpt-u-hxy-si.mon.GLB", + "seaIce.sistrxdtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sistrxubot.tavg-u-hxy-si.mon.GLB", + "seaIce.sistrydtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sistryubot.tavg-u-hxy-si.mon.GLB", + "seaIce.sitempbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sitempsnic.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-sir.mon.GLB", + "seaIce.sivol.tavg-u-hm-u.day.NH", + "seaIce.sivol.tavg-u-hm-u.day.SH" + ], + "Low": [ + "aerosol.sfpm1.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.sfpm10.tavg-h2m-hxy-u.1hr.GLB", + "atmos.hurs.tavg-h2m-hxy-u.1hr.GLB", + "land.c13Land.tavg-u-hxy-lnd.mon.GLB", + "land.c13Litter.tavg-u-hxy-lnd.mon.GLB", + "land.c13Soil.tavg-u-hxy-lnd.mon.GLB", + "land.c13Veg.tavg-u-hxy-lnd.mon.GLB", + "land.c14Land.tavg-u-hxy-lnd.mon.GLB", + "land.c14Litter.tavg-u-hxy-lnd.mon.GLB", + "land.c14Soil.tavg-u-hxy-lnd.mon.GLB", + "land.c14Veg.tavg-u-hxy-lnd.mon.GLB", + "land.gppc13.tavg-u-hxy-lnd.mon.GLB", + "land.gppc14.tavg-u-hxy-lnd.mon.GLB", + "land.netAtmosLandC13Flux.tavg-u-hxy-lnd.mon.GLB", + "land.netAtmosLandC14Flux.tavg-u-hxy-lnd.mon.GLB", + "land.rac13.tavg-u-hxy-lnd.mon.GLB", + "land.rac14.tavg-u-hxy-lnd.mon.GLB", + "land.rhc13.tavg-u-hxy-lnd.mon.GLB", + "land.rhc14.tavg-u-hxy-lnd.mon.GLB", + "ocean.difmxybo.tavg-ol-hxy-sea.yr.GLB", + "ocean.difmxylo.tavg-ol-hxy-sea.yr.GLB", + "ocean.diftrblo.tavg-ol-hxy-sea.yr.GLB", + "ocean.diftrelo.tavg-ol-hxy-sea.yr.GLB", + "ocean.difvho.tavg-ol-hxy-sea.yr.GLB", + "ocean.difvso.tavg-ol-hxy-sea.yr.GLB", + "ocean.dispkexyfo.tavg-u-hxy-sea.yr.GLB", + "ocean.dxto.ti-u-hxy-u.fx.GLB", + "ocean.dxuo.ti-u-hxy-u.fx.GLB", + "ocean.dxvo.ti-u-hxy-u.fx.GLB", + "ocean.dyto.ti-u-hxy-u.fx.GLB", + "ocean.dyuo.ti-u-hxy-u.fx.GLB", + "ocean.dyvo.ti-u-hxy-u.fx.GLB", + "ocean.mlotstsq.tavg-u-hxy-sea.mon.GLB", + "ocean.msftmmpa.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftmmpa.tavg-rho-hyb-sea.mon.GLB", + "ocean.msftmsmpa.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftypa.tavg-ol-ht-sea.mon.GLB", + "ocean.msftypa.tavg-rho-ht-sea.mon.GLB", + "ocean.ocontempdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontempmint.tavg-u-hxy-sea.yr.GLB", + "ocean.ocontemppadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemppmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemppsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemprmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemptend.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottempdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottempmint.tavg-u-hxy-sea.yr.GLB", + "ocean.opottemppadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemppmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemppsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemprmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemptend.tavg-ol-hxy-sea.dec.GLB", + "ocean.osaltdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpsmadvect.tavg-ol-hxy-sea.mon.GLB", + "ocean.osaltpsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltrmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osalttend.tavg-ol-hxy-sea.yr.GLB", + "ocean.rsdoabsorb.tavg-ol-hxy-sea.yr.GLB", + "ocean.somint.tavg-u-hxy-sea.yr.GLB", + "ocean.sossq.tavg-u-hxy-sea.mon.GLB", + "ocean.thkcelluo.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcellvo.tavg-ol-hxy-sea.mon.GLB", + "ocean.tnpeo.tavg-u-hxy-sea.yr.GLB", + "ocean.tossq.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.dissi13c.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.dissi13c.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissi14c.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissi14cabio.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.dissi14cabio.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.fg13co2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fg14co2abio.tavg-u-hxy-sea.mon.GLB" + ] + }, + "esm-up2p0": { + "Core": [ + "atmos.areacella.ti-u-hxy-u.fx.GLB", + "atmos.cl.tavg-al-hxy-u.mon.GLB", + "atmos.cli.tavg-al-hxy-u.mon.GLB", + "atmos.clivi.tavg-u-hxy-u.mon.GLB", + "atmos.clt.tavg-u-hxy-u.day.GLB", + "atmos.clt.tavg-u-hxy-u.mon.GLB", + "atmos.clw.tavg-al-hxy-u.mon.GLB", + "atmos.clwvi.tavg-u-hxy-u.mon.GLB", + "atmos.evspsbl.tavg-u-hxy-u.mon.GLB", + "atmos.hfls.tavg-u-hxy-u.mon.GLB", + "atmos.hfss.tavg-u-hxy-u.mon.GLB", + "atmos.hur.tavg-p19-hxy-air.mon.GLB", + "atmos.hur.tavg-p19-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.6hr.GLB", + "atmos.hurs.tavg-h2m-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.mon.GLB", + "atmos.hus.tavg-p19-hxy-u.day.GLB", + "atmos.hus.tavg-p19-hxy-u.mon.GLB", + "atmos.huss.tavg-h2m-hxy-u.day.GLB", + "atmos.huss.tavg-h2m-hxy-u.mon.GLB", + "atmos.huss.tpt-h2m-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.1hr.GLB", + "atmos.pr.tavg-u-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.day.GLB", + "atmos.pr.tavg-u-hxy-u.mon.GLB", + "atmos.prc.tavg-u-hxy-u.mon.GLB", + "atmos.prsn.tavg-u-hxy-u.mon.GLB", + "atmos.prw.tavg-u-hxy-u.mon.GLB", + "atmos.ps.tavg-u-hxy-u.day.GLB", + "atmos.ps.tavg-u-hxy-u.mon.GLB", + "atmos.psl.tavg-u-hxy-u.day.GLB", + "atmos.psl.tavg-u-hxy-u.mon.GLB", + "atmos.rlds.tavg-u-hxy-u.mon.GLB", + "atmos.rldscs.tavg-u-hxy-u.mon.GLB", + "atmos.rlus.tavg-u-hxy-u.mon.GLB", + "atmos.rluscs.tavg-u-hxy-u.mon.GLB", + "atmos.rlut.tavg-u-hxy-u.mon.GLB", + "atmos.rlutcs.tavg-u-hxy-u.mon.GLB", + "atmos.rsds.tavg-u-hxy-u.day.GLB", + "atmos.rsds.tavg-u-hxy-u.mon.GLB", + "atmos.rsdscs.tavg-u-hxy-u.mon.GLB", + "atmos.rsdt.tavg-u-hxy-u.mon.GLB", + "atmos.rsus.tavg-u-hxy-u.mon.GLB", + "atmos.rsuscs.tavg-u-hxy-u.mon.GLB", + "atmos.rsut.tavg-u-hxy-u.mon.GLB", + "atmos.rsutcs.tavg-u-hxy-u.mon.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.day.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.mon.GLB", + "atmos.sftlf.ti-u-hxy-u.fx.GLB", + "atmos.ta.tavg-p19-hxy-air.day.GLB", + "atmos.ta.tavg-p19-hxy-air.mon.GLB", + "atmos.ta.tpt-p3-hxy-air.6hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.day.GLB", + "atmos.tas.tavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tmax-h2m-hxy-u.day.GLB", + "atmos.tas.tmaxavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tmin-h2m-hxy-u.day.GLB", + "atmos.tas.tminavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tpt-h2m-hxy-u.3hr.GLB", + "atmos.tauu.tavg-u-hxy-u.mon.GLB", + "atmos.tauv.tavg-u-hxy-u.mon.GLB", + "atmos.ts.tavg-u-hxy-u.mon.GLB", + "atmos.ua.tavg-p19-hxy-air.day.GLB", + "atmos.ua.tavg-p19-hxy-air.mon.GLB", + "atmos.ua.tpt-p3-hxy-air.6hr.GLB", + "atmos.uas.tavg-h10m-hxy-u.day.GLB", + "atmos.uas.tavg-h10m-hxy-u.mon.GLB", + "atmos.uas.tpt-h10m-hxy-u.3hr.GLB", + "atmos.va.tavg-p19-hxy-air.day.GLB", + "atmos.va.tavg-p19-hxy-air.mon.GLB", + "atmos.va.tpt-p3-hxy-air.6hr.GLB", + "atmos.vas.tavg-h10m-hxy-u.day.GLB", + "atmos.vas.tavg-h10m-hxy-u.mon.GLB", + "atmos.vas.tpt-h10m-hxy-u.3hr.GLB", + "atmos.wap.tavg-p19-hxy-air.mon.GLB", + "atmos.wap.tavg-p19-hxy-u.day.GLB", + "atmos.zg.tavg-p19-hxy-air.day.GLB", + "atmos.zg.tavg-p19-hxy-air.mon.GLB", + "land.evspsblsoi.tavg-u-hxy-lnd.mon.GLB", + "land.evspsblveg.tavg-u-hxy-lnd.mon.GLB", + "land.lai.tavg-u-hxy-lnd.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.mon.GLB", + "land.mrros.tavg-u-hxy-lnd.mon.GLB", + "land.mrso.tavg-u-hxy-lnd.mon.GLB", + "land.mrsofc.ti-u-hxy-lnd.fx.GLB", + "land.mrsol.tavg-d10cm-hxy-lnd.mon.GLB", + "land.orog.ti-u-hxy-u.fx.GLB", + "land.rootd.ti-u-hxy-lnd.fx.GLB", + "land.sftgif.ti-u-hxy-u.fx.GLB", + "land.slthick.ti-sl-hxy-lnd.fx.GLB", + "landIce.mrfso.tavg-u-hxy-lnd.mon.GLB", + "landIce.snc.tavg-u-hxy-lnd.mon.GLB", + "landIce.snw.tavg-u-hxy-lnd.mon.GLB", + "ocean.areacello.ti-u-hxy-u.fx.GLB", + "ocean.basin.ti-u-hxy-u.fx.GLB", + "ocean.bigthetao.tavg-ol-hxy-sea.mon.GLB", + "ocean.deptho.ti-u-hxy-sea.fx.GLB", + "ocean.hfds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfgeou.ti-u-hxy-sea.fx.GLB", + "ocean.masscello.tavg-ol-hxy-sea.mon.GLB", + "ocean.masscello.ti-ol-hxy-sea.fx.GLB", + "ocean.mlotst.tavg-u-hxy-sea.mon.GLB", + "ocean.sftof.ti-u-hxy-u.fx.GLB", + "ocean.so.tavg-ol-hxy-sea.mon.GLB", + "ocean.sos.tavg-u-hxy-sea.day.GLB", + "ocean.sos.tavg-u-hxy-sea.mon.GLB", + "ocean.tauuo.tavg-u-hxy-sea.mon.GLB", + "ocean.tauvo.tavg-u-hxy-sea.mon.GLB", + "ocean.thetao.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcello.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcello.ti-ol-hxy-sea.fx.GLB", + "ocean.tos.tavg-u-hxy-sea.day.GLB", + "ocean.tos.tavg-u-hxy-sea.mon.GLB", + "ocean.umo.tavg-ol-hxy-sea.mon.GLB", + "ocean.uo.tavg-ol-hxy-sea.mon.GLB", + "ocean.vmo.tavg-ol-hxy-sea.mon.GLB", + "ocean.vo.tavg-ol-hxy-sea.mon.GLB", + "ocean.wmo.tavg-ol-hxy-sea.mon.GLB", + "ocean.wo.tavg-ol-hxy-sea.mon.GLB", + "ocean.zos.tavg-u-hxy-sea.day.GLB", + "ocean.zos.tavg-u-hxy-sea.mon.GLB", + "ocean.zostoga.tavg-u-hm-sea.mon.GLB", + "seaIce.siconc.tavg-u-hxy-u.day.GLB", + "seaIce.siconc.tavg-u-hxy-u.mon.GLB", + "seaIce.simass.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-si.mon.GLB", + "seaIce.sitimefrac.tavg-u-hxy-sea.mon.GLB", + "seaIce.siu.tavg-u-hxy-si.mon.GLB", + "seaIce.siv.tavg-u-hxy-si.mon.GLB", + "seaIce.snd.tavg-u-hxy-sn.mon.GLB", + "seaIce.ts.tavg-u-hxy-si.mon.GLB" + ], + "High": [ + "atmos.hfls.tavg-u-hxy-is.mon.GRL", + "atmos.prra.tavg-u-hxy-is.mon.GRL", + "atmos.prsn.tavg-u-hxy-is.mon.GRL", + "atmos.rlds.tavg-u-hxy-u.day.GLB", + "land.sftgif.tavg-u-hxy-u.mon.GLB", + "landIce.acabf.tavg-u-hxy-is.mon.GLB", + "landIce.hfgeoubed.ti-u-hxy-gis.fx.GRL", + "landIce.hfls.tavg-u-hxy-is.mon.GLB", + "landIce.lithk.ti-u-hxy-is.fx.GRL", + "landIce.orog.tavg-u-hxy-is.mon.GLB", + "landIce.rsds.tavg-u-hxy-is.mon.GLB", + "landIce.sbl.tavg-u-hxy-lnd.mon.GLB", + "landIce.sftflf.tavg-u-hxy-u.mon.GLB", + "landIce.sftgrf.tavg-u-hxy-u.mon.GLB", + "landIce.snicem.tavg-u-hxy-is.mon.GRL", + "landIce.topg.ti-u-hxy-gis.fx.GRL" + ], + "Medium": [ + "atmos.prc.tavg-u-hxy-u.day.GLB", + "atmos.prsn.tavg-u-hxy-u.day.GLB", + "atmos.ts.tavg-u-hxy-u.day.GLB", + "land.burntFractionAll.tavg-u-hxy-u.mon.GLB", + "land.cSoil.tavg-sl-hxy-lnd.mon.GLB", + "land.fFireAll.tavg-u-hxy-lnd.mon.GLB", + "land.fFireNat.tavg-u-hxy-lnd.mon.GLB", + "land.mrsfl.tavg-sl-hxy-lnd.mon.GLB", + "land.mrsll.tavg-sl-hxy-lnd.mon.GLB", + "land.mrsol.tavg-sl-hxy-lnd.mon.GLB", + "landIce.hfss.tavg-u-hxy-is.mon.GLB", + "landIce.rlds.tavg-u-hxy-is.mon.GLB", + "landIce.rlus.tavg-u-hxy-is.mon.GLB", + "landIce.rsus.tavg-u-hxy-is.mon.GLB", + "landIce.snd.tavg-u-hxy-lnd.mon.GLB", + "ocean.friver.tavg-u-hxy-sea.mon.GLB", + "ocean.hfbasin.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpmadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfx.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfx.tavg-u-hxy-sea.mon.GLB", + "ocean.hfy.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfy.tavg-u-hxy-sea.mon.GLB", + "ocean.htovgyre.tavg-u-hyb-sea.mon.GLB", + "ocean.htovovrt.tavg-u-hyb-sea.mon.GLB", + "ocean.masso.tavg-u-hm-sea.mon.GLB", + "ocean.mlotst.tmax-u-hxy-sea.mon.GLB", + "ocean.mlotst.tmin-u-hxy-sea.mon.GLB", + "ocean.msfty.tavg-ol-ht-sea.mon.GLB", + "ocean.pbo.tavg-u-hxy-sea.mon.GLB", + "ocean.sfx.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfx.tavg-u-hxy-sea.mon.GLB", + "ocean.sfy.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfy.tavg-u-hxy-sea.mon.GLB", + "ocean.sltovgyre.tavg-u-hyb-sea.mon.GLB", + "ocean.sltovovrt.tavg-u-hyb-sea.mon.GLB", + "ocean.volo.tavg-u-hm-sea.mon.GLB" + ], + "Low": [] + }, + "esm-up2p0-gwl1p5": { + "Core": [ + "atmos.areacella.ti-u-hxy-u.fx.GLB", + "atmos.cl.tavg-al-hxy-u.mon.GLB", + "atmos.cli.tavg-al-hxy-u.mon.GLB", + "atmos.clivi.tavg-u-hxy-u.mon.GLB", + "atmos.clt.tavg-u-hxy-u.day.GLB", + "atmos.clt.tavg-u-hxy-u.mon.GLB", + "atmos.clw.tavg-al-hxy-u.mon.GLB", + "atmos.clwvi.tavg-u-hxy-u.mon.GLB", + "atmos.evspsbl.tavg-u-hxy-u.mon.GLB", + "atmos.hfls.tavg-u-hxy-u.mon.GLB", + "atmos.hfss.tavg-u-hxy-u.mon.GLB", + "atmos.hur.tavg-p19-hxy-air.mon.GLB", + "atmos.hur.tavg-p19-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.6hr.GLB", + "atmos.hurs.tavg-h2m-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.mon.GLB", + "atmos.hus.tavg-p19-hxy-u.day.GLB", + "atmos.hus.tavg-p19-hxy-u.mon.GLB", + "atmos.huss.tavg-h2m-hxy-u.day.GLB", + "atmos.huss.tavg-h2m-hxy-u.mon.GLB", + "atmos.huss.tpt-h2m-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.1hr.GLB", + "atmos.pr.tavg-u-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.day.GLB", + "atmos.pr.tavg-u-hxy-u.mon.GLB", + "atmos.prc.tavg-u-hxy-u.mon.GLB", + "atmos.prsn.tavg-u-hxy-u.mon.GLB", + "atmos.prw.tavg-u-hxy-u.mon.GLB", + "atmos.ps.tavg-u-hxy-u.day.GLB", + "atmos.ps.tavg-u-hxy-u.mon.GLB", + "atmos.psl.tavg-u-hxy-u.day.GLB", + "atmos.psl.tavg-u-hxy-u.mon.GLB", + "atmos.rlds.tavg-u-hxy-u.mon.GLB", + "atmos.rldscs.tavg-u-hxy-u.mon.GLB", + "atmos.rlus.tavg-u-hxy-u.mon.GLB", + "atmos.rluscs.tavg-u-hxy-u.mon.GLB", + "atmos.rlut.tavg-u-hxy-u.mon.GLB", + "atmos.rlutcs.tavg-u-hxy-u.mon.GLB", + "atmos.rsds.tavg-u-hxy-u.day.GLB", + "atmos.rsds.tavg-u-hxy-u.mon.GLB", + "atmos.rsdscs.tavg-u-hxy-u.mon.GLB", + "atmos.rsdt.tavg-u-hxy-u.mon.GLB", + "atmos.rsus.tavg-u-hxy-u.mon.GLB", + "atmos.rsuscs.tavg-u-hxy-u.mon.GLB", + "atmos.rsut.tavg-u-hxy-u.mon.GLB", + "atmos.rsutcs.tavg-u-hxy-u.mon.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.day.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.mon.GLB", + "atmos.sftlf.ti-u-hxy-u.fx.GLB", + "atmos.ta.tavg-p19-hxy-air.day.GLB", + "atmos.ta.tavg-p19-hxy-air.mon.GLB", + "atmos.ta.tpt-p3-hxy-air.6hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.day.GLB", + "atmos.tas.tavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tmax-h2m-hxy-u.day.GLB", + "atmos.tas.tmaxavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tmin-h2m-hxy-u.day.GLB", + "atmos.tas.tminavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tpt-h2m-hxy-u.3hr.GLB", + "atmos.tauu.tavg-u-hxy-u.mon.GLB", + "atmos.tauv.tavg-u-hxy-u.mon.GLB", + "atmos.ts.tavg-u-hxy-u.mon.GLB", + "atmos.ua.tavg-p19-hxy-air.day.GLB", + "atmos.ua.tavg-p19-hxy-air.mon.GLB", + "atmos.ua.tpt-p3-hxy-air.6hr.GLB", + "atmos.uas.tavg-h10m-hxy-u.day.GLB", + "atmos.uas.tavg-h10m-hxy-u.mon.GLB", + "atmos.uas.tpt-h10m-hxy-u.3hr.GLB", + "atmos.va.tavg-p19-hxy-air.day.GLB", + "atmos.va.tavg-p19-hxy-air.mon.GLB", + "atmos.va.tpt-p3-hxy-air.6hr.GLB", + "atmos.vas.tavg-h10m-hxy-u.day.GLB", + "atmos.vas.tavg-h10m-hxy-u.mon.GLB", + "atmos.vas.tpt-h10m-hxy-u.3hr.GLB", + "atmos.wap.tavg-p19-hxy-air.mon.GLB", + "atmos.wap.tavg-p19-hxy-u.day.GLB", + "atmos.zg.tavg-p19-hxy-air.day.GLB", + "atmos.zg.tavg-p19-hxy-air.mon.GLB", + "land.evspsblsoi.tavg-u-hxy-lnd.mon.GLB", + "land.evspsblveg.tavg-u-hxy-lnd.mon.GLB", + "land.lai.tavg-u-hxy-lnd.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.mon.GLB", + "land.mrros.tavg-u-hxy-lnd.mon.GLB", + "land.mrso.tavg-u-hxy-lnd.mon.GLB", + "land.mrsofc.ti-u-hxy-lnd.fx.GLB", + "land.mrsol.tavg-d10cm-hxy-lnd.mon.GLB", + "land.orog.ti-u-hxy-u.fx.GLB", + "land.rootd.ti-u-hxy-lnd.fx.GLB", + "land.sftgif.ti-u-hxy-u.fx.GLB", + "land.slthick.ti-sl-hxy-lnd.fx.GLB", + "landIce.mrfso.tavg-u-hxy-lnd.mon.GLB", + "landIce.snc.tavg-u-hxy-lnd.mon.GLB", + "landIce.snw.tavg-u-hxy-lnd.mon.GLB", + "ocean.areacello.ti-u-hxy-u.fx.GLB", + "ocean.basin.ti-u-hxy-u.fx.GLB", + "ocean.bigthetao.tavg-ol-hxy-sea.mon.GLB", + "ocean.deptho.ti-u-hxy-sea.fx.GLB", + "ocean.hfds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfgeou.ti-u-hxy-sea.fx.GLB", + "ocean.masscello.tavg-ol-hxy-sea.mon.GLB", + "ocean.masscello.ti-ol-hxy-sea.fx.GLB", + "ocean.mlotst.tavg-u-hxy-sea.mon.GLB", + "ocean.sftof.ti-u-hxy-u.fx.GLB", + "ocean.so.tavg-ol-hxy-sea.mon.GLB", + "ocean.sos.tavg-u-hxy-sea.day.GLB", + "ocean.sos.tavg-u-hxy-sea.mon.GLB", + "ocean.tauuo.tavg-u-hxy-sea.mon.GLB", + "ocean.tauvo.tavg-u-hxy-sea.mon.GLB", + "ocean.thetao.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcello.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcello.ti-ol-hxy-sea.fx.GLB", + "ocean.tos.tavg-u-hxy-sea.day.GLB", + "ocean.tos.tavg-u-hxy-sea.mon.GLB", + "ocean.umo.tavg-ol-hxy-sea.mon.GLB", + "ocean.uo.tavg-ol-hxy-sea.mon.GLB", + "ocean.vmo.tavg-ol-hxy-sea.mon.GLB", + "ocean.vo.tavg-ol-hxy-sea.mon.GLB", + "ocean.wmo.tavg-ol-hxy-sea.mon.GLB", + "ocean.wo.tavg-ol-hxy-sea.mon.GLB", + "ocean.zos.tavg-u-hxy-sea.day.GLB", + "ocean.zos.tavg-u-hxy-sea.mon.GLB", + "ocean.zostoga.tavg-u-hm-sea.mon.GLB", + "seaIce.siconc.tavg-u-hxy-u.day.GLB", + "seaIce.siconc.tavg-u-hxy-u.mon.GLB", + "seaIce.simass.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-si.mon.GLB", + "seaIce.sitimefrac.tavg-u-hxy-sea.mon.GLB", + "seaIce.siu.tavg-u-hxy-si.mon.GLB", + "seaIce.siv.tavg-u-hxy-si.mon.GLB", + "seaIce.snd.tavg-u-hxy-sn.mon.GLB", + "seaIce.ts.tavg-u-hxy-si.mon.GLB" + ], + "High": [ + "atmos.hfls.tavg-u-hxy-is.mon.GRL", + "atmos.prra.tavg-u-hxy-is.mon.GRL", + "atmos.prsn.tavg-u-hxy-is.mon.GRL", + "atmos.rlds.tavg-u-hxy-u.day.GLB", + "land.sftgif.tavg-u-hxy-u.mon.GLB", + "landIce.acabf.tavg-u-hxy-is.mon.GLB", + "landIce.hfgeoubed.ti-u-hxy-gis.fx.GRL", + "landIce.hfls.tavg-u-hxy-is.mon.GLB", + "landIce.lithk.ti-u-hxy-is.fx.GRL", + "landIce.orog.tavg-u-hxy-is.mon.GLB", + "landIce.rsds.tavg-u-hxy-is.mon.GLB", + "landIce.sbl.tavg-u-hxy-lnd.mon.GLB", + "landIce.sftflf.tavg-u-hxy-u.mon.GLB", + "landIce.sftgrf.tavg-u-hxy-u.mon.GLB", + "landIce.snicem.tavg-u-hxy-is.mon.GRL", + "landIce.topg.ti-u-hxy-gis.fx.GRL" + ], + "Medium": [ + "atmos.prc.tavg-u-hxy-u.day.GLB", + "atmos.prsn.tavg-u-hxy-u.day.GLB", + "atmos.ts.tavg-u-hxy-u.day.GLB", + "land.burntFractionAll.tavg-u-hxy-u.mon.GLB", + "land.cSoil.tavg-sl-hxy-lnd.mon.GLB", + "land.fFireAll.tavg-u-hxy-lnd.mon.GLB", + "land.fFireNat.tavg-u-hxy-lnd.mon.GLB", + "land.mrsfl.tavg-sl-hxy-lnd.mon.GLB", + "land.mrsll.tavg-sl-hxy-lnd.mon.GLB", + "land.mrsol.tavg-sl-hxy-lnd.mon.GLB", + "landIce.hfss.tavg-u-hxy-is.mon.GLB", + "landIce.rlds.tavg-u-hxy-is.mon.GLB", + "landIce.rlus.tavg-u-hxy-is.mon.GLB", + "landIce.rsus.tavg-u-hxy-is.mon.GLB", + "landIce.snd.tavg-u-hxy-lnd.mon.GLB", + "ocean.friver.tavg-u-hxy-sea.mon.GLB", + "ocean.hfbasin.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpmadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfx.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfx.tavg-u-hxy-sea.mon.GLB", + "ocean.hfy.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfy.tavg-u-hxy-sea.mon.GLB", + "ocean.htovgyre.tavg-u-hyb-sea.mon.GLB", + "ocean.htovovrt.tavg-u-hyb-sea.mon.GLB", + "ocean.masso.tavg-u-hm-sea.mon.GLB", + "ocean.mlotst.tmax-u-hxy-sea.mon.GLB", + "ocean.mlotst.tmin-u-hxy-sea.mon.GLB", + "ocean.msfty.tavg-ol-ht-sea.mon.GLB", + "ocean.pbo.tavg-u-hxy-sea.mon.GLB", + "ocean.sfx.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfx.tavg-u-hxy-sea.mon.GLB", + "ocean.sfy.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfy.tavg-u-hxy-sea.mon.GLB", + "ocean.sltovgyre.tavg-u-hyb-sea.mon.GLB", + "ocean.sltovovrt.tavg-u-hyb-sea.mon.GLB", + "ocean.volo.tavg-u-hm-sea.mon.GLB" + ], + "Low": [] + }, + "esm-up2p0-gwl2p0": { + "Core": [ + "atmos.areacella.ti-u-hxy-u.fx.GLB", + "atmos.cl.tavg-al-hxy-u.mon.GLB", + "atmos.cli.tavg-al-hxy-u.mon.GLB", + "atmos.clivi.tavg-u-hxy-u.mon.GLB", + "atmos.clt.tavg-u-hxy-u.day.GLB", + "atmos.clt.tavg-u-hxy-u.mon.GLB", + "atmos.clw.tavg-al-hxy-u.mon.GLB", + "atmos.clwvi.tavg-u-hxy-u.mon.GLB", + "atmos.evspsbl.tavg-u-hxy-u.mon.GLB", + "atmos.hfls.tavg-u-hxy-u.mon.GLB", + "atmos.hfss.tavg-u-hxy-u.mon.GLB", + "atmos.hur.tavg-p19-hxy-air.mon.GLB", + "atmos.hur.tavg-p19-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.6hr.GLB", + "atmos.hurs.tavg-h2m-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.mon.GLB", + "atmos.hus.tavg-p19-hxy-u.day.GLB", + "atmos.hus.tavg-p19-hxy-u.mon.GLB", + "atmos.huss.tavg-h2m-hxy-u.day.GLB", + "atmos.huss.tavg-h2m-hxy-u.mon.GLB", + "atmos.huss.tpt-h2m-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.1hr.GLB", + "atmos.pr.tavg-u-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.day.GLB", + "atmos.pr.tavg-u-hxy-u.mon.GLB", + "atmos.prc.tavg-u-hxy-u.mon.GLB", + "atmos.prsn.tavg-u-hxy-u.mon.GLB", + "atmos.prw.tavg-u-hxy-u.mon.GLB", + "atmos.ps.tavg-u-hxy-u.day.GLB", + "atmos.ps.tavg-u-hxy-u.mon.GLB", + "atmos.psl.tavg-u-hxy-u.day.GLB", + "atmos.psl.tavg-u-hxy-u.mon.GLB", + "atmos.rlds.tavg-u-hxy-u.mon.GLB", + "atmos.rldscs.tavg-u-hxy-u.mon.GLB", + "atmos.rlus.tavg-u-hxy-u.mon.GLB", + "atmos.rluscs.tavg-u-hxy-u.mon.GLB", + "atmos.rlut.tavg-u-hxy-u.mon.GLB", + "atmos.rlutcs.tavg-u-hxy-u.mon.GLB", + "atmos.rsds.tavg-u-hxy-u.day.GLB", + "atmos.rsds.tavg-u-hxy-u.mon.GLB", + "atmos.rsdscs.tavg-u-hxy-u.mon.GLB", + "atmos.rsdt.tavg-u-hxy-u.mon.GLB", + "atmos.rsus.tavg-u-hxy-u.mon.GLB", + "atmos.rsuscs.tavg-u-hxy-u.mon.GLB", + "atmos.rsut.tavg-u-hxy-u.mon.GLB", + "atmos.rsutcs.tavg-u-hxy-u.mon.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.day.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.mon.GLB", + "atmos.sftlf.ti-u-hxy-u.fx.GLB", + "atmos.ta.tavg-p19-hxy-air.day.GLB", + "atmos.ta.tavg-p19-hxy-air.mon.GLB", + "atmos.ta.tpt-p3-hxy-air.6hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.day.GLB", + "atmos.tas.tavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tmax-h2m-hxy-u.day.GLB", + "atmos.tas.tmaxavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tmin-h2m-hxy-u.day.GLB", + "atmos.tas.tminavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tpt-h2m-hxy-u.3hr.GLB", + "atmos.tauu.tavg-u-hxy-u.mon.GLB", + "atmos.tauv.tavg-u-hxy-u.mon.GLB", + "atmos.ts.tavg-u-hxy-u.mon.GLB", + "atmos.ua.tavg-p19-hxy-air.day.GLB", + "atmos.ua.tavg-p19-hxy-air.mon.GLB", + "atmos.ua.tpt-p3-hxy-air.6hr.GLB", + "atmos.uas.tavg-h10m-hxy-u.day.GLB", + "atmos.uas.tavg-h10m-hxy-u.mon.GLB", + "atmos.uas.tpt-h10m-hxy-u.3hr.GLB", + "atmos.va.tavg-p19-hxy-air.day.GLB", + "atmos.va.tavg-p19-hxy-air.mon.GLB", + "atmos.va.tpt-p3-hxy-air.6hr.GLB", + "atmos.vas.tavg-h10m-hxy-u.day.GLB", + "atmos.vas.tavg-h10m-hxy-u.mon.GLB", + "atmos.vas.tpt-h10m-hxy-u.3hr.GLB", + "atmos.wap.tavg-p19-hxy-air.mon.GLB", + "atmos.wap.tavg-p19-hxy-u.day.GLB", + "atmos.zg.tavg-p19-hxy-air.day.GLB", + "atmos.zg.tavg-p19-hxy-air.mon.GLB", + "land.evspsblsoi.tavg-u-hxy-lnd.mon.GLB", + "land.evspsblveg.tavg-u-hxy-lnd.mon.GLB", + "land.lai.tavg-u-hxy-lnd.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.mon.GLB", + "land.mrros.tavg-u-hxy-lnd.mon.GLB", + "land.mrso.tavg-u-hxy-lnd.mon.GLB", + "land.mrsofc.ti-u-hxy-lnd.fx.GLB", + "land.mrsol.tavg-d10cm-hxy-lnd.mon.GLB", + "land.orog.ti-u-hxy-u.fx.GLB", + "land.rootd.ti-u-hxy-lnd.fx.GLB", + "land.sftgif.ti-u-hxy-u.fx.GLB", + "land.slthick.ti-sl-hxy-lnd.fx.GLB", + "landIce.mrfso.tavg-u-hxy-lnd.mon.GLB", + "landIce.snc.tavg-u-hxy-lnd.mon.GLB", + "landIce.snw.tavg-u-hxy-lnd.mon.GLB", + "ocean.areacello.ti-u-hxy-u.fx.GLB", + "ocean.basin.ti-u-hxy-u.fx.GLB", + "ocean.bigthetao.tavg-ol-hxy-sea.mon.GLB", + "ocean.deptho.ti-u-hxy-sea.fx.GLB", + "ocean.hfds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfgeou.ti-u-hxy-sea.fx.GLB", + "ocean.masscello.tavg-ol-hxy-sea.mon.GLB", + "ocean.masscello.ti-ol-hxy-sea.fx.GLB", + "ocean.mlotst.tavg-u-hxy-sea.mon.GLB", + "ocean.sftof.ti-u-hxy-u.fx.GLB", + "ocean.so.tavg-ol-hxy-sea.mon.GLB", + "ocean.sos.tavg-u-hxy-sea.day.GLB", + "ocean.sos.tavg-u-hxy-sea.mon.GLB", + "ocean.tauuo.tavg-u-hxy-sea.mon.GLB", + "ocean.tauvo.tavg-u-hxy-sea.mon.GLB", + "ocean.thetao.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcello.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcello.ti-ol-hxy-sea.fx.GLB", + "ocean.tos.tavg-u-hxy-sea.day.GLB", + "ocean.tos.tavg-u-hxy-sea.mon.GLB", + "ocean.umo.tavg-ol-hxy-sea.mon.GLB", + "ocean.uo.tavg-ol-hxy-sea.mon.GLB", + "ocean.vmo.tavg-ol-hxy-sea.mon.GLB", + "ocean.vo.tavg-ol-hxy-sea.mon.GLB", + "ocean.wmo.tavg-ol-hxy-sea.mon.GLB", + "ocean.wo.tavg-ol-hxy-sea.mon.GLB", + "ocean.zos.tavg-u-hxy-sea.day.GLB", + "ocean.zos.tavg-u-hxy-sea.mon.GLB", + "ocean.zostoga.tavg-u-hm-sea.mon.GLB", + "seaIce.siconc.tavg-u-hxy-u.day.GLB", + "seaIce.siconc.tavg-u-hxy-u.mon.GLB", + "seaIce.simass.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-si.mon.GLB", + "seaIce.sitimefrac.tavg-u-hxy-sea.mon.GLB", + "seaIce.siu.tavg-u-hxy-si.mon.GLB", + "seaIce.siv.tavg-u-hxy-si.mon.GLB", + "seaIce.snd.tavg-u-hxy-sn.mon.GLB", + "seaIce.ts.tavg-u-hxy-si.mon.GLB" + ], + "High": [ + "atmos.hfls.tavg-u-hxy-is.mon.GRL", + "atmos.prra.tavg-u-hxy-is.mon.GRL", + "atmos.prsn.tavg-u-hxy-is.mon.GRL", + "atmos.rlds.tavg-u-hxy-u.day.GLB", + "land.sftgif.tavg-u-hxy-u.mon.GLB", + "landIce.acabf.tavg-u-hxy-is.mon.GLB", + "landIce.hfgeoubed.ti-u-hxy-gis.fx.GRL", + "landIce.hfls.tavg-u-hxy-is.mon.GLB", + "landIce.lithk.ti-u-hxy-is.fx.GRL", + "landIce.orog.tavg-u-hxy-is.mon.GLB", + "landIce.rsds.tavg-u-hxy-is.mon.GLB", + "landIce.sbl.tavg-u-hxy-lnd.mon.GLB", + "landIce.sftflf.tavg-u-hxy-u.mon.GLB", + "landIce.sftgrf.tavg-u-hxy-u.mon.GLB", + "landIce.snicem.tavg-u-hxy-is.mon.GRL", + "landIce.topg.ti-u-hxy-gis.fx.GRL" + ], + "Medium": [ + "atmos.prc.tavg-u-hxy-u.day.GLB", + "atmos.prsn.tavg-u-hxy-u.day.GLB", + "atmos.ts.tavg-u-hxy-u.day.GLB", + "land.burntFractionAll.tavg-u-hxy-u.mon.GLB", + "land.cSoil.tavg-sl-hxy-lnd.mon.GLB", + "land.fFireAll.tavg-u-hxy-lnd.mon.GLB", + "land.fFireNat.tavg-u-hxy-lnd.mon.GLB", + "land.mrsfl.tavg-sl-hxy-lnd.mon.GLB", + "land.mrsll.tavg-sl-hxy-lnd.mon.GLB", + "land.mrsol.tavg-sl-hxy-lnd.mon.GLB", + "landIce.hfss.tavg-u-hxy-is.mon.GLB", + "landIce.rlds.tavg-u-hxy-is.mon.GLB", + "landIce.rlus.tavg-u-hxy-is.mon.GLB", + "landIce.rsus.tavg-u-hxy-is.mon.GLB", + "landIce.snd.tavg-u-hxy-lnd.mon.GLB", + "ocean.friver.tavg-u-hxy-sea.mon.GLB", + "ocean.hfbasin.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpmadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfx.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfx.tavg-u-hxy-sea.mon.GLB", + "ocean.hfy.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfy.tavg-u-hxy-sea.mon.GLB", + "ocean.htovgyre.tavg-u-hyb-sea.mon.GLB", + "ocean.htovovrt.tavg-u-hyb-sea.mon.GLB", + "ocean.masso.tavg-u-hm-sea.mon.GLB", + "ocean.mlotst.tmax-u-hxy-sea.mon.GLB", + "ocean.mlotst.tmin-u-hxy-sea.mon.GLB", + "ocean.msfty.tavg-ol-ht-sea.mon.GLB", + "ocean.pbo.tavg-u-hxy-sea.mon.GLB", + "ocean.sfx.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfx.tavg-u-hxy-sea.mon.GLB", + "ocean.sfy.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfy.tavg-u-hxy-sea.mon.GLB", + "ocean.sltovgyre.tavg-u-hyb-sea.mon.GLB", + "ocean.sltovovrt.tavg-u-hyb-sea.mon.GLB", + "ocean.volo.tavg-u-hm-sea.mon.GLB" + ], + "Low": [] + }, + "esm-up2p0-gwl2p0-50y-dn2p0": { + "Core": [ + "atmos.areacella.ti-u-hxy-u.fx.GLB", + "atmos.cl.tavg-al-hxy-u.mon.GLB", + "atmos.cli.tavg-al-hxy-u.mon.GLB", + "atmos.clivi.tavg-u-hxy-u.mon.GLB", + "atmos.clt.tavg-u-hxy-u.day.GLB", + "atmos.clt.tavg-u-hxy-u.mon.GLB", + "atmos.clw.tavg-al-hxy-u.mon.GLB", + "atmos.clwvi.tavg-u-hxy-u.mon.GLB", + "atmos.evspsbl.tavg-u-hxy-u.mon.GLB", + "atmos.hfls.tavg-u-hxy-u.mon.GLB", + "atmos.hfss.tavg-u-hxy-u.mon.GLB", + "atmos.hur.tavg-p19-hxy-air.mon.GLB", + "atmos.hur.tavg-p19-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.6hr.GLB", + "atmos.hurs.tavg-h2m-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.mon.GLB", + "atmos.hus.tavg-p19-hxy-u.day.GLB", + "atmos.hus.tavg-p19-hxy-u.mon.GLB", + "atmos.huss.tavg-h2m-hxy-u.day.GLB", + "atmos.huss.tavg-h2m-hxy-u.mon.GLB", + "atmos.huss.tpt-h2m-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.1hr.GLB", + "atmos.pr.tavg-u-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.day.GLB", + "atmos.pr.tavg-u-hxy-u.mon.GLB", + "atmos.prc.tavg-u-hxy-u.mon.GLB", + "atmos.prsn.tavg-u-hxy-u.mon.GLB", + "atmos.prw.tavg-u-hxy-u.mon.GLB", + "atmos.ps.tavg-u-hxy-u.day.GLB", + "atmos.ps.tavg-u-hxy-u.mon.GLB", + "atmos.psl.tavg-u-hxy-u.day.GLB", + "atmos.psl.tavg-u-hxy-u.mon.GLB", + "atmos.rlds.tavg-u-hxy-u.mon.GLB", + "atmos.rldscs.tavg-u-hxy-u.mon.GLB", + "atmos.rlus.tavg-u-hxy-u.mon.GLB", + "atmos.rluscs.tavg-u-hxy-u.mon.GLB", + "atmos.rlut.tavg-u-hxy-u.mon.GLB", + "atmos.rlutcs.tavg-u-hxy-u.mon.GLB", + "atmos.rsds.tavg-u-hxy-u.day.GLB", + "atmos.rsds.tavg-u-hxy-u.mon.GLB", + "atmos.rsdscs.tavg-u-hxy-u.mon.GLB", + "atmos.rsdt.tavg-u-hxy-u.mon.GLB", + "atmos.rsus.tavg-u-hxy-u.mon.GLB", + "atmos.rsuscs.tavg-u-hxy-u.mon.GLB", + "atmos.rsut.tavg-u-hxy-u.mon.GLB", + "atmos.rsutcs.tavg-u-hxy-u.mon.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.day.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.mon.GLB", + "atmos.sftlf.ti-u-hxy-u.fx.GLB", + "atmos.ta.tavg-p19-hxy-air.day.GLB", + "atmos.ta.tavg-p19-hxy-air.mon.GLB", + "atmos.ta.tpt-p3-hxy-air.6hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.day.GLB", + "atmos.tas.tavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tmax-h2m-hxy-u.day.GLB", + "atmos.tas.tmaxavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tmin-h2m-hxy-u.day.GLB", + "atmos.tas.tminavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tpt-h2m-hxy-u.3hr.GLB", + "atmos.tauu.tavg-u-hxy-u.mon.GLB", + "atmos.tauv.tavg-u-hxy-u.mon.GLB", + "atmos.ts.tavg-u-hxy-u.mon.GLB", + "atmos.ua.tavg-p19-hxy-air.day.GLB", + "atmos.ua.tavg-p19-hxy-air.mon.GLB", + "atmos.ua.tpt-p3-hxy-air.6hr.GLB", + "atmos.uas.tavg-h10m-hxy-u.day.GLB", + "atmos.uas.tavg-h10m-hxy-u.mon.GLB", + "atmos.uas.tpt-h10m-hxy-u.3hr.GLB", + "atmos.va.tavg-p19-hxy-air.day.GLB", + "atmos.va.tavg-p19-hxy-air.mon.GLB", + "atmos.va.tpt-p3-hxy-air.6hr.GLB", + "atmos.vas.tavg-h10m-hxy-u.day.GLB", + "atmos.vas.tavg-h10m-hxy-u.mon.GLB", + "atmos.vas.tpt-h10m-hxy-u.3hr.GLB", + "atmos.wap.tavg-p19-hxy-air.mon.GLB", + "atmos.wap.tavg-p19-hxy-u.day.GLB", + "atmos.zg.tavg-p19-hxy-air.day.GLB", + "atmos.zg.tavg-p19-hxy-air.mon.GLB", + "land.evspsblsoi.tavg-u-hxy-lnd.mon.GLB", + "land.evspsblveg.tavg-u-hxy-lnd.mon.GLB", + "land.lai.tavg-u-hxy-lnd.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.mon.GLB", + "land.mrros.tavg-u-hxy-lnd.mon.GLB", + "land.mrso.tavg-u-hxy-lnd.mon.GLB", + "land.mrsofc.ti-u-hxy-lnd.fx.GLB", + "land.mrsol.tavg-d10cm-hxy-lnd.mon.GLB", + "land.orog.ti-u-hxy-u.fx.GLB", + "land.rootd.ti-u-hxy-lnd.fx.GLB", + "land.sftgif.ti-u-hxy-u.fx.GLB", + "land.slthick.ti-sl-hxy-lnd.fx.GLB", + "landIce.mrfso.tavg-u-hxy-lnd.mon.GLB", + "landIce.snc.tavg-u-hxy-lnd.mon.GLB", + "landIce.snw.tavg-u-hxy-lnd.mon.GLB", + "ocean.areacello.ti-u-hxy-u.fx.GLB", + "ocean.basin.ti-u-hxy-u.fx.GLB", + "ocean.bigthetao.tavg-ol-hxy-sea.mon.GLB", + "ocean.deptho.ti-u-hxy-sea.fx.GLB", + "ocean.hfds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfgeou.ti-u-hxy-sea.fx.GLB", + "ocean.masscello.tavg-ol-hxy-sea.mon.GLB", + "ocean.masscello.ti-ol-hxy-sea.fx.GLB", + "ocean.mlotst.tavg-u-hxy-sea.mon.GLB", + "ocean.sftof.ti-u-hxy-u.fx.GLB", + "ocean.so.tavg-ol-hxy-sea.mon.GLB", + "ocean.sos.tavg-u-hxy-sea.day.GLB", + "ocean.sos.tavg-u-hxy-sea.mon.GLB", + "ocean.tauuo.tavg-u-hxy-sea.mon.GLB", + "ocean.tauvo.tavg-u-hxy-sea.mon.GLB", + "ocean.thetao.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcello.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcello.ti-ol-hxy-sea.fx.GLB", + "ocean.tos.tavg-u-hxy-sea.day.GLB", + "ocean.tos.tavg-u-hxy-sea.mon.GLB", + "ocean.umo.tavg-ol-hxy-sea.mon.GLB", + "ocean.uo.tavg-ol-hxy-sea.mon.GLB", + "ocean.vmo.tavg-ol-hxy-sea.mon.GLB", + "ocean.vo.tavg-ol-hxy-sea.mon.GLB", + "ocean.wmo.tavg-ol-hxy-sea.mon.GLB", + "ocean.wo.tavg-ol-hxy-sea.mon.GLB", + "ocean.zos.tavg-u-hxy-sea.day.GLB", + "ocean.zos.tavg-u-hxy-sea.mon.GLB", + "ocean.zostoga.tavg-u-hm-sea.mon.GLB", + "seaIce.siconc.tavg-u-hxy-u.day.GLB", + "seaIce.siconc.tavg-u-hxy-u.mon.GLB", + "seaIce.simass.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-si.mon.GLB", + "seaIce.sitimefrac.tavg-u-hxy-sea.mon.GLB", + "seaIce.siu.tavg-u-hxy-si.mon.GLB", + "seaIce.siv.tavg-u-hxy-si.mon.GLB", + "seaIce.snd.tavg-u-hxy-sn.mon.GLB", + "seaIce.ts.tavg-u-hxy-si.mon.GLB" + ], + "High": [ + "atmos.hfls.tavg-u-hxy-is.mon.GRL", + "atmos.prra.tavg-u-hxy-is.mon.GRL", + "atmos.prsn.tavg-u-hxy-is.mon.GRL", + "atmos.rlds.tavg-u-hxy-u.day.GLB", + "land.sftgif.tavg-u-hxy-u.mon.GLB", + "landIce.acabf.tavg-u-hxy-is.mon.GLB", + "landIce.hfgeoubed.ti-u-hxy-gis.fx.GRL", + "landIce.hfls.tavg-u-hxy-is.mon.GLB", + "landIce.lithk.ti-u-hxy-is.fx.GRL", + "landIce.orog.tavg-u-hxy-is.mon.GLB", + "landIce.rsds.tavg-u-hxy-is.mon.GLB", + "landIce.sbl.tavg-u-hxy-lnd.mon.GLB", + "landIce.sftflf.tavg-u-hxy-u.mon.GLB", + "landIce.sftgrf.tavg-u-hxy-u.mon.GLB", + "landIce.snicem.tavg-u-hxy-is.mon.GRL", + "landIce.topg.ti-u-hxy-gis.fx.GRL" + ], + "Medium": [ + "atmos.prc.tavg-u-hxy-u.day.GLB", + "atmos.prsn.tavg-u-hxy-u.day.GLB", + "atmos.ts.tavg-u-hxy-u.day.GLB", + "land.burntFractionAll.tavg-u-hxy-u.mon.GLB", + "land.cSoil.tavg-sl-hxy-lnd.mon.GLB", + "land.fFireAll.tavg-u-hxy-lnd.mon.GLB", + "land.fFireNat.tavg-u-hxy-lnd.mon.GLB", + "land.mrsfl.tavg-sl-hxy-lnd.mon.GLB", + "land.mrsll.tavg-sl-hxy-lnd.mon.GLB", + "land.mrsol.tavg-sl-hxy-lnd.mon.GLB", + "landIce.hfss.tavg-u-hxy-is.mon.GLB", + "landIce.rlds.tavg-u-hxy-is.mon.GLB", + "landIce.rlus.tavg-u-hxy-is.mon.GLB", + "landIce.rsus.tavg-u-hxy-is.mon.GLB", + "landIce.snd.tavg-u-hxy-lnd.mon.GLB", + "ocean.friver.tavg-u-hxy-sea.mon.GLB", + "ocean.hfbasin.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpmadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfx.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfx.tavg-u-hxy-sea.mon.GLB", + "ocean.hfy.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfy.tavg-u-hxy-sea.mon.GLB", + "ocean.htovgyre.tavg-u-hyb-sea.mon.GLB", + "ocean.htovovrt.tavg-u-hyb-sea.mon.GLB", + "ocean.masso.tavg-u-hm-sea.mon.GLB", + "ocean.mlotst.tmax-u-hxy-sea.mon.GLB", + "ocean.mlotst.tmin-u-hxy-sea.mon.GLB", + "ocean.msfty.tavg-ol-ht-sea.mon.GLB", + "ocean.pbo.tavg-u-hxy-sea.mon.GLB", + "ocean.sfx.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfx.tavg-u-hxy-sea.mon.GLB", + "ocean.sfy.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfy.tavg-u-hxy-sea.mon.GLB", + "ocean.sltovgyre.tavg-u-hyb-sea.mon.GLB", + "ocean.sltovovrt.tavg-u-hyb-sea.mon.GLB", + "ocean.volo.tavg-u-hm-sea.mon.GLB" + ], + "Low": [] + }, + "esm-up2p0-gwl3p0": { + "Core": [ + "atmos.areacella.ti-u-hxy-u.fx.GLB", + "atmos.cl.tavg-al-hxy-u.mon.GLB", + "atmos.cli.tavg-al-hxy-u.mon.GLB", + "atmos.clivi.tavg-u-hxy-u.mon.GLB", + "atmos.clt.tavg-u-hxy-u.day.GLB", + "atmos.clt.tavg-u-hxy-u.mon.GLB", + "atmos.clw.tavg-al-hxy-u.mon.GLB", + "atmos.clwvi.tavg-u-hxy-u.mon.GLB", + "atmos.evspsbl.tavg-u-hxy-u.mon.GLB", + "atmos.hfls.tavg-u-hxy-u.mon.GLB", + "atmos.hfss.tavg-u-hxy-u.mon.GLB", + "atmos.hur.tavg-p19-hxy-air.mon.GLB", + "atmos.hur.tavg-p19-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.6hr.GLB", + "atmos.hurs.tavg-h2m-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.mon.GLB", + "atmos.hus.tavg-p19-hxy-u.day.GLB", + "atmos.hus.tavg-p19-hxy-u.mon.GLB", + "atmos.huss.tavg-h2m-hxy-u.day.GLB", + "atmos.huss.tavg-h2m-hxy-u.mon.GLB", + "atmos.huss.tpt-h2m-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.1hr.GLB", + "atmos.pr.tavg-u-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.day.GLB", + "atmos.pr.tavg-u-hxy-u.mon.GLB", + "atmos.prc.tavg-u-hxy-u.mon.GLB", + "atmos.prsn.tavg-u-hxy-u.mon.GLB", + "atmos.prw.tavg-u-hxy-u.mon.GLB", + "atmos.ps.tavg-u-hxy-u.day.GLB", + "atmos.ps.tavg-u-hxy-u.mon.GLB", + "atmos.psl.tavg-u-hxy-u.day.GLB", + "atmos.psl.tavg-u-hxy-u.mon.GLB", + "atmos.rlds.tavg-u-hxy-u.mon.GLB", + "atmos.rldscs.tavg-u-hxy-u.mon.GLB", + "atmos.rlus.tavg-u-hxy-u.mon.GLB", + "atmos.rluscs.tavg-u-hxy-u.mon.GLB", + "atmos.rlut.tavg-u-hxy-u.mon.GLB", + "atmos.rlutcs.tavg-u-hxy-u.mon.GLB", + "atmos.rsds.tavg-u-hxy-u.day.GLB", + "atmos.rsds.tavg-u-hxy-u.mon.GLB", + "atmos.rsdscs.tavg-u-hxy-u.mon.GLB", + "atmos.rsdt.tavg-u-hxy-u.mon.GLB", + "atmos.rsus.tavg-u-hxy-u.mon.GLB", + "atmos.rsuscs.tavg-u-hxy-u.mon.GLB", + "atmos.rsut.tavg-u-hxy-u.mon.GLB", + "atmos.rsutcs.tavg-u-hxy-u.mon.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.day.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.mon.GLB", + "atmos.sftlf.ti-u-hxy-u.fx.GLB", + "atmos.ta.tavg-p19-hxy-air.day.GLB", + "atmos.ta.tavg-p19-hxy-air.mon.GLB", + "atmos.ta.tpt-p3-hxy-air.6hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.day.GLB", + "atmos.tas.tavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tmax-h2m-hxy-u.day.GLB", + "atmos.tas.tmaxavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tmin-h2m-hxy-u.day.GLB", + "atmos.tas.tminavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tpt-h2m-hxy-u.3hr.GLB", + "atmos.tauu.tavg-u-hxy-u.mon.GLB", + "atmos.tauv.tavg-u-hxy-u.mon.GLB", + "atmos.ts.tavg-u-hxy-u.mon.GLB", + "atmos.ua.tavg-p19-hxy-air.day.GLB", + "atmos.ua.tavg-p19-hxy-air.mon.GLB", + "atmos.ua.tpt-p3-hxy-air.6hr.GLB", + "atmos.uas.tavg-h10m-hxy-u.day.GLB", + "atmos.uas.tavg-h10m-hxy-u.mon.GLB", + "atmos.uas.tpt-h10m-hxy-u.3hr.GLB", + "atmos.va.tavg-p19-hxy-air.day.GLB", + "atmos.va.tavg-p19-hxy-air.mon.GLB", + "atmos.va.tpt-p3-hxy-air.6hr.GLB", + "atmos.vas.tavg-h10m-hxy-u.day.GLB", + "atmos.vas.tavg-h10m-hxy-u.mon.GLB", + "atmos.vas.tpt-h10m-hxy-u.3hr.GLB", + "atmos.wap.tavg-p19-hxy-air.mon.GLB", + "atmos.wap.tavg-p19-hxy-u.day.GLB", + "atmos.zg.tavg-p19-hxy-air.day.GLB", + "atmos.zg.tavg-p19-hxy-air.mon.GLB", + "land.evspsblsoi.tavg-u-hxy-lnd.mon.GLB", + "land.evspsblveg.tavg-u-hxy-lnd.mon.GLB", + "land.lai.tavg-u-hxy-lnd.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.mon.GLB", + "land.mrros.tavg-u-hxy-lnd.mon.GLB", + "land.mrso.tavg-u-hxy-lnd.mon.GLB", + "land.mrsofc.ti-u-hxy-lnd.fx.GLB", + "land.mrsol.tavg-d10cm-hxy-lnd.mon.GLB", + "land.orog.ti-u-hxy-u.fx.GLB", + "land.rootd.ti-u-hxy-lnd.fx.GLB", + "land.sftgif.ti-u-hxy-u.fx.GLB", + "land.slthick.ti-sl-hxy-lnd.fx.GLB", + "landIce.mrfso.tavg-u-hxy-lnd.mon.GLB", + "landIce.snc.tavg-u-hxy-lnd.mon.GLB", + "landIce.snw.tavg-u-hxy-lnd.mon.GLB", + "ocean.areacello.ti-u-hxy-u.fx.GLB", + "ocean.basin.ti-u-hxy-u.fx.GLB", + "ocean.bigthetao.tavg-ol-hxy-sea.mon.GLB", + "ocean.deptho.ti-u-hxy-sea.fx.GLB", + "ocean.hfds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfgeou.ti-u-hxy-sea.fx.GLB", + "ocean.masscello.tavg-ol-hxy-sea.mon.GLB", + "ocean.masscello.ti-ol-hxy-sea.fx.GLB", + "ocean.mlotst.tavg-u-hxy-sea.mon.GLB", + "ocean.sftof.ti-u-hxy-u.fx.GLB", + "ocean.so.tavg-ol-hxy-sea.mon.GLB", + "ocean.sos.tavg-u-hxy-sea.day.GLB", + "ocean.sos.tavg-u-hxy-sea.mon.GLB", + "ocean.tauuo.tavg-u-hxy-sea.mon.GLB", + "ocean.tauvo.tavg-u-hxy-sea.mon.GLB", + "ocean.thetao.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcello.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcello.ti-ol-hxy-sea.fx.GLB", + "ocean.tos.tavg-u-hxy-sea.day.GLB", + "ocean.tos.tavg-u-hxy-sea.mon.GLB", + "ocean.umo.tavg-ol-hxy-sea.mon.GLB", + "ocean.uo.tavg-ol-hxy-sea.mon.GLB", + "ocean.vmo.tavg-ol-hxy-sea.mon.GLB", + "ocean.vo.tavg-ol-hxy-sea.mon.GLB", + "ocean.wmo.tavg-ol-hxy-sea.mon.GLB", + "ocean.wo.tavg-ol-hxy-sea.mon.GLB", + "ocean.zos.tavg-u-hxy-sea.day.GLB", + "ocean.zos.tavg-u-hxy-sea.mon.GLB", + "ocean.zostoga.tavg-u-hm-sea.mon.GLB", + "seaIce.siconc.tavg-u-hxy-u.day.GLB", + "seaIce.siconc.tavg-u-hxy-u.mon.GLB", + "seaIce.simass.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-si.mon.GLB", + "seaIce.sitimefrac.tavg-u-hxy-sea.mon.GLB", + "seaIce.siu.tavg-u-hxy-si.mon.GLB", + "seaIce.siv.tavg-u-hxy-si.mon.GLB", + "seaIce.snd.tavg-u-hxy-sn.mon.GLB", + "seaIce.ts.tavg-u-hxy-si.mon.GLB" + ], + "High": [ + "atmos.hfls.tavg-u-hxy-is.mon.GRL", + "atmos.prra.tavg-u-hxy-is.mon.GRL", + "atmos.prsn.tavg-u-hxy-is.mon.GRL", + "atmos.rlds.tavg-u-hxy-u.day.GLB", + "land.sftgif.tavg-u-hxy-u.mon.GLB", + "landIce.acabf.tavg-u-hxy-is.mon.GLB", + "landIce.hfgeoubed.ti-u-hxy-gis.fx.GRL", + "landIce.hfls.tavg-u-hxy-is.mon.GLB", + "landIce.lithk.ti-u-hxy-is.fx.GRL", + "landIce.orog.tavg-u-hxy-is.mon.GLB", + "landIce.rsds.tavg-u-hxy-is.mon.GLB", + "landIce.sbl.tavg-u-hxy-lnd.mon.GLB", + "landIce.sftflf.tavg-u-hxy-u.mon.GLB", + "landIce.sftgrf.tavg-u-hxy-u.mon.GLB", + "landIce.snicem.tavg-u-hxy-is.mon.GRL", + "landIce.topg.ti-u-hxy-gis.fx.GRL" + ], + "Medium": [ + "atmos.prc.tavg-u-hxy-u.day.GLB", + "atmos.prsn.tavg-u-hxy-u.day.GLB", + "atmos.ts.tavg-u-hxy-u.day.GLB", + "land.burntFractionAll.tavg-u-hxy-u.mon.GLB", + "land.cSoil.tavg-sl-hxy-lnd.mon.GLB", + "land.fFireAll.tavg-u-hxy-lnd.mon.GLB", + "land.fFireNat.tavg-u-hxy-lnd.mon.GLB", + "land.mrsfl.tavg-sl-hxy-lnd.mon.GLB", + "land.mrsll.tavg-sl-hxy-lnd.mon.GLB", + "land.mrsol.tavg-sl-hxy-lnd.mon.GLB", + "landIce.hfss.tavg-u-hxy-is.mon.GLB", + "landIce.rlds.tavg-u-hxy-is.mon.GLB", + "landIce.rlus.tavg-u-hxy-is.mon.GLB", + "landIce.rsus.tavg-u-hxy-is.mon.GLB", + "landIce.snd.tavg-u-hxy-lnd.mon.GLB", + "ocean.friver.tavg-u-hxy-sea.mon.GLB", + "ocean.hfbasin.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpmadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfx.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfx.tavg-u-hxy-sea.mon.GLB", + "ocean.hfy.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfy.tavg-u-hxy-sea.mon.GLB", + "ocean.htovgyre.tavg-u-hyb-sea.mon.GLB", + "ocean.htovovrt.tavg-u-hyb-sea.mon.GLB", + "ocean.masso.tavg-u-hm-sea.mon.GLB", + "ocean.mlotst.tmax-u-hxy-sea.mon.GLB", + "ocean.mlotst.tmin-u-hxy-sea.mon.GLB", + "ocean.msfty.tavg-ol-ht-sea.mon.GLB", + "ocean.pbo.tavg-u-hxy-sea.mon.GLB", + "ocean.sfx.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfx.tavg-u-hxy-sea.mon.GLB", + "ocean.sfy.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfy.tavg-u-hxy-sea.mon.GLB", + "ocean.sltovgyre.tavg-u-hyb-sea.mon.GLB", + "ocean.sltovovrt.tavg-u-hyb-sea.mon.GLB", + "ocean.volo.tavg-u-hm-sea.mon.GLB" + ], + "Low": [] + }, + "esm-up2p0-gwl4p0": { + "Core": [ + "atmos.areacella.ti-u-hxy-u.fx.GLB", + "atmos.cl.tavg-al-hxy-u.mon.GLB", + "atmos.cli.tavg-al-hxy-u.mon.GLB", + "atmos.clivi.tavg-u-hxy-u.mon.GLB", + "atmos.clt.tavg-u-hxy-u.day.GLB", + "atmos.clt.tavg-u-hxy-u.mon.GLB", + "atmos.clw.tavg-al-hxy-u.mon.GLB", + "atmos.clwvi.tavg-u-hxy-u.mon.GLB", + "atmos.evspsbl.tavg-u-hxy-u.mon.GLB", + "atmos.hfls.tavg-u-hxy-u.mon.GLB", + "atmos.hfss.tavg-u-hxy-u.mon.GLB", + "atmos.hur.tavg-p19-hxy-air.mon.GLB", + "atmos.hur.tavg-p19-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.6hr.GLB", + "atmos.hurs.tavg-h2m-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.mon.GLB", + "atmos.hus.tavg-p19-hxy-u.day.GLB", + "atmos.hus.tavg-p19-hxy-u.mon.GLB", + "atmos.huss.tavg-h2m-hxy-u.day.GLB", + "atmos.huss.tavg-h2m-hxy-u.mon.GLB", + "atmos.huss.tpt-h2m-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.1hr.GLB", + "atmos.pr.tavg-u-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.day.GLB", + "atmos.pr.tavg-u-hxy-u.mon.GLB", + "atmos.prc.tavg-u-hxy-u.mon.GLB", + "atmos.prsn.tavg-u-hxy-u.mon.GLB", + "atmos.prw.tavg-u-hxy-u.mon.GLB", + "atmos.ps.tavg-u-hxy-u.day.GLB", + "atmos.ps.tavg-u-hxy-u.mon.GLB", + "atmos.psl.tavg-u-hxy-u.day.GLB", + "atmos.psl.tavg-u-hxy-u.mon.GLB", + "atmos.rlds.tavg-u-hxy-u.mon.GLB", + "atmos.rldscs.tavg-u-hxy-u.mon.GLB", + "atmos.rlus.tavg-u-hxy-u.mon.GLB", + "atmos.rluscs.tavg-u-hxy-u.mon.GLB", + "atmos.rlut.tavg-u-hxy-u.mon.GLB", + "atmos.rlutcs.tavg-u-hxy-u.mon.GLB", + "atmos.rsds.tavg-u-hxy-u.day.GLB", + "atmos.rsds.tavg-u-hxy-u.mon.GLB", + "atmos.rsdscs.tavg-u-hxy-u.mon.GLB", + "atmos.rsdt.tavg-u-hxy-u.mon.GLB", + "atmos.rsus.tavg-u-hxy-u.mon.GLB", + "atmos.rsuscs.tavg-u-hxy-u.mon.GLB", + "atmos.rsut.tavg-u-hxy-u.mon.GLB", + "atmos.rsutcs.tavg-u-hxy-u.mon.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.day.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.mon.GLB", + "atmos.sftlf.ti-u-hxy-u.fx.GLB", + "atmos.ta.tavg-p19-hxy-air.day.GLB", + "atmos.ta.tavg-p19-hxy-air.mon.GLB", + "atmos.ta.tpt-p3-hxy-air.6hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.day.GLB", + "atmos.tas.tavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tmax-h2m-hxy-u.day.GLB", + "atmos.tas.tmaxavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tmin-h2m-hxy-u.day.GLB", + "atmos.tas.tminavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tpt-h2m-hxy-u.3hr.GLB", + "atmos.tauu.tavg-u-hxy-u.mon.GLB", + "atmos.tauv.tavg-u-hxy-u.mon.GLB", + "atmos.ts.tavg-u-hxy-u.mon.GLB", + "atmos.ua.tavg-p19-hxy-air.day.GLB", + "atmos.ua.tavg-p19-hxy-air.mon.GLB", + "atmos.ua.tpt-p3-hxy-air.6hr.GLB", + "atmos.uas.tavg-h10m-hxy-u.day.GLB", + "atmos.uas.tavg-h10m-hxy-u.mon.GLB", + "atmos.uas.tpt-h10m-hxy-u.3hr.GLB", + "atmos.va.tavg-p19-hxy-air.day.GLB", + "atmos.va.tavg-p19-hxy-air.mon.GLB", + "atmos.va.tpt-p3-hxy-air.6hr.GLB", + "atmos.vas.tavg-h10m-hxy-u.day.GLB", + "atmos.vas.tavg-h10m-hxy-u.mon.GLB", + "atmos.vas.tpt-h10m-hxy-u.3hr.GLB", + "atmos.wap.tavg-p19-hxy-air.mon.GLB", + "atmos.wap.tavg-p19-hxy-u.day.GLB", + "atmos.zg.tavg-p19-hxy-air.day.GLB", + "atmos.zg.tavg-p19-hxy-air.mon.GLB", + "land.evspsblsoi.tavg-u-hxy-lnd.mon.GLB", + "land.evspsblveg.tavg-u-hxy-lnd.mon.GLB", + "land.lai.tavg-u-hxy-lnd.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.mon.GLB", + "land.mrros.tavg-u-hxy-lnd.mon.GLB", + "land.mrso.tavg-u-hxy-lnd.mon.GLB", + "land.mrsofc.ti-u-hxy-lnd.fx.GLB", + "land.mrsol.tavg-d10cm-hxy-lnd.mon.GLB", + "land.orog.ti-u-hxy-u.fx.GLB", + "land.rootd.ti-u-hxy-lnd.fx.GLB", + "land.sftgif.ti-u-hxy-u.fx.GLB", + "land.slthick.ti-sl-hxy-lnd.fx.GLB", + "landIce.mrfso.tavg-u-hxy-lnd.mon.GLB", + "landIce.snc.tavg-u-hxy-lnd.mon.GLB", + "landIce.snw.tavg-u-hxy-lnd.mon.GLB", + "ocean.areacello.ti-u-hxy-u.fx.GLB", + "ocean.basin.ti-u-hxy-u.fx.GLB", + "ocean.bigthetao.tavg-ol-hxy-sea.mon.GLB", + "ocean.deptho.ti-u-hxy-sea.fx.GLB", + "ocean.hfds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfgeou.ti-u-hxy-sea.fx.GLB", + "ocean.masscello.tavg-ol-hxy-sea.mon.GLB", + "ocean.masscello.ti-ol-hxy-sea.fx.GLB", + "ocean.mlotst.tavg-u-hxy-sea.mon.GLB", + "ocean.sftof.ti-u-hxy-u.fx.GLB", + "ocean.so.tavg-ol-hxy-sea.mon.GLB", + "ocean.sos.tavg-u-hxy-sea.day.GLB", + "ocean.sos.tavg-u-hxy-sea.mon.GLB", + "ocean.tauuo.tavg-u-hxy-sea.mon.GLB", + "ocean.tauvo.tavg-u-hxy-sea.mon.GLB", + "ocean.thetao.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcello.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcello.ti-ol-hxy-sea.fx.GLB", + "ocean.tos.tavg-u-hxy-sea.day.GLB", + "ocean.tos.tavg-u-hxy-sea.mon.GLB", + "ocean.umo.tavg-ol-hxy-sea.mon.GLB", + "ocean.uo.tavg-ol-hxy-sea.mon.GLB", + "ocean.vmo.tavg-ol-hxy-sea.mon.GLB", + "ocean.vo.tavg-ol-hxy-sea.mon.GLB", + "ocean.wmo.tavg-ol-hxy-sea.mon.GLB", + "ocean.wo.tavg-ol-hxy-sea.mon.GLB", + "ocean.zos.tavg-u-hxy-sea.day.GLB", + "ocean.zos.tavg-u-hxy-sea.mon.GLB", + "ocean.zostoga.tavg-u-hm-sea.mon.GLB", + "seaIce.siconc.tavg-u-hxy-u.day.GLB", + "seaIce.siconc.tavg-u-hxy-u.mon.GLB", + "seaIce.simass.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-si.mon.GLB", + "seaIce.sitimefrac.tavg-u-hxy-sea.mon.GLB", + "seaIce.siu.tavg-u-hxy-si.mon.GLB", + "seaIce.siv.tavg-u-hxy-si.mon.GLB", + "seaIce.snd.tavg-u-hxy-sn.mon.GLB", + "seaIce.ts.tavg-u-hxy-si.mon.GLB" + ], + "High": [ + "atmos.hfls.tavg-u-hxy-is.mon.GRL", + "atmos.prra.tavg-u-hxy-is.mon.GRL", + "atmos.prsn.tavg-u-hxy-is.mon.GRL", + "atmos.rlds.tavg-u-hxy-u.day.GLB", + "land.sftgif.tavg-u-hxy-u.mon.GLB", + "landIce.acabf.tavg-u-hxy-is.mon.GLB", + "landIce.hfgeoubed.ti-u-hxy-gis.fx.GRL", + "landIce.hfls.tavg-u-hxy-is.mon.GLB", + "landIce.lithk.ti-u-hxy-is.fx.GRL", + "landIce.orog.tavg-u-hxy-is.mon.GLB", + "landIce.rsds.tavg-u-hxy-is.mon.GLB", + "landIce.sbl.tavg-u-hxy-lnd.mon.GLB", + "landIce.sftflf.tavg-u-hxy-u.mon.GLB", + "landIce.sftgrf.tavg-u-hxy-u.mon.GLB", + "landIce.snicem.tavg-u-hxy-is.mon.GRL", + "landIce.topg.ti-u-hxy-gis.fx.GRL" + ], + "Medium": [ + "atmos.prc.tavg-u-hxy-u.day.GLB", + "atmos.prsn.tavg-u-hxy-u.day.GLB", + "atmos.ts.tavg-u-hxy-u.day.GLB", + "land.burntFractionAll.tavg-u-hxy-u.mon.GLB", + "land.cSoil.tavg-sl-hxy-lnd.mon.GLB", + "land.fFireAll.tavg-u-hxy-lnd.mon.GLB", + "land.fFireNat.tavg-u-hxy-lnd.mon.GLB", + "land.mrsfl.tavg-sl-hxy-lnd.mon.GLB", + "land.mrsll.tavg-sl-hxy-lnd.mon.GLB", + "land.mrsol.tavg-sl-hxy-lnd.mon.GLB", + "landIce.hfss.tavg-u-hxy-is.mon.GLB", + "landIce.rlds.tavg-u-hxy-is.mon.GLB", + "landIce.rlus.tavg-u-hxy-is.mon.GLB", + "landIce.rsus.tavg-u-hxy-is.mon.GLB", + "landIce.snd.tavg-u-hxy-lnd.mon.GLB", + "ocean.friver.tavg-u-hxy-sea.mon.GLB", + "ocean.hfbasin.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpmadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfx.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfx.tavg-u-hxy-sea.mon.GLB", + "ocean.hfy.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfy.tavg-u-hxy-sea.mon.GLB", + "ocean.htovgyre.tavg-u-hyb-sea.mon.GLB", + "ocean.htovovrt.tavg-u-hyb-sea.mon.GLB", + "ocean.masso.tavg-u-hm-sea.mon.GLB", + "ocean.mlotst.tmax-u-hxy-sea.mon.GLB", + "ocean.mlotst.tmin-u-hxy-sea.mon.GLB", + "ocean.msfty.tavg-ol-ht-sea.mon.GLB", + "ocean.pbo.tavg-u-hxy-sea.mon.GLB", + "ocean.sfx.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfx.tavg-u-hxy-sea.mon.GLB", + "ocean.sfy.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfy.tavg-u-hxy-sea.mon.GLB", + "ocean.sltovgyre.tavg-u-hyb-sea.mon.GLB", + "ocean.sltovovrt.tavg-u-hyb-sea.mon.GLB", + "ocean.volo.tavg-u-hm-sea.mon.GLB" + ], + "Low": [] + }, + "esm-up2p0-gwl4p0-50y-dn2p0": { + "Core": [ + "atmos.areacella.ti-u-hxy-u.fx.GLB", + "atmos.cl.tavg-al-hxy-u.mon.GLB", + "atmos.cli.tavg-al-hxy-u.mon.GLB", + "atmos.clivi.tavg-u-hxy-u.mon.GLB", + "atmos.clt.tavg-u-hxy-u.day.GLB", + "atmos.clt.tavg-u-hxy-u.mon.GLB", + "atmos.clw.tavg-al-hxy-u.mon.GLB", + "atmos.clwvi.tavg-u-hxy-u.mon.GLB", + "atmos.evspsbl.tavg-u-hxy-u.mon.GLB", + "atmos.hfls.tavg-u-hxy-u.mon.GLB", + "atmos.hfss.tavg-u-hxy-u.mon.GLB", + "atmos.hur.tavg-p19-hxy-air.mon.GLB", + "atmos.hur.tavg-p19-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.6hr.GLB", + "atmos.hurs.tavg-h2m-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.mon.GLB", + "atmos.hus.tavg-p19-hxy-u.day.GLB", + "atmos.hus.tavg-p19-hxy-u.mon.GLB", + "atmos.huss.tavg-h2m-hxy-u.day.GLB", + "atmos.huss.tavg-h2m-hxy-u.mon.GLB", + "atmos.huss.tpt-h2m-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.1hr.GLB", + "atmos.pr.tavg-u-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.day.GLB", + "atmos.pr.tavg-u-hxy-u.mon.GLB", + "atmos.prc.tavg-u-hxy-u.mon.GLB", + "atmos.prsn.tavg-u-hxy-u.mon.GLB", + "atmos.prw.tavg-u-hxy-u.mon.GLB", + "atmos.ps.tavg-u-hxy-u.day.GLB", + "atmos.ps.tavg-u-hxy-u.mon.GLB", + "atmos.psl.tavg-u-hxy-u.day.GLB", + "atmos.psl.tavg-u-hxy-u.mon.GLB", + "atmos.rlds.tavg-u-hxy-u.mon.GLB", + "atmos.rldscs.tavg-u-hxy-u.mon.GLB", + "atmos.rlus.tavg-u-hxy-u.mon.GLB", + "atmos.rluscs.tavg-u-hxy-u.mon.GLB", + "atmos.rlut.tavg-u-hxy-u.mon.GLB", + "atmos.rlutcs.tavg-u-hxy-u.mon.GLB", + "atmos.rsds.tavg-u-hxy-u.day.GLB", + "atmos.rsds.tavg-u-hxy-u.mon.GLB", + "atmos.rsdscs.tavg-u-hxy-u.mon.GLB", + "atmos.rsdt.tavg-u-hxy-u.mon.GLB", + "atmos.rsus.tavg-u-hxy-u.mon.GLB", + "atmos.rsuscs.tavg-u-hxy-u.mon.GLB", + "atmos.rsut.tavg-u-hxy-u.mon.GLB", + "atmos.rsutcs.tavg-u-hxy-u.mon.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.day.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.mon.GLB", + "atmos.sftlf.ti-u-hxy-u.fx.GLB", + "atmos.ta.tavg-p19-hxy-air.day.GLB", + "atmos.ta.tavg-p19-hxy-air.mon.GLB", + "atmos.ta.tpt-p3-hxy-air.6hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.day.GLB", + "atmos.tas.tavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tmax-h2m-hxy-u.day.GLB", + "atmos.tas.tmaxavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tmin-h2m-hxy-u.day.GLB", + "atmos.tas.tminavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tpt-h2m-hxy-u.3hr.GLB", + "atmos.tauu.tavg-u-hxy-u.mon.GLB", + "atmos.tauv.tavg-u-hxy-u.mon.GLB", + "atmos.ts.tavg-u-hxy-u.mon.GLB", + "atmos.ua.tavg-p19-hxy-air.day.GLB", + "atmos.ua.tavg-p19-hxy-air.mon.GLB", + "atmos.ua.tpt-p3-hxy-air.6hr.GLB", + "atmos.uas.tavg-h10m-hxy-u.day.GLB", + "atmos.uas.tavg-h10m-hxy-u.mon.GLB", + "atmos.uas.tpt-h10m-hxy-u.3hr.GLB", + "atmos.va.tavg-p19-hxy-air.day.GLB", + "atmos.va.tavg-p19-hxy-air.mon.GLB", + "atmos.va.tpt-p3-hxy-air.6hr.GLB", + "atmos.vas.tavg-h10m-hxy-u.day.GLB", + "atmos.vas.tavg-h10m-hxy-u.mon.GLB", + "atmos.vas.tpt-h10m-hxy-u.3hr.GLB", + "atmos.wap.tavg-p19-hxy-air.mon.GLB", + "atmos.wap.tavg-p19-hxy-u.day.GLB", + "atmos.zg.tavg-p19-hxy-air.day.GLB", + "atmos.zg.tavg-p19-hxy-air.mon.GLB", + "land.evspsblsoi.tavg-u-hxy-lnd.mon.GLB", + "land.evspsblveg.tavg-u-hxy-lnd.mon.GLB", + "land.lai.tavg-u-hxy-lnd.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.mon.GLB", + "land.mrros.tavg-u-hxy-lnd.mon.GLB", + "land.mrso.tavg-u-hxy-lnd.mon.GLB", + "land.mrsofc.ti-u-hxy-lnd.fx.GLB", + "land.mrsol.tavg-d10cm-hxy-lnd.mon.GLB", + "land.orog.ti-u-hxy-u.fx.GLB", + "land.rootd.ti-u-hxy-lnd.fx.GLB", + "land.sftgif.ti-u-hxy-u.fx.GLB", + "land.slthick.ti-sl-hxy-lnd.fx.GLB", + "landIce.mrfso.tavg-u-hxy-lnd.mon.GLB", + "landIce.snc.tavg-u-hxy-lnd.mon.GLB", + "landIce.snw.tavg-u-hxy-lnd.mon.GLB", + "ocean.areacello.ti-u-hxy-u.fx.GLB", + "ocean.basin.ti-u-hxy-u.fx.GLB", + "ocean.bigthetao.tavg-ol-hxy-sea.mon.GLB", + "ocean.deptho.ti-u-hxy-sea.fx.GLB", + "ocean.hfds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfgeou.ti-u-hxy-sea.fx.GLB", + "ocean.masscello.tavg-ol-hxy-sea.mon.GLB", + "ocean.masscello.ti-ol-hxy-sea.fx.GLB", + "ocean.mlotst.tavg-u-hxy-sea.mon.GLB", + "ocean.sftof.ti-u-hxy-u.fx.GLB", + "ocean.so.tavg-ol-hxy-sea.mon.GLB", + "ocean.sos.tavg-u-hxy-sea.day.GLB", + "ocean.sos.tavg-u-hxy-sea.mon.GLB", + "ocean.tauuo.tavg-u-hxy-sea.mon.GLB", + "ocean.tauvo.tavg-u-hxy-sea.mon.GLB", + "ocean.thetao.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcello.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcello.ti-ol-hxy-sea.fx.GLB", + "ocean.tos.tavg-u-hxy-sea.day.GLB", + "ocean.tos.tavg-u-hxy-sea.mon.GLB", + "ocean.umo.tavg-ol-hxy-sea.mon.GLB", + "ocean.uo.tavg-ol-hxy-sea.mon.GLB", + "ocean.vmo.tavg-ol-hxy-sea.mon.GLB", + "ocean.vo.tavg-ol-hxy-sea.mon.GLB", + "ocean.wmo.tavg-ol-hxy-sea.mon.GLB", + "ocean.wo.tavg-ol-hxy-sea.mon.GLB", + "ocean.zos.tavg-u-hxy-sea.day.GLB", + "ocean.zos.tavg-u-hxy-sea.mon.GLB", + "ocean.zostoga.tavg-u-hm-sea.mon.GLB", + "seaIce.siconc.tavg-u-hxy-u.day.GLB", + "seaIce.siconc.tavg-u-hxy-u.mon.GLB", + "seaIce.simass.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-si.mon.GLB", + "seaIce.sitimefrac.tavg-u-hxy-sea.mon.GLB", + "seaIce.siu.tavg-u-hxy-si.mon.GLB", + "seaIce.siv.tavg-u-hxy-si.mon.GLB", + "seaIce.snd.tavg-u-hxy-sn.mon.GLB", + "seaIce.ts.tavg-u-hxy-si.mon.GLB" + ], + "High": [ + "atmos.hfls.tavg-u-hxy-is.mon.GRL", + "atmos.prra.tavg-u-hxy-is.mon.GRL", + "atmos.prsn.tavg-u-hxy-is.mon.GRL", + "atmos.rlds.tavg-u-hxy-u.day.GLB", + "land.sftgif.tavg-u-hxy-u.mon.GLB", + "landIce.acabf.tavg-u-hxy-is.mon.GLB", + "landIce.hfgeoubed.ti-u-hxy-gis.fx.GRL", + "landIce.hfls.tavg-u-hxy-is.mon.GLB", + "landIce.lithk.ti-u-hxy-is.fx.GRL", + "landIce.orog.tavg-u-hxy-is.mon.GLB", + "landIce.rsds.tavg-u-hxy-is.mon.GLB", + "landIce.sbl.tavg-u-hxy-lnd.mon.GLB", + "landIce.sftflf.tavg-u-hxy-u.mon.GLB", + "landIce.sftgrf.tavg-u-hxy-u.mon.GLB", + "landIce.snicem.tavg-u-hxy-is.mon.GRL", + "landIce.topg.ti-u-hxy-gis.fx.GRL" + ], + "Medium": [ + "atmos.prc.tavg-u-hxy-u.day.GLB", + "atmos.prsn.tavg-u-hxy-u.day.GLB", + "atmos.ts.tavg-u-hxy-u.day.GLB", + "land.burntFractionAll.tavg-u-hxy-u.mon.GLB", + "land.cSoil.tavg-sl-hxy-lnd.mon.GLB", + "land.fFireAll.tavg-u-hxy-lnd.mon.GLB", + "land.fFireNat.tavg-u-hxy-lnd.mon.GLB", + "land.mrsfl.tavg-sl-hxy-lnd.mon.GLB", + "land.mrsll.tavg-sl-hxy-lnd.mon.GLB", + "land.mrsol.tavg-sl-hxy-lnd.mon.GLB", + "landIce.hfss.tavg-u-hxy-is.mon.GLB", + "landIce.rlds.tavg-u-hxy-is.mon.GLB", + "landIce.rlus.tavg-u-hxy-is.mon.GLB", + "landIce.rsus.tavg-u-hxy-is.mon.GLB", + "landIce.snd.tavg-u-hxy-lnd.mon.GLB", + "ocean.friver.tavg-u-hxy-sea.mon.GLB", + "ocean.hfbasin.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpmadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfx.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfx.tavg-u-hxy-sea.mon.GLB", + "ocean.hfy.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfy.tavg-u-hxy-sea.mon.GLB", + "ocean.htovgyre.tavg-u-hyb-sea.mon.GLB", + "ocean.htovovrt.tavg-u-hyb-sea.mon.GLB", + "ocean.masso.tavg-u-hm-sea.mon.GLB", + "ocean.mlotst.tmax-u-hxy-sea.mon.GLB", + "ocean.mlotst.tmin-u-hxy-sea.mon.GLB", + "ocean.msfty.tavg-ol-ht-sea.mon.GLB", + "ocean.pbo.tavg-u-hxy-sea.mon.GLB", + "ocean.sfx.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfx.tavg-u-hxy-sea.mon.GLB", + "ocean.sfy.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfy.tavg-u-hxy-sea.mon.GLB", + "ocean.sltovgyre.tavg-u-hyb-sea.mon.GLB", + "ocean.sltovovrt.tavg-u-hyb-sea.mon.GLB", + "ocean.volo.tavg-u-hm-sea.mon.GLB" + ], + "Low": [] + }, + "esm-up2p0-gwl4p0-50y-dn2p0-gwl2p0": { + "Core": [ + "atmos.areacella.ti-u-hxy-u.fx.GLB", + "atmos.cl.tavg-al-hxy-u.mon.GLB", + "atmos.cli.tavg-al-hxy-u.mon.GLB", + "atmos.clivi.tavg-u-hxy-u.mon.GLB", + "atmos.clt.tavg-u-hxy-u.day.GLB", + "atmos.clt.tavg-u-hxy-u.mon.GLB", + "atmos.clw.tavg-al-hxy-u.mon.GLB", + "atmos.clwvi.tavg-u-hxy-u.mon.GLB", + "atmos.evspsbl.tavg-u-hxy-u.mon.GLB", + "atmos.hfls.tavg-u-hxy-u.mon.GLB", + "atmos.hfss.tavg-u-hxy-u.mon.GLB", + "atmos.hur.tavg-p19-hxy-air.mon.GLB", + "atmos.hur.tavg-p19-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.6hr.GLB", + "atmos.hurs.tavg-h2m-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.mon.GLB", + "atmos.hus.tavg-p19-hxy-u.day.GLB", + "atmos.hus.tavg-p19-hxy-u.mon.GLB", + "atmos.huss.tavg-h2m-hxy-u.day.GLB", + "atmos.huss.tavg-h2m-hxy-u.mon.GLB", + "atmos.huss.tpt-h2m-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.1hr.GLB", + "atmos.pr.tavg-u-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.day.GLB", + "atmos.pr.tavg-u-hxy-u.mon.GLB", + "atmos.prc.tavg-u-hxy-u.mon.GLB", + "atmos.prsn.tavg-u-hxy-u.mon.GLB", + "atmos.prw.tavg-u-hxy-u.mon.GLB", + "atmos.ps.tavg-u-hxy-u.day.GLB", + "atmos.ps.tavg-u-hxy-u.mon.GLB", + "atmos.psl.tavg-u-hxy-u.day.GLB", + "atmos.psl.tavg-u-hxy-u.mon.GLB", + "atmos.rlds.tavg-u-hxy-u.mon.GLB", + "atmos.rldscs.tavg-u-hxy-u.mon.GLB", + "atmos.rlus.tavg-u-hxy-u.mon.GLB", + "atmos.rluscs.tavg-u-hxy-u.mon.GLB", + "atmos.rlut.tavg-u-hxy-u.mon.GLB", + "atmos.rlutcs.tavg-u-hxy-u.mon.GLB", + "atmos.rsds.tavg-u-hxy-u.day.GLB", + "atmos.rsds.tavg-u-hxy-u.mon.GLB", + "atmos.rsdscs.tavg-u-hxy-u.mon.GLB", + "atmos.rsdt.tavg-u-hxy-u.mon.GLB", + "atmos.rsus.tavg-u-hxy-u.mon.GLB", + "atmos.rsuscs.tavg-u-hxy-u.mon.GLB", + "atmos.rsut.tavg-u-hxy-u.mon.GLB", + "atmos.rsutcs.tavg-u-hxy-u.mon.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.day.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.mon.GLB", + "atmos.sftlf.ti-u-hxy-u.fx.GLB", + "atmos.ta.tavg-p19-hxy-air.day.GLB", + "atmos.ta.tavg-p19-hxy-air.mon.GLB", + "atmos.ta.tpt-p3-hxy-air.6hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.day.GLB", + "atmos.tas.tavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tmax-h2m-hxy-u.day.GLB", + "atmos.tas.tmaxavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tmin-h2m-hxy-u.day.GLB", + "atmos.tas.tminavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tpt-h2m-hxy-u.3hr.GLB", + "atmos.tauu.tavg-u-hxy-u.mon.GLB", + "atmos.tauv.tavg-u-hxy-u.mon.GLB", + "atmos.ts.tavg-u-hxy-u.mon.GLB", + "atmos.ua.tavg-p19-hxy-air.day.GLB", + "atmos.ua.tavg-p19-hxy-air.mon.GLB", + "atmos.ua.tpt-p3-hxy-air.6hr.GLB", + "atmos.uas.tavg-h10m-hxy-u.day.GLB", + "atmos.uas.tavg-h10m-hxy-u.mon.GLB", + "atmos.uas.tpt-h10m-hxy-u.3hr.GLB", + "atmos.va.tavg-p19-hxy-air.day.GLB", + "atmos.va.tavg-p19-hxy-air.mon.GLB", + "atmos.va.tpt-p3-hxy-air.6hr.GLB", + "atmos.vas.tavg-h10m-hxy-u.day.GLB", + "atmos.vas.tavg-h10m-hxy-u.mon.GLB", + "atmos.vas.tpt-h10m-hxy-u.3hr.GLB", + "atmos.wap.tavg-p19-hxy-air.mon.GLB", + "atmos.wap.tavg-p19-hxy-u.day.GLB", + "atmos.zg.tavg-p19-hxy-air.day.GLB", + "atmos.zg.tavg-p19-hxy-air.mon.GLB", + "land.evspsblsoi.tavg-u-hxy-lnd.mon.GLB", + "land.evspsblveg.tavg-u-hxy-lnd.mon.GLB", + "land.lai.tavg-u-hxy-lnd.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.mon.GLB", + "land.mrros.tavg-u-hxy-lnd.mon.GLB", + "land.mrso.tavg-u-hxy-lnd.mon.GLB", + "land.mrsofc.ti-u-hxy-lnd.fx.GLB", + "land.mrsol.tavg-d10cm-hxy-lnd.mon.GLB", + "land.orog.ti-u-hxy-u.fx.GLB", + "land.rootd.ti-u-hxy-lnd.fx.GLB", + "land.sftgif.ti-u-hxy-u.fx.GLB", + "land.slthick.ti-sl-hxy-lnd.fx.GLB", + "landIce.mrfso.tavg-u-hxy-lnd.mon.GLB", + "landIce.snc.tavg-u-hxy-lnd.mon.GLB", + "landIce.snw.tavg-u-hxy-lnd.mon.GLB", + "ocean.areacello.ti-u-hxy-u.fx.GLB", + "ocean.basin.ti-u-hxy-u.fx.GLB", + "ocean.bigthetao.tavg-ol-hxy-sea.mon.GLB", + "ocean.deptho.ti-u-hxy-sea.fx.GLB", + "ocean.hfds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfgeou.ti-u-hxy-sea.fx.GLB", + "ocean.masscello.tavg-ol-hxy-sea.mon.GLB", + "ocean.masscello.ti-ol-hxy-sea.fx.GLB", + "ocean.mlotst.tavg-u-hxy-sea.mon.GLB", + "ocean.sftof.ti-u-hxy-u.fx.GLB", + "ocean.so.tavg-ol-hxy-sea.mon.GLB", + "ocean.sos.tavg-u-hxy-sea.day.GLB", + "ocean.sos.tavg-u-hxy-sea.mon.GLB", + "ocean.tauuo.tavg-u-hxy-sea.mon.GLB", + "ocean.tauvo.tavg-u-hxy-sea.mon.GLB", + "ocean.thetao.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcello.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcello.ti-ol-hxy-sea.fx.GLB", + "ocean.tos.tavg-u-hxy-sea.day.GLB", + "ocean.tos.tavg-u-hxy-sea.mon.GLB", + "ocean.umo.tavg-ol-hxy-sea.mon.GLB", + "ocean.uo.tavg-ol-hxy-sea.mon.GLB", + "ocean.vmo.tavg-ol-hxy-sea.mon.GLB", + "ocean.vo.tavg-ol-hxy-sea.mon.GLB", + "ocean.wmo.tavg-ol-hxy-sea.mon.GLB", + "ocean.wo.tavg-ol-hxy-sea.mon.GLB", + "ocean.zos.tavg-u-hxy-sea.day.GLB", + "ocean.zos.tavg-u-hxy-sea.mon.GLB", + "ocean.zostoga.tavg-u-hm-sea.mon.GLB", + "seaIce.siconc.tavg-u-hxy-u.day.GLB", + "seaIce.siconc.tavg-u-hxy-u.mon.GLB", + "seaIce.simass.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-si.mon.GLB", + "seaIce.sitimefrac.tavg-u-hxy-sea.mon.GLB", + "seaIce.siu.tavg-u-hxy-si.mon.GLB", + "seaIce.siv.tavg-u-hxy-si.mon.GLB", + "seaIce.snd.tavg-u-hxy-sn.mon.GLB", + "seaIce.ts.tavg-u-hxy-si.mon.GLB" + ], + "High": [ + "atmos.hfls.tavg-u-hxy-is.mon.GRL", + "atmos.prra.tavg-u-hxy-is.mon.GRL", + "atmos.prsn.tavg-u-hxy-is.mon.GRL", + "atmos.rlds.tavg-u-hxy-u.day.GLB", + "land.sftgif.tavg-u-hxy-u.mon.GLB", + "landIce.acabf.tavg-u-hxy-is.mon.GLB", + "landIce.hfgeoubed.ti-u-hxy-gis.fx.GRL", + "landIce.hfls.tavg-u-hxy-is.mon.GLB", + "landIce.lithk.ti-u-hxy-is.fx.GRL", + "landIce.orog.tavg-u-hxy-is.mon.GLB", + "landIce.rsds.tavg-u-hxy-is.mon.GLB", + "landIce.sbl.tavg-u-hxy-lnd.mon.GLB", + "landIce.sftflf.tavg-u-hxy-u.mon.GLB", + "landIce.sftgrf.tavg-u-hxy-u.mon.GLB", + "landIce.snicem.tavg-u-hxy-is.mon.GRL", + "landIce.topg.ti-u-hxy-gis.fx.GRL" + ], + "Medium": [ + "atmos.prc.tavg-u-hxy-u.day.GLB", + "atmos.prsn.tavg-u-hxy-u.day.GLB", + "atmos.ts.tavg-u-hxy-u.day.GLB", + "land.burntFractionAll.tavg-u-hxy-u.mon.GLB", + "land.cSoil.tavg-sl-hxy-lnd.mon.GLB", + "land.fFireAll.tavg-u-hxy-lnd.mon.GLB", + "land.fFireNat.tavg-u-hxy-lnd.mon.GLB", + "land.mrsfl.tavg-sl-hxy-lnd.mon.GLB", + "land.mrsll.tavg-sl-hxy-lnd.mon.GLB", + "land.mrsol.tavg-sl-hxy-lnd.mon.GLB", + "landIce.hfss.tavg-u-hxy-is.mon.GLB", + "landIce.rlds.tavg-u-hxy-is.mon.GLB", + "landIce.rlus.tavg-u-hxy-is.mon.GLB", + "landIce.rsus.tavg-u-hxy-is.mon.GLB", + "landIce.snd.tavg-u-hxy-lnd.mon.GLB", + "ocean.friver.tavg-u-hxy-sea.mon.GLB", + "ocean.hfbasin.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpmadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfx.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfx.tavg-u-hxy-sea.mon.GLB", + "ocean.hfy.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfy.tavg-u-hxy-sea.mon.GLB", + "ocean.htovgyre.tavg-u-hyb-sea.mon.GLB", + "ocean.htovovrt.tavg-u-hyb-sea.mon.GLB", + "ocean.masso.tavg-u-hm-sea.mon.GLB", + "ocean.mlotst.tmax-u-hxy-sea.mon.GLB", + "ocean.mlotst.tmin-u-hxy-sea.mon.GLB", + "ocean.msfty.tavg-ol-ht-sea.mon.GLB", + "ocean.pbo.tavg-u-hxy-sea.mon.GLB", + "ocean.sfx.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfx.tavg-u-hxy-sea.mon.GLB", + "ocean.sfy.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfy.tavg-u-hxy-sea.mon.GLB", + "ocean.sltovgyre.tavg-u-hyb-sea.mon.GLB", + "ocean.sltovovrt.tavg-u-hyb-sea.mon.GLB", + "ocean.volo.tavg-u-hm-sea.mon.GLB" + ], + "Low": [] + }, + "esm-up2p0-gwl5p0": { + "Core": [ + "atmos.areacella.ti-u-hxy-u.fx.GLB", + "atmos.cl.tavg-al-hxy-u.mon.GLB", + "atmos.cli.tavg-al-hxy-u.mon.GLB", + "atmos.clivi.tavg-u-hxy-u.mon.GLB", + "atmos.clt.tavg-u-hxy-u.day.GLB", + "atmos.clt.tavg-u-hxy-u.mon.GLB", + "atmos.clw.tavg-al-hxy-u.mon.GLB", + "atmos.clwvi.tavg-u-hxy-u.mon.GLB", + "atmos.evspsbl.tavg-u-hxy-u.mon.GLB", + "atmos.hfls.tavg-u-hxy-u.mon.GLB", + "atmos.hfss.tavg-u-hxy-u.mon.GLB", + "atmos.hur.tavg-p19-hxy-air.mon.GLB", + "atmos.hur.tavg-p19-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.6hr.GLB", + "atmos.hurs.tavg-h2m-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.mon.GLB", + "atmos.hus.tavg-p19-hxy-u.day.GLB", + "atmos.hus.tavg-p19-hxy-u.mon.GLB", + "atmos.huss.tavg-h2m-hxy-u.day.GLB", + "atmos.huss.tavg-h2m-hxy-u.mon.GLB", + "atmos.huss.tpt-h2m-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.1hr.GLB", + "atmos.pr.tavg-u-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.day.GLB", + "atmos.pr.tavg-u-hxy-u.mon.GLB", + "atmos.prc.tavg-u-hxy-u.mon.GLB", + "atmos.prsn.tavg-u-hxy-u.mon.GLB", + "atmos.prw.tavg-u-hxy-u.mon.GLB", + "atmos.ps.tavg-u-hxy-u.day.GLB", + "atmos.ps.tavg-u-hxy-u.mon.GLB", + "atmos.psl.tavg-u-hxy-u.day.GLB", + "atmos.psl.tavg-u-hxy-u.mon.GLB", + "atmos.rlds.tavg-u-hxy-u.mon.GLB", + "atmos.rldscs.tavg-u-hxy-u.mon.GLB", + "atmos.rlus.tavg-u-hxy-u.mon.GLB", + "atmos.rluscs.tavg-u-hxy-u.mon.GLB", + "atmos.rlut.tavg-u-hxy-u.mon.GLB", + "atmos.rlutcs.tavg-u-hxy-u.mon.GLB", + "atmos.rsds.tavg-u-hxy-u.day.GLB", + "atmos.rsds.tavg-u-hxy-u.mon.GLB", + "atmos.rsdscs.tavg-u-hxy-u.mon.GLB", + "atmos.rsdt.tavg-u-hxy-u.mon.GLB", + "atmos.rsus.tavg-u-hxy-u.mon.GLB", + "atmos.rsuscs.tavg-u-hxy-u.mon.GLB", + "atmos.rsut.tavg-u-hxy-u.mon.GLB", + "atmos.rsutcs.tavg-u-hxy-u.mon.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.day.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.mon.GLB", + "atmos.sftlf.ti-u-hxy-u.fx.GLB", + "atmos.ta.tavg-p19-hxy-air.day.GLB", + "atmos.ta.tavg-p19-hxy-air.mon.GLB", + "atmos.ta.tpt-p3-hxy-air.6hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.day.GLB", + "atmos.tas.tavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tmax-h2m-hxy-u.day.GLB", + "atmos.tas.tmaxavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tmin-h2m-hxy-u.day.GLB", + "atmos.tas.tminavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tpt-h2m-hxy-u.3hr.GLB", + "atmos.tauu.tavg-u-hxy-u.mon.GLB", + "atmos.tauv.tavg-u-hxy-u.mon.GLB", + "atmos.ts.tavg-u-hxy-u.mon.GLB", + "atmos.ua.tavg-p19-hxy-air.day.GLB", + "atmos.ua.tavg-p19-hxy-air.mon.GLB", + "atmos.ua.tpt-p3-hxy-air.6hr.GLB", + "atmos.uas.tavg-h10m-hxy-u.day.GLB", + "atmos.uas.tavg-h10m-hxy-u.mon.GLB", + "atmos.uas.tpt-h10m-hxy-u.3hr.GLB", + "atmos.va.tavg-p19-hxy-air.day.GLB", + "atmos.va.tavg-p19-hxy-air.mon.GLB", + "atmos.va.tpt-p3-hxy-air.6hr.GLB", + "atmos.vas.tavg-h10m-hxy-u.day.GLB", + "atmos.vas.tavg-h10m-hxy-u.mon.GLB", + "atmos.vas.tpt-h10m-hxy-u.3hr.GLB", + "atmos.wap.tavg-p19-hxy-air.mon.GLB", + "atmos.wap.tavg-p19-hxy-u.day.GLB", + "atmos.zg.tavg-p19-hxy-air.day.GLB", + "atmos.zg.tavg-p19-hxy-air.mon.GLB", + "land.evspsblsoi.tavg-u-hxy-lnd.mon.GLB", + "land.evspsblveg.tavg-u-hxy-lnd.mon.GLB", + "land.lai.tavg-u-hxy-lnd.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.mon.GLB", + "land.mrros.tavg-u-hxy-lnd.mon.GLB", + "land.mrso.tavg-u-hxy-lnd.mon.GLB", + "land.mrsofc.ti-u-hxy-lnd.fx.GLB", + "land.mrsol.tavg-d10cm-hxy-lnd.mon.GLB", + "land.orog.ti-u-hxy-u.fx.GLB", + "land.rootd.ti-u-hxy-lnd.fx.GLB", + "land.sftgif.ti-u-hxy-u.fx.GLB", + "land.slthick.ti-sl-hxy-lnd.fx.GLB", + "landIce.mrfso.tavg-u-hxy-lnd.mon.GLB", + "landIce.snc.tavg-u-hxy-lnd.mon.GLB", + "landIce.snw.tavg-u-hxy-lnd.mon.GLB", + "ocean.areacello.ti-u-hxy-u.fx.GLB", + "ocean.basin.ti-u-hxy-u.fx.GLB", + "ocean.bigthetao.tavg-ol-hxy-sea.mon.GLB", + "ocean.deptho.ti-u-hxy-sea.fx.GLB", + "ocean.hfds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfgeou.ti-u-hxy-sea.fx.GLB", + "ocean.masscello.tavg-ol-hxy-sea.mon.GLB", + "ocean.masscello.ti-ol-hxy-sea.fx.GLB", + "ocean.mlotst.tavg-u-hxy-sea.mon.GLB", + "ocean.sftof.ti-u-hxy-u.fx.GLB", + "ocean.so.tavg-ol-hxy-sea.mon.GLB", + "ocean.sos.tavg-u-hxy-sea.day.GLB", + "ocean.sos.tavg-u-hxy-sea.mon.GLB", + "ocean.tauuo.tavg-u-hxy-sea.mon.GLB", + "ocean.tauvo.tavg-u-hxy-sea.mon.GLB", + "ocean.thetao.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcello.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcello.ti-ol-hxy-sea.fx.GLB", + "ocean.tos.tavg-u-hxy-sea.day.GLB", + "ocean.tos.tavg-u-hxy-sea.mon.GLB", + "ocean.umo.tavg-ol-hxy-sea.mon.GLB", + "ocean.uo.tavg-ol-hxy-sea.mon.GLB", + "ocean.vmo.tavg-ol-hxy-sea.mon.GLB", + "ocean.vo.tavg-ol-hxy-sea.mon.GLB", + "ocean.wmo.tavg-ol-hxy-sea.mon.GLB", + "ocean.wo.tavg-ol-hxy-sea.mon.GLB", + "ocean.zos.tavg-u-hxy-sea.day.GLB", + "ocean.zos.tavg-u-hxy-sea.mon.GLB", + "ocean.zostoga.tavg-u-hm-sea.mon.GLB", + "seaIce.siconc.tavg-u-hxy-u.day.GLB", + "seaIce.siconc.tavg-u-hxy-u.mon.GLB", + "seaIce.simass.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-si.mon.GLB", + "seaIce.sitimefrac.tavg-u-hxy-sea.mon.GLB", + "seaIce.siu.tavg-u-hxy-si.mon.GLB", + "seaIce.siv.tavg-u-hxy-si.mon.GLB", + "seaIce.snd.tavg-u-hxy-sn.mon.GLB", + "seaIce.ts.tavg-u-hxy-si.mon.GLB" + ], + "High": [ + "atmos.hfls.tavg-u-hxy-is.mon.GRL", + "atmos.prra.tavg-u-hxy-is.mon.GRL", + "atmos.prsn.tavg-u-hxy-is.mon.GRL", + "atmos.rlds.tavg-u-hxy-u.day.GLB", + "land.sftgif.tavg-u-hxy-u.mon.GLB", + "landIce.acabf.tavg-u-hxy-is.mon.GLB", + "landIce.hfgeoubed.ti-u-hxy-gis.fx.GRL", + "landIce.hfls.tavg-u-hxy-is.mon.GLB", + "landIce.lithk.ti-u-hxy-is.fx.GRL", + "landIce.orog.tavg-u-hxy-is.mon.GLB", + "landIce.rsds.tavg-u-hxy-is.mon.GLB", + "landIce.sbl.tavg-u-hxy-lnd.mon.GLB", + "landIce.sftflf.tavg-u-hxy-u.mon.GLB", + "landIce.sftgrf.tavg-u-hxy-u.mon.GLB", + "landIce.snicem.tavg-u-hxy-is.mon.GRL", + "landIce.topg.ti-u-hxy-gis.fx.GRL" + ], + "Medium": [ + "atmos.prc.tavg-u-hxy-u.day.GLB", + "atmos.prsn.tavg-u-hxy-u.day.GLB", + "atmos.ts.tavg-u-hxy-u.day.GLB", + "land.burntFractionAll.tavg-u-hxy-u.mon.GLB", + "land.cSoil.tavg-sl-hxy-lnd.mon.GLB", + "land.fFireAll.tavg-u-hxy-lnd.mon.GLB", + "land.fFireNat.tavg-u-hxy-lnd.mon.GLB", + "land.mrsfl.tavg-sl-hxy-lnd.mon.GLB", + "land.mrsll.tavg-sl-hxy-lnd.mon.GLB", + "land.mrsol.tavg-sl-hxy-lnd.mon.GLB", + "landIce.hfss.tavg-u-hxy-is.mon.GLB", + "landIce.rlds.tavg-u-hxy-is.mon.GLB", + "landIce.rlus.tavg-u-hxy-is.mon.GLB", + "landIce.rsus.tavg-u-hxy-is.mon.GLB", + "landIce.snd.tavg-u-hxy-lnd.mon.GLB", + "ocean.friver.tavg-u-hxy-sea.mon.GLB", + "ocean.hfbasin.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpmadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfx.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfx.tavg-u-hxy-sea.mon.GLB", + "ocean.hfy.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfy.tavg-u-hxy-sea.mon.GLB", + "ocean.htovgyre.tavg-u-hyb-sea.mon.GLB", + "ocean.htovovrt.tavg-u-hyb-sea.mon.GLB", + "ocean.masso.tavg-u-hm-sea.mon.GLB", + "ocean.mlotst.tmax-u-hxy-sea.mon.GLB", + "ocean.mlotst.tmin-u-hxy-sea.mon.GLB", + "ocean.msfty.tavg-ol-ht-sea.mon.GLB", + "ocean.pbo.tavg-u-hxy-sea.mon.GLB", + "ocean.sfx.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfx.tavg-u-hxy-sea.mon.GLB", + "ocean.sfy.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfy.tavg-u-hxy-sea.mon.GLB", + "ocean.sltovgyre.tavg-u-hyb-sea.mon.GLB", + "ocean.sltovovrt.tavg-u-hyb-sea.mon.GLB", + "ocean.volo.tavg-u-hm-sea.mon.GLB" + ], + "Low": [] + }, + "g7-1p5K-sai": { + "Core": [ + "atmos.areacella.ti-u-hxy-u.fx.GLB", + "atmos.cl.tavg-al-hxy-u.mon.GLB", + "atmos.cli.tavg-al-hxy-u.mon.GLB", + "atmos.clivi.tavg-u-hxy-u.mon.GLB", + "atmos.clt.tavg-u-hxy-u.day.GLB", + "atmos.clt.tavg-u-hxy-u.mon.GLB", + "atmos.clw.tavg-al-hxy-u.mon.GLB", + "atmos.clwvi.tavg-u-hxy-u.mon.GLB", + "atmos.evspsbl.tavg-u-hxy-u.mon.GLB", + "atmos.hfls.tavg-u-hxy-u.mon.GLB", + "atmos.hfss.tavg-u-hxy-u.mon.GLB", + "atmos.hur.tavg-p19-hxy-air.mon.GLB", + "atmos.hur.tavg-p19-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.6hr.GLB", + "atmos.hurs.tavg-h2m-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.mon.GLB", + "atmos.hus.tavg-p19-hxy-u.day.GLB", + "atmos.hus.tavg-p19-hxy-u.mon.GLB", + "atmos.huss.tavg-h2m-hxy-u.day.GLB", + "atmos.huss.tavg-h2m-hxy-u.mon.GLB", + "atmos.huss.tpt-h2m-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.1hr.GLB", + "atmos.pr.tavg-u-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.day.GLB", + "atmos.pr.tavg-u-hxy-u.mon.GLB", + "atmos.prc.tavg-u-hxy-u.mon.GLB", + "atmos.prsn.tavg-u-hxy-u.mon.GLB", + "atmos.prw.tavg-u-hxy-u.mon.GLB", + "atmos.ps.tavg-u-hxy-u.day.GLB", + "atmos.ps.tavg-u-hxy-u.mon.GLB", + "atmos.psl.tavg-u-hxy-u.day.GLB", + "atmos.psl.tavg-u-hxy-u.mon.GLB", + "atmos.rlds.tavg-u-hxy-u.mon.GLB", + "atmos.rldscs.tavg-u-hxy-u.mon.GLB", + "atmos.rlus.tavg-u-hxy-u.mon.GLB", + "atmos.rluscs.tavg-u-hxy-u.mon.GLB", + "atmos.rlut.tavg-u-hxy-u.mon.GLB", + "atmos.rlutcs.tavg-u-hxy-u.mon.GLB", + "atmos.rsds.tavg-u-hxy-u.day.GLB", + "atmos.rsds.tavg-u-hxy-u.mon.GLB", + "atmos.rsdscs.tavg-u-hxy-u.mon.GLB", + "atmos.rsdt.tavg-u-hxy-u.mon.GLB", + "atmos.rsus.tavg-u-hxy-u.mon.GLB", + "atmos.rsuscs.tavg-u-hxy-u.mon.GLB", + "atmos.rsut.tavg-u-hxy-u.mon.GLB", + "atmos.rsutcs.tavg-u-hxy-u.mon.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.day.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.mon.GLB", + "atmos.sftlf.ti-u-hxy-u.fx.GLB", + "atmos.ta.tavg-p19-hxy-air.day.GLB", + "atmos.ta.tavg-p19-hxy-air.mon.GLB", + "atmos.ta.tpt-p3-hxy-air.6hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.day.GLB", + "atmos.tas.tavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tmax-h2m-hxy-u.day.GLB", + "atmos.tas.tmaxavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tmin-h2m-hxy-u.day.GLB", + "atmos.tas.tminavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tpt-h2m-hxy-u.3hr.GLB", + "atmos.tauu.tavg-u-hxy-u.mon.GLB", + "atmos.tauv.tavg-u-hxy-u.mon.GLB", + "atmos.ts.tavg-u-hxy-u.mon.GLB", + "atmos.ua.tavg-p19-hxy-air.day.GLB", + "atmos.ua.tavg-p19-hxy-air.mon.GLB", + "atmos.ua.tpt-p3-hxy-air.6hr.GLB", + "atmos.uas.tavg-h10m-hxy-u.day.GLB", + "atmos.uas.tavg-h10m-hxy-u.mon.GLB", + "atmos.uas.tpt-h10m-hxy-u.3hr.GLB", + "atmos.va.tavg-p19-hxy-air.day.GLB", + "atmos.va.tavg-p19-hxy-air.mon.GLB", + "atmos.va.tpt-p3-hxy-air.6hr.GLB", + "atmos.vas.tavg-h10m-hxy-u.day.GLB", + "atmos.vas.tavg-h10m-hxy-u.mon.GLB", + "atmos.vas.tpt-h10m-hxy-u.3hr.GLB", + "atmos.wap.tavg-p19-hxy-air.mon.GLB", + "atmos.wap.tavg-p19-hxy-u.day.GLB", + "atmos.zg.tavg-p19-hxy-air.day.GLB", + "atmos.zg.tavg-p19-hxy-air.mon.GLB", + "land.evspsblsoi.tavg-u-hxy-lnd.mon.GLB", + "land.evspsblveg.tavg-u-hxy-lnd.mon.GLB", + "land.lai.tavg-u-hxy-lnd.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.mon.GLB", + "land.mrros.tavg-u-hxy-lnd.mon.GLB", + "land.mrso.tavg-u-hxy-lnd.mon.GLB", + "land.mrsofc.ti-u-hxy-lnd.fx.GLB", + "land.mrsol.tavg-d10cm-hxy-lnd.mon.GLB", + "land.orog.ti-u-hxy-u.fx.GLB", + "land.rootd.ti-u-hxy-lnd.fx.GLB", + "land.sftgif.ti-u-hxy-u.fx.GLB", + "land.slthick.ti-sl-hxy-lnd.fx.GLB", + "landIce.mrfso.tavg-u-hxy-lnd.mon.GLB", + "landIce.snc.tavg-u-hxy-lnd.mon.GLB", + "landIce.snw.tavg-u-hxy-lnd.mon.GLB", + "ocean.areacello.ti-u-hxy-u.fx.GLB", + "ocean.basin.ti-u-hxy-u.fx.GLB", + "ocean.bigthetao.tavg-ol-hxy-sea.mon.GLB", + "ocean.deptho.ti-u-hxy-sea.fx.GLB", + "ocean.hfds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfgeou.ti-u-hxy-sea.fx.GLB", + "ocean.masscello.tavg-ol-hxy-sea.mon.GLB", + "ocean.masscello.ti-ol-hxy-sea.fx.GLB", + "ocean.mlotst.tavg-u-hxy-sea.mon.GLB", + "ocean.sftof.ti-u-hxy-u.fx.GLB", + "ocean.so.tavg-ol-hxy-sea.mon.GLB", + "ocean.sos.tavg-u-hxy-sea.day.GLB", + "ocean.sos.tavg-u-hxy-sea.mon.GLB", + "ocean.tauuo.tavg-u-hxy-sea.mon.GLB", + "ocean.tauvo.tavg-u-hxy-sea.mon.GLB", + "ocean.thetao.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcello.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcello.ti-ol-hxy-sea.fx.GLB", + "ocean.tos.tavg-u-hxy-sea.day.GLB", + "ocean.tos.tavg-u-hxy-sea.mon.GLB", + "ocean.umo.tavg-ol-hxy-sea.mon.GLB", + "ocean.uo.tavg-ol-hxy-sea.mon.GLB", + "ocean.vmo.tavg-ol-hxy-sea.mon.GLB", + "ocean.vo.tavg-ol-hxy-sea.mon.GLB", + "ocean.wmo.tavg-ol-hxy-sea.mon.GLB", + "ocean.wo.tavg-ol-hxy-sea.mon.GLB", + "ocean.zos.tavg-u-hxy-sea.day.GLB", + "ocean.zos.tavg-u-hxy-sea.mon.GLB", + "ocean.zostoga.tavg-u-hm-sea.mon.GLB", + "seaIce.siconc.tavg-u-hxy-u.day.GLB", + "seaIce.siconc.tavg-u-hxy-u.mon.GLB", + "seaIce.simass.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-si.mon.GLB", + "seaIce.sitimefrac.tavg-u-hxy-sea.mon.GLB", + "seaIce.siu.tavg-u-hxy-si.mon.GLB", + "seaIce.siv.tavg-u-hxy-si.mon.GLB", + "seaIce.snd.tavg-u-hxy-sn.mon.GLB", + "seaIce.ts.tavg-u-hxy-si.mon.GLB" + ], + "High": [ + "aerosol.abs550aer.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550bc.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550dust.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550no3.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550oa.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550so4.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550ss.tavg-u-hxy-u.mon.GLB", + "aerosol.airmass.tavg-al-hxy-u.mon.GLB", + "aerosol.aoanh.tavg-al-hxy-u.mon.NH", + "aerosol.bry.tavg-p39-hy-air.mon.GLB", + "aerosol.bs550aer.tpt-al-hxy-u.6hr.GLB", + "aerosol.c2h6.tavg-al-hxy-u.mon.GLB", + "aerosol.c3h6.tavg-al-hxy-u.mon.GLB", + "aerosol.c3h8.tavg-al-hxy-u.mon.GLB", + "aerosol.ccldncl.tavg-u-hxy-ccl.mon.GLB", + "aerosol.ccn.tavg-u-hxy-ccl.mon.30S-90S", + "aerosol.ccn.tavg-u-hxy-ccl.mon.GLB", + "aerosol.ccn1.tavg-al-hxy-u.mon.30S-90S", + "aerosol.ccn1.tavg-al-hxy-u.mon.GLB", + "aerosol.ccnp02.tavg-al-hxy-u.mon.30S-90S", + "aerosol.ccnp02.tavg-al-hxy-u.mon.GLB", + "aerosol.cdnc.tavg-al-hxy-u.mon.30S-90S", + "aerosol.cdnc.tavg-al-hxy-u.mon.GLB", + "aerosol.cfc114.tavg-al-hxy-u.mon.GLB", + "aerosol.ch3coch3.tavg-al-hxy-u.mon.GLB", + "aerosol.cheaqpso4.tavg-al-hxy-u.mon.GLB", + "aerosol.chegpso4.tavg-al-hxy-u.mon.GLB", + "aerosol.chepasoa.tavg-u-hxy-u.mon.GLB", + "aerosol.chepsoa.tavg-u-hxy-u.mon.GLB", + "aerosol.cly.tavg-p39-hy-air.mon.GLB", + "aerosol.co.tavg-al-hxy-u.mon.GLB", + "aerosol.co.tavg-h2m-hxy-u.day.GLB", + "aerosol.cod.tavg-u-hxy-u.day.GLB", + "aerosol.cod.tavg-u-hxy-u.mon.30S-90S", + "aerosol.cod.tavg-u-hxy-u.mon.GLB", + "aerosol.conccn.tavg-al-hxy-u.mon.GLB", + "aerosol.conccn.tpt-u-hs-u.3hr.GLB", + "aerosol.drybc.tavg-u-hxy-u.mon.GLB", + "aerosol.drydust.tavg-u-hxy-u.mon.GLB", + "aerosol.dryno3.tavg-u-hxy-u.mon.GLB", + "aerosol.dryo3.tavg-u-hxy-u.mon.GLB", + "aerosol.dryoa.tavg-u-hxy-u.mon.GLB", + "aerosol.dryso2.tavg-u-hxy-u.mon.GLB", + "aerosol.dryso4.tavg-u-hxy-u.mon.GLB", + "aerosol.dryss.tavg-u-hxy-u.mon.GLB", + "aerosol.ec550aer.tavg-al-hxy-u.mon.GLB", + "aerosol.ec550aer.tpt-u-hxy-u.6hr.GLB", + "aerosol.emiaco.tavg-u-hxy-u.mon.GLB", + "aerosol.emianox.tavg-u-hxy-u.mon.GLB", + "aerosol.emiaoa.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbbc.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbch4.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbco.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbdms.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbnh3.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbnox.tavg-u-hxy-u.mon.GLB", + "aerosol.emibboa.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbso2.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbvoc.tavg-u-hxy-u.mon.GLB", + "aerosol.emibc.tavg-u-hxy-u.mon.GLB", + "aerosol.emibvoc.tavg-u-hxy-u.mon.GLB", + "aerosol.emico.tavg-u-hxy-u.mon.GLB", + "aerosol.emidms.tavg-u-hxy-u.mon.30S-90S", + "aerosol.emidms.tavg-u-hxy-u.mon.GLB", + "aerosol.emidust.tavg-u-hxy-u.mon.GLB", + "aerosol.emiisop.tavg-u-hxy-u.mon.GLB", + "aerosol.emilnox.tavg-al-hxy-u.mon.GLB", + "aerosol.eminh3.tavg-u-hxy-u.mon.GLB", + "aerosol.eminox.tavg-u-hxy-u.mon.GLB", + "aerosol.emioa.tavg-u-hxy-u.mon.GLB", + "aerosol.emiso2.tavg-u-hxy-u.mon.GLB", + "aerosol.emiso4.tavg-u-hxy-u.mon.GLB", + "aerosol.emiss.tavg-u-hxy-u.mon.30S-90S", + "aerosol.emiss.tavg-u-hxy-u.mon.GLB", + "aerosol.emivoc.tavg-u-hxy-u.mon.GLB", + "aerosol.h2o.tavg-al-hxy-u.mon.GLB", + "aerosol.h2o.tavg-p39-hy-air.mon.GLB", + "aerosol.hcfc22.tavg-al-hxy-u.mon.GLB", + "aerosol.hcho.tavg-al-hxy-u.mon.GLB", + "aerosol.hcl.tavg-al-hxy-u.mon.GLB", + "aerosol.hcl.tavg-p39-hy-air.mon.GLB", + "aerosol.hfc125.tavg-al-hxy-u.mon.GLB", + "aerosol.hfc134a.tavg-al-hxy-u.mon.GLB", + "aerosol.hno3.tavg-al-hxy-u.mon.GLB", + "aerosol.hno3.tavg-p39-hy-air.mon.GLB", + "aerosol.ho2.tavg-p39-hy-air.mon.GLB", + "aerosol.isop.tavg-al-hxy-u.mon.GLB", + "aerosol.jno2.tavg-al-hxy-u.mon.GLB", + "aerosol.lossch4.tavg-al-hxy-u.mon.GLB", + "aerosol.lossco.tavg-al-hxy-u.mon.GLB", + "aerosol.lossn2o.tavg-al-hxy-u.mon.GLB", + "aerosol.lwp.tavg-u-hxy-u.mon.GLB", + "aerosol.mmraerh2o.tavg-al-hxy-u.mon.GLB", + "aerosol.mmraerh2o.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmraerh2o.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrbc.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrbc.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrbc.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrbc.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrdust.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrdust.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrdust.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrdust.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrnh4.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrnh4.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrnh4.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrnh4.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrno3.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrno3.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrno3.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrno3.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmroa.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmroa.tavg-al-hxy-u.mon.GLB", + "aerosol.mmroa.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmroa.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrpm1.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrpm1.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrpm2p5.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrpm2p5.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrso4.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrso4.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrso4.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrso4.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrsoa.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrsoa.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrsoa.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrss.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrss.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrss.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrss.tpt-h2m-hs-u.3hr.GLB", + "aerosol.nh50.tavg-al-hxy-u.mon.GLB", + "aerosol.no.tavg-al-hxy-u.mon.GLB", + "aerosol.no2.tavg-al-hxy-u.mon.GLB", + "aerosol.no2.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.noy.tavg-p39-hy-air.mon.GLB", + "aerosol.o3.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.o3loss.tavg-al-hxy-u.mon.GLB", + "aerosol.o3prod.tavg-al-hxy-u.mon.GLB", + "aerosol.od443aer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550aer.tavg-u-hxy-u.day.GLB", + "aerosol.od550aer.tavg-u-hxy-u.mon.30S-90S", + "aerosol.od550aer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550aerh2o.tavg-u-hxy-u.mon.GLB", + "aerosol.od550bb.tavg-u-hxy-u.mon.GLB", + "aerosol.od550bc.tavg-u-hxy-u.mon.GLB", + "aerosol.od550csaer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550dust.tavg-u-hxy-u.mon.GLB", + "aerosol.od550lt1aer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550no3.tavg-u-hxy-u.mon.GLB", + "aerosol.od550oa.tavg-u-hxy-u.mon.GLB", + "aerosol.od550so4.tavg-u-hxy-u.mon.GLB", + "aerosol.od550soa.tavg-u-hxy-u.mon.GLB", + "aerosol.od550ss.tavg-u-hxy-u.mon.GLB", + "aerosol.od865aer.tavg-u-hxy-u.mon.GLB", + "aerosol.oh.tavg-al-hxy-u.mon.GLB", + "aerosol.oh.tavg-p39-hy-air.mon.GLB", + "aerosol.pan.tavg-al-hxy-u.mon.GLB", + "aerosol.photo1d.tavg-al-hxy-u.mon.GLB", + "aerosol.pod0.tsum-u-hxy-u.mon.GLB", + "aerosol.reffccwctop.tavg-u-hxy-cl.mon.GLB", + "aerosol.reffclwtop.tavg-u-hxy-cl.mon.30S-90S", + "aerosol.reffclwtop.tavg-u-hxy-cl.mon.GLB", + "aerosol.rluscsaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rlutaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rlutcsaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rsutaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rsutcsaf.tavg-u-hxy-u.mon.GLB", + "aerosol.sfpm1.tavg-h2m-hxy-u.day.GLB", + "aerosol.sfpm10.tavg-al-hxy-u.mon.30S-90S", + "aerosol.sfpm10.tavg-al-hxy-u.mon.GLB", + "aerosol.sfpm10.tavg-h2m-hxy-u.day.GLB", + "aerosol.sfpm25.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.sfpm25.tavg-h2m-hxy-u.day.GLB", + "aerosol.so2.tavg-al-hxy-u.mon.30S-90S", + "aerosol.so2.tavg-al-hxy-u.mon.GLB", + "aerosol.so2.tavg-h2m-hxy-u.day.GLB", + "aerosol.so2.tpt-h2m-hs-u.3hr.GLB", + "aerosol.tatp.tavg-u-hxy-u.mon.GLB", + "aerosol.toz.tavg-u-hxy-u.day.GLB", + "aerosol.toz.tavg-u-hxy-u.mon.GLB", + "aerosol.tropoz.tavg-u-hxy-u.mon.GLB", + "aerosol.ttop.tavg-u-hxy-cl.mon.GLB", + "aerosol.ua.tavg-10hPa-hxy-air.day.GLB", + "aerosol.vt100.tavg-100hPa-hy-air.mon.GLB", + "aerosol.wa.tavg-al-hxy-u.mon.GLB", + "aerosol.wetbc.tavg-u-hxy-u.mon.GLB", + "aerosol.wetdust.tavg-u-hxy-u.mon.GLB", + "aerosol.wetoa.tavg-u-hxy-u.mon.GLB", + "aerosol.wetso2.tavg-u-hxy-u.mon.GLB", + "aerosol.wetso4.tavg-u-hxy-u.mon.GLB", + "aerosol.wetss.tavg-u-hxy-u.mon.GLB", + "aerosol.zg.tavg-10hPa-hxy-air.day.GLB", + "atmos.albisccp.tavg-u-hxy-cl.mon.30S-90S", + "atmos.bldep.tavg-u-hxy-u.mon.GLB", + "atmos.bldep.tmax-u-hxy-u.day.GLB", + "atmos.bldep.tmin-u-hxy-u.day.GLB", + "atmos.cl.tavg-al-hxy-u.mon.30S-90S", + "atmos.clc.tavg-al-hxy-u.mon.30S-90S", + "atmos.clc.tavg-al-hxy-u.mon.GLB", + "atmos.clcalipso.tavg-220hPa-hxy-air.mon.30S-90S", + "atmos.clcalipso.tavg-220hPa-hxy-air.mon.GLB", + "atmos.clcalipso.tavg-560hPa-hxy-air.mon.30S-90S", + "atmos.clcalipso.tavg-560hPa-hxy-air.mon.GLB", + "atmos.clcalipso.tavg-840hPa-hxy-air.mon.30S-90S", + "atmos.clcalipso.tavg-840hPa-hxy-air.mon.GLB", + "atmos.clcalipso.tavg-h40-hxy-air.mon.30S-90S", + "atmos.cldnci.tavg-u-hxy-cl.mon.GLB", + "atmos.cldncl.tavg-u-hxy-cl.mon.GLB", + "atmos.cldnvi.tavg-u-hxy-u.mon.GLB", + "atmos.cli.tavg-al-hxy-u.mon.30S-90S", + "atmos.clic.tavg-al-hxy-u.mon.30S-90S", + "atmos.clis.tavg-al-hxy-u.mon.30S-90S", + "atmos.clisccp.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clisccp.tavg-p7c-hxy-air.mon.GLB", + "atmos.clivi.tavg-u-hxy-u.mon.30S-90S", + "atmos.clivimodis.tavg-u-hxy-u.mon.30S-90S", + "atmos.clmodis.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clmodis.tavg-p7c-hxy-air.mon.GLB", + "atmos.clmodisice.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clmodisice.tavg-p7c-hxy-air.mon.GLB", + "atmos.clmodisiceReff.tavg-u-hxy-u.mon.GLB", + "atmos.clmodisliquid.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clmodisliquid.tavg-p7c-hxy-air.mon.GLB", + "atmos.clmodisliquidReff.tavg-u-hxy-u.mon.GLB", + "atmos.cls.tavg-al-hxy-u.mon.30S-90S", + "atmos.clt.tavg-u-hxy-u.mon.30S-90S", + "atmos.cltc.tavg-u-hxy-u.mon.GLB", + "atmos.cltcalipso.tavg-u-hxy-u.mon.30S-90S", + "atmos.cltisccp.tavg-u-hxy-u.mon.30S-90S", + "atmos.cltmodis.tavg-u-hxy-u.mon.30S-90S", + "atmos.clw.tavg-al-hxy-u.mon.30S-90S", + "atmos.clwc.tavg-al-hxy-u.mon.30S-90S", + "atmos.clws.tavg-al-hxy-u.mon.30S-90S", + "atmos.clwvi.tavg-u-hxy-u.mon.30S-90S", + "atmos.clwvimodis.tavg-u-hxy-u.mon.30S-90S", + "atmos.co2.tavg-al-hxy-u.mon.GLB", + "atmos.co2.tavg-p19-hxy-air.mon.GLB", + "atmos.co23D.tavg-al-hxy-u.mon.GLB", + "atmos.co2mass.tavg-u-hm-u.mon.GLB", + "atmos.dmc.tavg-alh-hxy-u.mon.30S-90S", + "atmos.edt.tavg-al-hxy-u.mon.30S-90S", + "atmos.epfy.tavg-p39-hy-air.day.GLB", + "atmos.epfy.tavg-p39-hy-air.mon.GLB", + "atmos.epfz.tavg-p39-hy-air.day.GLB", + "atmos.epfz.tavg-p39-hy-air.mon.GLB", + "atmos.evspsbl.tavg-u-hxy-lnd.day.GLB", + "atmos.evu.tavg-al-hxy-u.mon.30S-90S", + "atmos.fco2antt.tavg-u-hxy-u.mon.GLB", + "atmos.fco2fos.tavg-u-hxy-u.mon.GLB", + "atmos.fco2nat.tavg-u-hxy-u.mon.GLB", + "atmos.hfls.tavg-u-hxy-u.day.GLB", + "atmos.hfls.tavg-u-hxy-u.mon.30S-90S", + "atmos.hfss.tavg-u-hxy-u.day.GLB", + "atmos.hfss.tavg-u-hxy-u.mon.30S-90S", + "atmos.hur.tavg-al-hxy-u.mon.30S-90S", + "atmos.hur.tavg-al-hxy-u.mon.GLB", + "atmos.hur.tavg-p19-hxy-air.mon.30S-90S", + "atmos.hurs.tavg-h2m-hxy-u.mon.30S-90S", + "atmos.hurs.tpt-h2m-hxy-u.3hr.GLB", + "atmos.hus.tavg-al-hxy-u.mon.30S-90S", + "atmos.hus.tavg-al-hxy-u.mon.GLB", + "atmos.hus.tavg-p19-hxy-u.mon.30S-90S", + "atmos.hus.tpt-al-hxy-u.6hr.GLB", + "atmos.hus.tpt-p7h-hxy-air.6hr.GLB", + "atmos.huss.tavg-h2m-hxy-u.mon.30S-90S", + "atmos.huss.tpt-h2m-hxy-u.1hr.GLB", + "atmos.intuaw.tpt-u-hxy-u.6hr.GLB", + "atmos.intvaw.tpt-u-hxy-u.6hr.GLB", + "atmos.mc.tavg-alh-hxy-u.mon.GLB", + "atmos.mcd.tavg-alh-hxy-u.mon.30S-90S", + "atmos.mcu.tavg-alh-hxy-u.mon.30S-90S", + "atmos.mcu.tavg-alh-hxy-u.mon.GLB", + "atmos.pctisccp.tavg-u-hxy-cl.mon.30S-90S", + "atmos.pfull.tavg-al-hxy-u.mon.GLB", + "atmos.pfull.tclm-al-hxy-u.mon.30S-90S", + "atmos.phalf.tavg-alh-hxy-u.mon.GLB", + "atmos.pr.tavg-u-hxy-u.mon.30S-90S", + "atmos.pr.tmax-u-hxy-u.day.GLB", + "atmos.pr.tpt-u-hxy-u.6hr.GLB", + "atmos.prc.tavg-u-hxy-u.mon.30S-90S", + "atmos.prra.tavg-u-hxy-lnd.day.GLB", + "atmos.prra.tavg-u-hxy-u.mon.30S-90S", + "atmos.prsn.tavg-u-hxy-u.3hr.GLB", + "atmos.prsn.tavg-u-hxy-u.day.GLB", + "atmos.prsn.tavg-u-hxy-u.mon.30S-90S", + "atmos.prw.tavg-u-hxy-u.day.GLB", + "atmos.prw.tavg-u-hxy-u.mon.30S-90S", + "atmos.prw.tpt-u-hxy-u.6hr.GLB", + "atmos.ps.tavg-u-hxy-u.1hr.GLB", + "atmos.ps.tavg-u-hxy-u.mon.30S-90S", + "atmos.ps.tpt-u-hxy-u.6hr.GLB", + "atmos.psl.tavg-u-hxy-u.mon.30S-90S", + "atmos.psl.tpt-u-hxy-u.1hr.GLB", + "atmos.psl.tpt-u-hxy-u.6hr.GLB", + "atmos.ptp.tavg-u-hxy-u.mon.GLB", + "atmos.reffcclwtop.tavg-u-hxy-ccl.mon.GLB", + "atmos.reffclic.tavg-al-hxy-ccl.mon.30S-90S", + "atmos.reffclis.tavg-al-hxy-scl.mon.30S-90S", + "atmos.reffclwc.tavg-al-hxy-ccl.mon.30S-90S", + "atmos.reffclws.tavg-al-hxy-scl.mon.30S-90S", + "atmos.reffsclwtop.tavg-u-hxy-scl.mon.GLB", + "atmos.rld.tavg-alh-hxy-u.mon.GLB", + "atmos.rld4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rldcs.tavg-alh-hxy-u.mon.GLB", + "atmos.rldcs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rlds.tavg-u-hxy-u.1hr.GLB", + "atmos.rlds.tavg-u-hxy-u.3hr.GLB", + "atmos.rlds.tavg-u-hxy-u.day.GLB", + "atmos.rlds.tavg-u-hxy-u.mon.30S-90S", + "atmos.rldscs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rlu.tavg-alh-hxy-u.mon.GLB", + "atmos.rlu4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rlucs.tavg-alh-hxy-u.mon.GLB", + "atmos.rlucs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rlus.tavg-u-hxy-u.day.GLB", + "atmos.rlus.tavg-u-hxy-u.mon.30S-90S", + "atmos.rlut.tavg-u-hxy-u.day.GLB", + "atmos.rlut.tavg-u-hxy-u.mon.30S-90S", + "atmos.rlut4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rlutcs.tavg-u-hxy-u.day.GLB", + "atmos.rlutcs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rlutcs4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rsd.tavg-alh-hxy-u.mon.GLB", + "atmos.rsd4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsdcs.tavg-alh-hxy-u.mon.GLB", + "atmos.rsdcs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsds.tavg-u-hxy-u.1hr.GLB", + "atmos.rsds.tavg-u-hxy-u.3hr.GLB", + "atmos.rsds.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsdscs.tavg-u-hxy-u.day.GLB", + "atmos.rsdscs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsdt.tavg-u-hxy-u.day.GLB", + "atmos.rsdt.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsu.tavg-alh-hxy-u.mon.GLB", + "atmos.rsu4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsucs.tavg-alh-hxy-u.mon.GLB", + "atmos.rsucs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsus.tavg-u-hxy-u.day.GLB", + "atmos.rsus.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsuscs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsut.tavg-u-hxy-u.day.GLB", + "atmos.rsut.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsut4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rsutcs.tavg-u-hxy-u.day.GLB", + "atmos.rsutcs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsutcs4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rtmt.tavg-u-hxy-u.mon.GLB", + "atmos.rv850.tpt-850hPa-hxy-air.6hr.GLB", + "atmos.scldncl.tavg-u-hxy-scl.mon.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.mon.30S-90S", + "atmos.sfcWind.tmax-h10m-hxy-u.day.GLB", + "atmos.ta.tavg-700hPa-hxy-air.day.GLB", + "atmos.ta.tavg-al-hxy-u.mon.30S-90S", + "atmos.ta.tavg-al-hxy-u.mon.GLB", + "atmos.ta.tavg-p19-hxy-air.mon.30S-90S", + "atmos.ta.tavg-p39-hy-air.day.GLB", + "atmos.ta.tavg-p39-hy-air.mon.GLB", + "atmos.ta.tpt-al-hxy-u.6hr.GLB", + "atmos.ta.tpt-p5u-hxy-u.6hr.GLB", + "atmos.ta.tpt-p7h-hxy-air.6hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.1hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.mon.30S-90S", + "atmos.tas.tmaxavg-h2m-hxy-u.mon.30S-90S", + "atmos.tas.tminavg-h2m-hxy-u.mon.30S-90S", + "atmos.tauu.tavg-u-hxy-u.day.GLB", + "atmos.tauunoegw.tavg-p39-hy-air.day.GLB", + "atmos.tauunowgw.tavg-p39-hy-air.day.GLB", + "atmos.tauuogw.tavg-p39-hy-air.day.GLB", + "atmos.tauv.tavg-u-hxy-u.day.GLB", + "atmos.tauvnogw.tavg-p39-hy-air.day.GLB", + "atmos.tauvogw.tavg-p39-hy-air.day.GLB", + "atmos.tnt.tavg-al-hxy-u.mon.GLB", + "atmos.tntmp.tavg-p39-hy-air.day.GLB", + "atmos.tntmp.tavg-p39-hy-air.mon.GLB", + "atmos.tntrl.tavg-al-hxy-u.mon.GLB", + "atmos.tntrl.tavg-p39-hy-air.day.GLB", + "atmos.tntrl.tavg-p39-hy-air.mon.GLB", + "atmos.tntrs.tavg-al-hxy-u.mon.GLB", + "atmos.tntrs.tavg-p39-hy-air.day.GLB", + "atmos.tntrs.tavg-p39-hy-air.mon.GLB", + "atmos.ts.tavg-u-hxy-u.mon.30S-90S", + "atmos.ts.tpt-u-hxy-u.3hr.GLB", + "atmos.ts.tpt-u-hxy-u.6hr.GLB", + "atmos.ua.tavg-al-hxy-u.mon.GLB", + "atmos.ua.tavg-p19-hxy-air.mon.30S-90S", + "atmos.ua.tavg-p39-hy-air.day.GLB", + "atmos.ua.tavg-p39-hy-air.mon.GLB", + "atmos.ua.tpt-al-hxy-u.6hr.GLB", + "atmos.ua.tpt-h100m-hxy-u.1hr.GLB", + "atmos.ua.tpt-p5u-hxy-air.6hr.GLB", + "atmos.ua.tpt-p7h-hxy-air.6hr.GLB", + "atmos.uas.tavg-h10m-hxy-u.mon.30S-90S", + "atmos.uas.tpt-h10m-hxy-u.1hr.GLB", + "atmos.uas.tpt-h10m-hxy-u.6hr.GLB", + "atmos.utendepfd.tavg-p39-hy-air.day.GLB", + "atmos.utendepfd.tavg-p39-hy-air.mon.GLB", + "atmos.utendnogw.tavg-p39-hy-air.day.GLB", + "atmos.utendnogw.tavg-p39-hy-air.mon.GLB", + "atmos.utendogw.tavg-p39-hy-air.day.GLB", + "atmos.utendogw.tavg-p39-hy-air.mon.GLB", + "atmos.utendvtem.tavg-p39-hy-air.day.GLB", + "atmos.utendwtem.tavg-p39-hy-air.day.GLB", + "atmos.va.tavg-al-hxy-u.mon.GLB", + "atmos.va.tavg-p19-hxy-air.mon.30S-90S", + "atmos.va.tavg-p39-hy-air.mon.GLB", + "atmos.va.tpt-al-hxy-u.6hr.GLB", + "atmos.va.tpt-h100m-hxy-u.1hr.GLB", + "atmos.va.tpt-p5u-hxy-air.6hr.GLB", + "atmos.va.tpt-p7h-hxy-air.6hr.GLB", + "atmos.vas.tavg-h10m-hxy-u.mon.30S-90S", + "atmos.vas.tpt-h10m-hxy-u.1hr.GLB", + "atmos.vas.tpt-h10m-hxy-u.6hr.GLB", + "atmos.vtem.tavg-p39-hy-air.day.GLB", + "atmos.vtem.tavg-p39-hy-air.mon.GLB", + "atmos.wap.tavg-p19-hxy-air.mon.30S-90S", + "atmos.wsg.tmax-h100m-hxy-u.1hr.GLB", + "atmos.wsg.tmax-h10m-hxy-u.1hr.GLB", + "atmos.wtem.tavg-p39-hy-air.day.GLB", + "atmos.wtem.tavg-p39-hy-air.mon.GLB", + "atmos.zg.tavg-1000hPa-hxy-air.day.GLB", + "atmos.zg.tavg-500hPa-hxy-air.day.GLB", + "atmos.zg.tavg-al-hxy-u.mon.GLB", + "atmos.zg.tavg-p19-hxy-air.mon.30S-90S", + "atmos.zg.tavg-p39-hy-air.day.GLB", + "atmos.zg.tavg-p39-hy-air.mon.GLB", + "atmos.zg.tpt-500hPa-hxy-air.6hr.GLB", + "atmos.zg.tpt-al-hxy-u.6hr.GLB", + "atmos.zg.tpt-p3-hxy-air.6hr.GLB", + "atmos.zg.tpt-p7h-hxy-air.6hr.GLB", + "atmos.ztp.tavg-u-hxy-u.mon.GLB", + "atmosChem.c2h4.tavg-al-hxy-u.mon.GLB", + "atmosChem.c2h5oh.tavg-al-hxy-u.mon.GLB", + "atmosChem.c4h10.tavg-al-hxy-u.mon.GLB", + "atmosChem.cfc11.tavg-u-hm-u.mon.GLB", + "atmosChem.cfc113.tavg-u-hm-u.mon.GLB", + "atmosChem.cfc12.tavg-u-hm-u.mon.GLB", + "atmosChem.ch3oh.tavg-al-hxy-u.mon.GLB", + "atmosChem.ch4.tavg-al-hxy-u.mon.GLB", + "atmosChem.ch4.tavg-p39-hy-air.mon.GLB", + "atmosChem.ch4losssoil.tavg-u-hxy-u.mon.GLB", + "atmosChem.ch4ref.ti-al-hxy-u.fx.GLB", + "atmosChem.chegph2oo1d.tavg-al-hxy-u.mon.GLB", + "atmosChem.chepnh4.tavg-al-hxy-u.mon.GLB", + "atmosChem.chepno3.tavg-al-hxy-u.mon.GLB", + "atmosChem.dms.tavg-al-hxy-u.mon.30S-90S", + "atmosChem.dms.tavg-al-hxy-u.mon.GLB", + "atmosChem.do3chm.tavg-al-hxy-u.mon.GLB", + "atmosChem.dryh2.tavg-u-hxy-u.mon.GLB", + "atmosChem.dryhno3.tavg-u-hxy-u.mon.GLB", + "atmosChem.drynh3.tavg-u-hxy-u.mon.GLB", + "atmosChem.drynh4.tavg-u-hxy-u.mon.GLB", + "atmosChem.drynoy.tavg-u-hxy-u.mon.GLB", + "atmosChem.e90inst.tpt-al-hxy-u.mon.GLB", + "atmosChem.emiach4.tavg-u-hxy-u.mon.GLB", + "atmosChem.emiavnox.tavg-al-hxy-u.mon.GLB", + "atmosChem.emic2h4.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic2h5oh.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic2h6.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic3h6.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic3h8.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic4h10.tavg-u-hxy-u.mon.GLB", + "atmosChem.emich3oh.tavg-u-hxy-u.mon.GLB", + "atmosChem.emich4.tavg-u-hxy-u.mon.GLB", + "atmosChem.emih2.tavg-u-hxy-u.mon.GLB", + "atmosChem.emilkch4.tavg-u-hxy-u.mon.GLB", + "atmosChem.h2.tavg-al-hxy-u.mon.GLB", + "atmosChem.h2loss.tavg-al-hxy-u.mon.GLB", + "atmosChem.h2prod.tavg-al-hxy-u.mon.GLB", + "atmosChem.hcfc22.tavg-u-hm-u.mon.GLB", + "atmosChem.meanage.tavg-al-hxy-u.mon.GLB", + "atmosChem.meanage.tavg-p39-hy-air.mon.GLB", + "atmosChem.n2o.tavg-al-hxy-u.mon.GLB", + "atmosChem.n2o.tavg-p39-hy-air.mon.GLB", + "atmosChem.o3.tavg-al-hxy-u.mon.GLB", + "atmosChem.o3.tavg-p19-hxy-air.mon.GLB", + "atmosChem.o3.tavg-p39-hy-air.mon.GLB", + "atmosChem.o3.tpt-al-hxy-u.mon.GLB", + "atmosChem.o3ref.tclm-al-hxy-u.fx.GLB", + "atmosChem.o3ref.ti-al-hxy-u.fx.GLB", + "atmosChem.o3ste.tavg-al-hxy-u.mon.GLB", + "atmosChem.rlutch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rlutcsch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rlutcso3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rluto3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsutch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsutcsch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsutcso3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsuto3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.stratch4loss.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropch4loss.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropch4lossoh.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropdo3chm.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropo3ste.tavg-al-hxy-u.mon.GLB", + "atmosChem.wethno3.tavg-al-hxy-u.mon.GLB", + "atmosChem.wetnh3.tavg-u-hxy-u.mon.GLB", + "atmosChem.wetnh4.tavg-u-hxy-u.mon.GLB", + "atmosChem.wetno3.tavg-al-hxy-u.mon.GLB", + "atmosChem.wetnoy.tavg-u-hxy-u.mon.GLB", + "land.albc.tavg-u-hxy-veg.mon.GLB", + "land.areacellr.ti-u-hxy-u.fx.GLB", + "land.baresoilFrac.tavg-u-hxy-u.mon.GLB", + "land.burntFractionAll.tavg-u-hxy-u.mon.GLB", + "land.cGeologicStorage.tavg-u-hxy-u.mon.GLB", + "land.cLand.tavg-u-hxy-lnd.mon.GLB", + "land.cLitter.tavg-u-hxy-lnd.mon.GLB", + "land.cnc.tavg-u-hxy-u.mon.GLB", + "land.cProduct.tavg-u-hxy-lnd.mon.GLB", + "land.cropFrac.tavg-u-hxy-u.mon.GLB", + "land.cSoil.tavg-d100cm-hxy-lnd.mon.GLB", + "land.cSoil.tavg-u-hxy-lnd.mon.GLB", + "land.cVeg.tavg-u-hxy-lnd.mon.GLB", + "land.dcw.tavg-u-hxy-lnd.day.GLB", + "land.dslw.tavg-u-hxy-lnd.day.GLB", + "land.evspsblpot.tavg-u-hxy-lnd.day.GLB", + "land.evspsblpot.tavg-u-hxy-lnd.mon.GLB", + "land.evspsblsoi.tavg-u-hxy-u.day.GLB", + "land.evspsblveg.tavg-u-hxy-u.day.GLB", + "land.fAnthDisturb.tavg-u-hxy-lnd.mon.GLB", + "land.fBNF.tavg-u-hxy-lnd.mon.GLB", + "land.fCLandToOcean.tavg-u-hxy-lnd.mon.GLB", + "land.fDeforestToAtmos.tavg-u-hxy-lnd.mon.GLB", + "land.fDeforestToProduct.tavg-u-hxy-lnd.mon.GLB", + "land.fFire.tavg-u-hxy-lnd.mon.GLB", + "land.fFireAll.tavg-u-hxy-lnd.mon.GLB", + "land.fFireNat.tavg-u-hxy-lnd.mon.GLB", + "land.fHarvestToAtmos.tavg-u-hxy-lnd.mon.GLB", + "land.fHarvestToGeologicStorage.tavg-u-hxy-lnd.mon.GLB", + "land.fHarvestToProduct.tavg-u-hxy-lnd.mon.GLB", + "land.fLitterSoil.tavg-u-hxy-lnd.mon.GLB", + "land.fN2O.tavg-u-hxy-lnd.mon.GLB", + "land.fNAnthDisturb.tavg-u-hxy-lnd.mon.GLB", + "land.fNdep.tavg-u-hxy-lnd.mon.GLB", + "land.fNfert.tavg-u-hxy-lnd.mon.GLB", + "land.fNLandToOcean.tavg-u-hxy-lnd.mon.GLB", + "land.fNLitterSoil.tavg-u-hxy-lnd.mon.GLB", + "land.fNloss.tavg-u-hxy-lnd.mon.GLB", + "land.fNnetmin.tavg-u-hxy-lnd.mon.GLB", + "land.fNOx.tavg-u-hxy-lnd.mon.GLB", + "land.fNProduct.tavg-u-hxy-lnd.mon.GLB", + "land.fNup.tavg-u-hxy-lnd.mon.GLB", + "land.fNVegLitter.tavg-u-hxy-lnd.mon.GLB", + "land.fNVegSoil.tavg-u-hxy-lnd.mon.GLB", + "land.fProductDecomp.tavg-u-hxy-lnd.mon.GLB", + "land.fVegLitter.tavg-u-hxy-lnd.mon.GLB", + "land.fVegSoil.tavg-u-hxy-lnd.mon.GLB", + "land.gpp.tavg-u-hxy-lnd.mon.GLB", + "land.grassFrac.tavg-u-hxy-u.mon.GLB", + "land.landCoverFrac.tavg-u-hxy-u.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.day.GLB", + "land.mrrob.tavg-u-hxy-lnd.day.GLB", + "land.mrros.tavg-u-hxy-lnd.day.GLB", + "land.mrsfl.tavg-sl-hxy-lnd.day.GLB", + "land.mrsfl.tavg-sl-hxy-lnd.mon.GLB", + "land.mrsll.tavg-sl-hxy-lnd.day.GLB", + "land.mrsll.tavg-sl-hxy-lnd.mon.GLB", + "land.mrso.tavg-u-hxy-lnd.day.GLB", + "land.mrsol.tavg-d10cm-hxy-lnd.day.GLB", + "land.mrsol.tavg-sl-hxy-lnd.day.GLB", + "land.mrsol.tavg-sl-hxy-lnd.mon.GLB", + "land.mrsow.tavg-u-hxy-lnd.day.GLB", + "land.mrtws.tavg-u-hxy-lnd.day.GLB", + "land.mrtws.tavg-u-hxy-lnd.mon.GLB", + "land.nbp.tavg-u-hxy-lnd.mon.GLB", + "land.nep.tavg-u-hxy-lnd.mon.GLB", + "land.nLand.tavg-u-hxy-lnd.mon.GLB", + "land.nLitter.tavg-u-hxy-lnd.mon.GLB", + "land.nMineral.tavg-u-hxy-lnd.mon.GLB", + "land.npp.tavg-u-hxy-lnd.mon.GLB", + "land.nProduct.tavg-u-hxy-lnd.mon.GLB", + "land.nSoil.tavg-u-hxy-lnd.mon.GLB", + "land.nVeg.tavg-u-hxy-lnd.mon.GLB", + "land.pastureFrac.tavg-u-hxy-u.mon.GLB", + "land.prveg.tavg-u-hxy-lnd.mon.GLB", + "land.ra.tavg-u-hxy-lnd.mon.GLB", + "land.residualFrac.tavg-u-hxy-u.mon.GLB", + "land.rh.tavg-u-hxy-lnd.mon.GLB", + "land.rivi.tavg-u-hxy-lnd.day.GLB", + "land.rivo.tavg-u-hxy-lnd.day.GLB", + "land.rsds.tavg-u-hxy-sn.mon.GLB", + "land.rsus.tavg-u-hxy-sn.mon.GLB", + "land.shrubFrac.tavg-u-hxy-u.mon.GLB", + "land.tas.tavg-u-hxy-u.1hr.GLB", + "land.tran.tavg-u-hxy-lnd.mon.GLB", + "land.treeFrac.tavg-u-hxy-u.mon.GLB", + "land.tsl.tavg-sl-hxy-lnd.mon.GLB", + "land.tslsi.tavg-u-hxy-u.day.GLB", + "land.vegFrac.tavg-u-hxy-u.mon.GLB", + "land.vegHeight.tavg-u-hxy-veg.mon.GLB", + "land.wetlandCH4.tavg-u-hxy-lnd.mon.GLB", + "land.wtd.tavg-u-hxy-lnd.day.GLB", + "landIce.snd.tavg-u-hxy-lnd.mon.GLB", + "ocean.absscint.tavg-op4-hxy-sea.mon.GLB", + "ocean.agessc.tavg-ol-hxy-sea.mon.GLB", + "ocean.bigthetao.tavg-ol-hm-sea.mon.GLB", + "ocean.bigthetao.tavg-ol-hxy-sea.dec.GLB", + "ocean.bigthetao.tavg-op20bar-hxy-sea.day.GLB", + "ocean.chcint.tavg-op4-hxy-sea.mon.GLB", + "ocean.ficeberg.tavg-ol-hxy-sea.mon.GLB", + "ocean.friver.tavg-u-hxy-sea.mon.GLB", + "ocean.hfbasin.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpmadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpmdiff.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpsmadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfds.tavg-u-hxy-sea.mon.30S-90S", + "ocean.hfx.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfx.tavg-u-hxy-sea.day.GLB", + "ocean.hfx.tavg-u-hxy-sea.mon.GLB", + "ocean.hfy.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfy.tavg-u-hxy-sea.day.GLB", + "ocean.hfy.tavg-u-hxy-sea.mon.GLB", + "ocean.htovgyre.tavg-u-hyb-sea.mon.GLB", + "ocean.htovovrt.tavg-u-hyb-sea.mon.GLB", + "ocean.masscello.tavg-ol-hxy-sea.dec.GLB", + "ocean.masso.tavg-u-hm-sea.dec.GLB", + "ocean.masso.tavg-u-hm-sea.mon.GLB", + "ocean.mlotst.tavg-u-hxy-sea.day.GLB", + "ocean.mlotst.tavg-u-hxy-sea.mon.30S-90S", + "ocean.mlotst.tmax-u-hxy-sea.mon.GLB", + "ocean.mlotst.tmin-u-hxy-sea.mon.GLB", + "ocean.mpw.tavg-u-hxy-sea.mon.GLB", + "ocean.mpw.tpt-u-hxy-sea.3hr.GLB", + "ocean.mpwswell.tavg-u-hxy-sea.mon.GLB", + "ocean.mpwswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.mpwwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.mpwwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.msftbarot.tavg-u-hxy-sea.mon.GLB", + "ocean.msftm.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftm.tavg-rho-hyb-sea.mon.GLB", + "ocean.msfty.tavg-ol-ht-sea.mon.GLB", + "ocean.msfty.tavg-rho-ht-sea.mon.GLB", + "ocean.obvfsq.tavg-ol-hxy-sea.mon.GLB", + "ocean.pbo.tavg-u-hxy-sea.mon.GLB", + "ocean.pfscint.tavg-op4-hxy-sea.mon.GLB", + "ocean.phcint.tavg-op4-hxy-sea.mon.GLB", + "ocean.pso.tavg-u-hxy-sea.mon.GLB", + "ocean.scint.tavg-op4-hxy-sea.mon.GLB", + "ocean.sduo.tavg-u-hxy-sea.mon.GLB", + "ocean.sduo.tpt-u-hxy-sea.3hr.GLB", + "ocean.sdvo.tavg-u-hxy-sea.mon.GLB", + "ocean.sdvo.tpt-u-hxy-sea.3hr.GLB", + "ocean.sfx.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfx.tavg-u-hxy-sea.mon.GLB", + "ocean.sfy.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfy.tavg-u-hxy-sea.mon.GLB", + "ocean.sltbasin.tavg-u-hyb-sea.mon.GLB", + "ocean.sltovgyre.tavg-u-hyb-sea.mon.GLB", + "ocean.sltovovrt.tavg-u-hyb-sea.mon.GLB", + "ocean.so.tavg-ol-hm-sea.mon.GLB", + "ocean.so.tavg-ol-hxy-sea.dec.GLB", + "ocean.so.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.sob.tavg-u-hxy-sea.mon.GLB", + "ocean.sos.tavg-u-hm-sea.mon.30S-90S", + "ocean.sos.tavg-u-hm-sea.mon.GLB", + "ocean.swh.tavg-u-hxy-sea.mon.GLB", + "ocean.swh.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhmax.tmax-u-hxy-sea.mon.GLB", + "ocean.swhmax.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhswell.tavg-u-hxy-sea.mon.GLB", + "ocean.swhswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.swhwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.tauuo.tavg-u-hxy-sea.3hr.GLB", + "ocean.tauuo.tavg-u-hxy-sea.dec.GLB", + "ocean.tauvo.tavg-u-hxy-sea.3hr.GLB", + "ocean.tauvo.tavg-u-hxy-sea.dec.GLB", + "ocean.thetao.tavg-ol-hm-sea.mon.GLB", + "ocean.thetao.tavg-ol-hxy-sea.dec.GLB", + "ocean.thetao.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.thetao.tavg-op20bar-hxy-sea.day.GLB", + "ocean.thkcello.tavg-ol-hxy-sea.dec.GLB", + "ocean.tob.tavg-u-hxy-sea.mon.GLB", + "ocean.tos.tavg-u-hm-sea.mon.GLB", + "ocean.tos.tavg-u-hxy-sea.mon.30S-90S", + "ocean.tos.tpt-u-hxy-sea.3hr.GLB", + "ocean.tossq.tavg-u-hxy-sea.day.GLB", + "ocean.umo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.uo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.uos.tavg-u-hxy-sea.day.GLB", + "ocean.vmo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.vo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.volcello.tavg-ol-hxy-sea.dec.GLB", + "ocean.volcello.tavg-ol-hxy-sea.mon.GLB", + "ocean.volcello.tavg-ol-hxy-sea.yr.GLB", + "ocean.volcello.ti-ol-hxy-sea.fx.GLB", + "ocean.volo.tavg-u-hm-sea.dec.GLB", + "ocean.volo.tavg-u-hm-sea.mon.GLB", + "ocean.vos.tavg-u-hxy-sea.day.GLB", + "ocean.wdir.tavg-u-hxy-sea.mon.GLB", + "ocean.wdir.tpt-u-hxy-sea.3hr.GLB", + "ocean.wdirswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wdirswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wdirwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wdirwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.wfcorr.tavg-u-hxy-sea.mon.GLB", + "ocean.wfo.tavg-u-hxy-sea.mon.GLB", + "ocean.wmo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.wo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.wpdir.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdir.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpdirswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdirswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpdirwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdirwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpp.tavg-u-hxy-sea.mon.GLB", + "ocean.wpp.tpt-u-hxy-sea.3hr.GLB", + "ocean.wppswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wppswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wppwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wppwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.zos.tavg-u-hxy-sea.mon.30S-90S", + "ocean.zossq.tavg-u-hxy-sea.mon.GLB", + "ocean.zostoga.tavg-u-hm-sea.day.GLB", + "ocnBgchem.bacc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.calc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chl.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chl.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chlcalc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chldiat.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chldiat.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chldiaz.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chldiaz.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chlmisc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chlmisc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chlpico.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chlpico.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.detoc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dfe.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.dfe.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissic.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.dissic.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissoc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dmso.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.expc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.expcalc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.fgco2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fsfe.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fsn.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.graz.tavg-ol-hxy-sea.mon.30S-90S", + "ocnBgchem.icfriver.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intdic.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intdoc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intparag.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbfe.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbn.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbp.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbsi.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpcalcite.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpn2.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpoc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpp.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpp.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppcalc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppdiat.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppdiaz.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppmisc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppnitrate.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpppico.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.nh4.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.nh4.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.no3.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.no3.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.o2.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.ocfriver.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.ph.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.ph.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phyc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phyc.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.phyc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phycalc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phycalc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phydiat.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phydiat.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phydiaz.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phydiaz.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phymisc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phymisc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phypico.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phypico.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.po4.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.pp.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.si.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.spco2.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.spco2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.talk.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zmeso.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zmeso.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zmicro.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zmicro.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zmisc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zmisc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zooc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zooc.tavg-ol-hxy-sea.mon.GLB", + "seaIce.evspsbl.tavg-u-hxy-si.mon.GLB", + "seaIce.prra.tavg-u-hxy-si.mon.GLB", + "seaIce.prsn.tavg-u-hxy-si.mon.GLB", + "seaIce.rlds.tavg-u-hxy-si.mon.GLB", + "seaIce.rlus.tavg-u-hxy-si.mon.GLB", + "seaIce.rsds.tavg-u-hxy-si.day.GLB", + "seaIce.rsds.tavg-u-hxy-si.mon.GLB", + "seaIce.rsus.tavg-u-hxy-si.day.GLB", + "seaIce.rsus.tavg-u-hxy-si.mon.GLB", + "seaIce.sbl.tavg-u-hxy-si.mon.GLB", + "seaIce.siage.tavg-u-hxy-si.day.GLB", + "seaIce.siage.tavg-u-hxy-si.mon.30S-90S", + "seaIce.siarea.tavg-u-hm-u.mon.NH", + "seaIce.siarea.tavg-u-hm-u.mon.SH", + "seaIce.siconc.tavg-u-hxy-u.mon.30S-90S", + "seaIce.siconca.tavg-u-hxy-u.day.GLB", + "seaIce.siconca.tavg-u-hxy-u.mon.GLB", + "seaIce.sidconcdyn.tavg-u-hxy-sea.mon.GLB", + "seaIce.sidconcth.tavg-u-hxy-sea.mon.GLB", + "seaIce.sidmassdyn.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthsi.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthwat.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmeltbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmeltlat.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmelttop.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassth.tavg-u-hxy-si.mon.GLB", + "seaIce.sieqthick.tavg-u-hxy-si.mon.GLB", + "seaIce.siextent.tavg-u-hm-u.mon.NH", + "seaIce.siextent.tavg-u-hm-u.mon.SH", + "seaIce.siflcondbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflcondtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sifllattop.tavg-u-hxy-si.mon.GLB", + "seaIce.siflsensbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflsenstop.tavg-u-hxy-si.mon.GLB", + "seaIce.siflswdbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sihc.tavg-u-hxy-sea.mon.GLB", + "seaIce.sisndmassdyn.tavg-u-hxy-si.mon.GLB", + "seaIce.sisndmasssi.tavg-u-hxy-si.mon.GLB", + "seaIce.sisndmasswind.tavg-u-hxy-si.mon.GLB", + "seaIce.sisnhc.tavg-u-hxy-si.mon.GLB", + "seaIce.sisnmass.tavg-u-hm-u.mon.NH", + "seaIce.sisnmass.tavg-u-hm-u.mon.SH", + "seaIce.sispeed.tavg-u-hxy-si.day.GLB", + "seaIce.sispeed.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-si.day.GLB", + "seaIce.sithick.tavg-u-hxy-si.mon.30S-90S", + "seaIce.sitimefrac.tavg-u-hxy-sea.day.GLB", + "seaIce.sitimefrac.tavg-u-hxy-sea.mon.30S-90S", + "seaIce.siu.tavg-u-hxy-si.day.GLB", + "seaIce.siu.tavg-u-hxy-si.mon.30S-90S", + "seaIce.siv.tavg-u-hxy-si.day.GLB", + "seaIce.siv.tavg-u-hxy-si.mon.30S-90S", + "seaIce.sivol.tavg-u-hm-u.mon.NH", + "seaIce.sivol.tavg-u-hm-u.mon.SH", + "seaIce.snc.tavg-u-hxy-si.mon.GLB", + "seaIce.snd.tavg-u-hxy-sn.day.GLB", + "seaIce.snd.tavg-u-hxy-sn.mon.30S-90S", + "seaIce.snm.tavg-u-hxy-si.mon.GLB", + "seaIce.snw.tavg-u-hxy-si.mon.GLB", + "seaIce.ts.tavg-u-hxy-si.day.GLB", + "seaIce.ts.tavg-u-hxy-si.mon.30S-90S" + ], + "Medium": [ + "atmos.hur.tavg-700hPa-hxy-air.day.GLB", + "atmos.hur.tpt-100hPa-hxy-u.6hr.GLB", + "atmos.hur.tpt-500hPa-hxy-air.6hr.GLB", + "atmos.hur.tpt-850hPa-hxy-air.6hr.GLB", + "atmos.ps.tpt-u-hxy-u.1hr.GLB", + "atmos.psitem.tavg-p39-hy-air.day.GLB", + "atmos.rldscs.tavg-u-hxy-u.day.GLB", + "atmos.rls.tavg-u-hxy-u.day.GLB", + "atmos.rls.tavg-u-hxy-u.mon.GLB", + "atmos.rsdsdiff.tavg-u-hxy-u.1hr.GLB", + "atmos.rss.tavg-u-hxy-u.day.GLB", + "atmos.rss.tavg-u-hxy-u.mon.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.1hr.GLB", + "atmos.tauunoegw.tavg-p19-hxy-air.mon.GLB", + "atmos.tauunowgw.tavg-p19-hxy-air.mon.GLB", + "atmos.tauuogw.tavg-p19-hxy-air.mon.GLB", + "atmos.tauupbl.tavg-u-hxy-u.day.GLB", + "atmos.tauvnogw.tavg-p19-hxy-air.mon.GLB", + "atmos.tauvogw.tavg-p19-hxy-air.mon.GLB", + "atmos.tauvpbl.tavg-u-hxy-u.day.GLB", + "atmos.tntc.tavg-p39-hy-air.mon.GLB", + "atmos.tntnogw.tavg-p39-hy-air.mon.GLB", + "atmos.tntogw.tavg-p39-hy-air.mon.GLB", + "atmos.tntrlcs.tavg-p39-hy-air.mon.GLB", + "atmos.tntrscs.tavg-p39-hy-air.mon.GLB", + "atmos.tntscp.tavg-p39-hy-air.mon.GLB", + "atmos.ts.tavg-u-hxy-u.1hr.GLB", + "atmos.ts.tavg-u-hxy-u.day.GLB", + "atmos.ua.tpt-200hPa-hxy-u.6hr.GLB", + "atmos.utendnogw.tavg-p19-hxy-air.day.GLB", + "atmos.utendnogw.tavg-p19-hxy-air.mon.GLB", + "atmos.utendogw.tavg-p19-hxy-air.day.GLB", + "atmos.utendogw.tavg-p19-hxy-air.mon.GLB", + "atmos.va.tpt-200hPa-hxy-u.6hr.GLB", + "atmos.vtendnogw.tavg-p19-hxy-air.day.GLB", + "atmos.vtendnogw.tavg-p19-hxy-air.mon.GLB", + "atmos.vtendogw.tavg-p19-hxy-air.day.GLB", + "atmos.vtendogw.tavg-p19-hxy-air.mon.GLB", + "atmos.wsg.tmax-h100m-hxy-u.mon.GLB", + "atmos.wsg.tmax-h10m-hxy-u.mon.GLB", + "atmos.zg.tpt-700hPa-hxy-u.6hr.GLB", + "atmos.zg.tpt-925hPa-hxy-u.6hr.GLB", + "land.cLeaf.tavg-u-hxy-lnd.mon.GLB", + "land.cLitterCwd.tavg-u-hxy-lnd.mon.GLB", + "land.cLitterSubSurf.tavg-u-hxy-lnd.mon.GLB", + "land.cLitterSurf.tavg-u-hxy-lnd.mon.GLB", + "land.cOther.tavg-u-hxy-lnd.mon.GLB", + "land.cRoot.tavg-u-hxy-lnd.mon.GLB", + "land.cropFracC3.tavg-u-hxy-u.mon.GLB", + "land.cropFracC4.tavg-u-hxy-u.mon.GLB", + "land.cSoil.tavg-sl-hxy-lnd.mon.GLB", + "land.cSoilPools.tavg-u-hxy-lnd.mon.GLB", + "land.cStem.tavg-u-hxy-lnd.mon.GLB", + "land.cVeg.tavg-u-hxy-ng.mon.GLB", + "land.cVeg.tavg-u-hxy-shb.mon.GLB", + "land.cVeg.tavg-u-hxy-tree.mon.GLB", + "land.fLitterFire.tavg-u-hxy-lnd.mon.GLB", + "land.fNgas.tavg-u-hxy-lnd.mon.GLB", + "land.fNgasFire.tavg-u-hxy-lnd.mon.GLB", + "land.fNgasNonFire.tavg-u-hxy-lnd.mon.GLB", + "land.fNleach.tavg-u-hxy-lnd.mon.GLB", + "land.fVegFire.tavg-u-hxy-lnd.mon.GLB", + "land.fVegLitterMortality.tavg-u-hxy-lnd.mon.GLB", + "land.fVegLitterSenescence.tavg-u-hxy-lnd.mon.GLB", + "land.fVegSoilMortality.tavg-u-hxy-lnd.mon.GLB", + "land.fVegSoilSenescence.tavg-u-hxy-lnd.mon.GLB", + "land.gpp.tavg-u-hxy-ng.mon.GLB", + "land.gpp.tavg-u-hxy-shb.mon.GLB", + "land.gpp.tavg-u-hxy-tree.mon.GLB", + "land.grassFracC3.tavg-u-hxy-u.mon.GLB", + "land.grassFracC4.tavg-u-hxy-u.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.3hr.GLB", + "land.mrros.tavg-u-hxy-lnd.3hr.GLB", + "land.mrsol.tpt-d10cm-hxy-lnd.3hr.GLB", + "land.nLeaf.tavg-u-hxy-lnd.mon.GLB", + "land.nLitterCwd.tavg-u-hxy-lnd.mon.GLB", + "land.nLitterSubSurf.tavg-u-hxy-lnd.mon.GLB", + "land.nLitterSurf.tavg-u-hxy-lnd.mon.GLB", + "land.nMineralNH4.tavg-u-hxy-lnd.mon.GLB", + "land.nMineralNO3.tavg-u-hxy-lnd.mon.GLB", + "land.nOther.tavg-u-hxy-lnd.mon.GLB", + "land.npp.tavg-u-hxy-ng.mon.GLB", + "land.npp.tavg-u-hxy-shb.mon.GLB", + "land.npp.tavg-u-hxy-tree.mon.GLB", + "land.nppLeaf.tavg-u-hxy-lnd.mon.GLB", + "land.nppOther.tavg-u-hxy-lnd.mon.GLB", + "land.nppRoot.tavg-u-hxy-lnd.mon.GLB", + "land.nppStem.tavg-u-hxy-lnd.mon.GLB", + "land.nRoot.tavg-u-hxy-lnd.mon.GLB", + "land.nStem.tavg-u-hxy-lnd.mon.GLB", + "land.pastureFracC3.tavg-u-hxy-u.mon.GLB", + "land.pastureFracC4.tavg-u-hxy-u.mon.GLB", + "land.ra.tavg-u-hxy-ng.mon.GLB", + "land.ra.tavg-u-hxy-shb.mon.GLB", + "land.ra.tavg-u-hxy-tree.mon.GLB", + "land.raLeaf.tavg-u-hxy-lnd.mon.GLB", + "land.raOther.tavg-u-hxy-lnd.mon.GLB", + "land.raRoot.tavg-u-hxy-lnd.mon.GLB", + "land.raStem.tavg-u-hxy-lnd.mon.GLB", + "land.rh.tavg-u-hxy-ng.mon.GLB", + "land.rh.tavg-u-hxy-shb.mon.GLB", + "land.rh.tavg-u-hxy-tree.mon.GLB", + "land.rhLitter.tavg-u-hxy-lnd.mon.GLB", + "land.rhSoil.tavg-u-hxy-lnd.mon.GLB", + "land.treeFracBdlDcd.tavg-u-hxy-u.mon.GLB", + "land.treeFracBdlEvg.tavg-u-hxy-u.mon.GLB", + "land.treeFracNdlDcd.tavg-u-hxy-u.mon.GLB", + "land.treeFracNdlEvg.tavg-u-hxy-u.mon.GLB", + "land.tsl.tavg-sl-hxy-lnd.day.GLB", + "land.vegHeight.tavg-u-hxy-ng.mon.GLB", + "land.vegHeight.tavg-u-hxy-shb.mon.GLB", + "land.vegHeight.tavg-u-hxy-tree.mon.GLB", + "land.wetlandCH4cons.tavg-u-hxy-lnd.mon.GLB", + "land.wetlandCH4prod.tavg-u-hxy-lnd.mon.GLB", + "land.wetlandFrac.tavg-u-hxy-u.mon.GLB", + "ocean.evspsbl.tavg-u-hxy-ifs.mon.GLB", + "ocean.ficeberg.tavg-u-hxy-sea.mon.GLB", + "ocean.hfacrossline.tavg-u-ht-sea.mon.GLB", + "ocean.hfevapds.tavg-u-hxy-ifs.mon.GLB", + "ocean.hfibthermds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfibthermds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfrainds.tavg-u-hxy-ifs.mon.GLB", + "ocean.hfrunoffds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfrunoffds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfsnthermds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfsnthermds.tavg-u-hxy-sea.mon.GLB", + "ocean.mfo.tavg-u-ht-sea.mon.GLB", + "ocean.sf6.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfacrossline.tavg-u-ht-sea.mon.GLB", + "ocean.sfdsi.tavg-u-hxy-sea.mon.GLB", + "ocean.sfriver.tavg-u-hxy-sea.mon.GLB", + "ocean.siflfwbot.tavg-u-hxy-sea.mon.GLB", + "ocean.so.tavg-ol-hxy-sea.day.GLB", + "ocean.tnkebto.tavg-u-hxy-sea.yr.GLB", + "ocean.vsf.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfcorr.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfevap.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfpr.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfriver.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfsit.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.arag.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.arag.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.calc.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.calc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chl.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.chlcalc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dmso.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.epn.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.epp.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.expc.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.expcalc.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.fgdms.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fric.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.froc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.graz.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.intppcalc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppdiat.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppdiaz.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppmisc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppnitrate.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intpppico.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.o2.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.ph.tavg-op20bar-hxy-sea.day.GLB", + "seaIce.sfdsi.tavg-u-hxy-si.mon.GLB", + "seaIce.siage.tavg-u-hxy-si.mon.GLB", + "seaIce.siarea.tavg-u-hm-u.day.NH", + "seaIce.siarea.tavg-u-hm-u.day.SH", + "seaIce.siareaacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.sicompstren.tavg-u-hxy-si.mon.GLB", + "seaIce.sidivvel.tpt-u-hxy-si.mon.GLB", + "seaIce.sidmasstranx.tavg-u-hxy-u.mon.GLB", + "seaIce.sidmasstrany.tavg-u-hxy-u.mon.GLB", + "seaIce.sidragbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidragtop.tavg-u-hxy-si.mon.GLB", + "seaIce.siextent.tavg-u-hm-u.day.NH", + "seaIce.siextent.tavg-u-hm-u.day.SH", + "seaIce.sifb.tavg-u-hxy-si.mon.GLB", + "seaIce.siflfwbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflfwdrain.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcecoriolx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcecorioly.tavg-u-hxy-si.mon.GLB", + "seaIce.siforceintstrx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforceintstry.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcetiltx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcetilty.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdconc.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdsnconc.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdsnthick.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdthick.tavg-u-hxy-si.mon.GLB", + "seaIce.simassacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.simpconc.tavg-u-hxy-si.mon.GLB", + "seaIce.simpeffconc.tavg-u-hxy-si.mon.GLB", + "seaIce.simprefrozen.tavg-u-hxy-simp.mon.GLB", + "seaIce.simpthick.tavg-u-hxy-simp.mon.GLB", + "seaIce.sirdgconc.tavg-u-hxy-si.mon.GLB", + "seaIce.sisali.tavg-u-hxy-si.mon.GLB", + "seaIce.sisaltmass.tavg-u-hxy-si.mon.GLB", + "seaIce.sishearvel.tpt-u-hxy-si.mon.GLB", + "seaIce.sisnmass.tavg-u-hm-u.day.NH", + "seaIce.sisnmass.tavg-u-hm-u.day.SH", + "seaIce.sisnmassacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.sistressave.tpt-u-hxy-si.mon.GLB", + "seaIce.sistressmax.tpt-u-hxy-si.mon.GLB", + "seaIce.sistrxdtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sistrxubot.tavg-u-hxy-si.mon.GLB", + "seaIce.sistrydtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sistryubot.tavg-u-hxy-si.mon.GLB", + "seaIce.sitempbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sitempsnic.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-sir.mon.GLB", + "seaIce.sivol.tavg-u-hm-u.day.NH", + "seaIce.sivol.tavg-u-hm-u.day.SH" + ], + "Low": [ + "atmosChem.flashrate.tavg-u-hxy-u.mon.GLB", + "land.c13Land.tavg-u-hxy-lnd.mon.GLB", + "land.c13Litter.tavg-u-hxy-lnd.mon.GLB", + "land.c13Soil.tavg-u-hxy-lnd.mon.GLB", + "land.c13Veg.tavg-u-hxy-lnd.mon.GLB", + "land.c14Land.tavg-u-hxy-lnd.mon.GLB", + "land.c14Litter.tavg-u-hxy-lnd.mon.GLB", + "land.c14Soil.tavg-u-hxy-lnd.mon.GLB", + "land.c14Veg.tavg-u-hxy-lnd.mon.GLB", + "land.gppc13.tavg-u-hxy-lnd.mon.GLB", + "land.gppc14.tavg-u-hxy-lnd.mon.GLB", + "land.netAtmosLandC13Flux.tavg-u-hxy-lnd.mon.GLB", + "land.netAtmosLandC14Flux.tavg-u-hxy-lnd.mon.GLB", + "land.rac13.tavg-u-hxy-lnd.mon.GLB", + "land.rac14.tavg-u-hxy-lnd.mon.GLB", + "land.rhc13.tavg-u-hxy-lnd.mon.GLB", + "land.rhc14.tavg-u-hxy-lnd.mon.GLB", + "ocean.difmxybo.tavg-ol-hxy-sea.yr.GLB", + "ocean.difmxylo.tavg-ol-hxy-sea.yr.GLB", + "ocean.diftrblo.tavg-ol-hxy-sea.yr.GLB", + "ocean.diftrelo.tavg-ol-hxy-sea.yr.GLB", + "ocean.difvho.tavg-ol-hxy-sea.yr.GLB", + "ocean.difvso.tavg-ol-hxy-sea.yr.GLB", + "ocean.dispkexyfo.tavg-u-hxy-sea.yr.GLB", + "ocean.dxto.ti-u-hxy-u.fx.GLB", + "ocean.dxuo.ti-u-hxy-u.fx.GLB", + "ocean.dxvo.ti-u-hxy-u.fx.GLB", + "ocean.dyto.ti-u-hxy-u.fx.GLB", + "ocean.dyuo.ti-u-hxy-u.fx.GLB", + "ocean.dyvo.ti-u-hxy-u.fx.GLB", + "ocean.mlotstsq.tavg-u-hxy-sea.mon.GLB", + "ocean.msftmmpa.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftmmpa.tavg-rho-hyb-sea.mon.GLB", + "ocean.msftmsmpa.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftypa.tavg-ol-ht-sea.mon.GLB", + "ocean.msftypa.tavg-rho-ht-sea.mon.GLB", + "ocean.ocontempdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontempmint.tavg-u-hxy-sea.yr.GLB", + "ocean.ocontemppadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemppmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemppsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemprmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemptend.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottempdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottempmint.tavg-u-hxy-sea.yr.GLB", + "ocean.opottemppadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemppmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemppsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemprmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemptend.tavg-ol-hxy-sea.dec.GLB", + "ocean.osaltdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpsmadvect.tavg-ol-hxy-sea.mon.GLB", + "ocean.osaltpsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltrmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osalttend.tavg-ol-hxy-sea.yr.GLB", + "ocean.rsdoabsorb.tavg-ol-hxy-sea.yr.GLB", + "ocean.somint.tavg-u-hxy-sea.yr.GLB", + "ocean.sossq.tavg-u-hxy-sea.mon.GLB", + "ocean.thkcelluo.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcellvo.tavg-ol-hxy-sea.mon.GLB", + "ocean.tnpeo.tavg-u-hxy-sea.yr.GLB", + "ocean.tossq.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.dissi13c.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.dissi13c.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissi14c.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissi14cabio.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.dissi14cabio.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.fg13co2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fg14co2abio.tavg-u-hxy-sea.mon.GLB" + ] + }, + "highres-future-xxx": { + "Core": [ + "atmos.areacella.ti-u-hxy-u.fx.GLB", + "atmos.cl.tavg-al-hxy-u.mon.GLB", + "atmos.cli.tavg-al-hxy-u.mon.GLB", + "atmos.clivi.tavg-u-hxy-u.mon.GLB", + "atmos.clt.tavg-u-hxy-u.day.GLB", + "atmos.clt.tavg-u-hxy-u.mon.GLB", + "atmos.clw.tavg-al-hxy-u.mon.GLB", + "atmos.clwvi.tavg-u-hxy-u.mon.GLB", + "atmos.evspsbl.tavg-u-hxy-u.mon.GLB", + "atmos.hfls.tavg-u-hxy-u.mon.GLB", + "atmos.hfss.tavg-u-hxy-u.mon.GLB", + "atmos.hur.tavg-p19-hxy-air.mon.GLB", + "atmos.hur.tavg-p19-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.6hr.GLB", + "atmos.hurs.tavg-h2m-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.mon.GLB", + "atmos.hus.tavg-p19-hxy-u.day.GLB", + "atmos.hus.tavg-p19-hxy-u.mon.GLB", + "atmos.huss.tavg-h2m-hxy-u.day.GLB", + "atmos.huss.tavg-h2m-hxy-u.mon.GLB", + "atmos.huss.tpt-h2m-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.1hr.GLB", + "atmos.pr.tavg-u-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.day.GLB", + "atmos.pr.tavg-u-hxy-u.mon.GLB", + "atmos.prc.tavg-u-hxy-u.mon.GLB", + "atmos.prsn.tavg-u-hxy-u.mon.GLB", + "atmos.prw.tavg-u-hxy-u.mon.GLB", + "atmos.ps.tavg-u-hxy-u.day.GLB", + "atmos.ps.tavg-u-hxy-u.mon.GLB", + "atmos.psl.tavg-u-hxy-u.day.GLB", + "atmos.psl.tavg-u-hxy-u.mon.GLB", + "atmos.rlds.tavg-u-hxy-u.mon.GLB", + "atmos.rldscs.tavg-u-hxy-u.mon.GLB", + "atmos.rlus.tavg-u-hxy-u.mon.GLB", + "atmos.rluscs.tavg-u-hxy-u.mon.GLB", + "atmos.rlut.tavg-u-hxy-u.mon.GLB", + "atmos.rlutcs.tavg-u-hxy-u.mon.GLB", + "atmos.rsds.tavg-u-hxy-u.day.GLB", + "atmos.rsds.tavg-u-hxy-u.mon.GLB", + "atmos.rsdscs.tavg-u-hxy-u.mon.GLB", + "atmos.rsdt.tavg-u-hxy-u.mon.GLB", + "atmos.rsus.tavg-u-hxy-u.mon.GLB", + "atmos.rsuscs.tavg-u-hxy-u.mon.GLB", + "atmos.rsut.tavg-u-hxy-u.mon.GLB", + "atmos.rsutcs.tavg-u-hxy-u.mon.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.day.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.mon.GLB", + "atmos.sftlf.ti-u-hxy-u.fx.GLB", + "atmos.ta.tavg-p19-hxy-air.day.GLB", + "atmos.ta.tavg-p19-hxy-air.mon.GLB", + "atmos.ta.tpt-p3-hxy-air.6hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.day.GLB", + "atmos.tas.tavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tmax-h2m-hxy-u.day.GLB", + "atmos.tas.tmaxavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tmin-h2m-hxy-u.day.GLB", + "atmos.tas.tminavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tpt-h2m-hxy-u.3hr.GLB", + "atmos.tauu.tavg-u-hxy-u.mon.GLB", + "atmos.tauv.tavg-u-hxy-u.mon.GLB", + "atmos.ts.tavg-u-hxy-u.mon.GLB", + "atmos.ua.tavg-p19-hxy-air.day.GLB", + "atmos.ua.tavg-p19-hxy-air.mon.GLB", + "atmos.ua.tpt-p3-hxy-air.6hr.GLB", + "atmos.uas.tavg-h10m-hxy-u.day.GLB", + "atmos.uas.tavg-h10m-hxy-u.mon.GLB", + "atmos.uas.tpt-h10m-hxy-u.3hr.GLB", + "atmos.va.tavg-p19-hxy-air.day.GLB", + "atmos.va.tavg-p19-hxy-air.mon.GLB", + "atmos.va.tpt-p3-hxy-air.6hr.GLB", + "atmos.vas.tavg-h10m-hxy-u.day.GLB", + "atmos.vas.tavg-h10m-hxy-u.mon.GLB", + "atmos.vas.tpt-h10m-hxy-u.3hr.GLB", + "atmos.wap.tavg-p19-hxy-air.mon.GLB", + "atmos.wap.tavg-p19-hxy-u.day.GLB", + "atmos.zg.tavg-p19-hxy-air.day.GLB", + "atmos.zg.tavg-p19-hxy-air.mon.GLB", + "land.evspsblsoi.tavg-u-hxy-lnd.mon.GLB", + "land.evspsblveg.tavg-u-hxy-lnd.mon.GLB", + "land.lai.tavg-u-hxy-lnd.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.mon.GLB", + "land.mrros.tavg-u-hxy-lnd.mon.GLB", + "land.mrso.tavg-u-hxy-lnd.mon.GLB", + "land.mrsofc.ti-u-hxy-lnd.fx.GLB", + "land.mrsol.tavg-d10cm-hxy-lnd.mon.GLB", + "land.orog.ti-u-hxy-u.fx.GLB", + "land.rootd.ti-u-hxy-lnd.fx.GLB", + "land.sftgif.ti-u-hxy-u.fx.GLB", + "land.slthick.ti-sl-hxy-lnd.fx.GLB", + "landIce.mrfso.tavg-u-hxy-lnd.mon.GLB", + "landIce.snc.tavg-u-hxy-lnd.mon.GLB", + "landIce.snw.tavg-u-hxy-lnd.mon.GLB", + "ocean.areacello.ti-u-hxy-u.fx.GLB", + "ocean.basin.ti-u-hxy-u.fx.GLB", + "ocean.bigthetao.tavg-ol-hxy-sea.mon.GLB", + "ocean.deptho.ti-u-hxy-sea.fx.GLB", + "ocean.hfds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfgeou.ti-u-hxy-sea.fx.GLB", + "ocean.masscello.tavg-ol-hxy-sea.mon.GLB", + "ocean.masscello.ti-ol-hxy-sea.fx.GLB", + "ocean.mlotst.tavg-u-hxy-sea.mon.GLB", + "ocean.sftof.ti-u-hxy-u.fx.GLB", + "ocean.so.tavg-ol-hxy-sea.mon.GLB", + "ocean.sos.tavg-u-hxy-sea.day.GLB", + "ocean.sos.tavg-u-hxy-sea.mon.GLB", + "ocean.tauuo.tavg-u-hxy-sea.mon.GLB", + "ocean.tauvo.tavg-u-hxy-sea.mon.GLB", + "ocean.thetao.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcello.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcello.ti-ol-hxy-sea.fx.GLB", + "ocean.tos.tavg-u-hxy-sea.day.GLB", + "ocean.tos.tavg-u-hxy-sea.mon.GLB", + "ocean.umo.tavg-ol-hxy-sea.mon.GLB", + "ocean.uo.tavg-ol-hxy-sea.mon.GLB", + "ocean.vmo.tavg-ol-hxy-sea.mon.GLB", + "ocean.vo.tavg-ol-hxy-sea.mon.GLB", + "ocean.wmo.tavg-ol-hxy-sea.mon.GLB", + "ocean.wo.tavg-ol-hxy-sea.mon.GLB", + "ocean.zos.tavg-u-hxy-sea.day.GLB", + "ocean.zos.tavg-u-hxy-sea.mon.GLB", + "ocean.zostoga.tavg-u-hm-sea.mon.GLB", + "seaIce.siconc.tavg-u-hxy-u.day.GLB", + "seaIce.siconc.tavg-u-hxy-u.mon.GLB", + "seaIce.simass.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-si.mon.GLB", + "seaIce.sitimefrac.tavg-u-hxy-sea.mon.GLB", + "seaIce.siu.tavg-u-hxy-si.mon.GLB", + "seaIce.siv.tavg-u-hxy-si.mon.GLB", + "seaIce.snd.tavg-u-hxy-sn.mon.GLB", + "seaIce.ts.tavg-u-hxy-si.mon.GLB" + ], + "High": [ + "aerosol.o3.tmax-h2m-hxy-u.day.GLB", + "aerosol.sfpm1.tavg-h2m-hxy-u.day.GLB", + "aerosol.sfpm10.tavg-h2m-hxy-u.day.GLB", + "aerosol.sfpm25.tavg-h2m-hxy-u.day.GLB", + "atmos.bldep.tpt-u-hxy-u.3hr.GLB", + "atmos.cl.tavg-al-hxy-u.day.GLB", + "atmos.clt.tavg-u-hxy-u.1hr.30S-90S", + "atmos.co2mass.tavg-u-hm-u.mon.GLB", + "atmos.evspsbl.tavg-u-hxy-lnd.day.GLB", + "atmos.hfls.tavg-u-hxy-u.3hr.GLB", + "atmos.hfls.tavg-u-hxy-u.day.GLB", + "atmos.hfss.tavg-u-hxy-u.3hr.GLB", + "atmos.hfss.tavg-u-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.1hr.30S-90S", + "atmos.hurs.tmax-h2m-hxy-u.day.GLB", + "atmos.hurs.tmin-h2m-hxy-u.day.GLB", + "atmos.hurs.tpt-h2m-hxy-u.3hr.GLB", + "atmos.huss.tpt-h2m-hxy-u.1hr.GLB", + "atmos.pfull.tavg-al-hxy-u.day.GLB", + "atmos.pr.tavg-u-hxy-u.1hr.30S-90S", + "atmos.pr.tmax-u-hxy-u.day.GLB", + "atmos.prc.tavg-u-hxy-u.day.GLB", + "atmos.prra.tavg-u-hxy-lnd.day.GLB", + "atmos.prsn.tavg-u-hxy-u.day.GLB", + "atmos.ps.tpt-u-hxy-u.1hr.30S-90S", + "atmos.rlds.tavg-u-hxy-u.1hr.30S-90S", + "atmos.rlds.tavg-u-hxy-u.3hr.GLB", + "atmos.rlds.tavg-u-hxy-u.day.GLB", + "atmos.rlus.tavg-u-hxy-u.3hr.GLB", + "atmos.rlus.tavg-u-hxy-u.day.GLB", + "atmos.rsds.tavg-u-hxy-u.1hr.30S-90S", + "atmos.rsds.tavg-u-hxy-u.1hr.GLB", + "atmos.rsds.tavg-u-hxy-u.3hr.GLB", + "atmos.rsus.tavg-u-hxy-u.3hr.GLB", + "atmos.rsus.tavg-u-hxy-u.day.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.1hr.30S-90S", + "atmos.ts.tavg-u-hxy-u.day.GLB", + "atmos.ua.tpt-h100m-hxy-u.1hr.GLB", + "atmos.uas.tpt-h10m-hxy-u.1hr.GLB", + "atmos.va.tpt-h100m-hxy-u.1hr.GLB", + "atmos.vas.tpt-h10m-hxy-u.1hr.GLB", + "atmos.wsg.tmax-h100m-hxy-u.1hr.GLB", + "atmos.wsg.tmax-h10m-hxy-u.1hr.GLB", + "land.areacellr.ti-u-hxy-u.fx.GLB", + "land.dcw.tavg-u-hxy-lnd.day.GLB", + "land.dslw.tavg-u-hxy-lnd.day.GLB", + "land.evspsblpot.tavg-u-hxy-lnd.day.GLB", + "land.evspsblpot.tavg-u-hxy-lnd.mon.GLB", + "land.evspsblsoi.tavg-u-hxy-u.day.GLB", + "land.evspsblveg.tavg-u-hxy-u.day.GLB", + "land.landCoverFrac.tavg-u-hxy-u.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.day.GLB", + "land.mrrob.tavg-u-hxy-lnd.day.GLB", + "land.mrros.tavg-u-hxy-lnd.day.GLB", + "land.mrsfl.tavg-sl-hxy-lnd.day.GLB", + "land.mrsll.tavg-sl-hxy-lnd.day.GLB", + "land.mrso.tavg-u-hxy-lnd.day.GLB", + "land.mrsol.tavg-d10cm-hxy-lnd.day.GLB", + "land.mrsol.tavg-sl-hxy-lnd.day.GLB", + "land.mrsow.tavg-u-hxy-lnd.day.GLB", + "land.mrtws.tavg-u-hxy-lnd.day.GLB", + "land.orog.ti-u-hxy-u.fx.30S-90S", + "land.rivi.tavg-u-hxy-lnd.day.GLB", + "land.rivo.tavg-u-hxy-lnd.day.GLB", + "land.tas.tavg-u-hxy-u.1hr.30S-90S", + "land.tas.tavg-u-hxy-u.1hr.GLB", + "land.wtd.tavg-u-hxy-lnd.day.GLB", + "landIce.snw.tavg-u-hxy-lnd.day.GLB" + ], + "Medium": [ + "atmos.bldep.tavg-u-hxy-u.1hr.GLB", + "atmos.bldep.tmax-u-hxy-u.day.GLB", + "atmos.bldep.tmin-u-hxy-u.day.GLB", + "atmos.hfdsnb.tavg-u-hxy-lnd.day.GLB", + "atmos.hfls.tavg-u-hxy-u.1hr.GLB", + "atmos.hfss.tavg-u-hxy-u.1hr.GLB", + "atmos.hurs.tavg-h2m-hxy-u.1hr.GLB", + "atmos.noaahi2m.tavg-h2m-hxy-u.day.GLB", + "atmos.noaahi2m.tmax-h2m-hxy-u.day.GLB", + "atmos.prrsn.tavg-u-hxy-lnd.day.GLB", + "atmos.prsn.tavg-u-hxy-u.3hr.GLB", + "atmos.prsn.tavg-u-hxy-u.6hr.GLB", + "atmos.prsnc.tavg-u-hxy-lnd.day.GLB", + "atmos.prsnsn.tavg-u-hxy-lnd.day.GLB", + "atmos.ps.tpt-u-hxy-u.1hr.GLB", + "atmos.psl.tpt-u-hxy-u.1hr.GLB", + "atmos.rlds.tavg-u-hxy-u.1hr.GLB", + "atmos.rldscs.tavg-u-hxy-u.day.GLB", + "atmos.rls.tavg-u-hxy-u.day.GLB", + "atmos.rls.tavg-u-hxy-u.mon.GLB", + "atmos.rlus.tavg-u-hxy-u.1hr.GLB", + "atmos.rsdscs.tavg-u-hxy-u.day.GLB", + "atmos.rsdsdiff.tavg-u-hxy-u.1hr.GLB", + "atmos.rsdsdiff.tavg-u-hxy-u.day.GLB", + "atmos.rss.tavg-u-hxy-u.day.GLB", + "atmos.rss.tavg-u-hxy-u.mon.GLB", + "atmos.rsus.tavg-u-hxy-u.1hr.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.1hr.GLB", + "atmos.sfcWind.tmax-h10m-hxy-u.day.GLB", + "atmos.snmsl.tavg-u-hxy-lnd.day.GLB", + "atmos.snrefr.tavg-u-hxy-lnd.day.GLB", + "atmos.snwc.tavg-u-hxy-lnd.day.GLB", + "atmos.ts.tavg-u-hxy-sn.day.GLB", + "atmos.ts.tavg-u-hxy-u.1hr.GLB", + "atmos.wbgt.tavg-h2m-hxy-u.day.GLB", + "atmos.wbgt.tmax-h2m-hxy-u.day.GLB", + "atmos.wsg.tmax-h100m-hxy-u.mon.GLB", + "atmos.wsg.tmax-h10m-hxy-u.mon.GLB", + "atmosChem.flashrate.tavg-u-hxy-u.day.GLB", + "land.depthl.ti-u-hxy-u.fx.GLB", + "land.dgw.tavg-u-hxy-lnd.day.GLB", + "land.drivw.tavg-u-hxy-lnd.day.GLB", + "land.dsn.tavg-u-hxy-lnd.day.GLB", + "land.dsw.tavg-u-hxy-lnd.day.GLB", + "land.esn.tavg-u-hxy-sn.day.GLB", + "land.irrDem.tavg-u-hxy-u.day.GLB", + "land.irrGw.tavg-u-hxy-u.day.GLB", + "land.irrLut.tavg-u-hxy-u.day.GLB", + "land.irrSurf.tavg-u-hxy-u.day.GLB", + "land.mrro.tavg-u-hxy-lnd.3hr.GLB", + "land.mrros.tavg-u-hxy-lnd.3hr.GLB", + "land.mrsol.tpt-d10cm-hxy-lnd.3hr.GLB", + "land.qgwr.tavg-u-hxy-lnd.day.GLB", + "land.rzwc.tavg-u-hxy-lnd.day.GLB", + "land.sftlaf.ti-u-hxy-u.fx.GLB", + "land.sw.tavg-u-hxy-lnd.day.GLB", + "land.sweLut.tavg-u-hxy-multi.mon.GLB", + "land.tsl.tavg-sl-hxy-lnd.day.GLB", + "landIce.agesno.tavg-u-hxy-lnd.mon.GLB", + "landIce.hfdsn.tavg-u-hxy-lnd.day.GLB", + "landIce.hfdsn.tavg-u-hxy-lnd.mon.GLB", + "landIce.lwsnl.tavg-u-hxy-lnd.day.GLB", + "landIce.lwsnl.tavg-u-hxy-lnd.mon.GLB", + "landIce.pflw.tavg-u-hxy-lnd.day.GLB", + "landIce.sbl.tavg-u-hxy-lnd.mon.GLB", + "landIce.sbl.tavg-u-hxy-u.day.GLB", + "landIce.sbl.tavg-u-hxy-u.mon.GLB", + "landIce.snc.tavg-u-hxy-lnd.day.GLB", + "landIce.snd.tavg-u-hxy-lnd.day.GLB", + "landIce.snd.tavg-u-hxy-lnd.mon.GLB", + "landIce.snm.tavg-u-hxy-lnd.day.GLB", + "landIce.snm.tavg-u-hxy-lnd.mon.GLB", + "landIce.sootsn.tavg-u-hxy-lnd.mon.GLB", + "landIce.tpf.tavg-u-hxy-lnd.day.GLB", + "landIce.tsn.tavg-u-hxy-lnd.day.GLB", + "landIce.tsn.tavg-u-hxy-lnd.mon.GLB", + "ocean.friver.tavg-u-hxy-sea.mon.GLB", + "seaIce.prsn.tavg-u-hxy-si.mon.GLB", + "seaIce.sbl.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthsi.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdsnconc.tavg-u-hxy-si.day.GLB", + "seaIce.siitdsnthick.tavg-u-hxy-si.day.GLB", + "seaIce.siitdsnthick.tavg-u-hxy-si.mon.GLB", + "seaIce.sisndmassdyn.tavg-u-hxy-si.mon.GLB", + "seaIce.sisndmasssi.tavg-u-hxy-si.mon.GLB", + "seaIce.sisndmasswind.tavg-u-hxy-si.mon.GLB", + "seaIce.sisnhc.tavg-u-hxy-si.day.GLB", + "seaIce.sisnhc.tavg-u-hxy-si.mon.GLB", + "seaIce.sitempsnic.tavg-u-hxy-si.day.GLB", + "seaIce.sitempsnic.tavg-u-hxy-si.mon.GLB", + "seaIce.snc.tavg-u-hxy-si.mon.GLB", + "seaIce.snd.tavg-u-hxy-sn.day.GLB", + "seaIce.snm.tavg-u-hxy-si.mon.GLB", + "seaIce.snw.tavg-u-hxy-si.mon.GLB" + ], + "Low": [ + "aerosol.abs550aer.tavg-u-hxy-u.mon.GLB", + "aerosol.no2.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.o3.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.sfpm1.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.sfpm10.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.sfpm25.tavg-h2m-hxy-u.1hr.GLB", + "atmos.co2.tavg-h2m-hxy-u.mon.GLB", + "atmos.hurs.tmin-h2m-hxy-crp.day.GLB", + "atmos.pr.tavg-u-hxy-crp.day.GLB", + "atmos.tas.tmax-h2m-hxy-crp.day.GLB", + "atmos.tas.tmin-h2m-hxy-crp.day.GLB", + "atmosChem.emich4.tavg-u-hxy-u.mon.GLB", + "atmosChem.flashrate.tavg-u-hxy-u.mon.GLB", + "land.c3PftFrac.tavg-u-hxy-u.mon.GLB", + "land.c4PftFrac.tavg-u-hxy-u.mon.GLB", + "land.cropFracC3.tavg-u-hxy-u.mon.GLB", + "land.cropFracC4.tavg-u-hxy-u.mon.GLB", + "land.cSoil.tavg-u-hxy-lnd.mon.GLB", + "land.fHarvestToAtmos.tavg-u-hxy-lnd.mon.GLB", + "land.irrLut.tavg-u-hxy-multi.mon.GLB", + "land.lai.tavg-u-hxy-lnd.day.GLB", + "land.pastureFrac.tavg-u-hxy-u.mon.GLB", + "land.pastureFracC3.tavg-u-hxy-u.mon.GLB", + "land.pastureFracC4.tavg-u-hxy-u.mon.GLB" + ] + }, + "highresSST-pxxkpat": { + "Core": [ + "atmos.areacella.ti-u-hxy-u.fx.GLB", + "atmos.cl.tavg-al-hxy-u.mon.GLB", + "atmos.cli.tavg-al-hxy-u.mon.GLB", + "atmos.clivi.tavg-u-hxy-u.mon.GLB", + "atmos.clt.tavg-u-hxy-u.day.GLB", + "atmos.clt.tavg-u-hxy-u.mon.GLB", + "atmos.clw.tavg-al-hxy-u.mon.GLB", + "atmos.clwvi.tavg-u-hxy-u.mon.GLB", + "atmos.evspsbl.tavg-u-hxy-u.mon.GLB", + "atmos.hfls.tavg-u-hxy-u.mon.GLB", + "atmos.hfss.tavg-u-hxy-u.mon.GLB", + "atmos.hur.tavg-p19-hxy-air.mon.GLB", + "atmos.hur.tavg-p19-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.6hr.GLB", + "atmos.hurs.tavg-h2m-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.mon.GLB", + "atmos.hus.tavg-p19-hxy-u.day.GLB", + "atmos.hus.tavg-p19-hxy-u.mon.GLB", + "atmos.huss.tavg-h2m-hxy-u.day.GLB", + "atmos.huss.tavg-h2m-hxy-u.mon.GLB", + "atmos.huss.tpt-h2m-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.1hr.GLB", + "atmos.pr.tavg-u-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.day.GLB", + "atmos.pr.tavg-u-hxy-u.mon.GLB", + "atmos.prc.tavg-u-hxy-u.mon.GLB", + "atmos.prsn.tavg-u-hxy-u.mon.GLB", + "atmos.prw.tavg-u-hxy-u.mon.GLB", + "atmos.ps.tavg-u-hxy-u.day.GLB", + "atmos.ps.tavg-u-hxy-u.mon.GLB", + "atmos.psl.tavg-u-hxy-u.day.GLB", + "atmos.psl.tavg-u-hxy-u.mon.GLB", + "atmos.rlds.tavg-u-hxy-u.mon.GLB", + "atmos.rldscs.tavg-u-hxy-u.mon.GLB", + "atmos.rlus.tavg-u-hxy-u.mon.GLB", + "atmos.rluscs.tavg-u-hxy-u.mon.GLB", + "atmos.rlut.tavg-u-hxy-u.mon.GLB", + "atmos.rlutcs.tavg-u-hxy-u.mon.GLB", + "atmos.rsds.tavg-u-hxy-u.day.GLB", + "atmos.rsds.tavg-u-hxy-u.mon.GLB", + "atmos.rsdscs.tavg-u-hxy-u.mon.GLB", + "atmos.rsdt.tavg-u-hxy-u.mon.GLB", + "atmos.rsus.tavg-u-hxy-u.mon.GLB", + "atmos.rsuscs.tavg-u-hxy-u.mon.GLB", + "atmos.rsut.tavg-u-hxy-u.mon.GLB", + "atmos.rsutcs.tavg-u-hxy-u.mon.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.day.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.mon.GLB", + "atmos.sftlf.ti-u-hxy-u.fx.GLB", + "atmos.ta.tavg-p19-hxy-air.day.GLB", + "atmos.ta.tavg-p19-hxy-air.mon.GLB", + "atmos.ta.tpt-p3-hxy-air.6hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.day.GLB", + "atmos.tas.tavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tmax-h2m-hxy-u.day.GLB", + "atmos.tas.tmaxavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tmin-h2m-hxy-u.day.GLB", + "atmos.tas.tminavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tpt-h2m-hxy-u.3hr.GLB", + "atmos.tauu.tavg-u-hxy-u.mon.GLB", + "atmos.tauv.tavg-u-hxy-u.mon.GLB", + "atmos.ts.tavg-u-hxy-u.mon.GLB", + "atmos.ua.tavg-p19-hxy-air.day.GLB", + "atmos.ua.tavg-p19-hxy-air.mon.GLB", + "atmos.ua.tpt-p3-hxy-air.6hr.GLB", + "atmos.uas.tavg-h10m-hxy-u.day.GLB", + "atmos.uas.tavg-h10m-hxy-u.mon.GLB", + "atmos.uas.tpt-h10m-hxy-u.3hr.GLB", + "atmos.va.tavg-p19-hxy-air.day.GLB", + "atmos.va.tavg-p19-hxy-air.mon.GLB", + "atmos.va.tpt-p3-hxy-air.6hr.GLB", + "atmos.vas.tavg-h10m-hxy-u.day.GLB", + "atmos.vas.tavg-h10m-hxy-u.mon.GLB", + "atmos.vas.tpt-h10m-hxy-u.3hr.GLB", + "atmos.wap.tavg-p19-hxy-air.mon.GLB", + "atmos.wap.tavg-p19-hxy-u.day.GLB", + "atmos.zg.tavg-p19-hxy-air.day.GLB", + "atmos.zg.tavg-p19-hxy-air.mon.GLB", + "land.evspsblsoi.tavg-u-hxy-lnd.mon.GLB", + "land.evspsblveg.tavg-u-hxy-lnd.mon.GLB", + "land.lai.tavg-u-hxy-lnd.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.mon.GLB", + "land.mrros.tavg-u-hxy-lnd.mon.GLB", + "land.mrso.tavg-u-hxy-lnd.mon.GLB", + "land.mrsofc.ti-u-hxy-lnd.fx.GLB", + "land.mrsol.tavg-d10cm-hxy-lnd.mon.GLB", + "land.orog.ti-u-hxy-u.fx.GLB", + "land.rootd.ti-u-hxy-lnd.fx.GLB", + "land.sftgif.ti-u-hxy-u.fx.GLB", + "land.slthick.ti-sl-hxy-lnd.fx.GLB", + "landIce.mrfso.tavg-u-hxy-lnd.mon.GLB", + "landIce.snc.tavg-u-hxy-lnd.mon.GLB", + "landIce.snw.tavg-u-hxy-lnd.mon.GLB", + "ocean.areacello.ti-u-hxy-u.fx.GLB", + "ocean.basin.ti-u-hxy-u.fx.GLB", + "ocean.bigthetao.tavg-ol-hxy-sea.mon.GLB", + "ocean.deptho.ti-u-hxy-sea.fx.GLB", + "ocean.hfds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfgeou.ti-u-hxy-sea.fx.GLB", + "ocean.masscello.tavg-ol-hxy-sea.mon.GLB", + "ocean.masscello.ti-ol-hxy-sea.fx.GLB", + "ocean.mlotst.tavg-u-hxy-sea.mon.GLB", + "ocean.sftof.ti-u-hxy-u.fx.GLB", + "ocean.so.tavg-ol-hxy-sea.mon.GLB", + "ocean.sos.tavg-u-hxy-sea.day.GLB", + "ocean.sos.tavg-u-hxy-sea.mon.GLB", + "ocean.tauuo.tavg-u-hxy-sea.mon.GLB", + "ocean.tauvo.tavg-u-hxy-sea.mon.GLB", + "ocean.thetao.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcello.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcello.ti-ol-hxy-sea.fx.GLB", + "ocean.tos.tavg-u-hxy-sea.day.GLB", + "ocean.tos.tavg-u-hxy-sea.mon.GLB", + "ocean.umo.tavg-ol-hxy-sea.mon.GLB", + "ocean.uo.tavg-ol-hxy-sea.mon.GLB", + "ocean.vmo.tavg-ol-hxy-sea.mon.GLB", + "ocean.vo.tavg-ol-hxy-sea.mon.GLB", + "ocean.wmo.tavg-ol-hxy-sea.mon.GLB", + "ocean.wo.tavg-ol-hxy-sea.mon.GLB", + "ocean.zos.tavg-u-hxy-sea.day.GLB", + "ocean.zos.tavg-u-hxy-sea.mon.GLB", + "ocean.zostoga.tavg-u-hm-sea.mon.GLB", + "seaIce.siconc.tavg-u-hxy-u.day.GLB", + "seaIce.siconc.tavg-u-hxy-u.mon.GLB", + "seaIce.simass.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-si.mon.GLB", + "seaIce.sitimefrac.tavg-u-hxy-sea.mon.GLB", + "seaIce.siu.tavg-u-hxy-si.mon.GLB", + "seaIce.siv.tavg-u-hxy-si.mon.GLB", + "seaIce.snd.tavg-u-hxy-sn.mon.GLB", + "seaIce.ts.tavg-u-hxy-si.mon.GLB" + ], + "High": [ + "aerosol.o3.tmax-h2m-hxy-u.day.GLB", + "aerosol.sfpm1.tavg-h2m-hxy-u.day.GLB", + "aerosol.sfpm10.tavg-h2m-hxy-u.day.GLB", + "aerosol.sfpm25.tavg-h2m-hxy-u.day.GLB", + "atmos.bldep.tpt-u-hxy-u.3hr.GLB", + "atmos.cl.tavg-al-hxy-u.day.GLB", + "atmos.clt.tavg-u-hxy-u.1hr.30S-90S", + "atmos.co2mass.tavg-u-hm-u.mon.GLB", + "atmos.evspsbl.tavg-u-hxy-lnd.day.GLB", + "atmos.hfls.tavg-u-hxy-u.3hr.GLB", + "atmos.hfls.tavg-u-hxy-u.day.GLB", + "atmos.hfss.tavg-u-hxy-u.3hr.GLB", + "atmos.hfss.tavg-u-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.1hr.30S-90S", + "atmos.hurs.tmax-h2m-hxy-u.day.GLB", + "atmos.hurs.tmin-h2m-hxy-u.day.GLB", + "atmos.hurs.tpt-h2m-hxy-u.3hr.GLB", + "atmos.huss.tpt-h2m-hxy-u.1hr.GLB", + "atmos.pfull.tavg-al-hxy-u.day.GLB", + "atmos.pr.tavg-u-hxy-u.1hr.30S-90S", + "atmos.pr.tmax-u-hxy-u.day.GLB", + "atmos.prc.tavg-u-hxy-u.day.GLB", + "atmos.prra.tavg-u-hxy-lnd.day.GLB", + "atmos.prsn.tavg-u-hxy-u.day.GLB", + "atmos.ps.tpt-u-hxy-u.1hr.30S-90S", + "atmos.rlds.tavg-u-hxy-u.1hr.30S-90S", + "atmos.rlds.tavg-u-hxy-u.3hr.GLB", + "atmos.rlds.tavg-u-hxy-u.day.GLB", + "atmos.rlus.tavg-u-hxy-u.3hr.GLB", + "atmos.rlus.tavg-u-hxy-u.day.GLB", + "atmos.rsds.tavg-u-hxy-u.1hr.30S-90S", + "atmos.rsds.tavg-u-hxy-u.1hr.GLB", + "atmos.rsds.tavg-u-hxy-u.3hr.GLB", + "atmos.rsus.tavg-u-hxy-u.3hr.GLB", + "atmos.rsus.tavg-u-hxy-u.day.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.1hr.30S-90S", + "atmos.ts.tavg-u-hxy-u.day.GLB", + "atmos.ua.tpt-h100m-hxy-u.1hr.GLB", + "atmos.uas.tpt-h10m-hxy-u.1hr.GLB", + "atmos.va.tpt-h100m-hxy-u.1hr.GLB", + "atmos.vas.tpt-h10m-hxy-u.1hr.GLB", + "atmos.wsg.tmax-h100m-hxy-u.1hr.GLB", + "atmos.wsg.tmax-h10m-hxy-u.1hr.GLB", + "land.areacellr.ti-u-hxy-u.fx.GLB", + "land.dcw.tavg-u-hxy-lnd.day.GLB", + "land.dslw.tavg-u-hxy-lnd.day.GLB", + "land.evspsblpot.tavg-u-hxy-lnd.day.GLB", + "land.evspsblpot.tavg-u-hxy-lnd.mon.GLB", + "land.evspsblsoi.tavg-u-hxy-u.day.GLB", + "land.evspsblveg.tavg-u-hxy-u.day.GLB", + "land.landCoverFrac.tavg-u-hxy-u.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.day.GLB", + "land.mrrob.tavg-u-hxy-lnd.day.GLB", + "land.mrros.tavg-u-hxy-lnd.day.GLB", + "land.mrsfl.tavg-sl-hxy-lnd.day.GLB", + "land.mrsll.tavg-sl-hxy-lnd.day.GLB", + "land.mrso.tavg-u-hxy-lnd.day.GLB", + "land.mrsol.tavg-d10cm-hxy-lnd.day.GLB", + "land.mrsol.tavg-sl-hxy-lnd.day.GLB", + "land.mrsow.tavg-u-hxy-lnd.day.GLB", + "land.mrtws.tavg-u-hxy-lnd.day.GLB", + "land.orog.ti-u-hxy-u.fx.30S-90S", + "land.rivi.tavg-u-hxy-lnd.day.GLB", + "land.rivo.tavg-u-hxy-lnd.day.GLB", + "land.tas.tavg-u-hxy-u.1hr.30S-90S", + "land.tas.tavg-u-hxy-u.1hr.GLB", + "land.wtd.tavg-u-hxy-lnd.day.GLB", + "landIce.snw.tavg-u-hxy-lnd.day.GLB" + ], + "Medium": [ + "atmos.bldep.tavg-u-hxy-u.1hr.GLB", + "atmos.bldep.tmax-u-hxy-u.day.GLB", + "atmos.bldep.tmin-u-hxy-u.day.GLB", + "atmos.hfdsnb.tavg-u-hxy-lnd.day.GLB", + "atmos.hfls.tavg-u-hxy-u.1hr.GLB", + "atmos.hfss.tavg-u-hxy-u.1hr.GLB", + "atmos.hurs.tavg-h2m-hxy-u.1hr.GLB", + "atmos.noaahi2m.tavg-h2m-hxy-u.day.GLB", + "atmos.noaahi2m.tmax-h2m-hxy-u.day.GLB", + "atmos.prrsn.tavg-u-hxy-lnd.day.GLB", + "atmos.prsn.tavg-u-hxy-u.3hr.GLB", + "atmos.prsn.tavg-u-hxy-u.6hr.GLB", + "atmos.prsnc.tavg-u-hxy-lnd.day.GLB", + "atmos.prsnsn.tavg-u-hxy-lnd.day.GLB", + "atmos.ps.tpt-u-hxy-u.1hr.GLB", + "atmos.psl.tpt-u-hxy-u.1hr.GLB", + "atmos.rlds.tavg-u-hxy-u.1hr.GLB", + "atmos.rldscs.tavg-u-hxy-u.day.GLB", + "atmos.rls.tavg-u-hxy-u.day.GLB", + "atmos.rls.tavg-u-hxy-u.mon.GLB", + "atmos.rlus.tavg-u-hxy-u.1hr.GLB", + "atmos.rsdscs.tavg-u-hxy-u.day.GLB", + "atmos.rsdsdiff.tavg-u-hxy-u.1hr.GLB", + "atmos.rsdsdiff.tavg-u-hxy-u.day.GLB", + "atmos.rss.tavg-u-hxy-u.day.GLB", + "atmos.rss.tavg-u-hxy-u.mon.GLB", + "atmos.rsus.tavg-u-hxy-u.1hr.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.1hr.GLB", + "atmos.sfcWind.tmax-h10m-hxy-u.day.GLB", + "atmos.snmsl.tavg-u-hxy-lnd.day.GLB", + "atmos.snrefr.tavg-u-hxy-lnd.day.GLB", + "atmos.snwc.tavg-u-hxy-lnd.day.GLB", + "atmos.ts.tavg-u-hxy-sn.day.GLB", + "atmos.ts.tavg-u-hxy-u.1hr.GLB", + "atmos.wbgt.tavg-h2m-hxy-u.day.GLB", + "atmos.wbgt.tmax-h2m-hxy-u.day.GLB", + "atmos.wsg.tmax-h100m-hxy-u.mon.GLB", + "atmos.wsg.tmax-h10m-hxy-u.mon.GLB", + "atmosChem.flashrate.tavg-u-hxy-u.day.GLB", + "land.depthl.ti-u-hxy-u.fx.GLB", + "land.dgw.tavg-u-hxy-lnd.day.GLB", + "land.drivw.tavg-u-hxy-lnd.day.GLB", + "land.dsn.tavg-u-hxy-lnd.day.GLB", + "land.dsw.tavg-u-hxy-lnd.day.GLB", + "land.esn.tavg-u-hxy-sn.day.GLB", + "land.irrDem.tavg-u-hxy-u.day.GLB", + "land.irrGw.tavg-u-hxy-u.day.GLB", + "land.irrLut.tavg-u-hxy-u.day.GLB", + "land.irrSurf.tavg-u-hxy-u.day.GLB", + "land.mrro.tavg-u-hxy-lnd.3hr.GLB", + "land.mrros.tavg-u-hxy-lnd.3hr.GLB", + "land.mrsol.tpt-d10cm-hxy-lnd.3hr.GLB", + "land.qgwr.tavg-u-hxy-lnd.day.GLB", + "land.rzwc.tavg-u-hxy-lnd.day.GLB", + "land.sftlaf.ti-u-hxy-u.fx.GLB", + "land.sw.tavg-u-hxy-lnd.day.GLB", + "land.sweLut.tavg-u-hxy-multi.mon.GLB", + "land.tsl.tavg-sl-hxy-lnd.day.GLB", + "landIce.agesno.tavg-u-hxy-lnd.mon.GLB", + "landIce.hfdsn.tavg-u-hxy-lnd.day.GLB", + "landIce.hfdsn.tavg-u-hxy-lnd.mon.GLB", + "landIce.lwsnl.tavg-u-hxy-lnd.day.GLB", + "landIce.lwsnl.tavg-u-hxy-lnd.mon.GLB", + "landIce.pflw.tavg-u-hxy-lnd.day.GLB", + "landIce.sbl.tavg-u-hxy-lnd.mon.GLB", + "landIce.sbl.tavg-u-hxy-u.day.GLB", + "landIce.sbl.tavg-u-hxy-u.mon.GLB", + "landIce.snc.tavg-u-hxy-lnd.day.GLB", + "landIce.snd.tavg-u-hxy-lnd.day.GLB", + "landIce.snd.tavg-u-hxy-lnd.mon.GLB", + "landIce.snm.tavg-u-hxy-lnd.day.GLB", + "landIce.snm.tavg-u-hxy-lnd.mon.GLB", + "landIce.sootsn.tavg-u-hxy-lnd.mon.GLB", + "landIce.tpf.tavg-u-hxy-lnd.day.GLB", + "landIce.tsn.tavg-u-hxy-lnd.day.GLB", + "landIce.tsn.tavg-u-hxy-lnd.mon.GLB", + "ocean.friver.tavg-u-hxy-sea.mon.GLB", + "seaIce.prsn.tavg-u-hxy-si.mon.GLB", + "seaIce.sbl.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthsi.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdsnconc.tavg-u-hxy-si.day.GLB", + "seaIce.siitdsnthick.tavg-u-hxy-si.day.GLB", + "seaIce.siitdsnthick.tavg-u-hxy-si.mon.GLB", + "seaIce.sisndmassdyn.tavg-u-hxy-si.mon.GLB", + "seaIce.sisndmasssi.tavg-u-hxy-si.mon.GLB", + "seaIce.sisndmasswind.tavg-u-hxy-si.mon.GLB", + "seaIce.sisnhc.tavg-u-hxy-si.day.GLB", + "seaIce.sisnhc.tavg-u-hxy-si.mon.GLB", + "seaIce.sitempsnic.tavg-u-hxy-si.day.GLB", + "seaIce.sitempsnic.tavg-u-hxy-si.mon.GLB", + "seaIce.snc.tavg-u-hxy-si.mon.GLB", + "seaIce.snd.tavg-u-hxy-sn.day.GLB", + "seaIce.snm.tavg-u-hxy-si.mon.GLB", + "seaIce.snw.tavg-u-hxy-si.mon.GLB" + ], + "Low": [ + "aerosol.abs550aer.tavg-u-hxy-u.mon.GLB", + "aerosol.no2.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.o3.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.sfpm1.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.sfpm10.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.sfpm25.tavg-h2m-hxy-u.1hr.GLB", + "atmos.co2.tavg-h2m-hxy-u.mon.GLB", + "atmos.hurs.tmin-h2m-hxy-crp.day.GLB", + "atmos.pr.tavg-u-hxy-crp.day.GLB", + "atmos.tas.tmax-h2m-hxy-crp.day.GLB", + "atmos.tas.tmin-h2m-hxy-crp.day.GLB", + "atmosChem.emich4.tavg-u-hxy-u.mon.GLB", + "atmosChem.flashrate.tavg-u-hxy-u.mon.GLB", + "land.c3PftFrac.tavg-u-hxy-u.mon.GLB", + "land.c4PftFrac.tavg-u-hxy-u.mon.GLB", + "land.cropFracC3.tavg-u-hxy-u.mon.GLB", + "land.cropFracC4.tavg-u-hxy-u.mon.GLB", + "land.cSoil.tavg-u-hxy-lnd.mon.GLB", + "land.fHarvestToAtmos.tavg-u-hxy-lnd.mon.GLB", + "land.irrLut.tavg-u-hxy-multi.mon.GLB", + "land.lai.tavg-u-hxy-lnd.day.GLB", + "land.pastureFrac.tavg-u-hxy-u.mon.GLB", + "land.pastureFracC3.tavg-u-hxy-u.mon.GLB", + "land.pastureFracC4.tavg-u-hxy-u.mon.GLB" + ] + }, + "hist-1950": { + "Core": [ + "atmos.areacella.ti-u-hxy-u.fx.GLB", + "atmos.cl.tavg-al-hxy-u.mon.GLB", + "atmos.cli.tavg-al-hxy-u.mon.GLB", + "atmos.clivi.tavg-u-hxy-u.mon.GLB", + "atmos.clt.tavg-u-hxy-u.day.GLB", + "atmos.clt.tavg-u-hxy-u.mon.GLB", + "atmos.clw.tavg-al-hxy-u.mon.GLB", + "atmos.clwvi.tavg-u-hxy-u.mon.GLB", + "atmos.evspsbl.tavg-u-hxy-u.mon.GLB", + "atmos.hfls.tavg-u-hxy-u.mon.GLB", + "atmos.hfss.tavg-u-hxy-u.mon.GLB", + "atmos.hur.tavg-p19-hxy-air.mon.GLB", + "atmos.hur.tavg-p19-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.6hr.GLB", + "atmos.hurs.tavg-h2m-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.mon.GLB", + "atmos.hus.tavg-p19-hxy-u.day.GLB", + "atmos.hus.tavg-p19-hxy-u.mon.GLB", + "atmos.huss.tavg-h2m-hxy-u.day.GLB", + "atmos.huss.tavg-h2m-hxy-u.mon.GLB", + "atmos.huss.tpt-h2m-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.1hr.GLB", + "atmos.pr.tavg-u-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.day.GLB", + "atmos.pr.tavg-u-hxy-u.mon.GLB", + "atmos.prc.tavg-u-hxy-u.mon.GLB", + "atmos.prsn.tavg-u-hxy-u.mon.GLB", + "atmos.prw.tavg-u-hxy-u.mon.GLB", + "atmos.ps.tavg-u-hxy-u.day.GLB", + "atmos.ps.tavg-u-hxy-u.mon.GLB", + "atmos.psl.tavg-u-hxy-u.day.GLB", + "atmos.psl.tavg-u-hxy-u.mon.GLB", + "atmos.rlds.tavg-u-hxy-u.mon.GLB", + "atmos.rldscs.tavg-u-hxy-u.mon.GLB", + "atmos.rlus.tavg-u-hxy-u.mon.GLB", + "atmos.rluscs.tavg-u-hxy-u.mon.GLB", + "atmos.rlut.tavg-u-hxy-u.mon.GLB", + "atmos.rlutcs.tavg-u-hxy-u.mon.GLB", + "atmos.rsds.tavg-u-hxy-u.day.GLB", + "atmos.rsds.tavg-u-hxy-u.mon.GLB", + "atmos.rsdscs.tavg-u-hxy-u.mon.GLB", + "atmos.rsdt.tavg-u-hxy-u.mon.GLB", + "atmos.rsus.tavg-u-hxy-u.mon.GLB", + "atmos.rsuscs.tavg-u-hxy-u.mon.GLB", + "atmos.rsut.tavg-u-hxy-u.mon.GLB", + "atmos.rsutcs.tavg-u-hxy-u.mon.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.day.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.mon.GLB", + "atmos.sftlf.ti-u-hxy-u.fx.GLB", + "atmos.ta.tavg-p19-hxy-air.day.GLB", + "atmos.ta.tavg-p19-hxy-air.mon.GLB", + "atmos.ta.tpt-p3-hxy-air.6hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.day.GLB", + "atmos.tas.tavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tmax-h2m-hxy-u.day.GLB", + "atmos.tas.tmaxavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tmin-h2m-hxy-u.day.GLB", + "atmos.tas.tminavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tpt-h2m-hxy-u.3hr.GLB", + "atmos.tauu.tavg-u-hxy-u.mon.GLB", + "atmos.tauv.tavg-u-hxy-u.mon.GLB", + "atmos.ts.tavg-u-hxy-u.mon.GLB", + "atmos.ua.tavg-p19-hxy-air.day.GLB", + "atmos.ua.tavg-p19-hxy-air.mon.GLB", + "atmos.ua.tpt-p3-hxy-air.6hr.GLB", + "atmos.uas.tavg-h10m-hxy-u.day.GLB", + "atmos.uas.tavg-h10m-hxy-u.mon.GLB", + "atmos.uas.tpt-h10m-hxy-u.3hr.GLB", + "atmos.va.tavg-p19-hxy-air.day.GLB", + "atmos.va.tavg-p19-hxy-air.mon.GLB", + "atmos.va.tpt-p3-hxy-air.6hr.GLB", + "atmos.vas.tavg-h10m-hxy-u.day.GLB", + "atmos.vas.tavg-h10m-hxy-u.mon.GLB", + "atmos.vas.tpt-h10m-hxy-u.3hr.GLB", + "atmos.wap.tavg-p19-hxy-air.mon.GLB", + "atmos.wap.tavg-p19-hxy-u.day.GLB", + "atmos.zg.tavg-p19-hxy-air.day.GLB", + "atmos.zg.tavg-p19-hxy-air.mon.GLB", + "land.evspsblsoi.tavg-u-hxy-lnd.mon.GLB", + "land.evspsblveg.tavg-u-hxy-lnd.mon.GLB", + "land.lai.tavg-u-hxy-lnd.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.mon.GLB", + "land.mrros.tavg-u-hxy-lnd.mon.GLB", + "land.mrso.tavg-u-hxy-lnd.mon.GLB", + "land.mrsofc.ti-u-hxy-lnd.fx.GLB", + "land.mrsol.tavg-d10cm-hxy-lnd.mon.GLB", + "land.orog.ti-u-hxy-u.fx.GLB", + "land.rootd.ti-u-hxy-lnd.fx.GLB", + "land.sftgif.ti-u-hxy-u.fx.GLB", + "land.slthick.ti-sl-hxy-lnd.fx.GLB", + "landIce.mrfso.tavg-u-hxy-lnd.mon.GLB", + "landIce.snc.tavg-u-hxy-lnd.mon.GLB", + "landIce.snw.tavg-u-hxy-lnd.mon.GLB", + "ocean.areacello.ti-u-hxy-u.fx.GLB", + "ocean.basin.ti-u-hxy-u.fx.GLB", + "ocean.bigthetao.tavg-ol-hxy-sea.mon.GLB", + "ocean.deptho.ti-u-hxy-sea.fx.GLB", + "ocean.hfds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfgeou.ti-u-hxy-sea.fx.GLB", + "ocean.masscello.tavg-ol-hxy-sea.mon.GLB", + "ocean.masscello.ti-ol-hxy-sea.fx.GLB", + "ocean.mlotst.tavg-u-hxy-sea.mon.GLB", + "ocean.sftof.ti-u-hxy-u.fx.GLB", + "ocean.so.tavg-ol-hxy-sea.mon.GLB", + "ocean.sos.tavg-u-hxy-sea.day.GLB", + "ocean.sos.tavg-u-hxy-sea.mon.GLB", + "ocean.tauuo.tavg-u-hxy-sea.mon.GLB", + "ocean.tauvo.tavg-u-hxy-sea.mon.GLB", + "ocean.thetao.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcello.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcello.ti-ol-hxy-sea.fx.GLB", + "ocean.tos.tavg-u-hxy-sea.day.GLB", + "ocean.tos.tavg-u-hxy-sea.mon.GLB", + "ocean.umo.tavg-ol-hxy-sea.mon.GLB", + "ocean.uo.tavg-ol-hxy-sea.mon.GLB", + "ocean.vmo.tavg-ol-hxy-sea.mon.GLB", + "ocean.vo.tavg-ol-hxy-sea.mon.GLB", + "ocean.wmo.tavg-ol-hxy-sea.mon.GLB", + "ocean.wo.tavg-ol-hxy-sea.mon.GLB", + "ocean.zos.tavg-u-hxy-sea.day.GLB", + "ocean.zos.tavg-u-hxy-sea.mon.GLB", + "ocean.zostoga.tavg-u-hm-sea.mon.GLB", + "seaIce.siconc.tavg-u-hxy-u.day.GLB", + "seaIce.siconc.tavg-u-hxy-u.mon.GLB", + "seaIce.simass.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-si.mon.GLB", + "seaIce.sitimefrac.tavg-u-hxy-sea.mon.GLB", + "seaIce.siu.tavg-u-hxy-si.mon.GLB", + "seaIce.siv.tavg-u-hxy-si.mon.GLB", + "seaIce.snd.tavg-u-hxy-sn.mon.GLB", + "seaIce.ts.tavg-u-hxy-si.mon.GLB" + ], + "High": [ + "aerosol.o3.tmax-h2m-hxy-u.day.GLB", + "aerosol.sfpm1.tavg-h2m-hxy-u.day.GLB", + "aerosol.sfpm10.tavg-h2m-hxy-u.day.GLB", + "aerosol.sfpm25.tavg-h2m-hxy-u.day.GLB", + "atmos.bldep.tpt-u-hxy-u.3hr.GLB", + "atmos.cl.tavg-al-hxy-u.day.GLB", + "atmos.clt.tavg-u-hxy-u.1hr.30S-90S", + "atmos.co2mass.tavg-u-hm-u.mon.GLB", + "atmos.evspsbl.tavg-u-hxy-lnd.day.GLB", + "atmos.hfls.tavg-u-hxy-u.3hr.GLB", + "atmos.hfls.tavg-u-hxy-u.day.GLB", + "atmos.hfss.tavg-u-hxy-u.3hr.GLB", + "atmos.hfss.tavg-u-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.1hr.30S-90S", + "atmos.hurs.tmax-h2m-hxy-u.day.GLB", + "atmos.hurs.tmin-h2m-hxy-u.day.GLB", + "atmos.hurs.tpt-h2m-hxy-u.3hr.GLB", + "atmos.huss.tpt-h2m-hxy-u.1hr.GLB", + "atmos.pfull.tavg-al-hxy-u.day.GLB", + "atmos.pr.tavg-u-hxy-u.1hr.30S-90S", + "atmos.pr.tmax-u-hxy-u.day.GLB", + "atmos.prc.tavg-u-hxy-u.day.GLB", + "atmos.prra.tavg-u-hxy-lnd.day.GLB", + "atmos.prsn.tavg-u-hxy-u.day.GLB", + "atmos.ps.tpt-u-hxy-u.1hr.30S-90S", + "atmos.rlds.tavg-u-hxy-u.1hr.30S-90S", + "atmos.rlds.tavg-u-hxy-u.3hr.GLB", + "atmos.rlds.tavg-u-hxy-u.day.GLB", + "atmos.rlus.tavg-u-hxy-u.3hr.GLB", + "atmos.rlus.tavg-u-hxy-u.day.GLB", + "atmos.rsds.tavg-u-hxy-u.1hr.30S-90S", + "atmos.rsds.tavg-u-hxy-u.1hr.GLB", + "atmos.rsds.tavg-u-hxy-u.3hr.GLB", + "atmos.rsus.tavg-u-hxy-u.3hr.GLB", + "atmos.rsus.tavg-u-hxy-u.day.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.1hr.30S-90S", + "atmos.ts.tavg-u-hxy-u.day.GLB", + "atmos.ua.tpt-h100m-hxy-u.1hr.GLB", + "atmos.uas.tpt-h10m-hxy-u.1hr.GLB", + "atmos.va.tpt-h100m-hxy-u.1hr.GLB", + "atmos.vas.tpt-h10m-hxy-u.1hr.GLB", + "atmos.wsg.tmax-h100m-hxy-u.1hr.GLB", + "atmos.wsg.tmax-h10m-hxy-u.1hr.GLB", + "land.areacellr.ti-u-hxy-u.fx.GLB", + "land.dcw.tavg-u-hxy-lnd.day.GLB", + "land.dslw.tavg-u-hxy-lnd.day.GLB", + "land.evspsblpot.tavg-u-hxy-lnd.day.GLB", + "land.evspsblpot.tavg-u-hxy-lnd.mon.GLB", + "land.evspsblsoi.tavg-u-hxy-u.day.GLB", + "land.evspsblveg.tavg-u-hxy-u.day.GLB", + "land.landCoverFrac.tavg-u-hxy-u.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.day.GLB", + "land.mrrob.tavg-u-hxy-lnd.day.GLB", + "land.mrros.tavg-u-hxy-lnd.day.GLB", + "land.mrsfl.tavg-sl-hxy-lnd.day.GLB", + "land.mrsll.tavg-sl-hxy-lnd.day.GLB", + "land.mrso.tavg-u-hxy-lnd.day.GLB", + "land.mrsol.tavg-d10cm-hxy-lnd.day.GLB", + "land.mrsol.tavg-sl-hxy-lnd.day.GLB", + "land.mrsow.tavg-u-hxy-lnd.day.GLB", + "land.mrtws.tavg-u-hxy-lnd.day.GLB", + "land.orog.ti-u-hxy-u.fx.30S-90S", + "land.rivi.tavg-u-hxy-lnd.day.GLB", + "land.rivo.tavg-u-hxy-lnd.day.GLB", + "land.tas.tavg-u-hxy-u.1hr.30S-90S", + "land.tas.tavg-u-hxy-u.1hr.GLB", + "land.wtd.tavg-u-hxy-lnd.day.GLB", + "landIce.snw.tavg-u-hxy-lnd.day.GLB" + ], + "Medium": [ + "atmos.bldep.tavg-u-hxy-u.1hr.GLB", + "atmos.bldep.tmax-u-hxy-u.day.GLB", + "atmos.bldep.tmin-u-hxy-u.day.GLB", + "atmos.hfdsnb.tavg-u-hxy-lnd.day.GLB", + "atmos.hfls.tavg-u-hxy-u.1hr.GLB", + "atmos.hfss.tavg-u-hxy-u.1hr.GLB", + "atmos.hurs.tavg-h2m-hxy-u.1hr.GLB", + "atmos.noaahi2m.tavg-h2m-hxy-u.day.GLB", + "atmos.noaahi2m.tmax-h2m-hxy-u.day.GLB", + "atmos.prrsn.tavg-u-hxy-lnd.day.GLB", + "atmos.prsn.tavg-u-hxy-u.3hr.GLB", + "atmos.prsn.tavg-u-hxy-u.6hr.GLB", + "atmos.prsnc.tavg-u-hxy-lnd.day.GLB", + "atmos.prsnsn.tavg-u-hxy-lnd.day.GLB", + "atmos.ps.tpt-u-hxy-u.1hr.GLB", + "atmos.psl.tpt-u-hxy-u.1hr.GLB", + "atmos.rlds.tavg-u-hxy-u.1hr.GLB", + "atmos.rldscs.tavg-u-hxy-u.day.GLB", + "atmos.rls.tavg-u-hxy-u.day.GLB", + "atmos.rls.tavg-u-hxy-u.mon.GLB", + "atmos.rlus.tavg-u-hxy-u.1hr.GLB", + "atmos.rsdscs.tavg-u-hxy-u.day.GLB", + "atmos.rsdsdiff.tavg-u-hxy-u.1hr.GLB", + "atmos.rsdsdiff.tavg-u-hxy-u.day.GLB", + "atmos.rss.tavg-u-hxy-u.day.GLB", + "atmos.rss.tavg-u-hxy-u.mon.GLB", + "atmos.rsus.tavg-u-hxy-u.1hr.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.1hr.GLB", + "atmos.sfcWind.tmax-h10m-hxy-u.day.GLB", + "atmos.snmsl.tavg-u-hxy-lnd.day.GLB", + "atmos.snrefr.tavg-u-hxy-lnd.day.GLB", + "atmos.snwc.tavg-u-hxy-lnd.day.GLB", + "atmos.ts.tavg-u-hxy-sn.day.GLB", + "atmos.ts.tavg-u-hxy-u.1hr.GLB", + "atmos.wbgt.tavg-h2m-hxy-u.day.GLB", + "atmos.wbgt.tmax-h2m-hxy-u.day.GLB", + "atmos.wsg.tmax-h100m-hxy-u.mon.GLB", + "atmos.wsg.tmax-h10m-hxy-u.mon.GLB", + "atmosChem.flashrate.tavg-u-hxy-u.day.GLB", + "land.depthl.ti-u-hxy-u.fx.GLB", + "land.dgw.tavg-u-hxy-lnd.day.GLB", + "land.drivw.tavg-u-hxy-lnd.day.GLB", + "land.dsn.tavg-u-hxy-lnd.day.GLB", + "land.dsw.tavg-u-hxy-lnd.day.GLB", + "land.esn.tavg-u-hxy-sn.day.GLB", + "land.irrDem.tavg-u-hxy-u.day.GLB", + "land.irrGw.tavg-u-hxy-u.day.GLB", + "land.irrLut.tavg-u-hxy-u.day.GLB", + "land.irrSurf.tavg-u-hxy-u.day.GLB", + "land.mrro.tavg-u-hxy-lnd.3hr.GLB", + "land.mrros.tavg-u-hxy-lnd.3hr.GLB", + "land.mrsol.tpt-d10cm-hxy-lnd.3hr.GLB", + "land.qgwr.tavg-u-hxy-lnd.day.GLB", + "land.rzwc.tavg-u-hxy-lnd.day.GLB", + "land.sftlaf.ti-u-hxy-u.fx.GLB", + "land.sw.tavg-u-hxy-lnd.day.GLB", + "land.sweLut.tavg-u-hxy-multi.mon.GLB", + "land.tsl.tavg-sl-hxy-lnd.day.GLB", + "landIce.agesno.tavg-u-hxy-lnd.mon.GLB", + "landIce.hfdsn.tavg-u-hxy-lnd.day.GLB", + "landIce.hfdsn.tavg-u-hxy-lnd.mon.GLB", + "landIce.lwsnl.tavg-u-hxy-lnd.day.GLB", + "landIce.lwsnl.tavg-u-hxy-lnd.mon.GLB", + "landIce.pflw.tavg-u-hxy-lnd.day.GLB", + "landIce.sbl.tavg-u-hxy-lnd.mon.GLB", + "landIce.sbl.tavg-u-hxy-u.day.GLB", + "landIce.sbl.tavg-u-hxy-u.mon.GLB", + "landIce.snc.tavg-u-hxy-lnd.day.GLB", + "landIce.snd.tavg-u-hxy-lnd.day.GLB", + "landIce.snd.tavg-u-hxy-lnd.mon.GLB", + "landIce.snm.tavg-u-hxy-lnd.day.GLB", + "landIce.snm.tavg-u-hxy-lnd.mon.GLB", + "landIce.sootsn.tavg-u-hxy-lnd.mon.GLB", + "landIce.tpf.tavg-u-hxy-lnd.day.GLB", + "landIce.tsn.tavg-u-hxy-lnd.day.GLB", + "landIce.tsn.tavg-u-hxy-lnd.mon.GLB", + "ocean.friver.tavg-u-hxy-sea.mon.GLB", + "seaIce.prsn.tavg-u-hxy-si.mon.GLB", + "seaIce.sbl.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthsi.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdsnconc.tavg-u-hxy-si.day.GLB", + "seaIce.siitdsnthick.tavg-u-hxy-si.day.GLB", + "seaIce.siitdsnthick.tavg-u-hxy-si.mon.GLB", + "seaIce.sisndmassdyn.tavg-u-hxy-si.mon.GLB", + "seaIce.sisndmasssi.tavg-u-hxy-si.mon.GLB", + "seaIce.sisndmasswind.tavg-u-hxy-si.mon.GLB", + "seaIce.sisnhc.tavg-u-hxy-si.day.GLB", + "seaIce.sisnhc.tavg-u-hxy-si.mon.GLB", + "seaIce.sitempsnic.tavg-u-hxy-si.day.GLB", + "seaIce.sitempsnic.tavg-u-hxy-si.mon.GLB", + "seaIce.snc.tavg-u-hxy-si.mon.GLB", + "seaIce.snd.tavg-u-hxy-sn.day.GLB", + "seaIce.snm.tavg-u-hxy-si.mon.GLB", + "seaIce.snw.tavg-u-hxy-si.mon.GLB" + ], + "Low": [ + "aerosol.abs550aer.tavg-u-hxy-u.mon.GLB", + "aerosol.no2.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.o3.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.sfpm1.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.sfpm10.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.sfpm25.tavg-h2m-hxy-u.1hr.GLB", + "atmos.co2.tavg-h2m-hxy-u.mon.GLB", + "atmos.hurs.tmin-h2m-hxy-crp.day.GLB", + "atmos.pr.tavg-u-hxy-crp.day.GLB", + "atmos.tas.tmax-h2m-hxy-crp.day.GLB", + "atmos.tas.tmin-h2m-hxy-crp.day.GLB", + "atmosChem.emich4.tavg-u-hxy-u.mon.GLB", + "atmosChem.flashrate.tavg-u-hxy-u.mon.GLB", + "land.c3PftFrac.tavg-u-hxy-u.mon.GLB", + "land.c4PftFrac.tavg-u-hxy-u.mon.GLB", + "land.cropFracC3.tavg-u-hxy-u.mon.GLB", + "land.cropFracC4.tavg-u-hxy-u.mon.GLB", + "land.cSoil.tavg-u-hxy-lnd.mon.GLB", + "land.fHarvestToAtmos.tavg-u-hxy-lnd.mon.GLB", + "land.irrLut.tavg-u-hxy-multi.mon.GLB", + "land.lai.tavg-u-hxy-lnd.day.GLB", + "land.pastureFrac.tavg-u-hxy-u.mon.GLB", + "land.pastureFracC3.tavg-u-hxy-u.mon.GLB", + "land.pastureFracC4.tavg-u-hxy-u.mon.GLB" + ] + }, + "hist-aer": { + "Core": [ + "atmos.areacella.ti-u-hxy-u.fx.GLB", + "atmos.cl.tavg-al-hxy-u.mon.GLB", + "atmos.cli.tavg-al-hxy-u.mon.GLB", + "atmos.clivi.tavg-u-hxy-u.mon.GLB", + "atmos.clt.tavg-u-hxy-u.day.GLB", + "atmos.clt.tavg-u-hxy-u.mon.GLB", + "atmos.clw.tavg-al-hxy-u.mon.GLB", + "atmos.clwvi.tavg-u-hxy-u.mon.GLB", + "atmos.evspsbl.tavg-u-hxy-u.mon.GLB", + "atmos.hfls.tavg-u-hxy-u.mon.GLB", + "atmos.hfss.tavg-u-hxy-u.mon.GLB", + "atmos.hur.tavg-p19-hxy-air.mon.GLB", + "atmos.hur.tavg-p19-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.6hr.GLB", + "atmos.hurs.tavg-h2m-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.mon.GLB", + "atmos.hus.tavg-p19-hxy-u.day.GLB", + "atmos.hus.tavg-p19-hxy-u.mon.GLB", + "atmos.huss.tavg-h2m-hxy-u.day.GLB", + "atmos.huss.tavg-h2m-hxy-u.mon.GLB", + "atmos.huss.tpt-h2m-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.1hr.GLB", + "atmos.pr.tavg-u-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.day.GLB", + "atmos.pr.tavg-u-hxy-u.mon.GLB", + "atmos.prc.tavg-u-hxy-u.mon.GLB", + "atmos.prsn.tavg-u-hxy-u.mon.GLB", + "atmos.prw.tavg-u-hxy-u.mon.GLB", + "atmos.ps.tavg-u-hxy-u.day.GLB", + "atmos.ps.tavg-u-hxy-u.mon.GLB", + "atmos.psl.tavg-u-hxy-u.day.GLB", + "atmos.psl.tavg-u-hxy-u.mon.GLB", + "atmos.rlds.tavg-u-hxy-u.mon.GLB", + "atmos.rldscs.tavg-u-hxy-u.mon.GLB", + "atmos.rlus.tavg-u-hxy-u.mon.GLB", + "atmos.rluscs.tavg-u-hxy-u.mon.GLB", + "atmos.rlut.tavg-u-hxy-u.mon.GLB", + "atmos.rlutcs.tavg-u-hxy-u.mon.GLB", + "atmos.rsds.tavg-u-hxy-u.day.GLB", + "atmos.rsds.tavg-u-hxy-u.mon.GLB", + "atmos.rsdscs.tavg-u-hxy-u.mon.GLB", + "atmos.rsdt.tavg-u-hxy-u.mon.GLB", + "atmos.rsus.tavg-u-hxy-u.mon.GLB", + "atmos.rsuscs.tavg-u-hxy-u.mon.GLB", + "atmos.rsut.tavg-u-hxy-u.mon.GLB", + "atmos.rsutcs.tavg-u-hxy-u.mon.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.day.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.mon.GLB", + "atmos.sftlf.ti-u-hxy-u.fx.GLB", + "atmos.ta.tavg-p19-hxy-air.day.GLB", + "atmos.ta.tavg-p19-hxy-air.mon.GLB", + "atmos.ta.tpt-p3-hxy-air.6hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.day.GLB", + "atmos.tas.tavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tmax-h2m-hxy-u.day.GLB", + "atmos.tas.tmaxavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tmin-h2m-hxy-u.day.GLB", + "atmos.tas.tminavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tpt-h2m-hxy-u.3hr.GLB", + "atmos.tauu.tavg-u-hxy-u.mon.GLB", + "atmos.tauv.tavg-u-hxy-u.mon.GLB", + "atmos.ts.tavg-u-hxy-u.mon.GLB", + "atmos.ua.tavg-p19-hxy-air.day.GLB", + "atmos.ua.tavg-p19-hxy-air.mon.GLB", + "atmos.ua.tpt-p3-hxy-air.6hr.GLB", + "atmos.uas.tavg-h10m-hxy-u.day.GLB", + "atmos.uas.tavg-h10m-hxy-u.mon.GLB", + "atmos.uas.tpt-h10m-hxy-u.3hr.GLB", + "atmos.va.tavg-p19-hxy-air.day.GLB", + "atmos.va.tavg-p19-hxy-air.mon.GLB", + "atmos.va.tpt-p3-hxy-air.6hr.GLB", + "atmos.vas.tavg-h10m-hxy-u.day.GLB", + "atmos.vas.tavg-h10m-hxy-u.mon.GLB", + "atmos.vas.tpt-h10m-hxy-u.3hr.GLB", + "atmos.wap.tavg-p19-hxy-air.mon.GLB", + "atmos.wap.tavg-p19-hxy-u.day.GLB", + "atmos.zg.tavg-p19-hxy-air.day.GLB", + "atmos.zg.tavg-p19-hxy-air.mon.GLB", + "land.evspsblsoi.tavg-u-hxy-lnd.mon.GLB", + "land.evspsblveg.tavg-u-hxy-lnd.mon.GLB", + "land.lai.tavg-u-hxy-lnd.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.mon.GLB", + "land.mrros.tavg-u-hxy-lnd.mon.GLB", + "land.mrso.tavg-u-hxy-lnd.mon.GLB", + "land.mrsofc.ti-u-hxy-lnd.fx.GLB", + "land.mrsol.tavg-d10cm-hxy-lnd.mon.GLB", + "land.orog.ti-u-hxy-u.fx.GLB", + "land.rootd.ti-u-hxy-lnd.fx.GLB", + "land.sftgif.ti-u-hxy-u.fx.GLB", + "land.slthick.ti-sl-hxy-lnd.fx.GLB", + "landIce.mrfso.tavg-u-hxy-lnd.mon.GLB", + "landIce.snc.tavg-u-hxy-lnd.mon.GLB", + "landIce.snw.tavg-u-hxy-lnd.mon.GLB", + "ocean.areacello.ti-u-hxy-u.fx.GLB", + "ocean.basin.ti-u-hxy-u.fx.GLB", + "ocean.bigthetao.tavg-ol-hxy-sea.mon.GLB", + "ocean.deptho.ti-u-hxy-sea.fx.GLB", + "ocean.hfds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfgeou.ti-u-hxy-sea.fx.GLB", + "ocean.masscello.tavg-ol-hxy-sea.mon.GLB", + "ocean.masscello.ti-ol-hxy-sea.fx.GLB", + "ocean.mlotst.tavg-u-hxy-sea.mon.GLB", + "ocean.sftof.ti-u-hxy-u.fx.GLB", + "ocean.so.tavg-ol-hxy-sea.mon.GLB", + "ocean.sos.tavg-u-hxy-sea.day.GLB", + "ocean.sos.tavg-u-hxy-sea.mon.GLB", + "ocean.tauuo.tavg-u-hxy-sea.mon.GLB", + "ocean.tauvo.tavg-u-hxy-sea.mon.GLB", + "ocean.thetao.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcello.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcello.ti-ol-hxy-sea.fx.GLB", + "ocean.tos.tavg-u-hxy-sea.day.GLB", + "ocean.tos.tavg-u-hxy-sea.mon.GLB", + "ocean.umo.tavg-ol-hxy-sea.mon.GLB", + "ocean.uo.tavg-ol-hxy-sea.mon.GLB", + "ocean.vmo.tavg-ol-hxy-sea.mon.GLB", + "ocean.vo.tavg-ol-hxy-sea.mon.GLB", + "ocean.wmo.tavg-ol-hxy-sea.mon.GLB", + "ocean.wo.tavg-ol-hxy-sea.mon.GLB", + "ocean.zos.tavg-u-hxy-sea.day.GLB", + "ocean.zos.tavg-u-hxy-sea.mon.GLB", + "ocean.zostoga.tavg-u-hm-sea.mon.GLB", + "seaIce.siconc.tavg-u-hxy-u.day.GLB", + "seaIce.siconc.tavg-u-hxy-u.mon.GLB", + "seaIce.simass.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-si.mon.GLB", + "seaIce.sitimefrac.tavg-u-hxy-sea.mon.GLB", + "seaIce.siu.tavg-u-hxy-si.mon.GLB", + "seaIce.siv.tavg-u-hxy-si.mon.GLB", + "seaIce.snd.tavg-u-hxy-sn.mon.GLB", + "seaIce.ts.tavg-u-hxy-si.mon.GLB" + ], + "High": [ + "aerosol.abs550aer.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550bc.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550dust.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550no3.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550oa.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550so4.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550ss.tavg-u-hxy-u.mon.GLB", + "aerosol.airmass.tavg-al-hxy-u.mon.GLB", + "aerosol.aoanh.tavg-al-hxy-u.mon.NH", + "aerosol.bry.tavg-p39-hy-air.mon.GLB", + "aerosol.bs550aer.tpt-al-hxy-u.6hr.GLB", + "aerosol.c2h6.tavg-al-hxy-u.mon.GLB", + "aerosol.c3h6.tavg-al-hxy-u.mon.GLB", + "aerosol.c3h8.tavg-al-hxy-u.mon.GLB", + "aerosol.ccldncl.tavg-u-hxy-ccl.mon.GLB", + "aerosol.ccn.tavg-u-hxy-ccl.mon.30S-90S", + "aerosol.ccn.tavg-u-hxy-ccl.mon.GLB", + "aerosol.ccn1.tavg-al-hxy-u.mon.30S-90S", + "aerosol.ccn1.tavg-al-hxy-u.mon.GLB", + "aerosol.ccnp02.tavg-al-hxy-u.mon.30S-90S", + "aerosol.ccnp02.tavg-al-hxy-u.mon.GLB", + "aerosol.cdnc.tavg-al-hxy-u.mon.30S-90S", + "aerosol.cdnc.tavg-al-hxy-u.mon.GLB", + "aerosol.cfc114.tavg-al-hxy-u.mon.GLB", + "aerosol.ch3coch3.tavg-al-hxy-u.mon.GLB", + "aerosol.cheaqpso4.tavg-al-hxy-u.mon.GLB", + "aerosol.chegpso4.tavg-al-hxy-u.mon.GLB", + "aerosol.chepasoa.tavg-u-hxy-u.mon.GLB", + "aerosol.chepsoa.tavg-u-hxy-u.mon.GLB", + "aerosol.cly.tavg-p39-hy-air.mon.GLB", + "aerosol.co.tavg-al-hxy-u.mon.GLB", + "aerosol.co.tavg-h2m-hxy-u.day.GLB", + "aerosol.cod.tavg-u-hxy-u.day.GLB", + "aerosol.cod.tavg-u-hxy-u.mon.30S-90S", + "aerosol.cod.tavg-u-hxy-u.mon.GLB", + "aerosol.conccn.tavg-al-hxy-u.mon.GLB", + "aerosol.conccn.tpt-u-hs-u.3hr.GLB", + "aerosol.drybc.tavg-u-hxy-u.mon.GLB", + "aerosol.drydust.tavg-u-hxy-u.mon.GLB", + "aerosol.dryno3.tavg-u-hxy-u.mon.GLB", + "aerosol.dryo3.tavg-u-hxy-u.mon.GLB", + "aerosol.dryoa.tavg-u-hxy-u.mon.GLB", + "aerosol.dryso2.tavg-u-hxy-u.mon.GLB", + "aerosol.dryso4.tavg-u-hxy-u.mon.GLB", + "aerosol.dryss.tavg-u-hxy-u.mon.GLB", + "aerosol.ec550aer.tavg-al-hxy-u.mon.GLB", + "aerosol.ec550aer.tpt-u-hxy-u.6hr.GLB", + "aerosol.emiaco.tavg-u-hxy-u.mon.GLB", + "aerosol.emianox.tavg-u-hxy-u.mon.GLB", + "aerosol.emiaoa.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbbc.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbch4.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbco.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbdms.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbnh3.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbnox.tavg-u-hxy-u.mon.GLB", + "aerosol.emibboa.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbso2.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbvoc.tavg-u-hxy-u.mon.GLB", + "aerosol.emibc.tavg-u-hxy-u.mon.GLB", + "aerosol.emibvoc.tavg-u-hxy-u.mon.GLB", + "aerosol.emico.tavg-u-hxy-u.mon.GLB", + "aerosol.emidms.tavg-u-hxy-u.mon.30S-90S", + "aerosol.emidms.tavg-u-hxy-u.mon.GLB", + "aerosol.emidust.tavg-u-hxy-u.mon.GLB", + "aerosol.emiisop.tavg-u-hxy-u.mon.GLB", + "aerosol.emilnox.tavg-al-hxy-u.mon.GLB", + "aerosol.eminh3.tavg-u-hxy-u.mon.GLB", + "aerosol.eminox.tavg-u-hxy-u.mon.GLB", + "aerosol.emioa.tavg-u-hxy-u.mon.GLB", + "aerosol.emiso2.tavg-u-hxy-u.mon.GLB", + "aerosol.emiso4.tavg-u-hxy-u.mon.GLB", + "aerosol.emiss.tavg-u-hxy-u.mon.30S-90S", + "aerosol.emiss.tavg-u-hxy-u.mon.GLB", + "aerosol.emivoc.tavg-u-hxy-u.mon.GLB", + "aerosol.h2o.tavg-al-hxy-u.mon.GLB", + "aerosol.h2o.tavg-p39-hy-air.mon.GLB", + "aerosol.hcfc22.tavg-al-hxy-u.mon.GLB", + "aerosol.hcho.tavg-al-hxy-u.mon.GLB", + "aerosol.hcl.tavg-al-hxy-u.mon.GLB", + "aerosol.hcl.tavg-p39-hy-air.mon.GLB", + "aerosol.hfc125.tavg-al-hxy-u.mon.GLB", + "aerosol.hfc134a.tavg-al-hxy-u.mon.GLB", + "aerosol.hno3.tavg-al-hxy-u.mon.GLB", + "aerosol.hno3.tavg-p39-hy-air.mon.GLB", + "aerosol.ho2.tavg-p39-hy-air.mon.GLB", + "aerosol.isop.tavg-al-hxy-u.mon.GLB", + "aerosol.jno2.tavg-al-hxy-u.mon.GLB", + "aerosol.lossch4.tavg-al-hxy-u.mon.GLB", + "aerosol.lossco.tavg-al-hxy-u.mon.GLB", + "aerosol.lossn2o.tavg-al-hxy-u.mon.GLB", + "aerosol.lwp.tavg-u-hxy-u.mon.GLB", + "aerosol.mmraerh2o.tavg-al-hxy-u.mon.GLB", + "aerosol.mmraerh2o.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmraerh2o.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrbc.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrbc.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrbc.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrbc.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrdust.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrdust.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrdust.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrdust.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrnh4.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrnh4.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrnh4.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrnh4.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrno3.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrno3.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrno3.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrno3.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmroa.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmroa.tavg-al-hxy-u.mon.GLB", + "aerosol.mmroa.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmroa.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrpm1.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrpm1.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrpm2p5.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrpm2p5.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrso4.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrso4.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrso4.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrso4.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrsoa.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrsoa.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrsoa.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrss.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrss.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrss.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrss.tpt-h2m-hs-u.3hr.GLB", + "aerosol.nh50.tavg-al-hxy-u.mon.GLB", + "aerosol.no.tavg-al-hxy-u.mon.GLB", + "aerosol.no2.tavg-al-hxy-u.mon.GLB", + "aerosol.no2.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.noy.tavg-p39-hy-air.mon.GLB", + "aerosol.o3.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.o3.tmax-h2m-hxy-u.day.GLB", + "aerosol.o3loss.tavg-al-hxy-u.mon.GLB", + "aerosol.o3prod.tavg-al-hxy-u.mon.GLB", + "aerosol.od443aer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550aer.tavg-u-hxy-u.day.GLB", + "aerosol.od550aer.tavg-u-hxy-u.mon.30S-90S", + "aerosol.od550aer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550aerh2o.tavg-u-hxy-u.mon.GLB", + "aerosol.od550bb.tavg-u-hxy-u.mon.GLB", + "aerosol.od550bc.tavg-u-hxy-u.mon.GLB", + "aerosol.od550csaer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550dust.tavg-u-hxy-u.mon.GLB", + "aerosol.od550lt1aer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550no3.tavg-u-hxy-u.mon.GLB", + "aerosol.od550oa.tavg-u-hxy-u.mon.GLB", + "aerosol.od550so4.tavg-u-hxy-u.mon.GLB", + "aerosol.od550soa.tavg-u-hxy-u.mon.GLB", + "aerosol.od550ss.tavg-u-hxy-u.mon.GLB", + "aerosol.od865aer.tavg-u-hxy-u.mon.GLB", + "aerosol.oh.tavg-al-hxy-u.mon.GLB", + "aerosol.oh.tavg-p39-hy-air.mon.GLB", + "aerosol.pan.tavg-al-hxy-u.mon.GLB", + "aerosol.photo1d.tavg-al-hxy-u.mon.GLB", + "aerosol.pod0.tsum-u-hxy-u.mon.GLB", + "aerosol.reffccwctop.tavg-u-hxy-cl.mon.GLB", + "aerosol.reffclwtop.tavg-u-hxy-cl.mon.30S-90S", + "aerosol.reffclwtop.tavg-u-hxy-cl.mon.GLB", + "aerosol.rluscsaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rlutaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rlutcsaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rsutaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rsutcsaf.tavg-u-hxy-u.mon.GLB", + "aerosol.sfpm1.tavg-h2m-hxy-u.day.GLB", + "aerosol.sfpm10.tavg-al-hxy-u.mon.30S-90S", + "aerosol.sfpm10.tavg-al-hxy-u.mon.GLB", + "aerosol.sfpm10.tavg-h2m-hxy-u.day.GLB", + "aerosol.sfpm25.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.sfpm25.tavg-h2m-hxy-u.day.GLB", + "aerosol.so2.tavg-al-hxy-u.mon.30S-90S", + "aerosol.so2.tavg-al-hxy-u.mon.GLB", + "aerosol.so2.tavg-h2m-hxy-u.day.GLB", + "aerosol.so2.tpt-h2m-hs-u.3hr.GLB", + "aerosol.tatp.tavg-u-hxy-u.mon.GLB", + "aerosol.toz.tavg-u-hxy-u.day.GLB", + "aerosol.toz.tavg-u-hxy-u.mon.GLB", + "aerosol.tropoz.tavg-u-hxy-u.mon.GLB", + "aerosol.ttop.tavg-u-hxy-cl.mon.GLB", + "aerosol.ua.tavg-10hPa-hxy-air.day.GLB", + "aerosol.vt100.tavg-100hPa-hy-air.mon.GLB", + "aerosol.wa.tavg-al-hxy-u.mon.GLB", + "aerosol.wetbc.tavg-u-hxy-u.mon.GLB", + "aerosol.wetdust.tavg-u-hxy-u.mon.GLB", + "aerosol.wetoa.tavg-u-hxy-u.mon.GLB", + "aerosol.wetso2.tavg-u-hxy-u.mon.GLB", + "aerosol.wetso4.tavg-u-hxy-u.mon.GLB", + "aerosol.wetss.tavg-u-hxy-u.mon.GLB", + "aerosol.zg.tavg-10hPa-hxy-air.day.GLB", + "atmos.albisccp.tavg-u-hxy-cl.mon.30S-90S", + "atmos.aod550volso4.tavg-u-hxy-u.mon.GLB", + "atmos.bldep.tavg-u-hxy-u.mon.GLB", + "atmos.bldep.tmax-u-hxy-u.day.GLB", + "atmos.bldep.tmin-u-hxy-u.day.GLB", + "atmos.cl.tavg-al-hxy-u.day.GLB", + "atmos.cl.tavg-al-hxy-u.mon.30S-90S", + "atmos.clc.tavg-al-hxy-u.mon.30S-90S", + "atmos.clc.tavg-al-hxy-u.mon.GLB", + "atmos.clcalipso.tavg-220hPa-hxy-air.mon.30S-90S", + "atmos.clcalipso.tavg-220hPa-hxy-air.mon.GLB", + "atmos.clcalipso.tavg-560hPa-hxy-air.mon.30S-90S", + "atmos.clcalipso.tavg-560hPa-hxy-air.mon.GLB", + "atmos.clcalipso.tavg-840hPa-hxy-air.mon.30S-90S", + "atmos.clcalipso.tavg-840hPa-hxy-air.mon.GLB", + "atmos.clcalipso.tavg-h40-hxy-air.mon.30S-90S", + "atmos.cldnci.tavg-u-hxy-cl.mon.GLB", + "atmos.cldncl.tavg-u-hxy-cl.mon.GLB", + "atmos.cldnvi.tavg-u-hxy-u.day.GLB", + "atmos.cldnvi.tavg-u-hxy-u.mon.GLB", + "atmos.cli.tavg-al-hxy-u.mon.30S-90S", + "atmos.clic.tavg-al-hxy-u.mon.30S-90S", + "atmos.clis.tavg-al-hxy-u.mon.30S-90S", + "atmos.clisccp.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clisccp.tavg-p7c-hxy-air.mon.GLB", + "atmos.clivi.tavg-u-hxy-u.mon.30S-90S", + "atmos.clivimodis.tavg-u-hxy-u.mon.30S-90S", + "atmos.clmodis.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clmodis.tavg-p7c-hxy-air.mon.GLB", + "atmos.clmodisice.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clmodisice.tavg-p7c-hxy-air.mon.GLB", + "atmos.clmodisiceReff.tavg-u-hxy-u.mon.GLB", + "atmos.clmodisliquid.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clmodisliquid.tavg-p7c-hxy-air.mon.GLB", + "atmos.clmodisliquidReff.tavg-u-hxy-u.mon.GLB", + "atmos.cls.tavg-al-hxy-u.mon.30S-90S", + "atmos.clt.tavg-u-hxy-lnd.day.GLB", + "atmos.clt.tavg-u-hxy-u.mon.30S-90S", + "atmos.cltc.tavg-u-hxy-u.mon.GLB", + "atmos.cltcalipso.tavg-u-hxy-u.mon.30S-90S", + "atmos.cltisccp.tavg-u-hxy-u.mon.30S-90S", + "atmos.cltmodis.tavg-u-hxy-u.mon.30S-90S", + "atmos.clw.tavg-al-hxy-u.mon.30S-90S", + "atmos.clwc.tavg-al-hxy-u.mon.30S-90S", + "atmos.clws.tavg-al-hxy-u.mon.30S-90S", + "atmos.clwvi.tavg-u-hxy-u.mon.30S-90S", + "atmos.clwvimodis.tavg-u-hxy-u.mon.30S-90S", + "atmos.co2.tavg-al-hxy-u.mon.GLB", + "atmos.co2.tavg-p19-hxy-air.mon.GLB", + "atmos.co2.tclm-p19-hxy-air.mon.GLB", + "atmos.co2.tclm-u-hm-u.mon.GLB", + "atmos.co23D.tavg-al-hxy-u.mon.GLB", + "atmos.co2mass.tavg-u-hm-u.mon.GLB", + "atmos.dmc.tavg-alh-hxy-u.mon.30S-90S", + "atmos.edt.tavg-al-hxy-u.mon.30S-90S", + "atmos.evspsbl.tavg-u-hxy-lnd.day.GLB", + "atmos.evu.tavg-al-hxy-u.mon.30S-90S", + "atmos.fco2antt.tavg-u-hxy-u.mon.GLB", + "atmos.fco2fos.tavg-u-hxy-u.mon.GLB", + "atmos.fco2nat.tavg-u-hxy-u.mon.GLB", + "atmos.hfls.tavg-u-hxy-u.day.GLB", + "atmos.hfls.tavg-u-hxy-u.mon.30S-90S", + "atmos.hfss.tavg-u-hxy-u.day.GLB", + "atmos.hfss.tavg-u-hxy-u.mon.30S-90S", + "atmos.hur.tavg-al-hxy-u.mon.30S-90S", + "atmos.hur.tavg-al-hxy-u.mon.GLB", + "atmos.hur.tavg-p19-hxy-air.mon.30S-90S", + "atmos.hurs.tavg-h2m-hxy-u.mon.30S-90S", + "atmos.hurs.tmax-h2m-hxy-u.day.GLB", + "atmos.hurs.tmin-h2m-hxy-u.day.GLB", + "atmos.hurs.tpt-h2m-hxy-u.3hr.GLB", + "atmos.hus.tavg-al-hxy-u.mon.30S-90S", + "atmos.hus.tavg-al-hxy-u.mon.GLB", + "atmos.hus.tavg-p19-hxy-u.mon.30S-90S", + "atmos.hus.tpt-al-hxy-u.6hr.GLB", + "atmos.hus.tpt-p7h-hxy-air.6hr.GLB", + "atmos.huss.tavg-h2m-hxy-u.mon.30S-90S", + "atmos.huss.tpt-h2m-hxy-u.1hr.GLB", + "atmos.intuaw.tpt-u-hxy-u.6hr.GLB", + "atmos.intvaw.tpt-u-hxy-u.6hr.GLB", + "atmos.loadbc.tavg-u-hxy-u.day.GLB", + "atmos.loadoa.tavg-u-hxy-u.day.GLB", + "atmos.loadpoa.tavg-u-hxy-u.day.GLB", + "atmos.loadso4.tavg-u-hxy-u.mon.GLB", + "atmos.mc.tavg-alh-hxy-u.mon.GLB", + "atmos.mcd.tavg-alh-hxy-u.mon.30S-90S", + "atmos.mcu.tavg-alh-hxy-u.mon.30S-90S", + "atmos.mcu.tavg-alh-hxy-u.mon.GLB", + "atmos.pctisccp.tavg-u-hxy-cl.mon.30S-90S", + "atmos.pfull.tavg-al-hxy-u.mon.GLB", + "atmos.pfull.tclm-al-hxy-u.mon.30S-90S", + "atmos.phalf.tavg-alh-hxy-u.mon.GLB", + "atmos.pr.tavg-u-hxy-u.mon.30S-90S", + "atmos.pr.tmax-u-hxy-u.day.GLB", + "atmos.pr.tmax-u-hxy-u.mon.GLB", + "atmos.pr.tpt-u-hxy-u.6hr.GLB", + "atmos.prc.tavg-u-hxy-u.mon.30S-90S", + "atmos.prra.tavg-u-hxy-lnd.day.GLB", + "atmos.prra.tavg-u-hxy-u.mon.30S-90S", + "atmos.prra.tavg-u-hxy-u.mon.GLB", + "atmos.prsn.tavg-u-hxy-u.3hr.GLB", + "atmos.prsn.tavg-u-hxy-u.day.GLB", + "atmos.prsn.tavg-u-hxy-u.mon.30S-90S", + "atmos.prw.tavg-u-hxy-u.day.GLB", + "atmos.prw.tavg-u-hxy-u.mon.30S-90S", + "atmos.prw.tpt-u-hxy-u.6hr.GLB", + "atmos.ps.tavg-u-hxy-u.1hr.GLB", + "atmos.ps.tavg-u-hxy-u.mon.30S-90S", + "atmos.ps.tpt-u-hxy-u.6hr.GLB", + "atmos.psl.tavg-u-hxy-u.mon.30S-90S", + "atmos.psl.tpt-u-hxy-u.1hr.GLB", + "atmos.psl.tpt-u-hxy-u.6hr.GLB", + "atmos.ptp.tavg-u-hxy-u.mon.GLB", + "atmos.reffcclwtop.tavg-u-hxy-ccl.mon.GLB", + "atmos.reffclic.tavg-al-hxy-ccl.mon.30S-90S", + "atmos.reffclis.tavg-al-hxy-scl.mon.30S-90S", + "atmos.reffclwc.tavg-al-hxy-ccl.mon.30S-90S", + "atmos.reffclws.tavg-al-hxy-scl.mon.30S-90S", + "atmos.reffsclwtop.tavg-u-hxy-scl.mon.GLB", + "atmos.rld.tavg-alh-hxy-u.mon.GLB", + "atmos.rld4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rldcs.tavg-alh-hxy-u.mon.GLB", + "atmos.rldcs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rlds.tavg-u-hxy-u.1hr.GLB", + "atmos.rlds.tavg-u-hxy-u.3hr.GLB", + "atmos.rlds.tavg-u-hxy-u.day.GLB", + "atmos.rlds.tavg-u-hxy-u.mon.30S-90S", + "atmos.rldscs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rls.tavg-u-hxy-u.mon.GLB", + "atmos.rlu.tavg-alh-hxy-u.mon.GLB", + "atmos.rlu4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rlucs.tavg-alh-hxy-u.mon.GLB", + "atmos.rlucs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rlus.tavg-u-hxy-u.day.GLB", + "atmos.rlus.tavg-u-hxy-u.mon.30S-90S", + "atmos.rlut.tavg-u-hxy-u.day.GLB", + "atmos.rlut.tavg-u-hxy-u.mon.30S-90S", + "atmos.rlut4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rlutcs.tavg-u-hxy-u.day.GLB", + "atmos.rlutcs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rlutcs4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rsd.tavg-alh-hxy-u.mon.GLB", + "atmos.rsd4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsdcs.tavg-alh-hxy-u.mon.GLB", + "atmos.rsdcs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsds.tavg-u-hxy-u.1hr.GLB", + "atmos.rsds.tavg-u-hxy-u.3hr.GLB", + "atmos.rsds.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsdscs.tavg-u-hxy-u.day.GLB", + "atmos.rsdscs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsdt.tavg-u-hxy-u.day.GLB", + "atmos.rsdt.tavg-u-hxy-u.mon.30S-90S", + "atmos.rss.tavg-u-hxy-u.mon.GLB", + "atmos.rsu.tavg-alh-hxy-u.mon.GLB", + "atmos.rsu4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsucs.tavg-alh-hxy-u.mon.GLB", + "atmos.rsucs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsus.tavg-u-hxy-u.day.GLB", + "atmos.rsus.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsuscs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsut.tavg-u-hxy-u.day.GLB", + "atmos.rsut.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsut4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rsutcs.tavg-u-hxy-u.day.GLB", + "atmos.rsutcs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsutcs4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rtmt.tavg-u-hxy-u.mon.GLB", + "atmos.rv850.tpt-850hPa-hxy-air.6hr.GLB", + "atmos.scldncl.tavg-u-hxy-scl.mon.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.mon.30S-90S", + "atmos.sfcWind.tmax-h10m-hxy-u.day.GLB", + "atmos.sfcWind.tmaxavg-h10m-hxy-u.mon.GLB", + "atmos.ta.tavg-700hPa-hxy-air.day.GLB", + "atmos.ta.tavg-850hPa-hxy-air.day.GLB", + "atmos.ta.tavg-al-hxy-u.mon.30S-90S", + "atmos.ta.tavg-al-hxy-u.mon.GLB", + "atmos.ta.tavg-p19-hxy-air.mon.30S-90S", + "atmos.ta.tavg-p39-hy-air.mon.GLB", + "atmos.ta.tpt-al-hxy-u.6hr.GLB", + "atmos.ta.tpt-p5u-hxy-u.6hr.GLB", + "atmos.ta.tpt-p7h-hxy-air.6hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.1hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.mon.30S-90S", + "atmos.tas.tmaxavg-h2m-hxy-u.mon.30S-90S", + "atmos.tas.tminavg-h2m-hxy-u.mon.30S-90S", + "atmos.tnt.tavg-al-hxy-u.mon.GLB", + "atmos.tntrl.tavg-al-hxy-u.mon.GLB", + "atmos.tntrs.tavg-al-hxy-u.mon.GLB", + "atmos.ts.tavg-u-hxy-u.mon.30S-90S", + "atmos.ts.tpt-u-hxy-u.3hr.GLB", + "atmos.ts.tpt-u-hxy-u.6hr.GLB", + "atmos.ua.tavg-al-hxy-u.mon.GLB", + "atmos.ua.tavg-p19-hxy-air.mon.30S-90S", + "atmos.ua.tavg-p39-hy-air.mon.GLB", + "atmos.ua.tpt-al-hxy-u.6hr.GLB", + "atmos.ua.tpt-h100m-hxy-u.1hr.GLB", + "atmos.ua.tpt-p5u-hxy-air.6hr.GLB", + "atmos.ua.tpt-p7h-hxy-air.6hr.GLB", + "atmos.uas.tavg-h10m-hxy-u.mon.30S-90S", + "atmos.uas.tpt-h10m-hxy-u.1hr.GLB", + "atmos.uas.tpt-h10m-hxy-u.6hr.GLB", + "atmos.va.tavg-al-hxy-u.mon.GLB", + "atmos.va.tavg-p19-hxy-air.mon.30S-90S", + "atmos.va.tavg-p39-hy-air.mon.GLB", + "atmos.va.tpt-al-hxy-u.6hr.GLB", + "atmos.va.tpt-h100m-hxy-u.1hr.GLB", + "atmos.va.tpt-p5u-hxy-air.6hr.GLB", + "atmos.va.tpt-p7h-hxy-air.6hr.GLB", + "atmos.vas.tavg-h10m-hxy-u.mon.30S-90S", + "atmos.vas.tpt-h10m-hxy-u.1hr.GLB", + "atmos.vas.tpt-h10m-hxy-u.6hr.GLB", + "atmos.wap.tavg-p19-hxy-air.mon.30S-90S", + "atmos.wsg.tmax-h100m-hxy-u.1hr.GLB", + "atmos.wsg.tmax-h10m-hxy-u.1hr.GLB", + "atmos.zg.tavg-1000hPa-hxy-air.day.GLB", + "atmos.zg.tavg-500hPa-hxy-air.day.GLB", + "atmos.zg.tavg-al-hxy-u.mon.GLB", + "atmos.zg.tavg-p19-hxy-air.mon.30S-90S", + "atmos.zg.tavg-p39-hy-air.mon.GLB", + "atmos.zg.tpt-500hPa-hxy-air.6hr.GLB", + "atmos.zg.tpt-al-hxy-u.6hr.GLB", + "atmos.zg.tpt-p3-hxy-air.6hr.GLB", + "atmos.zg.tpt-p7h-hxy-air.6hr.GLB", + "atmos.ztp.tavg-u-hxy-u.mon.GLB", + "atmosChem.c2h4.tavg-al-hxy-u.mon.GLB", + "atmosChem.c2h5oh.tavg-al-hxy-u.mon.GLB", + "atmosChem.c4h10.tavg-al-hxy-u.mon.GLB", + "atmosChem.cfc11.tavg-u-hm-u.mon.GLB", + "atmosChem.cfc113.tavg-u-hm-u.mon.GLB", + "atmosChem.cfc12.tavg-u-hm-u.mon.GLB", + "atmosChem.ch3oh.tavg-al-hxy-u.mon.GLB", + "atmosChem.ch4.tavg-al-hxy-u.mon.GLB", + "atmosChem.ch4.tavg-p39-hy-air.mon.GLB", + "atmosChem.ch4losssoil.tavg-u-hxy-u.mon.GLB", + "atmosChem.ch4ref.ti-al-hxy-u.fx.GLB", + "atmosChem.chegph2oo1d.tavg-al-hxy-u.mon.GLB", + "atmosChem.chepnh4.tavg-al-hxy-u.mon.GLB", + "atmosChem.chepno3.tavg-al-hxy-u.mon.GLB", + "atmosChem.dms.tavg-al-hxy-u.mon.30S-90S", + "atmosChem.dms.tavg-al-hxy-u.mon.GLB", + "atmosChem.do3chm.tavg-al-hxy-u.mon.GLB", + "atmosChem.dryh2.tavg-u-hxy-u.mon.GLB", + "atmosChem.dryhno3.tavg-u-hxy-u.mon.GLB", + "atmosChem.drynh3.tavg-u-hxy-u.mon.GLB", + "atmosChem.drynh4.tavg-u-hxy-u.mon.GLB", + "atmosChem.drynoy.tavg-u-hxy-u.mon.GLB", + "atmosChem.e90inst.tpt-al-hxy-u.mon.GLB", + "atmosChem.emiach4.tavg-u-hxy-u.mon.GLB", + "atmosChem.emiavnox.tavg-al-hxy-u.mon.GLB", + "atmosChem.emic2h4.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic2h5oh.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic2h6.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic3h6.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic3h8.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic4h10.tavg-u-hxy-u.mon.GLB", + "atmosChem.emich3oh.tavg-u-hxy-u.mon.GLB", + "atmosChem.emich4.tavg-u-hxy-u.mon.GLB", + "atmosChem.emih2.tavg-u-hxy-u.mon.GLB", + "atmosChem.emilkch4.tavg-u-hxy-u.mon.GLB", + "atmosChem.h2.tavg-al-hxy-u.mon.GLB", + "atmosChem.h2loss.tavg-al-hxy-u.mon.GLB", + "atmosChem.h2prod.tavg-al-hxy-u.mon.GLB", + "atmosChem.hcfc22.tavg-u-hm-u.mon.GLB", + "atmosChem.meanage.tavg-al-hxy-u.mon.GLB", + "atmosChem.meanage.tavg-p39-hy-air.mon.GLB", + "atmosChem.n2o.tavg-al-hxy-u.mon.GLB", + "atmosChem.n2o.tavg-p39-hy-air.mon.GLB", + "atmosChem.o3.tavg-al-hxy-u.mon.GLB", + "atmosChem.o3.tavg-p19-hxy-air.mon.GLB", + "atmosChem.o3.tavg-p39-hy-air.mon.GLB", + "atmosChem.o3.tpt-al-hxy-u.mon.GLB", + "atmosChem.o3ref.tclm-al-hxy-u.fx.GLB", + "atmosChem.o3ref.ti-al-hxy-u.fx.GLB", + "atmosChem.o3ste.tavg-al-hxy-u.mon.GLB", + "atmosChem.rlutch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rlutcsch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rlutcso3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rluto3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsutch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsutcsch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsutcso3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsuto3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.stratch4loss.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropch4loss.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropch4lossoh.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropdo3chm.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropo3ste.tavg-al-hxy-u.mon.GLB", + "atmosChem.wethno3.tavg-al-hxy-u.mon.GLB", + "atmosChem.wetnh3.tavg-u-hxy-u.mon.GLB", + "atmosChem.wetnh4.tavg-u-hxy-u.mon.GLB", + "atmosChem.wetno3.tavg-al-hxy-u.mon.GLB", + "atmosChem.wetnoy.tavg-u-hxy-u.mon.GLB", + "land.albc.tavg-u-hxy-veg.mon.GLB", + "land.areacellr.ti-u-hxy-u.fx.GLB", + "land.baresoilFrac.tavg-u-hxy-u.mon.GLB", + "land.burntFractionAll.tavg-u-hxy-u.mon.GLB", + "land.cGeologicStorage.tavg-u-hxy-u.mon.GLB", + "land.cLand.tavg-u-hxy-lnd.mon.GLB", + "land.cLeaf.tavg-u-hxy-lnd.mon.GLB", + "land.cLitter.tavg-u-hxy-lnd.mon.GLB", + "land.cnc.tavg-u-hxy-u.mon.GLB", + "land.cProduct.tavg-u-hxy-lnd.mon.GLB", + "land.cRoot.tavg-u-hxy-lnd.mon.GLB", + "land.cropFrac.tavg-u-hxy-u.mon.GLB", + "land.cSoil.tavg-d100cm-hxy-lnd.mon.GLB", + "land.cSoil.tavg-u-hxy-lnd.mon.GLB", + "land.cStem.tavg-u-hxy-lnd.mon.GLB", + "land.cVeg.tavg-u-hxy-lnd.mon.GLB", + "land.dcw.tavg-u-hxy-lnd.day.GLB", + "land.dslw.tavg-u-hxy-lnd.day.GLB", + "land.evspsblpot.tavg-u-hxy-lnd.day.GLB", + "land.evspsblpot.tavg-u-hxy-lnd.mon.GLB", + "land.evspsblsoi.tavg-u-hxy-u.day.GLB", + "land.evspsblveg.tavg-u-hxy-u.day.GLB", + "land.fAnthDisturb.tavg-u-hxy-lnd.mon.GLB", + "land.fBNF.tavg-u-hxy-lnd.mon.GLB", + "land.fCLandToOcean.tavg-u-hxy-lnd.mon.GLB", + "land.fDeforestToAtmos.tavg-u-hxy-lnd.mon.GLB", + "land.fDeforestToProduct.tavg-u-hxy-lnd.mon.GLB", + "land.fFire.tavg-u-hxy-lnd.mon.GLB", + "land.fFireAll.tavg-u-hxy-lnd.mon.GLB", + "land.fFireNat.tavg-u-hxy-lnd.mon.GLB", + "land.fHarvestToAtmos.tavg-u-hxy-lnd.mon.GLB", + "land.fHarvestToGeologicStorage.tavg-u-hxy-lnd.mon.GLB", + "land.fHarvestToProduct.tavg-u-hxy-lnd.mon.GLB", + "land.fLitterSoil.tavg-u-hxy-lnd.mon.GLB", + "land.fLuc.tavg-u-hxy-lnd.mon.GLB", + "land.fN2O.tavg-u-hxy-lnd.mon.GLB", + "land.fNAnthDisturb.tavg-u-hxy-lnd.mon.GLB", + "land.fNdep.tavg-u-hxy-lnd.mon.GLB", + "land.fNfert.tavg-u-hxy-lnd.mon.GLB", + "land.fNgas.tavg-u-hxy-lnd.mon.GLB", + "land.fNgasFire.tavg-u-hxy-lnd.mon.GLB", + "land.fNLandToOcean.tavg-u-hxy-lnd.mon.GLB", + "land.fNleach.tavg-u-hxy-lnd.mon.GLB", + "land.fNLitterSoil.tavg-u-hxy-lnd.mon.GLB", + "land.fNloss.tavg-u-hxy-lnd.mon.GLB", + "land.fNnetmin.tavg-u-hxy-lnd.mon.GLB", + "land.fNOx.tavg-u-hxy-lnd.mon.GLB", + "land.fNProduct.tavg-u-hxy-lnd.mon.GLB", + "land.fNup.tavg-u-hxy-lnd.mon.GLB", + "land.fNVegLitter.tavg-u-hxy-lnd.mon.GLB", + "land.fNVegSoil.tavg-u-hxy-lnd.mon.GLB", + "land.fProductDecomp.tavg-u-hxy-lnd.mon.GLB", + "land.fVegLitter.tavg-u-hxy-lnd.mon.GLB", + "land.fVegSoil.tavg-u-hxy-lnd.mon.GLB", + "land.gpp.tavg-u-hxy-lnd.mon.GLB", + "land.grassFrac.tavg-u-hxy-u.mon.GLB", + "land.landCoverFrac.tavg-u-hxy-u.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.day.GLB", + "land.mrrob.tavg-u-hxy-lnd.day.GLB", + "land.mrros.tavg-u-hxy-lnd.day.GLB", + "land.mrsfl.tavg-sl-hxy-lnd.day.GLB", + "land.mrsfl.tavg-sl-hxy-lnd.mon.GLB", + "land.mrsll.tavg-sl-hxy-lnd.day.GLB", + "land.mrsll.tavg-sl-hxy-lnd.mon.GLB", + "land.mrso.tavg-u-hxy-lnd.day.GLB", + "land.mrsol.tavg-d10cm-hxy-lnd.day.GLB", + "land.mrsol.tavg-sl-hxy-lnd.day.GLB", + "land.mrsol.tavg-sl-hxy-lnd.mon.GLB", + "land.mrsow.tavg-u-hxy-lnd.day.GLB", + "land.mrtws.tavg-u-hxy-lnd.day.GLB", + "land.mrtws.tavg-u-hxy-lnd.mon.GLB", + "land.nbp.tavg-u-hxy-lnd.mon.GLB", + "land.nep.tavg-u-hxy-lnd.mon.GLB", + "land.nLand.tavg-u-hxy-lnd.mon.GLB", + "land.nLitter.tavg-u-hxy-lnd.mon.GLB", + "land.nMineral.tavg-u-hxy-lnd.mon.GLB", + "land.npp.tavg-u-hxy-lnd.mon.GLB", + "land.nProduct.tavg-u-hxy-lnd.mon.GLB", + "land.nSoil.tavg-u-hxy-lnd.mon.GLB", + "land.nVeg.tavg-u-hxy-lnd.mon.GLB", + "land.pastureFrac.tavg-u-hxy-u.mon.GLB", + "land.prveg.tavg-u-hxy-lnd.mon.GLB", + "land.ra.tavg-u-hxy-lnd.mon.GLB", + "land.residualFrac.tavg-u-hxy-u.mon.GLB", + "land.rh.tavg-u-hxy-lnd.mon.GLB", + "land.rivi.tavg-u-hxy-lnd.day.GLB", + "land.rivo.tavg-u-hxy-lnd.day.GLB", + "land.rsds.tavg-u-hxy-sn.mon.GLB", + "land.rsus.tavg-u-hxy-sn.mon.GLB", + "land.shrubFrac.tavg-u-hxy-u.mon.GLB", + "land.tas.tavg-u-hxy-u.1hr.GLB", + "land.tran.tavg-u-hxy-lnd.mon.GLB", + "land.treeFrac.tavg-u-hxy-u.mon.GLB", + "land.tsl.tavg-sl-hxy-lnd.mon.GLB", + "land.tslsi.tavg-u-hxy-u.day.GLB", + "land.vegFrac.tavg-u-hxy-u.mon.GLB", + "land.vegHeight.tavg-u-hxy-tree.mon.GLB", + "land.vegHeight.tavg-u-hxy-veg.mon.GLB", + "land.wetlandCH4.tavg-u-hxy-lnd.mon.GLB", + "land.wtd.tavg-u-hxy-lnd.day.GLB", + "landIce.pflw.tavg-u-hxy-lnd.mon.GLB", + "landIce.snd.tavg-u-hxy-lnd.mon.GLB", + "landIce.snm.tavg-u-hxy-lnd.mon.GLB", + "landIce.snw.tavg-u-hxy-lnd.day.GLB", + "landIce.sootsn.tavg-u-hxy-lnd.mon.GLB", + "landIce.tpf.tavg-u-hxy-lnd.mon.GLB", + "ocean.absscint.tavg-op4-hxy-sea.mon.GLB", + "ocean.agessc.tavg-ol-hxy-sea.mon.GLB", + "ocean.bigthetao.tavg-ol-hm-sea.mon.GLB", + "ocean.bigthetao.tavg-ol-hxy-sea.dec.GLB", + "ocean.bigthetao.tavg-op20bar-hxy-sea.day.GLB", + "ocean.chcint.tavg-op4-hxy-sea.mon.GLB", + "ocean.ficeberg.tavg-ol-hxy-sea.mon.GLB", + "ocean.friver.tavg-u-hxy-sea.mon.GLB", + "ocean.hfbasin.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpmadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpmdiff.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpsmadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfds.tavg-u-hxy-sea.mon.30S-90S", + "ocean.hfx.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfx.tavg-u-hxy-sea.day.GLB", + "ocean.hfx.tavg-u-hxy-sea.mon.GLB", + "ocean.hfy.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfy.tavg-u-hxy-sea.day.GLB", + "ocean.hfy.tavg-u-hxy-sea.mon.GLB", + "ocean.htovgyre.tavg-u-hyb-sea.mon.GLB", + "ocean.htovovrt.tavg-u-hyb-sea.mon.GLB", + "ocean.masscello.tavg-ol-hxy-sea.dec.GLB", + "ocean.masso.tavg-u-hm-sea.dec.GLB", + "ocean.masso.tavg-u-hm-sea.mon.GLB", + "ocean.mlotst.tavg-u-hxy-sea.day.GLB", + "ocean.mlotst.tavg-u-hxy-sea.mon.30S-90S", + "ocean.mlotst.tmax-u-hxy-sea.mon.GLB", + "ocean.mlotst.tmin-u-hxy-sea.mon.GLB", + "ocean.mpw.tavg-u-hxy-sea.mon.GLB", + "ocean.mpw.tpt-u-hxy-sea.3hr.GLB", + "ocean.mpwswell.tavg-u-hxy-sea.mon.GLB", + "ocean.mpwswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.mpwwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.mpwwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.msftbarot.tavg-u-hxy-sea.mon.GLB", + "ocean.msftm.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftm.tavg-rho-hyb-sea.mon.GLB", + "ocean.msfty.tavg-ol-ht-sea.mon.GLB", + "ocean.msfty.tavg-rho-ht-sea.mon.GLB", + "ocean.obvfsq.tavg-ol-hxy-sea.mon.GLB", + "ocean.pbo.tavg-u-hxy-sea.mon.GLB", + "ocean.pfscint.tavg-op4-hxy-sea.mon.GLB", + "ocean.phcint.tavg-op4-hxy-sea.mon.GLB", + "ocean.pso.tavg-u-hxy-sea.mon.GLB", + "ocean.scint.tavg-op4-hxy-sea.mon.GLB", + "ocean.sduo.tavg-u-hxy-sea.mon.GLB", + "ocean.sduo.tpt-u-hxy-sea.3hr.GLB", + "ocean.sdvo.tavg-u-hxy-sea.mon.GLB", + "ocean.sdvo.tpt-u-hxy-sea.3hr.GLB", + "ocean.sfx.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfx.tavg-u-hxy-sea.mon.GLB", + "ocean.sfy.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfy.tavg-u-hxy-sea.mon.GLB", + "ocean.sltbasin.tavg-u-hyb-sea.mon.GLB", + "ocean.sltovgyre.tavg-u-hyb-sea.mon.GLB", + "ocean.sltovovrt.tavg-u-hyb-sea.mon.GLB", + "ocean.so.tavg-ol-hm-sea.mon.GLB", + "ocean.so.tavg-ol-hxy-sea.dec.GLB", + "ocean.so.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.sob.tavg-u-hxy-sea.mon.GLB", + "ocean.sos.tavg-u-hm-sea.mon.30S-90S", + "ocean.sos.tavg-u-hm-sea.mon.GLB", + "ocean.swh.tavg-u-hxy-sea.mon.GLB", + "ocean.swh.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhmax.tmax-u-hxy-sea.mon.GLB", + "ocean.swhmax.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhswell.tavg-u-hxy-sea.mon.GLB", + "ocean.swhswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.swhwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.t20d.tavg-u-hxy-sea.mon.GLB", + "ocean.tauuo.tavg-u-hxy-sea.3hr.GLB", + "ocean.tauuo.tavg-u-hxy-sea.dec.GLB", + "ocean.tauvo.tavg-u-hxy-sea.3hr.GLB", + "ocean.tauvo.tavg-u-hxy-sea.dec.GLB", + "ocean.thetao.tavg-d2000m-hxy-sea.mon.GLB", + "ocean.thetao.tavg-d300m-hxy-sea.mon.GLB", + "ocean.thetao.tavg-d700m-hxy-sea.mon.GLB", + "ocean.thetao.tavg-ol-hm-sea.mon.GLB", + "ocean.thetao.tavg-ol-hxy-sea.dec.GLB", + "ocean.thetao.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.thetao.tavg-op20bar-hxy-sea.day.GLB", + "ocean.thetaot.tavg-u-hxy-sea.mon.GLB", + "ocean.thkcello.tavg-ol-hxy-sea.dec.GLB", + "ocean.tob.tavg-u-hxy-sea.mon.GLB", + "ocean.tos.tavg-u-hm-sea.mon.GLB", + "ocean.tos.tavg-u-hxy-sea.mon.30S-90S", + "ocean.tos.tpt-u-hxy-sea.3hr.GLB", + "ocean.tossq.tavg-u-hxy-sea.day.GLB", + "ocean.umo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.uo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.uos.tavg-u-hxy-sea.day.GLB", + "ocean.vmo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.vo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.volcello.tavg-ol-hxy-sea.dec.GLB", + "ocean.volcello.tavg-ol-hxy-sea.mon.GLB", + "ocean.volcello.tavg-ol-hxy-sea.yr.GLB", + "ocean.volcello.ti-ol-hxy-sea.fx.GLB", + "ocean.volo.tavg-u-hm-sea.dec.GLB", + "ocean.volo.tavg-u-hm-sea.mon.GLB", + "ocean.vos.tavg-u-hxy-sea.day.GLB", + "ocean.vsf.tavg-u-hxy-sea.mon.GLB", + "ocean.wdir.tavg-u-hxy-sea.mon.GLB", + "ocean.wdir.tpt-u-hxy-sea.3hr.GLB", + "ocean.wdirswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wdirswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wdirwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wdirwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.wfcorr.tavg-u-hxy-sea.mon.GLB", + "ocean.wfo.tavg-u-hxy-sea.mon.GLB", + "ocean.wmo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.wo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.wpdir.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdir.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpdirswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdirswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpdirwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdirwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpp.tavg-u-hxy-sea.mon.GLB", + "ocean.wpp.tpt-u-hxy-sea.3hr.GLB", + "ocean.wppswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wppswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wppwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wppwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.zfullo.tavg-ol-hxy-sea.yr.GLB", + "ocean.zos.tavg-u-hxy-sea.mon.30S-90S", + "ocean.zossq.tavg-u-hxy-sea.mon.GLB", + "ocean.zostoga.tavg-u-hm-sea.day.GLB", + "ocnBgchem.bacc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.calc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chl.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chl.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.chl.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chlcalc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chldiat.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chldiat.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chldiaz.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chldiaz.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chlmisc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chlmisc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chlpico.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chlpico.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.detoc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dfe.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.dfe.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.dfe.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissic.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.dissic.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissoc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dmso.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.expc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.expcalc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.fgco2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fsfe.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fsn.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.graz.tavg-ol-hxy-sea.mon.30S-90S", + "ocnBgchem.icfriver.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intdic.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intdoc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intparag.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbfe.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbn.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbp.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbsi.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpcalcite.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpn2.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpoc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpp.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpp.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppcalc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppdiat.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppdiaz.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppmisc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppnitrate.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpppico.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.nh4.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.nh4.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.no3.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.no3.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.o2.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.ocfriver.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.ph.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.ph.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phyc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phyc.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.phyc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phycalc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phycalc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phydiat.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phydiat.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phydiaz.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phydiaz.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phymisc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phymisc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phypico.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phypico.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.po4.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.pp.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.si.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.spco2.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.spco2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.talk.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zmeso.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zmeso.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zmicro.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zmicro.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zmisc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zmisc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zooc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zooc.tavg-ol-hxy-sea.mon.GLB", + "seaIce.evspsbl.tavg-u-hxy-si.mon.GLB", + "seaIce.prra.tavg-u-hxy-si.mon.GLB", + "seaIce.prsn.tavg-u-hxy-si.mon.GLB", + "seaIce.rlds.tavg-u-hxy-si.mon.GLB", + "seaIce.rlus.tavg-u-hxy-si.mon.GLB", + "seaIce.rsds.tavg-u-hxy-si.day.GLB", + "seaIce.rsds.tavg-u-hxy-si.mon.GLB", + "seaIce.rsus.tavg-u-hxy-si.day.GLB", + "seaIce.rsus.tavg-u-hxy-si.mon.GLB", + "seaIce.sbl.tavg-u-hxy-si.mon.GLB", + "seaIce.siage.tavg-u-hxy-si.day.GLB", + "seaIce.siage.tavg-u-hxy-si.mon.30S-90S", + "seaIce.siarea.tavg-u-hm-u.mon.NH", + "seaIce.siarea.tavg-u-hm-u.mon.SH", + "seaIce.siconc.tavg-u-hxy-u.mon.30S-90S", + "seaIce.siconca.tavg-u-hxy-u.day.GLB", + "seaIce.siconca.tavg-u-hxy-u.mon.GLB", + "seaIce.sidconcdyn.tavg-u-hxy-sea.mon.GLB", + "seaIce.sidconcth.tavg-u-hxy-sea.mon.GLB", + "seaIce.sidmassdyn.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthsi.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthwat.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmeltbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmeltlat.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmelttop.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassth.tavg-u-hxy-si.mon.GLB", + "seaIce.sieqthick.tavg-u-hxy-si.mon.GLB", + "seaIce.siextent.tavg-u-hm-u.mon.NH", + "seaIce.siextent.tavg-u-hm-u.mon.SH", + "seaIce.siflcondbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflcondtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sifllattop.tavg-u-hxy-si.mon.GLB", + "seaIce.siflsensbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflsenstop.tavg-u-hxy-si.mon.GLB", + "seaIce.siflswdbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sihc.tavg-u-hxy-sea.mon.GLB", + "seaIce.sisndmassdyn.tavg-u-hxy-si.mon.GLB", + "seaIce.sisndmasssi.tavg-u-hxy-si.mon.GLB", + "seaIce.sisndmasswind.tavg-u-hxy-si.mon.GLB", + "seaIce.sisnhc.tavg-u-hxy-si.mon.GLB", + "seaIce.sisnmass.tavg-u-hm-u.mon.NH", + "seaIce.sisnmass.tavg-u-hm-u.mon.SH", + "seaIce.sispeed.tavg-u-hxy-si.day.GLB", + "seaIce.sispeed.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-si.day.GLB", + "seaIce.sithick.tavg-u-hxy-si.mon.30S-90S", + "seaIce.sitimefrac.tavg-u-hxy-sea.day.GLB", + "seaIce.sitimefrac.tavg-u-hxy-sea.mon.30S-90S", + "seaIce.siu.tavg-u-hxy-si.day.GLB", + "seaIce.siu.tavg-u-hxy-si.mon.30S-90S", + "seaIce.siv.tavg-u-hxy-si.day.GLB", + "seaIce.siv.tavg-u-hxy-si.mon.30S-90S", + "seaIce.sivol.tavg-u-hm-u.mon.NH", + "seaIce.sivol.tavg-u-hm-u.mon.SH", + "seaIce.snc.tavg-u-hxy-si.mon.GLB", + "seaIce.snd.tavg-u-hxy-sn.day.GLB", + "seaIce.snd.tavg-u-hxy-sn.mon.30S-90S", + "seaIce.snm.tavg-u-hxy-si.mon.GLB", + "seaIce.snw.tavg-u-hxy-si.mon.GLB", + "seaIce.ts.tavg-u-hxy-si.day.GLB", + "seaIce.ts.tavg-u-hxy-si.mon.30S-90S" + ], + "Medium": [ + "atmos.co2.tavg-h2m-hxy-u.mon.GLB", + "atmos.epfy.tavg-p39-hy-air.mon.GLB", + "atmos.epfz.tavg-p39-hy-air.mon.GLB", + "atmos.hur.tavg-700hPa-hxy-air.day.GLB", + "atmos.hur.tpt-100hPa-hxy-u.6hr.GLB", + "atmos.hur.tpt-500hPa-hxy-air.6hr.GLB", + "atmos.hur.tpt-850hPa-hxy-air.6hr.GLB", + "atmos.noaahi2m.tavg-h2m-hxy-u.day.GLB", + "atmos.noaahi2m.tmax-h2m-hxy-u.day.GLB", + "atmos.pr.tavg-u-hxy-u.6hr.GLB", + "atmos.pr.tmax-u-hxy-u.6hr.GLB", + "atmos.ps.tpt-u-hxy-u.1hr.GLB", + "atmos.ps.tpt-u-hxy-u.3hr.GLB", + "atmos.psl.tavg-u-hxy-u.6hr.GLB", + "atmos.rldscs.tavg-u-hxy-u.day.GLB", + "atmos.rls.tavg-u-hxy-u.day.GLB", + "atmos.rsdsdiff.tavg-u-hxy-u.1hr.GLB", + "atmos.rss.tavg-u-hxy-u.day.GLB", + "atmos.rv850.tavg-850hPa-hxy-air.6hr.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.1hr.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.3hr.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.6hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.6hr.GLB", + "atmos.tauu.tavg-u-hxy-u.day.GLB", + "atmos.tauv.tavg-u-hxy-u.day.GLB", + "atmos.tdps.tavg-h2m-hxy-u.day.GLB", + "atmos.tdps.tavg-h2m-hxy-u.mon.GLB", + "atmos.ts.tavg-u-hxy-u.1hr.GLB", + "atmos.ts.tavg-u-hxy-u.day.GLB", + "atmos.ua.tavg-h100m-hxy-u.3hr.GLB", + "atmos.ua.tpt-200hPa-hxy-u.6hr.GLB", + "atmos.uas.tavg-h10m-hxy-u.6hr.GLB", + "atmos.utendepfd.tavg-p39-hy-air.mon.GLB", + "atmos.va.tavg-h100m-hxy-u.3hr.GLB", + "atmos.va.tpt-200hPa-hxy-u.6hr.GLB", + "atmos.vas.tavg-h10m-hxy-u.6hr.GLB", + "atmos.vtem.tavg-p39-hy-air.mon.GLB", + "atmos.wbgt.tavg-h2m-hxy-u.day.GLB", + "atmos.wbgt.tmax-h2m-hxy-u.day.GLB", + "atmos.wsg.tmax-h100m-hxy-u.mon.GLB", + "atmos.wsg.tmax-h10m-hxy-u.mon.GLB", + "atmos.wtem.tavg-p39-hy-air.mon.GLB", + "atmos.zg.tavg-1000hPa-hxy-air.6hr.GLB", + "atmos.zg.tpt-700hPa-hxy-u.6hr.GLB", + "atmos.zg.tpt-925hPa-hxy-u.6hr.GLB", + "land.baresoilFrac.tavg-u-hxy-u.yr.GLB", + "land.cLitterCwd.tavg-u-hxy-lnd.mon.GLB", + "land.cLitterSubSurf.tavg-u-hxy-lnd.mon.GLB", + "land.cLitterSurf.tavg-u-hxy-lnd.mon.GLB", + "land.cOther.tavg-u-hxy-lnd.mon.GLB", + "land.cropFrac.tavg-u-hxy-u.yr.GLB", + "land.cropFracC3.tavg-u-hxy-u.mon.GLB", + "land.cropFracC4.tavg-u-hxy-u.mon.GLB", + "land.cSoil.tavg-sl-hxy-lnd.mon.GLB", + "land.cSoilPools.tavg-u-hxy-lnd.mon.GLB", + "land.cVeg.tavg-u-hxy-ng.mon.GLB", + "land.cVeg.tavg-u-hxy-shb.mon.GLB", + "land.cVeg.tavg-u-hxy-tree.mon.GLB", + "land.fLitterFire.tavg-u-hxy-lnd.mon.GLB", + "land.fNgasNonFire.tavg-u-hxy-lnd.mon.GLB", + "land.fVegFire.tavg-u-hxy-lnd.mon.GLB", + "land.fVegLitterMortality.tavg-u-hxy-lnd.mon.GLB", + "land.fVegLitterSenescence.tavg-u-hxy-lnd.mon.GLB", + "land.fVegSoilMortality.tavg-u-hxy-lnd.mon.GLB", + "land.fVegSoilSenescence.tavg-u-hxy-lnd.mon.GLB", + "land.gpp.tavg-u-hxy-ng.mon.GLB", + "land.gpp.tavg-u-hxy-shb.mon.GLB", + "land.gpp.tavg-u-hxy-tree.mon.GLB", + "land.grassFrac.tavg-u-hxy-u.yr.GLB", + "land.grassFracC3.tavg-u-hxy-u.mon.GLB", + "land.grassFracC4.tavg-u-hxy-u.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.3hr.GLB", + "land.mrros.tavg-u-hxy-lnd.3hr.GLB", + "land.mrsol.tpt-d10cm-hxy-lnd.3hr.GLB", + "land.nLeaf.tavg-u-hxy-lnd.mon.GLB", + "land.nLitterCwd.tavg-u-hxy-lnd.mon.GLB", + "land.nLitterSubSurf.tavg-u-hxy-lnd.mon.GLB", + "land.nLitterSurf.tavg-u-hxy-lnd.mon.GLB", + "land.nMineralNH4.tavg-u-hxy-lnd.mon.GLB", + "land.nMineralNO3.tavg-u-hxy-lnd.mon.GLB", + "land.nOther.tavg-u-hxy-lnd.mon.GLB", + "land.npp.tavg-u-hxy-ng.mon.GLB", + "land.npp.tavg-u-hxy-shb.mon.GLB", + "land.npp.tavg-u-hxy-tree.mon.GLB", + "land.nppLeaf.tavg-u-hxy-lnd.mon.GLB", + "land.nppOther.tavg-u-hxy-lnd.mon.GLB", + "land.nppRoot.tavg-u-hxy-lnd.mon.GLB", + "land.nppStem.tavg-u-hxy-lnd.mon.GLB", + "land.nRoot.tavg-u-hxy-lnd.mon.GLB", + "land.nStem.tavg-u-hxy-lnd.mon.GLB", + "land.pastureFracC3.tavg-u-hxy-u.mon.GLB", + "land.pastureFracC4.tavg-u-hxy-u.mon.GLB", + "land.ra.tavg-u-hxy-ng.mon.GLB", + "land.ra.tavg-u-hxy-shb.mon.GLB", + "land.ra.tavg-u-hxy-tree.mon.GLB", + "land.raLeaf.tavg-u-hxy-lnd.mon.GLB", + "land.raOther.tavg-u-hxy-lnd.mon.GLB", + "land.raRoot.tavg-u-hxy-lnd.mon.GLB", + "land.raStem.tavg-u-hxy-lnd.mon.GLB", + "land.residualFrac.tavg-u-hxy-u.yr.GLB", + "land.rh.tavg-u-hxy-ng.mon.GLB", + "land.rh.tavg-u-hxy-shb.mon.GLB", + "land.rh.tavg-u-hxy-tree.mon.GLB", + "land.rhLitter.tavg-u-hxy-lnd.mon.GLB", + "land.rhSoil.tavg-u-hxy-lnd.mon.GLB", + "land.shrubFrac.tavg-u-hxy-u.yr.GLB", + "land.treeFrac.tavg-u-hxy-u.yr.GLB", + "land.treeFracBdlDcd.tavg-u-hxy-u.mon.GLB", + "land.treeFracBdlEvg.tavg-u-hxy-u.mon.GLB", + "land.treeFracNdlDcd.tavg-u-hxy-u.mon.GLB", + "land.treeFracNdlEvg.tavg-u-hxy-u.mon.GLB", + "land.tsl.tavg-sl-hxy-lnd.day.GLB", + "land.vegFrac.tavg-u-hxy-u.yr.GLB", + "land.vegHeight.tavg-u-hxy-ng.mon.GLB", + "land.vegHeight.tavg-u-hxy-shb.mon.GLB", + "land.wetlandCH4cons.tavg-u-hxy-lnd.mon.GLB", + "land.wetlandCH4prod.tavg-u-hxy-lnd.mon.GLB", + "land.wetlandFrac.tavg-u-hxy-u.mon.GLB", + "landIce.snd.tavg-u-hxy-lnd.day.GLB", + "ocean.evspsbl.tavg-u-hxy-ifs.mon.GLB", + "ocean.ficeberg.tavg-u-hxy-sea.mon.GLB", + "ocean.hfacrossline.tavg-u-ht-sea.mon.GLB", + "ocean.hfevapds.tavg-u-hxy-ifs.mon.GLB", + "ocean.hfibthermds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfibthermds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfrainds.tavg-u-hxy-ifs.mon.GLB", + "ocean.hfrunoffds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfrunoffds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfsnthermds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfsnthermds.tavg-u-hxy-sea.mon.GLB", + "ocean.mfo.tavg-u-ht-sea.mon.GLB", + "ocean.msftmmpa.tavg-ol-hyb-sea.mon.GLB", + "ocean.sf6.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfacrossline.tavg-u-ht-sea.mon.GLB", + "ocean.sfdsi.tavg-u-hxy-sea.mon.GLB", + "ocean.sfriver.tavg-u-hxy-sea.mon.GLB", + "ocean.siflfwbot.tavg-u-hxy-sea.mon.GLB", + "ocean.so.tavg-ol-hxy-sea.day.GLB", + "ocean.t20d.tavg-u-hxy-sea.day.GLB", + "ocean.tnkebto.tavg-u-hxy-sea.yr.GLB", + "ocean.vsfcorr.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfevap.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfpr.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfriver.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfsit.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.arag.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.arag.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.calc.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.calc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chl.tavg-d0m-hxy-sea.day.GLB", + "ocnBgchem.chl.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.chlcalc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.co3.tavg-d0m-hxy-sea.day.GLB", + "ocnBgchem.co3.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.co3satarag.tavg-d0m-hxy-sea.day.GLB", + "ocnBgchem.co3satarag.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.dmso.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.epn.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.epp.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.epsi.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.expc.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.expcalc.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.fgdms.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fric.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.froc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.graz.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.intpp.tavg-u-hxy-sea.day.GLB", + "ocnBgchem.intppcalc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppdiat.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppdiaz.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppmisc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppnitrate.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intpppico.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.no3.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.o2.tavg-d0m-hxy-sea.day.GLB", + "ocnBgchem.o2.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.o2.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.ph.tavg-d0m-hxy-sea.day.GLB", + "ocnBgchem.ph.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.phyc.tavg-d0m-hxy-sea.day.GLB", + "ocnBgchem.phyc.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.pp.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.si.tavg-d0m-hxy-sea.mon.GLB", + "seaIce.sfdsi.tavg-u-hxy-si.mon.GLB", + "seaIce.siage.tavg-u-hxy-si.mon.GLB", + "seaIce.siarea.tavg-u-hm-u.day.NH", + "seaIce.siarea.tavg-u-hm-u.day.SH", + "seaIce.siareaacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.sicompstren.tavg-u-hxy-si.mon.GLB", + "seaIce.sidivvel.tpt-u-hxy-si.mon.GLB", + "seaIce.sidmasstranx.tavg-u-hxy-u.mon.GLB", + "seaIce.sidmasstrany.tavg-u-hxy-u.mon.GLB", + "seaIce.sidragbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidragtop.tavg-u-hxy-si.mon.GLB", + "seaIce.siextent.tavg-u-hm-u.day.NH", + "seaIce.siextent.tavg-u-hm-u.day.SH", + "seaIce.sifb.tavg-u-hxy-si.mon.GLB", + "seaIce.siflfwbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflfwdrain.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcecoriolx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcecorioly.tavg-u-hxy-si.mon.GLB", + "seaIce.siforceintstrx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforceintstry.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcetiltx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcetilty.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdconc.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdsnconc.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdsnthick.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdthick.tavg-u-hxy-si.mon.GLB", + "seaIce.simassacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.simpconc.tavg-u-hxy-si.mon.GLB", + "seaIce.simpeffconc.tavg-u-hxy-si.mon.GLB", + "seaIce.simprefrozen.tavg-u-hxy-simp.mon.GLB", + "seaIce.simpthick.tavg-u-hxy-simp.mon.GLB", + "seaIce.sirdgconc.tavg-u-hxy-si.mon.GLB", + "seaIce.sisali.tavg-u-hxy-si.mon.GLB", + "seaIce.sisaltmass.tavg-u-hxy-si.mon.GLB", + "seaIce.sishearvel.tpt-u-hxy-si.mon.GLB", + "seaIce.sisnmass.tavg-u-hm-u.day.NH", + "seaIce.sisnmass.tavg-u-hm-u.day.SH", + "seaIce.sisnmassacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.sistressave.tpt-u-hxy-si.mon.GLB", + "seaIce.sistressmax.tpt-u-hxy-si.mon.GLB", + "seaIce.sistrxdtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sistrxubot.tavg-u-hxy-si.mon.GLB", + "seaIce.sistrydtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sistryubot.tavg-u-hxy-si.mon.GLB", + "seaIce.sitempbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sitempsnic.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-sir.mon.GLB", + "seaIce.sivol.tavg-u-hm-u.day.NH", + "seaIce.sivol.tavg-u-hm-u.day.SH" + ], + "Low": [ + "aerosol.sfpm1.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.sfpm10.tavg-h2m-hxy-u.1hr.GLB", + "atmos.hurs.tavg-h2m-hxy-u.1hr.GLB", + "atmosChem.drynh3.tavg-u-hxy-u.day.GLB", + "atmosChem.drynh4.tavg-u-hxy-u.day.GLB", + "atmosChem.drynoy.tavg-u-hxy-u.day.GLB", + "atmosChem.flashrate.tavg-u-hxy-u.mon.GLB", + "atmosChem.wetnh3.tavg-u-hxy-u.day.GLB", + "atmosChem.wetnh4.tavg-u-hxy-u.day.GLB", + "atmosChem.wetnoy.tavg-u-hxy-u.day.GLB", + "land.c13Land.tavg-u-hxy-lnd.mon.GLB", + "land.c13Litter.tavg-u-hxy-lnd.mon.GLB", + "land.c13Soil.tavg-u-hxy-lnd.mon.GLB", + "land.c13Veg.tavg-u-hxy-lnd.mon.GLB", + "land.c14Land.tavg-u-hxy-lnd.mon.GLB", + "land.c14Litter.tavg-u-hxy-lnd.mon.GLB", + "land.c14Soil.tavg-u-hxy-lnd.mon.GLB", + "land.c14Veg.tavg-u-hxy-lnd.mon.GLB", + "land.gppc13.tavg-u-hxy-lnd.mon.GLB", + "land.gppc14.tavg-u-hxy-lnd.mon.GLB", + "land.netAtmosLandC13Flux.tavg-u-hxy-lnd.mon.GLB", + "land.netAtmosLandC14Flux.tavg-u-hxy-lnd.mon.GLB", + "land.rac13.tavg-u-hxy-lnd.mon.GLB", + "land.rac14.tavg-u-hxy-lnd.mon.GLB", + "land.rhc13.tavg-u-hxy-lnd.mon.GLB", + "land.rhc14.tavg-u-hxy-lnd.mon.GLB", + "ocean.difmxybo.tavg-ol-hxy-sea.yr.GLB", + "ocean.difmxylo.tavg-ol-hxy-sea.yr.GLB", + "ocean.diftrblo.tavg-ol-hxy-sea.yr.GLB", + "ocean.diftrelo.tavg-ol-hxy-sea.yr.GLB", + "ocean.difvho.tavg-ol-hxy-sea.yr.GLB", + "ocean.difvso.tavg-ol-hxy-sea.yr.GLB", + "ocean.dispkexyfo.tavg-u-hxy-sea.yr.GLB", + "ocean.dxto.ti-u-hxy-u.fx.GLB", + "ocean.dxuo.ti-u-hxy-u.fx.GLB", + "ocean.dxvo.ti-u-hxy-u.fx.GLB", + "ocean.dyto.ti-u-hxy-u.fx.GLB", + "ocean.dyuo.ti-u-hxy-u.fx.GLB", + "ocean.dyvo.ti-u-hxy-u.fx.GLB", + "ocean.mlotstsq.tavg-u-hxy-sea.mon.GLB", + "ocean.msftmmpa.tavg-rho-hyb-sea.mon.GLB", + "ocean.msftmsmpa.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftypa.tavg-ol-ht-sea.mon.GLB", + "ocean.msftypa.tavg-rho-ht-sea.mon.GLB", + "ocean.ocontempdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontempmint.tavg-u-hxy-sea.yr.GLB", + "ocean.ocontemppadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemppmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemppsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemprmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemptend.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottempdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottempmint.tavg-u-hxy-sea.yr.GLB", + "ocean.opottemppadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemppmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemppsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemprmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemptend.tavg-ol-hxy-sea.dec.GLB", + "ocean.osaltdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpsmadvect.tavg-ol-hxy-sea.mon.GLB", + "ocean.osaltpsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltrmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osalttend.tavg-ol-hxy-sea.yr.GLB", + "ocean.rsdoabsorb.tavg-ol-hxy-sea.yr.GLB", + "ocean.somint.tavg-u-hxy-sea.yr.GLB", + "ocean.sossq.tavg-u-hxy-sea.mon.GLB", + "ocean.thkcelluo.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcellvo.tavg-ol-hxy-sea.mon.GLB", + "ocean.tnpeo.tavg-u-hxy-sea.yr.GLB", + "ocean.tossq.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.dissi13c.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.dissi13c.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissi14c.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissi14cabio.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.dissi14cabio.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.fg13co2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fg14co2abio.tavg-u-hxy-sea.mon.GLB" + ] + }, + "hist-GHG": { + "Core": [ + "atmos.areacella.ti-u-hxy-u.fx.GLB", + "atmos.cl.tavg-al-hxy-u.mon.GLB", + "atmos.cli.tavg-al-hxy-u.mon.GLB", + "atmos.clivi.tavg-u-hxy-u.mon.GLB", + "atmos.clt.tavg-u-hxy-u.day.GLB", + "atmos.clt.tavg-u-hxy-u.mon.GLB", + "atmos.clw.tavg-al-hxy-u.mon.GLB", + "atmos.clwvi.tavg-u-hxy-u.mon.GLB", + "atmos.evspsbl.tavg-u-hxy-u.mon.GLB", + "atmos.hfls.tavg-u-hxy-u.mon.GLB", + "atmos.hfss.tavg-u-hxy-u.mon.GLB", + "atmos.hur.tavg-p19-hxy-air.mon.GLB", + "atmos.hur.tavg-p19-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.6hr.GLB", + "atmos.hurs.tavg-h2m-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.mon.GLB", + "atmos.hus.tavg-p19-hxy-u.day.GLB", + "atmos.hus.tavg-p19-hxy-u.mon.GLB", + "atmos.huss.tavg-h2m-hxy-u.day.GLB", + "atmos.huss.tavg-h2m-hxy-u.mon.GLB", + "atmos.huss.tpt-h2m-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.1hr.GLB", + "atmos.pr.tavg-u-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.day.GLB", + "atmos.pr.tavg-u-hxy-u.mon.GLB", + "atmos.prc.tavg-u-hxy-u.mon.GLB", + "atmos.prsn.tavg-u-hxy-u.mon.GLB", + "atmos.prw.tavg-u-hxy-u.mon.GLB", + "atmos.ps.tavg-u-hxy-u.day.GLB", + "atmos.ps.tavg-u-hxy-u.mon.GLB", + "atmos.psl.tavg-u-hxy-u.day.GLB", + "atmos.psl.tavg-u-hxy-u.mon.GLB", + "atmos.rlds.tavg-u-hxy-u.mon.GLB", + "atmos.rldscs.tavg-u-hxy-u.mon.GLB", + "atmos.rlus.tavg-u-hxy-u.mon.GLB", + "atmos.rluscs.tavg-u-hxy-u.mon.GLB", + "atmos.rlut.tavg-u-hxy-u.mon.GLB", + "atmos.rlutcs.tavg-u-hxy-u.mon.GLB", + "atmos.rsds.tavg-u-hxy-u.day.GLB", + "atmos.rsds.tavg-u-hxy-u.mon.GLB", + "atmos.rsdscs.tavg-u-hxy-u.mon.GLB", + "atmos.rsdt.tavg-u-hxy-u.mon.GLB", + "atmos.rsus.tavg-u-hxy-u.mon.GLB", + "atmos.rsuscs.tavg-u-hxy-u.mon.GLB", + "atmos.rsut.tavg-u-hxy-u.mon.GLB", + "atmos.rsutcs.tavg-u-hxy-u.mon.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.day.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.mon.GLB", + "atmos.sftlf.ti-u-hxy-u.fx.GLB", + "atmos.ta.tavg-p19-hxy-air.day.GLB", + "atmos.ta.tavg-p19-hxy-air.mon.GLB", + "atmos.ta.tpt-p3-hxy-air.6hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.day.GLB", + "atmos.tas.tavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tmax-h2m-hxy-u.day.GLB", + "atmos.tas.tmaxavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tmin-h2m-hxy-u.day.GLB", + "atmos.tas.tminavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tpt-h2m-hxy-u.3hr.GLB", + "atmos.tauu.tavg-u-hxy-u.mon.GLB", + "atmos.tauv.tavg-u-hxy-u.mon.GLB", + "atmos.ts.tavg-u-hxy-u.mon.GLB", + "atmos.ua.tavg-p19-hxy-air.day.GLB", + "atmos.ua.tavg-p19-hxy-air.mon.GLB", + "atmos.ua.tpt-p3-hxy-air.6hr.GLB", + "atmos.uas.tavg-h10m-hxy-u.day.GLB", + "atmos.uas.tavg-h10m-hxy-u.mon.GLB", + "atmos.uas.tpt-h10m-hxy-u.3hr.GLB", + "atmos.va.tavg-p19-hxy-air.day.GLB", + "atmos.va.tavg-p19-hxy-air.mon.GLB", + "atmos.va.tpt-p3-hxy-air.6hr.GLB", + "atmos.vas.tavg-h10m-hxy-u.day.GLB", + "atmos.vas.tavg-h10m-hxy-u.mon.GLB", + "atmos.vas.tpt-h10m-hxy-u.3hr.GLB", + "atmos.wap.tavg-p19-hxy-air.mon.GLB", + "atmos.wap.tavg-p19-hxy-u.day.GLB", + "atmos.zg.tavg-p19-hxy-air.day.GLB", + "atmos.zg.tavg-p19-hxy-air.mon.GLB", + "land.evspsblsoi.tavg-u-hxy-lnd.mon.GLB", + "land.evspsblveg.tavg-u-hxy-lnd.mon.GLB", + "land.lai.tavg-u-hxy-lnd.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.mon.GLB", + "land.mrros.tavg-u-hxy-lnd.mon.GLB", + "land.mrso.tavg-u-hxy-lnd.mon.GLB", + "land.mrsofc.ti-u-hxy-lnd.fx.GLB", + "land.mrsol.tavg-d10cm-hxy-lnd.mon.GLB", + "land.orog.ti-u-hxy-u.fx.GLB", + "land.rootd.ti-u-hxy-lnd.fx.GLB", + "land.sftgif.ti-u-hxy-u.fx.GLB", + "land.slthick.ti-sl-hxy-lnd.fx.GLB", + "landIce.mrfso.tavg-u-hxy-lnd.mon.GLB", + "landIce.snc.tavg-u-hxy-lnd.mon.GLB", + "landIce.snw.tavg-u-hxy-lnd.mon.GLB", + "ocean.areacello.ti-u-hxy-u.fx.GLB", + "ocean.basin.ti-u-hxy-u.fx.GLB", + "ocean.bigthetao.tavg-ol-hxy-sea.mon.GLB", + "ocean.deptho.ti-u-hxy-sea.fx.GLB", + "ocean.hfds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfgeou.ti-u-hxy-sea.fx.GLB", + "ocean.masscello.tavg-ol-hxy-sea.mon.GLB", + "ocean.masscello.ti-ol-hxy-sea.fx.GLB", + "ocean.mlotst.tavg-u-hxy-sea.mon.GLB", + "ocean.sftof.ti-u-hxy-u.fx.GLB", + "ocean.so.tavg-ol-hxy-sea.mon.GLB", + "ocean.sos.tavg-u-hxy-sea.day.GLB", + "ocean.sos.tavg-u-hxy-sea.mon.GLB", + "ocean.tauuo.tavg-u-hxy-sea.mon.GLB", + "ocean.tauvo.tavg-u-hxy-sea.mon.GLB", + "ocean.thetao.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcello.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcello.ti-ol-hxy-sea.fx.GLB", + "ocean.tos.tavg-u-hxy-sea.day.GLB", + "ocean.tos.tavg-u-hxy-sea.mon.GLB", + "ocean.umo.tavg-ol-hxy-sea.mon.GLB", + "ocean.uo.tavg-ol-hxy-sea.mon.GLB", + "ocean.vmo.tavg-ol-hxy-sea.mon.GLB", + "ocean.vo.tavg-ol-hxy-sea.mon.GLB", + "ocean.wmo.tavg-ol-hxy-sea.mon.GLB", + "ocean.wo.tavg-ol-hxy-sea.mon.GLB", + "ocean.zos.tavg-u-hxy-sea.day.GLB", + "ocean.zos.tavg-u-hxy-sea.mon.GLB", + "ocean.zostoga.tavg-u-hm-sea.mon.GLB", + "seaIce.siconc.tavg-u-hxy-u.day.GLB", + "seaIce.siconc.tavg-u-hxy-u.mon.GLB", + "seaIce.simass.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-si.mon.GLB", + "seaIce.sitimefrac.tavg-u-hxy-sea.mon.GLB", + "seaIce.siu.tavg-u-hxy-si.mon.GLB", + "seaIce.siv.tavg-u-hxy-si.mon.GLB", + "seaIce.snd.tavg-u-hxy-sn.mon.GLB", + "seaIce.ts.tavg-u-hxy-si.mon.GLB" + ], + "High": [ + "aerosol.abs550aer.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550bc.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550dust.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550no3.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550oa.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550so4.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550ss.tavg-u-hxy-u.mon.GLB", + "aerosol.airmass.tavg-al-hxy-u.mon.GLB", + "aerosol.aoanh.tavg-al-hxy-u.mon.NH", + "aerosol.bry.tavg-p39-hy-air.mon.GLB", + "aerosol.bs550aer.tpt-al-hxy-u.6hr.GLB", + "aerosol.c2h6.tavg-al-hxy-u.mon.GLB", + "aerosol.c3h6.tavg-al-hxy-u.mon.GLB", + "aerosol.c3h8.tavg-al-hxy-u.mon.GLB", + "aerosol.ccldncl.tavg-u-hxy-ccl.mon.GLB", + "aerosol.ccn.tavg-u-hxy-ccl.mon.30S-90S", + "aerosol.ccn.tavg-u-hxy-ccl.mon.GLB", + "aerosol.ccn1.tavg-al-hxy-u.mon.30S-90S", + "aerosol.ccn1.tavg-al-hxy-u.mon.GLB", + "aerosol.ccnp02.tavg-al-hxy-u.mon.30S-90S", + "aerosol.ccnp02.tavg-al-hxy-u.mon.GLB", + "aerosol.cdnc.tavg-al-hxy-u.mon.30S-90S", + "aerosol.cdnc.tavg-al-hxy-u.mon.GLB", + "aerosol.cfc114.tavg-al-hxy-u.mon.GLB", + "aerosol.ch3coch3.tavg-al-hxy-u.mon.GLB", + "aerosol.cheaqpso4.tavg-al-hxy-u.mon.GLB", + "aerosol.chegpso4.tavg-al-hxy-u.mon.GLB", + "aerosol.chepasoa.tavg-u-hxy-u.mon.GLB", + "aerosol.chepsoa.tavg-u-hxy-u.mon.GLB", + "aerosol.cly.tavg-p39-hy-air.mon.GLB", + "aerosol.co.tavg-al-hxy-u.mon.GLB", + "aerosol.co.tavg-h2m-hxy-u.day.GLB", + "aerosol.cod.tavg-u-hxy-u.day.GLB", + "aerosol.cod.tavg-u-hxy-u.mon.30S-90S", + "aerosol.cod.tavg-u-hxy-u.mon.GLB", + "aerosol.conccn.tavg-al-hxy-u.mon.GLB", + "aerosol.conccn.tpt-u-hs-u.3hr.GLB", + "aerosol.drybc.tavg-u-hxy-u.mon.GLB", + "aerosol.drydust.tavg-u-hxy-u.mon.GLB", + "aerosol.dryno3.tavg-u-hxy-u.mon.GLB", + "aerosol.dryo3.tavg-u-hxy-u.mon.GLB", + "aerosol.dryoa.tavg-u-hxy-u.mon.GLB", + "aerosol.dryso2.tavg-u-hxy-u.mon.GLB", + "aerosol.dryso4.tavg-u-hxy-u.mon.GLB", + "aerosol.dryss.tavg-u-hxy-u.mon.GLB", + "aerosol.ec550aer.tavg-al-hxy-u.mon.GLB", + "aerosol.ec550aer.tpt-u-hxy-u.6hr.GLB", + "aerosol.emiaco.tavg-u-hxy-u.mon.GLB", + "aerosol.emianox.tavg-u-hxy-u.mon.GLB", + "aerosol.emiaoa.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbbc.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbch4.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbco.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbdms.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbnh3.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbnox.tavg-u-hxy-u.mon.GLB", + "aerosol.emibboa.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbso2.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbvoc.tavg-u-hxy-u.mon.GLB", + "aerosol.emibc.tavg-u-hxy-u.mon.GLB", + "aerosol.emibvoc.tavg-u-hxy-u.mon.GLB", + "aerosol.emico.tavg-u-hxy-u.mon.GLB", + "aerosol.emidms.tavg-u-hxy-u.mon.30S-90S", + "aerosol.emidms.tavg-u-hxy-u.mon.GLB", + "aerosol.emidust.tavg-u-hxy-u.mon.GLB", + "aerosol.emiisop.tavg-u-hxy-u.mon.GLB", + "aerosol.emilnox.tavg-al-hxy-u.mon.GLB", + "aerosol.eminh3.tavg-u-hxy-u.mon.GLB", + "aerosol.eminox.tavg-u-hxy-u.mon.GLB", + "aerosol.emioa.tavg-u-hxy-u.mon.GLB", + "aerosol.emiso2.tavg-u-hxy-u.mon.GLB", + "aerosol.emiso4.tavg-u-hxy-u.mon.GLB", + "aerosol.emiss.tavg-u-hxy-u.mon.30S-90S", + "aerosol.emiss.tavg-u-hxy-u.mon.GLB", + "aerosol.emivoc.tavg-u-hxy-u.mon.GLB", + "aerosol.h2o.tavg-al-hxy-u.mon.GLB", + "aerosol.h2o.tavg-p39-hy-air.mon.GLB", + "aerosol.hcfc22.tavg-al-hxy-u.mon.GLB", + "aerosol.hcho.tavg-al-hxy-u.mon.GLB", + "aerosol.hcl.tavg-al-hxy-u.mon.GLB", + "aerosol.hcl.tavg-p39-hy-air.mon.GLB", + "aerosol.hfc125.tavg-al-hxy-u.mon.GLB", + "aerosol.hfc134a.tavg-al-hxy-u.mon.GLB", + "aerosol.hno3.tavg-al-hxy-u.mon.GLB", + "aerosol.hno3.tavg-p39-hy-air.mon.GLB", + "aerosol.ho2.tavg-p39-hy-air.mon.GLB", + "aerosol.isop.tavg-al-hxy-u.mon.GLB", + "aerosol.jno2.tavg-al-hxy-u.mon.GLB", + "aerosol.lossch4.tavg-al-hxy-u.mon.GLB", + "aerosol.lossco.tavg-al-hxy-u.mon.GLB", + "aerosol.lossn2o.tavg-al-hxy-u.mon.GLB", + "aerosol.lwp.tavg-u-hxy-u.mon.GLB", + "aerosol.mmraerh2o.tavg-al-hxy-u.mon.GLB", + "aerosol.mmraerh2o.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmraerh2o.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrbc.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrbc.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrbc.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrbc.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrdust.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrdust.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrdust.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrdust.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrnh4.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrnh4.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrnh4.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrnh4.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrno3.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrno3.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrno3.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrno3.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmroa.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmroa.tavg-al-hxy-u.mon.GLB", + "aerosol.mmroa.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmroa.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrpm1.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrpm1.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrpm2p5.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrpm2p5.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrso4.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrso4.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrso4.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrso4.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrsoa.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrsoa.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrsoa.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrss.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrss.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrss.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrss.tpt-h2m-hs-u.3hr.GLB", + "aerosol.nh50.tavg-al-hxy-u.mon.GLB", + "aerosol.no.tavg-al-hxy-u.mon.GLB", + "aerosol.no2.tavg-al-hxy-u.mon.GLB", + "aerosol.no2.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.noy.tavg-p39-hy-air.mon.GLB", + "aerosol.o3.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.o3.tmax-h2m-hxy-u.day.GLB", + "aerosol.o3loss.tavg-al-hxy-u.mon.GLB", + "aerosol.o3prod.tavg-al-hxy-u.mon.GLB", + "aerosol.od443aer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550aer.tavg-u-hxy-u.day.GLB", + "aerosol.od550aer.tavg-u-hxy-u.mon.30S-90S", + "aerosol.od550aer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550aerh2o.tavg-u-hxy-u.mon.GLB", + "aerosol.od550bb.tavg-u-hxy-u.mon.GLB", + "aerosol.od550bc.tavg-u-hxy-u.mon.GLB", + "aerosol.od550csaer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550dust.tavg-u-hxy-u.mon.GLB", + "aerosol.od550lt1aer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550no3.tavg-u-hxy-u.mon.GLB", + "aerosol.od550oa.tavg-u-hxy-u.mon.GLB", + "aerosol.od550so4.tavg-u-hxy-u.mon.GLB", + "aerosol.od550soa.tavg-u-hxy-u.mon.GLB", + "aerosol.od550ss.tavg-u-hxy-u.mon.GLB", + "aerosol.od865aer.tavg-u-hxy-u.mon.GLB", + "aerosol.oh.tavg-al-hxy-u.mon.GLB", + "aerosol.oh.tavg-p39-hy-air.mon.GLB", + "aerosol.pan.tavg-al-hxy-u.mon.GLB", + "aerosol.photo1d.tavg-al-hxy-u.mon.GLB", + "aerosol.pod0.tsum-u-hxy-u.mon.GLB", + "aerosol.reffccwctop.tavg-u-hxy-cl.mon.GLB", + "aerosol.reffclwtop.tavg-u-hxy-cl.mon.30S-90S", + "aerosol.reffclwtop.tavg-u-hxy-cl.mon.GLB", + "aerosol.rluscsaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rlutaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rlutcsaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rsutaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rsutcsaf.tavg-u-hxy-u.mon.GLB", + "aerosol.sfpm1.tavg-h2m-hxy-u.day.GLB", + "aerosol.sfpm10.tavg-al-hxy-u.mon.30S-90S", + "aerosol.sfpm10.tavg-al-hxy-u.mon.GLB", + "aerosol.sfpm10.tavg-h2m-hxy-u.day.GLB", + "aerosol.sfpm25.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.sfpm25.tavg-h2m-hxy-u.day.GLB", + "aerosol.so2.tavg-al-hxy-u.mon.30S-90S", + "aerosol.so2.tavg-al-hxy-u.mon.GLB", + "aerosol.so2.tavg-h2m-hxy-u.day.GLB", + "aerosol.so2.tpt-h2m-hs-u.3hr.GLB", + "aerosol.tatp.tavg-u-hxy-u.mon.GLB", + "aerosol.toz.tavg-u-hxy-u.day.GLB", + "aerosol.toz.tavg-u-hxy-u.mon.GLB", + "aerosol.tropoz.tavg-u-hxy-u.mon.GLB", + "aerosol.ttop.tavg-u-hxy-cl.mon.GLB", + "aerosol.ua.tavg-10hPa-hxy-air.day.GLB", + "aerosol.vt100.tavg-100hPa-hy-air.mon.GLB", + "aerosol.wa.tavg-al-hxy-u.mon.GLB", + "aerosol.wetbc.tavg-u-hxy-u.mon.GLB", + "aerosol.wetdust.tavg-u-hxy-u.mon.GLB", + "aerosol.wetoa.tavg-u-hxy-u.mon.GLB", + "aerosol.wetso2.tavg-u-hxy-u.mon.GLB", + "aerosol.wetso4.tavg-u-hxy-u.mon.GLB", + "aerosol.wetss.tavg-u-hxy-u.mon.GLB", + "aerosol.zg.tavg-10hPa-hxy-air.day.GLB", + "atmos.albisccp.tavg-u-hxy-cl.mon.30S-90S", + "atmos.aod550volso4.tavg-u-hxy-u.mon.GLB", + "atmos.bldep.tavg-u-hxy-u.mon.GLB", + "atmos.bldep.tmax-u-hxy-u.day.GLB", + "atmos.bldep.tmin-u-hxy-u.day.GLB", + "atmos.cl.tavg-al-hxy-u.day.GLB", + "atmos.cl.tavg-al-hxy-u.mon.30S-90S", + "atmos.clc.tavg-al-hxy-u.mon.30S-90S", + "atmos.clc.tavg-al-hxy-u.mon.GLB", + "atmos.clcalipso.tavg-220hPa-hxy-air.mon.30S-90S", + "atmos.clcalipso.tavg-220hPa-hxy-air.mon.GLB", + "atmos.clcalipso.tavg-560hPa-hxy-air.mon.30S-90S", + "atmos.clcalipso.tavg-560hPa-hxy-air.mon.GLB", + "atmos.clcalipso.tavg-840hPa-hxy-air.mon.30S-90S", + "atmos.clcalipso.tavg-840hPa-hxy-air.mon.GLB", + "atmos.clcalipso.tavg-h40-hxy-air.mon.30S-90S", + "atmos.cldnci.tavg-u-hxy-cl.mon.GLB", + "atmos.cldncl.tavg-u-hxy-cl.mon.GLB", + "atmos.cldnvi.tavg-u-hxy-u.day.GLB", + "atmos.cldnvi.tavg-u-hxy-u.mon.GLB", + "atmos.cli.tavg-al-hxy-u.mon.30S-90S", + "atmos.clic.tavg-al-hxy-u.mon.30S-90S", + "atmos.clis.tavg-al-hxy-u.mon.30S-90S", + "atmos.clisccp.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clisccp.tavg-p7c-hxy-air.mon.GLB", + "atmos.clivi.tavg-u-hxy-u.mon.30S-90S", + "atmos.clivimodis.tavg-u-hxy-u.mon.30S-90S", + "atmos.clmodis.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clmodis.tavg-p7c-hxy-air.mon.GLB", + "atmos.clmodisice.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clmodisice.tavg-p7c-hxy-air.mon.GLB", + "atmos.clmodisiceReff.tavg-u-hxy-u.mon.GLB", + "atmos.clmodisliquid.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clmodisliquid.tavg-p7c-hxy-air.mon.GLB", + "atmos.clmodisliquidReff.tavg-u-hxy-u.mon.GLB", + "atmos.cls.tavg-al-hxy-u.mon.30S-90S", + "atmos.clt.tavg-u-hxy-lnd.day.GLB", + "atmos.clt.tavg-u-hxy-u.mon.30S-90S", + "atmos.cltc.tavg-u-hxy-u.mon.GLB", + "atmos.cltcalipso.tavg-u-hxy-u.mon.30S-90S", + "atmos.cltisccp.tavg-u-hxy-u.mon.30S-90S", + "atmos.cltmodis.tavg-u-hxy-u.mon.30S-90S", + "atmos.clw.tavg-al-hxy-u.mon.30S-90S", + "atmos.clwc.tavg-al-hxy-u.mon.30S-90S", + "atmos.clws.tavg-al-hxy-u.mon.30S-90S", + "atmos.clwvi.tavg-u-hxy-u.mon.30S-90S", + "atmos.clwvimodis.tavg-u-hxy-u.mon.30S-90S", + "atmos.co2.tavg-al-hxy-u.mon.GLB", + "atmos.co2.tavg-p19-hxy-air.mon.GLB", + "atmos.co2.tclm-p19-hxy-air.mon.GLB", + "atmos.co2.tclm-u-hm-u.mon.GLB", + "atmos.co23D.tavg-al-hxy-u.mon.GLB", + "atmos.co2mass.tavg-u-hm-u.mon.GLB", + "atmos.dmc.tavg-alh-hxy-u.mon.30S-90S", + "atmos.edt.tavg-al-hxy-u.mon.30S-90S", + "atmos.evspsbl.tavg-u-hxy-lnd.day.GLB", + "atmos.evu.tavg-al-hxy-u.mon.30S-90S", + "atmos.fco2antt.tavg-u-hxy-u.mon.GLB", + "atmos.fco2fos.tavg-u-hxy-u.mon.GLB", + "atmos.fco2nat.tavg-u-hxy-u.mon.GLB", + "atmos.hfls.tavg-u-hxy-u.day.GLB", + "atmos.hfls.tavg-u-hxy-u.mon.30S-90S", + "atmos.hfss.tavg-u-hxy-u.day.GLB", + "atmos.hfss.tavg-u-hxy-u.mon.30S-90S", + "atmos.hur.tavg-al-hxy-u.mon.30S-90S", + "atmos.hur.tavg-al-hxy-u.mon.GLB", + "atmos.hur.tavg-p19-hxy-air.mon.30S-90S", + "atmos.hurs.tavg-h2m-hxy-u.mon.30S-90S", + "atmos.hurs.tmax-h2m-hxy-u.day.GLB", + "atmos.hurs.tmin-h2m-hxy-u.day.GLB", + "atmos.hurs.tpt-h2m-hxy-u.3hr.GLB", + "atmos.hus.tavg-al-hxy-u.mon.30S-90S", + "atmos.hus.tavg-al-hxy-u.mon.GLB", + "atmos.hus.tavg-p19-hxy-u.mon.30S-90S", + "atmos.hus.tpt-al-hxy-u.6hr.GLB", + "atmos.hus.tpt-p7h-hxy-air.6hr.GLB", + "atmos.huss.tavg-h2m-hxy-u.mon.30S-90S", + "atmos.huss.tpt-h2m-hxy-u.1hr.GLB", + "atmos.intuaw.tpt-u-hxy-u.6hr.GLB", + "atmos.intvaw.tpt-u-hxy-u.6hr.GLB", + "atmos.loadbc.tavg-u-hxy-u.day.GLB", + "atmos.loadoa.tavg-u-hxy-u.day.GLB", + "atmos.loadpoa.tavg-u-hxy-u.day.GLB", + "atmos.loadso4.tavg-u-hxy-u.mon.GLB", + "atmos.mc.tavg-alh-hxy-u.mon.GLB", + "atmos.mcd.tavg-alh-hxy-u.mon.30S-90S", + "atmos.mcu.tavg-alh-hxy-u.mon.30S-90S", + "atmos.mcu.tavg-alh-hxy-u.mon.GLB", + "atmos.pctisccp.tavg-u-hxy-cl.mon.30S-90S", + "atmos.pfull.tavg-al-hxy-u.mon.GLB", + "atmos.pfull.tclm-al-hxy-u.mon.30S-90S", + "atmos.phalf.tavg-alh-hxy-u.mon.GLB", + "atmos.pr.tavg-u-hxy-u.mon.30S-90S", + "atmos.pr.tmax-u-hxy-u.day.GLB", + "atmos.pr.tmax-u-hxy-u.mon.GLB", + "atmos.pr.tpt-u-hxy-u.6hr.GLB", + "atmos.prc.tavg-u-hxy-u.mon.30S-90S", + "atmos.prra.tavg-u-hxy-lnd.day.GLB", + "atmos.prra.tavg-u-hxy-u.mon.30S-90S", + "atmos.prra.tavg-u-hxy-u.mon.GLB", + "atmos.prsn.tavg-u-hxy-u.3hr.GLB", + "atmos.prsn.tavg-u-hxy-u.day.GLB", + "atmos.prsn.tavg-u-hxy-u.mon.30S-90S", + "atmos.prw.tavg-u-hxy-u.day.GLB", + "atmos.prw.tavg-u-hxy-u.mon.30S-90S", + "atmos.prw.tpt-u-hxy-u.6hr.GLB", + "atmos.ps.tavg-u-hxy-u.1hr.GLB", + "atmos.ps.tavg-u-hxy-u.mon.30S-90S", + "atmos.ps.tpt-u-hxy-u.6hr.GLB", + "atmos.psl.tavg-u-hxy-u.mon.30S-90S", + "atmos.psl.tpt-u-hxy-u.1hr.GLB", + "atmos.psl.tpt-u-hxy-u.6hr.GLB", + "atmos.ptp.tavg-u-hxy-u.mon.GLB", + "atmos.reffcclwtop.tavg-u-hxy-ccl.mon.GLB", + "atmos.reffclic.tavg-al-hxy-ccl.mon.30S-90S", + "atmos.reffclis.tavg-al-hxy-scl.mon.30S-90S", + "atmos.reffclwc.tavg-al-hxy-ccl.mon.30S-90S", + "atmos.reffclws.tavg-al-hxy-scl.mon.30S-90S", + "atmos.reffsclwtop.tavg-u-hxy-scl.mon.GLB", + "atmos.rld.tavg-alh-hxy-u.mon.GLB", + "atmos.rld4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rldcs.tavg-alh-hxy-u.mon.GLB", + "atmos.rldcs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rlds.tavg-u-hxy-u.1hr.GLB", + "atmos.rlds.tavg-u-hxy-u.3hr.GLB", + "atmos.rlds.tavg-u-hxy-u.day.GLB", + "atmos.rlds.tavg-u-hxy-u.mon.30S-90S", + "atmos.rldscs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rls.tavg-u-hxy-u.mon.GLB", + "atmos.rlu.tavg-alh-hxy-u.mon.GLB", + "atmos.rlu4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rlucs.tavg-alh-hxy-u.mon.GLB", + "atmos.rlucs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rlus.tavg-u-hxy-u.day.GLB", + "atmos.rlus.tavg-u-hxy-u.mon.30S-90S", + "atmos.rlut.tavg-u-hxy-u.day.GLB", + "atmos.rlut.tavg-u-hxy-u.mon.30S-90S", + "atmos.rlut4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rlutcs.tavg-u-hxy-u.day.GLB", + "atmos.rlutcs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rlutcs4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rsd.tavg-alh-hxy-u.mon.GLB", + "atmos.rsd4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsdcs.tavg-alh-hxy-u.mon.GLB", + "atmos.rsdcs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsds.tavg-u-hxy-u.1hr.GLB", + "atmos.rsds.tavg-u-hxy-u.3hr.GLB", + "atmos.rsds.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsdscs.tavg-u-hxy-u.day.GLB", + "atmos.rsdscs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsdt.tavg-u-hxy-u.day.GLB", + "atmos.rsdt.tavg-u-hxy-u.mon.30S-90S", + "atmos.rss.tavg-u-hxy-u.mon.GLB", + "atmos.rsu.tavg-alh-hxy-u.mon.GLB", + "atmos.rsu4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsucs.tavg-alh-hxy-u.mon.GLB", + "atmos.rsucs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsus.tavg-u-hxy-u.day.GLB", + "atmos.rsus.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsuscs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsut.tavg-u-hxy-u.day.GLB", + "atmos.rsut.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsut4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rsutcs.tavg-u-hxy-u.day.GLB", + "atmos.rsutcs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsutcs4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rtmt.tavg-u-hxy-u.mon.GLB", + "atmos.rv850.tpt-850hPa-hxy-air.6hr.GLB", + "atmos.scldncl.tavg-u-hxy-scl.mon.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.mon.30S-90S", + "atmos.sfcWind.tmax-h10m-hxy-u.day.GLB", + "atmos.sfcWind.tmaxavg-h10m-hxy-u.mon.GLB", + "atmos.ta.tavg-700hPa-hxy-air.day.GLB", + "atmos.ta.tavg-850hPa-hxy-air.day.GLB", + "atmos.ta.tavg-al-hxy-u.mon.30S-90S", + "atmos.ta.tavg-al-hxy-u.mon.GLB", + "atmos.ta.tavg-p19-hxy-air.mon.30S-90S", + "atmos.ta.tavg-p39-hy-air.mon.GLB", + "atmos.ta.tpt-al-hxy-u.6hr.GLB", + "atmos.ta.tpt-p5u-hxy-u.6hr.GLB", + "atmos.ta.tpt-p7h-hxy-air.6hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.1hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.mon.30S-90S", + "atmos.tas.tmaxavg-h2m-hxy-u.mon.30S-90S", + "atmos.tas.tminavg-h2m-hxy-u.mon.30S-90S", + "atmos.tnt.tavg-al-hxy-u.mon.GLB", + "atmos.tntrl.tavg-al-hxy-u.mon.GLB", + "atmos.tntrs.tavg-al-hxy-u.mon.GLB", + "atmos.ts.tavg-u-hxy-u.mon.30S-90S", + "atmos.ts.tpt-u-hxy-u.3hr.GLB", + "atmos.ts.tpt-u-hxy-u.6hr.GLB", + "atmos.ua.tavg-al-hxy-u.mon.GLB", + "atmos.ua.tavg-p19-hxy-air.mon.30S-90S", + "atmos.ua.tavg-p39-hy-air.mon.GLB", + "atmos.ua.tpt-al-hxy-u.6hr.GLB", + "atmos.ua.tpt-h100m-hxy-u.1hr.GLB", + "atmos.ua.tpt-p5u-hxy-air.6hr.GLB", + "atmos.ua.tpt-p7h-hxy-air.6hr.GLB", + "atmos.uas.tavg-h10m-hxy-u.mon.30S-90S", + "atmos.uas.tpt-h10m-hxy-u.1hr.GLB", + "atmos.uas.tpt-h10m-hxy-u.6hr.GLB", + "atmos.va.tavg-al-hxy-u.mon.GLB", + "atmos.va.tavg-p19-hxy-air.mon.30S-90S", + "atmos.va.tavg-p39-hy-air.mon.GLB", + "atmos.va.tpt-al-hxy-u.6hr.GLB", + "atmos.va.tpt-h100m-hxy-u.1hr.GLB", + "atmos.va.tpt-p5u-hxy-air.6hr.GLB", + "atmos.va.tpt-p7h-hxy-air.6hr.GLB", + "atmos.vas.tavg-h10m-hxy-u.mon.30S-90S", + "atmos.vas.tpt-h10m-hxy-u.1hr.GLB", + "atmos.vas.tpt-h10m-hxy-u.6hr.GLB", + "atmos.wap.tavg-p19-hxy-air.mon.30S-90S", + "atmos.wsg.tmax-h100m-hxy-u.1hr.GLB", + "atmos.wsg.tmax-h10m-hxy-u.1hr.GLB", + "atmos.zg.tavg-1000hPa-hxy-air.day.GLB", + "atmos.zg.tavg-500hPa-hxy-air.day.GLB", + "atmos.zg.tavg-al-hxy-u.mon.GLB", + "atmos.zg.tavg-p19-hxy-air.mon.30S-90S", + "atmos.zg.tavg-p39-hy-air.mon.GLB", + "atmos.zg.tpt-500hPa-hxy-air.6hr.GLB", + "atmos.zg.tpt-al-hxy-u.6hr.GLB", + "atmos.zg.tpt-p3-hxy-air.6hr.GLB", + "atmos.zg.tpt-p7h-hxy-air.6hr.GLB", + "atmos.ztp.tavg-u-hxy-u.mon.GLB", + "atmosChem.c2h4.tavg-al-hxy-u.mon.GLB", + "atmosChem.c2h5oh.tavg-al-hxy-u.mon.GLB", + "atmosChem.c4h10.tavg-al-hxy-u.mon.GLB", + "atmosChem.cfc11.tavg-u-hm-u.mon.GLB", + "atmosChem.cfc113.tavg-u-hm-u.mon.GLB", + "atmosChem.cfc12.tavg-u-hm-u.mon.GLB", + "atmosChem.ch3oh.tavg-al-hxy-u.mon.GLB", + "atmosChem.ch4.tavg-al-hxy-u.mon.GLB", + "atmosChem.ch4.tavg-p39-hy-air.mon.GLB", + "atmosChem.ch4losssoil.tavg-u-hxy-u.mon.GLB", + "atmosChem.ch4ref.ti-al-hxy-u.fx.GLB", + "atmosChem.chegph2oo1d.tavg-al-hxy-u.mon.GLB", + "atmosChem.chepnh4.tavg-al-hxy-u.mon.GLB", + "atmosChem.chepno3.tavg-al-hxy-u.mon.GLB", + "atmosChem.dms.tavg-al-hxy-u.mon.30S-90S", + "atmosChem.dms.tavg-al-hxy-u.mon.GLB", + "atmosChem.do3chm.tavg-al-hxy-u.mon.GLB", + "atmosChem.dryh2.tavg-u-hxy-u.mon.GLB", + "atmosChem.dryhno3.tavg-u-hxy-u.mon.GLB", + "atmosChem.drynh3.tavg-u-hxy-u.mon.GLB", + "atmosChem.drynh4.tavg-u-hxy-u.mon.GLB", + "atmosChem.drynoy.tavg-u-hxy-u.mon.GLB", + "atmosChem.e90inst.tpt-al-hxy-u.mon.GLB", + "atmosChem.emiach4.tavg-u-hxy-u.mon.GLB", + "atmosChem.emiavnox.tavg-al-hxy-u.mon.GLB", + "atmosChem.emic2h4.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic2h5oh.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic2h6.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic3h6.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic3h8.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic4h10.tavg-u-hxy-u.mon.GLB", + "atmosChem.emich3oh.tavg-u-hxy-u.mon.GLB", + "atmosChem.emich4.tavg-u-hxy-u.mon.GLB", + "atmosChem.emih2.tavg-u-hxy-u.mon.GLB", + "atmosChem.emilkch4.tavg-u-hxy-u.mon.GLB", + "atmosChem.h2.tavg-al-hxy-u.mon.GLB", + "atmosChem.h2loss.tavg-al-hxy-u.mon.GLB", + "atmosChem.h2prod.tavg-al-hxy-u.mon.GLB", + "atmosChem.hcfc22.tavg-u-hm-u.mon.GLB", + "atmosChem.meanage.tavg-al-hxy-u.mon.GLB", + "atmosChem.meanage.tavg-p39-hy-air.mon.GLB", + "atmosChem.n2o.tavg-al-hxy-u.mon.GLB", + "atmosChem.n2o.tavg-p39-hy-air.mon.GLB", + "atmosChem.o3.tavg-al-hxy-u.mon.GLB", + "atmosChem.o3.tavg-p19-hxy-air.mon.GLB", + "atmosChem.o3.tavg-p39-hy-air.mon.GLB", + "atmosChem.o3.tpt-al-hxy-u.mon.GLB", + "atmosChem.o3ref.tclm-al-hxy-u.fx.GLB", + "atmosChem.o3ref.ti-al-hxy-u.fx.GLB", + "atmosChem.o3ste.tavg-al-hxy-u.mon.GLB", + "atmosChem.rlutch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rlutcsch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rlutcso3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rluto3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsutch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsutcsch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsutcso3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsuto3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.stratch4loss.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropch4loss.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropch4lossoh.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropdo3chm.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropo3ste.tavg-al-hxy-u.mon.GLB", + "atmosChem.wethno3.tavg-al-hxy-u.mon.GLB", + "atmosChem.wetnh3.tavg-u-hxy-u.mon.GLB", + "atmosChem.wetnh4.tavg-u-hxy-u.mon.GLB", + "atmosChem.wetno3.tavg-al-hxy-u.mon.GLB", + "atmosChem.wetnoy.tavg-u-hxy-u.mon.GLB", + "land.albc.tavg-u-hxy-veg.mon.GLB", + "land.areacellr.ti-u-hxy-u.fx.GLB", + "land.baresoilFrac.tavg-u-hxy-u.mon.GLB", + "land.burntFractionAll.tavg-u-hxy-u.mon.GLB", + "land.cGeologicStorage.tavg-u-hxy-u.mon.GLB", + "land.cLand.tavg-u-hxy-lnd.mon.GLB", + "land.cLeaf.tavg-u-hxy-lnd.mon.GLB", + "land.cLitter.tavg-u-hxy-lnd.mon.GLB", + "land.cnc.tavg-u-hxy-u.mon.GLB", + "land.cProduct.tavg-u-hxy-lnd.mon.GLB", + "land.cRoot.tavg-u-hxy-lnd.mon.GLB", + "land.cropFrac.tavg-u-hxy-u.mon.GLB", + "land.cSoil.tavg-d100cm-hxy-lnd.mon.GLB", + "land.cSoil.tavg-u-hxy-lnd.mon.GLB", + "land.cStem.tavg-u-hxy-lnd.mon.GLB", + "land.cVeg.tavg-u-hxy-lnd.mon.GLB", + "land.dcw.tavg-u-hxy-lnd.day.GLB", + "land.dslw.tavg-u-hxy-lnd.day.GLB", + "land.evspsblpot.tavg-u-hxy-lnd.day.GLB", + "land.evspsblpot.tavg-u-hxy-lnd.mon.GLB", + "land.evspsblsoi.tavg-u-hxy-u.day.GLB", + "land.evspsblveg.tavg-u-hxy-u.day.GLB", + "land.fAnthDisturb.tavg-u-hxy-lnd.mon.GLB", + "land.fBNF.tavg-u-hxy-lnd.mon.GLB", + "land.fCLandToOcean.tavg-u-hxy-lnd.mon.GLB", + "land.fDeforestToAtmos.tavg-u-hxy-lnd.mon.GLB", + "land.fDeforestToProduct.tavg-u-hxy-lnd.mon.GLB", + "land.fFire.tavg-u-hxy-lnd.mon.GLB", + "land.fFireAll.tavg-u-hxy-lnd.mon.GLB", + "land.fFireNat.tavg-u-hxy-lnd.mon.GLB", + "land.fHarvestToAtmos.tavg-u-hxy-lnd.mon.GLB", + "land.fHarvestToGeologicStorage.tavg-u-hxy-lnd.mon.GLB", + "land.fHarvestToProduct.tavg-u-hxy-lnd.mon.GLB", + "land.fLitterSoil.tavg-u-hxy-lnd.mon.GLB", + "land.fLuc.tavg-u-hxy-lnd.mon.GLB", + "land.fN2O.tavg-u-hxy-lnd.mon.GLB", + "land.fNAnthDisturb.tavg-u-hxy-lnd.mon.GLB", + "land.fNdep.tavg-u-hxy-lnd.mon.GLB", + "land.fNfert.tavg-u-hxy-lnd.mon.GLB", + "land.fNgas.tavg-u-hxy-lnd.mon.GLB", + "land.fNgasFire.tavg-u-hxy-lnd.mon.GLB", + "land.fNLandToOcean.tavg-u-hxy-lnd.mon.GLB", + "land.fNleach.tavg-u-hxy-lnd.mon.GLB", + "land.fNLitterSoil.tavg-u-hxy-lnd.mon.GLB", + "land.fNloss.tavg-u-hxy-lnd.mon.GLB", + "land.fNnetmin.tavg-u-hxy-lnd.mon.GLB", + "land.fNOx.tavg-u-hxy-lnd.mon.GLB", + "land.fNProduct.tavg-u-hxy-lnd.mon.GLB", + "land.fNup.tavg-u-hxy-lnd.mon.GLB", + "land.fNVegLitter.tavg-u-hxy-lnd.mon.GLB", + "land.fNVegSoil.tavg-u-hxy-lnd.mon.GLB", + "land.fProductDecomp.tavg-u-hxy-lnd.mon.GLB", + "land.fVegLitter.tavg-u-hxy-lnd.mon.GLB", + "land.fVegSoil.tavg-u-hxy-lnd.mon.GLB", + "land.gpp.tavg-u-hxy-lnd.mon.GLB", + "land.grassFrac.tavg-u-hxy-u.mon.GLB", + "land.landCoverFrac.tavg-u-hxy-u.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.day.GLB", + "land.mrrob.tavg-u-hxy-lnd.day.GLB", + "land.mrros.tavg-u-hxy-lnd.day.GLB", + "land.mrsfl.tavg-sl-hxy-lnd.day.GLB", + "land.mrsfl.tavg-sl-hxy-lnd.mon.GLB", + "land.mrsll.tavg-sl-hxy-lnd.day.GLB", + "land.mrsll.tavg-sl-hxy-lnd.mon.GLB", + "land.mrso.tavg-u-hxy-lnd.day.GLB", + "land.mrsol.tavg-d10cm-hxy-lnd.day.GLB", + "land.mrsol.tavg-sl-hxy-lnd.day.GLB", + "land.mrsol.tavg-sl-hxy-lnd.mon.GLB", + "land.mrsow.tavg-u-hxy-lnd.day.GLB", + "land.mrtws.tavg-u-hxy-lnd.day.GLB", + "land.mrtws.tavg-u-hxy-lnd.mon.GLB", + "land.nbp.tavg-u-hxy-lnd.mon.GLB", + "land.nep.tavg-u-hxy-lnd.mon.GLB", + "land.nLand.tavg-u-hxy-lnd.mon.GLB", + "land.nLitter.tavg-u-hxy-lnd.mon.GLB", + "land.nMineral.tavg-u-hxy-lnd.mon.GLB", + "land.npp.tavg-u-hxy-lnd.mon.GLB", + "land.nProduct.tavg-u-hxy-lnd.mon.GLB", + "land.nSoil.tavg-u-hxy-lnd.mon.GLB", + "land.nVeg.tavg-u-hxy-lnd.mon.GLB", + "land.pastureFrac.tavg-u-hxy-u.mon.GLB", + "land.prveg.tavg-u-hxy-lnd.mon.GLB", + "land.ra.tavg-u-hxy-lnd.mon.GLB", + "land.residualFrac.tavg-u-hxy-u.mon.GLB", + "land.rh.tavg-u-hxy-lnd.mon.GLB", + "land.rivi.tavg-u-hxy-lnd.day.GLB", + "land.rivo.tavg-u-hxy-lnd.day.GLB", + "land.rsds.tavg-u-hxy-sn.mon.GLB", + "land.rsus.tavg-u-hxy-sn.mon.GLB", + "land.shrubFrac.tavg-u-hxy-u.mon.GLB", + "land.tas.tavg-u-hxy-u.1hr.GLB", + "land.tran.tavg-u-hxy-lnd.mon.GLB", + "land.treeFrac.tavg-u-hxy-u.mon.GLB", + "land.tsl.tavg-sl-hxy-lnd.mon.GLB", + "land.tslsi.tavg-u-hxy-u.day.GLB", + "land.vegFrac.tavg-u-hxy-u.mon.GLB", + "land.vegHeight.tavg-u-hxy-tree.mon.GLB", + "land.vegHeight.tavg-u-hxy-veg.mon.GLB", + "land.wetlandCH4.tavg-u-hxy-lnd.mon.GLB", + "land.wtd.tavg-u-hxy-lnd.day.GLB", + "landIce.pflw.tavg-u-hxy-lnd.mon.GLB", + "landIce.snd.tavg-u-hxy-lnd.mon.GLB", + "landIce.snm.tavg-u-hxy-lnd.mon.GLB", + "landIce.snw.tavg-u-hxy-lnd.day.GLB", + "landIce.sootsn.tavg-u-hxy-lnd.mon.GLB", + "landIce.tpf.tavg-u-hxy-lnd.mon.GLB", + "ocean.absscint.tavg-op4-hxy-sea.mon.GLB", + "ocean.agessc.tavg-ol-hxy-sea.mon.GLB", + "ocean.bigthetao.tavg-ol-hm-sea.mon.GLB", + "ocean.bigthetao.tavg-ol-hxy-sea.dec.GLB", + "ocean.bigthetao.tavg-op20bar-hxy-sea.day.GLB", + "ocean.chcint.tavg-op4-hxy-sea.mon.GLB", + "ocean.ficeberg.tavg-ol-hxy-sea.mon.GLB", + "ocean.friver.tavg-u-hxy-sea.mon.GLB", + "ocean.hfbasin.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpmadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpmdiff.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpsmadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfds.tavg-u-hxy-sea.mon.30S-90S", + "ocean.hfx.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfx.tavg-u-hxy-sea.day.GLB", + "ocean.hfx.tavg-u-hxy-sea.mon.GLB", + "ocean.hfy.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfy.tavg-u-hxy-sea.day.GLB", + "ocean.hfy.tavg-u-hxy-sea.mon.GLB", + "ocean.htovgyre.tavg-u-hyb-sea.mon.GLB", + "ocean.htovovrt.tavg-u-hyb-sea.mon.GLB", + "ocean.masscello.tavg-ol-hxy-sea.dec.GLB", + "ocean.masso.tavg-u-hm-sea.dec.GLB", + "ocean.masso.tavg-u-hm-sea.mon.GLB", + "ocean.mlotst.tavg-u-hxy-sea.day.GLB", + "ocean.mlotst.tavg-u-hxy-sea.mon.30S-90S", + "ocean.mlotst.tmax-u-hxy-sea.mon.GLB", + "ocean.mlotst.tmin-u-hxy-sea.mon.GLB", + "ocean.mpw.tavg-u-hxy-sea.mon.GLB", + "ocean.mpw.tpt-u-hxy-sea.3hr.GLB", + "ocean.mpwswell.tavg-u-hxy-sea.mon.GLB", + "ocean.mpwswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.mpwwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.mpwwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.msftbarot.tavg-u-hxy-sea.mon.GLB", + "ocean.msftm.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftm.tavg-rho-hyb-sea.mon.GLB", + "ocean.msfty.tavg-ol-ht-sea.mon.GLB", + "ocean.msfty.tavg-rho-ht-sea.mon.GLB", + "ocean.obvfsq.tavg-ol-hxy-sea.mon.GLB", + "ocean.pbo.tavg-u-hxy-sea.mon.GLB", + "ocean.pfscint.tavg-op4-hxy-sea.mon.GLB", + "ocean.phcint.tavg-op4-hxy-sea.mon.GLB", + "ocean.pso.tavg-u-hxy-sea.mon.GLB", + "ocean.scint.tavg-op4-hxy-sea.mon.GLB", + "ocean.sduo.tavg-u-hxy-sea.mon.GLB", + "ocean.sduo.tpt-u-hxy-sea.3hr.GLB", + "ocean.sdvo.tavg-u-hxy-sea.mon.GLB", + "ocean.sdvo.tpt-u-hxy-sea.3hr.GLB", + "ocean.sfx.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfx.tavg-u-hxy-sea.mon.GLB", + "ocean.sfy.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfy.tavg-u-hxy-sea.mon.GLB", + "ocean.sltbasin.tavg-u-hyb-sea.mon.GLB", + "ocean.sltovgyre.tavg-u-hyb-sea.mon.GLB", + "ocean.sltovovrt.tavg-u-hyb-sea.mon.GLB", + "ocean.so.tavg-ol-hm-sea.mon.GLB", + "ocean.so.tavg-ol-hxy-sea.dec.GLB", + "ocean.so.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.sob.tavg-u-hxy-sea.mon.GLB", + "ocean.sos.tavg-u-hm-sea.mon.30S-90S", + "ocean.sos.tavg-u-hm-sea.mon.GLB", + "ocean.swh.tavg-u-hxy-sea.mon.GLB", + "ocean.swh.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhmax.tmax-u-hxy-sea.mon.GLB", + "ocean.swhmax.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhswell.tavg-u-hxy-sea.mon.GLB", + "ocean.swhswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.swhwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.t20d.tavg-u-hxy-sea.mon.GLB", + "ocean.tauuo.tavg-u-hxy-sea.3hr.GLB", + "ocean.tauuo.tavg-u-hxy-sea.dec.GLB", + "ocean.tauvo.tavg-u-hxy-sea.3hr.GLB", + "ocean.tauvo.tavg-u-hxy-sea.dec.GLB", + "ocean.thetao.tavg-d2000m-hxy-sea.mon.GLB", + "ocean.thetao.tavg-d300m-hxy-sea.mon.GLB", + "ocean.thetao.tavg-d700m-hxy-sea.mon.GLB", + "ocean.thetao.tavg-ol-hm-sea.mon.GLB", + "ocean.thetao.tavg-ol-hxy-sea.dec.GLB", + "ocean.thetao.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.thetao.tavg-op20bar-hxy-sea.day.GLB", + "ocean.thetaot.tavg-u-hxy-sea.mon.GLB", + "ocean.thkcello.tavg-ol-hxy-sea.dec.GLB", + "ocean.tob.tavg-u-hxy-sea.mon.GLB", + "ocean.tos.tavg-u-hm-sea.mon.GLB", + "ocean.tos.tavg-u-hxy-sea.mon.30S-90S", + "ocean.tos.tpt-u-hxy-sea.3hr.GLB", + "ocean.tossq.tavg-u-hxy-sea.day.GLB", + "ocean.umo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.uo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.uos.tavg-u-hxy-sea.day.GLB", + "ocean.vmo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.vo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.volcello.tavg-ol-hxy-sea.dec.GLB", + "ocean.volcello.tavg-ol-hxy-sea.mon.GLB", + "ocean.volcello.tavg-ol-hxy-sea.yr.GLB", + "ocean.volcello.ti-ol-hxy-sea.fx.GLB", + "ocean.volo.tavg-u-hm-sea.dec.GLB", + "ocean.volo.tavg-u-hm-sea.mon.GLB", + "ocean.vos.tavg-u-hxy-sea.day.GLB", + "ocean.vsf.tavg-u-hxy-sea.mon.GLB", + "ocean.wdir.tavg-u-hxy-sea.mon.GLB", + "ocean.wdir.tpt-u-hxy-sea.3hr.GLB", + "ocean.wdirswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wdirswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wdirwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wdirwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.wfcorr.tavg-u-hxy-sea.mon.GLB", + "ocean.wfo.tavg-u-hxy-sea.mon.GLB", + "ocean.wmo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.wo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.wpdir.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdir.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpdirswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdirswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpdirwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdirwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpp.tavg-u-hxy-sea.mon.GLB", + "ocean.wpp.tpt-u-hxy-sea.3hr.GLB", + "ocean.wppswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wppswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wppwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wppwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.zfullo.tavg-ol-hxy-sea.yr.GLB", + "ocean.zos.tavg-u-hxy-sea.mon.30S-90S", + "ocean.zossq.tavg-u-hxy-sea.mon.GLB", + "ocean.zostoga.tavg-u-hm-sea.day.GLB", + "ocnBgchem.bacc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.calc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chl.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chl.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.chl.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chlcalc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chldiat.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chldiat.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chldiaz.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chldiaz.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chlmisc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chlmisc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chlpico.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chlpico.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.detoc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dfe.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.dfe.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.dfe.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissic.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.dissic.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissoc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dmso.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.expc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.expcalc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.fgco2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fsfe.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fsn.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.graz.tavg-ol-hxy-sea.mon.30S-90S", + "ocnBgchem.icfriver.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intdic.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intdoc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intparag.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbfe.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbn.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbp.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbsi.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpcalcite.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpn2.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpoc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpp.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpp.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppcalc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppdiat.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppdiaz.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppmisc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppnitrate.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpppico.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.nh4.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.nh4.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.no3.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.no3.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.o2.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.ocfriver.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.ph.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.ph.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phyc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phyc.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.phyc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phycalc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phycalc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phydiat.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phydiat.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phydiaz.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phydiaz.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phymisc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phymisc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phypico.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phypico.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.po4.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.pp.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.si.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.spco2.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.spco2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.talk.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zmeso.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zmeso.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zmicro.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zmicro.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zmisc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zmisc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zooc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zooc.tavg-ol-hxy-sea.mon.GLB", + "seaIce.evspsbl.tavg-u-hxy-si.mon.GLB", + "seaIce.prra.tavg-u-hxy-si.mon.GLB", + "seaIce.prsn.tavg-u-hxy-si.mon.GLB", + "seaIce.rlds.tavg-u-hxy-si.mon.GLB", + "seaIce.rlus.tavg-u-hxy-si.mon.GLB", + "seaIce.rsds.tavg-u-hxy-si.day.GLB", + "seaIce.rsds.tavg-u-hxy-si.mon.GLB", + "seaIce.rsus.tavg-u-hxy-si.day.GLB", + "seaIce.rsus.tavg-u-hxy-si.mon.GLB", + "seaIce.sbl.tavg-u-hxy-si.mon.GLB", + "seaIce.siage.tavg-u-hxy-si.day.GLB", + "seaIce.siage.tavg-u-hxy-si.mon.30S-90S", + "seaIce.siarea.tavg-u-hm-u.mon.NH", + "seaIce.siarea.tavg-u-hm-u.mon.SH", + "seaIce.siconc.tavg-u-hxy-u.mon.30S-90S", + "seaIce.siconca.tavg-u-hxy-u.day.GLB", + "seaIce.siconca.tavg-u-hxy-u.mon.GLB", + "seaIce.sidconcdyn.tavg-u-hxy-sea.mon.GLB", + "seaIce.sidconcth.tavg-u-hxy-sea.mon.GLB", + "seaIce.sidmassdyn.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthsi.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthwat.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmeltbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmeltlat.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmelttop.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassth.tavg-u-hxy-si.mon.GLB", + "seaIce.sieqthick.tavg-u-hxy-si.mon.GLB", + "seaIce.siextent.tavg-u-hm-u.mon.NH", + "seaIce.siextent.tavg-u-hm-u.mon.SH", + "seaIce.siflcondbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflcondtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sifllattop.tavg-u-hxy-si.mon.GLB", + "seaIce.siflsensbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflsenstop.tavg-u-hxy-si.mon.GLB", + "seaIce.siflswdbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sihc.tavg-u-hxy-sea.mon.GLB", + "seaIce.sisndmassdyn.tavg-u-hxy-si.mon.GLB", + "seaIce.sisndmasssi.tavg-u-hxy-si.mon.GLB", + "seaIce.sisndmasswind.tavg-u-hxy-si.mon.GLB", + "seaIce.sisnhc.tavg-u-hxy-si.mon.GLB", + "seaIce.sisnmass.tavg-u-hm-u.mon.NH", + "seaIce.sisnmass.tavg-u-hm-u.mon.SH", + "seaIce.sispeed.tavg-u-hxy-si.day.GLB", + "seaIce.sispeed.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-si.day.GLB", + "seaIce.sithick.tavg-u-hxy-si.mon.30S-90S", + "seaIce.sitimefrac.tavg-u-hxy-sea.day.GLB", + "seaIce.sitimefrac.tavg-u-hxy-sea.mon.30S-90S", + "seaIce.siu.tavg-u-hxy-si.day.GLB", + "seaIce.siu.tavg-u-hxy-si.mon.30S-90S", + "seaIce.siv.tavg-u-hxy-si.day.GLB", + "seaIce.siv.tavg-u-hxy-si.mon.30S-90S", + "seaIce.sivol.tavg-u-hm-u.mon.NH", + "seaIce.sivol.tavg-u-hm-u.mon.SH", + "seaIce.snc.tavg-u-hxy-si.mon.GLB", + "seaIce.snd.tavg-u-hxy-sn.day.GLB", + "seaIce.snd.tavg-u-hxy-sn.mon.30S-90S", + "seaIce.snm.tavg-u-hxy-si.mon.GLB", + "seaIce.snw.tavg-u-hxy-si.mon.GLB", + "seaIce.ts.tavg-u-hxy-si.day.GLB", + "seaIce.ts.tavg-u-hxy-si.mon.30S-90S" + ], + "Medium": [ + "atmos.co2.tavg-h2m-hxy-u.mon.GLB", + "atmos.epfy.tavg-p39-hy-air.mon.GLB", + "atmos.epfz.tavg-p39-hy-air.mon.GLB", + "atmos.hur.tavg-700hPa-hxy-air.day.GLB", + "atmos.hur.tpt-100hPa-hxy-u.6hr.GLB", + "atmos.hur.tpt-500hPa-hxy-air.6hr.GLB", + "atmos.hur.tpt-850hPa-hxy-air.6hr.GLB", + "atmos.noaahi2m.tavg-h2m-hxy-u.day.GLB", + "atmos.noaahi2m.tmax-h2m-hxy-u.day.GLB", + "atmos.pr.tavg-u-hxy-u.6hr.GLB", + "atmos.pr.tmax-u-hxy-u.6hr.GLB", + "atmos.ps.tpt-u-hxy-u.1hr.GLB", + "atmos.ps.tpt-u-hxy-u.3hr.GLB", + "atmos.psl.tavg-u-hxy-u.6hr.GLB", + "atmos.rldscs.tavg-u-hxy-u.day.GLB", + "atmos.rls.tavg-u-hxy-u.day.GLB", + "atmos.rsdsdiff.tavg-u-hxy-u.1hr.GLB", + "atmos.rss.tavg-u-hxy-u.day.GLB", + "atmos.rv850.tavg-850hPa-hxy-air.6hr.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.1hr.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.3hr.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.6hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.6hr.GLB", + "atmos.tauu.tavg-u-hxy-u.day.GLB", + "atmos.tauv.tavg-u-hxy-u.day.GLB", + "atmos.tdps.tavg-h2m-hxy-u.day.GLB", + "atmos.tdps.tavg-h2m-hxy-u.mon.GLB", + "atmos.ts.tavg-u-hxy-u.1hr.GLB", + "atmos.ts.tavg-u-hxy-u.day.GLB", + "atmos.ua.tavg-h100m-hxy-u.3hr.GLB", + "atmos.ua.tpt-200hPa-hxy-u.6hr.GLB", + "atmos.uas.tavg-h10m-hxy-u.6hr.GLB", + "atmos.utendepfd.tavg-p39-hy-air.mon.GLB", + "atmos.va.tavg-h100m-hxy-u.3hr.GLB", + "atmos.va.tpt-200hPa-hxy-u.6hr.GLB", + "atmos.vas.tavg-h10m-hxy-u.6hr.GLB", + "atmos.vtem.tavg-p39-hy-air.mon.GLB", + "atmos.wbgt.tavg-h2m-hxy-u.day.GLB", + "atmos.wbgt.tmax-h2m-hxy-u.day.GLB", + "atmos.wsg.tmax-h100m-hxy-u.mon.GLB", + "atmos.wsg.tmax-h10m-hxy-u.mon.GLB", + "atmos.wtem.tavg-p39-hy-air.mon.GLB", + "atmos.zg.tavg-1000hPa-hxy-air.6hr.GLB", + "atmos.zg.tpt-700hPa-hxy-u.6hr.GLB", + "atmos.zg.tpt-925hPa-hxy-u.6hr.GLB", + "land.baresoilFrac.tavg-u-hxy-u.yr.GLB", + "land.cLitterCwd.tavg-u-hxy-lnd.mon.GLB", + "land.cLitterSubSurf.tavg-u-hxy-lnd.mon.GLB", + "land.cLitterSurf.tavg-u-hxy-lnd.mon.GLB", + "land.cOther.tavg-u-hxy-lnd.mon.GLB", + "land.cropFrac.tavg-u-hxy-u.yr.GLB", + "land.cropFracC3.tavg-u-hxy-u.mon.GLB", + "land.cropFracC4.tavg-u-hxy-u.mon.GLB", + "land.cSoil.tavg-sl-hxy-lnd.mon.GLB", + "land.cSoilPools.tavg-u-hxy-lnd.mon.GLB", + "land.cVeg.tavg-u-hxy-ng.mon.GLB", + "land.cVeg.tavg-u-hxy-shb.mon.GLB", + "land.cVeg.tavg-u-hxy-tree.mon.GLB", + "land.fLitterFire.tavg-u-hxy-lnd.mon.GLB", + "land.fNgasNonFire.tavg-u-hxy-lnd.mon.GLB", + "land.fVegFire.tavg-u-hxy-lnd.mon.GLB", + "land.fVegLitterMortality.tavg-u-hxy-lnd.mon.GLB", + "land.fVegLitterSenescence.tavg-u-hxy-lnd.mon.GLB", + "land.fVegSoilMortality.tavg-u-hxy-lnd.mon.GLB", + "land.fVegSoilSenescence.tavg-u-hxy-lnd.mon.GLB", + "land.gpp.tavg-u-hxy-ng.mon.GLB", + "land.gpp.tavg-u-hxy-shb.mon.GLB", + "land.gpp.tavg-u-hxy-tree.mon.GLB", + "land.grassFrac.tavg-u-hxy-u.yr.GLB", + "land.grassFracC3.tavg-u-hxy-u.mon.GLB", + "land.grassFracC4.tavg-u-hxy-u.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.3hr.GLB", + "land.mrros.tavg-u-hxy-lnd.3hr.GLB", + "land.mrsol.tpt-d10cm-hxy-lnd.3hr.GLB", + "land.nLeaf.tavg-u-hxy-lnd.mon.GLB", + "land.nLitterCwd.tavg-u-hxy-lnd.mon.GLB", + "land.nLitterSubSurf.tavg-u-hxy-lnd.mon.GLB", + "land.nLitterSurf.tavg-u-hxy-lnd.mon.GLB", + "land.nMineralNH4.tavg-u-hxy-lnd.mon.GLB", + "land.nMineralNO3.tavg-u-hxy-lnd.mon.GLB", + "land.nOther.tavg-u-hxy-lnd.mon.GLB", + "land.npp.tavg-u-hxy-ng.mon.GLB", + "land.npp.tavg-u-hxy-shb.mon.GLB", + "land.npp.tavg-u-hxy-tree.mon.GLB", + "land.nppLeaf.tavg-u-hxy-lnd.mon.GLB", + "land.nppOther.tavg-u-hxy-lnd.mon.GLB", + "land.nppRoot.tavg-u-hxy-lnd.mon.GLB", + "land.nppStem.tavg-u-hxy-lnd.mon.GLB", + "land.nRoot.tavg-u-hxy-lnd.mon.GLB", + "land.nStem.tavg-u-hxy-lnd.mon.GLB", + "land.pastureFracC3.tavg-u-hxy-u.mon.GLB", + "land.pastureFracC4.tavg-u-hxy-u.mon.GLB", + "land.ra.tavg-u-hxy-ng.mon.GLB", + "land.ra.tavg-u-hxy-shb.mon.GLB", + "land.ra.tavg-u-hxy-tree.mon.GLB", + "land.raLeaf.tavg-u-hxy-lnd.mon.GLB", + "land.raOther.tavg-u-hxy-lnd.mon.GLB", + "land.raRoot.tavg-u-hxy-lnd.mon.GLB", + "land.raStem.tavg-u-hxy-lnd.mon.GLB", + "land.residualFrac.tavg-u-hxy-u.yr.GLB", + "land.rh.tavg-u-hxy-ng.mon.GLB", + "land.rh.tavg-u-hxy-shb.mon.GLB", + "land.rh.tavg-u-hxy-tree.mon.GLB", + "land.rhLitter.tavg-u-hxy-lnd.mon.GLB", + "land.rhSoil.tavg-u-hxy-lnd.mon.GLB", + "land.shrubFrac.tavg-u-hxy-u.yr.GLB", + "land.treeFrac.tavg-u-hxy-u.yr.GLB", + "land.treeFracBdlDcd.tavg-u-hxy-u.mon.GLB", + "land.treeFracBdlEvg.tavg-u-hxy-u.mon.GLB", + "land.treeFracNdlDcd.tavg-u-hxy-u.mon.GLB", + "land.treeFracNdlEvg.tavg-u-hxy-u.mon.GLB", + "land.tsl.tavg-sl-hxy-lnd.day.GLB", + "land.vegFrac.tavg-u-hxy-u.yr.GLB", + "land.vegHeight.tavg-u-hxy-ng.mon.GLB", + "land.vegHeight.tavg-u-hxy-shb.mon.GLB", + "land.wetlandCH4cons.tavg-u-hxy-lnd.mon.GLB", + "land.wetlandCH4prod.tavg-u-hxy-lnd.mon.GLB", + "land.wetlandFrac.tavg-u-hxy-u.mon.GLB", + "landIce.snd.tavg-u-hxy-lnd.day.GLB", + "ocean.evspsbl.tavg-u-hxy-ifs.mon.GLB", + "ocean.ficeberg.tavg-u-hxy-sea.mon.GLB", + "ocean.hfacrossline.tavg-u-ht-sea.mon.GLB", + "ocean.hfevapds.tavg-u-hxy-ifs.mon.GLB", + "ocean.hfibthermds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfibthermds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfrainds.tavg-u-hxy-ifs.mon.GLB", + "ocean.hfrunoffds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfrunoffds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfsnthermds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfsnthermds.tavg-u-hxy-sea.mon.GLB", + "ocean.mfo.tavg-u-ht-sea.mon.GLB", + "ocean.msftmmpa.tavg-ol-hyb-sea.mon.GLB", + "ocean.sf6.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfacrossline.tavg-u-ht-sea.mon.GLB", + "ocean.sfdsi.tavg-u-hxy-sea.mon.GLB", + "ocean.sfriver.tavg-u-hxy-sea.mon.GLB", + "ocean.siflfwbot.tavg-u-hxy-sea.mon.GLB", + "ocean.so.tavg-ol-hxy-sea.day.GLB", + "ocean.t20d.tavg-u-hxy-sea.day.GLB", + "ocean.tnkebto.tavg-u-hxy-sea.yr.GLB", + "ocean.vsfcorr.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfevap.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfpr.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfriver.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfsit.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.arag.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.arag.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.calc.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.calc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chl.tavg-d0m-hxy-sea.day.GLB", + "ocnBgchem.chl.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.chlcalc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.co3.tavg-d0m-hxy-sea.day.GLB", + "ocnBgchem.co3.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.co3satarag.tavg-d0m-hxy-sea.day.GLB", + "ocnBgchem.co3satarag.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.dmso.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.epn.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.epp.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.epsi.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.expc.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.expcalc.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.fgdms.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fric.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.froc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.graz.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.intpp.tavg-u-hxy-sea.day.GLB", + "ocnBgchem.intppcalc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppdiat.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppdiaz.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppmisc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppnitrate.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intpppico.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.no3.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.o2.tavg-d0m-hxy-sea.day.GLB", + "ocnBgchem.o2.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.o2.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.ph.tavg-d0m-hxy-sea.day.GLB", + "ocnBgchem.ph.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.phyc.tavg-d0m-hxy-sea.day.GLB", + "ocnBgchem.phyc.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.pp.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.si.tavg-d0m-hxy-sea.mon.GLB", + "seaIce.sfdsi.tavg-u-hxy-si.mon.GLB", + "seaIce.siage.tavg-u-hxy-si.mon.GLB", + "seaIce.siarea.tavg-u-hm-u.day.NH", + "seaIce.siarea.tavg-u-hm-u.day.SH", + "seaIce.siareaacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.sicompstren.tavg-u-hxy-si.mon.GLB", + "seaIce.sidivvel.tpt-u-hxy-si.mon.GLB", + "seaIce.sidmasstranx.tavg-u-hxy-u.mon.GLB", + "seaIce.sidmasstrany.tavg-u-hxy-u.mon.GLB", + "seaIce.sidragbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidragtop.tavg-u-hxy-si.mon.GLB", + "seaIce.siextent.tavg-u-hm-u.day.NH", + "seaIce.siextent.tavg-u-hm-u.day.SH", + "seaIce.sifb.tavg-u-hxy-si.mon.GLB", + "seaIce.siflfwbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflfwdrain.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcecoriolx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcecorioly.tavg-u-hxy-si.mon.GLB", + "seaIce.siforceintstrx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforceintstry.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcetiltx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcetilty.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdconc.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdsnconc.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdsnthick.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdthick.tavg-u-hxy-si.mon.GLB", + "seaIce.simassacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.simpconc.tavg-u-hxy-si.mon.GLB", + "seaIce.simpeffconc.tavg-u-hxy-si.mon.GLB", + "seaIce.simprefrozen.tavg-u-hxy-simp.mon.GLB", + "seaIce.simpthick.tavg-u-hxy-simp.mon.GLB", + "seaIce.sirdgconc.tavg-u-hxy-si.mon.GLB", + "seaIce.sisali.tavg-u-hxy-si.mon.GLB", + "seaIce.sisaltmass.tavg-u-hxy-si.mon.GLB", + "seaIce.sishearvel.tpt-u-hxy-si.mon.GLB", + "seaIce.sisnmass.tavg-u-hm-u.day.NH", + "seaIce.sisnmass.tavg-u-hm-u.day.SH", + "seaIce.sisnmassacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.sistressave.tpt-u-hxy-si.mon.GLB", + "seaIce.sistressmax.tpt-u-hxy-si.mon.GLB", + "seaIce.sistrxdtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sistrxubot.tavg-u-hxy-si.mon.GLB", + "seaIce.sistrydtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sistryubot.tavg-u-hxy-si.mon.GLB", + "seaIce.sitempbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sitempsnic.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-sir.mon.GLB", + "seaIce.sivol.tavg-u-hm-u.day.NH", + "seaIce.sivol.tavg-u-hm-u.day.SH" + ], + "Low": [ + "aerosol.sfpm1.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.sfpm10.tavg-h2m-hxy-u.1hr.GLB", + "atmos.hurs.tavg-h2m-hxy-u.1hr.GLB", + "atmosChem.drynh3.tavg-u-hxy-u.day.GLB", + "atmosChem.drynh4.tavg-u-hxy-u.day.GLB", + "atmosChem.drynoy.tavg-u-hxy-u.day.GLB", + "atmosChem.flashrate.tavg-u-hxy-u.mon.GLB", + "atmosChem.wetnh3.tavg-u-hxy-u.day.GLB", + "atmosChem.wetnh4.tavg-u-hxy-u.day.GLB", + "atmosChem.wetnoy.tavg-u-hxy-u.day.GLB", + "land.c13Land.tavg-u-hxy-lnd.mon.GLB", + "land.c13Litter.tavg-u-hxy-lnd.mon.GLB", + "land.c13Soil.tavg-u-hxy-lnd.mon.GLB", + "land.c13Veg.tavg-u-hxy-lnd.mon.GLB", + "land.c14Land.tavg-u-hxy-lnd.mon.GLB", + "land.c14Litter.tavg-u-hxy-lnd.mon.GLB", + "land.c14Soil.tavg-u-hxy-lnd.mon.GLB", + "land.c14Veg.tavg-u-hxy-lnd.mon.GLB", + "land.gppc13.tavg-u-hxy-lnd.mon.GLB", + "land.gppc14.tavg-u-hxy-lnd.mon.GLB", + "land.netAtmosLandC13Flux.tavg-u-hxy-lnd.mon.GLB", + "land.netAtmosLandC14Flux.tavg-u-hxy-lnd.mon.GLB", + "land.rac13.tavg-u-hxy-lnd.mon.GLB", + "land.rac14.tavg-u-hxy-lnd.mon.GLB", + "land.rhc13.tavg-u-hxy-lnd.mon.GLB", + "land.rhc14.tavg-u-hxy-lnd.mon.GLB", + "ocean.difmxybo.tavg-ol-hxy-sea.yr.GLB", + "ocean.difmxylo.tavg-ol-hxy-sea.yr.GLB", + "ocean.diftrblo.tavg-ol-hxy-sea.yr.GLB", + "ocean.diftrelo.tavg-ol-hxy-sea.yr.GLB", + "ocean.difvho.tavg-ol-hxy-sea.yr.GLB", + "ocean.difvso.tavg-ol-hxy-sea.yr.GLB", + "ocean.dispkexyfo.tavg-u-hxy-sea.yr.GLB", + "ocean.dxto.ti-u-hxy-u.fx.GLB", + "ocean.dxuo.ti-u-hxy-u.fx.GLB", + "ocean.dxvo.ti-u-hxy-u.fx.GLB", + "ocean.dyto.ti-u-hxy-u.fx.GLB", + "ocean.dyuo.ti-u-hxy-u.fx.GLB", + "ocean.dyvo.ti-u-hxy-u.fx.GLB", + "ocean.mlotstsq.tavg-u-hxy-sea.mon.GLB", + "ocean.msftmmpa.tavg-rho-hyb-sea.mon.GLB", + "ocean.msftmsmpa.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftypa.tavg-ol-ht-sea.mon.GLB", + "ocean.msftypa.tavg-rho-ht-sea.mon.GLB", + "ocean.ocontempdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontempmint.tavg-u-hxy-sea.yr.GLB", + "ocean.ocontemppadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemppmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemppsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemprmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemptend.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottempdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottempmint.tavg-u-hxy-sea.yr.GLB", + "ocean.opottemppadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemppmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemppsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemprmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemptend.tavg-ol-hxy-sea.dec.GLB", + "ocean.osaltdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpsmadvect.tavg-ol-hxy-sea.mon.GLB", + "ocean.osaltpsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltrmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osalttend.tavg-ol-hxy-sea.yr.GLB", + "ocean.rsdoabsorb.tavg-ol-hxy-sea.yr.GLB", + "ocean.somint.tavg-u-hxy-sea.yr.GLB", + "ocean.sossq.tavg-u-hxy-sea.mon.GLB", + "ocean.thkcelluo.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcellvo.tavg-ol-hxy-sea.mon.GLB", + "ocean.tnpeo.tavg-u-hxy-sea.yr.GLB", + "ocean.tossq.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.dissi13c.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.dissi13c.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissi14c.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissi14cabio.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.dissi14cabio.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.fg13co2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fg14co2abio.tavg-u-hxy-sea.mon.GLB" + ] + }, + "hist-irr": { + "Core": [ + "atmos.areacella.ti-u-hxy-u.fx.GLB", + "atmos.cl.tavg-al-hxy-u.mon.GLB", + "atmos.cli.tavg-al-hxy-u.mon.GLB", + "atmos.clivi.tavg-u-hxy-u.mon.GLB", + "atmos.clt.tavg-u-hxy-u.day.GLB", + "atmos.clt.tavg-u-hxy-u.mon.GLB", + "atmos.clw.tavg-al-hxy-u.mon.GLB", + "atmos.clwvi.tavg-u-hxy-u.mon.GLB", + "atmos.evspsbl.tavg-u-hxy-u.mon.GLB", + "atmos.hfls.tavg-u-hxy-u.mon.GLB", + "atmos.hfss.tavg-u-hxy-u.mon.GLB", + "atmos.hur.tavg-p19-hxy-air.mon.GLB", + "atmos.hur.tavg-p19-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.6hr.GLB", + "atmos.hurs.tavg-h2m-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.mon.GLB", + "atmos.hus.tavg-p19-hxy-u.day.GLB", + "atmos.hus.tavg-p19-hxy-u.mon.GLB", + "atmos.huss.tavg-h2m-hxy-u.day.GLB", + "atmos.huss.tavg-h2m-hxy-u.mon.GLB", + "atmos.huss.tpt-h2m-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.1hr.GLB", + "atmos.pr.tavg-u-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.day.GLB", + "atmos.pr.tavg-u-hxy-u.mon.GLB", + "atmos.prc.tavg-u-hxy-u.mon.GLB", + "atmos.prsn.tavg-u-hxy-u.mon.GLB", + "atmos.prw.tavg-u-hxy-u.mon.GLB", + "atmos.ps.tavg-u-hxy-u.day.GLB", + "atmos.ps.tavg-u-hxy-u.mon.GLB", + "atmos.psl.tavg-u-hxy-u.day.GLB", + "atmos.psl.tavg-u-hxy-u.mon.GLB", + "atmos.rlds.tavg-u-hxy-u.mon.GLB", + "atmos.rldscs.tavg-u-hxy-u.mon.GLB", + "atmos.rlus.tavg-u-hxy-u.mon.GLB", + "atmos.rluscs.tavg-u-hxy-u.mon.GLB", + "atmos.rlut.tavg-u-hxy-u.mon.GLB", + "atmos.rlutcs.tavg-u-hxy-u.mon.GLB", + "atmos.rsds.tavg-u-hxy-u.day.GLB", + "atmos.rsds.tavg-u-hxy-u.mon.GLB", + "atmos.rsdscs.tavg-u-hxy-u.mon.GLB", + "atmos.rsdt.tavg-u-hxy-u.mon.GLB", + "atmos.rsus.tavg-u-hxy-u.mon.GLB", + "atmos.rsuscs.tavg-u-hxy-u.mon.GLB", + "atmos.rsut.tavg-u-hxy-u.mon.GLB", + "atmos.rsutcs.tavg-u-hxy-u.mon.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.day.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.mon.GLB", + "atmos.sftlf.ti-u-hxy-u.fx.GLB", + "atmos.ta.tavg-p19-hxy-air.day.GLB", + "atmos.ta.tavg-p19-hxy-air.mon.GLB", + "atmos.ta.tpt-p3-hxy-air.6hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.day.GLB", + "atmos.tas.tavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tmax-h2m-hxy-u.day.GLB", + "atmos.tas.tmaxavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tmin-h2m-hxy-u.day.GLB", + "atmos.tas.tminavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tpt-h2m-hxy-u.3hr.GLB", + "atmos.tauu.tavg-u-hxy-u.mon.GLB", + "atmos.tauv.tavg-u-hxy-u.mon.GLB", + "atmos.ts.tavg-u-hxy-u.mon.GLB", + "atmos.ua.tavg-p19-hxy-air.day.GLB", + "atmos.ua.tavg-p19-hxy-air.mon.GLB", + "atmos.ua.tpt-p3-hxy-air.6hr.GLB", + "atmos.uas.tavg-h10m-hxy-u.day.GLB", + "atmos.uas.tavg-h10m-hxy-u.mon.GLB", + "atmos.uas.tpt-h10m-hxy-u.3hr.GLB", + "atmos.va.tavg-p19-hxy-air.day.GLB", + "atmos.va.tavg-p19-hxy-air.mon.GLB", + "atmos.va.tpt-p3-hxy-air.6hr.GLB", + "atmos.vas.tavg-h10m-hxy-u.day.GLB", + "atmos.vas.tavg-h10m-hxy-u.mon.GLB", + "atmos.vas.tpt-h10m-hxy-u.3hr.GLB", + "atmos.wap.tavg-p19-hxy-air.mon.GLB", + "atmos.wap.tavg-p19-hxy-u.day.GLB", + "atmos.zg.tavg-p19-hxy-air.day.GLB", + "atmos.zg.tavg-p19-hxy-air.mon.GLB", + "land.evspsblsoi.tavg-u-hxy-lnd.mon.GLB", + "land.evspsblveg.tavg-u-hxy-lnd.mon.GLB", + "land.lai.tavg-u-hxy-lnd.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.mon.GLB", + "land.mrros.tavg-u-hxy-lnd.mon.GLB", + "land.mrso.tavg-u-hxy-lnd.mon.GLB", + "land.mrsofc.ti-u-hxy-lnd.fx.GLB", + "land.mrsol.tavg-d10cm-hxy-lnd.mon.GLB", + "land.orog.ti-u-hxy-u.fx.GLB", + "land.rootd.ti-u-hxy-lnd.fx.GLB", + "land.sftgif.ti-u-hxy-u.fx.GLB", + "land.slthick.ti-sl-hxy-lnd.fx.GLB", + "landIce.mrfso.tavg-u-hxy-lnd.mon.GLB", + "landIce.snc.tavg-u-hxy-lnd.mon.GLB", + "landIce.snw.tavg-u-hxy-lnd.mon.GLB", + "ocean.areacello.ti-u-hxy-u.fx.GLB", + "ocean.basin.ti-u-hxy-u.fx.GLB", + "ocean.bigthetao.tavg-ol-hxy-sea.mon.GLB", + "ocean.deptho.ti-u-hxy-sea.fx.GLB", + "ocean.hfds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfgeou.ti-u-hxy-sea.fx.GLB", + "ocean.masscello.tavg-ol-hxy-sea.mon.GLB", + "ocean.masscello.ti-ol-hxy-sea.fx.GLB", + "ocean.mlotst.tavg-u-hxy-sea.mon.GLB", + "ocean.sftof.ti-u-hxy-u.fx.GLB", + "ocean.so.tavg-ol-hxy-sea.mon.GLB", + "ocean.sos.tavg-u-hxy-sea.day.GLB", + "ocean.sos.tavg-u-hxy-sea.mon.GLB", + "ocean.tauuo.tavg-u-hxy-sea.mon.GLB", + "ocean.tauvo.tavg-u-hxy-sea.mon.GLB", + "ocean.thetao.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcello.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcello.ti-ol-hxy-sea.fx.GLB", + "ocean.tos.tavg-u-hxy-sea.day.GLB", + "ocean.tos.tavg-u-hxy-sea.mon.GLB", + "ocean.umo.tavg-ol-hxy-sea.mon.GLB", + "ocean.uo.tavg-ol-hxy-sea.mon.GLB", + "ocean.vmo.tavg-ol-hxy-sea.mon.GLB", + "ocean.vo.tavg-ol-hxy-sea.mon.GLB", + "ocean.wmo.tavg-ol-hxy-sea.mon.GLB", + "ocean.wo.tavg-ol-hxy-sea.mon.GLB", + "ocean.zos.tavg-u-hxy-sea.day.GLB", + "ocean.zos.tavg-u-hxy-sea.mon.GLB", + "ocean.zostoga.tavg-u-hm-sea.mon.GLB", + "seaIce.siconc.tavg-u-hxy-u.day.GLB", + "seaIce.siconc.tavg-u-hxy-u.mon.GLB", + "seaIce.simass.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-si.mon.GLB", + "seaIce.sitimefrac.tavg-u-hxy-sea.mon.GLB", + "seaIce.siu.tavg-u-hxy-si.mon.GLB", + "seaIce.siv.tavg-u-hxy-si.mon.GLB", + "seaIce.snd.tavg-u-hxy-sn.mon.GLB", + "seaIce.ts.tavg-u-hxy-si.mon.GLB" + ], + "High": [ + "atmos.evspsbl.tavg-u-hxy-lnd.day.GLB", + "atmos.hurs.tmax-h2m-hxy-u.day.GLB", + "atmos.hurs.tmin-h2m-hxy-u.day.GLB", + "atmos.rlds.tavg-u-hxy-u.day.GLB", + "atmos.rlus.tavg-u-hxy-u.day.GLB", + "land.evspsblpot.tavg-u-hxy-lnd.day.GLB" + ], + "Medium": [ + "aerosol.o3.tmax-h2m-hxy-u.day.GLB", + "aerosol.sfpm1.tavg-h2m-hxy-u.day.GLB", + "aerosol.sfpm10.tavg-h2m-hxy-u.day.GLB", + "aerosol.sfpm25.tavg-h2m-hxy-u.day.GLB", + "atmos.rsdsdiff.tavg-u-hxy-u.day.GLB", + "land.irrDem.tavg-u-hxy-u.day.GLB", + "land.irrGw.tavg-u-hxy-u.day.GLB", + "land.irrLut.tavg-u-hxy-u.day.GLB", + "land.irrSurf.tavg-u-hxy-u.day.GLB", + "land.mrso.tavg-u-hxy-lnd.day.GLB", + "land.rzwc.tavg-u-hxy-lnd.day.GLB" + ], + "Low": [ + "atmos.co2.tavg-h2m-hxy-u.mon.GLB", + "atmos.hurs.tavg-h2m-hxy-u.1hr.GLB", + "atmos.hurs.tmin-h2m-hxy-crp.day.GLB", + "atmos.pr.tavg-u-hxy-crp.day.GLB", + "atmos.rsds.tavg-u-hxy-u.1hr.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.1hr.GLB", + "atmos.sfcWind.tmax-h10m-hxy-u.day.GLB", + "atmos.tas.tmax-h2m-hxy-crp.day.GLB", + "atmos.tas.tmin-h2m-hxy-crp.day.GLB", + "atmosChem.emich4.tavg-u-hxy-u.mon.GLB", + "land.c3PftFrac.tavg-u-hxy-u.mon.GLB", + "land.c4PftFrac.tavg-u-hxy-u.mon.GLB", + "land.cropFracC3.tavg-u-hxy-u.mon.GLB", + "land.cropFracC4.tavg-u-hxy-u.mon.GLB", + "land.cSoil.tavg-u-hxy-lnd.mon.GLB", + "land.fHarvestToAtmos.tavg-u-hxy-lnd.mon.GLB", + "land.irrLut.tavg-u-hxy-multi.mon.GLB", + "land.lai.tavg-u-hxy-lnd.day.GLB", + "land.pastureFrac.tavg-u-hxy-u.mon.GLB", + "land.pastureFracC3.tavg-u-hxy-u.mon.GLB", + "land.pastureFracC4.tavg-u-hxy-u.mon.GLB", + "land.tas.tavg-u-hxy-u.1hr.GLB" + ] + }, + "hist-nat": { + "Core": [ + "atmos.areacella.ti-u-hxy-u.fx.GLB", + "atmos.cl.tavg-al-hxy-u.mon.GLB", + "atmos.cli.tavg-al-hxy-u.mon.GLB", + "atmos.clivi.tavg-u-hxy-u.mon.GLB", + "atmos.clt.tavg-u-hxy-u.day.GLB", + "atmos.clt.tavg-u-hxy-u.mon.GLB", + "atmos.clw.tavg-al-hxy-u.mon.GLB", + "atmos.clwvi.tavg-u-hxy-u.mon.GLB", + "atmos.evspsbl.tavg-u-hxy-u.mon.GLB", + "atmos.hfls.tavg-u-hxy-u.mon.GLB", + "atmos.hfss.tavg-u-hxy-u.mon.GLB", + "atmos.hur.tavg-p19-hxy-air.mon.GLB", + "atmos.hur.tavg-p19-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.6hr.GLB", + "atmos.hurs.tavg-h2m-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.mon.GLB", + "atmos.hus.tavg-p19-hxy-u.day.GLB", + "atmos.hus.tavg-p19-hxy-u.mon.GLB", + "atmos.huss.tavg-h2m-hxy-u.day.GLB", + "atmos.huss.tavg-h2m-hxy-u.mon.GLB", + "atmos.huss.tpt-h2m-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.1hr.GLB", + "atmos.pr.tavg-u-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.day.GLB", + "atmos.pr.tavg-u-hxy-u.mon.GLB", + "atmos.prc.tavg-u-hxy-u.mon.GLB", + "atmos.prsn.tavg-u-hxy-u.mon.GLB", + "atmos.prw.tavg-u-hxy-u.mon.GLB", + "atmos.ps.tavg-u-hxy-u.day.GLB", + "atmos.ps.tavg-u-hxy-u.mon.GLB", + "atmos.psl.tavg-u-hxy-u.day.GLB", + "atmos.psl.tavg-u-hxy-u.mon.GLB", + "atmos.rlds.tavg-u-hxy-u.mon.GLB", + "atmos.rldscs.tavg-u-hxy-u.mon.GLB", + "atmos.rlus.tavg-u-hxy-u.mon.GLB", + "atmos.rluscs.tavg-u-hxy-u.mon.GLB", + "atmos.rlut.tavg-u-hxy-u.mon.GLB", + "atmos.rlutcs.tavg-u-hxy-u.mon.GLB", + "atmos.rsds.tavg-u-hxy-u.day.GLB", + "atmos.rsds.tavg-u-hxy-u.mon.GLB", + "atmos.rsdscs.tavg-u-hxy-u.mon.GLB", + "atmos.rsdt.tavg-u-hxy-u.mon.GLB", + "atmos.rsus.tavg-u-hxy-u.mon.GLB", + "atmos.rsuscs.tavg-u-hxy-u.mon.GLB", + "atmos.rsut.tavg-u-hxy-u.mon.GLB", + "atmos.rsutcs.tavg-u-hxy-u.mon.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.day.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.mon.GLB", + "atmos.sftlf.ti-u-hxy-u.fx.GLB", + "atmos.ta.tavg-p19-hxy-air.day.GLB", + "atmos.ta.tavg-p19-hxy-air.mon.GLB", + "atmos.ta.tpt-p3-hxy-air.6hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.day.GLB", + "atmos.tas.tavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tmax-h2m-hxy-u.day.GLB", + "atmos.tas.tmaxavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tmin-h2m-hxy-u.day.GLB", + "atmos.tas.tminavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tpt-h2m-hxy-u.3hr.GLB", + "atmos.tauu.tavg-u-hxy-u.mon.GLB", + "atmos.tauv.tavg-u-hxy-u.mon.GLB", + "atmos.ts.tavg-u-hxy-u.mon.GLB", + "atmos.ua.tavg-p19-hxy-air.day.GLB", + "atmos.ua.tavg-p19-hxy-air.mon.GLB", + "atmos.ua.tpt-p3-hxy-air.6hr.GLB", + "atmos.uas.tavg-h10m-hxy-u.day.GLB", + "atmos.uas.tavg-h10m-hxy-u.mon.GLB", + "atmos.uas.tpt-h10m-hxy-u.3hr.GLB", + "atmos.va.tavg-p19-hxy-air.day.GLB", + "atmos.va.tavg-p19-hxy-air.mon.GLB", + "atmos.va.tpt-p3-hxy-air.6hr.GLB", + "atmos.vas.tavg-h10m-hxy-u.day.GLB", + "atmos.vas.tavg-h10m-hxy-u.mon.GLB", + "atmos.vas.tpt-h10m-hxy-u.3hr.GLB", + "atmos.wap.tavg-p19-hxy-air.mon.GLB", + "atmos.wap.tavg-p19-hxy-u.day.GLB", + "atmos.zg.tavg-p19-hxy-air.day.GLB", + "atmos.zg.tavg-p19-hxy-air.mon.GLB", + "land.evspsblsoi.tavg-u-hxy-lnd.mon.GLB", + "land.evspsblveg.tavg-u-hxy-lnd.mon.GLB", + "land.lai.tavg-u-hxy-lnd.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.mon.GLB", + "land.mrros.tavg-u-hxy-lnd.mon.GLB", + "land.mrso.tavg-u-hxy-lnd.mon.GLB", + "land.mrsofc.ti-u-hxy-lnd.fx.GLB", + "land.mrsol.tavg-d10cm-hxy-lnd.mon.GLB", + "land.orog.ti-u-hxy-u.fx.GLB", + "land.rootd.ti-u-hxy-lnd.fx.GLB", + "land.sftgif.ti-u-hxy-u.fx.GLB", + "land.slthick.ti-sl-hxy-lnd.fx.GLB", + "landIce.mrfso.tavg-u-hxy-lnd.mon.GLB", + "landIce.snc.tavg-u-hxy-lnd.mon.GLB", + "landIce.snw.tavg-u-hxy-lnd.mon.GLB", + "ocean.areacello.ti-u-hxy-u.fx.GLB", + "ocean.basin.ti-u-hxy-u.fx.GLB", + "ocean.bigthetao.tavg-ol-hxy-sea.mon.GLB", + "ocean.deptho.ti-u-hxy-sea.fx.GLB", + "ocean.hfds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfgeou.ti-u-hxy-sea.fx.GLB", + "ocean.masscello.tavg-ol-hxy-sea.mon.GLB", + "ocean.masscello.ti-ol-hxy-sea.fx.GLB", + "ocean.mlotst.tavg-u-hxy-sea.mon.GLB", + "ocean.sftof.ti-u-hxy-u.fx.GLB", + "ocean.so.tavg-ol-hxy-sea.mon.GLB", + "ocean.sos.tavg-u-hxy-sea.day.GLB", + "ocean.sos.tavg-u-hxy-sea.mon.GLB", + "ocean.tauuo.tavg-u-hxy-sea.mon.GLB", + "ocean.tauvo.tavg-u-hxy-sea.mon.GLB", + "ocean.thetao.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcello.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcello.ti-ol-hxy-sea.fx.GLB", + "ocean.tos.tavg-u-hxy-sea.day.GLB", + "ocean.tos.tavg-u-hxy-sea.mon.GLB", + "ocean.umo.tavg-ol-hxy-sea.mon.GLB", + "ocean.uo.tavg-ol-hxy-sea.mon.GLB", + "ocean.vmo.tavg-ol-hxy-sea.mon.GLB", + "ocean.vo.tavg-ol-hxy-sea.mon.GLB", + "ocean.wmo.tavg-ol-hxy-sea.mon.GLB", + "ocean.wo.tavg-ol-hxy-sea.mon.GLB", + "ocean.zos.tavg-u-hxy-sea.day.GLB", + "ocean.zos.tavg-u-hxy-sea.mon.GLB", + "ocean.zostoga.tavg-u-hm-sea.mon.GLB", + "seaIce.siconc.tavg-u-hxy-u.day.GLB", + "seaIce.siconc.tavg-u-hxy-u.mon.GLB", + "seaIce.simass.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-si.mon.GLB", + "seaIce.sitimefrac.tavg-u-hxy-sea.mon.GLB", + "seaIce.siu.tavg-u-hxy-si.mon.GLB", + "seaIce.siv.tavg-u-hxy-si.mon.GLB", + "seaIce.snd.tavg-u-hxy-sn.mon.GLB", + "seaIce.ts.tavg-u-hxy-si.mon.GLB" + ], + "High": [ + "aerosol.abs550aer.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550bc.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550dust.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550no3.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550oa.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550so4.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550ss.tavg-u-hxy-u.mon.GLB", + "aerosol.airmass.tavg-al-hxy-u.mon.GLB", + "aerosol.aoanh.tavg-al-hxy-u.mon.NH", + "aerosol.bry.tavg-p39-hy-air.mon.GLB", + "aerosol.bs550aer.tpt-al-hxy-u.6hr.GLB", + "aerosol.c2h6.tavg-al-hxy-u.mon.GLB", + "aerosol.c3h6.tavg-al-hxy-u.mon.GLB", + "aerosol.c3h8.tavg-al-hxy-u.mon.GLB", + "aerosol.ccldncl.tavg-u-hxy-ccl.mon.GLB", + "aerosol.ccn.tavg-u-hxy-ccl.mon.30S-90S", + "aerosol.ccn.tavg-u-hxy-ccl.mon.GLB", + "aerosol.ccn1.tavg-al-hxy-u.mon.30S-90S", + "aerosol.ccn1.tavg-al-hxy-u.mon.GLB", + "aerosol.ccnp02.tavg-al-hxy-u.mon.30S-90S", + "aerosol.ccnp02.tavg-al-hxy-u.mon.GLB", + "aerosol.cdnc.tavg-al-hxy-u.mon.30S-90S", + "aerosol.cdnc.tavg-al-hxy-u.mon.GLB", + "aerosol.cfc114.tavg-al-hxy-u.mon.GLB", + "aerosol.ch3coch3.tavg-al-hxy-u.mon.GLB", + "aerosol.cheaqpso4.tavg-al-hxy-u.mon.GLB", + "aerosol.chegpso4.tavg-al-hxy-u.mon.GLB", + "aerosol.chepasoa.tavg-u-hxy-u.mon.GLB", + "aerosol.chepsoa.tavg-u-hxy-u.mon.GLB", + "aerosol.cly.tavg-p39-hy-air.mon.GLB", + "aerosol.co.tavg-al-hxy-u.mon.GLB", + "aerosol.co.tavg-h2m-hxy-u.day.GLB", + "aerosol.cod.tavg-u-hxy-u.day.GLB", + "aerosol.cod.tavg-u-hxy-u.mon.30S-90S", + "aerosol.cod.tavg-u-hxy-u.mon.GLB", + "aerosol.conccn.tavg-al-hxy-u.mon.GLB", + "aerosol.conccn.tpt-u-hs-u.3hr.GLB", + "aerosol.drybc.tavg-u-hxy-u.mon.GLB", + "aerosol.drydust.tavg-u-hxy-u.mon.GLB", + "aerosol.dryno3.tavg-u-hxy-u.mon.GLB", + "aerosol.dryo3.tavg-u-hxy-u.mon.GLB", + "aerosol.dryoa.tavg-u-hxy-u.mon.GLB", + "aerosol.dryso2.tavg-u-hxy-u.mon.GLB", + "aerosol.dryso4.tavg-u-hxy-u.mon.GLB", + "aerosol.dryss.tavg-u-hxy-u.mon.GLB", + "aerosol.ec550aer.tavg-al-hxy-u.mon.GLB", + "aerosol.ec550aer.tpt-u-hxy-u.6hr.GLB", + "aerosol.emiaco.tavg-u-hxy-u.mon.GLB", + "aerosol.emianox.tavg-u-hxy-u.mon.GLB", + "aerosol.emiaoa.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbbc.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbch4.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbco.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbdms.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbnh3.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbnox.tavg-u-hxy-u.mon.GLB", + "aerosol.emibboa.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbso2.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbvoc.tavg-u-hxy-u.mon.GLB", + "aerosol.emibc.tavg-u-hxy-u.mon.GLB", + "aerosol.emibvoc.tavg-u-hxy-u.mon.GLB", + "aerosol.emico.tavg-u-hxy-u.mon.GLB", + "aerosol.emidms.tavg-u-hxy-u.mon.30S-90S", + "aerosol.emidms.tavg-u-hxy-u.mon.GLB", + "aerosol.emidust.tavg-u-hxy-u.mon.GLB", + "aerosol.emiisop.tavg-u-hxy-u.mon.GLB", + "aerosol.emilnox.tavg-al-hxy-u.mon.GLB", + "aerosol.eminh3.tavg-u-hxy-u.mon.GLB", + "aerosol.eminox.tavg-u-hxy-u.mon.GLB", + "aerosol.emioa.tavg-u-hxy-u.mon.GLB", + "aerosol.emiso2.tavg-u-hxy-u.mon.GLB", + "aerosol.emiso4.tavg-u-hxy-u.mon.GLB", + "aerosol.emiss.tavg-u-hxy-u.mon.30S-90S", + "aerosol.emiss.tavg-u-hxy-u.mon.GLB", + "aerosol.emivoc.tavg-u-hxy-u.mon.GLB", + "aerosol.h2o.tavg-al-hxy-u.mon.GLB", + "aerosol.h2o.tavg-p39-hy-air.mon.GLB", + "aerosol.hcfc22.tavg-al-hxy-u.mon.GLB", + "aerosol.hcho.tavg-al-hxy-u.mon.GLB", + "aerosol.hcl.tavg-al-hxy-u.mon.GLB", + "aerosol.hcl.tavg-p39-hy-air.mon.GLB", + "aerosol.hfc125.tavg-al-hxy-u.mon.GLB", + "aerosol.hfc134a.tavg-al-hxy-u.mon.GLB", + "aerosol.hno3.tavg-al-hxy-u.mon.GLB", + "aerosol.hno3.tavg-p39-hy-air.mon.GLB", + "aerosol.ho2.tavg-p39-hy-air.mon.GLB", + "aerosol.isop.tavg-al-hxy-u.mon.GLB", + "aerosol.jno2.tavg-al-hxy-u.mon.GLB", + "aerosol.lossch4.tavg-al-hxy-u.mon.GLB", + "aerosol.lossco.tavg-al-hxy-u.mon.GLB", + "aerosol.lossn2o.tavg-al-hxy-u.mon.GLB", + "aerosol.lwp.tavg-u-hxy-u.mon.GLB", + "aerosol.mmraerh2o.tavg-al-hxy-u.mon.GLB", + "aerosol.mmraerh2o.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmraerh2o.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrbc.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrbc.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrbc.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrbc.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrdust.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrdust.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrdust.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrdust.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrnh4.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrnh4.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrnh4.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrnh4.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrno3.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrno3.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrno3.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrno3.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmroa.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmroa.tavg-al-hxy-u.mon.GLB", + "aerosol.mmroa.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmroa.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrpm1.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrpm1.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrpm2p5.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrpm2p5.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrso4.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrso4.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrso4.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrso4.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrsoa.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrsoa.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrsoa.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrss.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrss.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrss.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrss.tpt-h2m-hs-u.3hr.GLB", + "aerosol.nh50.tavg-al-hxy-u.mon.GLB", + "aerosol.no.tavg-al-hxy-u.mon.GLB", + "aerosol.no2.tavg-al-hxy-u.mon.GLB", + "aerosol.no2.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.noy.tavg-p39-hy-air.mon.GLB", + "aerosol.o3.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.o3.tmax-h2m-hxy-u.day.GLB", + "aerosol.o3loss.tavg-al-hxy-u.mon.GLB", + "aerosol.o3prod.tavg-al-hxy-u.mon.GLB", + "aerosol.od443aer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550aer.tavg-u-hxy-u.day.GLB", + "aerosol.od550aer.tavg-u-hxy-u.mon.30S-90S", + "aerosol.od550aer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550aerh2o.tavg-u-hxy-u.mon.GLB", + "aerosol.od550bb.tavg-u-hxy-u.mon.GLB", + "aerosol.od550bc.tavg-u-hxy-u.mon.GLB", + "aerosol.od550csaer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550dust.tavg-u-hxy-u.mon.GLB", + "aerosol.od550lt1aer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550no3.tavg-u-hxy-u.mon.GLB", + "aerosol.od550oa.tavg-u-hxy-u.mon.GLB", + "aerosol.od550so4.tavg-u-hxy-u.mon.GLB", + "aerosol.od550soa.tavg-u-hxy-u.mon.GLB", + "aerosol.od550ss.tavg-u-hxy-u.mon.GLB", + "aerosol.od865aer.tavg-u-hxy-u.mon.GLB", + "aerosol.oh.tavg-al-hxy-u.mon.GLB", + "aerosol.oh.tavg-p39-hy-air.mon.GLB", + "aerosol.pan.tavg-al-hxy-u.mon.GLB", + "aerosol.photo1d.tavg-al-hxy-u.mon.GLB", + "aerosol.pod0.tsum-u-hxy-u.mon.GLB", + "aerosol.reffccwctop.tavg-u-hxy-cl.mon.GLB", + "aerosol.reffclwtop.tavg-u-hxy-cl.mon.30S-90S", + "aerosol.reffclwtop.tavg-u-hxy-cl.mon.GLB", + "aerosol.rluscsaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rlutaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rlutcsaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rsutaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rsutcsaf.tavg-u-hxy-u.mon.GLB", + "aerosol.sfpm1.tavg-h2m-hxy-u.day.GLB", + "aerosol.sfpm10.tavg-al-hxy-u.mon.30S-90S", + "aerosol.sfpm10.tavg-al-hxy-u.mon.GLB", + "aerosol.sfpm10.tavg-h2m-hxy-u.day.GLB", + "aerosol.sfpm25.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.sfpm25.tavg-h2m-hxy-u.day.GLB", + "aerosol.so2.tavg-al-hxy-u.mon.30S-90S", + "aerosol.so2.tavg-al-hxy-u.mon.GLB", + "aerosol.so2.tavg-h2m-hxy-u.day.GLB", + "aerosol.so2.tpt-h2m-hs-u.3hr.GLB", + "aerosol.tatp.tavg-u-hxy-u.mon.GLB", + "aerosol.toz.tavg-u-hxy-u.day.GLB", + "aerosol.toz.tavg-u-hxy-u.mon.GLB", + "aerosol.tropoz.tavg-u-hxy-u.mon.GLB", + "aerosol.ttop.tavg-u-hxy-cl.mon.GLB", + "aerosol.ua.tavg-10hPa-hxy-air.day.GLB", + "aerosol.vt100.tavg-100hPa-hy-air.mon.GLB", + "aerosol.wa.tavg-al-hxy-u.mon.GLB", + "aerosol.wetbc.tavg-u-hxy-u.mon.GLB", + "aerosol.wetdust.tavg-u-hxy-u.mon.GLB", + "aerosol.wetoa.tavg-u-hxy-u.mon.GLB", + "aerosol.wetso2.tavg-u-hxy-u.mon.GLB", + "aerosol.wetso4.tavg-u-hxy-u.mon.GLB", + "aerosol.wetss.tavg-u-hxy-u.mon.GLB", + "aerosol.zg.tavg-10hPa-hxy-air.day.GLB", + "atmos.albisccp.tavg-u-hxy-cl.mon.30S-90S", + "atmos.aod550volso4.tavg-u-hxy-u.mon.GLB", + "atmos.bldep.tavg-u-hxy-u.mon.GLB", + "atmos.bldep.tmax-u-hxy-u.day.GLB", + "atmos.bldep.tmin-u-hxy-u.day.GLB", + "atmos.cl.tavg-al-hxy-u.day.GLB", + "atmos.cl.tavg-al-hxy-u.mon.30S-90S", + "atmos.clc.tavg-al-hxy-u.mon.30S-90S", + "atmos.clc.tavg-al-hxy-u.mon.GLB", + "atmos.clcalipso.tavg-220hPa-hxy-air.mon.30S-90S", + "atmos.clcalipso.tavg-220hPa-hxy-air.mon.GLB", + "atmos.clcalipso.tavg-560hPa-hxy-air.mon.30S-90S", + "atmos.clcalipso.tavg-560hPa-hxy-air.mon.GLB", + "atmos.clcalipso.tavg-840hPa-hxy-air.mon.30S-90S", + "atmos.clcalipso.tavg-840hPa-hxy-air.mon.GLB", + "atmos.clcalipso.tavg-h40-hxy-air.mon.30S-90S", + "atmos.cldnci.tavg-u-hxy-cl.mon.GLB", + "atmos.cldncl.tavg-u-hxy-cl.mon.GLB", + "atmos.cldnvi.tavg-u-hxy-u.day.GLB", + "atmos.cldnvi.tavg-u-hxy-u.mon.GLB", + "atmos.cli.tavg-al-hxy-u.mon.30S-90S", + "atmos.clic.tavg-al-hxy-u.mon.30S-90S", + "atmos.clis.tavg-al-hxy-u.mon.30S-90S", + "atmos.clisccp.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clisccp.tavg-p7c-hxy-air.mon.GLB", + "atmos.clivi.tavg-u-hxy-u.mon.30S-90S", + "atmos.clivimodis.tavg-u-hxy-u.mon.30S-90S", + "atmos.clmodis.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clmodis.tavg-p7c-hxy-air.mon.GLB", + "atmos.clmodisice.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clmodisice.tavg-p7c-hxy-air.mon.GLB", + "atmos.clmodisiceReff.tavg-u-hxy-u.mon.GLB", + "atmos.clmodisliquid.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clmodisliquid.tavg-p7c-hxy-air.mon.GLB", + "atmos.clmodisliquidReff.tavg-u-hxy-u.mon.GLB", + "atmos.cls.tavg-al-hxy-u.mon.30S-90S", + "atmos.clt.tavg-u-hxy-lnd.day.GLB", + "atmos.clt.tavg-u-hxy-u.mon.30S-90S", + "atmos.cltc.tavg-u-hxy-u.mon.GLB", + "atmos.cltcalipso.tavg-u-hxy-u.mon.30S-90S", + "atmos.cltisccp.tavg-u-hxy-u.mon.30S-90S", + "atmos.cltmodis.tavg-u-hxy-u.mon.30S-90S", + "atmos.clw.tavg-al-hxy-u.mon.30S-90S", + "atmos.clwc.tavg-al-hxy-u.mon.30S-90S", + "atmos.clws.tavg-al-hxy-u.mon.30S-90S", + "atmos.clwvi.tavg-u-hxy-u.mon.30S-90S", + "atmos.clwvimodis.tavg-u-hxy-u.mon.30S-90S", + "atmos.co2.tavg-al-hxy-u.mon.GLB", + "atmos.co2.tavg-p19-hxy-air.mon.GLB", + "atmos.co2.tclm-p19-hxy-air.mon.GLB", + "atmos.co2.tclm-u-hm-u.mon.GLB", + "atmos.co23D.tavg-al-hxy-u.mon.GLB", + "atmos.co2mass.tavg-u-hm-u.mon.GLB", + "atmos.dmc.tavg-alh-hxy-u.mon.30S-90S", + "atmos.edt.tavg-al-hxy-u.mon.30S-90S", + "atmos.evspsbl.tavg-u-hxy-lnd.day.GLB", + "atmos.evu.tavg-al-hxy-u.mon.30S-90S", + "atmos.fco2antt.tavg-u-hxy-u.mon.GLB", + "atmos.fco2fos.tavg-u-hxy-u.mon.GLB", + "atmos.fco2nat.tavg-u-hxy-u.mon.GLB", + "atmos.hfls.tavg-u-hxy-u.day.GLB", + "atmos.hfls.tavg-u-hxy-u.mon.30S-90S", + "atmos.hfss.tavg-u-hxy-u.day.GLB", + "atmos.hfss.tavg-u-hxy-u.mon.30S-90S", + "atmos.hur.tavg-al-hxy-u.mon.30S-90S", + "atmos.hur.tavg-al-hxy-u.mon.GLB", + "atmos.hur.tavg-p19-hxy-air.mon.30S-90S", + "atmos.hurs.tavg-h2m-hxy-u.mon.30S-90S", + "atmos.hurs.tmax-h2m-hxy-u.day.GLB", + "atmos.hurs.tmin-h2m-hxy-u.day.GLB", + "atmos.hurs.tpt-h2m-hxy-u.3hr.GLB", + "atmos.hus.tavg-al-hxy-u.mon.30S-90S", + "atmos.hus.tavg-al-hxy-u.mon.GLB", + "atmos.hus.tavg-p19-hxy-u.mon.30S-90S", + "atmos.hus.tpt-al-hxy-u.6hr.GLB", + "atmos.hus.tpt-p7h-hxy-air.6hr.GLB", + "atmos.huss.tavg-h2m-hxy-u.mon.30S-90S", + "atmos.huss.tpt-h2m-hxy-u.1hr.GLB", + "atmos.intuaw.tpt-u-hxy-u.6hr.GLB", + "atmos.intvaw.tpt-u-hxy-u.6hr.GLB", + "atmos.loadbc.tavg-u-hxy-u.day.GLB", + "atmos.loadoa.tavg-u-hxy-u.day.GLB", + "atmos.loadpoa.tavg-u-hxy-u.day.GLB", + "atmos.loadso4.tavg-u-hxy-u.mon.GLB", + "atmos.mc.tavg-alh-hxy-u.mon.GLB", + "atmos.mcd.tavg-alh-hxy-u.mon.30S-90S", + "atmos.mcu.tavg-alh-hxy-u.mon.30S-90S", + "atmos.mcu.tavg-alh-hxy-u.mon.GLB", + "atmos.pctisccp.tavg-u-hxy-cl.mon.30S-90S", + "atmos.pfull.tavg-al-hxy-u.mon.GLB", + "atmos.pfull.tclm-al-hxy-u.mon.30S-90S", + "atmos.phalf.tavg-alh-hxy-u.mon.GLB", + "atmos.pr.tavg-u-hxy-u.mon.30S-90S", + "atmos.pr.tmax-u-hxy-u.day.GLB", + "atmos.pr.tmax-u-hxy-u.mon.GLB", + "atmos.pr.tpt-u-hxy-u.6hr.GLB", + "atmos.prc.tavg-u-hxy-u.mon.30S-90S", + "atmos.prra.tavg-u-hxy-lnd.day.GLB", + "atmos.prra.tavg-u-hxy-u.mon.30S-90S", + "atmos.prra.tavg-u-hxy-u.mon.GLB", + "atmos.prsn.tavg-u-hxy-u.3hr.GLB", + "atmos.prsn.tavg-u-hxy-u.day.GLB", + "atmos.prsn.tavg-u-hxy-u.mon.30S-90S", + "atmos.prw.tavg-u-hxy-u.day.GLB", + "atmos.prw.tavg-u-hxy-u.mon.30S-90S", + "atmos.prw.tpt-u-hxy-u.6hr.GLB", + "atmos.ps.tavg-u-hxy-u.1hr.GLB", + "atmos.ps.tavg-u-hxy-u.mon.30S-90S", + "atmos.ps.tpt-u-hxy-u.6hr.GLB", + "atmos.psl.tavg-u-hxy-u.mon.30S-90S", + "atmos.psl.tpt-u-hxy-u.1hr.GLB", + "atmos.psl.tpt-u-hxy-u.6hr.GLB", + "atmos.ptp.tavg-u-hxy-u.mon.GLB", + "atmos.reffcclwtop.tavg-u-hxy-ccl.mon.GLB", + "atmos.reffclic.tavg-al-hxy-ccl.mon.30S-90S", + "atmos.reffclis.tavg-al-hxy-scl.mon.30S-90S", + "atmos.reffclwc.tavg-al-hxy-ccl.mon.30S-90S", + "atmos.reffclws.tavg-al-hxy-scl.mon.30S-90S", + "atmos.reffsclwtop.tavg-u-hxy-scl.mon.GLB", + "atmos.rld.tavg-alh-hxy-u.mon.GLB", + "atmos.rld4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rldcs.tavg-alh-hxy-u.mon.GLB", + "atmos.rldcs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rlds.tavg-u-hxy-u.1hr.GLB", + "atmos.rlds.tavg-u-hxy-u.3hr.GLB", + "atmos.rlds.tavg-u-hxy-u.day.GLB", + "atmos.rlds.tavg-u-hxy-u.mon.30S-90S", + "atmos.rldscs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rls.tavg-u-hxy-u.mon.GLB", + "atmos.rlu.tavg-alh-hxy-u.mon.GLB", + "atmos.rlu4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rlucs.tavg-alh-hxy-u.mon.GLB", + "atmos.rlucs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rlus.tavg-u-hxy-u.day.GLB", + "atmos.rlus.tavg-u-hxy-u.mon.30S-90S", + "atmos.rlut.tavg-u-hxy-u.day.GLB", + "atmos.rlut.tavg-u-hxy-u.mon.30S-90S", + "atmos.rlut4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rlutcs.tavg-u-hxy-u.day.GLB", + "atmos.rlutcs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rlutcs4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rsd.tavg-alh-hxy-u.mon.GLB", + "atmos.rsd4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsdcs.tavg-alh-hxy-u.mon.GLB", + "atmos.rsdcs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsds.tavg-u-hxy-u.1hr.GLB", + "atmos.rsds.tavg-u-hxy-u.3hr.GLB", + "atmos.rsds.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsdscs.tavg-u-hxy-u.day.GLB", + "atmos.rsdscs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsdt.tavg-u-hxy-u.day.GLB", + "atmos.rsdt.tavg-u-hxy-u.mon.30S-90S", + "atmos.rss.tavg-u-hxy-u.mon.GLB", + "atmos.rsu.tavg-alh-hxy-u.mon.GLB", + "atmos.rsu4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsucs.tavg-alh-hxy-u.mon.GLB", + "atmos.rsucs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsus.tavg-u-hxy-u.day.GLB", + "atmos.rsus.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsuscs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsut.tavg-u-hxy-u.day.GLB", + "atmos.rsut.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsut4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rsutcs.tavg-u-hxy-u.day.GLB", + "atmos.rsutcs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsutcs4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rtmt.tavg-u-hxy-u.mon.GLB", + "atmos.rv850.tpt-850hPa-hxy-air.6hr.GLB", + "atmos.scldncl.tavg-u-hxy-scl.mon.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.mon.30S-90S", + "atmos.sfcWind.tmax-h10m-hxy-u.day.GLB", + "atmos.sfcWind.tmaxavg-h10m-hxy-u.mon.GLB", + "atmos.ta.tavg-700hPa-hxy-air.day.GLB", + "atmos.ta.tavg-850hPa-hxy-air.day.GLB", + "atmos.ta.tavg-al-hxy-u.mon.30S-90S", + "atmos.ta.tavg-al-hxy-u.mon.GLB", + "atmos.ta.tavg-p19-hxy-air.mon.30S-90S", + "atmos.ta.tavg-p39-hy-air.mon.GLB", + "atmos.ta.tpt-al-hxy-u.6hr.GLB", + "atmos.ta.tpt-p5u-hxy-u.6hr.GLB", + "atmos.ta.tpt-p7h-hxy-air.6hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.1hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.mon.30S-90S", + "atmos.tas.tmaxavg-h2m-hxy-u.mon.30S-90S", + "atmos.tas.tminavg-h2m-hxy-u.mon.30S-90S", + "atmos.tnt.tavg-al-hxy-u.mon.GLB", + "atmos.tntrl.tavg-al-hxy-u.mon.GLB", + "atmos.tntrs.tavg-al-hxy-u.mon.GLB", + "atmos.ts.tavg-u-hxy-u.mon.30S-90S", + "atmos.ts.tpt-u-hxy-u.3hr.GLB", + "atmos.ts.tpt-u-hxy-u.6hr.GLB", + "atmos.ua.tavg-al-hxy-u.mon.GLB", + "atmos.ua.tavg-p19-hxy-air.mon.30S-90S", + "atmos.ua.tavg-p39-hy-air.mon.GLB", + "atmos.ua.tpt-al-hxy-u.6hr.GLB", + "atmos.ua.tpt-h100m-hxy-u.1hr.GLB", + "atmos.ua.tpt-p5u-hxy-air.6hr.GLB", + "atmos.ua.tpt-p7h-hxy-air.6hr.GLB", + "atmos.uas.tavg-h10m-hxy-u.mon.30S-90S", + "atmos.uas.tpt-h10m-hxy-u.1hr.GLB", + "atmos.uas.tpt-h10m-hxy-u.6hr.GLB", + "atmos.va.tavg-al-hxy-u.mon.GLB", + "atmos.va.tavg-p19-hxy-air.mon.30S-90S", + "atmos.va.tavg-p39-hy-air.mon.GLB", + "atmos.va.tpt-al-hxy-u.6hr.GLB", + "atmos.va.tpt-h100m-hxy-u.1hr.GLB", + "atmos.va.tpt-p5u-hxy-air.6hr.GLB", + "atmos.va.tpt-p7h-hxy-air.6hr.GLB", + "atmos.vas.tavg-h10m-hxy-u.mon.30S-90S", + "atmos.vas.tpt-h10m-hxy-u.1hr.GLB", + "atmos.vas.tpt-h10m-hxy-u.6hr.GLB", + "atmos.wap.tavg-p19-hxy-air.mon.30S-90S", + "atmos.wsg.tmax-h100m-hxy-u.1hr.GLB", + "atmos.wsg.tmax-h10m-hxy-u.1hr.GLB", + "atmos.zg.tavg-1000hPa-hxy-air.day.GLB", + "atmos.zg.tavg-500hPa-hxy-air.day.GLB", + "atmos.zg.tavg-al-hxy-u.mon.GLB", + "atmos.zg.tavg-p19-hxy-air.mon.30S-90S", + "atmos.zg.tavg-p39-hy-air.mon.GLB", + "atmos.zg.tpt-500hPa-hxy-air.6hr.GLB", + "atmos.zg.tpt-al-hxy-u.6hr.GLB", + "atmos.zg.tpt-p3-hxy-air.6hr.GLB", + "atmos.zg.tpt-p7h-hxy-air.6hr.GLB", + "atmos.ztp.tavg-u-hxy-u.mon.GLB", + "atmosChem.c2h4.tavg-al-hxy-u.mon.GLB", + "atmosChem.c2h5oh.tavg-al-hxy-u.mon.GLB", + "atmosChem.c4h10.tavg-al-hxy-u.mon.GLB", + "atmosChem.cfc11.tavg-u-hm-u.mon.GLB", + "atmosChem.cfc113.tavg-u-hm-u.mon.GLB", + "atmosChem.cfc12.tavg-u-hm-u.mon.GLB", + "atmosChem.ch3oh.tavg-al-hxy-u.mon.GLB", + "atmosChem.ch4.tavg-al-hxy-u.mon.GLB", + "atmosChem.ch4.tavg-p39-hy-air.mon.GLB", + "atmosChem.ch4losssoil.tavg-u-hxy-u.mon.GLB", + "atmosChem.ch4ref.ti-al-hxy-u.fx.GLB", + "atmosChem.chegph2oo1d.tavg-al-hxy-u.mon.GLB", + "atmosChem.chepnh4.tavg-al-hxy-u.mon.GLB", + "atmosChem.chepno3.tavg-al-hxy-u.mon.GLB", + "atmosChem.dms.tavg-al-hxy-u.mon.30S-90S", + "atmosChem.dms.tavg-al-hxy-u.mon.GLB", + "atmosChem.do3chm.tavg-al-hxy-u.mon.GLB", + "atmosChem.dryh2.tavg-u-hxy-u.mon.GLB", + "atmosChem.dryhno3.tavg-u-hxy-u.mon.GLB", + "atmosChem.drynh3.tavg-u-hxy-u.mon.GLB", + "atmosChem.drynh4.tavg-u-hxy-u.mon.GLB", + "atmosChem.drynoy.tavg-u-hxy-u.mon.GLB", + "atmosChem.e90inst.tpt-al-hxy-u.mon.GLB", + "atmosChem.emiach4.tavg-u-hxy-u.mon.GLB", + "atmosChem.emiavnox.tavg-al-hxy-u.mon.GLB", + "atmosChem.emic2h4.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic2h5oh.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic2h6.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic3h6.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic3h8.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic4h10.tavg-u-hxy-u.mon.GLB", + "atmosChem.emich3oh.tavg-u-hxy-u.mon.GLB", + "atmosChem.emich4.tavg-u-hxy-u.mon.GLB", + "atmosChem.emih2.tavg-u-hxy-u.mon.GLB", + "atmosChem.emilkch4.tavg-u-hxy-u.mon.GLB", + "atmosChem.h2.tavg-al-hxy-u.mon.GLB", + "atmosChem.h2loss.tavg-al-hxy-u.mon.GLB", + "atmosChem.h2prod.tavg-al-hxy-u.mon.GLB", + "atmosChem.hcfc22.tavg-u-hm-u.mon.GLB", + "atmosChem.meanage.tavg-al-hxy-u.mon.GLB", + "atmosChem.meanage.tavg-p39-hy-air.mon.GLB", + "atmosChem.n2o.tavg-al-hxy-u.mon.GLB", + "atmosChem.n2o.tavg-p39-hy-air.mon.GLB", + "atmosChem.o3.tavg-al-hxy-u.mon.GLB", + "atmosChem.o3.tavg-p19-hxy-air.mon.GLB", + "atmosChem.o3.tavg-p39-hy-air.mon.GLB", + "atmosChem.o3.tpt-al-hxy-u.mon.GLB", + "atmosChem.o3ref.tclm-al-hxy-u.fx.GLB", + "atmosChem.o3ref.ti-al-hxy-u.fx.GLB", + "atmosChem.o3ste.tavg-al-hxy-u.mon.GLB", + "atmosChem.rlutch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rlutcsch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rlutcso3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rluto3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsutch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsutcsch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsutcso3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsuto3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.stratch4loss.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropch4loss.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropch4lossoh.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropdo3chm.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropo3ste.tavg-al-hxy-u.mon.GLB", + "atmosChem.wethno3.tavg-al-hxy-u.mon.GLB", + "atmosChem.wetnh3.tavg-u-hxy-u.mon.GLB", + "atmosChem.wetnh4.tavg-u-hxy-u.mon.GLB", + "atmosChem.wetno3.tavg-al-hxy-u.mon.GLB", + "atmosChem.wetnoy.tavg-u-hxy-u.mon.GLB", + "land.albc.tavg-u-hxy-veg.mon.GLB", + "land.areacellr.ti-u-hxy-u.fx.GLB", + "land.baresoilFrac.tavg-u-hxy-u.mon.GLB", + "land.burntFractionAll.tavg-u-hxy-u.mon.GLB", + "land.cGeologicStorage.tavg-u-hxy-u.mon.GLB", + "land.cLand.tavg-u-hxy-lnd.mon.GLB", + "land.cLeaf.tavg-u-hxy-lnd.mon.GLB", + "land.cLitter.tavg-u-hxy-lnd.mon.GLB", + "land.cnc.tavg-u-hxy-u.mon.GLB", + "land.cProduct.tavg-u-hxy-lnd.mon.GLB", + "land.cRoot.tavg-u-hxy-lnd.mon.GLB", + "land.cropFrac.tavg-u-hxy-u.mon.GLB", + "land.cSoil.tavg-d100cm-hxy-lnd.mon.GLB", + "land.cSoil.tavg-u-hxy-lnd.mon.GLB", + "land.cStem.tavg-u-hxy-lnd.mon.GLB", + "land.cVeg.tavg-u-hxy-lnd.mon.GLB", + "land.dcw.tavg-u-hxy-lnd.day.GLB", + "land.dslw.tavg-u-hxy-lnd.day.GLB", + "land.evspsblpot.tavg-u-hxy-lnd.day.GLB", + "land.evspsblpot.tavg-u-hxy-lnd.mon.GLB", + "land.evspsblsoi.tavg-u-hxy-u.day.GLB", + "land.evspsblveg.tavg-u-hxy-u.day.GLB", + "land.fAnthDisturb.tavg-u-hxy-lnd.mon.GLB", + "land.fBNF.tavg-u-hxy-lnd.mon.GLB", + "land.fCLandToOcean.tavg-u-hxy-lnd.mon.GLB", + "land.fDeforestToAtmos.tavg-u-hxy-lnd.mon.GLB", + "land.fDeforestToProduct.tavg-u-hxy-lnd.mon.GLB", + "land.fFire.tavg-u-hxy-lnd.mon.GLB", + "land.fFireAll.tavg-u-hxy-lnd.mon.GLB", + "land.fFireNat.tavg-u-hxy-lnd.mon.GLB", + "land.fHarvestToAtmos.tavg-u-hxy-lnd.mon.GLB", + "land.fHarvestToGeologicStorage.tavg-u-hxy-lnd.mon.GLB", + "land.fHarvestToProduct.tavg-u-hxy-lnd.mon.GLB", + "land.fLitterSoil.tavg-u-hxy-lnd.mon.GLB", + "land.fLuc.tavg-u-hxy-lnd.mon.GLB", + "land.fN2O.tavg-u-hxy-lnd.mon.GLB", + "land.fNAnthDisturb.tavg-u-hxy-lnd.mon.GLB", + "land.fNdep.tavg-u-hxy-lnd.mon.GLB", + "land.fNfert.tavg-u-hxy-lnd.mon.GLB", + "land.fNgas.tavg-u-hxy-lnd.mon.GLB", + "land.fNgasFire.tavg-u-hxy-lnd.mon.GLB", + "land.fNLandToOcean.tavg-u-hxy-lnd.mon.GLB", + "land.fNleach.tavg-u-hxy-lnd.mon.GLB", + "land.fNLitterSoil.tavg-u-hxy-lnd.mon.GLB", + "land.fNloss.tavg-u-hxy-lnd.mon.GLB", + "land.fNnetmin.tavg-u-hxy-lnd.mon.GLB", + "land.fNOx.tavg-u-hxy-lnd.mon.GLB", + "land.fNProduct.tavg-u-hxy-lnd.mon.GLB", + "land.fNup.tavg-u-hxy-lnd.mon.GLB", + "land.fNVegLitter.tavg-u-hxy-lnd.mon.GLB", + "land.fNVegSoil.tavg-u-hxy-lnd.mon.GLB", + "land.fProductDecomp.tavg-u-hxy-lnd.mon.GLB", + "land.fVegLitter.tavg-u-hxy-lnd.mon.GLB", + "land.fVegSoil.tavg-u-hxy-lnd.mon.GLB", + "land.gpp.tavg-u-hxy-lnd.mon.GLB", + "land.grassFrac.tavg-u-hxy-u.mon.GLB", + "land.landCoverFrac.tavg-u-hxy-u.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.day.GLB", + "land.mrrob.tavg-u-hxy-lnd.day.GLB", + "land.mrros.tavg-u-hxy-lnd.day.GLB", + "land.mrsfl.tavg-sl-hxy-lnd.day.GLB", + "land.mrsfl.tavg-sl-hxy-lnd.mon.GLB", + "land.mrsll.tavg-sl-hxy-lnd.day.GLB", + "land.mrsll.tavg-sl-hxy-lnd.mon.GLB", + "land.mrso.tavg-u-hxy-lnd.day.GLB", + "land.mrsol.tavg-d10cm-hxy-lnd.day.GLB", + "land.mrsol.tavg-sl-hxy-lnd.day.GLB", + "land.mrsol.tavg-sl-hxy-lnd.mon.GLB", + "land.mrsow.tavg-u-hxy-lnd.day.GLB", + "land.mrtws.tavg-u-hxy-lnd.day.GLB", + "land.mrtws.tavg-u-hxy-lnd.mon.GLB", + "land.nbp.tavg-u-hxy-lnd.mon.GLB", + "land.nep.tavg-u-hxy-lnd.mon.GLB", + "land.nLand.tavg-u-hxy-lnd.mon.GLB", + "land.nLitter.tavg-u-hxy-lnd.mon.GLB", + "land.nMineral.tavg-u-hxy-lnd.mon.GLB", + "land.npp.tavg-u-hxy-lnd.mon.GLB", + "land.nProduct.tavg-u-hxy-lnd.mon.GLB", + "land.nSoil.tavg-u-hxy-lnd.mon.GLB", + "land.nVeg.tavg-u-hxy-lnd.mon.GLB", + "land.pastureFrac.tavg-u-hxy-u.mon.GLB", + "land.prveg.tavg-u-hxy-lnd.mon.GLB", + "land.ra.tavg-u-hxy-lnd.mon.GLB", + "land.residualFrac.tavg-u-hxy-u.mon.GLB", + "land.rh.tavg-u-hxy-lnd.mon.GLB", + "land.rivi.tavg-u-hxy-lnd.day.GLB", + "land.rivo.tavg-u-hxy-lnd.day.GLB", + "land.rsds.tavg-u-hxy-sn.mon.GLB", + "land.rsus.tavg-u-hxy-sn.mon.GLB", + "land.shrubFrac.tavg-u-hxy-u.mon.GLB", + "land.tas.tavg-u-hxy-u.1hr.GLB", + "land.tran.tavg-u-hxy-lnd.mon.GLB", + "land.treeFrac.tavg-u-hxy-u.mon.GLB", + "land.tsl.tavg-sl-hxy-lnd.mon.GLB", + "land.tslsi.tavg-u-hxy-u.day.GLB", + "land.vegFrac.tavg-u-hxy-u.mon.GLB", + "land.vegHeight.tavg-u-hxy-tree.mon.GLB", + "land.vegHeight.tavg-u-hxy-veg.mon.GLB", + "land.wetlandCH4.tavg-u-hxy-lnd.mon.GLB", + "land.wtd.tavg-u-hxy-lnd.day.GLB", + "landIce.pflw.tavg-u-hxy-lnd.mon.GLB", + "landIce.snd.tavg-u-hxy-lnd.mon.GLB", + "landIce.snm.tavg-u-hxy-lnd.mon.GLB", + "landIce.snw.tavg-u-hxy-lnd.day.GLB", + "landIce.sootsn.tavg-u-hxy-lnd.mon.GLB", + "landIce.tpf.tavg-u-hxy-lnd.mon.GLB", + "ocean.absscint.tavg-op4-hxy-sea.mon.GLB", + "ocean.agessc.tavg-ol-hxy-sea.mon.GLB", + "ocean.bigthetao.tavg-ol-hm-sea.mon.GLB", + "ocean.bigthetao.tavg-ol-hxy-sea.dec.GLB", + "ocean.bigthetao.tavg-op20bar-hxy-sea.day.GLB", + "ocean.chcint.tavg-op4-hxy-sea.mon.GLB", + "ocean.ficeberg.tavg-ol-hxy-sea.mon.GLB", + "ocean.friver.tavg-u-hxy-sea.mon.GLB", + "ocean.hfbasin.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpmadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpmdiff.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpsmadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfds.tavg-u-hxy-sea.mon.30S-90S", + "ocean.hfx.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfx.tavg-u-hxy-sea.day.GLB", + "ocean.hfx.tavg-u-hxy-sea.mon.GLB", + "ocean.hfy.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfy.tavg-u-hxy-sea.day.GLB", + "ocean.hfy.tavg-u-hxy-sea.mon.GLB", + "ocean.htovgyre.tavg-u-hyb-sea.mon.GLB", + "ocean.htovovrt.tavg-u-hyb-sea.mon.GLB", + "ocean.masscello.tavg-ol-hxy-sea.dec.GLB", + "ocean.masso.tavg-u-hm-sea.dec.GLB", + "ocean.masso.tavg-u-hm-sea.mon.GLB", + "ocean.mlotst.tavg-u-hxy-sea.day.GLB", + "ocean.mlotst.tavg-u-hxy-sea.mon.30S-90S", + "ocean.mlotst.tmax-u-hxy-sea.mon.GLB", + "ocean.mlotst.tmin-u-hxy-sea.mon.GLB", + "ocean.mpw.tavg-u-hxy-sea.mon.GLB", + "ocean.mpw.tpt-u-hxy-sea.3hr.GLB", + "ocean.mpwswell.tavg-u-hxy-sea.mon.GLB", + "ocean.mpwswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.mpwwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.mpwwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.msftbarot.tavg-u-hxy-sea.mon.GLB", + "ocean.msftm.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftm.tavg-rho-hyb-sea.mon.GLB", + "ocean.msfty.tavg-ol-ht-sea.mon.GLB", + "ocean.msfty.tavg-rho-ht-sea.mon.GLB", + "ocean.obvfsq.tavg-ol-hxy-sea.mon.GLB", + "ocean.pbo.tavg-u-hxy-sea.mon.GLB", + "ocean.pfscint.tavg-op4-hxy-sea.mon.GLB", + "ocean.phcint.tavg-op4-hxy-sea.mon.GLB", + "ocean.pso.tavg-u-hxy-sea.mon.GLB", + "ocean.scint.tavg-op4-hxy-sea.mon.GLB", + "ocean.sduo.tavg-u-hxy-sea.mon.GLB", + "ocean.sduo.tpt-u-hxy-sea.3hr.GLB", + "ocean.sdvo.tavg-u-hxy-sea.mon.GLB", + "ocean.sdvo.tpt-u-hxy-sea.3hr.GLB", + "ocean.sfx.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfx.tavg-u-hxy-sea.mon.GLB", + "ocean.sfy.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfy.tavg-u-hxy-sea.mon.GLB", + "ocean.sltbasin.tavg-u-hyb-sea.mon.GLB", + "ocean.sltovgyre.tavg-u-hyb-sea.mon.GLB", + "ocean.sltovovrt.tavg-u-hyb-sea.mon.GLB", + "ocean.so.tavg-ol-hm-sea.mon.GLB", + "ocean.so.tavg-ol-hxy-sea.dec.GLB", + "ocean.so.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.sob.tavg-u-hxy-sea.mon.GLB", + "ocean.sos.tavg-u-hm-sea.mon.30S-90S", + "ocean.sos.tavg-u-hm-sea.mon.GLB", + "ocean.swh.tavg-u-hxy-sea.mon.GLB", + "ocean.swh.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhmax.tmax-u-hxy-sea.mon.GLB", + "ocean.swhmax.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhswell.tavg-u-hxy-sea.mon.GLB", + "ocean.swhswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.swhwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.t20d.tavg-u-hxy-sea.mon.GLB", + "ocean.tauuo.tavg-u-hxy-sea.3hr.GLB", + "ocean.tauuo.tavg-u-hxy-sea.dec.GLB", + "ocean.tauvo.tavg-u-hxy-sea.3hr.GLB", + "ocean.tauvo.tavg-u-hxy-sea.dec.GLB", + "ocean.thetao.tavg-d2000m-hxy-sea.mon.GLB", + "ocean.thetao.tavg-d300m-hxy-sea.mon.GLB", + "ocean.thetao.tavg-d700m-hxy-sea.mon.GLB", + "ocean.thetao.tavg-ol-hm-sea.mon.GLB", + "ocean.thetao.tavg-ol-hxy-sea.dec.GLB", + "ocean.thetao.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.thetao.tavg-op20bar-hxy-sea.day.GLB", + "ocean.thetaot.tavg-u-hxy-sea.mon.GLB", + "ocean.thkcello.tavg-ol-hxy-sea.dec.GLB", + "ocean.tob.tavg-u-hxy-sea.mon.GLB", + "ocean.tos.tavg-u-hm-sea.mon.GLB", + "ocean.tos.tavg-u-hxy-sea.mon.30S-90S", + "ocean.tos.tpt-u-hxy-sea.3hr.GLB", + "ocean.tossq.tavg-u-hxy-sea.day.GLB", + "ocean.umo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.uo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.uos.tavg-u-hxy-sea.day.GLB", + "ocean.vmo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.vo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.volcello.tavg-ol-hxy-sea.dec.GLB", + "ocean.volcello.tavg-ol-hxy-sea.mon.GLB", + "ocean.volcello.tavg-ol-hxy-sea.yr.GLB", + "ocean.volcello.ti-ol-hxy-sea.fx.GLB", + "ocean.volo.tavg-u-hm-sea.dec.GLB", + "ocean.volo.tavg-u-hm-sea.mon.GLB", + "ocean.vos.tavg-u-hxy-sea.day.GLB", + "ocean.vsf.tavg-u-hxy-sea.mon.GLB", + "ocean.wdir.tavg-u-hxy-sea.mon.GLB", + "ocean.wdir.tpt-u-hxy-sea.3hr.GLB", + "ocean.wdirswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wdirswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wdirwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wdirwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.wfcorr.tavg-u-hxy-sea.mon.GLB", + "ocean.wfo.tavg-u-hxy-sea.mon.GLB", + "ocean.wmo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.wo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.wpdir.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdir.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpdirswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdirswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpdirwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdirwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpp.tavg-u-hxy-sea.mon.GLB", + "ocean.wpp.tpt-u-hxy-sea.3hr.GLB", + "ocean.wppswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wppswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wppwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wppwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.zfullo.tavg-ol-hxy-sea.yr.GLB", + "ocean.zos.tavg-u-hxy-sea.mon.30S-90S", + "ocean.zossq.tavg-u-hxy-sea.mon.GLB", + "ocean.zostoga.tavg-u-hm-sea.day.GLB", + "ocnBgchem.bacc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.calc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chl.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chl.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.chl.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chlcalc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chldiat.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chldiat.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chldiaz.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chldiaz.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chlmisc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chlmisc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chlpico.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chlpico.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.detoc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dfe.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.dfe.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.dfe.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissic.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.dissic.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissoc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dmso.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.expc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.expcalc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.fgco2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fsfe.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fsn.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.graz.tavg-ol-hxy-sea.mon.30S-90S", + "ocnBgchem.icfriver.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intdic.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intdoc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intparag.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbfe.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbn.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbp.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbsi.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpcalcite.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpn2.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpoc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpp.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpp.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppcalc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppdiat.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppdiaz.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppmisc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppnitrate.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpppico.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.nh4.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.nh4.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.no3.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.no3.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.o2.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.ocfriver.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.ph.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.ph.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phyc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phyc.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.phyc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phycalc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phycalc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phydiat.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phydiat.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phydiaz.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phydiaz.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phymisc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phymisc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phypico.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phypico.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.po4.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.pp.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.si.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.spco2.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.spco2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.talk.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zmeso.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zmeso.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zmicro.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zmicro.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zmisc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zmisc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zooc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zooc.tavg-ol-hxy-sea.mon.GLB", + "seaIce.evspsbl.tavg-u-hxy-si.mon.GLB", + "seaIce.prra.tavg-u-hxy-si.mon.GLB", + "seaIce.prsn.tavg-u-hxy-si.mon.GLB", + "seaIce.rlds.tavg-u-hxy-si.mon.GLB", + "seaIce.rlus.tavg-u-hxy-si.mon.GLB", + "seaIce.rsds.tavg-u-hxy-si.day.GLB", + "seaIce.rsds.tavg-u-hxy-si.mon.GLB", + "seaIce.rsus.tavg-u-hxy-si.day.GLB", + "seaIce.rsus.tavg-u-hxy-si.mon.GLB", + "seaIce.sbl.tavg-u-hxy-si.mon.GLB", + "seaIce.siage.tavg-u-hxy-si.day.GLB", + "seaIce.siage.tavg-u-hxy-si.mon.30S-90S", + "seaIce.siarea.tavg-u-hm-u.mon.NH", + "seaIce.siarea.tavg-u-hm-u.mon.SH", + "seaIce.siconc.tavg-u-hxy-u.mon.30S-90S", + "seaIce.siconca.tavg-u-hxy-u.day.GLB", + "seaIce.siconca.tavg-u-hxy-u.mon.GLB", + "seaIce.sidconcdyn.tavg-u-hxy-sea.mon.GLB", + "seaIce.sidconcth.tavg-u-hxy-sea.mon.GLB", + "seaIce.sidmassdyn.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthsi.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthwat.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmeltbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmeltlat.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmelttop.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassth.tavg-u-hxy-si.mon.GLB", + "seaIce.sieqthick.tavg-u-hxy-si.mon.GLB", + "seaIce.siextent.tavg-u-hm-u.mon.NH", + "seaIce.siextent.tavg-u-hm-u.mon.SH", + "seaIce.siflcondbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflcondtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sifllattop.tavg-u-hxy-si.mon.GLB", + "seaIce.siflsensbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflsenstop.tavg-u-hxy-si.mon.GLB", + "seaIce.siflswdbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sihc.tavg-u-hxy-sea.mon.GLB", + "seaIce.sisndmassdyn.tavg-u-hxy-si.mon.GLB", + "seaIce.sisndmasssi.tavg-u-hxy-si.mon.GLB", + "seaIce.sisndmasswind.tavg-u-hxy-si.mon.GLB", + "seaIce.sisnhc.tavg-u-hxy-si.mon.GLB", + "seaIce.sisnmass.tavg-u-hm-u.mon.NH", + "seaIce.sisnmass.tavg-u-hm-u.mon.SH", + "seaIce.sispeed.tavg-u-hxy-si.day.GLB", + "seaIce.sispeed.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-si.day.GLB", + "seaIce.sithick.tavg-u-hxy-si.mon.30S-90S", + "seaIce.sitimefrac.tavg-u-hxy-sea.day.GLB", + "seaIce.sitimefrac.tavg-u-hxy-sea.mon.30S-90S", + "seaIce.siu.tavg-u-hxy-si.day.GLB", + "seaIce.siu.tavg-u-hxy-si.mon.30S-90S", + "seaIce.siv.tavg-u-hxy-si.day.GLB", + "seaIce.siv.tavg-u-hxy-si.mon.30S-90S", + "seaIce.sivol.tavg-u-hm-u.mon.NH", + "seaIce.sivol.tavg-u-hm-u.mon.SH", + "seaIce.snc.tavg-u-hxy-si.mon.GLB", + "seaIce.snd.tavg-u-hxy-sn.day.GLB", + "seaIce.snd.tavg-u-hxy-sn.mon.30S-90S", + "seaIce.snm.tavg-u-hxy-si.mon.GLB", + "seaIce.snw.tavg-u-hxy-si.mon.GLB", + "seaIce.ts.tavg-u-hxy-si.day.GLB", + "seaIce.ts.tavg-u-hxy-si.mon.30S-90S" + ], + "Medium": [ + "atmos.co2.tavg-h2m-hxy-u.mon.GLB", + "atmos.epfy.tavg-p39-hy-air.mon.GLB", + "atmos.epfz.tavg-p39-hy-air.mon.GLB", + "atmos.hur.tavg-700hPa-hxy-air.day.GLB", + "atmos.hur.tpt-100hPa-hxy-u.6hr.GLB", + "atmos.hur.tpt-500hPa-hxy-air.6hr.GLB", + "atmos.hur.tpt-850hPa-hxy-air.6hr.GLB", + "atmos.noaahi2m.tavg-h2m-hxy-u.day.GLB", + "atmos.noaahi2m.tmax-h2m-hxy-u.day.GLB", + "atmos.pr.tavg-u-hxy-u.6hr.GLB", + "atmos.pr.tmax-u-hxy-u.6hr.GLB", + "atmos.ps.tpt-u-hxy-u.1hr.GLB", + "atmos.ps.tpt-u-hxy-u.3hr.GLB", + "atmos.psl.tavg-u-hxy-u.6hr.GLB", + "atmos.rldscs.tavg-u-hxy-u.day.GLB", + "atmos.rls.tavg-u-hxy-u.day.GLB", + "atmos.rsdsdiff.tavg-u-hxy-u.1hr.GLB", + "atmos.rss.tavg-u-hxy-u.day.GLB", + "atmos.rv850.tavg-850hPa-hxy-air.6hr.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.1hr.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.3hr.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.6hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.6hr.GLB", + "atmos.tauu.tavg-u-hxy-u.day.GLB", + "atmos.tauv.tavg-u-hxy-u.day.GLB", + "atmos.tdps.tavg-h2m-hxy-u.day.GLB", + "atmos.tdps.tavg-h2m-hxy-u.mon.GLB", + "atmos.ts.tavg-u-hxy-u.1hr.GLB", + "atmos.ts.tavg-u-hxy-u.day.GLB", + "atmos.ua.tavg-h100m-hxy-u.3hr.GLB", + "atmos.ua.tpt-200hPa-hxy-u.6hr.GLB", + "atmos.uas.tavg-h10m-hxy-u.6hr.GLB", + "atmos.utendepfd.tavg-p39-hy-air.mon.GLB", + "atmos.va.tavg-h100m-hxy-u.3hr.GLB", + "atmos.va.tpt-200hPa-hxy-u.6hr.GLB", + "atmos.vas.tavg-h10m-hxy-u.6hr.GLB", + "atmos.vtem.tavg-p39-hy-air.mon.GLB", + "atmos.wbgt.tavg-h2m-hxy-u.day.GLB", + "atmos.wbgt.tmax-h2m-hxy-u.day.GLB", + "atmos.wsg.tmax-h100m-hxy-u.mon.GLB", + "atmos.wsg.tmax-h10m-hxy-u.mon.GLB", + "atmos.wtem.tavg-p39-hy-air.mon.GLB", + "atmos.zg.tavg-1000hPa-hxy-air.6hr.GLB", + "atmos.zg.tpt-700hPa-hxy-u.6hr.GLB", + "atmos.zg.tpt-925hPa-hxy-u.6hr.GLB", + "land.baresoilFrac.tavg-u-hxy-u.yr.GLB", + "land.cLitterCwd.tavg-u-hxy-lnd.mon.GLB", + "land.cLitterSubSurf.tavg-u-hxy-lnd.mon.GLB", + "land.cLitterSurf.tavg-u-hxy-lnd.mon.GLB", + "land.cOther.tavg-u-hxy-lnd.mon.GLB", + "land.cropFrac.tavg-u-hxy-u.yr.GLB", + "land.cropFracC3.tavg-u-hxy-u.mon.GLB", + "land.cropFracC4.tavg-u-hxy-u.mon.GLB", + "land.cSoil.tavg-sl-hxy-lnd.mon.GLB", + "land.cSoilPools.tavg-u-hxy-lnd.mon.GLB", + "land.cVeg.tavg-u-hxy-ng.mon.GLB", + "land.cVeg.tavg-u-hxy-shb.mon.GLB", + "land.cVeg.tavg-u-hxy-tree.mon.GLB", + "land.fLitterFire.tavg-u-hxy-lnd.mon.GLB", + "land.fNgasNonFire.tavg-u-hxy-lnd.mon.GLB", + "land.fVegFire.tavg-u-hxy-lnd.mon.GLB", + "land.fVegLitterMortality.tavg-u-hxy-lnd.mon.GLB", + "land.fVegLitterSenescence.tavg-u-hxy-lnd.mon.GLB", + "land.fVegSoilMortality.tavg-u-hxy-lnd.mon.GLB", + "land.fVegSoilSenescence.tavg-u-hxy-lnd.mon.GLB", + "land.gpp.tavg-u-hxy-ng.mon.GLB", + "land.gpp.tavg-u-hxy-shb.mon.GLB", + "land.gpp.tavg-u-hxy-tree.mon.GLB", + "land.grassFrac.tavg-u-hxy-u.yr.GLB", + "land.grassFracC3.tavg-u-hxy-u.mon.GLB", + "land.grassFracC4.tavg-u-hxy-u.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.3hr.GLB", + "land.mrros.tavg-u-hxy-lnd.3hr.GLB", + "land.mrsol.tpt-d10cm-hxy-lnd.3hr.GLB", + "land.nLeaf.tavg-u-hxy-lnd.mon.GLB", + "land.nLitterCwd.tavg-u-hxy-lnd.mon.GLB", + "land.nLitterSubSurf.tavg-u-hxy-lnd.mon.GLB", + "land.nLitterSurf.tavg-u-hxy-lnd.mon.GLB", + "land.nMineralNH4.tavg-u-hxy-lnd.mon.GLB", + "land.nMineralNO3.tavg-u-hxy-lnd.mon.GLB", + "land.nOther.tavg-u-hxy-lnd.mon.GLB", + "land.npp.tavg-u-hxy-ng.mon.GLB", + "land.npp.tavg-u-hxy-shb.mon.GLB", + "land.npp.tavg-u-hxy-tree.mon.GLB", + "land.nppLeaf.tavg-u-hxy-lnd.mon.GLB", + "land.nppOther.tavg-u-hxy-lnd.mon.GLB", + "land.nppRoot.tavg-u-hxy-lnd.mon.GLB", + "land.nppStem.tavg-u-hxy-lnd.mon.GLB", + "land.nRoot.tavg-u-hxy-lnd.mon.GLB", + "land.nStem.tavg-u-hxy-lnd.mon.GLB", + "land.pastureFracC3.tavg-u-hxy-u.mon.GLB", + "land.pastureFracC4.tavg-u-hxy-u.mon.GLB", + "land.ra.tavg-u-hxy-ng.mon.GLB", + "land.ra.tavg-u-hxy-shb.mon.GLB", + "land.ra.tavg-u-hxy-tree.mon.GLB", + "land.raLeaf.tavg-u-hxy-lnd.mon.GLB", + "land.raOther.tavg-u-hxy-lnd.mon.GLB", + "land.raRoot.tavg-u-hxy-lnd.mon.GLB", + "land.raStem.tavg-u-hxy-lnd.mon.GLB", + "land.residualFrac.tavg-u-hxy-u.yr.GLB", + "land.rh.tavg-u-hxy-ng.mon.GLB", + "land.rh.tavg-u-hxy-shb.mon.GLB", + "land.rh.tavg-u-hxy-tree.mon.GLB", + "land.rhLitter.tavg-u-hxy-lnd.mon.GLB", + "land.rhSoil.tavg-u-hxy-lnd.mon.GLB", + "land.shrubFrac.tavg-u-hxy-u.yr.GLB", + "land.treeFrac.tavg-u-hxy-u.yr.GLB", + "land.treeFracBdlDcd.tavg-u-hxy-u.mon.GLB", + "land.treeFracBdlEvg.tavg-u-hxy-u.mon.GLB", + "land.treeFracNdlDcd.tavg-u-hxy-u.mon.GLB", + "land.treeFracNdlEvg.tavg-u-hxy-u.mon.GLB", + "land.tsl.tavg-sl-hxy-lnd.day.GLB", + "land.vegFrac.tavg-u-hxy-u.yr.GLB", + "land.vegHeight.tavg-u-hxy-ng.mon.GLB", + "land.vegHeight.tavg-u-hxy-shb.mon.GLB", + "land.wetlandCH4cons.tavg-u-hxy-lnd.mon.GLB", + "land.wetlandCH4prod.tavg-u-hxy-lnd.mon.GLB", + "land.wetlandFrac.tavg-u-hxy-u.mon.GLB", + "landIce.snd.tavg-u-hxy-lnd.day.GLB", + "ocean.evspsbl.tavg-u-hxy-ifs.mon.GLB", + "ocean.ficeberg.tavg-u-hxy-sea.mon.GLB", + "ocean.hfacrossline.tavg-u-ht-sea.mon.GLB", + "ocean.hfevapds.tavg-u-hxy-ifs.mon.GLB", + "ocean.hfibthermds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfibthermds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfrainds.tavg-u-hxy-ifs.mon.GLB", + "ocean.hfrunoffds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfrunoffds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfsnthermds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfsnthermds.tavg-u-hxy-sea.mon.GLB", + "ocean.mfo.tavg-u-ht-sea.mon.GLB", + "ocean.msftmmpa.tavg-ol-hyb-sea.mon.GLB", + "ocean.sf6.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfacrossline.tavg-u-ht-sea.mon.GLB", + "ocean.sfdsi.tavg-u-hxy-sea.mon.GLB", + "ocean.sfriver.tavg-u-hxy-sea.mon.GLB", + "ocean.siflfwbot.tavg-u-hxy-sea.mon.GLB", + "ocean.so.tavg-ol-hxy-sea.day.GLB", + "ocean.t20d.tavg-u-hxy-sea.day.GLB", + "ocean.tnkebto.tavg-u-hxy-sea.yr.GLB", + "ocean.vsfcorr.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfevap.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfpr.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfriver.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfsit.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.arag.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.arag.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.calc.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.calc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chl.tavg-d0m-hxy-sea.day.GLB", + "ocnBgchem.chl.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.chlcalc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.co3.tavg-d0m-hxy-sea.day.GLB", + "ocnBgchem.co3.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.co3satarag.tavg-d0m-hxy-sea.day.GLB", + "ocnBgchem.co3satarag.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.dmso.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.epn.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.epp.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.epsi.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.expc.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.expcalc.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.fgdms.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fric.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.froc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.graz.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.intpp.tavg-u-hxy-sea.day.GLB", + "ocnBgchem.intppcalc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppdiat.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppdiaz.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppmisc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppnitrate.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intpppico.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.no3.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.o2.tavg-d0m-hxy-sea.day.GLB", + "ocnBgchem.o2.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.o2.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.ph.tavg-d0m-hxy-sea.day.GLB", + "ocnBgchem.ph.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.phyc.tavg-d0m-hxy-sea.day.GLB", + "ocnBgchem.phyc.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.pp.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.si.tavg-d0m-hxy-sea.mon.GLB", + "seaIce.sfdsi.tavg-u-hxy-si.mon.GLB", + "seaIce.siage.tavg-u-hxy-si.mon.GLB", + "seaIce.siarea.tavg-u-hm-u.day.NH", + "seaIce.siarea.tavg-u-hm-u.day.SH", + "seaIce.siareaacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.sicompstren.tavg-u-hxy-si.mon.GLB", + "seaIce.sidivvel.tpt-u-hxy-si.mon.GLB", + "seaIce.sidmasstranx.tavg-u-hxy-u.mon.GLB", + "seaIce.sidmasstrany.tavg-u-hxy-u.mon.GLB", + "seaIce.sidragbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidragtop.tavg-u-hxy-si.mon.GLB", + "seaIce.siextent.tavg-u-hm-u.day.NH", + "seaIce.siextent.tavg-u-hm-u.day.SH", + "seaIce.sifb.tavg-u-hxy-si.mon.GLB", + "seaIce.siflfwbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflfwdrain.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcecoriolx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcecorioly.tavg-u-hxy-si.mon.GLB", + "seaIce.siforceintstrx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforceintstry.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcetiltx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcetilty.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdconc.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdsnconc.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdsnthick.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdthick.tavg-u-hxy-si.mon.GLB", + "seaIce.simassacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.simpconc.tavg-u-hxy-si.mon.GLB", + "seaIce.simpeffconc.tavg-u-hxy-si.mon.GLB", + "seaIce.simprefrozen.tavg-u-hxy-simp.mon.GLB", + "seaIce.simpthick.tavg-u-hxy-simp.mon.GLB", + "seaIce.sirdgconc.tavg-u-hxy-si.mon.GLB", + "seaIce.sisali.tavg-u-hxy-si.mon.GLB", + "seaIce.sisaltmass.tavg-u-hxy-si.mon.GLB", + "seaIce.sishearvel.tpt-u-hxy-si.mon.GLB", + "seaIce.sisnmass.tavg-u-hm-u.day.NH", + "seaIce.sisnmass.tavg-u-hm-u.day.SH", + "seaIce.sisnmassacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.sistressave.tpt-u-hxy-si.mon.GLB", + "seaIce.sistressmax.tpt-u-hxy-si.mon.GLB", + "seaIce.sistrxdtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sistrxubot.tavg-u-hxy-si.mon.GLB", + "seaIce.sistrydtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sistryubot.tavg-u-hxy-si.mon.GLB", + "seaIce.sitempbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sitempsnic.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-sir.mon.GLB", + "seaIce.sivol.tavg-u-hm-u.day.NH", + "seaIce.sivol.tavg-u-hm-u.day.SH" + ], + "Low": [ + "aerosol.sfpm1.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.sfpm10.tavg-h2m-hxy-u.1hr.GLB", + "atmos.hurs.tavg-h2m-hxy-u.1hr.GLB", + "atmosChem.drynh3.tavg-u-hxy-u.day.GLB", + "atmosChem.drynh4.tavg-u-hxy-u.day.GLB", + "atmosChem.drynoy.tavg-u-hxy-u.day.GLB", + "atmosChem.flashrate.tavg-u-hxy-u.mon.GLB", + "atmosChem.wetnh3.tavg-u-hxy-u.day.GLB", + "atmosChem.wetnh4.tavg-u-hxy-u.day.GLB", + "atmosChem.wetnoy.tavg-u-hxy-u.day.GLB", + "land.c13Land.tavg-u-hxy-lnd.mon.GLB", + "land.c13Litter.tavg-u-hxy-lnd.mon.GLB", + "land.c13Soil.tavg-u-hxy-lnd.mon.GLB", + "land.c13Veg.tavg-u-hxy-lnd.mon.GLB", + "land.c14Land.tavg-u-hxy-lnd.mon.GLB", + "land.c14Litter.tavg-u-hxy-lnd.mon.GLB", + "land.c14Soil.tavg-u-hxy-lnd.mon.GLB", + "land.c14Veg.tavg-u-hxy-lnd.mon.GLB", + "land.gppc13.tavg-u-hxy-lnd.mon.GLB", + "land.gppc14.tavg-u-hxy-lnd.mon.GLB", + "land.netAtmosLandC13Flux.tavg-u-hxy-lnd.mon.GLB", + "land.netAtmosLandC14Flux.tavg-u-hxy-lnd.mon.GLB", + "land.rac13.tavg-u-hxy-lnd.mon.GLB", + "land.rac14.tavg-u-hxy-lnd.mon.GLB", + "land.rhc13.tavg-u-hxy-lnd.mon.GLB", + "land.rhc14.tavg-u-hxy-lnd.mon.GLB", + "ocean.difmxybo.tavg-ol-hxy-sea.yr.GLB", + "ocean.difmxylo.tavg-ol-hxy-sea.yr.GLB", + "ocean.diftrblo.tavg-ol-hxy-sea.yr.GLB", + "ocean.diftrelo.tavg-ol-hxy-sea.yr.GLB", + "ocean.difvho.tavg-ol-hxy-sea.yr.GLB", + "ocean.difvso.tavg-ol-hxy-sea.yr.GLB", + "ocean.dispkexyfo.tavg-u-hxy-sea.yr.GLB", + "ocean.dxto.ti-u-hxy-u.fx.GLB", + "ocean.dxuo.ti-u-hxy-u.fx.GLB", + "ocean.dxvo.ti-u-hxy-u.fx.GLB", + "ocean.dyto.ti-u-hxy-u.fx.GLB", + "ocean.dyuo.ti-u-hxy-u.fx.GLB", + "ocean.dyvo.ti-u-hxy-u.fx.GLB", + "ocean.mlotstsq.tavg-u-hxy-sea.mon.GLB", + "ocean.msftmmpa.tavg-rho-hyb-sea.mon.GLB", + "ocean.msftmsmpa.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftypa.tavg-ol-ht-sea.mon.GLB", + "ocean.msftypa.tavg-rho-ht-sea.mon.GLB", + "ocean.ocontempdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontempmint.tavg-u-hxy-sea.yr.GLB", + "ocean.ocontemppadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemppmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemppsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemprmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemptend.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottempdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottempmint.tavg-u-hxy-sea.yr.GLB", + "ocean.opottemppadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemppmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemppsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemprmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemptend.tavg-ol-hxy-sea.dec.GLB", + "ocean.osaltdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpsmadvect.tavg-ol-hxy-sea.mon.GLB", + "ocean.osaltpsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltrmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osalttend.tavg-ol-hxy-sea.yr.GLB", + "ocean.rsdoabsorb.tavg-ol-hxy-sea.yr.GLB", + "ocean.somint.tavg-u-hxy-sea.yr.GLB", + "ocean.sossq.tavg-u-hxy-sea.mon.GLB", + "ocean.thkcelluo.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcellvo.tavg-ol-hxy-sea.mon.GLB", + "ocean.tnpeo.tavg-u-hxy-sea.yr.GLB", + "ocean.tossq.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.dissi13c.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.dissi13c.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissi14c.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissi14cabio.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.dissi14cabio.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.fg13co2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fg14co2abio.tavg-u-hxy-sea.mon.GLB" + ] + }, + "hist-noFire": { + "Core": [ + "atmos.areacella.ti-u-hxy-u.fx.GLB", + "atmos.cl.tavg-al-hxy-u.mon.GLB", + "atmos.cli.tavg-al-hxy-u.mon.GLB", + "atmos.clivi.tavg-u-hxy-u.mon.GLB", + "atmos.clt.tavg-u-hxy-u.day.GLB", + "atmos.clt.tavg-u-hxy-u.mon.GLB", + "atmos.clw.tavg-al-hxy-u.mon.GLB", + "atmos.clwvi.tavg-u-hxy-u.mon.GLB", + "atmos.evspsbl.tavg-u-hxy-u.mon.GLB", + "atmos.hfls.tavg-u-hxy-u.mon.GLB", + "atmos.hfss.tavg-u-hxy-u.mon.GLB", + "atmos.hur.tavg-p19-hxy-air.mon.GLB", + "atmos.hur.tavg-p19-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.6hr.GLB", + "atmos.hurs.tavg-h2m-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.mon.GLB", + "atmos.hus.tavg-p19-hxy-u.day.GLB", + "atmos.hus.tavg-p19-hxy-u.mon.GLB", + "atmos.huss.tavg-h2m-hxy-u.day.GLB", + "atmos.huss.tavg-h2m-hxy-u.mon.GLB", + "atmos.huss.tpt-h2m-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.1hr.GLB", + "atmos.pr.tavg-u-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.day.GLB", + "atmos.pr.tavg-u-hxy-u.mon.GLB", + "atmos.prc.tavg-u-hxy-u.mon.GLB", + "atmos.prsn.tavg-u-hxy-u.mon.GLB", + "atmos.prw.tavg-u-hxy-u.mon.GLB", + "atmos.ps.tavg-u-hxy-u.day.GLB", + "atmos.ps.tavg-u-hxy-u.mon.GLB", + "atmos.psl.tavg-u-hxy-u.day.GLB", + "atmos.psl.tavg-u-hxy-u.mon.GLB", + "atmos.rlds.tavg-u-hxy-u.mon.GLB", + "atmos.rldscs.tavg-u-hxy-u.mon.GLB", + "atmos.rlus.tavg-u-hxy-u.mon.GLB", + "atmos.rluscs.tavg-u-hxy-u.mon.GLB", + "atmos.rlut.tavg-u-hxy-u.mon.GLB", + "atmos.rlutcs.tavg-u-hxy-u.mon.GLB", + "atmos.rsds.tavg-u-hxy-u.day.GLB", + "atmos.rsds.tavg-u-hxy-u.mon.GLB", + "atmos.rsdscs.tavg-u-hxy-u.mon.GLB", + "atmos.rsdt.tavg-u-hxy-u.mon.GLB", + "atmos.rsus.tavg-u-hxy-u.mon.GLB", + "atmos.rsuscs.tavg-u-hxy-u.mon.GLB", + "atmos.rsut.tavg-u-hxy-u.mon.GLB", + "atmos.rsutcs.tavg-u-hxy-u.mon.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.day.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.mon.GLB", + "atmos.sftlf.ti-u-hxy-u.fx.GLB", + "atmos.ta.tavg-p19-hxy-air.day.GLB", + "atmos.ta.tavg-p19-hxy-air.mon.GLB", + "atmos.ta.tpt-p3-hxy-air.6hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.day.GLB", + "atmos.tas.tavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tmax-h2m-hxy-u.day.GLB", + "atmos.tas.tmaxavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tmin-h2m-hxy-u.day.GLB", + "atmos.tas.tminavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tpt-h2m-hxy-u.3hr.GLB", + "atmos.tauu.tavg-u-hxy-u.mon.GLB", + "atmos.tauv.tavg-u-hxy-u.mon.GLB", + "atmos.ts.tavg-u-hxy-u.mon.GLB", + "atmos.ua.tavg-p19-hxy-air.day.GLB", + "atmos.ua.tavg-p19-hxy-air.mon.GLB", + "atmos.ua.tpt-p3-hxy-air.6hr.GLB", + "atmos.uas.tavg-h10m-hxy-u.day.GLB", + "atmos.uas.tavg-h10m-hxy-u.mon.GLB", + "atmos.uas.tpt-h10m-hxy-u.3hr.GLB", + "atmos.va.tavg-p19-hxy-air.day.GLB", + "atmos.va.tavg-p19-hxy-air.mon.GLB", + "atmos.va.tpt-p3-hxy-air.6hr.GLB", + "atmos.vas.tavg-h10m-hxy-u.day.GLB", + "atmos.vas.tavg-h10m-hxy-u.mon.GLB", + "atmos.vas.tpt-h10m-hxy-u.3hr.GLB", + "atmos.wap.tavg-p19-hxy-air.mon.GLB", + "atmos.wap.tavg-p19-hxy-u.day.GLB", + "atmos.zg.tavg-p19-hxy-air.day.GLB", + "atmos.zg.tavg-p19-hxy-air.mon.GLB", + "land.evspsblsoi.tavg-u-hxy-lnd.mon.GLB", + "land.evspsblveg.tavg-u-hxy-lnd.mon.GLB", + "land.lai.tavg-u-hxy-lnd.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.mon.GLB", + "land.mrros.tavg-u-hxy-lnd.mon.GLB", + "land.mrso.tavg-u-hxy-lnd.mon.GLB", + "land.mrsofc.ti-u-hxy-lnd.fx.GLB", + "land.mrsol.tavg-d10cm-hxy-lnd.mon.GLB", + "land.orog.ti-u-hxy-u.fx.GLB", + "land.rootd.ti-u-hxy-lnd.fx.GLB", + "land.sftgif.ti-u-hxy-u.fx.GLB", + "land.slthick.ti-sl-hxy-lnd.fx.GLB", + "landIce.mrfso.tavg-u-hxy-lnd.mon.GLB", + "landIce.snc.tavg-u-hxy-lnd.mon.GLB", + "landIce.snw.tavg-u-hxy-lnd.mon.GLB", + "ocean.areacello.ti-u-hxy-u.fx.GLB", + "ocean.basin.ti-u-hxy-u.fx.GLB", + "ocean.bigthetao.tavg-ol-hxy-sea.mon.GLB", + "ocean.deptho.ti-u-hxy-sea.fx.GLB", + "ocean.hfds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfgeou.ti-u-hxy-sea.fx.GLB", + "ocean.masscello.tavg-ol-hxy-sea.mon.GLB", + "ocean.masscello.ti-ol-hxy-sea.fx.GLB", + "ocean.mlotst.tavg-u-hxy-sea.mon.GLB", + "ocean.sftof.ti-u-hxy-u.fx.GLB", + "ocean.so.tavg-ol-hxy-sea.mon.GLB", + "ocean.sos.tavg-u-hxy-sea.day.GLB", + "ocean.sos.tavg-u-hxy-sea.mon.GLB", + "ocean.tauuo.tavg-u-hxy-sea.mon.GLB", + "ocean.tauvo.tavg-u-hxy-sea.mon.GLB", + "ocean.thetao.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcello.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcello.ti-ol-hxy-sea.fx.GLB", + "ocean.tos.tavg-u-hxy-sea.day.GLB", + "ocean.tos.tavg-u-hxy-sea.mon.GLB", + "ocean.umo.tavg-ol-hxy-sea.mon.GLB", + "ocean.uo.tavg-ol-hxy-sea.mon.GLB", + "ocean.vmo.tavg-ol-hxy-sea.mon.GLB", + "ocean.vo.tavg-ol-hxy-sea.mon.GLB", + "ocean.wmo.tavg-ol-hxy-sea.mon.GLB", + "ocean.wo.tavg-ol-hxy-sea.mon.GLB", + "ocean.zos.tavg-u-hxy-sea.day.GLB", + "ocean.zos.tavg-u-hxy-sea.mon.GLB", + "ocean.zostoga.tavg-u-hm-sea.mon.GLB", + "seaIce.siconc.tavg-u-hxy-u.day.GLB", + "seaIce.siconc.tavg-u-hxy-u.mon.GLB", + "seaIce.simass.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-si.mon.GLB", + "seaIce.sitimefrac.tavg-u-hxy-sea.mon.GLB", + "seaIce.siu.tavg-u-hxy-si.mon.GLB", + "seaIce.siv.tavg-u-hxy-si.mon.GLB", + "seaIce.snd.tavg-u-hxy-sn.mon.GLB", + "seaIce.ts.tavg-u-hxy-si.mon.GLB" + ], + "High": [ + "aerosol.abs550aer.tavg-u-hxy-u.mon.GLB", + "aerosol.ccn.tavg-u-hxy-ccl.mon.GLB", + "aerosol.cdnc.tavg-al-hxy-u.mon.GLB", + "aerosol.conccn.tavg-al-hxy-u.mon.GLB", + "aerosol.emibbbc.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbch4.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbco.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbdms.tavg-u-hxy-u.mon.GLB", + "aerosol.emibboa.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbso2.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbvoc.tavg-u-hxy-u.mon.GLB", + "aerosol.lwp.tavg-u-hxy-u.mon.GLB", + "aerosol.mmrpm2p5.tavg-al-hxy-u.mon.GLB", + "aerosol.od550bb.tavg-u-hxy-u.mon.GLB", + "aerosol.od550bc.tavg-u-hxy-u.mon.GLB", + "aerosol.od550oa.tavg-u-hxy-u.mon.GLB", + "aerosol.od550soa.tavg-u-hxy-u.mon.GLB", + "atmos.cldnvi.tavg-u-hxy-u.day.GLB", + "atmos.cltc.tavg-u-hxy-u.mon.GLB", + "atmos.co2.tclm-p19-hxy-air.mon.GLB", + "atmos.fco2nat.tavg-u-hxy-u.mon.GLB", + "atmos.loadbc.tavg-u-hxy-u.day.GLB", + "atmos.loadoa.tavg-u-hxy-u.day.GLB", + "atmos.loadpoa.tavg-u-hxy-u.day.GLB", + "atmos.prra.tavg-u-hxy-u.mon.GLB", + "atmos.reffsclwtop.tavg-u-hxy-scl.mon.GLB", + "atmos.rls.tavg-u-hxy-u.mon.GLB", + "atmos.rss.tavg-u-hxy-u.mon.GLB", + "atmos.rtmt.tavg-u-hxy-u.mon.GLB", + "atmos.tntrs.tavg-al-hxy-u.mon.GLB", + "land.baresoilFrac.tavg-u-hxy-u.mon.GLB", + "land.burntFractionAll.tavg-u-hxy-u.mon.GLB", + "land.cLand.tavg-u-hxy-lnd.mon.GLB", + "land.cLeaf.tavg-u-hxy-lnd.mon.GLB", + "land.cLitter.tavg-u-hxy-lnd.mon.GLB", + "land.cProduct.tavg-u-hxy-lnd.mon.GLB", + "land.cRoot.tavg-u-hxy-lnd.mon.GLB", + "land.cropFrac.tavg-u-hxy-u.mon.GLB", + "land.cSoil.tavg-u-hxy-lnd.mon.GLB", + "land.cStem.tavg-u-hxy-lnd.mon.GLB", + "land.cVeg.tavg-u-hxy-lnd.mon.GLB", + "land.fBNF.tavg-u-hxy-lnd.mon.GLB", + "land.fFire.tavg-u-hxy-lnd.mon.GLB", + "land.fLuc.tavg-u-hxy-lnd.mon.GLB", + "land.fNgas.tavg-u-hxy-lnd.mon.GLB", + "land.fNgasFire.tavg-u-hxy-lnd.mon.GLB", + "land.fNLandToOcean.tavg-u-hxy-lnd.mon.GLB", + "land.fNleach.tavg-u-hxy-lnd.mon.GLB", + "land.fNLitterSoil.tavg-u-hxy-lnd.mon.GLB", + "land.fNloss.tavg-u-hxy-lnd.mon.GLB", + "land.fNup.tavg-u-hxy-lnd.mon.GLB", + "land.fNVegSoil.tavg-u-hxy-lnd.mon.GLB", + "land.gpp.tavg-u-hxy-lnd.mon.GLB", + "land.grassFrac.tavg-u-hxy-u.mon.GLB", + "land.nbp.tavg-u-hxy-lnd.mon.GLB", + "land.nep.tavg-u-hxy-lnd.mon.GLB", + "land.nLand.tavg-u-hxy-lnd.mon.GLB", + "land.nLitter.tavg-u-hxy-lnd.mon.GLB", + "land.nMineral.tavg-u-hxy-lnd.mon.GLB", + "land.npp.tavg-u-hxy-lnd.mon.GLB", + "land.nProduct.tavg-u-hxy-lnd.mon.GLB", + "land.nSoil.tavg-u-hxy-lnd.mon.GLB", + "land.nVeg.tavg-u-hxy-lnd.mon.GLB", + "land.ra.tavg-u-hxy-lnd.mon.GLB", + "land.rh.tavg-u-hxy-lnd.mon.GLB", + "land.shrubFrac.tavg-u-hxy-u.mon.GLB", + "land.tran.tavg-u-hxy-lnd.mon.GLB", + "land.treeFrac.tavg-u-hxy-u.mon.GLB", + "land.tsl.tavg-sl-hxy-lnd.mon.GLB", + "land.vegHeight.tavg-u-hxy-tree.mon.GLB", + "landIce.pflw.tavg-u-hxy-lnd.mon.GLB", + "landIce.snd.tavg-u-hxy-lnd.mon.GLB", + "landIce.snm.tavg-u-hxy-lnd.mon.GLB", + "landIce.sootsn.tavg-u-hxy-lnd.mon.GLB", + "landIce.tpf.tavg-u-hxy-lnd.mon.GLB", + "ocnBgchem.chl.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dfe.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.dissic.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.fgco2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.no3.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.po4.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.spco2.tavg-u-hxy-sea.mon.GLB" + ], + "Medium": [], + "Low": [] + }, + "hist-noirr": { + "Core": [ + "atmos.areacella.ti-u-hxy-u.fx.GLB", + "atmos.cl.tavg-al-hxy-u.mon.GLB", + "atmos.cli.tavg-al-hxy-u.mon.GLB", + "atmos.clivi.tavg-u-hxy-u.mon.GLB", + "atmos.clt.tavg-u-hxy-u.day.GLB", + "atmos.clt.tavg-u-hxy-u.mon.GLB", + "atmos.clw.tavg-al-hxy-u.mon.GLB", + "atmos.clwvi.tavg-u-hxy-u.mon.GLB", + "atmos.evspsbl.tavg-u-hxy-u.mon.GLB", + "atmos.hfls.tavg-u-hxy-u.mon.GLB", + "atmos.hfss.tavg-u-hxy-u.mon.GLB", + "atmos.hur.tavg-p19-hxy-air.mon.GLB", + "atmos.hur.tavg-p19-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.6hr.GLB", + "atmos.hurs.tavg-h2m-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.mon.GLB", + "atmos.hus.tavg-p19-hxy-u.day.GLB", + "atmos.hus.tavg-p19-hxy-u.mon.GLB", + "atmos.huss.tavg-h2m-hxy-u.day.GLB", + "atmos.huss.tavg-h2m-hxy-u.mon.GLB", + "atmos.huss.tpt-h2m-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.1hr.GLB", + "atmos.pr.tavg-u-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.day.GLB", + "atmos.pr.tavg-u-hxy-u.mon.GLB", + "atmos.prc.tavg-u-hxy-u.mon.GLB", + "atmos.prsn.tavg-u-hxy-u.mon.GLB", + "atmos.prw.tavg-u-hxy-u.mon.GLB", + "atmos.ps.tavg-u-hxy-u.day.GLB", + "atmos.ps.tavg-u-hxy-u.mon.GLB", + "atmos.psl.tavg-u-hxy-u.day.GLB", + "atmos.psl.tavg-u-hxy-u.mon.GLB", + "atmos.rlds.tavg-u-hxy-u.mon.GLB", + "atmos.rldscs.tavg-u-hxy-u.mon.GLB", + "atmos.rlus.tavg-u-hxy-u.mon.GLB", + "atmos.rluscs.tavg-u-hxy-u.mon.GLB", + "atmos.rlut.tavg-u-hxy-u.mon.GLB", + "atmos.rlutcs.tavg-u-hxy-u.mon.GLB", + "atmos.rsds.tavg-u-hxy-u.day.GLB", + "atmos.rsds.tavg-u-hxy-u.mon.GLB", + "atmos.rsdscs.tavg-u-hxy-u.mon.GLB", + "atmos.rsdt.tavg-u-hxy-u.mon.GLB", + "atmos.rsus.tavg-u-hxy-u.mon.GLB", + "atmos.rsuscs.tavg-u-hxy-u.mon.GLB", + "atmos.rsut.tavg-u-hxy-u.mon.GLB", + "atmos.rsutcs.tavg-u-hxy-u.mon.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.day.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.mon.GLB", + "atmos.sftlf.ti-u-hxy-u.fx.GLB", + "atmos.ta.tavg-p19-hxy-air.day.GLB", + "atmos.ta.tavg-p19-hxy-air.mon.GLB", + "atmos.ta.tpt-p3-hxy-air.6hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.day.GLB", + "atmos.tas.tavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tmax-h2m-hxy-u.day.GLB", + "atmos.tas.tmaxavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tmin-h2m-hxy-u.day.GLB", + "atmos.tas.tminavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tpt-h2m-hxy-u.3hr.GLB", + "atmos.tauu.tavg-u-hxy-u.mon.GLB", + "atmos.tauv.tavg-u-hxy-u.mon.GLB", + "atmos.ts.tavg-u-hxy-u.mon.GLB", + "atmos.ua.tavg-p19-hxy-air.day.GLB", + "atmos.ua.tavg-p19-hxy-air.mon.GLB", + "atmos.ua.tpt-p3-hxy-air.6hr.GLB", + "atmos.uas.tavg-h10m-hxy-u.day.GLB", + "atmos.uas.tavg-h10m-hxy-u.mon.GLB", + "atmos.uas.tpt-h10m-hxy-u.3hr.GLB", + "atmos.va.tavg-p19-hxy-air.day.GLB", + "atmos.va.tavg-p19-hxy-air.mon.GLB", + "atmos.va.tpt-p3-hxy-air.6hr.GLB", + "atmos.vas.tavg-h10m-hxy-u.day.GLB", + "atmos.vas.tavg-h10m-hxy-u.mon.GLB", + "atmos.vas.tpt-h10m-hxy-u.3hr.GLB", + "atmos.wap.tavg-p19-hxy-air.mon.GLB", + "atmos.wap.tavg-p19-hxy-u.day.GLB", + "atmos.zg.tavg-p19-hxy-air.day.GLB", + "atmos.zg.tavg-p19-hxy-air.mon.GLB", + "land.evspsblsoi.tavg-u-hxy-lnd.mon.GLB", + "land.evspsblveg.tavg-u-hxy-lnd.mon.GLB", + "land.lai.tavg-u-hxy-lnd.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.mon.GLB", + "land.mrros.tavg-u-hxy-lnd.mon.GLB", + "land.mrso.tavg-u-hxy-lnd.mon.GLB", + "land.mrsofc.ti-u-hxy-lnd.fx.GLB", + "land.mrsol.tavg-d10cm-hxy-lnd.mon.GLB", + "land.orog.ti-u-hxy-u.fx.GLB", + "land.rootd.ti-u-hxy-lnd.fx.GLB", + "land.sftgif.ti-u-hxy-u.fx.GLB", + "land.slthick.ti-sl-hxy-lnd.fx.GLB", + "landIce.mrfso.tavg-u-hxy-lnd.mon.GLB", + "landIce.snc.tavg-u-hxy-lnd.mon.GLB", + "landIce.snw.tavg-u-hxy-lnd.mon.GLB", + "ocean.areacello.ti-u-hxy-u.fx.GLB", + "ocean.basin.ti-u-hxy-u.fx.GLB", + "ocean.bigthetao.tavg-ol-hxy-sea.mon.GLB", + "ocean.deptho.ti-u-hxy-sea.fx.GLB", + "ocean.hfds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfgeou.ti-u-hxy-sea.fx.GLB", + "ocean.masscello.tavg-ol-hxy-sea.mon.GLB", + "ocean.masscello.ti-ol-hxy-sea.fx.GLB", + "ocean.mlotst.tavg-u-hxy-sea.mon.GLB", + "ocean.sftof.ti-u-hxy-u.fx.GLB", + "ocean.so.tavg-ol-hxy-sea.mon.GLB", + "ocean.sos.tavg-u-hxy-sea.day.GLB", + "ocean.sos.tavg-u-hxy-sea.mon.GLB", + "ocean.tauuo.tavg-u-hxy-sea.mon.GLB", + "ocean.tauvo.tavg-u-hxy-sea.mon.GLB", + "ocean.thetao.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcello.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcello.ti-ol-hxy-sea.fx.GLB", + "ocean.tos.tavg-u-hxy-sea.day.GLB", + "ocean.tos.tavg-u-hxy-sea.mon.GLB", + "ocean.umo.tavg-ol-hxy-sea.mon.GLB", + "ocean.uo.tavg-ol-hxy-sea.mon.GLB", + "ocean.vmo.tavg-ol-hxy-sea.mon.GLB", + "ocean.vo.tavg-ol-hxy-sea.mon.GLB", + "ocean.wmo.tavg-ol-hxy-sea.mon.GLB", + "ocean.wo.tavg-ol-hxy-sea.mon.GLB", + "ocean.zos.tavg-u-hxy-sea.day.GLB", + "ocean.zos.tavg-u-hxy-sea.mon.GLB", + "ocean.zostoga.tavg-u-hm-sea.mon.GLB", + "seaIce.siconc.tavg-u-hxy-u.day.GLB", + "seaIce.siconc.tavg-u-hxy-u.mon.GLB", + "seaIce.simass.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-si.mon.GLB", + "seaIce.sitimefrac.tavg-u-hxy-sea.mon.GLB", + "seaIce.siu.tavg-u-hxy-si.mon.GLB", + "seaIce.siv.tavg-u-hxy-si.mon.GLB", + "seaIce.snd.tavg-u-hxy-sn.mon.GLB", + "seaIce.ts.tavg-u-hxy-si.mon.GLB" + ], + "High": [ + "atmos.evspsbl.tavg-u-hxy-lnd.day.GLB", + "atmos.hurs.tmax-h2m-hxy-u.day.GLB", + "atmos.hurs.tmin-h2m-hxy-u.day.GLB", + "atmos.rlds.tavg-u-hxy-u.day.GLB", + "atmos.rlus.tavg-u-hxy-u.day.GLB", + "land.evspsblpot.tavg-u-hxy-lnd.day.GLB" + ], + "Medium": [ + "aerosol.o3.tmax-h2m-hxy-u.day.GLB", + "aerosol.sfpm1.tavg-h2m-hxy-u.day.GLB", + "aerosol.sfpm10.tavg-h2m-hxy-u.day.GLB", + "aerosol.sfpm25.tavg-h2m-hxy-u.day.GLB", + "atmos.rsdsdiff.tavg-u-hxy-u.day.GLB", + "land.irrDem.tavg-u-hxy-u.day.GLB", + "land.irrGw.tavg-u-hxy-u.day.GLB", + "land.irrLut.tavg-u-hxy-u.day.GLB", + "land.irrSurf.tavg-u-hxy-u.day.GLB", + "land.mrso.tavg-u-hxy-lnd.day.GLB", + "land.rzwc.tavg-u-hxy-lnd.day.GLB" + ], + "Low": [ + "atmos.co2.tavg-h2m-hxy-u.mon.GLB", + "atmos.hurs.tavg-h2m-hxy-u.1hr.GLB", + "atmos.hurs.tmin-h2m-hxy-crp.day.GLB", + "atmos.pr.tavg-u-hxy-crp.day.GLB", + "atmos.rsds.tavg-u-hxy-u.1hr.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.1hr.GLB", + "atmos.sfcWind.tmax-h10m-hxy-u.day.GLB", + "atmos.tas.tmax-h2m-hxy-crp.day.GLB", + "atmos.tas.tmin-h2m-hxy-crp.day.GLB", + "atmosChem.emich4.tavg-u-hxy-u.mon.GLB", + "land.c3PftFrac.tavg-u-hxy-u.mon.GLB", + "land.c4PftFrac.tavg-u-hxy-u.mon.GLB", + "land.cropFracC3.tavg-u-hxy-u.mon.GLB", + "land.cropFracC4.tavg-u-hxy-u.mon.GLB", + "land.cSoil.tavg-u-hxy-lnd.mon.GLB", + "land.fHarvestToAtmos.tavg-u-hxy-lnd.mon.GLB", + "land.irrLut.tavg-u-hxy-multi.mon.GLB", + "land.lai.tavg-u-hxy-lnd.day.GLB", + "land.pastureFrac.tavg-u-hxy-u.mon.GLB", + "land.pastureFracC3.tavg-u-hxy-u.mon.GLB", + "land.pastureFracC4.tavg-u-hxy-u.mon.GLB", + "land.tas.tavg-u-hxy-u.1hr.GLB" + ] + }, + "hist-piAer": { + "Core": [ + "atmos.areacella.ti-u-hxy-u.fx.GLB", + "atmos.cl.tavg-al-hxy-u.mon.GLB", + "atmos.cli.tavg-al-hxy-u.mon.GLB", + "atmos.clivi.tavg-u-hxy-u.mon.GLB", + "atmos.clt.tavg-u-hxy-u.day.GLB", + "atmos.clt.tavg-u-hxy-u.mon.GLB", + "atmos.clw.tavg-al-hxy-u.mon.GLB", + "atmos.clwvi.tavg-u-hxy-u.mon.GLB", + "atmos.evspsbl.tavg-u-hxy-u.mon.GLB", + "atmos.hfls.tavg-u-hxy-u.mon.GLB", + "atmos.hfss.tavg-u-hxy-u.mon.GLB", + "atmos.hur.tavg-p19-hxy-air.mon.GLB", + "atmos.hur.tavg-p19-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.6hr.GLB", + "atmos.hurs.tavg-h2m-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.mon.GLB", + "atmos.hus.tavg-p19-hxy-u.day.GLB", + "atmos.hus.tavg-p19-hxy-u.mon.GLB", + "atmos.huss.tavg-h2m-hxy-u.day.GLB", + "atmos.huss.tavg-h2m-hxy-u.mon.GLB", + "atmos.huss.tpt-h2m-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.1hr.GLB", + "atmos.pr.tavg-u-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.day.GLB", + "atmos.pr.tavg-u-hxy-u.mon.GLB", + "atmos.prc.tavg-u-hxy-u.mon.GLB", + "atmos.prsn.tavg-u-hxy-u.mon.GLB", + "atmos.prw.tavg-u-hxy-u.mon.GLB", + "atmos.ps.tavg-u-hxy-u.day.GLB", + "atmos.ps.tavg-u-hxy-u.mon.GLB", + "atmos.psl.tavg-u-hxy-u.day.GLB", + "atmos.psl.tavg-u-hxy-u.mon.GLB", + "atmos.rlds.tavg-u-hxy-u.mon.GLB", + "atmos.rldscs.tavg-u-hxy-u.mon.GLB", + "atmos.rlus.tavg-u-hxy-u.mon.GLB", + "atmos.rluscs.tavg-u-hxy-u.mon.GLB", + "atmos.rlut.tavg-u-hxy-u.mon.GLB", + "atmos.rlutcs.tavg-u-hxy-u.mon.GLB", + "atmos.rsds.tavg-u-hxy-u.day.GLB", + "atmos.rsds.tavg-u-hxy-u.mon.GLB", + "atmos.rsdscs.tavg-u-hxy-u.mon.GLB", + "atmos.rsdt.tavg-u-hxy-u.mon.GLB", + "atmos.rsus.tavg-u-hxy-u.mon.GLB", + "atmos.rsuscs.tavg-u-hxy-u.mon.GLB", + "atmos.rsut.tavg-u-hxy-u.mon.GLB", + "atmos.rsutcs.tavg-u-hxy-u.mon.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.day.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.mon.GLB", + "atmos.sftlf.ti-u-hxy-u.fx.GLB", + "atmos.ta.tavg-p19-hxy-air.day.GLB", + "atmos.ta.tavg-p19-hxy-air.mon.GLB", + "atmos.ta.tpt-p3-hxy-air.6hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.day.GLB", + "atmos.tas.tavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tmax-h2m-hxy-u.day.GLB", + "atmos.tas.tmaxavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tmin-h2m-hxy-u.day.GLB", + "atmos.tas.tminavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tpt-h2m-hxy-u.3hr.GLB", + "atmos.tauu.tavg-u-hxy-u.mon.GLB", + "atmos.tauv.tavg-u-hxy-u.mon.GLB", + "atmos.ts.tavg-u-hxy-u.mon.GLB", + "atmos.ua.tavg-p19-hxy-air.day.GLB", + "atmos.ua.tavg-p19-hxy-air.mon.GLB", + "atmos.ua.tpt-p3-hxy-air.6hr.GLB", + "atmos.uas.tavg-h10m-hxy-u.day.GLB", + "atmos.uas.tavg-h10m-hxy-u.mon.GLB", + "atmos.uas.tpt-h10m-hxy-u.3hr.GLB", + "atmos.va.tavg-p19-hxy-air.day.GLB", + "atmos.va.tavg-p19-hxy-air.mon.GLB", + "atmos.va.tpt-p3-hxy-air.6hr.GLB", + "atmos.vas.tavg-h10m-hxy-u.day.GLB", + "atmos.vas.tavg-h10m-hxy-u.mon.GLB", + "atmos.vas.tpt-h10m-hxy-u.3hr.GLB", + "atmos.wap.tavg-p19-hxy-air.mon.GLB", + "atmos.wap.tavg-p19-hxy-u.day.GLB", + "atmos.zg.tavg-p19-hxy-air.day.GLB", + "atmos.zg.tavg-p19-hxy-air.mon.GLB", + "land.evspsblsoi.tavg-u-hxy-lnd.mon.GLB", + "land.evspsblveg.tavg-u-hxy-lnd.mon.GLB", + "land.lai.tavg-u-hxy-lnd.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.mon.GLB", + "land.mrros.tavg-u-hxy-lnd.mon.GLB", + "land.mrso.tavg-u-hxy-lnd.mon.GLB", + "land.mrsofc.ti-u-hxy-lnd.fx.GLB", + "land.mrsol.tavg-d10cm-hxy-lnd.mon.GLB", + "land.orog.ti-u-hxy-u.fx.GLB", + "land.rootd.ti-u-hxy-lnd.fx.GLB", + "land.sftgif.ti-u-hxy-u.fx.GLB", + "land.slthick.ti-sl-hxy-lnd.fx.GLB", + "landIce.mrfso.tavg-u-hxy-lnd.mon.GLB", + "landIce.snc.tavg-u-hxy-lnd.mon.GLB", + "landIce.snw.tavg-u-hxy-lnd.mon.GLB", + "ocean.areacello.ti-u-hxy-u.fx.GLB", + "ocean.basin.ti-u-hxy-u.fx.GLB", + "ocean.bigthetao.tavg-ol-hxy-sea.mon.GLB", + "ocean.deptho.ti-u-hxy-sea.fx.GLB", + "ocean.hfds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfgeou.ti-u-hxy-sea.fx.GLB", + "ocean.masscello.tavg-ol-hxy-sea.mon.GLB", + "ocean.masscello.ti-ol-hxy-sea.fx.GLB", + "ocean.mlotst.tavg-u-hxy-sea.mon.GLB", + "ocean.sftof.ti-u-hxy-u.fx.GLB", + "ocean.so.tavg-ol-hxy-sea.mon.GLB", + "ocean.sos.tavg-u-hxy-sea.day.GLB", + "ocean.sos.tavg-u-hxy-sea.mon.GLB", + "ocean.tauuo.tavg-u-hxy-sea.mon.GLB", + "ocean.tauvo.tavg-u-hxy-sea.mon.GLB", + "ocean.thetao.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcello.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcello.ti-ol-hxy-sea.fx.GLB", + "ocean.tos.tavg-u-hxy-sea.day.GLB", + "ocean.tos.tavg-u-hxy-sea.mon.GLB", + "ocean.umo.tavg-ol-hxy-sea.mon.GLB", + "ocean.uo.tavg-ol-hxy-sea.mon.GLB", + "ocean.vmo.tavg-ol-hxy-sea.mon.GLB", + "ocean.vo.tavg-ol-hxy-sea.mon.GLB", + "ocean.wmo.tavg-ol-hxy-sea.mon.GLB", + "ocean.wo.tavg-ol-hxy-sea.mon.GLB", + "ocean.zos.tavg-u-hxy-sea.day.GLB", + "ocean.zos.tavg-u-hxy-sea.mon.GLB", + "ocean.zostoga.tavg-u-hm-sea.mon.GLB", + "seaIce.siconc.tavg-u-hxy-u.day.GLB", + "seaIce.siconc.tavg-u-hxy-u.mon.GLB", + "seaIce.simass.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-si.mon.GLB", + "seaIce.sitimefrac.tavg-u-hxy-sea.mon.GLB", + "seaIce.siu.tavg-u-hxy-si.mon.GLB", + "seaIce.siv.tavg-u-hxy-si.mon.GLB", + "seaIce.snd.tavg-u-hxy-sn.mon.GLB", + "seaIce.ts.tavg-u-hxy-si.mon.GLB" + ], + "High": [ + "aerosol.abs550aer.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550bc.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550dust.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550no3.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550oa.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550so4.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550ss.tavg-u-hxy-u.mon.GLB", + "aerosol.airmass.tavg-al-hxy-u.mon.GLB", + "aerosol.aoanh.tavg-al-hxy-u.mon.NH", + "aerosol.bry.tavg-p39-hy-air.mon.GLB", + "aerosol.bs550aer.tpt-al-hxy-u.6hr.GLB", + "aerosol.c2h6.tavg-al-hxy-u.mon.GLB", + "aerosol.c3h6.tavg-al-hxy-u.mon.GLB", + "aerosol.c3h8.tavg-al-hxy-u.mon.GLB", + "aerosol.ccldncl.tavg-u-hxy-ccl.mon.GLB", + "aerosol.ccn.tavg-u-hxy-ccl.mon.30S-90S", + "aerosol.ccn.tavg-u-hxy-ccl.mon.GLB", + "aerosol.ccn1.tavg-al-hxy-u.mon.30S-90S", + "aerosol.ccn1.tavg-al-hxy-u.mon.GLB", + "aerosol.ccnp02.tavg-al-hxy-u.mon.30S-90S", + "aerosol.ccnp02.tavg-al-hxy-u.mon.GLB", + "aerosol.cdnc.tavg-al-hxy-u.mon.30S-90S", + "aerosol.cdnc.tavg-al-hxy-u.mon.GLB", + "aerosol.cfc114.tavg-al-hxy-u.mon.GLB", + "aerosol.ch3coch3.tavg-al-hxy-u.mon.GLB", + "aerosol.cheaqpso4.tavg-al-hxy-u.mon.GLB", + "aerosol.chegpso4.tavg-al-hxy-u.mon.GLB", + "aerosol.chepasoa.tavg-u-hxy-u.mon.GLB", + "aerosol.chepsoa.tavg-u-hxy-u.mon.GLB", + "aerosol.cly.tavg-p39-hy-air.mon.GLB", + "aerosol.co.tavg-al-hxy-u.mon.GLB", + "aerosol.co.tavg-h2m-hxy-u.day.GLB", + "aerosol.cod.tavg-u-hxy-u.day.GLB", + "aerosol.cod.tavg-u-hxy-u.mon.30S-90S", + "aerosol.cod.tavg-u-hxy-u.mon.GLB", + "aerosol.conccn.tavg-al-hxy-u.mon.GLB", + "aerosol.conccn.tpt-u-hs-u.3hr.GLB", + "aerosol.drybc.tavg-u-hxy-u.mon.GLB", + "aerosol.drydust.tavg-u-hxy-u.mon.GLB", + "aerosol.dryno3.tavg-u-hxy-u.mon.GLB", + "aerosol.dryo3.tavg-u-hxy-u.mon.GLB", + "aerosol.dryoa.tavg-u-hxy-u.mon.GLB", + "aerosol.dryso2.tavg-u-hxy-u.mon.GLB", + "aerosol.dryso4.tavg-u-hxy-u.mon.GLB", + "aerosol.dryss.tavg-u-hxy-u.mon.GLB", + "aerosol.ec550aer.tavg-al-hxy-u.mon.GLB", + "aerosol.ec550aer.tpt-u-hxy-u.6hr.GLB", + "aerosol.emiaco.tavg-u-hxy-u.mon.GLB", + "aerosol.emianox.tavg-u-hxy-u.mon.GLB", + "aerosol.emiaoa.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbbc.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbch4.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbco.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbdms.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbnh3.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbnox.tavg-u-hxy-u.mon.GLB", + "aerosol.emibboa.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbso2.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbvoc.tavg-u-hxy-u.mon.GLB", + "aerosol.emibc.tavg-u-hxy-u.mon.GLB", + "aerosol.emibvoc.tavg-u-hxy-u.mon.GLB", + "aerosol.emico.tavg-u-hxy-u.mon.GLB", + "aerosol.emidms.tavg-u-hxy-u.mon.30S-90S", + "aerosol.emidms.tavg-u-hxy-u.mon.GLB", + "aerosol.emidust.tavg-u-hxy-u.mon.GLB", + "aerosol.emiisop.tavg-u-hxy-u.mon.GLB", + "aerosol.emilnox.tavg-al-hxy-u.mon.GLB", + "aerosol.eminh3.tavg-u-hxy-u.mon.GLB", + "aerosol.eminox.tavg-u-hxy-u.mon.GLB", + "aerosol.emioa.tavg-u-hxy-u.mon.GLB", + "aerosol.emiso2.tavg-u-hxy-u.mon.GLB", + "aerosol.emiso4.tavg-u-hxy-u.mon.GLB", + "aerosol.emiss.tavg-u-hxy-u.mon.30S-90S", + "aerosol.emiss.tavg-u-hxy-u.mon.GLB", + "aerosol.emivoc.tavg-u-hxy-u.mon.GLB", + "aerosol.h2o.tavg-al-hxy-u.mon.GLB", + "aerosol.h2o.tavg-p39-hy-air.mon.GLB", + "aerosol.hcfc22.tavg-al-hxy-u.mon.GLB", + "aerosol.hcho.tavg-al-hxy-u.mon.GLB", + "aerosol.hcl.tavg-al-hxy-u.mon.GLB", + "aerosol.hcl.tavg-p39-hy-air.mon.GLB", + "aerosol.hfc125.tavg-al-hxy-u.mon.GLB", + "aerosol.hfc134a.tavg-al-hxy-u.mon.GLB", + "aerosol.hno3.tavg-al-hxy-u.mon.GLB", + "aerosol.hno3.tavg-p39-hy-air.mon.GLB", + "aerosol.ho2.tavg-p39-hy-air.mon.GLB", + "aerosol.isop.tavg-al-hxy-u.mon.GLB", + "aerosol.jno2.tavg-al-hxy-u.mon.GLB", + "aerosol.lossch4.tavg-al-hxy-u.mon.GLB", + "aerosol.lossco.tavg-al-hxy-u.mon.GLB", + "aerosol.lossn2o.tavg-al-hxy-u.mon.GLB", + "aerosol.lwp.tavg-u-hxy-u.mon.GLB", + "aerosol.mmraerh2o.tavg-al-hxy-u.mon.GLB", + "aerosol.mmraerh2o.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmraerh2o.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrbc.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrbc.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrbc.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrbc.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrdust.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrdust.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrdust.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrdust.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrnh4.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrnh4.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrnh4.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrnh4.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrno3.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrno3.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrno3.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrno3.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmroa.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmroa.tavg-al-hxy-u.mon.GLB", + "aerosol.mmroa.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmroa.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrpm1.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrpm1.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrpm2p5.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrpm2p5.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrso4.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrso4.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrso4.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrso4.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrsoa.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrsoa.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrsoa.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrss.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrss.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrss.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrss.tpt-h2m-hs-u.3hr.GLB", + "aerosol.nh50.tavg-al-hxy-u.mon.GLB", + "aerosol.no.tavg-al-hxy-u.mon.GLB", + "aerosol.no2.tavg-al-hxy-u.mon.GLB", + "aerosol.no2.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.noy.tavg-p39-hy-air.mon.GLB", + "aerosol.o3.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.o3.tmax-h2m-hxy-u.day.GLB", + "aerosol.o3loss.tavg-al-hxy-u.mon.GLB", + "aerosol.o3prod.tavg-al-hxy-u.mon.GLB", + "aerosol.od443aer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550aer.tavg-u-hxy-u.day.GLB", + "aerosol.od550aer.tavg-u-hxy-u.mon.30S-90S", + "aerosol.od550aer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550aerh2o.tavg-u-hxy-u.mon.GLB", + "aerosol.od550bb.tavg-u-hxy-u.mon.GLB", + "aerosol.od550bc.tavg-u-hxy-u.mon.GLB", + "aerosol.od550csaer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550dust.tavg-u-hxy-u.mon.GLB", + "aerosol.od550lt1aer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550no3.tavg-u-hxy-u.mon.GLB", + "aerosol.od550oa.tavg-u-hxy-u.mon.GLB", + "aerosol.od550so4.tavg-u-hxy-u.mon.GLB", + "aerosol.od550soa.tavg-u-hxy-u.mon.GLB", + "aerosol.od550ss.tavg-u-hxy-u.mon.GLB", + "aerosol.od865aer.tavg-u-hxy-u.mon.GLB", + "aerosol.oh.tavg-al-hxy-u.mon.GLB", + "aerosol.oh.tavg-p39-hy-air.mon.GLB", + "aerosol.pan.tavg-al-hxy-u.mon.GLB", + "aerosol.photo1d.tavg-al-hxy-u.mon.GLB", + "aerosol.pod0.tsum-u-hxy-u.mon.GLB", + "aerosol.reffccwctop.tavg-u-hxy-cl.mon.GLB", + "aerosol.reffclwtop.tavg-u-hxy-cl.mon.30S-90S", + "aerosol.reffclwtop.tavg-u-hxy-cl.mon.GLB", + "aerosol.rluscsaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rlutaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rlutcsaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rsutaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rsutcsaf.tavg-u-hxy-u.mon.GLB", + "aerosol.sfpm1.tavg-h2m-hxy-u.day.GLB", + "aerosol.sfpm10.tavg-al-hxy-u.mon.30S-90S", + "aerosol.sfpm10.tavg-al-hxy-u.mon.GLB", + "aerosol.sfpm10.tavg-h2m-hxy-u.day.GLB", + "aerosol.sfpm25.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.sfpm25.tavg-h2m-hxy-u.day.GLB", + "aerosol.so2.tavg-al-hxy-u.mon.30S-90S", + "aerosol.so2.tavg-al-hxy-u.mon.GLB", + "aerosol.so2.tavg-h2m-hxy-u.day.GLB", + "aerosol.so2.tpt-h2m-hs-u.3hr.GLB", + "aerosol.tatp.tavg-u-hxy-u.mon.GLB", + "aerosol.toz.tavg-u-hxy-u.day.GLB", + "aerosol.toz.tavg-u-hxy-u.mon.GLB", + "aerosol.tropoz.tavg-u-hxy-u.mon.GLB", + "aerosol.ttop.tavg-u-hxy-cl.mon.GLB", + "aerosol.ua.tavg-10hPa-hxy-air.day.GLB", + "aerosol.vt100.tavg-100hPa-hy-air.mon.GLB", + "aerosol.wa.tavg-al-hxy-u.mon.GLB", + "aerosol.wetbc.tavg-u-hxy-u.mon.GLB", + "aerosol.wetdust.tavg-u-hxy-u.mon.GLB", + "aerosol.wetoa.tavg-u-hxy-u.mon.GLB", + "aerosol.wetso2.tavg-u-hxy-u.mon.GLB", + "aerosol.wetso4.tavg-u-hxy-u.mon.GLB", + "aerosol.wetss.tavg-u-hxy-u.mon.GLB", + "aerosol.zg.tavg-10hPa-hxy-air.day.GLB", + "atmos.albisccp.tavg-u-hxy-cl.mon.30S-90S", + "atmos.aod550volso4.tavg-u-hxy-u.mon.GLB", + "atmos.bldep.tavg-u-hxy-u.mon.GLB", + "atmos.bldep.tmax-u-hxy-u.day.GLB", + "atmos.bldep.tmin-u-hxy-u.day.GLB", + "atmos.cl.tavg-al-hxy-u.day.GLB", + "atmos.cl.tavg-al-hxy-u.mon.30S-90S", + "atmos.clc.tavg-al-hxy-u.mon.30S-90S", + "atmos.clc.tavg-al-hxy-u.mon.GLB", + "atmos.clcalipso.tavg-220hPa-hxy-air.mon.30S-90S", + "atmos.clcalipso.tavg-220hPa-hxy-air.mon.GLB", + "atmos.clcalipso.tavg-560hPa-hxy-air.mon.30S-90S", + "atmos.clcalipso.tavg-560hPa-hxy-air.mon.GLB", + "atmos.clcalipso.tavg-840hPa-hxy-air.mon.30S-90S", + "atmos.clcalipso.tavg-840hPa-hxy-air.mon.GLB", + "atmos.clcalipso.tavg-h40-hxy-air.mon.30S-90S", + "atmos.cldnci.tavg-u-hxy-cl.mon.GLB", + "atmos.cldncl.tavg-u-hxy-cl.mon.GLB", + "atmos.cldnvi.tavg-u-hxy-u.mon.GLB", + "atmos.cli.tavg-al-hxy-u.mon.30S-90S", + "atmos.clic.tavg-al-hxy-u.mon.30S-90S", + "atmos.clis.tavg-al-hxy-u.mon.30S-90S", + "atmos.clisccp.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clisccp.tavg-p7c-hxy-air.mon.GLB", + "atmos.clivi.tavg-u-hxy-u.mon.30S-90S", + "atmos.clivimodis.tavg-u-hxy-u.mon.30S-90S", + "atmos.clmodis.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clmodis.tavg-p7c-hxy-air.mon.GLB", + "atmos.clmodisice.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clmodisice.tavg-p7c-hxy-air.mon.GLB", + "atmos.clmodisiceReff.tavg-u-hxy-u.mon.GLB", + "atmos.clmodisliquid.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clmodisliquid.tavg-p7c-hxy-air.mon.GLB", + "atmos.clmodisliquidReff.tavg-u-hxy-u.mon.GLB", + "atmos.cls.tavg-al-hxy-u.mon.30S-90S", + "atmos.clt.tavg-u-hxy-lnd.day.GLB", + "atmos.clt.tavg-u-hxy-u.mon.30S-90S", + "atmos.cltc.tavg-u-hxy-u.mon.GLB", + "atmos.cltcalipso.tavg-u-hxy-u.mon.30S-90S", + "atmos.cltisccp.tavg-u-hxy-u.mon.30S-90S", + "atmos.cltmodis.tavg-u-hxy-u.mon.30S-90S", + "atmos.clw.tavg-al-hxy-u.mon.30S-90S", + "atmos.clwc.tavg-al-hxy-u.mon.30S-90S", + "atmos.clws.tavg-al-hxy-u.mon.30S-90S", + "atmos.clwvi.tavg-u-hxy-u.mon.30S-90S", + "atmos.clwvimodis.tavg-u-hxy-u.mon.30S-90S", + "atmos.co2.tavg-al-hxy-u.mon.GLB", + "atmos.co2.tavg-p19-hxy-air.mon.GLB", + "atmos.co2.tclm-u-hm-u.mon.GLB", + "atmos.co23D.tavg-al-hxy-u.mon.GLB", + "atmos.co2mass.tavg-u-hm-u.mon.GLB", + "atmos.dmc.tavg-alh-hxy-u.mon.30S-90S", + "atmos.edt.tavg-al-hxy-u.mon.30S-90S", + "atmos.evspsbl.tavg-u-hxy-lnd.day.GLB", + "atmos.evu.tavg-al-hxy-u.mon.30S-90S", + "atmos.fco2antt.tavg-u-hxy-u.mon.GLB", + "atmos.fco2fos.tavg-u-hxy-u.mon.GLB", + "atmos.fco2nat.tavg-u-hxy-u.mon.GLB", + "atmos.hfls.tavg-u-hxy-u.mon.30S-90S", + "atmos.hfss.tavg-u-hxy-u.mon.30S-90S", + "atmos.hur.tavg-al-hxy-u.mon.30S-90S", + "atmos.hur.tavg-al-hxy-u.mon.GLB", + "atmos.hur.tavg-p19-hxy-air.mon.30S-90S", + "atmos.hurs.tavg-h2m-hxy-u.mon.30S-90S", + "atmos.hurs.tmax-h2m-hxy-u.day.GLB", + "atmos.hurs.tmin-h2m-hxy-u.day.GLB", + "atmos.hus.tavg-al-hxy-u.mon.30S-90S", + "atmos.hus.tavg-al-hxy-u.mon.GLB", + "atmos.hus.tavg-p19-hxy-u.mon.30S-90S", + "atmos.hus.tpt-al-hxy-u.6hr.GLB", + "atmos.hus.tpt-p7h-hxy-air.6hr.GLB", + "atmos.huss.tavg-h2m-hxy-u.mon.30S-90S", + "atmos.huss.tpt-h2m-hxy-u.1hr.GLB", + "atmos.loadso4.tavg-u-hxy-u.mon.GLB", + "atmos.mc.tavg-alh-hxy-u.mon.GLB", + "atmos.mcd.tavg-alh-hxy-u.mon.30S-90S", + "atmos.mcu.tavg-alh-hxy-u.mon.30S-90S", + "atmos.mcu.tavg-alh-hxy-u.mon.GLB", + "atmos.pctisccp.tavg-u-hxy-cl.mon.30S-90S", + "atmos.pfull.tavg-al-hxy-u.mon.GLB", + "atmos.pfull.tclm-al-hxy-u.mon.30S-90S", + "atmos.phalf.tavg-alh-hxy-u.mon.GLB", + "atmos.pr.tavg-u-hxy-u.mon.30S-90S", + "atmos.pr.tmax-u-hxy-u.day.GLB", + "atmos.pr.tpt-u-hxy-u.6hr.GLB", + "atmos.prc.tavg-u-hxy-u.mon.30S-90S", + "atmos.prra.tavg-u-hxy-lnd.day.GLB", + "atmos.prra.tavg-u-hxy-u.mon.30S-90S", + "atmos.prsn.tavg-u-hxy-u.3hr.GLB", + "atmos.prsn.tavg-u-hxy-u.day.GLB", + "atmos.prsn.tavg-u-hxy-u.mon.30S-90S", + "atmos.prw.tavg-u-hxy-u.day.GLB", + "atmos.prw.tavg-u-hxy-u.mon.30S-90S", + "atmos.ps.tavg-u-hxy-u.1hr.GLB", + "atmos.ps.tavg-u-hxy-u.mon.30S-90S", + "atmos.ps.tpt-u-hxy-u.6hr.GLB", + "atmos.psl.tavg-u-hxy-u.mon.30S-90S", + "atmos.psl.tpt-u-hxy-u.1hr.GLB", + "atmos.psl.tpt-u-hxy-u.6hr.GLB", + "atmos.ptp.tavg-u-hxy-u.mon.GLB", + "atmos.reffcclwtop.tavg-u-hxy-ccl.mon.GLB", + "atmos.reffclic.tavg-al-hxy-ccl.mon.30S-90S", + "atmos.reffclis.tavg-al-hxy-scl.mon.30S-90S", + "atmos.reffclwc.tavg-al-hxy-ccl.mon.30S-90S", + "atmos.reffclws.tavg-al-hxy-scl.mon.30S-90S", + "atmos.reffsclwtop.tavg-u-hxy-scl.mon.GLB", + "atmos.rld.tavg-alh-hxy-u.mon.GLB", + "atmos.rld4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rldcs.tavg-alh-hxy-u.mon.GLB", + "atmos.rldcs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rlds.tavg-u-hxy-u.1hr.GLB", + "atmos.rlds.tavg-u-hxy-u.day.GLB", + "atmos.rlds.tavg-u-hxy-u.mon.30S-90S", + "atmos.rldscs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rlu.tavg-alh-hxy-u.mon.GLB", + "atmos.rlu4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rlucs.tavg-alh-hxy-u.mon.GLB", + "atmos.rlucs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rlus.tavg-u-hxy-u.day.GLB", + "atmos.rlus.tavg-u-hxy-u.mon.30S-90S", + "atmos.rlut.tavg-u-hxy-u.mon.30S-90S", + "atmos.rlut4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rlutcs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rlutcs4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rsd.tavg-alh-hxy-u.mon.GLB", + "atmos.rsd4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsdcs.tavg-alh-hxy-u.mon.GLB", + "atmos.rsdcs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsds.tavg-u-hxy-u.1hr.GLB", + "atmos.rsds.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsdscs.tavg-u-hxy-u.day.GLB", + "atmos.rsdscs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsdt.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsu.tavg-alh-hxy-u.mon.GLB", + "atmos.rsu4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsucs.tavg-alh-hxy-u.mon.GLB", + "atmos.rsucs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsus.tavg-u-hxy-u.day.GLB", + "atmos.rsus.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsuscs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsut.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsut4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rsutcs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsutcs4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rtmt.tavg-u-hxy-u.mon.GLB", + "atmos.rv850.tpt-850hPa-hxy-air.6hr.GLB", + "atmos.scldncl.tavg-u-hxy-scl.mon.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.mon.30S-90S", + "atmos.sfcWind.tmax-h10m-hxy-u.day.GLB", + "atmos.ta.tavg-al-hxy-u.mon.30S-90S", + "atmos.ta.tavg-al-hxy-u.mon.GLB", + "atmos.ta.tavg-p19-hxy-air.mon.30S-90S", + "atmos.ta.tavg-p39-hy-air.mon.GLB", + "atmos.ta.tpt-al-hxy-u.6hr.GLB", + "atmos.ta.tpt-p7h-hxy-air.6hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.1hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.mon.30S-90S", + "atmos.tas.tmaxavg-h2m-hxy-u.mon.30S-90S", + "atmos.tas.tminavg-h2m-hxy-u.mon.30S-90S", + "atmos.tnt.tavg-al-hxy-u.mon.GLB", + "atmos.tntrl.tavg-al-hxy-u.mon.GLB", + "atmos.tntrs.tavg-al-hxy-u.mon.GLB", + "atmos.ts.tavg-u-hxy-u.mon.30S-90S", + "atmos.ts.tpt-u-hxy-u.6hr.GLB", + "atmos.ua.tavg-al-hxy-u.mon.GLB", + "atmos.ua.tavg-p19-hxy-air.mon.30S-90S", + "atmos.ua.tavg-p39-hy-air.mon.GLB", + "atmos.ua.tpt-al-hxy-u.6hr.GLB", + "atmos.ua.tpt-p7h-hxy-air.6hr.GLB", + "atmos.uas.tavg-h10m-hxy-u.mon.30S-90S", + "atmos.uas.tpt-h10m-hxy-u.1hr.GLB", + "atmos.va.tavg-al-hxy-u.mon.GLB", + "atmos.va.tavg-p19-hxy-air.mon.30S-90S", + "atmos.va.tavg-p39-hy-air.mon.GLB", + "atmos.va.tpt-al-hxy-u.6hr.GLB", + "atmos.va.tpt-p7h-hxy-air.6hr.GLB", + "atmos.vas.tavg-h10m-hxy-u.mon.30S-90S", + "atmos.vas.tpt-h10m-hxy-u.1hr.GLB", + "atmos.wap.tavg-p19-hxy-air.mon.30S-90S", + "atmos.zg.tavg-1000hPa-hxy-air.day.GLB", + "atmos.zg.tavg-500hPa-hxy-air.day.GLB", + "atmos.zg.tavg-al-hxy-u.mon.GLB", + "atmos.zg.tavg-p19-hxy-air.mon.30S-90S", + "atmos.zg.tavg-p39-hy-air.mon.GLB", + "atmos.zg.tpt-500hPa-hxy-air.6hr.GLB", + "atmos.zg.tpt-al-hxy-u.6hr.GLB", + "atmos.zg.tpt-p7h-hxy-air.6hr.GLB", + "atmos.ztp.tavg-u-hxy-u.mon.GLB", + "atmosChem.c2h4.tavg-al-hxy-u.mon.GLB", + "atmosChem.c2h5oh.tavg-al-hxy-u.mon.GLB", + "atmosChem.c4h10.tavg-al-hxy-u.mon.GLB", + "atmosChem.cfc11.tavg-u-hm-u.mon.GLB", + "atmosChem.cfc113.tavg-u-hm-u.mon.GLB", + "atmosChem.cfc12.tavg-u-hm-u.mon.GLB", + "atmosChem.ch3oh.tavg-al-hxy-u.mon.GLB", + "atmosChem.ch4.tavg-al-hxy-u.mon.GLB", + "atmosChem.ch4.tavg-p39-hy-air.mon.GLB", + "atmosChem.ch4losssoil.tavg-u-hxy-u.mon.GLB", + "atmosChem.ch4ref.ti-al-hxy-u.fx.GLB", + "atmosChem.chegph2oo1d.tavg-al-hxy-u.mon.GLB", + "atmosChem.chepnh4.tavg-al-hxy-u.mon.GLB", + "atmosChem.chepno3.tavg-al-hxy-u.mon.GLB", + "atmosChem.dms.tavg-al-hxy-u.mon.30S-90S", + "atmosChem.dms.tavg-al-hxy-u.mon.GLB", + "atmosChem.do3chm.tavg-al-hxy-u.mon.GLB", + "atmosChem.dryh2.tavg-u-hxy-u.mon.GLB", + "atmosChem.dryhno3.tavg-u-hxy-u.mon.GLB", + "atmosChem.drynh3.tavg-u-hxy-u.mon.GLB", + "atmosChem.drynh4.tavg-u-hxy-u.mon.GLB", + "atmosChem.drynoy.tavg-u-hxy-u.mon.GLB", + "atmosChem.e90inst.tpt-al-hxy-u.mon.GLB", + "atmosChem.emiach4.tavg-u-hxy-u.mon.GLB", + "atmosChem.emiavnox.tavg-al-hxy-u.mon.GLB", + "atmosChem.emic2h4.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic2h5oh.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic2h6.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic3h6.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic3h8.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic4h10.tavg-u-hxy-u.mon.GLB", + "atmosChem.emich3oh.tavg-u-hxy-u.mon.GLB", + "atmosChem.emich4.tavg-u-hxy-u.mon.GLB", + "atmosChem.emih2.tavg-u-hxy-u.mon.GLB", + "atmosChem.emilkch4.tavg-u-hxy-u.mon.GLB", + "atmosChem.h2.tavg-al-hxy-u.mon.GLB", + "atmosChem.h2loss.tavg-al-hxy-u.mon.GLB", + "atmosChem.h2prod.tavg-al-hxy-u.mon.GLB", + "atmosChem.hcfc22.tavg-u-hm-u.mon.GLB", + "atmosChem.meanage.tavg-al-hxy-u.mon.GLB", + "atmosChem.meanage.tavg-p39-hy-air.mon.GLB", + "atmosChem.n2o.tavg-al-hxy-u.mon.GLB", + "atmosChem.n2o.tavg-p39-hy-air.mon.GLB", + "atmosChem.o3.tavg-al-hxy-u.mon.GLB", + "atmosChem.o3.tavg-p19-hxy-air.mon.GLB", + "atmosChem.o3.tavg-p39-hy-air.mon.GLB", + "atmosChem.o3.tpt-al-hxy-u.mon.GLB", + "atmosChem.o3ref.tclm-al-hxy-u.fx.GLB", + "atmosChem.o3ref.ti-al-hxy-u.fx.GLB", + "atmosChem.o3ste.tavg-al-hxy-u.mon.GLB", + "atmosChem.rlutch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rlutcsch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rlutcso3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rluto3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsutch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsutcsch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsutcso3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsuto3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.stratch4loss.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropch4loss.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropch4lossoh.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropdo3chm.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropo3ste.tavg-al-hxy-u.mon.GLB", + "atmosChem.wethno3.tavg-al-hxy-u.mon.GLB", + "atmosChem.wetnh3.tavg-u-hxy-u.mon.GLB", + "atmosChem.wetnh4.tavg-u-hxy-u.mon.GLB", + "atmosChem.wetno3.tavg-al-hxy-u.mon.GLB", + "atmosChem.wetnoy.tavg-u-hxy-u.mon.GLB", + "land.albc.tavg-u-hxy-veg.mon.GLB", + "land.areacellr.ti-u-hxy-u.fx.GLB", + "land.baresoilFrac.tavg-u-hxy-u.mon.GLB", + "land.burntFractionAll.tavg-u-hxy-u.mon.GLB", + "land.cGeologicStorage.tavg-u-hxy-u.mon.GLB", + "land.cLand.tavg-u-hxy-lnd.mon.GLB", + "land.cLitter.tavg-u-hxy-lnd.mon.GLB", + "land.cnc.tavg-u-hxy-u.mon.GLB", + "land.cProduct.tavg-u-hxy-lnd.mon.GLB", + "land.cropFrac.tavg-u-hxy-u.mon.GLB", + "land.cSoil.tavg-d100cm-hxy-lnd.mon.GLB", + "land.cSoil.tavg-u-hxy-lnd.mon.GLB", + "land.cVeg.tavg-u-hxy-lnd.mon.GLB", + "land.dcw.tavg-u-hxy-lnd.day.GLB", + "land.dslw.tavg-u-hxy-lnd.day.GLB", + "land.evspsblpot.tavg-u-hxy-lnd.day.GLB", + "land.evspsblpot.tavg-u-hxy-lnd.mon.GLB", + "land.fAnthDisturb.tavg-u-hxy-lnd.mon.GLB", + "land.fBNF.tavg-u-hxy-lnd.mon.GLB", + "land.fCLandToOcean.tavg-u-hxy-lnd.mon.GLB", + "land.fDeforestToAtmos.tavg-u-hxy-lnd.mon.GLB", + "land.fDeforestToProduct.tavg-u-hxy-lnd.mon.GLB", + "land.fFire.tavg-u-hxy-lnd.mon.GLB", + "land.fFireAll.tavg-u-hxy-lnd.mon.GLB", + "land.fFireNat.tavg-u-hxy-lnd.mon.GLB", + "land.fHarvestToAtmos.tavg-u-hxy-lnd.mon.GLB", + "land.fHarvestToGeologicStorage.tavg-u-hxy-lnd.mon.GLB", + "land.fHarvestToProduct.tavg-u-hxy-lnd.mon.GLB", + "land.fLitterSoil.tavg-u-hxy-lnd.mon.GLB", + "land.fN2O.tavg-u-hxy-lnd.mon.GLB", + "land.fNAnthDisturb.tavg-u-hxy-lnd.mon.GLB", + "land.fNdep.tavg-u-hxy-lnd.mon.GLB", + "land.fNfert.tavg-u-hxy-lnd.mon.GLB", + "land.fNLandToOcean.tavg-u-hxy-lnd.mon.GLB", + "land.fNLitterSoil.tavg-u-hxy-lnd.mon.GLB", + "land.fNloss.tavg-u-hxy-lnd.mon.GLB", + "land.fNnetmin.tavg-u-hxy-lnd.mon.GLB", + "land.fNOx.tavg-u-hxy-lnd.mon.GLB", + "land.fNProduct.tavg-u-hxy-lnd.mon.GLB", + "land.fNup.tavg-u-hxy-lnd.mon.GLB", + "land.fNVegLitter.tavg-u-hxy-lnd.mon.GLB", + "land.fNVegSoil.tavg-u-hxy-lnd.mon.GLB", + "land.fProductDecomp.tavg-u-hxy-lnd.mon.GLB", + "land.fVegLitter.tavg-u-hxy-lnd.mon.GLB", + "land.fVegSoil.tavg-u-hxy-lnd.mon.GLB", + "land.gpp.tavg-u-hxy-lnd.mon.GLB", + "land.grassFrac.tavg-u-hxy-u.mon.GLB", + "land.landCoverFrac.tavg-u-hxy-u.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.day.GLB", + "land.mrrob.tavg-u-hxy-lnd.day.GLB", + "land.mrros.tavg-u-hxy-lnd.day.GLB", + "land.mrsfl.tavg-sl-hxy-lnd.day.GLB", + "land.mrsfl.tavg-sl-hxy-lnd.mon.GLB", + "land.mrsll.tavg-sl-hxy-lnd.day.GLB", + "land.mrsll.tavg-sl-hxy-lnd.mon.GLB", + "land.mrso.tavg-u-hxy-lnd.day.GLB", + "land.mrsol.tavg-d10cm-hxy-lnd.day.GLB", + "land.mrsol.tavg-sl-hxy-lnd.day.GLB", + "land.mrsol.tavg-sl-hxy-lnd.mon.GLB", + "land.mrsow.tavg-u-hxy-lnd.day.GLB", + "land.mrtws.tavg-u-hxy-lnd.day.GLB", + "land.mrtws.tavg-u-hxy-lnd.mon.GLB", + "land.nbp.tavg-u-hxy-lnd.mon.GLB", + "land.nep.tavg-u-hxy-lnd.mon.GLB", + "land.nLand.tavg-u-hxy-lnd.mon.GLB", + "land.nLitter.tavg-u-hxy-lnd.mon.GLB", + "land.nMineral.tavg-u-hxy-lnd.mon.GLB", + "land.npp.tavg-u-hxy-lnd.mon.GLB", + "land.nProduct.tavg-u-hxy-lnd.mon.GLB", + "land.nSoil.tavg-u-hxy-lnd.mon.GLB", + "land.nVeg.tavg-u-hxy-lnd.mon.GLB", + "land.pastureFrac.tavg-u-hxy-u.mon.GLB", + "land.prveg.tavg-u-hxy-lnd.mon.GLB", + "land.ra.tavg-u-hxy-lnd.mon.GLB", + "land.residualFrac.tavg-u-hxy-u.mon.GLB", + "land.rh.tavg-u-hxy-lnd.mon.GLB", + "land.rivi.tavg-u-hxy-lnd.day.GLB", + "land.rivo.tavg-u-hxy-lnd.day.GLB", + "land.rsds.tavg-u-hxy-sn.mon.GLB", + "land.rsus.tavg-u-hxy-sn.mon.GLB", + "land.shrubFrac.tavg-u-hxy-u.mon.GLB", + "land.tas.tavg-u-hxy-u.1hr.GLB", + "land.tran.tavg-u-hxy-lnd.mon.GLB", + "land.treeFrac.tavg-u-hxy-u.mon.GLB", + "land.tsl.tavg-sl-hxy-lnd.mon.GLB", + "land.tslsi.tavg-u-hxy-u.day.GLB", + "land.vegFrac.tavg-u-hxy-u.mon.GLB", + "land.vegHeight.tavg-u-hxy-veg.mon.GLB", + "land.wetlandCH4.tavg-u-hxy-lnd.mon.GLB", + "land.wtd.tavg-u-hxy-lnd.day.GLB", + "landIce.snd.tavg-u-hxy-lnd.mon.GLB", + "landIce.snw.tavg-u-hxy-lnd.day.GLB", + "ocean.absscint.tavg-op4-hxy-sea.mon.GLB", + "ocean.agessc.tavg-ol-hxy-sea.mon.GLB", + "ocean.bigthetao.tavg-ol-hm-sea.mon.GLB", + "ocean.bigthetao.tavg-ol-hxy-sea.dec.GLB", + "ocean.bigthetao.tavg-op20bar-hxy-sea.day.GLB", + "ocean.chcint.tavg-op4-hxy-sea.mon.GLB", + "ocean.ficeberg.tavg-ol-hxy-sea.mon.GLB", + "ocean.friver.tavg-u-hxy-sea.mon.GLB", + "ocean.hfbasin.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpmadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpmdiff.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpsmadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfds.tavg-u-hxy-sea.mon.30S-90S", + "ocean.hfx.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfx.tavg-u-hxy-sea.day.GLB", + "ocean.hfx.tavg-u-hxy-sea.mon.GLB", + "ocean.hfy.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfy.tavg-u-hxy-sea.day.GLB", + "ocean.hfy.tavg-u-hxy-sea.mon.GLB", + "ocean.htovgyre.tavg-u-hyb-sea.mon.GLB", + "ocean.htovovrt.tavg-u-hyb-sea.mon.GLB", + "ocean.masscello.tavg-ol-hxy-sea.dec.GLB", + "ocean.masso.tavg-u-hm-sea.dec.GLB", + "ocean.masso.tavg-u-hm-sea.mon.GLB", + "ocean.mlotst.tavg-u-hxy-sea.day.GLB", + "ocean.mlotst.tavg-u-hxy-sea.mon.30S-90S", + "ocean.mlotst.tmax-u-hxy-sea.mon.GLB", + "ocean.mlotst.tmin-u-hxy-sea.mon.GLB", + "ocean.mpw.tavg-u-hxy-sea.mon.GLB", + "ocean.mpw.tpt-u-hxy-sea.3hr.GLB", + "ocean.mpwswell.tavg-u-hxy-sea.mon.GLB", + "ocean.mpwswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.mpwwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.mpwwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.msftbarot.tavg-u-hxy-sea.mon.GLB", + "ocean.msftm.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftm.tavg-rho-hyb-sea.mon.GLB", + "ocean.msfty.tavg-ol-ht-sea.mon.GLB", + "ocean.msfty.tavg-rho-ht-sea.mon.GLB", + "ocean.obvfsq.tavg-ol-hxy-sea.mon.GLB", + "ocean.pbo.tavg-u-hxy-sea.mon.GLB", + "ocean.pfscint.tavg-op4-hxy-sea.mon.GLB", + "ocean.phcint.tavg-op4-hxy-sea.mon.GLB", + "ocean.pso.tavg-u-hxy-sea.mon.GLB", + "ocean.scint.tavg-op4-hxy-sea.mon.GLB", + "ocean.sduo.tavg-u-hxy-sea.mon.GLB", + "ocean.sduo.tpt-u-hxy-sea.3hr.GLB", + "ocean.sdvo.tavg-u-hxy-sea.mon.GLB", + "ocean.sdvo.tpt-u-hxy-sea.3hr.GLB", + "ocean.sfx.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfx.tavg-u-hxy-sea.mon.GLB", + "ocean.sfy.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfy.tavg-u-hxy-sea.mon.GLB", + "ocean.sltbasin.tavg-u-hyb-sea.mon.GLB", + "ocean.sltovgyre.tavg-u-hyb-sea.mon.GLB", + "ocean.sltovovrt.tavg-u-hyb-sea.mon.GLB", + "ocean.so.tavg-ol-hm-sea.mon.GLB", + "ocean.so.tavg-ol-hxy-sea.dec.GLB", + "ocean.so.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.sob.tavg-u-hxy-sea.mon.GLB", + "ocean.sos.tavg-u-hm-sea.mon.30S-90S", + "ocean.sos.tavg-u-hm-sea.mon.GLB", + "ocean.swh.tavg-u-hxy-sea.mon.GLB", + "ocean.swh.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhmax.tmax-u-hxy-sea.mon.GLB", + "ocean.swhmax.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhswell.tavg-u-hxy-sea.mon.GLB", + "ocean.swhswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.swhwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.tauuo.tavg-u-hxy-sea.3hr.GLB", + "ocean.tauuo.tavg-u-hxy-sea.dec.GLB", + "ocean.tauvo.tavg-u-hxy-sea.3hr.GLB", + "ocean.tauvo.tavg-u-hxy-sea.dec.GLB", + "ocean.thetao.tavg-ol-hm-sea.mon.GLB", + "ocean.thetao.tavg-ol-hxy-sea.dec.GLB", + "ocean.thetao.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.thetao.tavg-op20bar-hxy-sea.day.GLB", + "ocean.thkcello.tavg-ol-hxy-sea.dec.GLB", + "ocean.tob.tavg-u-hxy-sea.mon.GLB", + "ocean.tos.tavg-u-hm-sea.mon.GLB", + "ocean.tos.tavg-u-hxy-sea.mon.30S-90S", + "ocean.tos.tpt-u-hxy-sea.3hr.GLB", + "ocean.tossq.tavg-u-hxy-sea.day.GLB", + "ocean.umo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.uo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.uos.tavg-u-hxy-sea.day.GLB", + "ocean.vmo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.vo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.volcello.tavg-ol-hxy-sea.dec.GLB", + "ocean.volcello.tavg-ol-hxy-sea.mon.GLB", + "ocean.volcello.tavg-ol-hxy-sea.yr.GLB", + "ocean.volcello.ti-ol-hxy-sea.fx.GLB", + "ocean.volo.tavg-u-hm-sea.dec.GLB", + "ocean.volo.tavg-u-hm-sea.mon.GLB", + "ocean.vos.tavg-u-hxy-sea.day.GLB", + "ocean.wdir.tavg-u-hxy-sea.mon.GLB", + "ocean.wdir.tpt-u-hxy-sea.3hr.GLB", + "ocean.wdirswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wdirswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wdirwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wdirwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.wfcorr.tavg-u-hxy-sea.mon.GLB", + "ocean.wfo.tavg-u-hxy-sea.mon.GLB", + "ocean.wmo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.wo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.wpdir.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdir.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpdirswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdirswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpdirwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdirwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpp.tavg-u-hxy-sea.mon.GLB", + "ocean.wpp.tpt-u-hxy-sea.3hr.GLB", + "ocean.wppswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wppswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wppwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wppwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.zos.tavg-u-hxy-sea.mon.30S-90S", + "ocean.zossq.tavg-u-hxy-sea.mon.GLB", + "ocean.zostoga.tavg-u-hm-sea.day.GLB", + "ocnBgchem.bacc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.calc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chl.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chl.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chlcalc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chldiat.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chldiat.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chldiaz.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chldiaz.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chlmisc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chlmisc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chlpico.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chlpico.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.detoc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dfe.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.dfe.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissic.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.dissic.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissoc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dmso.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.expc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.expcalc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.fgco2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fsfe.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fsn.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.graz.tavg-ol-hxy-sea.mon.30S-90S", + "ocnBgchem.icfriver.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intdic.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intdoc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intparag.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbfe.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbn.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbp.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbsi.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpcalcite.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpn2.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpoc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpp.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpp.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppcalc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppdiat.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppdiaz.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppmisc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppnitrate.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpppico.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.nh4.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.nh4.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.no3.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.no3.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.o2.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.ocfriver.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.ph.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.ph.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phyc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phyc.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.phyc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phycalc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phycalc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phydiat.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phydiat.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phydiaz.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phydiaz.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phymisc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phymisc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phypico.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phypico.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.po4.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.pp.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.si.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.spco2.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.spco2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.talk.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zmeso.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zmeso.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zmicro.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zmicro.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zmisc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zmisc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zooc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zooc.tavg-ol-hxy-sea.mon.GLB", + "seaIce.evspsbl.tavg-u-hxy-si.mon.GLB", + "seaIce.prra.tavg-u-hxy-si.mon.GLB", + "seaIce.prsn.tavg-u-hxy-si.mon.GLB", + "seaIce.rlds.tavg-u-hxy-si.mon.GLB", + "seaIce.rlus.tavg-u-hxy-si.mon.GLB", + "seaIce.rsds.tavg-u-hxy-si.day.GLB", + "seaIce.rsds.tavg-u-hxy-si.mon.GLB", + "seaIce.rsus.tavg-u-hxy-si.day.GLB", + "seaIce.rsus.tavg-u-hxy-si.mon.GLB", + "seaIce.sbl.tavg-u-hxy-si.mon.GLB", + "seaIce.siage.tavg-u-hxy-si.day.GLB", + "seaIce.siage.tavg-u-hxy-si.mon.30S-90S", + "seaIce.siarea.tavg-u-hm-u.mon.NH", + "seaIce.siarea.tavg-u-hm-u.mon.SH", + "seaIce.siconc.tavg-u-hxy-u.mon.30S-90S", + "seaIce.siconca.tavg-u-hxy-u.day.GLB", + "seaIce.siconca.tavg-u-hxy-u.mon.GLB", + "seaIce.sidconcdyn.tavg-u-hxy-sea.mon.GLB", + "seaIce.sidconcth.tavg-u-hxy-sea.mon.GLB", + "seaIce.sidmassdyn.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthsi.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthwat.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmeltbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmeltlat.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmelttop.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassth.tavg-u-hxy-si.mon.GLB", + "seaIce.sieqthick.tavg-u-hxy-si.mon.GLB", + "seaIce.siextent.tavg-u-hm-u.mon.NH", + "seaIce.siextent.tavg-u-hm-u.mon.SH", + "seaIce.siflcondbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflcondtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sifllattop.tavg-u-hxy-si.mon.GLB", + "seaIce.siflsensbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflsenstop.tavg-u-hxy-si.mon.GLB", + "seaIce.siflswdbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sihc.tavg-u-hxy-sea.mon.GLB", + "seaIce.sisndmassdyn.tavg-u-hxy-si.mon.GLB", + "seaIce.sisndmasssi.tavg-u-hxy-si.mon.GLB", + "seaIce.sisndmasswind.tavg-u-hxy-si.mon.GLB", + "seaIce.sisnhc.tavg-u-hxy-si.mon.GLB", + "seaIce.sisnmass.tavg-u-hm-u.mon.NH", + "seaIce.sisnmass.tavg-u-hm-u.mon.SH", + "seaIce.sispeed.tavg-u-hxy-si.day.GLB", + "seaIce.sispeed.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-si.day.GLB", + "seaIce.sithick.tavg-u-hxy-si.mon.30S-90S", + "seaIce.sitimefrac.tavg-u-hxy-sea.day.GLB", + "seaIce.sitimefrac.tavg-u-hxy-sea.mon.30S-90S", + "seaIce.siu.tavg-u-hxy-si.day.GLB", + "seaIce.siu.tavg-u-hxy-si.mon.30S-90S", + "seaIce.siv.tavg-u-hxy-si.day.GLB", + "seaIce.siv.tavg-u-hxy-si.mon.30S-90S", + "seaIce.sivol.tavg-u-hm-u.mon.NH", + "seaIce.sivol.tavg-u-hm-u.mon.SH", + "seaIce.snc.tavg-u-hxy-si.mon.GLB", + "seaIce.snd.tavg-u-hxy-sn.day.GLB", + "seaIce.snd.tavg-u-hxy-sn.mon.30S-90S", + "seaIce.snm.tavg-u-hxy-si.mon.GLB", + "seaIce.snw.tavg-u-hxy-si.mon.GLB", + "seaIce.ts.tavg-u-hxy-si.day.GLB", + "seaIce.ts.tavg-u-hxy-si.mon.30S-90S" + ], + "Medium": [ + "atmos.hurs.tpt-h2m-hxy-u.3hr.GLB", + "atmos.noaahi2m.tavg-h2m-hxy-u.day.GLB", + "atmos.noaahi2m.tmax-h2m-hxy-u.day.GLB", + "atmos.ps.tpt-u-hxy-u.3hr.GLB", + "atmos.rlds.tavg-u-hxy-u.3hr.GLB", + "atmos.rls.tavg-u-hxy-u.day.GLB", + "atmos.rls.tavg-u-hxy-u.mon.GLB", + "atmos.rsds.tavg-u-hxy-u.3hr.GLB", + "atmos.rss.tavg-u-hxy-u.day.GLB", + "atmos.rss.tavg-u-hxy-u.mon.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.3hr.GLB", + "atmos.ua.tavg-h100m-hxy-u.3hr.GLB", + "atmos.va.tavg-h100m-hxy-u.3hr.GLB", + "atmos.wbgt.tavg-h2m-hxy-u.day.GLB", + "atmos.wbgt.tmax-h2m-hxy-u.day.GLB", + "land.cLeaf.tavg-u-hxy-lnd.mon.GLB", + "land.cLitterCwd.tavg-u-hxy-lnd.mon.GLB", + "land.cLitterSubSurf.tavg-u-hxy-lnd.mon.GLB", + "land.cLitterSurf.tavg-u-hxy-lnd.mon.GLB", + "land.cOther.tavg-u-hxy-lnd.mon.GLB", + "land.cRoot.tavg-u-hxy-lnd.mon.GLB", + "land.cropFracC3.tavg-u-hxy-u.mon.GLB", + "land.cropFracC4.tavg-u-hxy-u.mon.GLB", + "land.cSoil.tavg-sl-hxy-lnd.mon.GLB", + "land.cSoilPools.tavg-u-hxy-lnd.mon.GLB", + "land.cStem.tavg-u-hxy-lnd.mon.GLB", + "land.cVeg.tavg-u-hxy-ng.mon.GLB", + "land.cVeg.tavg-u-hxy-shb.mon.GLB", + "land.cVeg.tavg-u-hxy-tree.mon.GLB", + "land.fLitterFire.tavg-u-hxy-lnd.mon.GLB", + "land.fNgas.tavg-u-hxy-lnd.mon.GLB", + "land.fNgasFire.tavg-u-hxy-lnd.mon.GLB", + "land.fNgasNonFire.tavg-u-hxy-lnd.mon.GLB", + "land.fNleach.tavg-u-hxy-lnd.mon.GLB", + "land.fVegFire.tavg-u-hxy-lnd.mon.GLB", + "land.fVegLitterMortality.tavg-u-hxy-lnd.mon.GLB", + "land.fVegLitterSenescence.tavg-u-hxy-lnd.mon.GLB", + "land.fVegSoilMortality.tavg-u-hxy-lnd.mon.GLB", + "land.fVegSoilSenescence.tavg-u-hxy-lnd.mon.GLB", + "land.gpp.tavg-u-hxy-ng.mon.GLB", + "land.gpp.tavg-u-hxy-shb.mon.GLB", + "land.gpp.tavg-u-hxy-tree.mon.GLB", + "land.grassFracC3.tavg-u-hxy-u.mon.GLB", + "land.grassFracC4.tavg-u-hxy-u.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.3hr.GLB", + "land.mrros.tavg-u-hxy-lnd.3hr.GLB", + "land.mrsol.tpt-d10cm-hxy-lnd.3hr.GLB", + "land.nLeaf.tavg-u-hxy-lnd.mon.GLB", + "land.nLitterCwd.tavg-u-hxy-lnd.mon.GLB", + "land.nLitterSubSurf.tavg-u-hxy-lnd.mon.GLB", + "land.nLitterSurf.tavg-u-hxy-lnd.mon.GLB", + "land.nMineralNH4.tavg-u-hxy-lnd.mon.GLB", + "land.nMineralNO3.tavg-u-hxy-lnd.mon.GLB", + "land.nOther.tavg-u-hxy-lnd.mon.GLB", + "land.npp.tavg-u-hxy-ng.mon.GLB", + "land.npp.tavg-u-hxy-shb.mon.GLB", + "land.npp.tavg-u-hxy-tree.mon.GLB", + "land.nppLeaf.tavg-u-hxy-lnd.mon.GLB", + "land.nppOther.tavg-u-hxy-lnd.mon.GLB", + "land.nppRoot.tavg-u-hxy-lnd.mon.GLB", + "land.nppStem.tavg-u-hxy-lnd.mon.GLB", + "land.nRoot.tavg-u-hxy-lnd.mon.GLB", + "land.nStem.tavg-u-hxy-lnd.mon.GLB", + "land.pastureFracC3.tavg-u-hxy-u.mon.GLB", + "land.pastureFracC4.tavg-u-hxy-u.mon.GLB", + "land.ra.tavg-u-hxy-ng.mon.GLB", + "land.ra.tavg-u-hxy-shb.mon.GLB", + "land.ra.tavg-u-hxy-tree.mon.GLB", + "land.raLeaf.tavg-u-hxy-lnd.mon.GLB", + "land.raOther.tavg-u-hxy-lnd.mon.GLB", + "land.raRoot.tavg-u-hxy-lnd.mon.GLB", + "land.raStem.tavg-u-hxy-lnd.mon.GLB", + "land.rh.tavg-u-hxy-ng.mon.GLB", + "land.rh.tavg-u-hxy-shb.mon.GLB", + "land.rh.tavg-u-hxy-tree.mon.GLB", + "land.rhLitter.tavg-u-hxy-lnd.mon.GLB", + "land.rhSoil.tavg-u-hxy-lnd.mon.GLB", + "land.treeFracBdlDcd.tavg-u-hxy-u.mon.GLB", + "land.treeFracBdlEvg.tavg-u-hxy-u.mon.GLB", + "land.treeFracNdlDcd.tavg-u-hxy-u.mon.GLB", + "land.treeFracNdlEvg.tavg-u-hxy-u.mon.GLB", + "land.vegHeight.tavg-u-hxy-ng.mon.GLB", + "land.vegHeight.tavg-u-hxy-shb.mon.GLB", + "land.vegHeight.tavg-u-hxy-tree.mon.GLB", + "land.wetlandCH4cons.tavg-u-hxy-lnd.mon.GLB", + "land.wetlandCH4prod.tavg-u-hxy-lnd.mon.GLB", + "land.wetlandFrac.tavg-u-hxy-u.mon.GLB", + "ocean.evspsbl.tavg-u-hxy-ifs.mon.GLB", + "ocean.ficeberg.tavg-u-hxy-sea.mon.GLB", + "ocean.hfacrossline.tavg-u-ht-sea.mon.GLB", + "ocean.hfevapds.tavg-u-hxy-ifs.mon.GLB", + "ocean.hfibthermds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfibthermds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfrainds.tavg-u-hxy-ifs.mon.GLB", + "ocean.hfrunoffds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfrunoffds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfsnthermds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfsnthermds.tavg-u-hxy-sea.mon.GLB", + "ocean.mfo.tavg-u-ht-sea.mon.GLB", + "ocean.sf6.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfacrossline.tavg-u-ht-sea.mon.GLB", + "ocean.sfdsi.tavg-u-hxy-sea.mon.GLB", + "ocean.sfriver.tavg-u-hxy-sea.mon.GLB", + "ocean.siflfwbot.tavg-u-hxy-sea.mon.GLB", + "ocean.so.tavg-ol-hxy-sea.day.GLB", + "ocean.tnkebto.tavg-u-hxy-sea.yr.GLB", + "ocean.vsf.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfcorr.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfevap.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfpr.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfriver.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfsit.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.arag.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.arag.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.calc.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.calc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chl.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.chlcalc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dmso.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.epn.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.epp.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.expc.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.expcalc.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.fgdms.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fric.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.froc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.graz.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.intppcalc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppdiat.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppdiaz.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppmisc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppnitrate.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intpppico.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.o2.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.ph.tavg-op20bar-hxy-sea.day.GLB", + "seaIce.sfdsi.tavg-u-hxy-si.mon.GLB", + "seaIce.siage.tavg-u-hxy-si.mon.GLB", + "seaIce.siarea.tavg-u-hm-u.day.NH", + "seaIce.siarea.tavg-u-hm-u.day.SH", + "seaIce.siareaacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.sicompstren.tavg-u-hxy-si.mon.GLB", + "seaIce.sidivvel.tpt-u-hxy-si.mon.GLB", + "seaIce.sidmasstranx.tavg-u-hxy-u.mon.GLB", + "seaIce.sidmasstrany.tavg-u-hxy-u.mon.GLB", + "seaIce.sidragbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidragtop.tavg-u-hxy-si.mon.GLB", + "seaIce.siextent.tavg-u-hm-u.day.NH", + "seaIce.siextent.tavg-u-hm-u.day.SH", + "seaIce.sifb.tavg-u-hxy-si.mon.GLB", + "seaIce.siflfwbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflfwdrain.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcecoriolx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcecorioly.tavg-u-hxy-si.mon.GLB", + "seaIce.siforceintstrx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforceintstry.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcetiltx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcetilty.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdconc.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdsnconc.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdsnthick.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdthick.tavg-u-hxy-si.mon.GLB", + "seaIce.simassacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.simpconc.tavg-u-hxy-si.mon.GLB", + "seaIce.simpeffconc.tavg-u-hxy-si.mon.GLB", + "seaIce.simprefrozen.tavg-u-hxy-simp.mon.GLB", + "seaIce.simpthick.tavg-u-hxy-simp.mon.GLB", + "seaIce.sirdgconc.tavg-u-hxy-si.mon.GLB", + "seaIce.sisali.tavg-u-hxy-si.mon.GLB", + "seaIce.sisaltmass.tavg-u-hxy-si.mon.GLB", + "seaIce.sishearvel.tpt-u-hxy-si.mon.GLB", + "seaIce.sisnmass.tavg-u-hm-u.day.NH", + "seaIce.sisnmass.tavg-u-hm-u.day.SH", + "seaIce.sisnmassacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.sistressave.tpt-u-hxy-si.mon.GLB", + "seaIce.sistressmax.tpt-u-hxy-si.mon.GLB", + "seaIce.sistrxdtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sistrxubot.tavg-u-hxy-si.mon.GLB", + "seaIce.sistrydtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sistryubot.tavg-u-hxy-si.mon.GLB", + "seaIce.sitempbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sitempsnic.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-sir.mon.GLB", + "seaIce.sivol.tavg-u-hm-u.day.NH", + "seaIce.sivol.tavg-u-hm-u.day.SH" + ], + "Low": [ + "aerosol.sfpm1.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.sfpm10.tavg-h2m-hxy-u.1hr.GLB", + "atmos.hurs.tavg-h2m-hxy-u.1hr.GLB", + "atmosChem.drynh3.tavg-u-hxy-u.day.GLB", + "atmosChem.drynh4.tavg-u-hxy-u.day.GLB", + "atmosChem.drynoy.tavg-u-hxy-u.day.GLB", + "atmosChem.wetnh3.tavg-u-hxy-u.day.GLB", + "atmosChem.wetnh4.tavg-u-hxy-u.day.GLB", + "atmosChem.wetnoy.tavg-u-hxy-u.day.GLB", + "land.c13Land.tavg-u-hxy-lnd.mon.GLB", + "land.c13Litter.tavg-u-hxy-lnd.mon.GLB", + "land.c13Soil.tavg-u-hxy-lnd.mon.GLB", + "land.c13Veg.tavg-u-hxy-lnd.mon.GLB", + "land.c14Land.tavg-u-hxy-lnd.mon.GLB", + "land.c14Litter.tavg-u-hxy-lnd.mon.GLB", + "land.c14Soil.tavg-u-hxy-lnd.mon.GLB", + "land.c14Veg.tavg-u-hxy-lnd.mon.GLB", + "land.gppc13.tavg-u-hxy-lnd.mon.GLB", + "land.gppc14.tavg-u-hxy-lnd.mon.GLB", + "land.netAtmosLandC13Flux.tavg-u-hxy-lnd.mon.GLB", + "land.netAtmosLandC14Flux.tavg-u-hxy-lnd.mon.GLB", + "land.rac13.tavg-u-hxy-lnd.mon.GLB", + "land.rac14.tavg-u-hxy-lnd.mon.GLB", + "land.rhc13.tavg-u-hxy-lnd.mon.GLB", + "land.rhc14.tavg-u-hxy-lnd.mon.GLB", + "ocean.difmxybo.tavg-ol-hxy-sea.yr.GLB", + "ocean.difmxylo.tavg-ol-hxy-sea.yr.GLB", + "ocean.diftrblo.tavg-ol-hxy-sea.yr.GLB", + "ocean.diftrelo.tavg-ol-hxy-sea.yr.GLB", + "ocean.difvho.tavg-ol-hxy-sea.yr.GLB", + "ocean.difvso.tavg-ol-hxy-sea.yr.GLB", + "ocean.dispkexyfo.tavg-u-hxy-sea.yr.GLB", + "ocean.dxto.ti-u-hxy-u.fx.GLB", + "ocean.dxuo.ti-u-hxy-u.fx.GLB", + "ocean.dxvo.ti-u-hxy-u.fx.GLB", + "ocean.dyto.ti-u-hxy-u.fx.GLB", + "ocean.dyuo.ti-u-hxy-u.fx.GLB", + "ocean.dyvo.ti-u-hxy-u.fx.GLB", + "ocean.mlotstsq.tavg-u-hxy-sea.mon.GLB", + "ocean.msftmmpa.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftmmpa.tavg-rho-hyb-sea.mon.GLB", + "ocean.msftmsmpa.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftypa.tavg-ol-ht-sea.mon.GLB", + "ocean.msftypa.tavg-rho-ht-sea.mon.GLB", + "ocean.ocontempdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontempmint.tavg-u-hxy-sea.yr.GLB", + "ocean.ocontemppadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemppmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemppsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemprmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemptend.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottempdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottempmint.tavg-u-hxy-sea.yr.GLB", + "ocean.opottemppadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemppmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemppsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemprmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemptend.tavg-ol-hxy-sea.dec.GLB", + "ocean.osaltdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpsmadvect.tavg-ol-hxy-sea.mon.GLB", + "ocean.osaltpsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltrmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osalttend.tavg-ol-hxy-sea.yr.GLB", + "ocean.rsdoabsorb.tavg-ol-hxy-sea.yr.GLB", + "ocean.somint.tavg-u-hxy-sea.yr.GLB", + "ocean.sossq.tavg-u-hxy-sea.mon.GLB", + "ocean.thkcelluo.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcellvo.tavg-ol-hxy-sea.mon.GLB", + "ocean.tnpeo.tavg-u-hxy-sea.yr.GLB", + "ocean.tossq.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.dissi13c.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.dissi13c.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissi14c.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissi14cabio.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.dissi14cabio.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.fg13co2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fg14co2abio.tavg-u-hxy-sea.mon.GLB" + ] + }, + "hist-piAQ": { + "Core": [ + "atmos.areacella.ti-u-hxy-u.fx.GLB", + "atmos.cl.tavg-al-hxy-u.mon.GLB", + "atmos.cli.tavg-al-hxy-u.mon.GLB", + "atmos.clivi.tavg-u-hxy-u.mon.GLB", + "atmos.clt.tavg-u-hxy-u.day.GLB", + "atmos.clt.tavg-u-hxy-u.mon.GLB", + "atmos.clw.tavg-al-hxy-u.mon.GLB", + "atmos.clwvi.tavg-u-hxy-u.mon.GLB", + "atmos.evspsbl.tavg-u-hxy-u.mon.GLB", + "atmos.hfls.tavg-u-hxy-u.mon.GLB", + "atmos.hfss.tavg-u-hxy-u.mon.GLB", + "atmos.hur.tavg-p19-hxy-air.mon.GLB", + "atmos.hur.tavg-p19-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.6hr.GLB", + "atmos.hurs.tavg-h2m-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.mon.GLB", + "atmos.hus.tavg-p19-hxy-u.day.GLB", + "atmos.hus.tavg-p19-hxy-u.mon.GLB", + "atmos.huss.tavg-h2m-hxy-u.day.GLB", + "atmos.huss.tavg-h2m-hxy-u.mon.GLB", + "atmos.huss.tpt-h2m-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.1hr.GLB", + "atmos.pr.tavg-u-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.day.GLB", + "atmos.pr.tavg-u-hxy-u.mon.GLB", + "atmos.prc.tavg-u-hxy-u.mon.GLB", + "atmos.prsn.tavg-u-hxy-u.mon.GLB", + "atmos.prw.tavg-u-hxy-u.mon.GLB", + "atmos.ps.tavg-u-hxy-u.day.GLB", + "atmos.ps.tavg-u-hxy-u.mon.GLB", + "atmos.psl.tavg-u-hxy-u.day.GLB", + "atmos.psl.tavg-u-hxy-u.mon.GLB", + "atmos.rlds.tavg-u-hxy-u.mon.GLB", + "atmos.rldscs.tavg-u-hxy-u.mon.GLB", + "atmos.rlus.tavg-u-hxy-u.mon.GLB", + "atmos.rluscs.tavg-u-hxy-u.mon.GLB", + "atmos.rlut.tavg-u-hxy-u.mon.GLB", + "atmos.rlutcs.tavg-u-hxy-u.mon.GLB", + "atmos.rsds.tavg-u-hxy-u.day.GLB", + "atmos.rsds.tavg-u-hxy-u.mon.GLB", + "atmos.rsdscs.tavg-u-hxy-u.mon.GLB", + "atmos.rsdt.tavg-u-hxy-u.mon.GLB", + "atmos.rsus.tavg-u-hxy-u.mon.GLB", + "atmos.rsuscs.tavg-u-hxy-u.mon.GLB", + "atmos.rsut.tavg-u-hxy-u.mon.GLB", + "atmos.rsutcs.tavg-u-hxy-u.mon.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.day.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.mon.GLB", + "atmos.sftlf.ti-u-hxy-u.fx.GLB", + "atmos.ta.tavg-p19-hxy-air.day.GLB", + "atmos.ta.tavg-p19-hxy-air.mon.GLB", + "atmos.ta.tpt-p3-hxy-air.6hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.day.GLB", + "atmos.tas.tavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tmax-h2m-hxy-u.day.GLB", + "atmos.tas.tmaxavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tmin-h2m-hxy-u.day.GLB", + "atmos.tas.tminavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tpt-h2m-hxy-u.3hr.GLB", + "atmos.tauu.tavg-u-hxy-u.mon.GLB", + "atmos.tauv.tavg-u-hxy-u.mon.GLB", + "atmos.ts.tavg-u-hxy-u.mon.GLB", + "atmos.ua.tavg-p19-hxy-air.day.GLB", + "atmos.ua.tavg-p19-hxy-air.mon.GLB", + "atmos.ua.tpt-p3-hxy-air.6hr.GLB", + "atmos.uas.tavg-h10m-hxy-u.day.GLB", + "atmos.uas.tavg-h10m-hxy-u.mon.GLB", + "atmos.uas.tpt-h10m-hxy-u.3hr.GLB", + "atmos.va.tavg-p19-hxy-air.day.GLB", + "atmos.va.tavg-p19-hxy-air.mon.GLB", + "atmos.va.tpt-p3-hxy-air.6hr.GLB", + "atmos.vas.tavg-h10m-hxy-u.day.GLB", + "atmos.vas.tavg-h10m-hxy-u.mon.GLB", + "atmos.vas.tpt-h10m-hxy-u.3hr.GLB", + "atmos.wap.tavg-p19-hxy-air.mon.GLB", + "atmos.wap.tavg-p19-hxy-u.day.GLB", + "atmos.zg.tavg-p19-hxy-air.day.GLB", + "atmos.zg.tavg-p19-hxy-air.mon.GLB", + "land.evspsblsoi.tavg-u-hxy-lnd.mon.GLB", + "land.evspsblveg.tavg-u-hxy-lnd.mon.GLB", + "land.lai.tavg-u-hxy-lnd.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.mon.GLB", + "land.mrros.tavg-u-hxy-lnd.mon.GLB", + "land.mrso.tavg-u-hxy-lnd.mon.GLB", + "land.mrsofc.ti-u-hxy-lnd.fx.GLB", + "land.mrsol.tavg-d10cm-hxy-lnd.mon.GLB", + "land.orog.ti-u-hxy-u.fx.GLB", + "land.rootd.ti-u-hxy-lnd.fx.GLB", + "land.sftgif.ti-u-hxy-u.fx.GLB", + "land.slthick.ti-sl-hxy-lnd.fx.GLB", + "landIce.mrfso.tavg-u-hxy-lnd.mon.GLB", + "landIce.snc.tavg-u-hxy-lnd.mon.GLB", + "landIce.snw.tavg-u-hxy-lnd.mon.GLB", + "ocean.areacello.ti-u-hxy-u.fx.GLB", + "ocean.basin.ti-u-hxy-u.fx.GLB", + "ocean.bigthetao.tavg-ol-hxy-sea.mon.GLB", + "ocean.deptho.ti-u-hxy-sea.fx.GLB", + "ocean.hfds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfgeou.ti-u-hxy-sea.fx.GLB", + "ocean.masscello.tavg-ol-hxy-sea.mon.GLB", + "ocean.masscello.ti-ol-hxy-sea.fx.GLB", + "ocean.mlotst.tavg-u-hxy-sea.mon.GLB", + "ocean.sftof.ti-u-hxy-u.fx.GLB", + "ocean.so.tavg-ol-hxy-sea.mon.GLB", + "ocean.sos.tavg-u-hxy-sea.day.GLB", + "ocean.sos.tavg-u-hxy-sea.mon.GLB", + "ocean.tauuo.tavg-u-hxy-sea.mon.GLB", + "ocean.tauvo.tavg-u-hxy-sea.mon.GLB", + "ocean.thetao.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcello.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcello.ti-ol-hxy-sea.fx.GLB", + "ocean.tos.tavg-u-hxy-sea.day.GLB", + "ocean.tos.tavg-u-hxy-sea.mon.GLB", + "ocean.umo.tavg-ol-hxy-sea.mon.GLB", + "ocean.uo.tavg-ol-hxy-sea.mon.GLB", + "ocean.vmo.tavg-ol-hxy-sea.mon.GLB", + "ocean.vo.tavg-ol-hxy-sea.mon.GLB", + "ocean.wmo.tavg-ol-hxy-sea.mon.GLB", + "ocean.wo.tavg-ol-hxy-sea.mon.GLB", + "ocean.zos.tavg-u-hxy-sea.day.GLB", + "ocean.zos.tavg-u-hxy-sea.mon.GLB", + "ocean.zostoga.tavg-u-hm-sea.mon.GLB", + "seaIce.siconc.tavg-u-hxy-u.day.GLB", + "seaIce.siconc.tavg-u-hxy-u.mon.GLB", + "seaIce.simass.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-si.mon.GLB", + "seaIce.sitimefrac.tavg-u-hxy-sea.mon.GLB", + "seaIce.siu.tavg-u-hxy-si.mon.GLB", + "seaIce.siv.tavg-u-hxy-si.mon.GLB", + "seaIce.snd.tavg-u-hxy-sn.mon.GLB", + "seaIce.ts.tavg-u-hxy-si.mon.GLB" + ], + "High": [ + "aerosol.abs550aer.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550bc.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550dust.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550no3.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550oa.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550so4.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550ss.tavg-u-hxy-u.mon.GLB", + "aerosol.airmass.tavg-al-hxy-u.mon.GLB", + "aerosol.aoanh.tavg-al-hxy-u.mon.NH", + "aerosol.bry.tavg-p39-hy-air.mon.GLB", + "aerosol.bs550aer.tpt-al-hxy-u.6hr.GLB", + "aerosol.c2h6.tavg-al-hxy-u.mon.GLB", + "aerosol.c3h6.tavg-al-hxy-u.mon.GLB", + "aerosol.c3h8.tavg-al-hxy-u.mon.GLB", + "aerosol.ccldncl.tavg-u-hxy-ccl.mon.GLB", + "aerosol.ccn.tavg-u-hxy-ccl.mon.30S-90S", + "aerosol.ccn.tavg-u-hxy-ccl.mon.GLB", + "aerosol.ccn1.tavg-al-hxy-u.mon.30S-90S", + "aerosol.ccn1.tavg-al-hxy-u.mon.GLB", + "aerosol.ccnp02.tavg-al-hxy-u.mon.30S-90S", + "aerosol.ccnp02.tavg-al-hxy-u.mon.GLB", + "aerosol.cdnc.tavg-al-hxy-u.mon.30S-90S", + "aerosol.cdnc.tavg-al-hxy-u.mon.GLB", + "aerosol.cfc114.tavg-al-hxy-u.mon.GLB", + "aerosol.ch3coch3.tavg-al-hxy-u.mon.GLB", + "aerosol.cheaqpso4.tavg-al-hxy-u.mon.GLB", + "aerosol.chegpso4.tavg-al-hxy-u.mon.GLB", + "aerosol.chepasoa.tavg-u-hxy-u.mon.GLB", + "aerosol.chepsoa.tavg-u-hxy-u.mon.GLB", + "aerosol.cly.tavg-p39-hy-air.mon.GLB", + "aerosol.co.tavg-al-hxy-u.mon.GLB", + "aerosol.co.tavg-h2m-hxy-u.day.GLB", + "aerosol.cod.tavg-u-hxy-u.day.GLB", + "aerosol.cod.tavg-u-hxy-u.mon.30S-90S", + "aerosol.cod.tavg-u-hxy-u.mon.GLB", + "aerosol.conccn.tavg-al-hxy-u.mon.GLB", + "aerosol.conccn.tpt-u-hs-u.3hr.GLB", + "aerosol.drybc.tavg-u-hxy-u.mon.GLB", + "aerosol.drydust.tavg-u-hxy-u.mon.GLB", + "aerosol.dryno3.tavg-u-hxy-u.mon.GLB", + "aerosol.dryo3.tavg-u-hxy-u.mon.GLB", + "aerosol.dryoa.tavg-u-hxy-u.mon.GLB", + "aerosol.dryso2.tavg-u-hxy-u.mon.GLB", + "aerosol.dryso4.tavg-u-hxy-u.mon.GLB", + "aerosol.dryss.tavg-u-hxy-u.mon.GLB", + "aerosol.ec550aer.tavg-al-hxy-u.mon.GLB", + "aerosol.ec550aer.tpt-u-hxy-u.6hr.GLB", + "aerosol.emiaco.tavg-u-hxy-u.mon.GLB", + "aerosol.emianox.tavg-u-hxy-u.mon.GLB", + "aerosol.emiaoa.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbbc.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbch4.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbco.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbdms.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbnh3.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbnox.tavg-u-hxy-u.mon.GLB", + "aerosol.emibboa.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbso2.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbvoc.tavg-u-hxy-u.mon.GLB", + "aerosol.emibc.tavg-u-hxy-u.mon.GLB", + "aerosol.emibvoc.tavg-u-hxy-u.mon.GLB", + "aerosol.emico.tavg-u-hxy-u.mon.GLB", + "aerosol.emidms.tavg-u-hxy-u.mon.30S-90S", + "aerosol.emidms.tavg-u-hxy-u.mon.GLB", + "aerosol.emidust.tavg-u-hxy-u.mon.GLB", + "aerosol.emiisop.tavg-u-hxy-u.mon.GLB", + "aerosol.emilnox.tavg-al-hxy-u.mon.GLB", + "aerosol.eminh3.tavg-u-hxy-u.mon.GLB", + "aerosol.eminox.tavg-u-hxy-u.mon.GLB", + "aerosol.emioa.tavg-u-hxy-u.mon.GLB", + "aerosol.emiso2.tavg-u-hxy-u.mon.GLB", + "aerosol.emiso4.tavg-u-hxy-u.mon.GLB", + "aerosol.emiss.tavg-u-hxy-u.mon.30S-90S", + "aerosol.emiss.tavg-u-hxy-u.mon.GLB", + "aerosol.emivoc.tavg-u-hxy-u.mon.GLB", + "aerosol.h2o.tavg-al-hxy-u.mon.GLB", + "aerosol.h2o.tavg-p39-hy-air.mon.GLB", + "aerosol.hcfc22.tavg-al-hxy-u.mon.GLB", + "aerosol.hcho.tavg-al-hxy-u.mon.GLB", + "aerosol.hcl.tavg-al-hxy-u.mon.GLB", + "aerosol.hcl.tavg-p39-hy-air.mon.GLB", + "aerosol.hfc125.tavg-al-hxy-u.mon.GLB", + "aerosol.hfc134a.tavg-al-hxy-u.mon.GLB", + "aerosol.hno3.tavg-al-hxy-u.mon.GLB", + "aerosol.hno3.tavg-p39-hy-air.mon.GLB", + "aerosol.ho2.tavg-p39-hy-air.mon.GLB", + "aerosol.isop.tavg-al-hxy-u.mon.GLB", + "aerosol.jno2.tavg-al-hxy-u.mon.GLB", + "aerosol.lossch4.tavg-al-hxy-u.mon.GLB", + "aerosol.lossco.tavg-al-hxy-u.mon.GLB", + "aerosol.lossn2o.tavg-al-hxy-u.mon.GLB", + "aerosol.lwp.tavg-u-hxy-u.mon.GLB", + "aerosol.mmraerh2o.tavg-al-hxy-u.mon.GLB", + "aerosol.mmraerh2o.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmraerh2o.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrbc.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrbc.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrbc.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrbc.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrdust.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrdust.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrdust.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrdust.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrnh4.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrnh4.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrnh4.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrnh4.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrno3.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrno3.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrno3.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrno3.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmroa.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmroa.tavg-al-hxy-u.mon.GLB", + "aerosol.mmroa.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmroa.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrpm1.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrpm1.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrpm2p5.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrpm2p5.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrso4.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrso4.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrso4.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrso4.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrsoa.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrsoa.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrsoa.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrss.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrss.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrss.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrss.tpt-h2m-hs-u.3hr.GLB", + "aerosol.nh50.tavg-al-hxy-u.mon.GLB", + "aerosol.no.tavg-al-hxy-u.mon.GLB", + "aerosol.no2.tavg-al-hxy-u.mon.GLB", + "aerosol.no2.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.noy.tavg-p39-hy-air.mon.GLB", + "aerosol.o3.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.o3.tmax-h2m-hxy-u.day.GLB", + "aerosol.o3loss.tavg-al-hxy-u.mon.GLB", + "aerosol.o3prod.tavg-al-hxy-u.mon.GLB", + "aerosol.od443aer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550aer.tavg-u-hxy-u.day.GLB", + "aerosol.od550aer.tavg-u-hxy-u.mon.30S-90S", + "aerosol.od550aer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550aerh2o.tavg-u-hxy-u.mon.GLB", + "aerosol.od550bb.tavg-u-hxy-u.mon.GLB", + "aerosol.od550bc.tavg-u-hxy-u.mon.GLB", + "aerosol.od550csaer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550dust.tavg-u-hxy-u.mon.GLB", + "aerosol.od550lt1aer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550no3.tavg-u-hxy-u.mon.GLB", + "aerosol.od550oa.tavg-u-hxy-u.mon.GLB", + "aerosol.od550so4.tavg-u-hxy-u.mon.GLB", + "aerosol.od550soa.tavg-u-hxy-u.mon.GLB", + "aerosol.od550ss.tavg-u-hxy-u.mon.GLB", + "aerosol.od865aer.tavg-u-hxy-u.mon.GLB", + "aerosol.oh.tavg-al-hxy-u.mon.GLB", + "aerosol.oh.tavg-p39-hy-air.mon.GLB", + "aerosol.pan.tavg-al-hxy-u.mon.GLB", + "aerosol.photo1d.tavg-al-hxy-u.mon.GLB", + "aerosol.pod0.tsum-u-hxy-u.mon.GLB", + "aerosol.reffccwctop.tavg-u-hxy-cl.mon.GLB", + "aerosol.reffclwtop.tavg-u-hxy-cl.mon.30S-90S", + "aerosol.reffclwtop.tavg-u-hxy-cl.mon.GLB", + "aerosol.rluscsaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rlutaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rlutcsaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rsutaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rsutcsaf.tavg-u-hxy-u.mon.GLB", + "aerosol.sfpm1.tavg-h2m-hxy-u.day.GLB", + "aerosol.sfpm10.tavg-al-hxy-u.mon.30S-90S", + "aerosol.sfpm10.tavg-al-hxy-u.mon.GLB", + "aerosol.sfpm10.tavg-h2m-hxy-u.day.GLB", + "aerosol.sfpm25.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.sfpm25.tavg-h2m-hxy-u.day.GLB", + "aerosol.so2.tavg-al-hxy-u.mon.30S-90S", + "aerosol.so2.tavg-al-hxy-u.mon.GLB", + "aerosol.so2.tavg-h2m-hxy-u.day.GLB", + "aerosol.so2.tpt-h2m-hs-u.3hr.GLB", + "aerosol.tatp.tavg-u-hxy-u.mon.GLB", + "aerosol.toz.tavg-u-hxy-u.day.GLB", + "aerosol.toz.tavg-u-hxy-u.mon.GLB", + "aerosol.tropoz.tavg-u-hxy-u.mon.GLB", + "aerosol.ttop.tavg-u-hxy-cl.mon.GLB", + "aerosol.ua.tavg-10hPa-hxy-air.day.GLB", + "aerosol.vt100.tavg-100hPa-hy-air.mon.GLB", + "aerosol.wa.tavg-al-hxy-u.mon.GLB", + "aerosol.wetbc.tavg-u-hxy-u.mon.GLB", + "aerosol.wetdust.tavg-u-hxy-u.mon.GLB", + "aerosol.wetoa.tavg-u-hxy-u.mon.GLB", + "aerosol.wetso2.tavg-u-hxy-u.mon.GLB", + "aerosol.wetso4.tavg-u-hxy-u.mon.GLB", + "aerosol.wetss.tavg-u-hxy-u.mon.GLB", + "aerosol.zg.tavg-10hPa-hxy-air.day.GLB", + "atmos.albisccp.tavg-u-hxy-cl.mon.30S-90S", + "atmos.aod550volso4.tavg-u-hxy-u.mon.GLB", + "atmos.bldep.tavg-u-hxy-u.mon.GLB", + "atmos.bldep.tmax-u-hxy-u.day.GLB", + "atmos.bldep.tmin-u-hxy-u.day.GLB", + "atmos.cl.tavg-al-hxy-u.day.GLB", + "atmos.cl.tavg-al-hxy-u.mon.30S-90S", + "atmos.clc.tavg-al-hxy-u.mon.30S-90S", + "atmos.clc.tavg-al-hxy-u.mon.GLB", + "atmos.clcalipso.tavg-220hPa-hxy-air.mon.30S-90S", + "atmos.clcalipso.tavg-220hPa-hxy-air.mon.GLB", + "atmos.clcalipso.tavg-560hPa-hxy-air.mon.30S-90S", + "atmos.clcalipso.tavg-560hPa-hxy-air.mon.GLB", + "atmos.clcalipso.tavg-840hPa-hxy-air.mon.30S-90S", + "atmos.clcalipso.tavg-840hPa-hxy-air.mon.GLB", + "atmos.clcalipso.tavg-h40-hxy-air.mon.30S-90S", + "atmos.cldnci.tavg-u-hxy-cl.mon.GLB", + "atmos.cldncl.tavg-u-hxy-cl.mon.GLB", + "atmos.cldnvi.tavg-u-hxy-u.mon.GLB", + "atmos.cli.tavg-al-hxy-u.mon.30S-90S", + "atmos.clic.tavg-al-hxy-u.mon.30S-90S", + "atmos.clis.tavg-al-hxy-u.mon.30S-90S", + "atmos.clisccp.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clisccp.tavg-p7c-hxy-air.mon.GLB", + "atmos.clivi.tavg-u-hxy-u.mon.30S-90S", + "atmos.clivimodis.tavg-u-hxy-u.mon.30S-90S", + "atmos.clmodis.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clmodis.tavg-p7c-hxy-air.mon.GLB", + "atmos.clmodisice.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clmodisice.tavg-p7c-hxy-air.mon.GLB", + "atmos.clmodisiceReff.tavg-u-hxy-u.mon.GLB", + "atmos.clmodisliquid.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clmodisliquid.tavg-p7c-hxy-air.mon.GLB", + "atmos.clmodisliquidReff.tavg-u-hxy-u.mon.GLB", + "atmos.cls.tavg-al-hxy-u.mon.30S-90S", + "atmos.clt.tavg-u-hxy-lnd.day.GLB", + "atmos.clt.tavg-u-hxy-u.mon.30S-90S", + "atmos.cltc.tavg-u-hxy-u.mon.GLB", + "atmos.cltcalipso.tavg-u-hxy-u.mon.30S-90S", + "atmos.cltisccp.tavg-u-hxy-u.mon.30S-90S", + "atmos.cltmodis.tavg-u-hxy-u.mon.30S-90S", + "atmos.clw.tavg-al-hxy-u.mon.30S-90S", + "atmos.clwc.tavg-al-hxy-u.mon.30S-90S", + "atmos.clws.tavg-al-hxy-u.mon.30S-90S", + "atmos.clwvi.tavg-u-hxy-u.mon.30S-90S", + "atmos.clwvimodis.tavg-u-hxy-u.mon.30S-90S", + "atmos.co2.tavg-al-hxy-u.mon.GLB", + "atmos.co2.tavg-p19-hxy-air.mon.GLB", + "atmos.co2.tclm-u-hm-u.mon.GLB", + "atmos.co23D.tavg-al-hxy-u.mon.GLB", + "atmos.co2mass.tavg-u-hm-u.mon.GLB", + "atmos.dmc.tavg-alh-hxy-u.mon.30S-90S", + "atmos.edt.tavg-al-hxy-u.mon.30S-90S", + "atmos.evspsbl.tavg-u-hxy-lnd.day.GLB", + "atmos.evu.tavg-al-hxy-u.mon.30S-90S", + "atmos.fco2antt.tavg-u-hxy-u.mon.GLB", + "atmos.fco2fos.tavg-u-hxy-u.mon.GLB", + "atmos.fco2nat.tavg-u-hxy-u.mon.GLB", + "atmos.hfls.tavg-u-hxy-u.mon.30S-90S", + "atmos.hfss.tavg-u-hxy-u.mon.30S-90S", + "atmos.hur.tavg-al-hxy-u.mon.30S-90S", + "atmos.hur.tavg-al-hxy-u.mon.GLB", + "atmos.hur.tavg-p19-hxy-air.mon.30S-90S", + "atmos.hurs.tavg-h2m-hxy-u.mon.30S-90S", + "atmos.hurs.tmax-h2m-hxy-u.day.GLB", + "atmos.hurs.tmin-h2m-hxy-u.day.GLB", + "atmos.hus.tavg-al-hxy-u.mon.30S-90S", + "atmos.hus.tavg-al-hxy-u.mon.GLB", + "atmos.hus.tavg-p19-hxy-u.mon.30S-90S", + "atmos.hus.tpt-al-hxy-u.6hr.GLB", + "atmos.hus.tpt-p7h-hxy-air.6hr.GLB", + "atmos.huss.tavg-h2m-hxy-u.mon.30S-90S", + "atmos.huss.tpt-h2m-hxy-u.1hr.GLB", + "atmos.loadso4.tavg-u-hxy-u.mon.GLB", + "atmos.mc.tavg-alh-hxy-u.mon.GLB", + "atmos.mcd.tavg-alh-hxy-u.mon.30S-90S", + "atmos.mcu.tavg-alh-hxy-u.mon.30S-90S", + "atmos.mcu.tavg-alh-hxy-u.mon.GLB", + "atmos.pctisccp.tavg-u-hxy-cl.mon.30S-90S", + "atmos.pfull.tavg-al-hxy-u.mon.GLB", + "atmos.pfull.tclm-al-hxy-u.mon.30S-90S", + "atmos.phalf.tavg-alh-hxy-u.mon.GLB", + "atmos.pr.tavg-u-hxy-u.mon.30S-90S", + "atmos.pr.tmax-u-hxy-u.day.GLB", + "atmos.pr.tpt-u-hxy-u.6hr.GLB", + "atmos.prc.tavg-u-hxy-u.mon.30S-90S", + "atmos.prra.tavg-u-hxy-lnd.day.GLB", + "atmos.prra.tavg-u-hxy-u.mon.30S-90S", + "atmos.prsn.tavg-u-hxy-u.3hr.GLB", + "atmos.prsn.tavg-u-hxy-u.day.GLB", + "atmos.prsn.tavg-u-hxy-u.mon.30S-90S", + "atmos.prw.tavg-u-hxy-u.day.GLB", + "atmos.prw.tavg-u-hxy-u.mon.30S-90S", + "atmos.ps.tavg-u-hxy-u.1hr.GLB", + "atmos.ps.tavg-u-hxy-u.mon.30S-90S", + "atmos.ps.tpt-u-hxy-u.6hr.GLB", + "atmos.psl.tavg-u-hxy-u.mon.30S-90S", + "atmos.psl.tpt-u-hxy-u.1hr.GLB", + "atmos.psl.tpt-u-hxy-u.6hr.GLB", + "atmos.ptp.tavg-u-hxy-u.mon.GLB", + "atmos.reffcclwtop.tavg-u-hxy-ccl.mon.GLB", + "atmos.reffclic.tavg-al-hxy-ccl.mon.30S-90S", + "atmos.reffclis.tavg-al-hxy-scl.mon.30S-90S", + "atmos.reffclwc.tavg-al-hxy-ccl.mon.30S-90S", + "atmos.reffclws.tavg-al-hxy-scl.mon.30S-90S", + "atmos.reffsclwtop.tavg-u-hxy-scl.mon.GLB", + "atmos.rld.tavg-alh-hxy-u.mon.GLB", + "atmos.rld4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rldcs.tavg-alh-hxy-u.mon.GLB", + "atmos.rldcs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rlds.tavg-u-hxy-u.1hr.GLB", + "atmos.rlds.tavg-u-hxy-u.day.GLB", + "atmos.rlds.tavg-u-hxy-u.mon.30S-90S", + "atmos.rldscs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rlu.tavg-alh-hxy-u.mon.GLB", + "atmos.rlu4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rlucs.tavg-alh-hxy-u.mon.GLB", + "atmos.rlucs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rlus.tavg-u-hxy-u.day.GLB", + "atmos.rlus.tavg-u-hxy-u.mon.30S-90S", + "atmos.rlut.tavg-u-hxy-u.mon.30S-90S", + "atmos.rlut4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rlutcs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rlutcs4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rsd.tavg-alh-hxy-u.mon.GLB", + "atmos.rsd4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsdcs.tavg-alh-hxy-u.mon.GLB", + "atmos.rsdcs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsds.tavg-u-hxy-u.1hr.GLB", + "atmos.rsds.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsdscs.tavg-u-hxy-u.day.GLB", + "atmos.rsdscs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsdt.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsu.tavg-alh-hxy-u.mon.GLB", + "atmos.rsu4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsucs.tavg-alh-hxy-u.mon.GLB", + "atmos.rsucs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsus.tavg-u-hxy-u.day.GLB", + "atmos.rsus.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsuscs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsut.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsut4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rsutcs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsutcs4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rtmt.tavg-u-hxy-u.mon.GLB", + "atmos.rv850.tpt-850hPa-hxy-air.6hr.GLB", + "atmos.scldncl.tavg-u-hxy-scl.mon.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.mon.30S-90S", + "atmos.sfcWind.tmax-h10m-hxy-u.day.GLB", + "atmos.ta.tavg-al-hxy-u.mon.30S-90S", + "atmos.ta.tavg-al-hxy-u.mon.GLB", + "atmos.ta.tavg-p19-hxy-air.mon.30S-90S", + "atmos.ta.tavg-p39-hy-air.mon.GLB", + "atmos.ta.tpt-al-hxy-u.6hr.GLB", + "atmos.ta.tpt-p7h-hxy-air.6hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.1hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.mon.30S-90S", + "atmos.tas.tmaxavg-h2m-hxy-u.mon.30S-90S", + "atmos.tas.tminavg-h2m-hxy-u.mon.30S-90S", + "atmos.tnt.tavg-al-hxy-u.mon.GLB", + "atmos.tntrl.tavg-al-hxy-u.mon.GLB", + "atmos.tntrs.tavg-al-hxy-u.mon.GLB", + "atmos.ts.tavg-u-hxy-u.mon.30S-90S", + "atmos.ts.tpt-u-hxy-u.6hr.GLB", + "atmos.ua.tavg-al-hxy-u.mon.GLB", + "atmos.ua.tavg-p19-hxy-air.mon.30S-90S", + "atmos.ua.tavg-p39-hy-air.mon.GLB", + "atmos.ua.tpt-al-hxy-u.6hr.GLB", + "atmos.ua.tpt-p7h-hxy-air.6hr.GLB", + "atmos.uas.tavg-h10m-hxy-u.mon.30S-90S", + "atmos.uas.tpt-h10m-hxy-u.1hr.GLB", + "atmos.va.tavg-al-hxy-u.mon.GLB", + "atmos.va.tavg-p19-hxy-air.mon.30S-90S", + "atmos.va.tavg-p39-hy-air.mon.GLB", + "atmos.va.tpt-al-hxy-u.6hr.GLB", + "atmos.va.tpt-p7h-hxy-air.6hr.GLB", + "atmos.vas.tavg-h10m-hxy-u.mon.30S-90S", + "atmos.vas.tpt-h10m-hxy-u.1hr.GLB", + "atmos.wap.tavg-p19-hxy-air.mon.30S-90S", + "atmos.zg.tavg-1000hPa-hxy-air.day.GLB", + "atmos.zg.tavg-500hPa-hxy-air.day.GLB", + "atmos.zg.tavg-al-hxy-u.mon.GLB", + "atmos.zg.tavg-p19-hxy-air.mon.30S-90S", + "atmos.zg.tavg-p39-hy-air.mon.GLB", + "atmos.zg.tpt-500hPa-hxy-air.6hr.GLB", + "atmos.zg.tpt-al-hxy-u.6hr.GLB", + "atmos.zg.tpt-p7h-hxy-air.6hr.GLB", + "atmos.ztp.tavg-u-hxy-u.mon.GLB", + "atmosChem.c2h4.tavg-al-hxy-u.mon.GLB", + "atmosChem.c2h5oh.tavg-al-hxy-u.mon.GLB", + "atmosChem.c4h10.tavg-al-hxy-u.mon.GLB", + "atmosChem.cfc11.tavg-u-hm-u.mon.GLB", + "atmosChem.cfc113.tavg-u-hm-u.mon.GLB", + "atmosChem.cfc12.tavg-u-hm-u.mon.GLB", + "atmosChem.ch3oh.tavg-al-hxy-u.mon.GLB", + "atmosChem.ch4.tavg-al-hxy-u.mon.GLB", + "atmosChem.ch4.tavg-p39-hy-air.mon.GLB", + "atmosChem.ch4losssoil.tavg-u-hxy-u.mon.GLB", + "atmosChem.ch4ref.ti-al-hxy-u.fx.GLB", + "atmosChem.chegph2oo1d.tavg-al-hxy-u.mon.GLB", + "atmosChem.chepnh4.tavg-al-hxy-u.mon.GLB", + "atmosChem.chepno3.tavg-al-hxy-u.mon.GLB", + "atmosChem.dms.tavg-al-hxy-u.mon.30S-90S", + "atmosChem.dms.tavg-al-hxy-u.mon.GLB", + "atmosChem.do3chm.tavg-al-hxy-u.mon.GLB", + "atmosChem.dryh2.tavg-u-hxy-u.mon.GLB", + "atmosChem.dryhno3.tavg-u-hxy-u.mon.GLB", + "atmosChem.drynh3.tavg-u-hxy-u.mon.GLB", + "atmosChem.drynh4.tavg-u-hxy-u.mon.GLB", + "atmosChem.drynoy.tavg-u-hxy-u.mon.GLB", + "atmosChem.e90inst.tpt-al-hxy-u.mon.GLB", + "atmosChem.emiach4.tavg-u-hxy-u.mon.GLB", + "atmosChem.emiavnox.tavg-al-hxy-u.mon.GLB", + "atmosChem.emic2h4.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic2h5oh.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic2h6.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic3h6.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic3h8.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic4h10.tavg-u-hxy-u.mon.GLB", + "atmosChem.emich3oh.tavg-u-hxy-u.mon.GLB", + "atmosChem.emich4.tavg-u-hxy-u.mon.GLB", + "atmosChem.emih2.tavg-u-hxy-u.mon.GLB", + "atmosChem.emilkch4.tavg-u-hxy-u.mon.GLB", + "atmosChem.h2.tavg-al-hxy-u.mon.GLB", + "atmosChem.h2loss.tavg-al-hxy-u.mon.GLB", + "atmosChem.h2prod.tavg-al-hxy-u.mon.GLB", + "atmosChem.hcfc22.tavg-u-hm-u.mon.GLB", + "atmosChem.meanage.tavg-al-hxy-u.mon.GLB", + "atmosChem.meanage.tavg-p39-hy-air.mon.GLB", + "atmosChem.n2o.tavg-al-hxy-u.mon.GLB", + "atmosChem.n2o.tavg-p39-hy-air.mon.GLB", + "atmosChem.o3.tavg-al-hxy-u.mon.GLB", + "atmosChem.o3.tavg-p19-hxy-air.mon.GLB", + "atmosChem.o3.tavg-p39-hy-air.mon.GLB", + "atmosChem.o3.tpt-al-hxy-u.mon.GLB", + "atmosChem.o3ref.tclm-al-hxy-u.fx.GLB", + "atmosChem.o3ref.ti-al-hxy-u.fx.GLB", + "atmosChem.o3ste.tavg-al-hxy-u.mon.GLB", + "atmosChem.rlutch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rlutcsch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rlutcso3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rluto3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsutch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsutcsch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsutcso3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsuto3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.stratch4loss.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropch4loss.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropch4lossoh.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropdo3chm.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropo3ste.tavg-al-hxy-u.mon.GLB", + "atmosChem.wethno3.tavg-al-hxy-u.mon.GLB", + "atmosChem.wetnh3.tavg-u-hxy-u.mon.GLB", + "atmosChem.wetnh4.tavg-u-hxy-u.mon.GLB", + "atmosChem.wetno3.tavg-al-hxy-u.mon.GLB", + "atmosChem.wetnoy.tavg-u-hxy-u.mon.GLB", + "land.albc.tavg-u-hxy-veg.mon.GLB", + "land.areacellr.ti-u-hxy-u.fx.GLB", + "land.baresoilFrac.tavg-u-hxy-u.mon.GLB", + "land.burntFractionAll.tavg-u-hxy-u.mon.GLB", + "land.cGeologicStorage.tavg-u-hxy-u.mon.GLB", + "land.cLand.tavg-u-hxy-lnd.mon.GLB", + "land.cLitter.tavg-u-hxy-lnd.mon.GLB", + "land.cnc.tavg-u-hxy-u.mon.GLB", + "land.cProduct.tavg-u-hxy-lnd.mon.GLB", + "land.cropFrac.tavg-u-hxy-u.mon.GLB", + "land.cSoil.tavg-d100cm-hxy-lnd.mon.GLB", + "land.cSoil.tavg-u-hxy-lnd.mon.GLB", + "land.cVeg.tavg-u-hxy-lnd.mon.GLB", + "land.dcw.tavg-u-hxy-lnd.day.GLB", + "land.dslw.tavg-u-hxy-lnd.day.GLB", + "land.evspsblpot.tavg-u-hxy-lnd.day.GLB", + "land.evspsblpot.tavg-u-hxy-lnd.mon.GLB", + "land.fAnthDisturb.tavg-u-hxy-lnd.mon.GLB", + "land.fBNF.tavg-u-hxy-lnd.mon.GLB", + "land.fCLandToOcean.tavg-u-hxy-lnd.mon.GLB", + "land.fDeforestToAtmos.tavg-u-hxy-lnd.mon.GLB", + "land.fDeforestToProduct.tavg-u-hxy-lnd.mon.GLB", + "land.fFire.tavg-u-hxy-lnd.mon.GLB", + "land.fFireAll.tavg-u-hxy-lnd.mon.GLB", + "land.fFireNat.tavg-u-hxy-lnd.mon.GLB", + "land.fHarvestToAtmos.tavg-u-hxy-lnd.mon.GLB", + "land.fHarvestToGeologicStorage.tavg-u-hxy-lnd.mon.GLB", + "land.fHarvestToProduct.tavg-u-hxy-lnd.mon.GLB", + "land.fLitterSoil.tavg-u-hxy-lnd.mon.GLB", + "land.fN2O.tavg-u-hxy-lnd.mon.GLB", + "land.fNAnthDisturb.tavg-u-hxy-lnd.mon.GLB", + "land.fNdep.tavg-u-hxy-lnd.mon.GLB", + "land.fNfert.tavg-u-hxy-lnd.mon.GLB", + "land.fNLandToOcean.tavg-u-hxy-lnd.mon.GLB", + "land.fNLitterSoil.tavg-u-hxy-lnd.mon.GLB", + "land.fNloss.tavg-u-hxy-lnd.mon.GLB", + "land.fNnetmin.tavg-u-hxy-lnd.mon.GLB", + "land.fNOx.tavg-u-hxy-lnd.mon.GLB", + "land.fNProduct.tavg-u-hxy-lnd.mon.GLB", + "land.fNup.tavg-u-hxy-lnd.mon.GLB", + "land.fNVegLitter.tavg-u-hxy-lnd.mon.GLB", + "land.fNVegSoil.tavg-u-hxy-lnd.mon.GLB", + "land.fProductDecomp.tavg-u-hxy-lnd.mon.GLB", + "land.fVegLitter.tavg-u-hxy-lnd.mon.GLB", + "land.fVegSoil.tavg-u-hxy-lnd.mon.GLB", + "land.gpp.tavg-u-hxy-lnd.mon.GLB", + "land.grassFrac.tavg-u-hxy-u.mon.GLB", + "land.landCoverFrac.tavg-u-hxy-u.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.day.GLB", + "land.mrrob.tavg-u-hxy-lnd.day.GLB", + "land.mrros.tavg-u-hxy-lnd.day.GLB", + "land.mrsfl.tavg-sl-hxy-lnd.day.GLB", + "land.mrsfl.tavg-sl-hxy-lnd.mon.GLB", + "land.mrsll.tavg-sl-hxy-lnd.day.GLB", + "land.mrsll.tavg-sl-hxy-lnd.mon.GLB", + "land.mrso.tavg-u-hxy-lnd.day.GLB", + "land.mrsol.tavg-d10cm-hxy-lnd.day.GLB", + "land.mrsol.tavg-sl-hxy-lnd.day.GLB", + "land.mrsol.tavg-sl-hxy-lnd.mon.GLB", + "land.mrsow.tavg-u-hxy-lnd.day.GLB", + "land.mrtws.tavg-u-hxy-lnd.day.GLB", + "land.mrtws.tavg-u-hxy-lnd.mon.GLB", + "land.nbp.tavg-u-hxy-lnd.mon.GLB", + "land.nep.tavg-u-hxy-lnd.mon.GLB", + "land.nLand.tavg-u-hxy-lnd.mon.GLB", + "land.nLitter.tavg-u-hxy-lnd.mon.GLB", + "land.nMineral.tavg-u-hxy-lnd.mon.GLB", + "land.npp.tavg-u-hxy-lnd.mon.GLB", + "land.nProduct.tavg-u-hxy-lnd.mon.GLB", + "land.nSoil.tavg-u-hxy-lnd.mon.GLB", + "land.nVeg.tavg-u-hxy-lnd.mon.GLB", + "land.pastureFrac.tavg-u-hxy-u.mon.GLB", + "land.prveg.tavg-u-hxy-lnd.mon.GLB", + "land.ra.tavg-u-hxy-lnd.mon.GLB", + "land.residualFrac.tavg-u-hxy-u.mon.GLB", + "land.rh.tavg-u-hxy-lnd.mon.GLB", + "land.rivi.tavg-u-hxy-lnd.day.GLB", + "land.rivo.tavg-u-hxy-lnd.day.GLB", + "land.rsds.tavg-u-hxy-sn.mon.GLB", + "land.rsus.tavg-u-hxy-sn.mon.GLB", + "land.shrubFrac.tavg-u-hxy-u.mon.GLB", + "land.tas.tavg-u-hxy-u.1hr.GLB", + "land.tran.tavg-u-hxy-lnd.mon.GLB", + "land.treeFrac.tavg-u-hxy-u.mon.GLB", + "land.tsl.tavg-sl-hxy-lnd.mon.GLB", + "land.tslsi.tavg-u-hxy-u.day.GLB", + "land.vegFrac.tavg-u-hxy-u.mon.GLB", + "land.vegHeight.tavg-u-hxy-veg.mon.GLB", + "land.wetlandCH4.tavg-u-hxy-lnd.mon.GLB", + "land.wtd.tavg-u-hxy-lnd.day.GLB", + "landIce.snd.tavg-u-hxy-lnd.mon.GLB", + "landIce.snw.tavg-u-hxy-lnd.day.GLB", + "ocean.absscint.tavg-op4-hxy-sea.mon.GLB", + "ocean.agessc.tavg-ol-hxy-sea.mon.GLB", + "ocean.bigthetao.tavg-ol-hm-sea.mon.GLB", + "ocean.bigthetao.tavg-ol-hxy-sea.dec.GLB", + "ocean.bigthetao.tavg-op20bar-hxy-sea.day.GLB", + "ocean.chcint.tavg-op4-hxy-sea.mon.GLB", + "ocean.ficeberg.tavg-ol-hxy-sea.mon.GLB", + "ocean.friver.tavg-u-hxy-sea.mon.GLB", + "ocean.hfbasin.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpmadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpmdiff.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpsmadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfds.tavg-u-hxy-sea.mon.30S-90S", + "ocean.hfx.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfx.tavg-u-hxy-sea.day.GLB", + "ocean.hfx.tavg-u-hxy-sea.mon.GLB", + "ocean.hfy.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfy.tavg-u-hxy-sea.day.GLB", + "ocean.hfy.tavg-u-hxy-sea.mon.GLB", + "ocean.htovgyre.tavg-u-hyb-sea.mon.GLB", + "ocean.htovovrt.tavg-u-hyb-sea.mon.GLB", + "ocean.masscello.tavg-ol-hxy-sea.dec.GLB", + "ocean.masso.tavg-u-hm-sea.dec.GLB", + "ocean.masso.tavg-u-hm-sea.mon.GLB", + "ocean.mlotst.tavg-u-hxy-sea.day.GLB", + "ocean.mlotst.tavg-u-hxy-sea.mon.30S-90S", + "ocean.mlotst.tmax-u-hxy-sea.mon.GLB", + "ocean.mlotst.tmin-u-hxy-sea.mon.GLB", + "ocean.mpw.tavg-u-hxy-sea.mon.GLB", + "ocean.mpw.tpt-u-hxy-sea.3hr.GLB", + "ocean.mpwswell.tavg-u-hxy-sea.mon.GLB", + "ocean.mpwswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.mpwwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.mpwwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.msftbarot.tavg-u-hxy-sea.mon.GLB", + "ocean.msftm.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftm.tavg-rho-hyb-sea.mon.GLB", + "ocean.msfty.tavg-ol-ht-sea.mon.GLB", + "ocean.msfty.tavg-rho-ht-sea.mon.GLB", + "ocean.obvfsq.tavg-ol-hxy-sea.mon.GLB", + "ocean.pbo.tavg-u-hxy-sea.mon.GLB", + "ocean.pfscint.tavg-op4-hxy-sea.mon.GLB", + "ocean.phcint.tavg-op4-hxy-sea.mon.GLB", + "ocean.pso.tavg-u-hxy-sea.mon.GLB", + "ocean.scint.tavg-op4-hxy-sea.mon.GLB", + "ocean.sduo.tavg-u-hxy-sea.mon.GLB", + "ocean.sduo.tpt-u-hxy-sea.3hr.GLB", + "ocean.sdvo.tavg-u-hxy-sea.mon.GLB", + "ocean.sdvo.tpt-u-hxy-sea.3hr.GLB", + "ocean.sfx.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfx.tavg-u-hxy-sea.mon.GLB", + "ocean.sfy.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfy.tavg-u-hxy-sea.mon.GLB", + "ocean.sltbasin.tavg-u-hyb-sea.mon.GLB", + "ocean.sltovgyre.tavg-u-hyb-sea.mon.GLB", + "ocean.sltovovrt.tavg-u-hyb-sea.mon.GLB", + "ocean.so.tavg-ol-hm-sea.mon.GLB", + "ocean.so.tavg-ol-hxy-sea.dec.GLB", + "ocean.so.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.sob.tavg-u-hxy-sea.mon.GLB", + "ocean.sos.tavg-u-hm-sea.mon.30S-90S", + "ocean.sos.tavg-u-hm-sea.mon.GLB", + "ocean.swh.tavg-u-hxy-sea.mon.GLB", + "ocean.swh.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhmax.tmax-u-hxy-sea.mon.GLB", + "ocean.swhmax.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhswell.tavg-u-hxy-sea.mon.GLB", + "ocean.swhswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.swhwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.tauuo.tavg-u-hxy-sea.3hr.GLB", + "ocean.tauuo.tavg-u-hxy-sea.dec.GLB", + "ocean.tauvo.tavg-u-hxy-sea.3hr.GLB", + "ocean.tauvo.tavg-u-hxy-sea.dec.GLB", + "ocean.thetao.tavg-ol-hm-sea.mon.GLB", + "ocean.thetao.tavg-ol-hxy-sea.dec.GLB", + "ocean.thetao.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.thetao.tavg-op20bar-hxy-sea.day.GLB", + "ocean.thkcello.tavg-ol-hxy-sea.dec.GLB", + "ocean.tob.tavg-u-hxy-sea.mon.GLB", + "ocean.tos.tavg-u-hm-sea.mon.GLB", + "ocean.tos.tavg-u-hxy-sea.mon.30S-90S", + "ocean.tos.tpt-u-hxy-sea.3hr.GLB", + "ocean.tossq.tavg-u-hxy-sea.day.GLB", + "ocean.umo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.uo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.uos.tavg-u-hxy-sea.day.GLB", + "ocean.vmo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.vo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.volcello.tavg-ol-hxy-sea.dec.GLB", + "ocean.volcello.tavg-ol-hxy-sea.mon.GLB", + "ocean.volcello.tavg-ol-hxy-sea.yr.GLB", + "ocean.volcello.ti-ol-hxy-sea.fx.GLB", + "ocean.volo.tavg-u-hm-sea.dec.GLB", + "ocean.volo.tavg-u-hm-sea.mon.GLB", + "ocean.vos.tavg-u-hxy-sea.day.GLB", + "ocean.wdir.tavg-u-hxy-sea.mon.GLB", + "ocean.wdir.tpt-u-hxy-sea.3hr.GLB", + "ocean.wdirswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wdirswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wdirwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wdirwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.wfcorr.tavg-u-hxy-sea.mon.GLB", + "ocean.wfo.tavg-u-hxy-sea.mon.GLB", + "ocean.wmo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.wo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.wpdir.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdir.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpdirswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdirswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpdirwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdirwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpp.tavg-u-hxy-sea.mon.GLB", + "ocean.wpp.tpt-u-hxy-sea.3hr.GLB", + "ocean.wppswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wppswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wppwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wppwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.zos.tavg-u-hxy-sea.mon.30S-90S", + "ocean.zossq.tavg-u-hxy-sea.mon.GLB", + "ocean.zostoga.tavg-u-hm-sea.day.GLB", + "ocnBgchem.bacc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.calc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chl.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chl.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chlcalc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chldiat.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chldiat.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chldiaz.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chldiaz.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chlmisc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chlmisc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chlpico.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chlpico.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.detoc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dfe.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.dfe.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissic.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.dissic.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissoc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dmso.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.expc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.expcalc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.fgco2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fsfe.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fsn.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.graz.tavg-ol-hxy-sea.mon.30S-90S", + "ocnBgchem.icfriver.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intdic.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intdoc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intparag.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbfe.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbn.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbp.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbsi.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpcalcite.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpn2.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpoc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpp.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpp.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppcalc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppdiat.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppdiaz.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppmisc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppnitrate.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpppico.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.nh4.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.nh4.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.no3.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.no3.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.o2.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.ocfriver.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.ph.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.ph.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phyc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phyc.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.phyc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phycalc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phycalc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phydiat.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phydiat.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phydiaz.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phydiaz.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phymisc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phymisc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phypico.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phypico.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.po4.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.pp.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.si.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.spco2.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.spco2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.talk.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zmeso.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zmeso.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zmicro.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zmicro.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zmisc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zmisc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zooc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zooc.tavg-ol-hxy-sea.mon.GLB", + "seaIce.evspsbl.tavg-u-hxy-si.mon.GLB", + "seaIce.prra.tavg-u-hxy-si.mon.GLB", + "seaIce.prsn.tavg-u-hxy-si.mon.GLB", + "seaIce.rlds.tavg-u-hxy-si.mon.GLB", + "seaIce.rlus.tavg-u-hxy-si.mon.GLB", + "seaIce.rsds.tavg-u-hxy-si.day.GLB", + "seaIce.rsds.tavg-u-hxy-si.mon.GLB", + "seaIce.rsus.tavg-u-hxy-si.day.GLB", + "seaIce.rsus.tavg-u-hxy-si.mon.GLB", + "seaIce.sbl.tavg-u-hxy-si.mon.GLB", + "seaIce.siage.tavg-u-hxy-si.day.GLB", + "seaIce.siage.tavg-u-hxy-si.mon.30S-90S", + "seaIce.siarea.tavg-u-hm-u.mon.NH", + "seaIce.siarea.tavg-u-hm-u.mon.SH", + "seaIce.siconc.tavg-u-hxy-u.mon.30S-90S", + "seaIce.siconca.tavg-u-hxy-u.day.GLB", + "seaIce.siconca.tavg-u-hxy-u.mon.GLB", + "seaIce.sidconcdyn.tavg-u-hxy-sea.mon.GLB", + "seaIce.sidconcth.tavg-u-hxy-sea.mon.GLB", + "seaIce.sidmassdyn.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthsi.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthwat.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmeltbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmeltlat.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmelttop.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassth.tavg-u-hxy-si.mon.GLB", + "seaIce.sieqthick.tavg-u-hxy-si.mon.GLB", + "seaIce.siextent.tavg-u-hm-u.mon.NH", + "seaIce.siextent.tavg-u-hm-u.mon.SH", + "seaIce.siflcondbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflcondtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sifllattop.tavg-u-hxy-si.mon.GLB", + "seaIce.siflsensbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflsenstop.tavg-u-hxy-si.mon.GLB", + "seaIce.siflswdbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sihc.tavg-u-hxy-sea.mon.GLB", + "seaIce.sisndmassdyn.tavg-u-hxy-si.mon.GLB", + "seaIce.sisndmasssi.tavg-u-hxy-si.mon.GLB", + "seaIce.sisndmasswind.tavg-u-hxy-si.mon.GLB", + "seaIce.sisnhc.tavg-u-hxy-si.mon.GLB", + "seaIce.sisnmass.tavg-u-hm-u.mon.NH", + "seaIce.sisnmass.tavg-u-hm-u.mon.SH", + "seaIce.sispeed.tavg-u-hxy-si.day.GLB", + "seaIce.sispeed.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-si.day.GLB", + "seaIce.sithick.tavg-u-hxy-si.mon.30S-90S", + "seaIce.sitimefrac.tavg-u-hxy-sea.day.GLB", + "seaIce.sitimefrac.tavg-u-hxy-sea.mon.30S-90S", + "seaIce.siu.tavg-u-hxy-si.day.GLB", + "seaIce.siu.tavg-u-hxy-si.mon.30S-90S", + "seaIce.siv.tavg-u-hxy-si.day.GLB", + "seaIce.siv.tavg-u-hxy-si.mon.30S-90S", + "seaIce.sivol.tavg-u-hm-u.mon.NH", + "seaIce.sivol.tavg-u-hm-u.mon.SH", + "seaIce.snc.tavg-u-hxy-si.mon.GLB", + "seaIce.snd.tavg-u-hxy-sn.day.GLB", + "seaIce.snd.tavg-u-hxy-sn.mon.30S-90S", + "seaIce.snm.tavg-u-hxy-si.mon.GLB", + "seaIce.snw.tavg-u-hxy-si.mon.GLB", + "seaIce.ts.tavg-u-hxy-si.day.GLB", + "seaIce.ts.tavg-u-hxy-si.mon.30S-90S" + ], + "Medium": [ + "atmos.hurs.tpt-h2m-hxy-u.3hr.GLB", + "atmos.noaahi2m.tavg-h2m-hxy-u.day.GLB", + "atmos.noaahi2m.tmax-h2m-hxy-u.day.GLB", + "atmos.ps.tpt-u-hxy-u.3hr.GLB", + "atmos.rlds.tavg-u-hxy-u.3hr.GLB", + "atmos.rls.tavg-u-hxy-u.day.GLB", + "atmos.rls.tavg-u-hxy-u.mon.GLB", + "atmos.rsds.tavg-u-hxy-u.3hr.GLB", + "atmos.rss.tavg-u-hxy-u.day.GLB", + "atmos.rss.tavg-u-hxy-u.mon.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.3hr.GLB", + "atmos.ua.tavg-h100m-hxy-u.3hr.GLB", + "atmos.va.tavg-h100m-hxy-u.3hr.GLB", + "atmos.wbgt.tavg-h2m-hxy-u.day.GLB", + "atmos.wbgt.tmax-h2m-hxy-u.day.GLB", + "land.cLeaf.tavg-u-hxy-lnd.mon.GLB", + "land.cLitterCwd.tavg-u-hxy-lnd.mon.GLB", + "land.cLitterSubSurf.tavg-u-hxy-lnd.mon.GLB", + "land.cLitterSurf.tavg-u-hxy-lnd.mon.GLB", + "land.cOther.tavg-u-hxy-lnd.mon.GLB", + "land.cRoot.tavg-u-hxy-lnd.mon.GLB", + "land.cropFracC3.tavg-u-hxy-u.mon.GLB", + "land.cropFracC4.tavg-u-hxy-u.mon.GLB", + "land.cSoil.tavg-sl-hxy-lnd.mon.GLB", + "land.cSoilPools.tavg-u-hxy-lnd.mon.GLB", + "land.cStem.tavg-u-hxy-lnd.mon.GLB", + "land.cVeg.tavg-u-hxy-ng.mon.GLB", + "land.cVeg.tavg-u-hxy-shb.mon.GLB", + "land.cVeg.tavg-u-hxy-tree.mon.GLB", + "land.fLitterFire.tavg-u-hxy-lnd.mon.GLB", + "land.fNgas.tavg-u-hxy-lnd.mon.GLB", + "land.fNgasFire.tavg-u-hxy-lnd.mon.GLB", + "land.fNgasNonFire.tavg-u-hxy-lnd.mon.GLB", + "land.fNleach.tavg-u-hxy-lnd.mon.GLB", + "land.fVegFire.tavg-u-hxy-lnd.mon.GLB", + "land.fVegLitterMortality.tavg-u-hxy-lnd.mon.GLB", + "land.fVegLitterSenescence.tavg-u-hxy-lnd.mon.GLB", + "land.fVegSoilMortality.tavg-u-hxy-lnd.mon.GLB", + "land.fVegSoilSenescence.tavg-u-hxy-lnd.mon.GLB", + "land.gpp.tavg-u-hxy-ng.mon.GLB", + "land.gpp.tavg-u-hxy-shb.mon.GLB", + "land.gpp.tavg-u-hxy-tree.mon.GLB", + "land.grassFracC3.tavg-u-hxy-u.mon.GLB", + "land.grassFracC4.tavg-u-hxy-u.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.3hr.GLB", + "land.mrros.tavg-u-hxy-lnd.3hr.GLB", + "land.mrsol.tpt-d10cm-hxy-lnd.3hr.GLB", + "land.nLeaf.tavg-u-hxy-lnd.mon.GLB", + "land.nLitterCwd.tavg-u-hxy-lnd.mon.GLB", + "land.nLitterSubSurf.tavg-u-hxy-lnd.mon.GLB", + "land.nLitterSurf.tavg-u-hxy-lnd.mon.GLB", + "land.nMineralNH4.tavg-u-hxy-lnd.mon.GLB", + "land.nMineralNO3.tavg-u-hxy-lnd.mon.GLB", + "land.nOther.tavg-u-hxy-lnd.mon.GLB", + "land.npp.tavg-u-hxy-ng.mon.GLB", + "land.npp.tavg-u-hxy-shb.mon.GLB", + "land.npp.tavg-u-hxy-tree.mon.GLB", + "land.nppLeaf.tavg-u-hxy-lnd.mon.GLB", + "land.nppOther.tavg-u-hxy-lnd.mon.GLB", + "land.nppRoot.tavg-u-hxy-lnd.mon.GLB", + "land.nppStem.tavg-u-hxy-lnd.mon.GLB", + "land.nRoot.tavg-u-hxy-lnd.mon.GLB", + "land.nStem.tavg-u-hxy-lnd.mon.GLB", + "land.pastureFracC3.tavg-u-hxy-u.mon.GLB", + "land.pastureFracC4.tavg-u-hxy-u.mon.GLB", + "land.ra.tavg-u-hxy-ng.mon.GLB", + "land.ra.tavg-u-hxy-shb.mon.GLB", + "land.ra.tavg-u-hxy-tree.mon.GLB", + "land.raLeaf.tavg-u-hxy-lnd.mon.GLB", + "land.raOther.tavg-u-hxy-lnd.mon.GLB", + "land.raRoot.tavg-u-hxy-lnd.mon.GLB", + "land.raStem.tavg-u-hxy-lnd.mon.GLB", + "land.rh.tavg-u-hxy-ng.mon.GLB", + "land.rh.tavg-u-hxy-shb.mon.GLB", + "land.rh.tavg-u-hxy-tree.mon.GLB", + "land.rhLitter.tavg-u-hxy-lnd.mon.GLB", + "land.rhSoil.tavg-u-hxy-lnd.mon.GLB", + "land.treeFracBdlDcd.tavg-u-hxy-u.mon.GLB", + "land.treeFracBdlEvg.tavg-u-hxy-u.mon.GLB", + "land.treeFracNdlDcd.tavg-u-hxy-u.mon.GLB", + "land.treeFracNdlEvg.tavg-u-hxy-u.mon.GLB", + "land.vegHeight.tavg-u-hxy-ng.mon.GLB", + "land.vegHeight.tavg-u-hxy-shb.mon.GLB", + "land.vegHeight.tavg-u-hxy-tree.mon.GLB", + "land.wetlandCH4cons.tavg-u-hxy-lnd.mon.GLB", + "land.wetlandCH4prod.tavg-u-hxy-lnd.mon.GLB", + "land.wetlandFrac.tavg-u-hxy-u.mon.GLB", + "ocean.evspsbl.tavg-u-hxy-ifs.mon.GLB", + "ocean.ficeberg.tavg-u-hxy-sea.mon.GLB", + "ocean.hfacrossline.tavg-u-ht-sea.mon.GLB", + "ocean.hfevapds.tavg-u-hxy-ifs.mon.GLB", + "ocean.hfibthermds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfibthermds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfrainds.tavg-u-hxy-ifs.mon.GLB", + "ocean.hfrunoffds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfrunoffds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfsnthermds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfsnthermds.tavg-u-hxy-sea.mon.GLB", + "ocean.mfo.tavg-u-ht-sea.mon.GLB", + "ocean.sf6.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfacrossline.tavg-u-ht-sea.mon.GLB", + "ocean.sfdsi.tavg-u-hxy-sea.mon.GLB", + "ocean.sfriver.tavg-u-hxy-sea.mon.GLB", + "ocean.siflfwbot.tavg-u-hxy-sea.mon.GLB", + "ocean.so.tavg-ol-hxy-sea.day.GLB", + "ocean.tnkebto.tavg-u-hxy-sea.yr.GLB", + "ocean.vsf.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfcorr.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfevap.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfpr.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfriver.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfsit.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.arag.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.arag.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.calc.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.calc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chl.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.chlcalc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dmso.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.epn.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.epp.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.expc.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.expcalc.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.fgdms.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fric.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.froc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.graz.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.intppcalc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppdiat.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppdiaz.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppmisc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppnitrate.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intpppico.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.o2.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.ph.tavg-op20bar-hxy-sea.day.GLB", + "seaIce.sfdsi.tavg-u-hxy-si.mon.GLB", + "seaIce.siage.tavg-u-hxy-si.mon.GLB", + "seaIce.siarea.tavg-u-hm-u.day.NH", + "seaIce.siarea.tavg-u-hm-u.day.SH", + "seaIce.siareaacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.sicompstren.tavg-u-hxy-si.mon.GLB", + "seaIce.sidivvel.tpt-u-hxy-si.mon.GLB", + "seaIce.sidmasstranx.tavg-u-hxy-u.mon.GLB", + "seaIce.sidmasstrany.tavg-u-hxy-u.mon.GLB", + "seaIce.sidragbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidragtop.tavg-u-hxy-si.mon.GLB", + "seaIce.siextent.tavg-u-hm-u.day.NH", + "seaIce.siextent.tavg-u-hm-u.day.SH", + "seaIce.sifb.tavg-u-hxy-si.mon.GLB", + "seaIce.siflfwbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflfwdrain.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcecoriolx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcecorioly.tavg-u-hxy-si.mon.GLB", + "seaIce.siforceintstrx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforceintstry.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcetiltx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcetilty.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdconc.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdsnconc.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdsnthick.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdthick.tavg-u-hxy-si.mon.GLB", + "seaIce.simassacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.simpconc.tavg-u-hxy-si.mon.GLB", + "seaIce.simpeffconc.tavg-u-hxy-si.mon.GLB", + "seaIce.simprefrozen.tavg-u-hxy-simp.mon.GLB", + "seaIce.simpthick.tavg-u-hxy-simp.mon.GLB", + "seaIce.sirdgconc.tavg-u-hxy-si.mon.GLB", + "seaIce.sisali.tavg-u-hxy-si.mon.GLB", + "seaIce.sisaltmass.tavg-u-hxy-si.mon.GLB", + "seaIce.sishearvel.tpt-u-hxy-si.mon.GLB", + "seaIce.sisnmass.tavg-u-hm-u.day.NH", + "seaIce.sisnmass.tavg-u-hm-u.day.SH", + "seaIce.sisnmassacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.sistressave.tpt-u-hxy-si.mon.GLB", + "seaIce.sistressmax.tpt-u-hxy-si.mon.GLB", + "seaIce.sistrxdtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sistrxubot.tavg-u-hxy-si.mon.GLB", + "seaIce.sistrydtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sistryubot.tavg-u-hxy-si.mon.GLB", + "seaIce.sitempbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sitempsnic.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-sir.mon.GLB", + "seaIce.sivol.tavg-u-hm-u.day.NH", + "seaIce.sivol.tavg-u-hm-u.day.SH" + ], + "Low": [ + "aerosol.sfpm1.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.sfpm10.tavg-h2m-hxy-u.1hr.GLB", + "atmos.hurs.tavg-h2m-hxy-u.1hr.GLB", + "atmosChem.drynh3.tavg-u-hxy-u.day.GLB", + "atmosChem.drynh4.tavg-u-hxy-u.day.GLB", + "atmosChem.drynoy.tavg-u-hxy-u.day.GLB", + "atmosChem.wetnh3.tavg-u-hxy-u.day.GLB", + "atmosChem.wetnh4.tavg-u-hxy-u.day.GLB", + "atmosChem.wetnoy.tavg-u-hxy-u.day.GLB", + "land.c13Land.tavg-u-hxy-lnd.mon.GLB", + "land.c13Litter.tavg-u-hxy-lnd.mon.GLB", + "land.c13Soil.tavg-u-hxy-lnd.mon.GLB", + "land.c13Veg.tavg-u-hxy-lnd.mon.GLB", + "land.c14Land.tavg-u-hxy-lnd.mon.GLB", + "land.c14Litter.tavg-u-hxy-lnd.mon.GLB", + "land.c14Soil.tavg-u-hxy-lnd.mon.GLB", + "land.c14Veg.tavg-u-hxy-lnd.mon.GLB", + "land.gppc13.tavg-u-hxy-lnd.mon.GLB", + "land.gppc14.tavg-u-hxy-lnd.mon.GLB", + "land.netAtmosLandC13Flux.tavg-u-hxy-lnd.mon.GLB", + "land.netAtmosLandC14Flux.tavg-u-hxy-lnd.mon.GLB", + "land.rac13.tavg-u-hxy-lnd.mon.GLB", + "land.rac14.tavg-u-hxy-lnd.mon.GLB", + "land.rhc13.tavg-u-hxy-lnd.mon.GLB", + "land.rhc14.tavg-u-hxy-lnd.mon.GLB", + "ocean.difmxybo.tavg-ol-hxy-sea.yr.GLB", + "ocean.difmxylo.tavg-ol-hxy-sea.yr.GLB", + "ocean.diftrblo.tavg-ol-hxy-sea.yr.GLB", + "ocean.diftrelo.tavg-ol-hxy-sea.yr.GLB", + "ocean.difvho.tavg-ol-hxy-sea.yr.GLB", + "ocean.difvso.tavg-ol-hxy-sea.yr.GLB", + "ocean.dispkexyfo.tavg-u-hxy-sea.yr.GLB", + "ocean.dxto.ti-u-hxy-u.fx.GLB", + "ocean.dxuo.ti-u-hxy-u.fx.GLB", + "ocean.dxvo.ti-u-hxy-u.fx.GLB", + "ocean.dyto.ti-u-hxy-u.fx.GLB", + "ocean.dyuo.ti-u-hxy-u.fx.GLB", + "ocean.dyvo.ti-u-hxy-u.fx.GLB", + "ocean.mlotstsq.tavg-u-hxy-sea.mon.GLB", + "ocean.msftmmpa.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftmmpa.tavg-rho-hyb-sea.mon.GLB", + "ocean.msftmsmpa.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftypa.tavg-ol-ht-sea.mon.GLB", + "ocean.msftypa.tavg-rho-ht-sea.mon.GLB", + "ocean.ocontempdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontempmint.tavg-u-hxy-sea.yr.GLB", + "ocean.ocontemppadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemppmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemppsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemprmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemptend.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottempdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottempmint.tavg-u-hxy-sea.yr.GLB", + "ocean.opottemppadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemppmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemppsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemprmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemptend.tavg-ol-hxy-sea.dec.GLB", + "ocean.osaltdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpsmadvect.tavg-ol-hxy-sea.mon.GLB", + "ocean.osaltpsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltrmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osalttend.tavg-ol-hxy-sea.yr.GLB", + "ocean.rsdoabsorb.tavg-ol-hxy-sea.yr.GLB", + "ocean.somint.tavg-u-hxy-sea.yr.GLB", + "ocean.sossq.tavg-u-hxy-sea.mon.GLB", + "ocean.thkcelluo.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcellvo.tavg-ol-hxy-sea.mon.GLB", + "ocean.tnpeo.tavg-u-hxy-sea.yr.GLB", + "ocean.tossq.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.dissi13c.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.dissi13c.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissi14c.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissi14cabio.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.dissi14cabio.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.fg13co2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fg14co2abio.tavg-u-hxy-sea.mon.GLB" + ] + }, + "historical": { + "Core": [ + "atmos.areacella.ti-u-hxy-u.fx.GLB", + "atmos.cl.tavg-al-hxy-u.mon.GLB", + "atmos.cli.tavg-al-hxy-u.mon.GLB", + "atmos.clivi.tavg-u-hxy-u.mon.GLB", + "atmos.clt.tavg-u-hxy-u.day.GLB", + "atmos.clt.tavg-u-hxy-u.mon.GLB", + "atmos.clw.tavg-al-hxy-u.mon.GLB", + "atmos.clwvi.tavg-u-hxy-u.mon.GLB", + "atmos.evspsbl.tavg-u-hxy-u.mon.GLB", + "atmos.hfls.tavg-u-hxy-u.mon.GLB", + "atmos.hfss.tavg-u-hxy-u.mon.GLB", + "atmos.hur.tavg-p19-hxy-air.mon.GLB", + "atmos.hur.tavg-p19-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.6hr.GLB", + "atmos.hurs.tavg-h2m-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.mon.GLB", + "atmos.hus.tavg-p19-hxy-u.day.GLB", + "atmos.hus.tavg-p19-hxy-u.mon.GLB", + "atmos.huss.tavg-h2m-hxy-u.day.GLB", + "atmos.huss.tavg-h2m-hxy-u.mon.GLB", + "atmos.huss.tpt-h2m-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.1hr.GLB", + "atmos.pr.tavg-u-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.day.GLB", + "atmos.pr.tavg-u-hxy-u.mon.GLB", + "atmos.prc.tavg-u-hxy-u.mon.GLB", + "atmos.prsn.tavg-u-hxy-u.mon.GLB", + "atmos.prw.tavg-u-hxy-u.mon.GLB", + "atmos.ps.tavg-u-hxy-u.day.GLB", + "atmos.ps.tavg-u-hxy-u.mon.GLB", + "atmos.psl.tavg-u-hxy-u.day.GLB", + "atmos.psl.tavg-u-hxy-u.mon.GLB", + "atmos.rlds.tavg-u-hxy-u.mon.GLB", + "atmos.rldscs.tavg-u-hxy-u.mon.GLB", + "atmos.rlus.tavg-u-hxy-u.mon.GLB", + "atmos.rluscs.tavg-u-hxy-u.mon.GLB", + "atmos.rlut.tavg-u-hxy-u.mon.GLB", + "atmos.rlutcs.tavg-u-hxy-u.mon.GLB", + "atmos.rsds.tavg-u-hxy-u.day.GLB", + "atmos.rsds.tavg-u-hxy-u.mon.GLB", + "atmos.rsdscs.tavg-u-hxy-u.mon.GLB", + "atmos.rsdt.tavg-u-hxy-u.mon.GLB", + "atmos.rsus.tavg-u-hxy-u.mon.GLB", + "atmos.rsuscs.tavg-u-hxy-u.mon.GLB", + "atmos.rsut.tavg-u-hxy-u.mon.GLB", + "atmos.rsutcs.tavg-u-hxy-u.mon.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.day.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.mon.GLB", + "atmos.sftlf.ti-u-hxy-u.fx.GLB", + "atmos.ta.tavg-p19-hxy-air.day.GLB", + "atmos.ta.tavg-p19-hxy-air.mon.GLB", + "atmos.ta.tpt-p3-hxy-air.6hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.day.GLB", + "atmos.tas.tavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tmax-h2m-hxy-u.day.GLB", + "atmos.tas.tmaxavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tmin-h2m-hxy-u.day.GLB", + "atmos.tas.tminavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tpt-h2m-hxy-u.3hr.GLB", + "atmos.tauu.tavg-u-hxy-u.mon.GLB", + "atmos.tauv.tavg-u-hxy-u.mon.GLB", + "atmos.ts.tavg-u-hxy-u.mon.GLB", + "atmos.ua.tavg-p19-hxy-air.day.GLB", + "atmos.ua.tavg-p19-hxy-air.mon.GLB", + "atmos.ua.tpt-p3-hxy-air.6hr.GLB", + "atmos.uas.tavg-h10m-hxy-u.day.GLB", + "atmos.uas.tavg-h10m-hxy-u.mon.GLB", + "atmos.uas.tpt-h10m-hxy-u.3hr.GLB", + "atmos.va.tavg-p19-hxy-air.day.GLB", + "atmos.va.tavg-p19-hxy-air.mon.GLB", + "atmos.va.tpt-p3-hxy-air.6hr.GLB", + "atmos.vas.tavg-h10m-hxy-u.day.GLB", + "atmos.vas.tavg-h10m-hxy-u.mon.GLB", + "atmos.vas.tpt-h10m-hxy-u.3hr.GLB", + "atmos.wap.tavg-p19-hxy-air.mon.GLB", + "atmos.wap.tavg-p19-hxy-u.day.GLB", + "atmos.zg.tavg-p19-hxy-air.day.GLB", + "atmos.zg.tavg-p19-hxy-air.mon.GLB", + "land.evspsblsoi.tavg-u-hxy-lnd.mon.GLB", + "land.evspsblveg.tavg-u-hxy-lnd.mon.GLB", + "land.lai.tavg-u-hxy-lnd.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.mon.GLB", + "land.mrros.tavg-u-hxy-lnd.mon.GLB", + "land.mrso.tavg-u-hxy-lnd.mon.GLB", + "land.mrsofc.ti-u-hxy-lnd.fx.GLB", + "land.mrsol.tavg-d10cm-hxy-lnd.mon.GLB", + "land.orog.ti-u-hxy-u.fx.GLB", + "land.rootd.ti-u-hxy-lnd.fx.GLB", + "land.sftgif.ti-u-hxy-u.fx.GLB", + "land.slthick.ti-sl-hxy-lnd.fx.GLB", + "landIce.mrfso.tavg-u-hxy-lnd.mon.GLB", + "landIce.snc.tavg-u-hxy-lnd.mon.GLB", + "landIce.snw.tavg-u-hxy-lnd.mon.GLB", + "ocean.areacello.ti-u-hxy-u.fx.GLB", + "ocean.basin.ti-u-hxy-u.fx.GLB", + "ocean.bigthetao.tavg-ol-hxy-sea.mon.GLB", + "ocean.deptho.ti-u-hxy-sea.fx.GLB", + "ocean.hfds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfgeou.ti-u-hxy-sea.fx.GLB", + "ocean.masscello.tavg-ol-hxy-sea.mon.GLB", + "ocean.masscello.ti-ol-hxy-sea.fx.GLB", + "ocean.mlotst.tavg-u-hxy-sea.mon.GLB", + "ocean.sftof.ti-u-hxy-u.fx.GLB", + "ocean.so.tavg-ol-hxy-sea.mon.GLB", + "ocean.sos.tavg-u-hxy-sea.day.GLB", + "ocean.sos.tavg-u-hxy-sea.mon.GLB", + "ocean.tauuo.tavg-u-hxy-sea.mon.GLB", + "ocean.tauvo.tavg-u-hxy-sea.mon.GLB", + "ocean.thetao.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcello.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcello.ti-ol-hxy-sea.fx.GLB", + "ocean.tos.tavg-u-hxy-sea.day.GLB", + "ocean.tos.tavg-u-hxy-sea.mon.GLB", + "ocean.umo.tavg-ol-hxy-sea.mon.GLB", + "ocean.uo.tavg-ol-hxy-sea.mon.GLB", + "ocean.vmo.tavg-ol-hxy-sea.mon.GLB", + "ocean.vo.tavg-ol-hxy-sea.mon.GLB", + "ocean.wmo.tavg-ol-hxy-sea.mon.GLB", + "ocean.wo.tavg-ol-hxy-sea.mon.GLB", + "ocean.zos.tavg-u-hxy-sea.day.GLB", + "ocean.zos.tavg-u-hxy-sea.mon.GLB", + "ocean.zostoga.tavg-u-hm-sea.mon.GLB", + "seaIce.siconc.tavg-u-hxy-u.day.GLB", + "seaIce.siconc.tavg-u-hxy-u.mon.GLB", + "seaIce.simass.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-si.mon.GLB", + "seaIce.sitimefrac.tavg-u-hxy-sea.mon.GLB", + "seaIce.siu.tavg-u-hxy-si.mon.GLB", + "seaIce.siv.tavg-u-hxy-si.mon.GLB", + "seaIce.snd.tavg-u-hxy-sn.mon.GLB", + "seaIce.ts.tavg-u-hxy-si.mon.GLB" + ], + "High": [ + "aerosol.abs550aer.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550bc.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550dust.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550no3.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550oa.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550so4.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550ss.tavg-u-hxy-u.mon.GLB", + "aerosol.airmass.tavg-al-hxy-u.mon.GLB", + "aerosol.aoanh.tavg-al-hxy-u.mon.NH", + "aerosol.bry.tavg-p39-hy-air.mon.GLB", + "aerosol.bs550aer.tpt-al-hxy-u.6hr.GLB", + "aerosol.c2h6.tavg-al-hxy-u.mon.GLB", + "aerosol.c3h6.tavg-al-hxy-u.mon.GLB", + "aerosol.c3h8.tavg-al-hxy-u.mon.GLB", + "aerosol.ccldncl.tavg-u-hxy-ccl.mon.GLB", + "aerosol.ccn.tavg-u-hxy-ccl.mon.30S-90S", + "aerosol.ccn.tavg-u-hxy-ccl.mon.GLB", + "aerosol.ccn1.tavg-al-hxy-u.mon.30S-90S", + "aerosol.ccn1.tavg-al-hxy-u.mon.GLB", + "aerosol.ccnp02.tavg-al-hxy-u.mon.30S-90S", + "aerosol.ccnp02.tavg-al-hxy-u.mon.GLB", + "aerosol.cdnc.tavg-al-hxy-u.mon.30S-90S", + "aerosol.cdnc.tavg-al-hxy-u.mon.GLB", + "aerosol.cfc114.tavg-al-hxy-u.mon.GLB", + "aerosol.ch3coch3.tavg-al-hxy-u.mon.GLB", + "aerosol.cheaqpso4.tavg-al-hxy-u.mon.GLB", + "aerosol.chegpso4.tavg-al-hxy-u.mon.GLB", + "aerosol.chepasoa.tavg-u-hxy-u.mon.GLB", + "aerosol.chepsoa.tavg-u-hxy-u.mon.GLB", + "aerosol.cly.tavg-p39-hy-air.mon.GLB", + "aerosol.co.tavg-al-hxy-u.mon.GLB", + "aerosol.co.tavg-h2m-hxy-u.day.GLB", + "aerosol.cod.tavg-u-hxy-u.day.GLB", + "aerosol.cod.tavg-u-hxy-u.mon.30S-90S", + "aerosol.cod.tavg-u-hxy-u.mon.GLB", + "aerosol.conccn.tavg-al-hxy-u.mon.GLB", + "aerosol.conccn.tpt-u-hs-u.3hr.GLB", + "aerosol.depdust.tavg-u-hxy-u.mon.GLB", + "aerosol.drybc.tavg-u-hxy-u.mon.GLB", + "aerosol.drydust.tavg-u-hxy-u.mon.GLB", + "aerosol.dryno3.tavg-u-hxy-u.mon.GLB", + "aerosol.dryo3.tavg-u-hxy-u.mon.GLB", + "aerosol.dryoa.tavg-u-hxy-u.mon.GLB", + "aerosol.dryso2.tavg-u-hxy-u.mon.GLB", + "aerosol.dryso4.tavg-u-hxy-u.mon.GLB", + "aerosol.dryss.tavg-u-hxy-u.mon.GLB", + "aerosol.ec550aer.tavg-al-hxy-u.mon.GLB", + "aerosol.ec550aer.tpt-u-hxy-u.6hr.GLB", + "aerosol.emiaco.tavg-u-hxy-u.mon.GLB", + "aerosol.emianox.tavg-u-hxy-u.mon.GLB", + "aerosol.emiaoa.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbbc.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbch4.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbco.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbdms.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbnh3.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbnox.tavg-u-hxy-u.mon.GLB", + "aerosol.emibboa.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbso2.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbvoc.tavg-u-hxy-u.mon.GLB", + "aerosol.emibc.tavg-u-hxy-u.mon.GLB", + "aerosol.emibvoc.tavg-u-hxy-u.mon.GLB", + "aerosol.emico.tavg-u-hxy-u.mon.GLB", + "aerosol.emidms.tavg-u-hxy-u.mon.30S-90S", + "aerosol.emidms.tavg-u-hxy-u.mon.GLB", + "aerosol.emidust.tavg-u-hxy-u.mon.GLB", + "aerosol.emiisop.tavg-u-hxy-u.mon.GLB", + "aerosol.emilnox.tavg-al-hxy-u.mon.GLB", + "aerosol.eminh3.tavg-u-hxy-u.mon.GLB", + "aerosol.eminox.tavg-u-hxy-u.mon.GLB", + "aerosol.emioa.tavg-u-hxy-u.mon.GLB", + "aerosol.emiso2.tavg-u-hxy-u.mon.GLB", + "aerosol.emiso4.tavg-u-hxy-u.mon.GLB", + "aerosol.emiss.tavg-u-hxy-u.mon.30S-90S", + "aerosol.emiss.tavg-u-hxy-u.mon.GLB", + "aerosol.emivoc.tavg-u-hxy-u.mon.GLB", + "aerosol.h2o.tavg-al-hxy-u.mon.GLB", + "aerosol.h2o.tavg-p39-hy-air.mon.GLB", + "aerosol.hcfc22.tavg-al-hxy-u.mon.GLB", + "aerosol.hcho.tavg-al-hxy-u.mon.GLB", + "aerosol.hcl.tavg-al-hxy-u.mon.GLB", + "aerosol.hcl.tavg-p39-hy-air.mon.GLB", + "aerosol.hfc125.tavg-al-hxy-u.mon.GLB", + "aerosol.hfc134a.tavg-al-hxy-u.mon.GLB", + "aerosol.hno3.tavg-al-hxy-u.mon.GLB", + "aerosol.hno3.tavg-p39-hy-air.mon.GLB", + "aerosol.ho2.tavg-p39-hy-air.mon.GLB", + "aerosol.isop.tavg-al-hxy-u.mon.GLB", + "aerosol.jno2.tavg-al-hxy-u.mon.GLB", + "aerosol.lossch4.tavg-al-hxy-u.mon.GLB", + "aerosol.lossco.tavg-al-hxy-u.mon.GLB", + "aerosol.lossn2o.tavg-al-hxy-u.mon.GLB", + "aerosol.lwp.tavg-u-hxy-u.mon.GLB", + "aerosol.mmraerh2o.tavg-al-hxy-u.mon.GLB", + "aerosol.mmraerh2o.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmraerh2o.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrbc.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrbc.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrbc.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrbc.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrdust.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrdust.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrdust.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrdust.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrnh4.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrnh4.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrnh4.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrnh4.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrno3.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrno3.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrno3.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrno3.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmroa.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmroa.tavg-al-hxy-u.mon.GLB", + "aerosol.mmroa.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmroa.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrpm1.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrpm1.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrpm2p5.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrpm2p5.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrso4.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrso4.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrso4.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrso4.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrsoa.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrsoa.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrsoa.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrss.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrss.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrss.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrss.tpt-h2m-hs-u.3hr.GLB", + "aerosol.nh50.tavg-al-hxy-u.mon.GLB", + "aerosol.no.tavg-al-hxy-u.mon.GLB", + "aerosol.no2.tavg-al-hxy-u.mon.GLB", + "aerosol.no2.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.noy.tavg-p39-hy-air.mon.GLB", + "aerosol.o3.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.o3.tmax-h2m-hxy-u.day.GLB", + "aerosol.o3loss.tavg-al-hxy-u.mon.GLB", + "aerosol.o3prod.tavg-al-hxy-u.mon.GLB", + "aerosol.od443aer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550aer.tavg-u-hxy-u.day.GLB", + "aerosol.od550aer.tavg-u-hxy-u.mon.30S-90S", + "aerosol.od550aer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550aerh2o.tavg-u-hxy-u.mon.GLB", + "aerosol.od550bb.tavg-u-hxy-u.mon.GLB", + "aerosol.od550bc.tavg-u-hxy-u.mon.GLB", + "aerosol.od550csaer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550dust.tavg-u-hxy-u.mon.GLB", + "aerosol.od550lt1aer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550no3.tavg-u-hxy-u.mon.GLB", + "aerosol.od550oa.tavg-u-hxy-u.mon.GLB", + "aerosol.od550so4.tavg-u-hxy-u.mon.GLB", + "aerosol.od550soa.tavg-u-hxy-u.mon.GLB", + "aerosol.od550ss.tavg-u-hxy-u.mon.GLB", + "aerosol.od865aer.tavg-u-hxy-u.mon.GLB", + "aerosol.oh.tavg-al-hxy-u.mon.GLB", + "aerosol.oh.tavg-p39-hy-air.mon.GLB", + "aerosol.pan.tavg-al-hxy-u.mon.GLB", + "aerosol.photo1d.tavg-al-hxy-u.mon.GLB", + "aerosol.pod0.tsum-u-hxy-u.mon.GLB", + "aerosol.reffccwctop.tavg-u-hxy-cl.mon.GLB", + "aerosol.reffclwtop.tavg-u-hxy-cl.mon.30S-90S", + "aerosol.reffclwtop.tavg-u-hxy-cl.mon.GLB", + "aerosol.rluscsaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rlutaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rlutcsaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rsutaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rsutcsaf.tavg-u-hxy-u.mon.GLB", + "aerosol.sfpm1.tavg-h2m-hxy-u.day.GLB", + "aerosol.sfpm10.tavg-al-hxy-u.mon.30S-90S", + "aerosol.sfpm10.tavg-al-hxy-u.mon.GLB", + "aerosol.sfpm10.tavg-h2m-hxy-u.day.GLB", + "aerosol.sfpm25.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.sfpm25.tavg-h2m-hxy-u.day.GLB", + "aerosol.so2.tavg-al-hxy-u.mon.30S-90S", + "aerosol.so2.tavg-al-hxy-u.mon.GLB", + "aerosol.so2.tavg-h2m-hxy-u.day.GLB", + "aerosol.so2.tpt-h2m-hs-u.3hr.GLB", + "aerosol.tatp.tavg-u-hxy-u.mon.GLB", + "aerosol.toz.tavg-u-hxy-u.day.GLB", + "aerosol.toz.tavg-u-hxy-u.mon.GLB", + "aerosol.tropoz.tavg-u-hxy-u.mon.GLB", + "aerosol.ttop.tavg-u-hxy-cl.mon.GLB", + "aerosol.ua.tavg-10hPa-hxy-air.day.GLB", + "aerosol.vt100.tavg-100hPa-hy-air.mon.GLB", + "aerosol.wa.tavg-al-hxy-u.mon.GLB", + "aerosol.wetbc.tavg-u-hxy-u.mon.GLB", + "aerosol.wetdust.tavg-u-hxy-u.mon.GLB", + "aerosol.wetoa.tavg-u-hxy-u.mon.GLB", + "aerosol.wetso2.tavg-u-hxy-u.mon.GLB", + "aerosol.wetso4.tavg-u-hxy-u.mon.GLB", + "aerosol.wetss.tavg-u-hxy-u.mon.GLB", + "aerosol.zg.tavg-10hPa-hxy-air.day.GLB", + "atmos.albisccp.tavg-u-hxy-cl.day.GLB", + "atmos.albisccp.tavg-u-hxy-cl.mon.30S-90S", + "atmos.albisccp.tavg-u-hxy-cl.mon.GLB", + "atmos.aod550volso4.tavg-u-hxy-u.mon.GLB", + "atmos.bldep.tavg-u-hxy-u.mon.GLB", + "atmos.bldep.tmax-u-hxy-u.day.GLB", + "atmos.bldep.tmin-u-hxy-u.day.GLB", + "atmos.bldep.tpt-u-hxy-u.3hr.GLB", + "atmos.ccb.tavg-u-hxy-ccl.day.GLB", + "atmos.ccb.tavg-u-hxy-ccl.mon.GLB", + "atmos.cct.tavg-u-hxy-ccl.day.GLB", + "atmos.cct.tavg-u-hxy-ccl.mon.GLB", + "atmos.ci.tavg-u-hxy-u.mon.GLB", + "atmos.cl.tavg-al-hxy-u.day.GLB", + "atmos.cl.tavg-al-hxy-u.mon.30S-90S", + "atmos.clc.tavg-al-hxy-u.mon.30S-90S", + "atmos.clc.tavg-al-hxy-u.mon.GLB", + "atmos.clcalipso.tavg-220hPa-hxy-air.day.GLB", + "atmos.clcalipso.tavg-220hPa-hxy-air.mon.30S-90S", + "atmos.clcalipso.tavg-220hPa-hxy-air.mon.GLB", + "atmos.clcalipso.tavg-560hPa-hxy-air.day.GLB", + "atmos.clcalipso.tavg-560hPa-hxy-air.mon.30S-90S", + "atmos.clcalipso.tavg-560hPa-hxy-air.mon.GLB", + "atmos.clcalipso.tavg-840hPa-hxy-air.day.GLB", + "atmos.clcalipso.tavg-840hPa-hxy-air.mon.30S-90S", + "atmos.clcalipso.tavg-840hPa-hxy-air.mon.GLB", + "atmos.clcalipso.tavg-h40-hxy-air.mon.30S-90S", + "atmos.clcalipso.tavg-h40-hxy-air.mon.GLB", + "atmos.cldnci.tavg-u-hxy-cl.mon.GLB", + "atmos.cldncl.tavg-u-hxy-cl.mon.GLB", + "atmos.cldnvi.tavg-u-hxy-u.day.GLB", + "atmos.cldnvi.tavg-u-hxy-u.mon.GLB", + "atmos.cli.tavg-al-hxy-u.day.GLB", + "atmos.cli.tavg-al-hxy-u.mon.30S-90S", + "atmos.clic.tavg-al-hxy-u.mon.30S-90S", + "atmos.clic.tavg-al-hxy-u.mon.GLB", + "atmos.clis.tavg-al-hxy-u.mon.30S-90S", + "atmos.clis.tavg-al-hxy-u.mon.GLB", + "atmos.clisccp.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clisccp.tavg-p7c-hxy-air.mon.GLB", + "atmos.clivi.tavg-u-hxy-u.3hr.GLB", + "atmos.clivi.tavg-u-hxy-u.day.GLB", + "atmos.clivi.tavg-u-hxy-u.mon.30S-90S", + "atmos.clivic.tavg-u-hxy-u.day.GLB", + "atmos.clivimodis.tavg-u-hxy-u.mon.30S-90S", + "atmos.clivimodis.tavg-u-hxy-u.mon.GLB", + "atmos.clmisr.tavg-h16-hxy-air.mon.GLB", + "atmos.clmodis.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clmodis.tavg-p7c-hxy-air.mon.GLB", + "atmos.clmodisice.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clmodisice.tavg-p7c-hxy-air.mon.GLB", + "atmos.clmodisiceReff.tavg-u-hxy-u.mon.GLB", + "atmos.clmodisliquid.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clmodisliquid.tavg-p7c-hxy-air.mon.GLB", + "atmos.clmodisliquidReff.tavg-u-hxy-u.mon.GLB", + "atmos.cls.tavg-al-hxy-u.mon.30S-90S", + "atmos.cls.tavg-al-hxy-u.mon.GLB", + "atmos.clt.tavg-u-hxy-lnd.day.GLB", + "atmos.clt.tavg-u-hxy-u.1hr.30S-90S", + "atmos.clt.tavg-u-hxy-u.3hr.GLB", + "atmos.clt.tavg-u-hxy-u.mon.30S-90S", + "atmos.cltc.tavg-u-hxy-u.mon.GLB", + "atmos.cltcalipso.tavg-u-hxy-u.day.GLB", + "atmos.cltcalipso.tavg-u-hxy-u.mon.30S-90S", + "atmos.cltcalipso.tavg-u-hxy-u.mon.GLB", + "atmos.cltcalipso.tpt-u-hxy-u.3hr.GLB", + "atmos.cltisccp.tavg-u-hxy-u.day.GLB", + "atmos.cltisccp.tavg-u-hxy-u.mon.30S-90S", + "atmos.cltisccp.tavg-u-hxy-u.mon.GLB", + "atmos.cltmodis.tavg-u-hxy-u.mon.30S-90S", + "atmos.cltmodis.tavg-u-hxy-u.mon.GLB", + "atmos.clw.tavg-al-hxy-u.day.GLB", + "atmos.clw.tavg-al-hxy-u.mon.30S-90S", + "atmos.clwc.tavg-al-hxy-u.mon.30S-90S", + "atmos.clwc.tavg-al-hxy-u.mon.GLB", + "atmos.clws.tavg-al-hxy-u.mon.30S-90S", + "atmos.clws.tavg-al-hxy-u.mon.GLB", + "atmos.clwvi.tavg-u-hxy-u.3hr.GLB", + "atmos.clwvi.tavg-u-hxy-u.day.GLB", + "atmos.clwvi.tavg-u-hxy-u.mon.30S-90S", + "atmos.clwvic.tavg-u-hxy-u.day.GLB", + "atmos.clwvimodis.tavg-u-hxy-u.mon.30S-90S", + "atmos.clwvimodis.tavg-u-hxy-u.mon.GLB", + "atmos.co2.tavg-al-hxy-u.mon.GLB", + "atmos.co2.tavg-h2m-hxy-u.mon.GLB", + "atmos.co2.tavg-p19-hxy-air.mon.GLB", + "atmos.co2.tclm-p19-hxy-air.mon.GLB", + "atmos.co2.tclm-u-hm-u.mon.GLB", + "atmos.co23D.tavg-al-hxy-u.mon.GLB", + "atmos.co2mass.tavg-u-hm-u.mon.GLB", + "atmos.dmc.tavg-alh-hxy-u.mon.30S-90S", + "atmos.dmc.tavg-alh-hxy-u.mon.GLB", + "atmos.edt.tavg-al-hxy-u.mon.30S-90S", + "atmos.edt.tavg-al-hxy-u.mon.GLB", + "atmos.epfy.tavg-p39-hy-air.day.GLB", + "atmos.epfy.tavg-p39-hy-air.mon.GLB", + "atmos.epfz.tavg-p39-hy-air.day.GLB", + "atmos.epfz.tavg-p39-hy-air.mon.GLB", + "atmos.evspsbl.tavg-u-hxy-lnd.day.GLB", + "atmos.evu.tavg-al-hxy-u.mon.30S-90S", + "atmos.evu.tavg-al-hxy-u.mon.GLB", + "atmos.fco2antt.tavg-u-hxy-u.mon.GLB", + "atmos.fco2fos.tavg-u-hxy-u.mon.GLB", + "atmos.fco2nat.tavg-u-hxy-u.mon.GLB", + "atmos.hfls.tavg-u-hxy-is.mon.GRL", + "atmos.hfls.tavg-u-hxy-u.3hr.GLB", + "atmos.hfls.tavg-u-hxy-u.day.GLB", + "atmos.hfls.tavg-u-hxy-u.mon.30S-90S", + "atmos.hfss.tavg-u-hxy-u.3hr.GLB", + "atmos.hfss.tavg-u-hxy-u.day.GLB", + "atmos.hfss.tavg-u-hxy-u.mon.30S-90S", + "atmos.hur.tavg-al-hxy-u.mon.30S-90S", + "atmos.hur.tavg-al-hxy-u.mon.GLB", + "atmos.hur.tavg-p19-hxy-air.mon.30S-90S", + "atmos.hurs.tavg-h2m-hxy-u.1hr.30S-90S", + "atmos.hurs.tavg-h2m-hxy-u.mon.30S-90S", + "atmos.hurs.tmax-h2m-hxy-u.day.GLB", + "atmos.hurs.tmin-h2m-hxy-u.day.GLB", + "atmos.hurs.tpt-h2m-hxy-u.3hr.GLB", + "atmos.hus.tavg-al-hxy-u.mon.30S-90S", + "atmos.hus.tavg-al-hxy-u.mon.GLB", + "atmos.hus.tavg-p19-hxy-u.mon.30S-90S", + "atmos.hus.tpt-al-hxy-u.6hr.GLB", + "atmos.hus.tpt-p7h-hxy-air.6hr.GLB", + "atmos.huss.tavg-h2m-hxy-u.6hr.GLB", + "atmos.huss.tavg-h2m-hxy-u.mon.30S-90S", + "atmos.huss.tpt-h2m-hxy-u.1hr.GLB", + "atmos.intuadse.tavg-u-hxy-u.day.GLB", + "atmos.intuadse.tavg-u-hxy-u.mon.GLB", + "atmos.intuaw.tavg-u-hxy-u.day.GLB", + "atmos.intuaw.tavg-u-hxy-u.mon.GLB", + "atmos.intuaw.tpt-u-hxy-u.6hr.GLB", + "atmos.intvadse.tavg-u-hxy-u.day.GLB", + "atmos.intvadse.tavg-u-hxy-u.mon.GLB", + "atmos.intvaw.tavg-u-hxy-u.day.GLB", + "atmos.intvaw.tavg-u-hxy-u.mon.GLB", + "atmos.intvaw.tpt-u-hxy-u.6hr.GLB", + "atmos.loadbc.tavg-u-hxy-u.day.GLB", + "atmos.loadoa.tavg-u-hxy-u.day.GLB", + "atmos.loadpoa.tavg-u-hxy-u.day.GLB", + "atmos.loadso4.tavg-u-hxy-u.mon.GLB", + "atmos.mc.tavg-alh-hxy-u.mon.GLB", + "atmos.mcd.tavg-alh-hxy-u.mon.30S-90S", + "atmos.mcd.tavg-alh-hxy-u.mon.GLB", + "atmos.mcu.tavg-alh-hxy-u.mon.30S-90S", + "atmos.mcu.tavg-alh-hxy-u.mon.GLB", + "atmos.pctisccp.tavg-u-hxy-cl.day.GLB", + "atmos.pctisccp.tavg-u-hxy-cl.mon.30S-90S", + "atmos.pctisccp.tavg-u-hxy-cl.mon.GLB", + "atmos.pfull.tavg-al-hxy-u.day.GLB", + "atmos.pfull.tavg-al-hxy-u.mon.GLB", + "atmos.pfull.tclm-al-hxy-u.mon.30S-90S", + "atmos.pfull.tclm-al-hxy-u.mon.GLB", + "atmos.phalf.tavg-alh-hxy-u.mon.GLB", + "atmos.phalf.tclm-alh-hxy-u.mon.GLB", + "atmos.pr.tavg-u-hxy-u.1hr.30S-90S", + "atmos.pr.tavg-u-hxy-u.mon.30S-90S", + "atmos.pr.tmax-u-hxy-u.day.GLB", + "atmos.pr.tmax-u-hxy-u.mon.GLB", + "atmos.pr.tpt-u-hxy-u.6hr.GLB", + "atmos.pr17O.tavg-u-hxy-u.mon.GLB", + "atmos.pr18O.tavg-u-hxy-u.mon.GLB", + "atmos.pr2h.tavg-u-hxy-u.mon.GLB", + "atmos.prc.tavg-u-hxy-u.day.GLB", + "atmos.prc.tavg-u-hxy-u.mon.30S-90S", + "atmos.prra.tavg-u-hxy-is.mon.GRL", + "atmos.prra.tavg-u-hxy-lnd.day.GLB", + "atmos.prra.tavg-u-hxy-u.6hr.GLB", + "atmos.prra.tavg-u-hxy-u.mon.30S-90S", + "atmos.prra.tavg-u-hxy-u.mon.GLB", + "atmos.prsn.tavg-u-hxy-is.mon.GRL", + "atmos.prsn.tavg-u-hxy-u.3hr.GLB", + "atmos.prsn.tavg-u-hxy-u.6hr.GLB", + "atmos.prsn.tavg-u-hxy-u.day.GLB", + "atmos.prsn.tavg-u-hxy-u.mon.30S-90S", + "atmos.prsn18O.tavg-u-hxy-u.mon.GLB", + "atmos.prsn2h.tavg-u-hxy-u.mon.GLB", + "atmos.prw.tavg-u-hxy-u.3hr.GLB", + "atmos.prw.tavg-u-hxy-u.day.GLB", + "atmos.prw.tavg-u-hxy-u.mon.30S-90S", + "atmos.prw.tpt-u-hxy-u.6hr.GLB", + "atmos.ps.tavg-u-hxy-u.1hr.GLB", + "atmos.ps.tavg-u-hxy-u.6hr.GLB", + "atmos.ps.tavg-u-hxy-u.mon.30S-90S", + "atmos.ps.tpt-u-hxy-u.1hr.30S-90S", + "atmos.ps.tpt-u-hxy-u.3hr.GLB", + "atmos.ps.tpt-u-hxy-u.6hr.GLB", + "atmos.psl.tavg-u-hxy-u.mon.30S-90S", + "atmos.psl.tpt-u-hxy-u.1hr.GLB", + "atmos.psl.tpt-u-hxy-u.6hr.GLB", + "atmos.ptp.tavg-u-hxy-u.mon.GLB", + "atmos.reffcclwtop.tavg-u-hxy-ccl.mon.GLB", + "atmos.reffclic.tavg-al-hxy-ccl.mon.30S-90S", + "atmos.reffclic.tavg-al-hxy-ccl.mon.GLB", + "atmos.reffclis.tavg-al-hxy-scl.mon.30S-90S", + "atmos.reffclis.tavg-al-hxy-scl.mon.GLB", + "atmos.reffclwc.tavg-al-hxy-ccl.mon.30S-90S", + "atmos.reffclwc.tavg-al-hxy-ccl.mon.GLB", + "atmos.reffclws.tavg-al-hxy-scl.mon.30S-90S", + "atmos.reffclws.tavg-al-hxy-scl.mon.GLB", + "atmos.reffsclwtop.tavg-u-hxy-scl.mon.GLB", + "atmos.rld.tavg-alh-hxy-u.mon.GLB", + "atmos.rld4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rldcs.tavg-alh-hxy-u.mon.GLB", + "atmos.rldcs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rlds.tavg-u-hxy-u.1hr.30S-90S", + "atmos.rlds.tavg-u-hxy-u.1hr.GLB", + "atmos.rlds.tavg-u-hxy-u.3hr.GLB", + "atmos.rlds.tavg-u-hxy-u.6hr.GLB", + "atmos.rlds.tavg-u-hxy-u.day.GLB", + "atmos.rlds.tavg-u-hxy-u.mon.30S-90S", + "atmos.rldscs.tavg-u-hxy-u.day.GLB", + "atmos.rldscs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rls.tavg-u-hxy-u.mon.GLB", + "atmos.rlu.tavg-alh-hxy-u.mon.GLB", + "atmos.rlu4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rlucs.tavg-alh-hxy-u.mon.GLB", + "atmos.rlucs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rlus.tavg-u-hxy-u.3hr.GLB", + "atmos.rlus.tavg-u-hxy-u.day.GLB", + "atmos.rlus.tavg-u-hxy-u.mon.30S-90S", + "atmos.rluscs.tavg-u-hxy-u.day.GLB", + "atmos.rlut.tavg-u-hxy-u.3hr.GLB", + "atmos.rlut.tavg-u-hxy-u.day.GLB", + "atmos.rlut.tavg-u-hxy-u.mon.30S-90S", + "atmos.rlut4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rlutcs.tavg-u-hxy-u.3hr.GLB", + "atmos.rlutcs.tavg-u-hxy-u.day.GLB", + "atmos.rlutcs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rlutcs4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rsd.tavg-alh-hxy-u.mon.GLB", + "atmos.rsd4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsdcs.tavg-alh-hxy-u.mon.GLB", + "atmos.rsdcs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsds.tavg-u-hxy-u.1hr.30S-90S", + "atmos.rsds.tavg-u-hxy-u.1hr.GLB", + "atmos.rsds.tavg-u-hxy-u.3hr.GLB", + "atmos.rsds.tavg-u-hxy-u.6hr.GLB", + "atmos.rsds.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsdscs.tavg-u-hxy-u.day.GLB", + "atmos.rsdscs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsdt.tavg-u-hxy-u.day.GLB", + "atmos.rsdt.tavg-u-hxy-u.mon.30S-90S", + "atmos.rss.tavg-u-hxy-u.mon.GLB", + "atmos.rsu.tavg-alh-hxy-u.mon.GLB", + "atmos.rsu4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsucs.tavg-alh-hxy-u.mon.GLB", + "atmos.rsucs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsus.tavg-u-hxy-u.3hr.GLB", + "atmos.rsus.tavg-u-hxy-u.day.GLB", + "atmos.rsus.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsuscs.tavg-u-hxy-u.day.GLB", + "atmos.rsuscs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsut.tavg-u-hxy-u.3hr.GLB", + "atmos.rsut.tavg-u-hxy-u.day.GLB", + "atmos.rsut.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsut4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rsutcs.tavg-u-hxy-u.3hr.GLB", + "atmos.rsutcs.tavg-u-hxy-u.day.GLB", + "atmos.rsutcs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsutcs4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rtmt.tavg-u-hxy-u.mon.GLB", + "atmos.rv850.tpt-850hPa-hxy-air.6hr.GLB", + "atmos.sci.tavg-u-hxy-u.mon.GLB", + "atmos.scldncl.tavg-u-hxy-scl.mon.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.1hr.30S-90S", + "atmos.sfcWind.tavg-h10m-hxy-u.6hr.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.mon.30S-90S", + "atmos.sfcWind.tmax-h10m-hxy-u.day.GLB", + "atmos.sfcWind.tmaxavg-h10m-hxy-u.mon.GLB", + "atmos.smc.tavg-alh-hxy-u.mon.GLB", + "atmos.ta.tavg-700hPa-hxy-air.day.GLB", + "atmos.ta.tavg-850hPa-hxy-air.day.GLB", + "atmos.ta.tavg-al-hxy-u.mon.30S-90S", + "atmos.ta.tavg-al-hxy-u.mon.GLB", + "atmos.ta.tavg-p19-hxy-air.mon.30S-90S", + "atmos.ta.tavg-p39-hy-air.day.GLB", + "atmos.ta.tavg-p39-hy-air.mon.GLB", + "atmos.ta.tpt-al-hxy-u.6hr.GLB", + "atmos.ta.tpt-p5u-hxy-u.6hr.GLB", + "atmos.ta.tpt-p7h-hxy-air.6hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.1hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.6hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.mon.30S-90S", + "atmos.tas.tmaxavg-h2m-hxy-u.mon.30S-90S", + "atmos.tas.tminavg-h2m-hxy-u.mon.30S-90S", + "atmos.tauu.tavg-u-hxy-u.day.GLB", + "atmos.tauunoegw.tavg-p39-hy-air.day.GLB", + "atmos.tauunowgw.tavg-p39-hy-air.day.GLB", + "atmos.tauuogw.tavg-p39-hy-air.day.GLB", + "atmos.tauv.tavg-u-hxy-u.day.GLB", + "atmos.tauvnogw.tavg-p39-hy-air.day.GLB", + "atmos.tauvogw.tavg-p39-hy-air.day.GLB", + "atmos.tdps.tavg-h2m-hxy-u.mon.GLB", + "atmos.tnhus.tavg-al-hxy-u.mon.GLB", + "atmos.tnhusa.tavg-al-hxy-u.mon.GLB", + "atmos.tnhusc.tavg-al-hxy-u.mon.GLB", + "atmos.tnhusd.tavg-al-hxy-u.mon.GLB", + "atmos.tnhusmp.tavg-al-hxy-u.mon.GLB", + "atmos.tnhuspbl.tavg-al-hxy-u.mon.GLB", + "atmos.tnhusscp.tavg-al-hxy-u.mon.GLB", + "atmos.tnhusscpbl.tavg-al-hxy-u.mon.GLB", + "atmos.tnt.tavg-al-hxy-u.mon.GLB", + "atmos.tnta.tavg-al-hxy-u.mon.GLB", + "atmos.tntc.tavg-al-hxy-u.mon.GLB", + "atmos.tntd.tavg-al-hxy-u.mon.GLB", + "atmos.tntmp.tavg-al-hxy-u.mon.GLB", + "atmos.tntmp.tavg-p39-hy-air.day.GLB", + "atmos.tntmp.tavg-p39-hy-air.mon.GLB", + "atmos.tntpbl.tavg-al-hxy-u.mon.GLB", + "atmos.tntr.tavg-al-hxy-u.mon.GLB", + "atmos.tntrl.tavg-al-hxy-u.mon.GLB", + "atmos.tntrl.tavg-p39-hy-air.day.GLB", + "atmos.tntrl.tavg-p39-hy-air.mon.GLB", + "atmos.tntrlcs.tavg-al-hxy-u.mon.GLB", + "atmos.tntrs.tavg-al-hxy-u.mon.GLB", + "atmos.tntrs.tavg-p39-hy-air.day.GLB", + "atmos.tntrs.tavg-p39-hy-air.mon.GLB", + "atmos.tntrscs.tavg-al-hxy-u.mon.GLB", + "atmos.tntscp.tavg-al-hxy-u.mon.GLB", + "atmos.tntscpbl.tavg-al-hxy-u.mon.GLB", + "atmos.ts.tavg-u-hxy-u.6hr.GLB", + "atmos.ts.tavg-u-hxy-u.day.GLB", + "atmos.ts.tavg-u-hxy-u.mon.30S-90S", + "atmos.ts.tpt-u-hxy-u.3hr.GLB", + "atmos.ts.tpt-u-hxy-u.6hr.GLB", + "atmos.ua.tavg-al-hxy-u.mon.GLB", + "atmos.ua.tavg-p19-hxy-air.mon.30S-90S", + "atmos.ua.tavg-p39-hy-air.day.GLB", + "atmos.ua.tavg-p39-hy-air.mon.GLB", + "atmos.ua.tpt-al-hxy-u.6hr.GLB", + "atmos.ua.tpt-h100m-hxy-u.1hr.GLB", + "atmos.ua.tpt-p5u-hxy-air.6hr.GLB", + "atmos.ua.tpt-p7h-hxy-air.6hr.GLB", + "atmos.uas.tavg-h10m-hxy-u.mon.30S-90S", + "atmos.uas.tpt-h10m-hxy-u.1hr.GLB", + "atmos.uas.tpt-h10m-hxy-u.6hr.GLB", + "atmos.utendepfd.tavg-p39-hy-air.day.GLB", + "atmos.utendepfd.tavg-p39-hy-air.mon.GLB", + "atmos.utendnogw.tavg-p39-hy-air.day.GLB", + "atmos.utendnogw.tavg-p39-hy-air.mon.GLB", + "atmos.utendogw.tavg-p39-hy-air.day.GLB", + "atmos.utendogw.tavg-p39-hy-air.mon.GLB", + "atmos.utendvtem.tavg-p39-hy-air.day.GLB", + "atmos.utendwtem.tavg-p39-hy-air.day.GLB", + "atmos.va.tavg-al-hxy-u.mon.GLB", + "atmos.va.tavg-p19-hxy-air.mon.30S-90S", + "atmos.va.tavg-p39-hy-air.mon.GLB", + "atmos.va.tpt-al-hxy-u.6hr.GLB", + "atmos.va.tpt-h100m-hxy-u.1hr.GLB", + "atmos.va.tpt-p5u-hxy-air.6hr.GLB", + "atmos.va.tpt-p7h-hxy-air.6hr.GLB", + "atmos.vas.tavg-h10m-hxy-u.mon.30S-90S", + "atmos.vas.tpt-h10m-hxy-u.1hr.GLB", + "atmos.vas.tpt-h10m-hxy-u.6hr.GLB", + "atmos.vtem.tavg-p39-hy-air.day.GLB", + "atmos.vtem.tavg-p39-hy-air.mon.GLB", + "atmos.wap.tavg-500hPa-hxy-air.day.GLB", + "atmos.wap.tavg-p19-hxy-air.mon.30S-90S", + "atmos.wsg.tmax-h100m-hxy-u.1hr.GLB", + "atmos.wsg.tmax-h10m-hxy-u.1hr.GLB", + "atmos.wtem.tavg-p39-hy-air.day.GLB", + "atmos.wtem.tavg-p39-hy-air.mon.GLB", + "atmos.zg.tavg-1000hPa-hxy-air.day.GLB", + "atmos.zg.tavg-500hPa-hxy-air.day.GLB", + "atmos.zg.tavg-al-hxy-u.mon.GLB", + "atmos.zg.tavg-p19-hxy-air.mon.30S-90S", + "atmos.zg.tavg-p39-hy-air.day.GLB", + "atmos.zg.tavg-p39-hy-air.mon.GLB", + "atmos.zg.tpt-500hPa-hxy-air.6hr.GLB", + "atmos.zg.tpt-al-hxy-u.6hr.GLB", + "atmos.zg.tpt-p3-hxy-air.6hr.GLB", + "atmos.zg.tpt-p7h-hxy-air.6hr.GLB", + "atmos.ztp.tavg-u-hxy-u.mon.GLB", + "atmosChem.c2h4.tavg-al-hxy-u.mon.GLB", + "atmosChem.c2h5oh.tavg-al-hxy-u.mon.GLB", + "atmosChem.c4h10.tavg-al-hxy-u.mon.GLB", + "atmosChem.cfc11.tavg-u-hm-u.mon.GLB", + "atmosChem.cfc113.tavg-u-hm-u.mon.GLB", + "atmosChem.cfc12.tavg-u-hm-u.mon.GLB", + "atmosChem.ch3oh.tavg-al-hxy-u.mon.GLB", + "atmosChem.ch4.tavg-al-hxy-u.mon.GLB", + "atmosChem.ch4.tavg-p19-hxy-air.mon.GLB", + "atmosChem.ch4.tavg-p39-hy-air.mon.GLB", + "atmosChem.ch4.tavg-u-hm-u.mon.GLB", + "atmosChem.ch4.tclm-p19-hxy-air.mon.GLB", + "atmosChem.ch4.tclm-u-hm-u.mon.GLB", + "atmosChem.ch4losssoil.tavg-u-hxy-u.mon.GLB", + "atmosChem.ch4ref.ti-al-hxy-u.fx.GLB", + "atmosChem.chegph2oo1d.tavg-al-hxy-u.mon.GLB", + "atmosChem.chepnh4.tavg-al-hxy-u.mon.GLB", + "atmosChem.chepno3.tavg-al-hxy-u.mon.GLB", + "atmosChem.dms.tavg-al-hxy-u.mon.30S-90S", + "atmosChem.dms.tavg-al-hxy-u.mon.GLB", + "atmosChem.do3chm.tavg-al-hxy-u.mon.GLB", + "atmosChem.dryh2.tavg-u-hxy-u.mon.GLB", + "atmosChem.dryhno3.tavg-u-hxy-u.mon.GLB", + "atmosChem.drynh3.tavg-u-hxy-u.mon.GLB", + "atmosChem.drynh4.tavg-u-hxy-u.mon.GLB", + "atmosChem.drynoy.tavg-u-hxy-u.mon.GLB", + "atmosChem.e90inst.tpt-al-hxy-u.mon.GLB", + "atmosChem.emiach4.tavg-u-hxy-u.mon.GLB", + "atmosChem.emiavnox.tavg-al-hxy-u.mon.GLB", + "atmosChem.emic2h4.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic2h5oh.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic2h6.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic3h6.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic3h8.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic4h10.tavg-u-hxy-u.mon.GLB", + "atmosChem.emich3oh.tavg-u-hxy-u.mon.GLB", + "atmosChem.emich4.tavg-u-hxy-u.mon.GLB", + "atmosChem.emih2.tavg-u-hxy-u.mon.GLB", + "atmosChem.emilkch4.tavg-u-hxy-u.mon.GLB", + "atmosChem.h2.tavg-al-hxy-u.mon.GLB", + "atmosChem.h2loss.tavg-al-hxy-u.mon.GLB", + "atmosChem.h2prod.tavg-al-hxy-u.mon.GLB", + "atmosChem.hcfc22.tavg-u-hm-u.mon.GLB", + "atmosChem.meanage.tavg-al-hxy-u.mon.GLB", + "atmosChem.meanage.tavg-p39-hy-air.mon.GLB", + "atmosChem.n2o.tavg-al-hxy-u.mon.GLB", + "atmosChem.n2o.tavg-p19-hxy-air.mon.GLB", + "atmosChem.n2o.tavg-p39-hy-air.mon.GLB", + "atmosChem.n2o.tavg-u-hm-u.mon.GLB", + "atmosChem.n2o.tclm-p19-hxy-air.mon.GLB", + "atmosChem.n2o.tclm-u-hm-u.mon.GLB", + "atmosChem.o3.tavg-al-hxy-u.mon.GLB", + "atmosChem.o3.tavg-p19-hxy-air.mon.GLB", + "atmosChem.o3.tavg-p39-hy-air.mon.GLB", + "atmosChem.o3.tclm-p19-hxy-air.mon.GLB", + "atmosChem.o3.tpt-al-hxy-u.mon.GLB", + "atmosChem.o3ref.tclm-al-hxy-u.fx.GLB", + "atmosChem.o3ref.ti-al-hxy-u.fx.GLB", + "atmosChem.o3ste.tavg-al-hxy-u.mon.GLB", + "atmosChem.rlutch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rlutcsch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rlutcso3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rluto3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsutch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsutcsch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsutcso3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsuto3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.stratch4loss.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropch4loss.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropch4lossoh.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropdo3chm.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropo3ste.tavg-al-hxy-u.mon.GLB", + "atmosChem.wethno3.tavg-al-hxy-u.mon.GLB", + "atmosChem.wetnh3.tavg-u-hxy-u.mon.GLB", + "atmosChem.wetnh4.tavg-u-hxy-u.mon.GLB", + "atmosChem.wetno3.tavg-al-hxy-u.mon.GLB", + "atmosChem.wetnoy.tavg-u-hxy-u.mon.GLB", + "land.albc.tavg-u-hxy-veg.mon.GLB", + "land.areacellr.ti-u-hxy-u.fx.GLB", + "land.baresoilFrac.tavg-u-hxy-u.mon.GLB", + "land.burntFractionAll.tavg-u-hxy-u.mon.GLB", + "land.cGeologicStorage.tavg-u-hxy-u.mon.GLB", + "land.cLand.tavg-u-hxy-lnd.mon.GLB", + "land.cLeaf.tavg-u-hxy-lnd.mon.GLB", + "land.cLitter.tavg-u-hxy-lnd.mon.GLB", + "land.cnc.tavg-u-hxy-u.mon.GLB", + "land.cProduct.tavg-u-hxy-lnd.mon.GLB", + "land.cRoot.tavg-u-hxy-lnd.mon.GLB", + "land.cropFrac.tavg-u-hxy-u.mon.GLB", + "land.cSoil.tavg-d100cm-hxy-lnd.mon.GLB", + "land.cSoil.tavg-sl-hxy-lnd.mon.GLB", + "land.cSoil.tavg-u-hxy-lnd.mon.GLB", + "land.cStem.tavg-u-hxy-lnd.mon.GLB", + "land.cVeg.tavg-u-hxy-lnd.mon.GLB", + "land.dcw.tavg-u-hxy-lnd.day.GLB", + "land.depthl.ti-u-hxy-u.fx.GLB", + "land.depthsl.ti-u-hxy-u.fx.GLB", + "land.dslw.tavg-u-hxy-lnd.day.GLB", + "land.evspsblpot.tavg-u-hxy-lnd.day.GLB", + "land.evspsblpot.tavg-u-hxy-lnd.mon.GLB", + "land.evspsblsoi.tavg-u-hxy-u.day.GLB", + "land.evspsblveg.tavg-u-hxy-u.day.GLB", + "land.fAnthDisturb.tavg-u-hxy-lnd.mon.GLB", + "land.fBNF.tavg-u-hxy-lnd.mon.GLB", + "land.fCLandToOcean.tavg-u-hxy-lnd.mon.GLB", + "land.fDeforestToAtmos.tavg-u-hxy-lnd.mon.GLB", + "land.fDeforestToProduct.tavg-u-hxy-lnd.mon.GLB", + "land.fFire.tavg-u-hxy-lnd.mon.GLB", + "land.fFireAll.tavg-u-hxy-lnd.mon.GLB", + "land.fFireNat.tavg-u-hxy-lnd.mon.GLB", + "land.fHarvestToAtmos.tavg-u-hxy-lnd.mon.GLB", + "land.fHarvestToGeologicStorage.tavg-u-hxy-lnd.mon.GLB", + "land.fHarvestToProduct.tavg-u-hxy-lnd.mon.GLB", + "land.fLitterSoil.tavg-u-hxy-lnd.mon.GLB", + "land.fLuc.tavg-u-hxy-lnd.mon.GLB", + "land.fN2O.tavg-u-hxy-lnd.mon.GLB", + "land.fNAnthDisturb.tavg-u-hxy-lnd.mon.GLB", + "land.fNdep.tavg-u-hxy-lnd.mon.GLB", + "land.fNfert.tavg-u-hxy-lnd.mon.GLB", + "land.fNgas.tavg-u-hxy-lnd.mon.GLB", + "land.fNgasFire.tavg-u-hxy-lnd.mon.GLB", + "land.fNLandToOcean.tavg-u-hxy-lnd.mon.GLB", + "land.fNleach.tavg-u-hxy-lnd.mon.GLB", + "land.fNLitterSoil.tavg-u-hxy-lnd.mon.GLB", + "land.fNloss.tavg-u-hxy-lnd.mon.GLB", + "land.fNnetmin.tavg-u-hxy-lnd.mon.GLB", + "land.fNOx.tavg-u-hxy-lnd.mon.GLB", + "land.fNProduct.tavg-u-hxy-lnd.mon.GLB", + "land.fNup.tavg-u-hxy-lnd.mon.GLB", + "land.fNVegLitter.tavg-u-hxy-lnd.mon.GLB", + "land.fNVegSoil.tavg-u-hxy-lnd.mon.GLB", + "land.fProductDecomp.tavg-u-hxy-lnd.mon.GLB", + "land.fVegLitter.tavg-u-hxy-lnd.mon.GLB", + "land.fVegSoil.tavg-u-hxy-lnd.mon.GLB", + "land.gpp.tavg-u-hxy-lnd.mon.GLB", + "land.gppVgt.tavg-u-hxy-multi.day.GLB", + "land.grassFrac.tavg-u-hxy-u.mon.GLB", + "land.laiVgt.tavg-u-hxy-multi.day.GLB", + "land.landCoverFrac.tavg-u-hxy-u.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.day.GLB", + "land.mrrob.tavg-u-hxy-lnd.day.GLB", + "land.mrros.tavg-u-hxy-lnd.day.GLB", + "land.mrsfl.tavg-sl-hxy-lnd.day.GLB", + "land.mrsfl.tavg-sl-hxy-lnd.mon.GLB", + "land.mrsll.tavg-sl-hxy-lnd.day.GLB", + "land.mrsll.tavg-sl-hxy-lnd.mon.GLB", + "land.mrso.tavg-u-hxy-lnd.day.GLB", + "land.mrsol.tavg-d10cm-hxy-lnd.day.GLB", + "land.mrsol.tavg-sl-hxy-lnd.day.GLB", + "land.mrsol.tavg-sl-hxy-lnd.mon.GLB", + "land.mrsol.tpt-d10cm-hxy-lnd.3hr.GLB", + "land.mrsow.tavg-u-hxy-lnd.day.GLB", + "land.mrtws.tavg-u-hxy-lnd.day.GLB", + "land.mrtws.tavg-u-hxy-lnd.mon.GLB", + "land.nbp.tavg-u-hxy-lnd.mon.GLB", + "land.nep.tavg-u-hxy-lnd.mon.GLB", + "land.nLand.tavg-u-hxy-lnd.mon.GLB", + "land.nLitter.tavg-u-hxy-lnd.mon.GLB", + "land.nMineral.tavg-u-hxy-lnd.mon.GLB", + "land.npp.tavg-u-hxy-lnd.mon.GLB", + "land.nProduct.tavg-u-hxy-lnd.mon.GLB", + "land.nSoil.tavg-u-hxy-lnd.mon.GLB", + "land.nVeg.tavg-u-hxy-lnd.mon.GLB", + "land.orog.ti-u-hxy-u.fx.30S-90S", + "land.pastureFrac.tavg-u-hxy-u.mon.GLB", + "land.prveg.tavg-u-hxy-lnd.mon.GLB", + "land.ra.tavg-u-hxy-lnd.mon.GLB", + "land.residualFrac.tavg-u-hxy-u.mon.GLB", + "land.rh.tavg-u-hxy-lnd.mon.GLB", + "land.rivi.tavg-u-hxy-lnd.day.GLB", + "land.rivo.tavg-u-hxy-lnd.day.GLB", + "land.rsds.tavg-u-hxy-lnd.mon.GLB", + "land.rsds.tavg-u-hxy-sn.mon.GLB", + "land.rsus.tavg-u-hxy-lnd.mon.GLB", + "land.rsus.tavg-u-hxy-sn.mon.GLB", + "land.sftgif.tavg-u-hxy-u.mon.GLB", + "land.sftlaf.ti-u-hxy-u.fx.GLB", + "land.shrubFrac.tavg-u-hxy-u.mon.GLB", + "land.srfrad.tavg-u-hxy-u.3hr.GLB", + "land.tas.tavg-u-hxy-u.1hr.30S-90S", + "land.tas.tavg-u-hxy-u.1hr.GLB", + "land.tran.tavg-u-hxy-lnd.mon.GLB", + "land.treeFrac.tavg-u-hxy-u.mon.GLB", + "land.tsl.tavg-sl-hxy-lnd.day.GLB", + "land.tsl.tavg-sl-hxy-lnd.mon.GLB", + "land.tslsi.tavg-u-hxy-u.day.GLB", + "land.tslsi.tpt-u-hxy-lsi.3hr.GLB", + "land.vegFrac.tavg-u-hxy-u.mon.GLB", + "land.vegHeight.tavg-u-hxy-tree.mon.GLB", + "land.vegHeight.tavg-u-hxy-veg.mon.GLB", + "land.wetlandCH4.tavg-u-hxy-lnd.mon.GLB", + "land.wtd.tavg-u-hxy-lnd.day.GLB", + "landIce.acabf.tavg-u-hxy-is.mon.GLB", + "landIce.hfdsn.tavg-u-hxy-lnd.mon.GLB", + "landIce.hfgeoubed.ti-u-hxy-gis.fx.GRL", + "landIce.hfls.tavg-u-hxy-is.mon.GLB", + "landIce.hfss.tavg-u-hxy-is.mon.GLB", + "landIce.icem.tavg-u-hxy-is.mon.GLB", + "landIce.litemptop.tavg-u-hxy-is.mon.GLB", + "landIce.lithk.ti-u-hxy-is.fx.GRL", + "landIce.lithk.ti-u-hxy-u.fx.GLB", + "landIce.mrro.tavg-u-hxy-is.mon.GLB", + "landIce.orog.tavg-u-hxy-is.mon.GLB", + "landIce.pflw.tavg-u-hxy-lnd.mon.GLB", + "landIce.prra.tavg-u-hxy-is.mon.GLB", + "landIce.prsn.tavg-u-hxy-is.mon.GLB", + "landIce.rlds.tavg-u-hxy-is.mon.GLB", + "landIce.rlus.tavg-u-hxy-is.mon.GLB", + "landIce.rsds.tavg-u-hxy-is.mon.GLB", + "landIce.rsus.tavg-u-hxy-is.mon.GLB", + "landIce.sbl.tavg-u-hxy-is.mon.GLB", + "landIce.sbl.tavg-u-hxy-lnd.mon.GLB", + "landIce.sbl.tavg-u-hxy-u.mon.GLB", + "landIce.sftflf.tavg-u-hxy-u.mon.GLB", + "landIce.sftflf.ti-u-hxy-u.fx.GLB", + "landIce.sftgrf.tavg-u-hxy-u.mon.GLB", + "landIce.sftgrf.ti-u-hxy-u.fx.GLB", + "landIce.snc.tavg-u-hxy-is.mon.GLB", + "landIce.snc.tavg-u-hxy-lnd.day.GLB", + "landIce.snd.tavg-u-hxy-lnd.mon.GLB", + "landIce.snicem.tavg-u-hxy-is.mon.GLB", + "landIce.snicem.tavg-u-hxy-is.mon.GRL", + "landIce.snm.tavg-u-hxy-is.mon.GLB", + "landIce.snm.tavg-u-hxy-lnd.mon.GLB", + "landIce.snrefr.tavg-u-hxy-is.mon.GLB", + "landIce.snw.tavg-u-hxy-lnd.day.GLB", + "landIce.sootsn.tavg-u-hxy-lnd.mon.GLB", + "landIce.tas.tavg-u-hxy-is.mon.GLB", + "landIce.topg.ti-u-hxy-gis.fx.GRL", + "landIce.tpf.tavg-u-hxy-lnd.mon.GLB", + "landIce.ts.tavg-u-hxy-is.mon.GLB", + "landIce.tsn.tavg-u-hxy-is.mon.GLB", + "landIce.tsn.tavg-u-hxy-lnd.mon.GLB", + "ocean.absscint.tavg-op4-hxy-sea.mon.GLB", + "ocean.agessc.tavg-ol-hxy-sea.mon.GLB", + "ocean.bigthetao.tavg-ol-hm-sea.mon.GLB", + "ocean.bigthetao.tavg-ol-hxy-sea.dec.GLB", + "ocean.bigthetao.tavg-op20bar-hxy-sea.day.GLB", + "ocean.chcint.tavg-op4-hxy-sea.mon.GLB", + "ocean.ficeberg.tavg-ol-hxy-sea.3hr.GLB", + "ocean.ficeberg.tavg-ol-hxy-sea.mon.GLB", + "ocean.ficeberg.tavg-u-hxy-sea.mon.GLB", + "ocean.flandice.tavg-u-hxy-sea.3hr.GLB", + "ocean.flandice.tavg-u-hxy-sea.mon.GLB", + "ocean.friver.tavg-u-hxy-sea.3hr.GLB", + "ocean.friver.tavg-u-hxy-sea.mon.GLB", + "ocean.hfbasin.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpmadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpmdiff.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpsmadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfds.tavg-u-hxy-sea.3hr.GLB", + "ocean.hfds.tavg-u-hxy-sea.mon.30S-90S", + "ocean.hfgeou.tavg-u-hxy-sea.mon.GLB", + "ocean.hfrunoffds.tavg-ol-hxy-sea.3hr.GLB", + "ocean.hfx.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfx.tavg-u-hxy-sea.day.GLB", + "ocean.hfx.tavg-u-hxy-sea.mon.GLB", + "ocean.hfy.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfy.tavg-u-hxy-sea.day.GLB", + "ocean.hfy.tavg-u-hxy-sea.mon.GLB", + "ocean.htovgyre.tavg-u-hyb-sea.mon.GLB", + "ocean.htovovrt.tavg-u-hyb-sea.mon.GLB", + "ocean.masscello.tavg-ol-hxy-sea.dec.GLB", + "ocean.masso.tavg-u-hm-sea.dec.GLB", + "ocean.masso.tavg-u-hm-sea.mon.GLB", + "ocean.mlotst.tavg-u-hxy-sea.day.GLB", + "ocean.mlotst.tavg-u-hxy-sea.mon.30S-90S", + "ocean.mlotst.tmax-u-hxy-sea.mon.GLB", + "ocean.mlotst.tmin-u-hxy-sea.mon.GLB", + "ocean.mpw.tavg-u-hxy-sea.mon.GLB", + "ocean.mpw.tpt-u-hxy-sea.3hr.GLB", + "ocean.mpwswell.tavg-u-hxy-sea.mon.GLB", + "ocean.mpwswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.mpwwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.mpwwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.msftbarot.tavg-u-hxy-sea.mon.GLB", + "ocean.msftm.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftm.tavg-rho-hyb-sea.mon.GLB", + "ocean.msfty.tavg-ol-ht-sea.mon.GLB", + "ocean.msfty.tavg-rho-ht-sea.mon.GLB", + "ocean.obvfsq.tavg-ol-hxy-sea.mon.GLB", + "ocean.opottemptend.tavg-ol-hxy-sea.yr.GLB", + "ocean.pbo.tavg-u-hxy-sea.mon.GLB", + "ocean.pfscint.tavg-op4-hxy-sea.mon.GLB", + "ocean.phcint.tavg-op4-hxy-sea.mon.GLB", + "ocean.pso.tavg-u-hxy-sea.mon.GLB", + "ocean.rsds.tavg-u-hxy-ifs.mon.GLB", + "ocean.rsntds.tavg-u-hxy-sea.3hr.GLB", + "ocean.rsus.tavg-u-hxy-ifs.mon.GLB", + "ocean.scint.tavg-op4-hxy-sea.mon.GLB", + "ocean.sduo.tavg-u-hxy-sea.mon.GLB", + "ocean.sduo.tpt-u-hxy-sea.3hr.GLB", + "ocean.sdvo.tavg-u-hxy-sea.mon.GLB", + "ocean.sdvo.tpt-u-hxy-sea.3hr.GLB", + "ocean.sfdsi.tavg-u-hxy-sea.3hr.GLB", + "ocean.sfx.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfx.tavg-u-hxy-sea.mon.GLB", + "ocean.sfy.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfy.tavg-u-hxy-sea.mon.GLB", + "ocean.sltbasin.tavg-u-hyb-sea.mon.GLB", + "ocean.sltovgyre.tavg-u-hyb-sea.mon.GLB", + "ocean.sltovovrt.tavg-u-hyb-sea.mon.GLB", + "ocean.so.tavg-ol-hm-sea.mon.GLB", + "ocean.so.tavg-ol-hxy-sea.dec.GLB", + "ocean.so.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.sob.tavg-u-hxy-sea.mon.GLB", + "ocean.sos.tavg-u-hm-sea.mon.30S-90S", + "ocean.sos.tavg-u-hm-sea.mon.GLB", + "ocean.sw17O.tavg-ol-hxy-sea.mon.GLB", + "ocean.sw18O.tavg-ol-hxy-sea.mon.GLB", + "ocean.sw2H.tavg-ol-hxy-sea.mon.GLB", + "ocean.swh.tavg-u-hxy-sea.mon.GLB", + "ocean.swh.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhmax.tmax-u-hxy-sea.mon.GLB", + "ocean.swhmax.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhswell.tavg-u-hxy-sea.mon.GLB", + "ocean.swhswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.swhwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.t20d.tavg-u-hxy-sea.mon.GLB", + "ocean.tauuo.tavg-u-hxy-sea.3hr.GLB", + "ocean.tauuo.tavg-u-hxy-sea.dec.GLB", + "ocean.tauvo.tavg-u-hxy-sea.3hr.GLB", + "ocean.tauvo.tavg-u-hxy-sea.dec.GLB", + "ocean.thetao.tavg-d2000m-hxy-sea.mon.GLB", + "ocean.thetao.tavg-d300m-hxy-sea.mon.GLB", + "ocean.thetao.tavg-d700m-hxy-sea.mon.GLB", + "ocean.thetao.tavg-ol-hm-sea.mon.GLB", + "ocean.thetao.tavg-ol-hxy-sea.dec.GLB", + "ocean.thetao.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.thetao.tavg-op20bar-hxy-sea.day.GLB", + "ocean.thetaot.tavg-u-hxy-sea.mon.GLB", + "ocean.thkcello.tavg-ol-hxy-sea.dec.GLB", + "ocean.tob.tavg-u-hxy-sea.mon.GLB", + "ocean.tos.tavg-u-hm-sea.mon.GLB", + "ocean.tos.tavg-u-hxy-sea.mon.30S-90S", + "ocean.tos.tpt-u-hxy-sea.3hr.GLB", + "ocean.tossq.tavg-u-hxy-sea.day.GLB", + "ocean.umo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.uo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.uos.tavg-u-hxy-sea.day.GLB", + "ocean.vmo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.vo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.volcello.tavg-ol-hxy-sea.dec.GLB", + "ocean.volcello.tavg-ol-hxy-sea.mon.GLB", + "ocean.volcello.tavg-ol-hxy-sea.yr.GLB", + "ocean.volcello.ti-ol-hxy-sea.fx.GLB", + "ocean.volo.tavg-u-hm-sea.dec.GLB", + "ocean.volo.tavg-u-hm-sea.mon.GLB", + "ocean.vos.tavg-u-hxy-sea.day.GLB", + "ocean.vsf.tavg-u-hxy-sea.mon.GLB", + "ocean.wdir.tavg-u-hxy-sea.mon.GLB", + "ocean.wdir.tpt-u-hxy-sea.3hr.GLB", + "ocean.wdirswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wdirswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wdirwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wdirwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.wfcorr.tavg-u-hxy-sea.mon.GLB", + "ocean.wfo.tavg-u-hxy-sea.3hr.GLB", + "ocean.wfo.tavg-u-hxy-sea.mon.GLB", + "ocean.wmo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.wo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.wpdir.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdir.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpdirswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdirswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpdirwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdirwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpp.tavg-u-hxy-sea.mon.GLB", + "ocean.wpp.tpt-u-hxy-sea.3hr.GLB", + "ocean.wppswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wppswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wppwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wppwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.zfullo.tavg-ol-hxy-sea.yr.GLB", + "ocean.zos.tavg-u-hxy-sea.mon.30S-90S", + "ocean.zossq.tavg-u-hxy-sea.mon.GLB", + "ocean.zostoga.tavg-u-hm-sea.day.GLB", + "ocnBgchem.bacc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.calc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chl.tavg-d0m-hxy-sea.day.GLB", + "ocnBgchem.chl.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chl.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.chl.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chlcalc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chldiat.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chldiat.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chldiaz.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chldiaz.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chlmisc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chlmisc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chlpico.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chlpico.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.detoc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dfe.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.dfe.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.dfe.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissic.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.dissic.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissoc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dmso.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.dmso.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.dpco2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.dpo2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.expc.tavg-d1000m-hxy-sea.mon.GLB", + "ocnBgchem.expc.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.expc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.expcalc.tavg-d1000m-hxy-sea.mon.GLB", + "ocnBgchem.expcalc.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.expcalc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.fgco2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fric.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.froc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fsfe.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fsn.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.graz.tavg-ol-hxy-sea.mon.30S-90S", + "ocnBgchem.graz.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.icfriver.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intdic.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intdoc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intparag.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbfe.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbn.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbp.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbsi.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpcalcite.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpn2.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpoc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpp.tavg-u-hxy-sea.day.GLB", + "ocnBgchem.intpp.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpp.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppcalc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppdiat.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppdiaz.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppmisc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppnitrate.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpppico.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.nh4.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.nh4.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.no3.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.no3.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.o2.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.ocfriver.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.ph.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.ph.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phyc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phyc.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.phyc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phycalc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phycalc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phydiat.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phydiat.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phydiaz.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phydiaz.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phymisc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phymisc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phypico.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phypico.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.po4.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.pp.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.si.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.spco2.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.spco2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.talk.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zmeso.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zmeso.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zmicro.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zmicro.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zmisc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zmisc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zooc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zooc.tavg-ol-hxy-sea.mon.GLB", + "seaIce.evspsbl.tavg-u-hxy-si.mon.GLB", + "seaIce.prra.tavg-u-hxy-si.mon.GLB", + "seaIce.prsn.tavg-u-hxy-si.mon.GLB", + "seaIce.rlds.tavg-u-hxy-si.day.GLB", + "seaIce.rlds.tavg-u-hxy-si.mon.GLB", + "seaIce.rlus.tavg-u-hxy-si.day.GLB", + "seaIce.rlus.tavg-u-hxy-si.mon.GLB", + "seaIce.rsds.tavg-u-hxy-si.day.GLB", + "seaIce.rsds.tavg-u-hxy-si.mon.GLB", + "seaIce.rsus.tavg-u-hxy-si.day.GLB", + "seaIce.rsus.tavg-u-hxy-si.mon.GLB", + "seaIce.sbl.tavg-u-hxy-si.mon.GLB", + "seaIce.siage.tavg-u-hxy-si.day.GLB", + "seaIce.siage.tavg-u-hxy-si.mon.30S-90S", + "seaIce.siarea.tavg-u-hm-u.mon.NH", + "seaIce.siarea.tavg-u-hm-u.mon.SH", + "seaIce.siareaacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.siconc.tavg-u-hxy-u.mon.30S-90S", + "seaIce.siconca.tavg-u-hxy-u.day.GLB", + "seaIce.siconca.tavg-u-hxy-u.mon.GLB", + "seaIce.sidconcdyn.tavg-u-hxy-sea.mon.GLB", + "seaIce.sidconcth.tavg-u-hxy-sea.mon.GLB", + "seaIce.sidmassdyn.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthsi.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthwat.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmeltbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmeltlat.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmelttop.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassth.tavg-u-hxy-si.mon.GLB", + "seaIce.sieqthick.tavg-u-hxy-si.mon.GLB", + "seaIce.siextent.tavg-u-hm-u.mon.NH", + "seaIce.siextent.tavg-u-hm-u.mon.SH", + "seaIce.siflcondbot.tavg-u-hxy-si.day.GLB", + "seaIce.siflcondbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflcondtop.tavg-u-hxy-si.day.GLB", + "seaIce.siflcondtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sifllattop.tavg-u-hxy-si.day.GLB", + "seaIce.sifllattop.tavg-u-hxy-si.mon.GLB", + "seaIce.siflsensbot.tavg-u-hxy-si.day.GLB", + "seaIce.siflsensbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflsenstop.tavg-u-hxy-si.day.GLB", + "seaIce.siflsenstop.tavg-u-hxy-si.mon.GLB", + "seaIce.siflswdbot.tavg-u-hxy-si.day.GLB", + "seaIce.siflswdbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sihc.tavg-u-hxy-sea.day.GLB", + "seaIce.sihc.tavg-u-hxy-sea.mon.GLB", + "seaIce.siitdconc.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdsnconc.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdsnthick.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdthick.tavg-u-hxy-si.mon.GLB", + "seaIce.simassacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.simpconc.tavg-u-hxy-si.mon.GLB", + "seaIce.sirdgconc.tavg-u-hxy-si.mon.GLB", + "seaIce.sisaltmass.tavg-u-hxy-si.mon.GLB", + "seaIce.sisndmassdyn.tavg-u-hxy-si.mon.GLB", + "seaIce.sisndmasssi.tavg-u-hxy-si.mon.GLB", + "seaIce.sisndmasswind.tavg-u-hxy-si.mon.GLB", + "seaIce.sisnhc.tavg-u-hxy-si.day.GLB", + "seaIce.sisnhc.tavg-u-hxy-si.mon.GLB", + "seaIce.sisnmass.tavg-u-hm-u.mon.NH", + "seaIce.sisnmass.tavg-u-hm-u.mon.SH", + "seaIce.sisnmassacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.sispeed.tavg-u-hxy-si.day.GLB", + "seaIce.sispeed.tavg-u-hxy-si.mon.GLB", + "seaIce.sistressave.tpt-u-hxy-si.mon.GLB", + "seaIce.sistressmax.tpt-u-hxy-si.mon.GLB", + "seaIce.sistrxdtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sistrxubot.tavg-u-hxy-si.mon.GLB", + "seaIce.sistrydtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sistryubot.tavg-u-hxy-si.mon.GLB", + "seaIce.sitempsnic.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-si.day.GLB", + "seaIce.sithick.tavg-u-hxy-si.mon.30S-90S", + "seaIce.sitimefrac.tavg-u-hxy-sea.day.GLB", + "seaIce.sitimefrac.tavg-u-hxy-sea.mon.30S-90S", + "seaIce.siu.tavg-u-hxy-si.day.GLB", + "seaIce.siu.tavg-u-hxy-si.mon.30S-90S", + "seaIce.siv.tavg-u-hxy-si.day.GLB", + "seaIce.siv.tavg-u-hxy-si.mon.30S-90S", + "seaIce.sivol.tavg-u-hm-u.mon.NH", + "seaIce.sivol.tavg-u-hm-u.mon.SH", + "seaIce.snc.tavg-u-hxy-si.mon.GLB", + "seaIce.snd.tavg-u-hxy-sn.day.GLB", + "seaIce.snd.tavg-u-hxy-sn.mon.30S-90S", + "seaIce.snm.tavg-u-hxy-si.mon.GLB", + "seaIce.snw.tavg-u-hxy-si.mon.GLB", + "seaIce.ts.tavg-u-hxy-si.day.GLB", + "seaIce.ts.tavg-u-hxy-si.mon.30S-90S" + ], + "Medium": [ + "atmos.bldep.tavg-u-hxy-u.1hr.GLB", + "atmos.clic.tpt-al-hxy-u.3hr.GLB", + "atmos.clis.tpt-al-hxy-u.3hr.GLB", + "atmos.clivi.tpt-u-hxy-u.3hr.GLB", + "atmos.clt.tpt-u-hxy-u.3hr.GLB", + "atmos.clwc.tpt-al-hxy-u.3hr.GLB", + "atmos.clws.tpt-al-hxy-u.3hr.GLB", + "atmos.clwvi.tpt-u-hxy-u.3hr.GLB", + "atmos.dtauc.tpt-al-hxy-ccl.3hr.GLB", + "atmos.dtaus.tpt-al-hxy-scl.3hr.GLB", + "atmos.hfdsnb.tavg-u-hxy-lnd.day.GLB", + "atmos.hfls.tavg-u-hxy-is.mon.ATA", + "atmos.hfls.tavg-u-hxy-u.1hr.GLB", + "atmos.hfss.tavg-u-hxy-is.mon.ATA", + "atmos.hfss.tavg-u-hxy-is.mon.GRL", + "atmos.hfss.tavg-u-hxy-u.1hr.GLB", + "atmos.hur.tavg-700hPa-hxy-air.day.GLB", + "atmos.hur.tpt-100hPa-hxy-u.6hr.GLB", + "atmos.hur.tpt-500hPa-hxy-air.6hr.GLB", + "atmos.hur.tpt-850hPa-hxy-air.6hr.GLB", + "atmos.hurs.tavg-h2m-hxy-u.1hr.GLB", + "atmos.hus.tpt-al-hxy-u.3hr.GLB", + "atmos.hus.tpt-p6-hxy-air.3hr.GLB", + "atmos.noaahi2m.tavg-h2m-hxy-u.day.GLB", + "atmos.noaahi2m.tmax-h2m-hxy-u.day.GLB", + "atmos.pfull.tpt-al-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.6hr.GLB", + "atmos.pr.tmax-u-hxy-u.6hr.GLB", + "atmos.pr.tpt-u-hxy-u.3hr.GLB", + "atmos.prra.tavg-u-hxy-is.mon.ATA", + "atmos.prrsn.tavg-u-hxy-lnd.day.GLB", + "atmos.prsn.tavg-u-hxy-is.mon.ATA", + "atmos.prsnc.tavg-u-hxy-lnd.day.GLB", + "atmos.prsnsn.tavg-u-hxy-lnd.day.GLB", + "atmos.prw.tpt-u-hxy-u.3hr.GLB", + "atmos.ps.tpt-u-hxy-u.1hr.GLB", + "atmos.psitem.tavg-p39-hy-air.day.GLB", + "atmos.psl.tavg-u-hxy-u.6hr.GLB", + "atmos.reffclic.tpt-al-hxy-ccl.3hr.GLB", + "atmos.reffclis.tpt-al-hxy-scl.3hr.GLB", + "atmos.reffclwc.tpt-al-hxy-ccl.3hr.GLB", + "atmos.reffclws.tpt-al-hxy-scl.3hr.GLB", + "atmos.rlds.tavg-u-hxy-is.mon.ATA", + "atmos.rlds.tavg-u-hxy-is.mon.GRL", + "atmos.rlds.tpt-u-hxy-u.3hr.GLB", + "atmos.rldscs.tpt-u-hxy-u.3hr.GLB", + "atmos.rls.tavg-u-hxy-u.day.GLB", + "atmos.rlus.tavg-u-hxy-is.mon.ATA", + "atmos.rlus.tavg-u-hxy-is.mon.GRL", + "atmos.rlus.tavg-u-hxy-u.1hr.GLB", + "atmos.rlut.tpt-u-hxy-u.3hr.GLB", + "atmos.rlutcs.tpt-u-hxy-u.3hr.GLB", + "atmos.rsds.tavg-u-hxy-is.mon.ATA", + "atmos.rsds.tavg-u-hxy-is.mon.GRL", + "atmos.rsds.tpt-u-hxy-u.3hr.GLB", + "atmos.rsdscs.tpt-u-hxy-u.3hr.GLB", + "atmos.rsdsdiff.tavg-u-hxy-u.1hr.GLB", + "atmos.rsdsdiff.tavg-u-hxy-u.day.GLB", + "atmos.rss.tavg-u-hxy-u.day.GLB", + "atmos.rsus.tavg-u-hxy-is.mon.ATA", + "atmos.rsus.tavg-u-hxy-is.mon.GRL", + "atmos.rsus.tavg-u-hxy-u.1hr.GLB", + "atmos.rsut.tpt-u-hxy-u.3hr.GLB", + "atmos.rsutcs.tpt-u-hxy-u.3hr.GLB", + "atmos.rv850.tavg-850hPa-hxy-air.6hr.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.1hr.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.3hr.GLB", + "atmos.snmsl.tavg-u-hxy-lnd.day.GLB", + "atmos.snrefr.tavg-u-hxy-lnd.day.GLB", + "atmos.snwc.tavg-u-hxy-lnd.day.GLB", + "atmos.ta.tpt-al-hxy-u.3hr.GLB", + "atmos.ta.tpt-p6-hxy-air.3hr.GLB", + "atmos.tas.tavg-h2m-hm-is.mon.ATA", + "atmos.tas.tavg-h2m-hm-is.mon.GRL", + "atmos.tauunoegw.tavg-p19-hxy-air.mon.GLB", + "atmos.tauunowgw.tavg-p19-hxy-air.mon.GLB", + "atmos.tauuogw.tavg-p19-hxy-air.mon.GLB", + "atmos.tauupbl.tavg-u-hxy-u.day.GLB", + "atmos.tauvnogw.tavg-p19-hxy-air.mon.GLB", + "atmos.tauvogw.tavg-p19-hxy-air.mon.GLB", + "atmos.tauvpbl.tavg-u-hxy-u.day.GLB", + "atmos.tdps.tavg-h2m-hxy-u.day.GLB", + "atmos.tntc.tavg-p39-hy-air.mon.GLB", + "atmos.tntnogw.tavg-p39-hy-air.mon.GLB", + "atmos.tntogw.tavg-p39-hy-air.mon.GLB", + "atmos.tntrlcs.tavg-p39-hy-air.mon.GLB", + "atmos.tntrscs.tavg-p39-hy-air.mon.GLB", + "atmos.tntscp.tavg-p39-hy-air.mon.GLB", + "atmos.ts.tavg-u-hxy-is.mon.ATA", + "atmos.ts.tavg-u-hxy-is.mon.GRL", + "atmos.ts.tavg-u-hxy-sn.day.GLB", + "atmos.ts.tavg-u-hxy-u.1hr.GLB", + "atmos.ua.tavg-h100m-hxy-u.3hr.GLB", + "atmos.ua.tpt-200hPa-hxy-u.6hr.GLB", + "atmos.ua.tpt-p6-hxy-air.3hr.GLB", + "atmos.uas.tavg-h10m-hxy-u.6hr.GLB", + "atmos.utendnogw.tavg-p19-hxy-air.day.GLB", + "atmos.utendnogw.tavg-p19-hxy-air.mon.GLB", + "atmos.utendogw.tavg-p19-hxy-air.day.GLB", + "atmos.utendogw.tavg-p19-hxy-air.mon.GLB", + "atmos.va.tavg-h100m-hxy-u.3hr.GLB", + "atmos.va.tpt-200hPa-hxy-u.6hr.GLB", + "atmos.va.tpt-p6-hxy-air.3hr.GLB", + "atmos.vas.tavg-h10m-hxy-u.6hr.GLB", + "atmos.vtendnogw.tavg-p19-hxy-air.day.GLB", + "atmos.vtendnogw.tavg-p19-hxy-air.mon.GLB", + "atmos.vtendogw.tavg-p19-hxy-air.day.GLB", + "atmos.vtendogw.tavg-p19-hxy-air.mon.GLB", + "atmos.wap.tpt-p6-hxy-air.3hr.GLB", + "atmos.wbgt.tavg-h2m-hxy-u.day.GLB", + "atmos.wbgt.tmax-h2m-hxy-u.day.GLB", + "atmos.wsg.tmax-h100m-hxy-u.mon.GLB", + "atmos.wsg.tmax-h10m-hxy-u.mon.GLB", + "atmos.zg.tavg-1000hPa-hxy-air.6hr.GLB", + "atmos.zg.tpt-700hPa-hxy-u.6hr.GLB", + "atmos.zg.tpt-925hPa-hxy-u.6hr.GLB", + "atmosChem.flashrate.tavg-u-hxy-u.day.GLB", + "land.areacellg.ti-u-hxy-u.fx.ATA", + "land.areacellg.ti-u-hxy-u.fx.GRL", + "land.baresoilFrac.tavg-u-hxy-u.yr.GLB", + "land.cLitterCwd.tavg-u-hxy-lnd.mon.GLB", + "land.cLitterLut.tpt-u-hxy-multi.yr.GLB", + "land.cLitterSubSurf.tavg-u-hxy-lnd.mon.GLB", + "land.cLitterSurf.tavg-u-hxy-lnd.mon.GLB", + "land.cOther.tavg-u-hxy-lnd.mon.GLB", + "land.cProductLut.tpt-u-hxy-multi.yr.GLB", + "land.cropFrac.tavg-u-hxy-u.yr.GLB", + "land.cropFracC3.tavg-u-hxy-u.mon.GLB", + "land.cropFracC4.tavg-u-hxy-u.mon.GLB", + "land.cSoilLut.tpt-u-hxy-multi.yr.GLB", + "land.cSoilPools.tavg-u-hxy-lnd.mon.GLB", + "land.cVeg.tavg-u-hxy-ng.mon.GLB", + "land.cVeg.tavg-u-hxy-shb.mon.GLB", + "land.cVeg.tavg-u-hxy-tree.mon.GLB", + "land.cVegLut.tpt-u-hxy-multi.yr.GLB", + "land.dgw.tavg-u-hxy-lnd.day.GLB", + "land.drivw.tavg-u-hxy-lnd.day.GLB", + "land.dsn.tavg-u-hxy-lnd.day.GLB", + "land.dsw.tavg-u-hxy-lnd.day.GLB", + "land.esn.tavg-u-hxy-sn.day.GLB", + "land.evspsblsoi.tavg-u-hxy-u.3hr.GLB", + "land.evspsblveg.tavg-u-hxy-u.3hr.GLB", + "land.fLitterFire.tavg-u-hxy-lnd.mon.GLB", + "land.fLulccAtmLut.tavg-u-hxy-multi.mon.GLB", + "land.fNgasNonFire.tavg-u-hxy-lnd.mon.GLB", + "land.fracInLut.tsum-u-hxy-lnd.yr.GLB", + "land.fracLut.tpt-u-hxy-u.mon.GLB", + "land.fracLut.tpt-u-hxy-u.yr.GLB", + "land.fracOutLut.tsum-u-hxy-lnd.yr.GLB", + "land.fVegFire.tavg-u-hxy-lnd.mon.GLB", + "land.fVegLitterMortality.tavg-u-hxy-lnd.mon.GLB", + "land.fVegLitterSenescence.tavg-u-hxy-lnd.mon.GLB", + "land.fVegSoilMortality.tavg-u-hxy-lnd.mon.GLB", + "land.fVegSoilSenescence.tavg-u-hxy-lnd.mon.GLB", + "land.gpp.tavg-u-hxy-ng.mon.GLB", + "land.gpp.tavg-u-hxy-shb.mon.GLB", + "land.gpp.tavg-u-hxy-tree.mon.GLB", + "land.gppLut.tavg-u-hxy-multi.mon.GLB", + "land.grassFrac.tavg-u-hxy-u.yr.GLB", + "land.grassFracC3.tavg-u-hxy-u.mon.GLB", + "land.grassFracC4.tavg-u-hxy-u.mon.GLB", + "land.hfdsl.tavg-u-hxy-lnd.3hr.GLB", + "land.hflsLut.tavg-u-hxy-multi.mon.GLB", + "land.hfssLut.tavg-u-hxy-multi.mon.GLB", + "land.irrDem.tavg-u-hxy-u.day.GLB", + "land.irrGw.tavg-u-hxy-u.day.GLB", + "land.irrLut.tavg-u-hxy-multi.mon.GLB", + "land.irrLut.tavg-u-hxy-u.day.GLB", + "land.irrSurf.tavg-u-hxy-u.day.GLB", + "land.laiLut.tavg-u-hxy-multi.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.3hr.GLB", + "land.mrros.tavg-u-hxy-lnd.3hr.GLB", + "land.mrsol.tavg-d100cm-hxy-lnd.3hr.GLB", + "land.mrsolLut.tavg-d10cm-hxy-multi.mon.GLB", + "land.nbpLut.tavg-u-hxy-multi.mon.GLB", + "land.nLeaf.tavg-u-hxy-lnd.mon.GLB", + "land.nLitterCwd.tavg-u-hxy-lnd.mon.GLB", + "land.nLitterSubSurf.tavg-u-hxy-lnd.mon.GLB", + "land.nLitterSurf.tavg-u-hxy-lnd.mon.GLB", + "land.nMineralNH4.tavg-u-hxy-lnd.mon.GLB", + "land.nMineralNO3.tavg-u-hxy-lnd.mon.GLB", + "land.nOther.tavg-u-hxy-lnd.mon.GLB", + "land.npp.tavg-u-hxy-ng.mon.GLB", + "land.npp.tavg-u-hxy-shb.mon.GLB", + "land.npp.tavg-u-hxy-tree.mon.GLB", + "land.nppLeaf.tavg-u-hxy-lnd.mon.GLB", + "land.nppLut.tavg-u-hxy-multi.mon.GLB", + "land.nppOther.tavg-u-hxy-lnd.mon.GLB", + "land.nppRoot.tavg-u-hxy-lnd.mon.GLB", + "land.nppStem.tavg-u-hxy-lnd.mon.GLB", + "land.nppVgt.tavg-u-hxy-multi.day.GLB", + "land.nRoot.tavg-u-hxy-lnd.mon.GLB", + "land.nStem.tavg-u-hxy-lnd.mon.GLB", + "land.orog.tavg-u-hxy-is.mon.ATA", + "land.orog.tavg-u-hxy-is.mon.GRL", + "land.orog.tavg-u-hxy-is.yr.ATA", + "land.orog.tavg-u-hxy-is.yr.GRL", + "land.pastureFracC3.tavg-u-hxy-u.mon.GLB", + "land.pastureFracC4.tavg-u-hxy-u.mon.GLB", + "land.qgwr.tavg-u-hxy-lnd.day.GLB", + "land.ra.tavg-u-hxy-ng.mon.GLB", + "land.ra.tavg-u-hxy-shb.mon.GLB", + "land.ra.tavg-u-hxy-tree.mon.GLB", + "land.raLeaf.tavg-u-hxy-lnd.mon.GLB", + "land.raLut.tavg-u-hxy-multi.mon.GLB", + "land.raOther.tavg-u-hxy-lnd.mon.GLB", + "land.raRoot.tavg-u-hxy-lnd.mon.GLB", + "land.raStem.tavg-u-hxy-lnd.mon.GLB", + "land.raVgt.tavg-u-hxy-multi.day.GLB", + "land.residualFrac.tavg-u-hxy-u.yr.GLB", + "land.rh.tavg-u-hxy-ng.mon.GLB", + "land.rh.tavg-u-hxy-shb.mon.GLB", + "land.rh.tavg-u-hxy-tree.mon.GLB", + "land.rhLitter.tavg-u-hxy-lnd.mon.GLB", + "land.rhLut.tavg-u-hxy-multi.mon.GLB", + "land.rhSoil.tavg-u-hxy-lnd.mon.GLB", + "land.rhVgt.tavg-u-hxy-multi.day.GLB", + "land.rzwc.tavg-u-hxy-lnd.day.GLB", + "land.sftgif.tavg-u-hxy-u.yr.ATA", + "land.sftgif.tavg-u-hxy-u.yr.GRL", + "land.shrubFrac.tavg-u-hxy-u.yr.GLB", + "land.sw.tavg-u-hxy-lnd.day.GLB", + "land.sweLut.tavg-u-hxy-multi.mon.GLB", + "land.tasLut.tavg-h2m-hxy-multi.mon.GLB", + "land.tran.tavg-u-hxy-u.3hr.GLB", + "land.treeFrac.tavg-u-hxy-u.yr.GLB", + "land.treeFracBdlDcd.tavg-u-hxy-u.mon.GLB", + "land.treeFracBdlEvg.tavg-u-hxy-u.mon.GLB", + "land.treeFracNdlDcd.tavg-u-hxy-u.mon.GLB", + "land.treeFracNdlEvg.tavg-u-hxy-u.mon.GLB", + "land.tsLut.tavg-u-hxy-multi.mon.GLB", + "land.vegFrac.tavg-u-hxy-u.yr.GLB", + "land.vegHeight.tavg-u-hxy-ng.mon.GLB", + "land.vegHeight.tavg-u-hxy-shb.mon.GLB", + "land.wetlandCH4cons.tavg-u-hxy-lnd.mon.GLB", + "land.wetlandCH4prod.tavg-u-hxy-lnd.mon.GLB", + "land.wetlandFrac.tavg-u-hxy-u.mon.GLB", + "landIce.acabf.tavg-u-hxy-is.mon.ATA", + "landIce.acabf.tavg-u-hxy-is.mon.GRL", + "landIce.acabf.tavg-u-hxy-is.yr.ATA", + "landIce.acabf.tavg-u-hxy-is.yr.GRL", + "landIce.agesno.tavg-u-hxy-lnd.mon.GLB", + "landIce.hfdsn.tavg-u-hxy-lnd.day.GLB", + "landIce.hfgeoubed.tavg-u-hxy-gis.yr.ATA", + "landIce.hfgeoubed.tavg-u-hxy-gis.yr.GRL", + "landIce.hfgeoubed.ti-u-hxy-gis.fx.ATA", + "landIce.iareafl.tavg-u-hm-fis.yr.ATA", + "landIce.iareafl.tavg-u-hm-fis.yr.GRL", + "landIce.iareagr.tavg-u-hm-gis.yr.ATA", + "landIce.iareagr.tavg-u-hm-gis.yr.GRL", + "landIce.icem.tavg-u-hxy-is.mon.ATA", + "landIce.icem.tavg-u-hxy-is.mon.GRL", + "landIce.libmassbf.tavg-u-hxy-fis.mon.ATA", + "landIce.libmassbf.tavg-u-hxy-fis.mon.GRL", + "landIce.libmassbf.tavg-u-hxy-fis.yr.ATA", + "landIce.libmassbf.tavg-u-hxy-fis.yr.GRL", + "landIce.libmassbf.tavg-u-hxy-gis.mon.ATA", + "landIce.libmassbf.tavg-u-hxy-gis.mon.GRL", + "landIce.libmassbf.tavg-u-hxy-gis.yr.ATA", + "landIce.libmassbf.tavg-u-hxy-gis.yr.GRL", + "landIce.licalvf.tavg-u-hxy-is.mon.ATA", + "landIce.licalvf.tavg-u-hxy-is.mon.GRL", + "landIce.licalvf.tavg-u-hxy-is.yr.ATA", + "landIce.licalvf.tavg-u-hxy-is.yr.GRL", + "landIce.lifmassbf.tavg-u-hxy-is.mon.ATA", + "landIce.lifmassbf.tavg-u-hxy-is.mon.GRL", + "landIce.lifmassbf.tavg-u-hxy-is.yr.ATA", + "landIce.lifmassbf.tavg-u-hxy-is.yr.GRL", + "landIce.lim.tavg-u-hm-is.yr.ATA", + "landIce.lim.tavg-u-hm-is.yr.GRL", + "landIce.limnsw.tavg-u-hm-is.yr.ATA", + "landIce.limnsw.tavg-u-hm-is.yr.GRL", + "landIce.litempbot.tavg-u-hxy-fis.mon.ATA", + "landIce.litempbot.tavg-u-hxy-fis.mon.GRL", + "landIce.litempbot.tavg-u-hxy-fis.yr.ATA", + "landIce.litempbot.tavg-u-hxy-fis.yr.GRL", + "landIce.litempbot.tavg-u-hxy-gis.mon.ATA", + "landIce.litempbot.tavg-u-hxy-gis.mon.GRL", + "landIce.litempbot.tavg-u-hxy-gis.yr.ATA", + "landIce.litempbot.tavg-u-hxy-gis.yr.GRL", + "landIce.litemptop.tavg-u-hxy-is.mon.ATA", + "landIce.litemptop.tavg-u-hxy-is.mon.GRL", + "landIce.litemptop.tavg-u-hxy-is.yr.ATA", + "landIce.litemptop.tavg-u-hxy-is.yr.GRL", + "landIce.lithk.tavg-u-hxy-is.yr.ATA", + "landIce.lithk.tavg-u-hxy-is.yr.GRL", + "landIce.lithk.ti-u-hxy-is.fx.ATA", + "landIce.lwsnl.tavg-u-hxy-lnd.day.GLB", + "landIce.lwsnl.tavg-u-hxy-lnd.mon.GLB", + "landIce.modelcellareai.tavg-u-hxy-u.yr.ATA", + "landIce.modelcellareai.tavg-u-hxy-u.yr.GRL", + "landIce.mrroLi.tavg-u-hxy-is.mon.ATA", + "landIce.mrroLi.tavg-u-hxy-is.mon.GRL", + "landIce.pflw.tavg-u-hxy-lnd.day.GLB", + "landIce.sbl.tavg-u-hxy-is.mon.ATA", + "landIce.sbl.tavg-u-hxy-is.mon.GRL", + "landIce.sbl.tavg-u-hxy-u.day.GLB", + "landIce.sftflf.tavg-u-hxy-u.yr.ATA", + "landIce.sftflf.tavg-u-hxy-u.yr.GRL", + "landIce.sftgrf.tavg-u-hxy-u.yr.ATA", + "landIce.sftgrf.tavg-u-hxy-u.yr.GRL", + "landIce.snc.tavg-u-hxy-is.mon.ATA", + "landIce.snc.tavg-u-hxy-is.mon.GRL", + "landIce.snc.tavg-u-hxy-is.yr.ATA", + "landIce.snc.tavg-u-hxy-is.yr.GRL", + "landIce.snd.tavg-u-hxy-lnd.day.GLB", + "landIce.snicem.tavg-u-hxy-is.mon.ATA", + "landIce.snm.tavg-u-hxy-is.mon.ATA", + "landIce.snm.tavg-u-hxy-is.mon.GRL", + "landIce.snm.tavg-u-hxy-lnd.day.GLB", + "landIce.snrefr.tavg-u-hxy-is.mon.ATA", + "landIce.snrefr.tavg-u-hxy-is.mon.GRL", + "landIce.strbasemag.tavg-u-hxy-is.yr.ATA", + "landIce.strbasemag.tavg-u-hxy-is.yr.GRL", + "landIce.tendacabf.tavg-u-hm-is.yr.ATA", + "landIce.tendacabf.tavg-u-hm-is.yr.GRL", + "landIce.tendlibmassbf.tavg-u-hm-is.yr.ATA", + "landIce.tendlibmassbf.tavg-u-hm-is.yr.GRL", + "landIce.tendlicalvf.tavg-u-hm-is.yr.ATA", + "landIce.tendlicalvf.tavg-u-hm-is.yr.GRL", + "landIce.topg.tavg-u-hxy-gis.yr.ATA", + "landIce.topg.tavg-u-hxy-gis.yr.GRL", + "landIce.topg.ti-u-hxy-gis.fx.ATA", + "landIce.tpf.tavg-u-hxy-lnd.day.GLB", + "landIce.tsn.tavg-u-hxy-is.mon.ATA", + "landIce.tsn.tavg-u-hxy-is.mon.GRL", + "landIce.tsn.tavg-u-hxy-lnd.day.GLB", + "landIce.xvelbase.tavg-u-hxy-is.yr.ATA", + "landIce.xvelbase.tavg-u-hxy-is.yr.GRL", + "landIce.xvelmean.tavg-u-hxy-is.yr.ATA", + "landIce.xvelmean.tavg-u-hxy-is.yr.GRL", + "landIce.xvelsurf.tavg-u-hxy-is.yr.ATA", + "landIce.xvelsurf.tavg-u-hxy-is.yr.GRL", + "landIce.yvelbase.tavg-u-hxy-is.yr.ATA", + "landIce.yvelbase.tavg-u-hxy-is.yr.GRL", + "landIce.yvelmean.tavg-u-hxy-is.yr.ATA", + "landIce.yvelmean.tavg-u-hxy-is.yr.GRL", + "landIce.yvelsurf.tavg-u-hxy-is.yr.ATA", + "landIce.yvelsurf.tavg-u-hxy-is.yr.GRL", + "landIce.zvelbase.tavg-u-hxy-is.yr.ATA", + "landIce.zvelbase.tavg-u-hxy-is.yr.GRL", + "landIce.zvelsurf.tavg-u-hxy-is.yr.ATA", + "landIce.zvelsurf.tavg-u-hxy-is.yr.GRL", + "ocean.evspsbl.tavg-u-hxy-ifs.mon.GLB", + "ocean.hfacrossline.tavg-u-ht-sea.mon.GLB", + "ocean.hfevapds.tavg-u-hxy-ifs.mon.GLB", + "ocean.hfibthermds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfibthermds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfrainds.tavg-u-hxy-ifs.mon.GLB", + "ocean.hfrunoffds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfrunoffds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfsnthermds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfsnthermds.tavg-u-hxy-sea.mon.GLB", + "ocean.mfo.tavg-u-ht-sea.mon.GLB", + "ocean.msftmmpa.tavg-ol-hyb-sea.mon.GLB", + "ocean.sf6.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfacrossline.tavg-u-ht-sea.mon.GLB", + "ocean.sfdsi.tavg-u-hxy-sea.mon.GLB", + "ocean.sfriver.tavg-u-hxy-sea.mon.GLB", + "ocean.siflfwbot.tavg-u-hxy-sea.mon.GLB", + "ocean.so.tavg-ol-hxy-sea.day.GLB", + "ocean.t17d.tavg-u-hxy-sea.mon.GLB", + "ocean.t20d.tavg-u-hxy-sea.day.GLB", + "ocean.tnkebto.tavg-u-hxy-sea.yr.GLB", + "ocean.vsfcorr.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfevap.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfpr.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfriver.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfsit.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.arag.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.arag.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.calc.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.calc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chl.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.chlcalc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.co3.tavg-d0m-hxy-sea.day.GLB", + "ocnBgchem.co3.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.co3satarag.tavg-d0m-hxy-sea.day.GLB", + "ocnBgchem.co3satarag.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.detoc.tavg-ol-hxy-sea.day.GLB", + "ocnBgchem.dissoc.tavg-ol-hxy-sea.day.GLB", + "ocnBgchem.dmso.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.epn.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.epp.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.epsi.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.exparagob.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.expcalcob.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.expcob.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.expfeob.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.expnob.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.exppob.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.expsiob.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fgdms.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.frfe.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.frn.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppcalc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppdiat.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppdiaz.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppmisc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppnano.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppnitrate.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intpppico.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limfecalc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limfediat.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limfediaz.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limfemisc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limfepico.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limirrcalc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limirrdiat.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limirrdiaz.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limirrmisc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limirrpico.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limncalc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limndiat.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limndiaz.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limnmisc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limnpico.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.no3.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.o2.tavg-d0m-hxy-sea.day.GLB", + "ocnBgchem.o2.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.o2.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.o2sat.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.ph.tavg-d0m-hxy-sea.day.GLB", + "ocnBgchem.ph.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.phyc.tavg-d0m-hxy-sea.day.GLB", + "ocnBgchem.phyc.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.pp.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.pp.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.si.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.sialgc.tavg-u-hxy-si.mon.GLB", + "ocnBgchem.sichl.tavg-u-hxy-si.mon.GLB", + "ocnBgchem.sigpp.tavg-u-hxy-si.mon.GLB", + "ocnBgchem.sino3.tavg-u-hxy-si.mon.GLB", + "ocnBgchem.sisi.tavg-u-hxy-si.mon.GLB", + "seaIce.sfdsi.tavg-u-hxy-si.mon.GLB", + "seaIce.siage.tavg-u-hxy-si.mon.GLB", + "seaIce.siarea.tavg-u-hm-u.day.NH", + "seaIce.siarea.tavg-u-hm-u.day.SH", + "seaIce.sicompstren.tavg-u-hxy-si.mon.GLB", + "seaIce.sidivvel.tpt-u-hxy-si.mon.GLB", + "seaIce.sidmasstranx.tavg-u-hxy-u.mon.GLB", + "seaIce.sidmasstrany.tavg-u-hxy-u.mon.GLB", + "seaIce.sidragbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidragtop.tavg-u-hxy-si.mon.GLB", + "seaIce.siextent.tavg-u-hm-u.day.NH", + "seaIce.siextent.tavg-u-hm-u.day.SH", + "seaIce.sifb.tavg-u-hxy-si.day.GLB", + "seaIce.sifb.tavg-u-hxy-si.mon.GLB", + "seaIce.siflfwbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflfwdrain.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcecoriolx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcecorioly.tavg-u-hxy-si.mon.GLB", + "seaIce.siforceintstrx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforceintstry.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcetiltx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcetilty.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdconc.tavg-u-hxy-si.day.GLB", + "seaIce.siitdsnconc.tavg-u-hxy-si.day.GLB", + "seaIce.siitdsnthick.tavg-u-hxy-si.day.GLB", + "seaIce.siitdthick.tavg-u-hxy-si.day.GLB", + "seaIce.simpconc.tavg-u-hxy-si.day.GLB", + "seaIce.simpeffconc.tavg-u-hxy-si.day.GLB", + "seaIce.simpeffconc.tavg-u-hxy-si.mon.GLB", + "seaIce.simprefrozen.tavg-u-hxy-simp.day.GLB", + "seaIce.simprefrozen.tavg-u-hxy-simp.mon.GLB", + "seaIce.simpthick.tavg-u-hxy-si.day.GLB", + "seaIce.simpthick.tavg-u-hxy-simp.mon.GLB", + "seaIce.sirdgconc.tavg-u-hxy-si.day.GLB", + "seaIce.sisali.tavg-u-hxy-si.day.GLB", + "seaIce.sisali.tavg-u-hxy-si.mon.GLB", + "seaIce.sisaltmass.tavg-u-hxy-si.day.GLB", + "seaIce.sishearvel.tpt-u-hxy-si.mon.GLB", + "seaIce.sisnmass.tavg-u-hm-u.day.NH", + "seaIce.sisnmass.tavg-u-hm-u.day.SH", + "seaIce.sitempbot.tavg-u-hxy-si.day.GLB", + "seaIce.sitempbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sitempsnic.tavg-u-hxy-si.day.GLB", + "seaIce.sithick.tavg-u-hxy-sir.day.GLB", + "seaIce.sithick.tavg-u-hxy-sir.mon.GLB", + "seaIce.sivol.tavg-u-hm-u.day.NH", + "seaIce.sivol.tavg-u-hm-u.day.SH" + ], + "Low": [ + "aerosol.ccldncl.tavg-u-hxy-ccl.day.GLB", + "aerosol.sfpm1.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.sfpm10.tavg-h2m-hxy-u.1hr.GLB", + "atmos.cldnci.tavg-u-hxy-cl.day.GLB", + "atmos.hurs.tmin-h2m-hxy-crp.day.GLB", + "atmos.loaddust.tavg-u-hxy-u.day.GLB", + "atmos.loadnh4.tavg-u-hxy-u.day.GLB", + "atmos.loadno3.tavg-u-hxy-u.day.GLB", + "atmos.loadso4.tavg-u-hxy-u.day.GLB", + "atmos.loadsoa.tavg-u-hxy-u.day.GLB", + "atmos.loadss.tavg-u-hxy-u.day.GLB", + "atmos.pr.tavg-u-hxy-crp.day.GLB", + "atmos.reffcclwtop.tavg-u-hxy-ccl.day.GLB", + "atmos.reffsclwtop.tavg-u-hxy-scl.day.GLB", + "atmos.rsdscsdiff.tavg-u-hxy-u.day.GLB", + "atmos.scldncl.tavg-u-hxy-scl.day.GLB", + "atmos.tas.tmax-h2m-hxy-crp.day.GLB", + "atmos.tas.tmin-h2m-hxy-crp.day.GLB", + "atmos.zfull.ti-al-hxy-u.fx.GLB", + "atmosChem.drynh3.tavg-u-hxy-u.day.GLB", + "atmosChem.drynh4.tavg-u-hxy-u.day.GLB", + "atmosChem.drynoy.tavg-u-hxy-u.day.GLB", + "atmosChem.flashrate.tavg-u-hxy-u.mon.GLB", + "atmosChem.wetnh3.tavg-u-hxy-u.day.GLB", + "atmosChem.wetnh4.tavg-u-hxy-u.day.GLB", + "atmosChem.wetnoy.tavg-u-hxy-u.day.GLB", + "land.c13Land.tavg-u-hxy-lnd.mon.GLB", + "land.c13Litter.tavg-u-hxy-lnd.mon.GLB", + "land.c13Soil.tavg-u-hxy-lnd.mon.GLB", + "land.c13Veg.tavg-u-hxy-lnd.mon.GLB", + "land.c14Land.tavg-u-hxy-lnd.mon.GLB", + "land.c14Litter.tavg-u-hxy-lnd.mon.GLB", + "land.c14Soil.tavg-u-hxy-lnd.mon.GLB", + "land.c14Veg.tavg-u-hxy-lnd.mon.GLB", + "land.c3PftFrac.tavg-u-hxy-u.mon.GLB", + "land.c4PftFrac.tavg-u-hxy-u.mon.GLB", + "land.gppc13.tavg-u-hxy-lnd.mon.GLB", + "land.gppc14.tavg-u-hxy-lnd.mon.GLB", + "land.lai.tavg-u-hxy-lnd.day.GLB", + "land.netAtmosLandC13Flux.tavg-u-hxy-lnd.mon.GLB", + "land.netAtmosLandC14Flux.tavg-u-hxy-lnd.mon.GLB", + "land.rac13.tavg-u-hxy-lnd.mon.GLB", + "land.rac14.tavg-u-hxy-lnd.mon.GLB", + "land.rhc13.tavg-u-hxy-lnd.mon.GLB", + "land.rhc14.tavg-u-hxy-lnd.mon.GLB", + "ocean.difmxybo.tavg-ol-hxy-sea.yr.GLB", + "ocean.difmxylo.tavg-ol-hxy-sea.yr.GLB", + "ocean.diftrblo.tavg-ol-hxy-sea.yr.GLB", + "ocean.diftrelo.tavg-ol-hxy-sea.yr.GLB", + "ocean.difvho.tavg-ol-hxy-sea.yr.GLB", + "ocean.difvso.tavg-ol-hxy-sea.yr.GLB", + "ocean.dispkexyfo.tavg-u-hxy-sea.yr.GLB", + "ocean.dxto.ti-u-hxy-u.fx.GLB", + "ocean.dxuo.ti-u-hxy-u.fx.GLB", + "ocean.dxvo.ti-u-hxy-u.fx.GLB", + "ocean.dyto.ti-u-hxy-u.fx.GLB", + "ocean.dyuo.ti-u-hxy-u.fx.GLB", + "ocean.dyvo.ti-u-hxy-u.fx.GLB", + "ocean.mlotstsq.tavg-u-hxy-sea.mon.GLB", + "ocean.msftmmpa.tavg-rho-hyb-sea.mon.GLB", + "ocean.msftmsmpa.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftypa.tavg-ol-ht-sea.mon.GLB", + "ocean.msftypa.tavg-rho-ht-sea.mon.GLB", + "ocean.ocontempdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontempmint.tavg-u-hxy-sea.yr.GLB", + "ocean.ocontemppadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemppmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemppsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemprmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemptend.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottempdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottempmint.tavg-u-hxy-sea.yr.GLB", + "ocean.opottemppadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemppmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemppsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemprmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemptend.tavg-ol-hxy-sea.dec.GLB", + "ocean.osaltdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpsmadvect.tavg-ol-hxy-sea.mon.GLB", + "ocean.osaltpsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltrmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osalttend.tavg-ol-hxy-sea.yr.GLB", + "ocean.rsdo.tavg-ol-hxy-sea.day.GLB", + "ocean.rsdoabsorb.tavg-ol-hxy-sea.yr.GLB", + "ocean.somint.tavg-u-hxy-sea.yr.GLB", + "ocean.sossq.tavg-u-hxy-sea.mon.GLB", + "ocean.thkcelluo.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcellvo.tavg-ol-hxy-sea.mon.GLB", + "ocean.tnpeo.tavg-u-hxy-sea.yr.GLB", + "ocean.tossq.tavg-u-hxy-sea.mon.GLB", + "ocean.wo.tavg-ol-hxy-sea.day.GLB", + "ocnBgchem.dissi13c.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.dissi13c.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissi14c.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissi14cabio.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.dissi14cabio.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.expcob.tavg-u-hxy-sea.day.GLB", + "ocnBgchem.fg13co2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fg14co2abio.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intpoc.tavg-u-hxy-sea.day.GLB", + "ocnBgchem.o2min.tavg-u-hxy-sea.day.GLB", + "ocnBgchem.phycalc.tavg-ol-hxy-sea.day.GLB", + "ocnBgchem.phydiat.tavg-d0m-hxy-sea.day.GLB", + "ocnBgchem.phydiaz.tavg-d0m-hxy-sea.day.GLB", + "ocnBgchem.phymisc.tavg-d0m-hxy-sea.day.GLB", + "ocnBgchem.phynano.tavg-u-hxy-sea.day.GLB", + "ocnBgchem.phypico.tavg-ol-hxy-sea.day.GLB", + "ocnBgchem.zmeso.tavg-ol-hxy-sea.day.GLB", + "ocnBgchem.zmicro.tavg-ol-hxy-sea.day.GLB", + "ocnBgchem.zooc.tavg-ol-hxy-sea.day.GLB" + ] + }, + "land-hist": { + "Core": [ + "atmos.areacella.ti-u-hxy-u.fx.GLB", + "atmos.cl.tavg-al-hxy-u.mon.GLB", + "atmos.cli.tavg-al-hxy-u.mon.GLB", + "atmos.clivi.tavg-u-hxy-u.mon.GLB", + "atmos.clt.tavg-u-hxy-u.day.GLB", + "atmos.clt.tavg-u-hxy-u.mon.GLB", + "atmos.clw.tavg-al-hxy-u.mon.GLB", + "atmos.clwvi.tavg-u-hxy-u.mon.GLB", + "atmos.evspsbl.tavg-u-hxy-u.mon.GLB", + "atmos.hfls.tavg-u-hxy-u.mon.GLB", + "atmos.hfss.tavg-u-hxy-u.mon.GLB", + "atmos.hur.tavg-p19-hxy-air.mon.GLB", + "atmos.hur.tavg-p19-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.6hr.GLB", + "atmos.hurs.tavg-h2m-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.mon.GLB", + "atmos.hus.tavg-p19-hxy-u.day.GLB", + "atmos.hus.tavg-p19-hxy-u.mon.GLB", + "atmos.huss.tavg-h2m-hxy-u.day.GLB", + "atmos.huss.tavg-h2m-hxy-u.mon.GLB", + "atmos.huss.tpt-h2m-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.1hr.GLB", + "atmos.pr.tavg-u-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.day.GLB", + "atmos.pr.tavg-u-hxy-u.mon.GLB", + "atmos.prc.tavg-u-hxy-u.mon.GLB", + "atmos.prsn.tavg-u-hxy-u.mon.GLB", + "atmos.prw.tavg-u-hxy-u.mon.GLB", + "atmos.ps.tavg-u-hxy-u.day.GLB", + "atmos.ps.tavg-u-hxy-u.mon.GLB", + "atmos.psl.tavg-u-hxy-u.day.GLB", + "atmos.psl.tavg-u-hxy-u.mon.GLB", + "atmos.rlds.tavg-u-hxy-u.mon.GLB", + "atmos.rldscs.tavg-u-hxy-u.mon.GLB", + "atmos.rlus.tavg-u-hxy-u.mon.GLB", + "atmos.rluscs.tavg-u-hxy-u.mon.GLB", + "atmos.rlut.tavg-u-hxy-u.mon.GLB", + "atmos.rlutcs.tavg-u-hxy-u.mon.GLB", + "atmos.rsds.tavg-u-hxy-u.day.GLB", + "atmos.rsds.tavg-u-hxy-u.mon.GLB", + "atmos.rsdscs.tavg-u-hxy-u.mon.GLB", + "atmos.rsdt.tavg-u-hxy-u.mon.GLB", + "atmos.rsus.tavg-u-hxy-u.mon.GLB", + "atmos.rsuscs.tavg-u-hxy-u.mon.GLB", + "atmos.rsut.tavg-u-hxy-u.mon.GLB", + "atmos.rsutcs.tavg-u-hxy-u.mon.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.day.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.mon.GLB", + "atmos.sftlf.ti-u-hxy-u.fx.GLB", + "atmos.ta.tavg-p19-hxy-air.day.GLB", + "atmos.ta.tavg-p19-hxy-air.mon.GLB", + "atmos.ta.tpt-p3-hxy-air.6hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.day.GLB", + "atmos.tas.tavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tmax-h2m-hxy-u.day.GLB", + "atmos.tas.tmaxavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tmin-h2m-hxy-u.day.GLB", + "atmos.tas.tminavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tpt-h2m-hxy-u.3hr.GLB", + "atmos.tauu.tavg-u-hxy-u.mon.GLB", + "atmos.tauv.tavg-u-hxy-u.mon.GLB", + "atmos.ts.tavg-u-hxy-u.mon.GLB", + "atmos.ua.tavg-p19-hxy-air.day.GLB", + "atmos.ua.tavg-p19-hxy-air.mon.GLB", + "atmos.ua.tpt-p3-hxy-air.6hr.GLB", + "atmos.uas.tavg-h10m-hxy-u.day.GLB", + "atmos.uas.tavg-h10m-hxy-u.mon.GLB", + "atmos.uas.tpt-h10m-hxy-u.3hr.GLB", + "atmos.va.tavg-p19-hxy-air.day.GLB", + "atmos.va.tavg-p19-hxy-air.mon.GLB", + "atmos.va.tpt-p3-hxy-air.6hr.GLB", + "atmos.vas.tavg-h10m-hxy-u.day.GLB", + "atmos.vas.tavg-h10m-hxy-u.mon.GLB", + "atmos.vas.tpt-h10m-hxy-u.3hr.GLB", + "atmos.wap.tavg-p19-hxy-air.mon.GLB", + "atmos.wap.tavg-p19-hxy-u.day.GLB", + "atmos.zg.tavg-p19-hxy-air.day.GLB", + "atmos.zg.tavg-p19-hxy-air.mon.GLB", + "land.evspsblsoi.tavg-u-hxy-lnd.mon.GLB", + "land.evspsblveg.tavg-u-hxy-lnd.mon.GLB", + "land.lai.tavg-u-hxy-lnd.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.mon.GLB", + "land.mrros.tavg-u-hxy-lnd.mon.GLB", + "land.mrso.tavg-u-hxy-lnd.mon.GLB", + "land.mrsofc.ti-u-hxy-lnd.fx.GLB", + "land.mrsol.tavg-d10cm-hxy-lnd.mon.GLB", + "land.orog.ti-u-hxy-u.fx.GLB", + "land.rootd.ti-u-hxy-lnd.fx.GLB", + "land.sftgif.ti-u-hxy-u.fx.GLB", + "land.slthick.ti-sl-hxy-lnd.fx.GLB", + "landIce.mrfso.tavg-u-hxy-lnd.mon.GLB", + "landIce.snc.tavg-u-hxy-lnd.mon.GLB", + "landIce.snw.tavg-u-hxy-lnd.mon.GLB", + "ocean.areacello.ti-u-hxy-u.fx.GLB", + "ocean.basin.ti-u-hxy-u.fx.GLB", + "ocean.bigthetao.tavg-ol-hxy-sea.mon.GLB", + "ocean.deptho.ti-u-hxy-sea.fx.GLB", + "ocean.hfds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfgeou.ti-u-hxy-sea.fx.GLB", + "ocean.masscello.tavg-ol-hxy-sea.mon.GLB", + "ocean.masscello.ti-ol-hxy-sea.fx.GLB", + "ocean.mlotst.tavg-u-hxy-sea.mon.GLB", + "ocean.sftof.ti-u-hxy-u.fx.GLB", + "ocean.so.tavg-ol-hxy-sea.mon.GLB", + "ocean.sos.tavg-u-hxy-sea.day.GLB", + "ocean.sos.tavg-u-hxy-sea.mon.GLB", + "ocean.tauuo.tavg-u-hxy-sea.mon.GLB", + "ocean.tauvo.tavg-u-hxy-sea.mon.GLB", + "ocean.thetao.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcello.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcello.ti-ol-hxy-sea.fx.GLB", + "ocean.tos.tavg-u-hxy-sea.day.GLB", + "ocean.tos.tavg-u-hxy-sea.mon.GLB", + "ocean.umo.tavg-ol-hxy-sea.mon.GLB", + "ocean.uo.tavg-ol-hxy-sea.mon.GLB", + "ocean.vmo.tavg-ol-hxy-sea.mon.GLB", + "ocean.vo.tavg-ol-hxy-sea.mon.GLB", + "ocean.wmo.tavg-ol-hxy-sea.mon.GLB", + "ocean.wo.tavg-ol-hxy-sea.mon.GLB", + "ocean.zos.tavg-u-hxy-sea.day.GLB", + "ocean.zos.tavg-u-hxy-sea.mon.GLB", + "ocean.zostoga.tavg-u-hm-sea.mon.GLB", + "seaIce.siconc.tavg-u-hxy-u.day.GLB", + "seaIce.siconc.tavg-u-hxy-u.mon.GLB", + "seaIce.simass.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-si.mon.GLB", + "seaIce.sitimefrac.tavg-u-hxy-sea.mon.GLB", + "seaIce.siu.tavg-u-hxy-si.mon.GLB", + "seaIce.siv.tavg-u-hxy-si.mon.GLB", + "seaIce.snd.tavg-u-hxy-sn.mon.GLB", + "seaIce.ts.tavg-u-hxy-si.mon.GLB" + ], + "High": [ + "aerosol.abs550aer.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550bc.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550dust.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550no3.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550oa.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550so4.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550ss.tavg-u-hxy-u.mon.GLB", + "aerosol.airmass.tavg-al-hxy-u.mon.GLB", + "aerosol.aoanh.tavg-al-hxy-u.mon.NH", + "aerosol.bry.tavg-p39-hy-air.mon.GLB", + "aerosol.bs550aer.tpt-al-hxy-u.6hr.GLB", + "aerosol.c2h6.tavg-al-hxy-u.mon.GLB", + "aerosol.c3h6.tavg-al-hxy-u.mon.GLB", + "aerosol.c3h8.tavg-al-hxy-u.mon.GLB", + "aerosol.ccldncl.tavg-u-hxy-ccl.mon.GLB", + "aerosol.ccn.tavg-u-hxy-ccl.mon.30S-90S", + "aerosol.ccn.tavg-u-hxy-ccl.mon.GLB", + "aerosol.ccn1.tavg-al-hxy-u.mon.30S-90S", + "aerosol.ccn1.tavg-al-hxy-u.mon.GLB", + "aerosol.ccnp02.tavg-al-hxy-u.mon.30S-90S", + "aerosol.ccnp02.tavg-al-hxy-u.mon.GLB", + "aerosol.cdnc.tavg-al-hxy-u.mon.30S-90S", + "aerosol.cdnc.tavg-al-hxy-u.mon.GLB", + "aerosol.cfc114.tavg-al-hxy-u.mon.GLB", + "aerosol.ch3coch3.tavg-al-hxy-u.mon.GLB", + "aerosol.cheaqpso4.tavg-al-hxy-u.mon.GLB", + "aerosol.chegpso4.tavg-al-hxy-u.mon.GLB", + "aerosol.chepasoa.tavg-u-hxy-u.mon.GLB", + "aerosol.chepsoa.tavg-u-hxy-u.mon.GLB", + "aerosol.cly.tavg-p39-hy-air.mon.GLB", + "aerosol.co.tavg-al-hxy-u.mon.GLB", + "aerosol.co.tavg-h2m-hxy-u.day.GLB", + "aerosol.cod.tavg-u-hxy-u.day.GLB", + "aerosol.cod.tavg-u-hxy-u.mon.30S-90S", + "aerosol.cod.tavg-u-hxy-u.mon.GLB", + "aerosol.conccn.tavg-al-hxy-u.mon.GLB", + "aerosol.conccn.tpt-u-hs-u.3hr.GLB", + "aerosol.drybc.tavg-u-hxy-u.mon.GLB", + "aerosol.drydust.tavg-u-hxy-u.mon.GLB", + "aerosol.dryno3.tavg-u-hxy-u.mon.GLB", + "aerosol.dryo3.tavg-u-hxy-u.mon.GLB", + "aerosol.dryoa.tavg-u-hxy-u.mon.GLB", + "aerosol.dryso2.tavg-u-hxy-u.mon.GLB", + "aerosol.dryso4.tavg-u-hxy-u.mon.GLB", + "aerosol.dryss.tavg-u-hxy-u.mon.GLB", + "aerosol.ec550aer.tavg-al-hxy-u.mon.GLB", + "aerosol.ec550aer.tpt-u-hxy-u.6hr.GLB", + "aerosol.emiaco.tavg-u-hxy-u.mon.GLB", + "aerosol.emianox.tavg-u-hxy-u.mon.GLB", + "aerosol.emiaoa.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbbc.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbch4.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbco.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbdms.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbnh3.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbnox.tavg-u-hxy-u.mon.GLB", + "aerosol.emibboa.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbso2.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbvoc.tavg-u-hxy-u.mon.GLB", + "aerosol.emibc.tavg-u-hxy-u.mon.GLB", + "aerosol.emibvoc.tavg-u-hxy-u.mon.GLB", + "aerosol.emico.tavg-u-hxy-u.mon.GLB", + "aerosol.emidms.tavg-u-hxy-u.mon.30S-90S", + "aerosol.emidms.tavg-u-hxy-u.mon.GLB", + "aerosol.emidust.tavg-u-hxy-u.mon.GLB", + "aerosol.emiisop.tavg-u-hxy-u.mon.GLB", + "aerosol.emilnox.tavg-al-hxy-u.mon.GLB", + "aerosol.eminh3.tavg-u-hxy-u.mon.GLB", + "aerosol.eminox.tavg-u-hxy-u.mon.GLB", + "aerosol.emioa.tavg-u-hxy-u.mon.GLB", + "aerosol.emiso2.tavg-u-hxy-u.mon.GLB", + "aerosol.emiso4.tavg-u-hxy-u.mon.GLB", + "aerosol.emiss.tavg-u-hxy-u.mon.30S-90S", + "aerosol.emiss.tavg-u-hxy-u.mon.GLB", + "aerosol.emivoc.tavg-u-hxy-u.mon.GLB", + "aerosol.h2o.tavg-al-hxy-u.mon.GLB", + "aerosol.h2o.tavg-p39-hy-air.mon.GLB", + "aerosol.hcfc22.tavg-al-hxy-u.mon.GLB", + "aerosol.hcho.tavg-al-hxy-u.mon.GLB", + "aerosol.hcl.tavg-al-hxy-u.mon.GLB", + "aerosol.hcl.tavg-p39-hy-air.mon.GLB", + "aerosol.hfc125.tavg-al-hxy-u.mon.GLB", + "aerosol.hfc134a.tavg-al-hxy-u.mon.GLB", + "aerosol.hno3.tavg-al-hxy-u.mon.GLB", + "aerosol.hno3.tavg-p39-hy-air.mon.GLB", + "aerosol.ho2.tavg-p39-hy-air.mon.GLB", + "aerosol.isop.tavg-al-hxy-u.mon.GLB", + "aerosol.jno2.tavg-al-hxy-u.mon.GLB", + "aerosol.lossch4.tavg-al-hxy-u.mon.GLB", + "aerosol.lossco.tavg-al-hxy-u.mon.GLB", + "aerosol.lossn2o.tavg-al-hxy-u.mon.GLB", + "aerosol.lwp.tavg-u-hxy-u.mon.GLB", + "aerosol.mmraerh2o.tavg-al-hxy-u.mon.GLB", + "aerosol.mmraerh2o.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmraerh2o.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrbc.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrbc.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrbc.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrbc.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrdust.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrdust.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrdust.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrdust.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrnh4.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrnh4.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrnh4.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrnh4.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrno3.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrno3.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrno3.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrno3.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmroa.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmroa.tavg-al-hxy-u.mon.GLB", + "aerosol.mmroa.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmroa.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrpm1.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrpm1.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrpm2p5.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrpm2p5.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrso4.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrso4.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrso4.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrso4.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrsoa.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrsoa.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrsoa.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrss.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrss.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrss.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrss.tpt-h2m-hs-u.3hr.GLB", + "aerosol.nh50.tavg-al-hxy-u.mon.GLB", + "aerosol.no.tavg-al-hxy-u.mon.GLB", + "aerosol.no2.tavg-al-hxy-u.mon.GLB", + "aerosol.no2.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.noy.tavg-p39-hy-air.mon.GLB", + "aerosol.o3.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.o3loss.tavg-al-hxy-u.mon.GLB", + "aerosol.o3prod.tavg-al-hxy-u.mon.GLB", + "aerosol.od443aer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550aer.tavg-u-hxy-u.day.GLB", + "aerosol.od550aer.tavg-u-hxy-u.mon.30S-90S", + "aerosol.od550aer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550aerh2o.tavg-u-hxy-u.mon.GLB", + "aerosol.od550bb.tavg-u-hxy-u.mon.GLB", + "aerosol.od550bc.tavg-u-hxy-u.mon.GLB", + "aerosol.od550csaer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550dust.tavg-u-hxy-u.mon.GLB", + "aerosol.od550lt1aer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550no3.tavg-u-hxy-u.mon.GLB", + "aerosol.od550oa.tavg-u-hxy-u.mon.GLB", + "aerosol.od550so4.tavg-u-hxy-u.mon.GLB", + "aerosol.od550soa.tavg-u-hxy-u.mon.GLB", + "aerosol.od550ss.tavg-u-hxy-u.mon.GLB", + "aerosol.od865aer.tavg-u-hxy-u.mon.GLB", + "aerosol.oh.tavg-al-hxy-u.mon.GLB", + "aerosol.oh.tavg-p39-hy-air.mon.GLB", + "aerosol.pan.tavg-al-hxy-u.mon.GLB", + "aerosol.photo1d.tavg-al-hxy-u.mon.GLB", + "aerosol.pod0.tsum-u-hxy-u.mon.GLB", + "aerosol.reffccwctop.tavg-u-hxy-cl.mon.GLB", + "aerosol.reffclwtop.tavg-u-hxy-cl.mon.30S-90S", + "aerosol.reffclwtop.tavg-u-hxy-cl.mon.GLB", + "aerosol.rluscsaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rlutaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rlutcsaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rsutaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rsutcsaf.tavg-u-hxy-u.mon.GLB", + "aerosol.sfpm1.tavg-h2m-hxy-u.day.GLB", + "aerosol.sfpm10.tavg-al-hxy-u.mon.30S-90S", + "aerosol.sfpm10.tavg-al-hxy-u.mon.GLB", + "aerosol.sfpm10.tavg-h2m-hxy-u.day.GLB", + "aerosol.sfpm25.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.sfpm25.tavg-h2m-hxy-u.day.GLB", + "aerosol.so2.tavg-al-hxy-u.mon.30S-90S", + "aerosol.so2.tavg-al-hxy-u.mon.GLB", + "aerosol.so2.tavg-h2m-hxy-u.day.GLB", + "aerosol.so2.tpt-h2m-hs-u.3hr.GLB", + "aerosol.tatp.tavg-u-hxy-u.mon.GLB", + "aerosol.toz.tavg-u-hxy-u.day.GLB", + "aerosol.toz.tavg-u-hxy-u.mon.GLB", + "aerosol.tropoz.tavg-u-hxy-u.mon.GLB", + "aerosol.ttop.tavg-u-hxy-cl.mon.GLB", + "aerosol.ua.tavg-10hPa-hxy-air.day.GLB", + "aerosol.vt100.tavg-100hPa-hy-air.mon.GLB", + "aerosol.wa.tavg-al-hxy-u.mon.GLB", + "aerosol.wetbc.tavg-u-hxy-u.mon.GLB", + "aerosol.wetdust.tavg-u-hxy-u.mon.GLB", + "aerosol.wetoa.tavg-u-hxy-u.mon.GLB", + "aerosol.wetso2.tavg-u-hxy-u.mon.GLB", + "aerosol.wetso4.tavg-u-hxy-u.mon.GLB", + "aerosol.wetss.tavg-u-hxy-u.mon.GLB", + "aerosol.zg.tavg-10hPa-hxy-air.day.GLB", + "atmos.albisccp.tavg-u-hxy-cl.mon.30S-90S", + "atmos.bldep.tavg-u-hxy-u.mon.GLB", + "atmos.bldep.tmax-u-hxy-u.day.GLB", + "atmos.bldep.tmin-u-hxy-u.day.GLB", + "atmos.cl.tavg-al-hxy-u.mon.30S-90S", + "atmos.clc.tavg-al-hxy-u.mon.30S-90S", + "atmos.clc.tavg-al-hxy-u.mon.GLB", + "atmos.clcalipso.tavg-220hPa-hxy-air.mon.30S-90S", + "atmos.clcalipso.tavg-220hPa-hxy-air.mon.GLB", + "atmos.clcalipso.tavg-560hPa-hxy-air.mon.30S-90S", + "atmos.clcalipso.tavg-560hPa-hxy-air.mon.GLB", + "atmos.clcalipso.tavg-840hPa-hxy-air.mon.30S-90S", + "atmos.clcalipso.tavg-840hPa-hxy-air.mon.GLB", + "atmos.clcalipso.tavg-h40-hxy-air.mon.30S-90S", + "atmos.cldnci.tavg-u-hxy-cl.mon.GLB", + "atmos.cldncl.tavg-u-hxy-cl.mon.GLB", + "atmos.cldnvi.tavg-u-hxy-u.day.GLB", + "atmos.cldnvi.tavg-u-hxy-u.mon.GLB", + "atmos.cli.tavg-al-hxy-u.mon.30S-90S", + "atmos.clic.tavg-al-hxy-u.mon.30S-90S", + "atmos.clis.tavg-al-hxy-u.mon.30S-90S", + "atmos.clisccp.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clisccp.tavg-p7c-hxy-air.mon.GLB", + "atmos.clivi.tavg-u-hxy-u.mon.30S-90S", + "atmos.clivimodis.tavg-u-hxy-u.mon.30S-90S", + "atmos.clmodis.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clmodis.tavg-p7c-hxy-air.mon.GLB", + "atmos.clmodisice.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clmodisice.tavg-p7c-hxy-air.mon.GLB", + "atmos.clmodisiceReff.tavg-u-hxy-u.mon.GLB", + "atmos.clmodisliquid.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clmodisliquid.tavg-p7c-hxy-air.mon.GLB", + "atmos.clmodisliquidReff.tavg-u-hxy-u.mon.GLB", + "atmos.cls.tavg-al-hxy-u.mon.30S-90S", + "atmos.clt.tavg-u-hxy-u.mon.30S-90S", + "atmos.cltc.tavg-u-hxy-u.mon.GLB", + "atmos.cltcalipso.tavg-u-hxy-u.mon.30S-90S", + "atmos.cltisccp.tavg-u-hxy-u.mon.30S-90S", + "atmos.cltmodis.tavg-u-hxy-u.mon.30S-90S", + "atmos.clw.tavg-al-hxy-u.mon.30S-90S", + "atmos.clwc.tavg-al-hxy-u.mon.30S-90S", + "atmos.clws.tavg-al-hxy-u.mon.30S-90S", + "atmos.clwvi.tavg-u-hxy-u.mon.30S-90S", + "atmos.clwvimodis.tavg-u-hxy-u.mon.30S-90S", + "atmos.co2.tavg-al-hxy-u.mon.GLB", + "atmos.co2.tavg-p19-hxy-air.mon.GLB", + "atmos.co2.tclm-p19-hxy-air.mon.GLB", + "atmos.co23D.tavg-al-hxy-u.mon.GLB", + "atmos.co2mass.tavg-u-hm-u.mon.GLB", + "atmos.dmc.tavg-alh-hxy-u.mon.30S-90S", + "atmos.edt.tavg-al-hxy-u.mon.30S-90S", + "atmos.evspsbl.tavg-u-hxy-lnd.day.GLB", + "atmos.evu.tavg-al-hxy-u.mon.30S-90S", + "atmos.fco2antt.tavg-u-hxy-u.mon.GLB", + "atmos.fco2fos.tavg-u-hxy-u.mon.GLB", + "atmos.fco2nat.tavg-u-hxy-u.mon.GLB", + "atmos.hfls.tavg-u-hxy-u.mon.30S-90S", + "atmos.hfss.tavg-u-hxy-u.mon.30S-90S", + "atmos.hur.tavg-al-hxy-u.mon.30S-90S", + "atmos.hur.tavg-al-hxy-u.mon.GLB", + "atmos.hur.tavg-p19-hxy-air.mon.30S-90S", + "atmos.hurs.tavg-h2m-hxy-u.mon.30S-90S", + "atmos.hurs.tpt-h2m-hxy-u.3hr.GLB", + "atmos.hus.tavg-al-hxy-u.mon.30S-90S", + "atmos.hus.tavg-al-hxy-u.mon.GLB", + "atmos.hus.tavg-p19-hxy-u.mon.30S-90S", + "atmos.hus.tpt-al-hxy-u.6hr.GLB", + "atmos.hus.tpt-p7h-hxy-air.6hr.GLB", + "atmos.huss.tavg-h2m-hxy-u.mon.30S-90S", + "atmos.huss.tpt-h2m-hxy-u.1hr.GLB", + "atmos.loadbc.tavg-u-hxy-u.day.GLB", + "atmos.loadoa.tavg-u-hxy-u.day.GLB", + "atmos.loadpoa.tavg-u-hxy-u.day.GLB", + "atmos.mc.tavg-alh-hxy-u.mon.GLB", + "atmos.mcd.tavg-alh-hxy-u.mon.30S-90S", + "atmos.mcu.tavg-alh-hxy-u.mon.30S-90S", + "atmos.mcu.tavg-alh-hxy-u.mon.GLB", + "atmos.pctisccp.tavg-u-hxy-cl.mon.30S-90S", + "atmos.pfull.tavg-al-hxy-u.mon.GLB", + "atmos.pfull.tclm-al-hxy-u.mon.30S-90S", + "atmos.phalf.tavg-alh-hxy-u.mon.GLB", + "atmos.pr.tavg-u-hxy-u.mon.30S-90S", + "atmos.pr.tmax-u-hxy-u.day.GLB", + "atmos.pr.tpt-u-hxy-u.6hr.GLB", + "atmos.prc.tavg-u-hxy-u.mon.30S-90S", + "atmos.prra.tavg-u-hxy-lnd.day.GLB", + "atmos.prra.tavg-u-hxy-u.mon.30S-90S", + "atmos.prra.tavg-u-hxy-u.mon.GLB", + "atmos.prsn.tavg-u-hxy-u.3hr.GLB", + "atmos.prsn.tavg-u-hxy-u.day.GLB", + "atmos.prsn.tavg-u-hxy-u.mon.30S-90S", + "atmos.prw.tavg-u-hxy-u.day.GLB", + "atmos.prw.tavg-u-hxy-u.mon.30S-90S", + "atmos.ps.tavg-u-hxy-u.1hr.GLB", + "atmos.ps.tavg-u-hxy-u.mon.30S-90S", + "atmos.ps.tpt-u-hxy-u.6hr.GLB", + "atmos.psl.tavg-u-hxy-u.mon.30S-90S", + "atmos.psl.tpt-u-hxy-u.1hr.GLB", + "atmos.psl.tpt-u-hxy-u.6hr.GLB", + "atmos.ptp.tavg-u-hxy-u.mon.GLB", + "atmos.reffcclwtop.tavg-u-hxy-ccl.mon.GLB", + "atmos.reffclic.tavg-al-hxy-ccl.mon.30S-90S", + "atmos.reffclis.tavg-al-hxy-scl.mon.30S-90S", + "atmos.reffclwc.tavg-al-hxy-ccl.mon.30S-90S", + "atmos.reffclws.tavg-al-hxy-scl.mon.30S-90S", + "atmos.reffsclwtop.tavg-u-hxy-scl.mon.GLB", + "atmos.rld.tavg-alh-hxy-u.mon.GLB", + "atmos.rld4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rldcs.tavg-alh-hxy-u.mon.GLB", + "atmos.rldcs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rlds.tavg-u-hxy-u.1hr.GLB", + "atmos.rlds.tavg-u-hxy-u.3hr.GLB", + "atmos.rlds.tavg-u-hxy-u.day.GLB", + "atmos.rlds.tavg-u-hxy-u.mon.30S-90S", + "atmos.rldscs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rls.tavg-u-hxy-u.mon.GLB", + "atmos.rlu.tavg-alh-hxy-u.mon.GLB", + "atmos.rlu4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rlucs.tavg-alh-hxy-u.mon.GLB", + "atmos.rlucs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rlus.tavg-u-hxy-u.day.GLB", + "atmos.rlus.tavg-u-hxy-u.mon.30S-90S", + "atmos.rlut.tavg-u-hxy-u.mon.30S-90S", + "atmos.rlut4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rlutcs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rlutcs4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rsd.tavg-alh-hxy-u.mon.GLB", + "atmos.rsd4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsdcs.tavg-alh-hxy-u.mon.GLB", + "atmos.rsdcs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsds.tavg-u-hxy-u.1hr.GLB", + "atmos.rsds.tavg-u-hxy-u.3hr.GLB", + "atmos.rsds.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsdscs.tavg-u-hxy-u.day.GLB", + "atmos.rsdscs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsdt.tavg-u-hxy-u.mon.30S-90S", + "atmos.rss.tavg-u-hxy-u.mon.GLB", + "atmos.rsu.tavg-alh-hxy-u.mon.GLB", + "atmos.rsu4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsucs.tavg-alh-hxy-u.mon.GLB", + "atmos.rsucs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsus.tavg-u-hxy-u.day.GLB", + "atmos.rsus.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsuscs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsut.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsut4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rsutcs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsutcs4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rtmt.tavg-u-hxy-u.mon.GLB", + "atmos.rv850.tpt-850hPa-hxy-air.6hr.GLB", + "atmos.scldncl.tavg-u-hxy-scl.mon.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.mon.30S-90S", + "atmos.sfcWind.tmax-h10m-hxy-u.day.GLB", + "atmos.ta.tavg-al-hxy-u.mon.30S-90S", + "atmos.ta.tavg-al-hxy-u.mon.GLB", + "atmos.ta.tavg-p19-hxy-air.mon.30S-90S", + "atmos.ta.tavg-p39-hy-air.mon.GLB", + "atmos.ta.tpt-al-hxy-u.6hr.GLB", + "atmos.ta.tpt-p5u-hxy-u.6hr.GLB", + "atmos.ta.tpt-p7h-hxy-air.6hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.1hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.mon.30S-90S", + "atmos.tas.tmaxavg-h2m-hxy-u.mon.30S-90S", + "atmos.tas.tminavg-h2m-hxy-u.mon.30S-90S", + "atmos.tnt.tavg-al-hxy-u.mon.GLB", + "atmos.tntrl.tavg-al-hxy-u.mon.GLB", + "atmos.tntrs.tavg-al-hxy-u.mon.GLB", + "atmos.ts.tavg-u-hxy-u.mon.30S-90S", + "atmos.ts.tpt-u-hxy-u.3hr.GLB", + "atmos.ts.tpt-u-hxy-u.6hr.GLB", + "atmos.ua.tavg-al-hxy-u.mon.GLB", + "atmos.ua.tavg-p19-hxy-air.mon.30S-90S", + "atmos.ua.tavg-p39-hy-air.mon.GLB", + "atmos.ua.tpt-al-hxy-u.6hr.GLB", + "atmos.ua.tpt-h100m-hxy-u.1hr.GLB", + "atmos.ua.tpt-p5u-hxy-air.6hr.GLB", + "atmos.ua.tpt-p7h-hxy-air.6hr.GLB", + "atmos.uas.tavg-h10m-hxy-u.mon.30S-90S", + "atmos.uas.tpt-h10m-hxy-u.1hr.GLB", + "atmos.va.tavg-al-hxy-u.mon.GLB", + "atmos.va.tavg-p19-hxy-air.mon.30S-90S", + "atmos.va.tavg-p39-hy-air.mon.GLB", + "atmos.va.tpt-al-hxy-u.6hr.GLB", + "atmos.va.tpt-h100m-hxy-u.1hr.GLB", + "atmos.va.tpt-p5u-hxy-air.6hr.GLB", + "atmos.va.tpt-p7h-hxy-air.6hr.GLB", + "atmos.vas.tavg-h10m-hxy-u.mon.30S-90S", + "atmos.vas.tpt-h10m-hxy-u.1hr.GLB", + "atmos.wap.tavg-p19-hxy-air.mon.30S-90S", + "atmos.wsg.tmax-h100m-hxy-u.1hr.GLB", + "atmos.wsg.tmax-h10m-hxy-u.1hr.GLB", + "atmos.zg.tavg-1000hPa-hxy-air.day.GLB", + "atmos.zg.tavg-500hPa-hxy-air.day.GLB", + "atmos.zg.tavg-al-hxy-u.mon.GLB", + "atmos.zg.tavg-p19-hxy-air.mon.30S-90S", + "atmos.zg.tavg-p39-hy-air.mon.GLB", + "atmos.zg.tpt-500hPa-hxy-air.6hr.GLB", + "atmos.zg.tpt-al-hxy-u.6hr.GLB", + "atmos.zg.tpt-p7h-hxy-air.6hr.GLB", + "atmos.ztp.tavg-u-hxy-u.mon.GLB", + "atmosChem.c2h4.tavg-al-hxy-u.mon.GLB", + "atmosChem.c2h5oh.tavg-al-hxy-u.mon.GLB", + "atmosChem.c4h10.tavg-al-hxy-u.mon.GLB", + "atmosChem.cfc11.tavg-u-hm-u.mon.GLB", + "atmosChem.cfc113.tavg-u-hm-u.mon.GLB", + "atmosChem.cfc12.tavg-u-hm-u.mon.GLB", + "atmosChem.ch3oh.tavg-al-hxy-u.mon.GLB", + "atmosChem.ch4.tavg-al-hxy-u.mon.GLB", + "atmosChem.ch4.tavg-p39-hy-air.mon.GLB", + "atmosChem.ch4losssoil.tavg-u-hxy-u.mon.GLB", + "atmosChem.ch4ref.ti-al-hxy-u.fx.GLB", + "atmosChem.chegph2oo1d.tavg-al-hxy-u.mon.GLB", + "atmosChem.chepnh4.tavg-al-hxy-u.mon.GLB", + "atmosChem.chepno3.tavg-al-hxy-u.mon.GLB", + "atmosChem.dms.tavg-al-hxy-u.mon.30S-90S", + "atmosChem.dms.tavg-al-hxy-u.mon.GLB", + "atmosChem.do3chm.tavg-al-hxy-u.mon.GLB", + "atmosChem.dryh2.tavg-u-hxy-u.mon.GLB", + "atmosChem.dryhno3.tavg-u-hxy-u.mon.GLB", + "atmosChem.drynh3.tavg-u-hxy-u.mon.GLB", + "atmosChem.drynh4.tavg-u-hxy-u.mon.GLB", + "atmosChem.drynoy.tavg-u-hxy-u.mon.GLB", + "atmosChem.e90inst.tpt-al-hxy-u.mon.GLB", + "atmosChem.emiach4.tavg-u-hxy-u.mon.GLB", + "atmosChem.emiavnox.tavg-al-hxy-u.mon.GLB", + "atmosChem.emic2h4.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic2h5oh.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic2h6.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic3h6.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic3h8.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic4h10.tavg-u-hxy-u.mon.GLB", + "atmosChem.emich3oh.tavg-u-hxy-u.mon.GLB", + "atmosChem.emich4.tavg-u-hxy-u.mon.GLB", + "atmosChem.emih2.tavg-u-hxy-u.mon.GLB", + "atmosChem.emilkch4.tavg-u-hxy-u.mon.GLB", + "atmosChem.h2.tavg-al-hxy-u.mon.GLB", + "atmosChem.h2loss.tavg-al-hxy-u.mon.GLB", + "atmosChem.h2prod.tavg-al-hxy-u.mon.GLB", + "atmosChem.hcfc22.tavg-u-hm-u.mon.GLB", + "atmosChem.meanage.tavg-al-hxy-u.mon.GLB", + "atmosChem.meanage.tavg-p39-hy-air.mon.GLB", + "atmosChem.n2o.tavg-al-hxy-u.mon.GLB", + "atmosChem.n2o.tavg-p39-hy-air.mon.GLB", + "atmosChem.o3.tavg-al-hxy-u.mon.GLB", + "atmosChem.o3.tavg-p19-hxy-air.mon.GLB", + "atmosChem.o3.tavg-p39-hy-air.mon.GLB", + "atmosChem.o3.tpt-al-hxy-u.mon.GLB", + "atmosChem.o3ref.tclm-al-hxy-u.fx.GLB", + "atmosChem.o3ref.ti-al-hxy-u.fx.GLB", + "atmosChem.o3ste.tavg-al-hxy-u.mon.GLB", + "atmosChem.rlutch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rlutcsch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rlutcso3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rluto3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsutch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsutcsch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsutcso3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsuto3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.stratch4loss.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropch4loss.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropch4lossoh.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropdo3chm.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropo3ste.tavg-al-hxy-u.mon.GLB", + "atmosChem.wethno3.tavg-al-hxy-u.mon.GLB", + "atmosChem.wetnh3.tavg-u-hxy-u.mon.GLB", + "atmosChem.wetnh4.tavg-u-hxy-u.mon.GLB", + "atmosChem.wetno3.tavg-al-hxy-u.mon.GLB", + "atmosChem.wetnoy.tavg-u-hxy-u.mon.GLB", + "land.albc.tavg-u-hxy-veg.mon.GLB", + "land.areacellr.ti-u-hxy-u.fx.GLB", + "land.baresoilFrac.tavg-u-hxy-u.mon.GLB", + "land.burntFractionAll.tavg-u-hxy-u.mon.GLB", + "land.cGeologicStorage.tavg-u-hxy-u.mon.GLB", + "land.cLand.tavg-u-hxy-lnd.mon.GLB", + "land.cLeaf.tavg-u-hxy-lnd.mon.GLB", + "land.cLitter.tavg-u-hxy-lnd.mon.GLB", + "land.cnc.tavg-u-hxy-u.mon.GLB", + "land.cProduct.tavg-u-hxy-lnd.mon.GLB", + "land.cRoot.tavg-u-hxy-lnd.mon.GLB", + "land.cropFrac.tavg-u-hxy-u.mon.GLB", + "land.cSoil.tavg-d100cm-hxy-lnd.mon.GLB", + "land.cSoil.tavg-u-hxy-lnd.mon.GLB", + "land.cStem.tavg-u-hxy-lnd.mon.GLB", + "land.cVeg.tavg-u-hxy-lnd.mon.GLB", + "land.dcw.tavg-u-hxy-lnd.day.GLB", + "land.dslw.tavg-u-hxy-lnd.day.GLB", + "land.evspsblpot.tavg-u-hxy-lnd.day.GLB", + "land.evspsblpot.tavg-u-hxy-lnd.mon.GLB", + "land.fAnthDisturb.tavg-u-hxy-lnd.mon.GLB", + "land.fBNF.tavg-u-hxy-lnd.mon.GLB", + "land.fCLandToOcean.tavg-u-hxy-lnd.mon.GLB", + "land.fDeforestToAtmos.tavg-u-hxy-lnd.mon.GLB", + "land.fDeforestToProduct.tavg-u-hxy-lnd.mon.GLB", + "land.fFire.tavg-u-hxy-lnd.mon.GLB", + "land.fFireAll.tavg-u-hxy-lnd.mon.GLB", + "land.fFireNat.tavg-u-hxy-lnd.mon.GLB", + "land.fHarvestToAtmos.tavg-u-hxy-lnd.mon.GLB", + "land.fHarvestToGeologicStorage.tavg-u-hxy-lnd.mon.GLB", + "land.fHarvestToProduct.tavg-u-hxy-lnd.mon.GLB", + "land.fLitterSoil.tavg-u-hxy-lnd.mon.GLB", + "land.fLuc.tavg-u-hxy-lnd.mon.GLB", + "land.fN2O.tavg-u-hxy-lnd.mon.GLB", + "land.fNAnthDisturb.tavg-u-hxy-lnd.mon.GLB", + "land.fNdep.tavg-u-hxy-lnd.mon.GLB", + "land.fNfert.tavg-u-hxy-lnd.mon.GLB", + "land.fNgas.tavg-u-hxy-lnd.mon.GLB", + "land.fNgasFire.tavg-u-hxy-lnd.mon.GLB", + "land.fNLandToOcean.tavg-u-hxy-lnd.mon.GLB", + "land.fNleach.tavg-u-hxy-lnd.mon.GLB", + "land.fNLitterSoil.tavg-u-hxy-lnd.mon.GLB", + "land.fNloss.tavg-u-hxy-lnd.mon.GLB", + "land.fNnetmin.tavg-u-hxy-lnd.mon.GLB", + "land.fNOx.tavg-u-hxy-lnd.mon.GLB", + "land.fNProduct.tavg-u-hxy-lnd.mon.GLB", + "land.fNup.tavg-u-hxy-lnd.mon.GLB", + "land.fNVegLitter.tavg-u-hxy-lnd.mon.GLB", + "land.fNVegSoil.tavg-u-hxy-lnd.mon.GLB", + "land.fProductDecomp.tavg-u-hxy-lnd.mon.GLB", + "land.fVegLitter.tavg-u-hxy-lnd.mon.GLB", + "land.fVegSoil.tavg-u-hxy-lnd.mon.GLB", + "land.gpp.tavg-u-hxy-lnd.mon.GLB", + "land.gppVgt.tavg-u-hxy-multi.day.GLB", + "land.grassFrac.tavg-u-hxy-u.mon.GLB", + "land.laiVgt.tavg-u-hxy-multi.day.GLB", + "land.landCoverFrac.tavg-u-hxy-u.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.day.GLB", + "land.mrrob.tavg-u-hxy-lnd.day.GLB", + "land.mrros.tavg-u-hxy-lnd.day.GLB", + "land.mrsfl.tavg-sl-hxy-lnd.day.GLB", + "land.mrsfl.tavg-sl-hxy-lnd.mon.GLB", + "land.mrsll.tavg-sl-hxy-lnd.day.GLB", + "land.mrsll.tavg-sl-hxy-lnd.mon.GLB", + "land.mrso.tavg-u-hxy-lnd.day.GLB", + "land.mrsol.tavg-d10cm-hxy-lnd.day.GLB", + "land.mrsol.tavg-sl-hxy-lnd.day.GLB", + "land.mrsol.tavg-sl-hxy-lnd.mon.GLB", + "land.mrsow.tavg-u-hxy-lnd.day.GLB", + "land.mrtws.tavg-u-hxy-lnd.day.GLB", + "land.mrtws.tavg-u-hxy-lnd.mon.GLB", + "land.nbp.tavg-u-hxy-lnd.mon.GLB", + "land.nep.tavg-u-hxy-lnd.mon.GLB", + "land.nLand.tavg-u-hxy-lnd.mon.GLB", + "land.nLitter.tavg-u-hxy-lnd.mon.GLB", + "land.nMineral.tavg-u-hxy-lnd.mon.GLB", + "land.npp.tavg-u-hxy-lnd.mon.GLB", + "land.nProduct.tavg-u-hxy-lnd.mon.GLB", + "land.nSoil.tavg-u-hxy-lnd.mon.GLB", + "land.nVeg.tavg-u-hxy-lnd.mon.GLB", + "land.pastureFrac.tavg-u-hxy-u.mon.GLB", + "land.prveg.tavg-u-hxy-lnd.mon.GLB", + "land.ra.tavg-u-hxy-lnd.mon.GLB", + "land.residualFrac.tavg-u-hxy-u.mon.GLB", + "land.rh.tavg-u-hxy-lnd.mon.GLB", + "land.rivi.tavg-u-hxy-lnd.day.GLB", + "land.rivo.tavg-u-hxy-lnd.day.GLB", + "land.rsds.tavg-u-hxy-sn.mon.GLB", + "land.rsus.tavg-u-hxy-sn.mon.GLB", + "land.shrubFrac.tavg-u-hxy-u.mon.GLB", + "land.tas.tavg-u-hxy-u.1hr.GLB", + "land.tran.tavg-u-hxy-lnd.mon.GLB", + "land.treeFrac.tavg-u-hxy-u.mon.GLB", + "land.tsl.tavg-sl-hxy-lnd.mon.GLB", + "land.tslsi.tavg-u-hxy-u.day.GLB", + "land.vegFrac.tavg-u-hxy-u.mon.GLB", + "land.vegHeight.tavg-u-hxy-tree.mon.GLB", + "land.vegHeight.tavg-u-hxy-veg.mon.GLB", + "land.wetlandCH4.tavg-u-hxy-lnd.mon.GLB", + "land.wtd.tavg-u-hxy-lnd.day.GLB", + "landIce.pflw.tavg-u-hxy-lnd.mon.GLB", + "landIce.snd.tavg-u-hxy-lnd.mon.GLB", + "landIce.snm.tavg-u-hxy-lnd.mon.GLB", + "landIce.sootsn.tavg-u-hxy-lnd.mon.GLB", + "landIce.tpf.tavg-u-hxy-lnd.mon.GLB", + "ocean.absscint.tavg-op4-hxy-sea.mon.GLB", + "ocean.agessc.tavg-ol-hxy-sea.mon.GLB", + "ocean.bigthetao.tavg-ol-hm-sea.mon.GLB", + "ocean.bigthetao.tavg-ol-hxy-sea.dec.GLB", + "ocean.bigthetao.tavg-op20bar-hxy-sea.day.GLB", + "ocean.chcint.tavg-op4-hxy-sea.mon.GLB", + "ocean.ficeberg.tavg-ol-hxy-sea.mon.GLB", + "ocean.friver.tavg-u-hxy-sea.mon.GLB", + "ocean.hfbasin.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpmadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpmdiff.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpsmadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfds.tavg-u-hxy-sea.mon.30S-90S", + "ocean.hfx.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfx.tavg-u-hxy-sea.day.GLB", + "ocean.hfx.tavg-u-hxy-sea.mon.GLB", + "ocean.hfy.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfy.tavg-u-hxy-sea.day.GLB", + "ocean.hfy.tavg-u-hxy-sea.mon.GLB", + "ocean.htovgyre.tavg-u-hyb-sea.mon.GLB", + "ocean.htovovrt.tavg-u-hyb-sea.mon.GLB", + "ocean.masscello.tavg-ol-hxy-sea.dec.GLB", + "ocean.masso.tavg-u-hm-sea.dec.GLB", + "ocean.masso.tavg-u-hm-sea.mon.GLB", + "ocean.mlotst.tavg-u-hxy-sea.day.GLB", + "ocean.mlotst.tavg-u-hxy-sea.mon.30S-90S", + "ocean.mlotst.tmax-u-hxy-sea.mon.GLB", + "ocean.mlotst.tmin-u-hxy-sea.mon.GLB", + "ocean.mpw.tavg-u-hxy-sea.mon.GLB", + "ocean.mpw.tpt-u-hxy-sea.3hr.GLB", + "ocean.mpwswell.tavg-u-hxy-sea.mon.GLB", + "ocean.mpwswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.mpwwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.mpwwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.msftbarot.tavg-u-hxy-sea.mon.GLB", + "ocean.msftm.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftm.tavg-rho-hyb-sea.mon.GLB", + "ocean.msfty.tavg-ol-ht-sea.mon.GLB", + "ocean.msfty.tavg-rho-ht-sea.mon.GLB", + "ocean.obvfsq.tavg-ol-hxy-sea.mon.GLB", + "ocean.pbo.tavg-u-hxy-sea.mon.GLB", + "ocean.pfscint.tavg-op4-hxy-sea.mon.GLB", + "ocean.phcint.tavg-op4-hxy-sea.mon.GLB", + "ocean.pso.tavg-u-hxy-sea.mon.GLB", + "ocean.scint.tavg-op4-hxy-sea.mon.GLB", + "ocean.sduo.tavg-u-hxy-sea.mon.GLB", + "ocean.sduo.tpt-u-hxy-sea.3hr.GLB", + "ocean.sdvo.tavg-u-hxy-sea.mon.GLB", + "ocean.sdvo.tpt-u-hxy-sea.3hr.GLB", + "ocean.sfx.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfx.tavg-u-hxy-sea.mon.GLB", + "ocean.sfy.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfy.tavg-u-hxy-sea.mon.GLB", + "ocean.sltbasin.tavg-u-hyb-sea.mon.GLB", + "ocean.sltovgyre.tavg-u-hyb-sea.mon.GLB", + "ocean.sltovovrt.tavg-u-hyb-sea.mon.GLB", + "ocean.so.tavg-ol-hm-sea.mon.GLB", + "ocean.so.tavg-ol-hxy-sea.dec.GLB", + "ocean.so.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.sob.tavg-u-hxy-sea.mon.GLB", + "ocean.sos.tavg-u-hm-sea.mon.30S-90S", + "ocean.sos.tavg-u-hm-sea.mon.GLB", + "ocean.swh.tavg-u-hxy-sea.mon.GLB", + "ocean.swh.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhmax.tmax-u-hxy-sea.mon.GLB", + "ocean.swhmax.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhswell.tavg-u-hxy-sea.mon.GLB", + "ocean.swhswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.swhwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.tauuo.tavg-u-hxy-sea.3hr.GLB", + "ocean.tauuo.tavg-u-hxy-sea.dec.GLB", + "ocean.tauvo.tavg-u-hxy-sea.3hr.GLB", + "ocean.tauvo.tavg-u-hxy-sea.dec.GLB", + "ocean.thetao.tavg-ol-hm-sea.mon.GLB", + "ocean.thetao.tavg-ol-hxy-sea.dec.GLB", + "ocean.thetao.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.thetao.tavg-op20bar-hxy-sea.day.GLB", + "ocean.thkcello.tavg-ol-hxy-sea.dec.GLB", + "ocean.tob.tavg-u-hxy-sea.mon.GLB", + "ocean.tos.tavg-u-hm-sea.mon.GLB", + "ocean.tos.tavg-u-hxy-sea.mon.30S-90S", + "ocean.tos.tpt-u-hxy-sea.3hr.GLB", + "ocean.tossq.tavg-u-hxy-sea.day.GLB", + "ocean.umo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.uo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.uos.tavg-u-hxy-sea.day.GLB", + "ocean.vmo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.vo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.volcello.tavg-ol-hxy-sea.dec.GLB", + "ocean.volcello.tavg-ol-hxy-sea.mon.GLB", + "ocean.volcello.tavg-ol-hxy-sea.yr.GLB", + "ocean.volcello.ti-ol-hxy-sea.fx.GLB", + "ocean.volo.tavg-u-hm-sea.dec.GLB", + "ocean.volo.tavg-u-hm-sea.mon.GLB", + "ocean.vos.tavg-u-hxy-sea.day.GLB", + "ocean.wdir.tavg-u-hxy-sea.mon.GLB", + "ocean.wdir.tpt-u-hxy-sea.3hr.GLB", + "ocean.wdirswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wdirswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wdirwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wdirwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.wfcorr.tavg-u-hxy-sea.mon.GLB", + "ocean.wfo.tavg-u-hxy-sea.mon.GLB", + "ocean.wmo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.wo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.wpdir.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdir.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpdirswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdirswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpdirwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdirwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpp.tavg-u-hxy-sea.mon.GLB", + "ocean.wpp.tpt-u-hxy-sea.3hr.GLB", + "ocean.wppswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wppswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wppwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wppwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.zos.tavg-u-hxy-sea.mon.30S-90S", + "ocean.zossq.tavg-u-hxy-sea.mon.GLB", + "ocean.zostoga.tavg-u-hm-sea.day.GLB", + "ocnBgchem.bacc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.calc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chl.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chl.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chlcalc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chldiat.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chldiat.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chldiaz.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chldiaz.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chlmisc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chlmisc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chlpico.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chlpico.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.detoc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dfe.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.dfe.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.dfe.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissic.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.dissic.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissoc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dmso.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.expc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.expcalc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.fgco2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fsfe.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fsn.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.graz.tavg-ol-hxy-sea.mon.30S-90S", + "ocnBgchem.icfriver.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intdic.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intdoc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intparag.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbfe.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbn.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbp.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbsi.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpcalcite.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpn2.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpoc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpp.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpp.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppcalc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppdiat.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppdiaz.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppmisc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppnitrate.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpppico.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.nh4.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.nh4.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.no3.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.no3.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.o2.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.ocfriver.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.ph.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.ph.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phyc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phyc.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.phyc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phycalc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phycalc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phydiat.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phydiat.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phydiaz.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phydiaz.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phymisc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phymisc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phypico.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phypico.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.po4.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.pp.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.si.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.spco2.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.spco2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.talk.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zmeso.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zmeso.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zmicro.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zmicro.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zmisc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zmisc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zooc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zooc.tavg-ol-hxy-sea.mon.GLB", + "seaIce.evspsbl.tavg-u-hxy-si.mon.GLB", + "seaIce.prra.tavg-u-hxy-si.mon.GLB", + "seaIce.prsn.tavg-u-hxy-si.mon.GLB", + "seaIce.rlds.tavg-u-hxy-si.mon.GLB", + "seaIce.rlus.tavg-u-hxy-si.mon.GLB", + "seaIce.rsds.tavg-u-hxy-si.day.GLB", + "seaIce.rsds.tavg-u-hxy-si.mon.GLB", + "seaIce.rsus.tavg-u-hxy-si.day.GLB", + "seaIce.rsus.tavg-u-hxy-si.mon.GLB", + "seaIce.sbl.tavg-u-hxy-si.mon.GLB", + "seaIce.siage.tavg-u-hxy-si.day.GLB", + "seaIce.siage.tavg-u-hxy-si.mon.30S-90S", + "seaIce.siarea.tavg-u-hm-u.mon.NH", + "seaIce.siarea.tavg-u-hm-u.mon.SH", + "seaIce.siconc.tavg-u-hxy-u.mon.30S-90S", + "seaIce.siconca.tavg-u-hxy-u.day.GLB", + "seaIce.siconca.tavg-u-hxy-u.mon.GLB", + "seaIce.sidconcdyn.tavg-u-hxy-sea.mon.GLB", + "seaIce.sidconcth.tavg-u-hxy-sea.mon.GLB", + "seaIce.sidmassdyn.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthsi.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthwat.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmeltbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmeltlat.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmelttop.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassth.tavg-u-hxy-si.mon.GLB", + "seaIce.sieqthick.tavg-u-hxy-si.mon.GLB", + "seaIce.siextent.tavg-u-hm-u.mon.NH", + "seaIce.siextent.tavg-u-hm-u.mon.SH", + "seaIce.siflcondbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflcondtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sifllattop.tavg-u-hxy-si.mon.GLB", + "seaIce.siflsensbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflsenstop.tavg-u-hxy-si.mon.GLB", + "seaIce.siflswdbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sihc.tavg-u-hxy-sea.mon.GLB", + "seaIce.sisndmassdyn.tavg-u-hxy-si.mon.GLB", + "seaIce.sisndmasssi.tavg-u-hxy-si.mon.GLB", + "seaIce.sisndmasswind.tavg-u-hxy-si.mon.GLB", + "seaIce.sisnhc.tavg-u-hxy-si.mon.GLB", + "seaIce.sisnmass.tavg-u-hm-u.mon.NH", + "seaIce.sisnmass.tavg-u-hm-u.mon.SH", + "seaIce.sispeed.tavg-u-hxy-si.day.GLB", + "seaIce.sispeed.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-si.day.GLB", + "seaIce.sithick.tavg-u-hxy-si.mon.30S-90S", + "seaIce.sitimefrac.tavg-u-hxy-sea.day.GLB", + "seaIce.sitimefrac.tavg-u-hxy-sea.mon.30S-90S", + "seaIce.siu.tavg-u-hxy-si.day.GLB", + "seaIce.siu.tavg-u-hxy-si.mon.30S-90S", + "seaIce.siv.tavg-u-hxy-si.day.GLB", + "seaIce.siv.tavg-u-hxy-si.mon.30S-90S", + "seaIce.sivol.tavg-u-hm-u.mon.NH", + "seaIce.sivol.tavg-u-hm-u.mon.SH", + "seaIce.snc.tavg-u-hxy-si.mon.GLB", + "seaIce.snd.tavg-u-hxy-sn.day.GLB", + "seaIce.snd.tavg-u-hxy-sn.mon.30S-90S", + "seaIce.snm.tavg-u-hxy-si.mon.GLB", + "seaIce.snw.tavg-u-hxy-si.mon.GLB", + "seaIce.ts.tavg-u-hxy-si.day.GLB", + "seaIce.ts.tavg-u-hxy-si.mon.30S-90S" + ], + "Medium": [ + "atmos.hfdsnb.tavg-u-hxy-lnd.day.GLB", + "atmos.prrsn.tavg-u-hxy-lnd.day.GLB", + "atmos.prsn.tavg-u-hxy-u.6hr.GLB", + "atmos.prsnc.tavg-u-hxy-lnd.day.GLB", + "atmos.prsnsn.tavg-u-hxy-lnd.day.GLB", + "atmos.ps.tpt-u-hxy-u.1hr.GLB", + "atmos.rls.tavg-u-hxy-u.day.GLB", + "atmos.rsdsdiff.tavg-u-hxy-u.1hr.GLB", + "atmos.rss.tavg-u-hxy-u.day.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.1hr.GLB", + "atmos.snmsl.tavg-u-hxy-lnd.day.GLB", + "atmos.snrefr.tavg-u-hxy-lnd.day.GLB", + "atmos.snwc.tavg-u-hxy-lnd.day.GLB", + "atmos.ts.tavg-u-hxy-sn.day.GLB", + "atmos.ts.tavg-u-hxy-u.1hr.GLB", + "atmos.wsg.tmax-h100m-hxy-u.mon.GLB", + "atmos.wsg.tmax-h10m-hxy-u.mon.GLB", + "land.baresoilFrac.tavg-u-hxy-u.yr.GLB", + "land.cLitterCwd.tavg-u-hxy-lnd.mon.GLB", + "land.cLitterLut.tpt-u-hxy-multi.yr.GLB", + "land.cLitterSubSurf.tavg-u-hxy-lnd.mon.GLB", + "land.cLitterSurf.tavg-u-hxy-lnd.mon.GLB", + "land.cOther.tavg-u-hxy-lnd.mon.GLB", + "land.cProductLut.tpt-u-hxy-multi.yr.GLB", + "land.cropFrac.tavg-u-hxy-u.yr.GLB", + "land.cropFracC3.tavg-u-hxy-u.mon.GLB", + "land.cropFracC4.tavg-u-hxy-u.mon.GLB", + "land.cSoil.tavg-sl-hxy-lnd.mon.GLB", + "land.cSoilLut.tpt-u-hxy-multi.yr.GLB", + "land.cSoilPools.tavg-u-hxy-lnd.mon.GLB", + "land.cVeg.tavg-u-hxy-ng.mon.GLB", + "land.cVeg.tavg-u-hxy-shb.mon.GLB", + "land.cVeg.tavg-u-hxy-tree.mon.GLB", + "land.cVegLut.tpt-u-hxy-multi.yr.GLB", + "land.depthl.ti-u-hxy-u.fx.GLB", + "land.dgw.tavg-u-hxy-lnd.day.GLB", + "land.drivw.tavg-u-hxy-lnd.day.GLB", + "land.dsn.tavg-u-hxy-lnd.day.GLB", + "land.dsw.tavg-u-hxy-lnd.day.GLB", + "land.esn.tavg-u-hxy-sn.day.GLB", + "land.fLitterFire.tavg-u-hxy-lnd.mon.GLB", + "land.fLulccAtmLut.tavg-u-hxy-multi.mon.GLB", + "land.fNgasNonFire.tavg-u-hxy-lnd.mon.GLB", + "land.fracInLut.tsum-u-hxy-lnd.yr.GLB", + "land.fracLut.tpt-u-hxy-u.mon.GLB", + "land.fracLut.tpt-u-hxy-u.yr.GLB", + "land.fracOutLut.tsum-u-hxy-lnd.yr.GLB", + "land.fVegFire.tavg-u-hxy-lnd.mon.GLB", + "land.fVegLitterMortality.tavg-u-hxy-lnd.mon.GLB", + "land.fVegLitterSenescence.tavg-u-hxy-lnd.mon.GLB", + "land.fVegSoilMortality.tavg-u-hxy-lnd.mon.GLB", + "land.fVegSoilSenescence.tavg-u-hxy-lnd.mon.GLB", + "land.gpp.tavg-u-hxy-ng.mon.GLB", + "land.gpp.tavg-u-hxy-shb.mon.GLB", + "land.gpp.tavg-u-hxy-tree.mon.GLB", + "land.gppLut.tavg-u-hxy-multi.mon.GLB", + "land.grassFrac.tavg-u-hxy-u.yr.GLB", + "land.grassFracC3.tavg-u-hxy-u.mon.GLB", + "land.grassFracC4.tavg-u-hxy-u.mon.GLB", + "land.hflsLut.tavg-u-hxy-multi.mon.GLB", + "land.hfssLut.tavg-u-hxy-multi.mon.GLB", + "land.irrLut.tavg-u-hxy-multi.mon.GLB", + "land.laiLut.tavg-u-hxy-multi.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.3hr.GLB", + "land.mrros.tavg-u-hxy-lnd.3hr.GLB", + "land.mrsol.tpt-d10cm-hxy-lnd.3hr.GLB", + "land.mrsolLut.tavg-d10cm-hxy-multi.mon.GLB", + "land.nbpLut.tavg-u-hxy-multi.mon.GLB", + "land.nLeaf.tavg-u-hxy-lnd.mon.GLB", + "land.nLitterCwd.tavg-u-hxy-lnd.mon.GLB", + "land.nLitterSubSurf.tavg-u-hxy-lnd.mon.GLB", + "land.nLitterSurf.tavg-u-hxy-lnd.mon.GLB", + "land.nMineralNH4.tavg-u-hxy-lnd.mon.GLB", + "land.nMineralNO3.tavg-u-hxy-lnd.mon.GLB", + "land.nOther.tavg-u-hxy-lnd.mon.GLB", + "land.npp.tavg-u-hxy-ng.mon.GLB", + "land.npp.tavg-u-hxy-shb.mon.GLB", + "land.npp.tavg-u-hxy-tree.mon.GLB", + "land.nppLeaf.tavg-u-hxy-lnd.mon.GLB", + "land.nppLut.tavg-u-hxy-multi.mon.GLB", + "land.nppOther.tavg-u-hxy-lnd.mon.GLB", + "land.nppRoot.tavg-u-hxy-lnd.mon.GLB", + "land.nppStem.tavg-u-hxy-lnd.mon.GLB", + "land.nppVgt.tavg-u-hxy-multi.day.GLB", + "land.nRoot.tavg-u-hxy-lnd.mon.GLB", + "land.nStem.tavg-u-hxy-lnd.mon.GLB", + "land.pastureFracC3.tavg-u-hxy-u.mon.GLB", + "land.pastureFracC4.tavg-u-hxy-u.mon.GLB", + "land.qgwr.tavg-u-hxy-lnd.day.GLB", + "land.ra.tavg-u-hxy-ng.mon.GLB", + "land.ra.tavg-u-hxy-shb.mon.GLB", + "land.ra.tavg-u-hxy-tree.mon.GLB", + "land.raLeaf.tavg-u-hxy-lnd.mon.GLB", + "land.raLut.tavg-u-hxy-multi.mon.GLB", + "land.raOther.tavg-u-hxy-lnd.mon.GLB", + "land.raRoot.tavg-u-hxy-lnd.mon.GLB", + "land.raStem.tavg-u-hxy-lnd.mon.GLB", + "land.raVgt.tavg-u-hxy-multi.day.GLB", + "land.rh.tavg-u-hxy-ng.mon.GLB", + "land.rh.tavg-u-hxy-shb.mon.GLB", + "land.rh.tavg-u-hxy-tree.mon.GLB", + "land.rhLitter.tavg-u-hxy-lnd.mon.GLB", + "land.rhLut.tavg-u-hxy-multi.mon.GLB", + "land.rhSoil.tavg-u-hxy-lnd.mon.GLB", + "land.rhVgt.tavg-u-hxy-multi.day.GLB", + "land.sftlaf.ti-u-hxy-u.fx.GLB", + "land.shrubFrac.tavg-u-hxy-u.yr.GLB", + "land.sw.tavg-u-hxy-lnd.day.GLB", + "land.sweLut.tavg-u-hxy-multi.mon.GLB", + "land.tasLut.tavg-h2m-hxy-multi.mon.GLB", + "land.treeFrac.tavg-u-hxy-u.yr.GLB", + "land.treeFracBdlDcd.tavg-u-hxy-u.mon.GLB", + "land.treeFracBdlEvg.tavg-u-hxy-u.mon.GLB", + "land.treeFracNdlDcd.tavg-u-hxy-u.mon.GLB", + "land.treeFracNdlEvg.tavg-u-hxy-u.mon.GLB", + "land.tsl.tavg-sl-hxy-lnd.day.GLB", + "land.tsLut.tavg-u-hxy-multi.mon.GLB", + "land.vegHeight.tavg-u-hxy-ng.mon.GLB", + "land.vegHeight.tavg-u-hxy-shb.mon.GLB", + "land.wetlandCH4cons.tavg-u-hxy-lnd.mon.GLB", + "land.wetlandCH4prod.tavg-u-hxy-lnd.mon.GLB", + "land.wetlandFrac.tavg-u-hxy-u.mon.GLB", + "landIce.agesno.tavg-u-hxy-lnd.mon.GLB", + "landIce.hfdsn.tavg-u-hxy-lnd.day.GLB", + "landIce.hfdsn.tavg-u-hxy-lnd.mon.GLB", + "landIce.lwsnl.tavg-u-hxy-lnd.day.GLB", + "landIce.lwsnl.tavg-u-hxy-lnd.mon.GLB", + "landIce.pflw.tavg-u-hxy-lnd.day.GLB", + "landIce.sbl.tavg-u-hxy-lnd.mon.GLB", + "landIce.sbl.tavg-u-hxy-u.day.GLB", + "landIce.sbl.tavg-u-hxy-u.mon.GLB", + "landIce.snc.tavg-u-hxy-lnd.day.GLB", + "landIce.snd.tavg-u-hxy-lnd.day.GLB", + "landIce.snm.tavg-u-hxy-lnd.day.GLB", + "landIce.snw.tavg-u-hxy-lnd.day.GLB", + "landIce.tpf.tavg-u-hxy-lnd.day.GLB", + "landIce.tsn.tavg-u-hxy-lnd.day.GLB", + "landIce.tsn.tavg-u-hxy-lnd.mon.GLB", + "ocean.evspsbl.tavg-u-hxy-ifs.mon.GLB", + "ocean.ficeberg.tavg-u-hxy-sea.mon.GLB", + "ocean.hfacrossline.tavg-u-ht-sea.mon.GLB", + "ocean.hfevapds.tavg-u-hxy-ifs.mon.GLB", + "ocean.hfibthermds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfibthermds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfrainds.tavg-u-hxy-ifs.mon.GLB", + "ocean.hfrunoffds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfrunoffds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfsnthermds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfsnthermds.tavg-u-hxy-sea.mon.GLB", + "ocean.mfo.tavg-u-ht-sea.mon.GLB", + "ocean.sf6.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfacrossline.tavg-u-ht-sea.mon.GLB", + "ocean.sfdsi.tavg-u-hxy-sea.mon.GLB", + "ocean.sfriver.tavg-u-hxy-sea.mon.GLB", + "ocean.siflfwbot.tavg-u-hxy-sea.mon.GLB", + "ocean.so.tavg-ol-hxy-sea.day.GLB", + "ocean.tnkebto.tavg-u-hxy-sea.yr.GLB", + "ocean.vsf.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfcorr.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfevap.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfpr.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfriver.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfsit.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.arag.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.arag.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.calc.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.calc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chl.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.chlcalc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dmso.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.epn.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.epp.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.expc.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.expcalc.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.fgdms.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fric.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.froc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.graz.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.intppcalc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppdiat.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppdiaz.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppmisc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppnitrate.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intpppico.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.o2.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.ph.tavg-op20bar-hxy-sea.day.GLB", + "seaIce.sfdsi.tavg-u-hxy-si.mon.GLB", + "seaIce.siage.tavg-u-hxy-si.mon.GLB", + "seaIce.siarea.tavg-u-hm-u.day.NH", + "seaIce.siarea.tavg-u-hm-u.day.SH", + "seaIce.siareaacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.sicompstren.tavg-u-hxy-si.mon.GLB", + "seaIce.sidivvel.tpt-u-hxy-si.mon.GLB", + "seaIce.sidmasstranx.tavg-u-hxy-u.mon.GLB", + "seaIce.sidmasstrany.tavg-u-hxy-u.mon.GLB", + "seaIce.sidragbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidragtop.tavg-u-hxy-si.mon.GLB", + "seaIce.siextent.tavg-u-hm-u.day.NH", + "seaIce.siextent.tavg-u-hm-u.day.SH", + "seaIce.sifb.tavg-u-hxy-si.mon.GLB", + "seaIce.siflfwbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflfwdrain.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcecoriolx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcecorioly.tavg-u-hxy-si.mon.GLB", + "seaIce.siforceintstrx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforceintstry.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcetiltx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcetilty.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdconc.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdsnconc.tavg-u-hxy-si.day.GLB", + "seaIce.siitdsnconc.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdsnthick.tavg-u-hxy-si.day.GLB", + "seaIce.siitdsnthick.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdthick.tavg-u-hxy-si.mon.GLB", + "seaIce.simassacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.simpconc.tavg-u-hxy-si.mon.GLB", + "seaIce.simpeffconc.tavg-u-hxy-si.mon.GLB", + "seaIce.simprefrozen.tavg-u-hxy-simp.mon.GLB", + "seaIce.simpthick.tavg-u-hxy-simp.mon.GLB", + "seaIce.sirdgconc.tavg-u-hxy-si.mon.GLB", + "seaIce.sisali.tavg-u-hxy-si.mon.GLB", + "seaIce.sisaltmass.tavg-u-hxy-si.mon.GLB", + "seaIce.sishearvel.tpt-u-hxy-si.mon.GLB", + "seaIce.sisnhc.tavg-u-hxy-si.day.GLB", + "seaIce.sisnmass.tavg-u-hm-u.day.NH", + "seaIce.sisnmass.tavg-u-hm-u.day.SH", + "seaIce.sisnmassacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.sistressave.tpt-u-hxy-si.mon.GLB", + "seaIce.sistressmax.tpt-u-hxy-si.mon.GLB", + "seaIce.sistrxdtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sistrxubot.tavg-u-hxy-si.mon.GLB", + "seaIce.sistrydtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sistryubot.tavg-u-hxy-si.mon.GLB", + "seaIce.sitempbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sitempsnic.tavg-u-hxy-si.day.GLB", + "seaIce.sitempsnic.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-sir.mon.GLB", + "seaIce.sivol.tavg-u-hm-u.day.NH", + "seaIce.sivol.tavg-u-hm-u.day.SH" + ], + "Low": [ + "atmosChem.flashrate.tavg-u-hxy-u.mon.GLB", + "land.c13Land.tavg-u-hxy-lnd.mon.GLB", + "land.c13Litter.tavg-u-hxy-lnd.mon.GLB", + "land.c13Soil.tavg-u-hxy-lnd.mon.GLB", + "land.c13Veg.tavg-u-hxy-lnd.mon.GLB", + "land.c14Land.tavg-u-hxy-lnd.mon.GLB", + "land.c14Litter.tavg-u-hxy-lnd.mon.GLB", + "land.c14Soil.tavg-u-hxy-lnd.mon.GLB", + "land.c14Veg.tavg-u-hxy-lnd.mon.GLB", + "land.gppc13.tavg-u-hxy-lnd.mon.GLB", + "land.gppc14.tavg-u-hxy-lnd.mon.GLB", + "land.netAtmosLandC13Flux.tavg-u-hxy-lnd.mon.GLB", + "land.netAtmosLandC14Flux.tavg-u-hxy-lnd.mon.GLB", + "land.rac13.tavg-u-hxy-lnd.mon.GLB", + "land.rac14.tavg-u-hxy-lnd.mon.GLB", + "land.rhc13.tavg-u-hxy-lnd.mon.GLB", + "land.rhc14.tavg-u-hxy-lnd.mon.GLB", + "ocean.difmxybo.tavg-ol-hxy-sea.yr.GLB", + "ocean.difmxylo.tavg-ol-hxy-sea.yr.GLB", + "ocean.diftrblo.tavg-ol-hxy-sea.yr.GLB", + "ocean.diftrelo.tavg-ol-hxy-sea.yr.GLB", + "ocean.difvho.tavg-ol-hxy-sea.yr.GLB", + "ocean.difvso.tavg-ol-hxy-sea.yr.GLB", + "ocean.dispkexyfo.tavg-u-hxy-sea.yr.GLB", + "ocean.dxto.ti-u-hxy-u.fx.GLB", + "ocean.dxuo.ti-u-hxy-u.fx.GLB", + "ocean.dxvo.ti-u-hxy-u.fx.GLB", + "ocean.dyto.ti-u-hxy-u.fx.GLB", + "ocean.dyuo.ti-u-hxy-u.fx.GLB", + "ocean.dyvo.ti-u-hxy-u.fx.GLB", + "ocean.mlotstsq.tavg-u-hxy-sea.mon.GLB", + "ocean.msftmmpa.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftmmpa.tavg-rho-hyb-sea.mon.GLB", + "ocean.msftmsmpa.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftypa.tavg-ol-ht-sea.mon.GLB", + "ocean.msftypa.tavg-rho-ht-sea.mon.GLB", + "ocean.ocontempdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontempmint.tavg-u-hxy-sea.yr.GLB", + "ocean.ocontemppadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemppmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemppsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemprmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemptend.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottempdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottempmint.tavg-u-hxy-sea.yr.GLB", + "ocean.opottemppadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemppmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemppsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemprmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemptend.tavg-ol-hxy-sea.dec.GLB", + "ocean.osaltdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpsmadvect.tavg-ol-hxy-sea.mon.GLB", + "ocean.osaltpsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltrmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osalttend.tavg-ol-hxy-sea.yr.GLB", + "ocean.rsdoabsorb.tavg-ol-hxy-sea.yr.GLB", + "ocean.somint.tavg-u-hxy-sea.yr.GLB", + "ocean.sossq.tavg-u-hxy-sea.mon.GLB", + "ocean.thkcelluo.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcellvo.tavg-ol-hxy-sea.mon.GLB", + "ocean.tnpeo.tavg-u-hxy-sea.yr.GLB", + "ocean.tossq.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.dissi13c.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.dissi13c.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissi14c.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissi14cabio.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.dissi14cabio.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.fg13co2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fg14co2abio.tavg-u-hxy-sea.mon.GLB" + ] + }, + "piClim-4xCO2": { + "Core": [ + "atmos.areacella.ti-u-hxy-u.fx.GLB", + "atmos.cl.tavg-al-hxy-u.mon.GLB", + "atmos.cli.tavg-al-hxy-u.mon.GLB", + "atmos.clivi.tavg-u-hxy-u.mon.GLB", + "atmos.clt.tavg-u-hxy-u.day.GLB", + "atmos.clt.tavg-u-hxy-u.mon.GLB", + "atmos.clw.tavg-al-hxy-u.mon.GLB", + "atmos.clwvi.tavg-u-hxy-u.mon.GLB", + "atmos.evspsbl.tavg-u-hxy-u.mon.GLB", + "atmos.hfls.tavg-u-hxy-u.mon.GLB", + "atmos.hfss.tavg-u-hxy-u.mon.GLB", + "atmos.hur.tavg-p19-hxy-air.mon.GLB", + "atmos.hur.tavg-p19-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.6hr.GLB", + "atmos.hurs.tavg-h2m-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.mon.GLB", + "atmos.hus.tavg-p19-hxy-u.day.GLB", + "atmos.hus.tavg-p19-hxy-u.mon.GLB", + "atmos.huss.tavg-h2m-hxy-u.day.GLB", + "atmos.huss.tavg-h2m-hxy-u.mon.GLB", + "atmos.huss.tpt-h2m-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.1hr.GLB", + "atmos.pr.tavg-u-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.day.GLB", + "atmos.pr.tavg-u-hxy-u.mon.GLB", + "atmos.prc.tavg-u-hxy-u.mon.GLB", + "atmos.prsn.tavg-u-hxy-u.mon.GLB", + "atmos.prw.tavg-u-hxy-u.mon.GLB", + "atmos.ps.tavg-u-hxy-u.day.GLB", + "atmos.ps.tavg-u-hxy-u.mon.GLB", + "atmos.psl.tavg-u-hxy-u.day.GLB", + "atmos.psl.tavg-u-hxy-u.mon.GLB", + "atmos.rlds.tavg-u-hxy-u.mon.GLB", + "atmos.rldscs.tavg-u-hxy-u.mon.GLB", + "atmos.rlus.tavg-u-hxy-u.mon.GLB", + "atmos.rluscs.tavg-u-hxy-u.mon.GLB", + "atmos.rlut.tavg-u-hxy-u.mon.GLB", + "atmos.rlutcs.tavg-u-hxy-u.mon.GLB", + "atmos.rsds.tavg-u-hxy-u.day.GLB", + "atmos.rsds.tavg-u-hxy-u.mon.GLB", + "atmos.rsdscs.tavg-u-hxy-u.mon.GLB", + "atmos.rsdt.tavg-u-hxy-u.mon.GLB", + "atmos.rsus.tavg-u-hxy-u.mon.GLB", + "atmos.rsuscs.tavg-u-hxy-u.mon.GLB", + "atmos.rsut.tavg-u-hxy-u.mon.GLB", + "atmos.rsutcs.tavg-u-hxy-u.mon.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.day.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.mon.GLB", + "atmos.sftlf.ti-u-hxy-u.fx.GLB", + "atmos.ta.tavg-p19-hxy-air.day.GLB", + "atmos.ta.tavg-p19-hxy-air.mon.GLB", + "atmos.ta.tpt-p3-hxy-air.6hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.day.GLB", + "atmos.tas.tavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tmax-h2m-hxy-u.day.GLB", + "atmos.tas.tmaxavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tmin-h2m-hxy-u.day.GLB", + "atmos.tas.tminavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tpt-h2m-hxy-u.3hr.GLB", + "atmos.tauu.tavg-u-hxy-u.mon.GLB", + "atmos.tauv.tavg-u-hxy-u.mon.GLB", + "atmos.ts.tavg-u-hxy-u.mon.GLB", + "atmos.ua.tavg-p19-hxy-air.day.GLB", + "atmos.ua.tavg-p19-hxy-air.mon.GLB", + "atmos.ua.tpt-p3-hxy-air.6hr.GLB", + "atmos.uas.tavg-h10m-hxy-u.day.GLB", + "atmos.uas.tavg-h10m-hxy-u.mon.GLB", + "atmos.uas.tpt-h10m-hxy-u.3hr.GLB", + "atmos.va.tavg-p19-hxy-air.day.GLB", + "atmos.va.tavg-p19-hxy-air.mon.GLB", + "atmos.va.tpt-p3-hxy-air.6hr.GLB", + "atmos.vas.tavg-h10m-hxy-u.day.GLB", + "atmos.vas.tavg-h10m-hxy-u.mon.GLB", + "atmos.vas.tpt-h10m-hxy-u.3hr.GLB", + "atmos.wap.tavg-p19-hxy-air.mon.GLB", + "atmos.wap.tavg-p19-hxy-u.day.GLB", + "atmos.zg.tavg-p19-hxy-air.day.GLB", + "atmos.zg.tavg-p19-hxy-air.mon.GLB", + "land.evspsblsoi.tavg-u-hxy-lnd.mon.GLB", + "land.evspsblveg.tavg-u-hxy-lnd.mon.GLB", + "land.lai.tavg-u-hxy-lnd.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.mon.GLB", + "land.mrros.tavg-u-hxy-lnd.mon.GLB", + "land.mrso.tavg-u-hxy-lnd.mon.GLB", + "land.mrsofc.ti-u-hxy-lnd.fx.GLB", + "land.mrsol.tavg-d10cm-hxy-lnd.mon.GLB", + "land.orog.ti-u-hxy-u.fx.GLB", + "land.rootd.ti-u-hxy-lnd.fx.GLB", + "land.sftgif.ti-u-hxy-u.fx.GLB", + "land.slthick.ti-sl-hxy-lnd.fx.GLB", + "landIce.mrfso.tavg-u-hxy-lnd.mon.GLB", + "landIce.snc.tavg-u-hxy-lnd.mon.GLB", + "landIce.snw.tavg-u-hxy-lnd.mon.GLB", + "ocean.areacello.ti-u-hxy-u.fx.GLB", + "ocean.basin.ti-u-hxy-u.fx.GLB", + "ocean.bigthetao.tavg-ol-hxy-sea.mon.GLB", + "ocean.deptho.ti-u-hxy-sea.fx.GLB", + "ocean.hfds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfgeou.ti-u-hxy-sea.fx.GLB", + "ocean.masscello.tavg-ol-hxy-sea.mon.GLB", + "ocean.masscello.ti-ol-hxy-sea.fx.GLB", + "ocean.mlotst.tavg-u-hxy-sea.mon.GLB", + "ocean.sftof.ti-u-hxy-u.fx.GLB", + "ocean.so.tavg-ol-hxy-sea.mon.GLB", + "ocean.sos.tavg-u-hxy-sea.day.GLB", + "ocean.sos.tavg-u-hxy-sea.mon.GLB", + "ocean.tauuo.tavg-u-hxy-sea.mon.GLB", + "ocean.tauvo.tavg-u-hxy-sea.mon.GLB", + "ocean.thetao.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcello.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcello.ti-ol-hxy-sea.fx.GLB", + "ocean.tos.tavg-u-hxy-sea.day.GLB", + "ocean.tos.tavg-u-hxy-sea.mon.GLB", + "ocean.umo.tavg-ol-hxy-sea.mon.GLB", + "ocean.uo.tavg-ol-hxy-sea.mon.GLB", + "ocean.vmo.tavg-ol-hxy-sea.mon.GLB", + "ocean.vo.tavg-ol-hxy-sea.mon.GLB", + "ocean.wmo.tavg-ol-hxy-sea.mon.GLB", + "ocean.wo.tavg-ol-hxy-sea.mon.GLB", + "ocean.zos.tavg-u-hxy-sea.day.GLB", + "ocean.zos.tavg-u-hxy-sea.mon.GLB", + "ocean.zostoga.tavg-u-hm-sea.mon.GLB", + "seaIce.siconc.tavg-u-hxy-u.day.GLB", + "seaIce.siconc.tavg-u-hxy-u.mon.GLB", + "seaIce.simass.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-si.mon.GLB", + "seaIce.sitimefrac.tavg-u-hxy-sea.mon.GLB", + "seaIce.siu.tavg-u-hxy-si.mon.GLB", + "seaIce.siv.tavg-u-hxy-si.mon.GLB", + "seaIce.snd.tavg-u-hxy-sn.mon.GLB", + "seaIce.ts.tavg-u-hxy-si.mon.GLB" + ], + "High": [ + "aerosol.abs550aer.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550bc.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550dust.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550no3.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550oa.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550so4.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550ss.tavg-u-hxy-u.mon.GLB", + "aerosol.airmass.tavg-al-hxy-u.mon.GLB", + "aerosol.aoanh.tavg-al-hxy-u.mon.NH", + "aerosol.bry.tavg-p39-hy-air.mon.GLB", + "aerosol.bs550aer.tpt-al-hxy-u.6hr.GLB", + "aerosol.c2h6.tavg-al-hxy-u.mon.GLB", + "aerosol.c3h6.tavg-al-hxy-u.mon.GLB", + "aerosol.c3h8.tavg-al-hxy-u.mon.GLB", + "aerosol.ccldncl.tavg-u-hxy-ccl.mon.GLB", + "aerosol.ccn.tavg-u-hxy-ccl.mon.30S-90S", + "aerosol.ccn.tavg-u-hxy-ccl.mon.GLB", + "aerosol.ccn1.tavg-al-hxy-u.mon.30S-90S", + "aerosol.ccn1.tavg-al-hxy-u.mon.GLB", + "aerosol.ccnp02.tavg-al-hxy-u.mon.30S-90S", + "aerosol.ccnp02.tavg-al-hxy-u.mon.GLB", + "aerosol.cdnc.tavg-al-hxy-u.mon.30S-90S", + "aerosol.cdnc.tavg-al-hxy-u.mon.GLB", + "aerosol.ch3coch3.tavg-al-hxy-u.mon.GLB", + "aerosol.cheaqpso4.tavg-al-hxy-u.mon.GLB", + "aerosol.chegpso4.tavg-al-hxy-u.mon.GLB", + "aerosol.chepasoa.tavg-u-hxy-u.mon.GLB", + "aerosol.chepsoa.tavg-u-hxy-u.mon.GLB", + "aerosol.cly.tavg-p39-hy-air.mon.GLB", + "aerosol.co.tavg-al-hxy-u.mon.GLB", + "aerosol.co.tavg-h2m-hxy-u.day.GLB", + "aerosol.cod.tavg-u-hxy-u.day.GLB", + "aerosol.cod.tavg-u-hxy-u.mon.30S-90S", + "aerosol.cod.tavg-u-hxy-u.mon.GLB", + "aerosol.conccn.tavg-al-hxy-u.mon.GLB", + "aerosol.conccn.tpt-u-hs-u.3hr.GLB", + "aerosol.drybc.tavg-u-hxy-u.mon.GLB", + "aerosol.drydust.tavg-u-hxy-u.mon.GLB", + "aerosol.dryno3.tavg-u-hxy-u.mon.GLB", + "aerosol.dryo3.tavg-u-hxy-u.mon.GLB", + "aerosol.dryoa.tavg-u-hxy-u.mon.GLB", + "aerosol.dryso2.tavg-u-hxy-u.mon.GLB", + "aerosol.dryso4.tavg-u-hxy-u.mon.GLB", + "aerosol.dryss.tavg-u-hxy-u.mon.GLB", + "aerosol.ec550aer.tavg-al-hxy-u.mon.GLB", + "aerosol.ec550aer.tpt-u-hxy-u.6hr.GLB", + "aerosol.emiaco.tavg-u-hxy-u.mon.GLB", + "aerosol.emianox.tavg-u-hxy-u.mon.GLB", + "aerosol.emiaoa.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbbc.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbch4.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbco.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbdms.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbnh3.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbnox.tavg-u-hxy-u.mon.GLB", + "aerosol.emibboa.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbso2.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbvoc.tavg-u-hxy-u.mon.GLB", + "aerosol.emibc.tavg-u-hxy-u.mon.GLB", + "aerosol.emibvoc.tavg-u-hxy-u.mon.GLB", + "aerosol.emico.tavg-u-hxy-u.mon.GLB", + "aerosol.emidms.tavg-u-hxy-u.mon.30S-90S", + "aerosol.emidms.tavg-u-hxy-u.mon.GLB", + "aerosol.emidust.tavg-u-hxy-u.mon.GLB", + "aerosol.emiisop.tavg-u-hxy-u.mon.GLB", + "aerosol.emilnox.tavg-al-hxy-u.mon.GLB", + "aerosol.eminh3.tavg-u-hxy-u.mon.GLB", + "aerosol.eminox.tavg-u-hxy-u.mon.GLB", + "aerosol.emioa.tavg-u-hxy-u.mon.GLB", + "aerosol.emiso2.tavg-u-hxy-u.mon.GLB", + "aerosol.emiso4.tavg-u-hxy-u.mon.GLB", + "aerosol.emiss.tavg-u-hxy-u.mon.30S-90S", + "aerosol.emiss.tavg-u-hxy-u.mon.GLB", + "aerosol.emivoc.tavg-u-hxy-u.mon.GLB", + "aerosol.h2o.tavg-al-hxy-u.mon.GLB", + "aerosol.h2o.tavg-p39-hy-air.mon.GLB", + "aerosol.hcho.tavg-al-hxy-u.mon.GLB", + "aerosol.hcl.tavg-al-hxy-u.mon.GLB", + "aerosol.hcl.tavg-p39-hy-air.mon.GLB", + "aerosol.hno3.tavg-al-hxy-u.mon.GLB", + "aerosol.hno3.tavg-p39-hy-air.mon.GLB", + "aerosol.ho2.tavg-p39-hy-air.mon.GLB", + "aerosol.isop.tavg-al-hxy-u.mon.GLB", + "aerosol.jno2.tavg-al-hxy-u.mon.GLB", + "aerosol.lossch4.tavg-al-hxy-u.mon.GLB", + "aerosol.lossco.tavg-al-hxy-u.mon.GLB", + "aerosol.lossn2o.tavg-al-hxy-u.mon.GLB", + "aerosol.lwp.tavg-u-hxy-u.mon.GLB", + "aerosol.mmraerh2o.tavg-al-hxy-u.mon.GLB", + "aerosol.mmraerh2o.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmraerh2o.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrbc.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrbc.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrbc.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrbc.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrdust.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrdust.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrdust.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrdust.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrnh4.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrnh4.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrnh4.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrnh4.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrno3.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrno3.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrno3.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrno3.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmroa.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmroa.tavg-al-hxy-u.mon.GLB", + "aerosol.mmroa.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmroa.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrpm1.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrpm1.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrpm2p5.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrpm2p5.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrso4.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrso4.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrso4.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrso4.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrsoa.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrsoa.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrsoa.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrss.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrss.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrss.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrss.tpt-h2m-hs-u.3hr.GLB", + "aerosol.nh50.tavg-al-hxy-u.mon.GLB", + "aerosol.no.tavg-al-hxy-u.mon.GLB", + "aerosol.no2.tavg-al-hxy-u.mon.GLB", + "aerosol.no2.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.noy.tavg-p39-hy-air.mon.GLB", + "aerosol.o3.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.o3.tmax-h2m-hxy-u.day.GLB", + "aerosol.o3loss.tavg-al-hxy-u.mon.GLB", + "aerosol.o3prod.tavg-al-hxy-u.mon.GLB", + "aerosol.od443aer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550aer.tavg-u-hxy-u.day.GLB", + "aerosol.od550aer.tavg-u-hxy-u.mon.30S-90S", + "aerosol.od550aer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550aerh2o.tavg-u-hxy-u.mon.GLB", + "aerosol.od550bb.tavg-u-hxy-u.mon.GLB", + "aerosol.od550bc.tavg-u-hxy-u.mon.GLB", + "aerosol.od550csaer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550dust.tavg-u-hxy-u.mon.GLB", + "aerosol.od550lt1aer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550no3.tavg-u-hxy-u.mon.GLB", + "aerosol.od550oa.tavg-u-hxy-u.mon.GLB", + "aerosol.od550so4.tavg-u-hxy-u.mon.GLB", + "aerosol.od550soa.tavg-u-hxy-u.mon.GLB", + "aerosol.od550ss.tavg-u-hxy-u.mon.GLB", + "aerosol.od865aer.tavg-u-hxy-u.mon.GLB", + "aerosol.oh.tavg-al-hxy-u.mon.GLB", + "aerosol.oh.tavg-p39-hy-air.mon.GLB", + "aerosol.pan.tavg-al-hxy-u.mon.GLB", + "aerosol.photo1d.tavg-al-hxy-u.mon.GLB", + "aerosol.pod0.tsum-u-hxy-u.mon.GLB", + "aerosol.reffccwctop.tavg-u-hxy-cl.mon.GLB", + "aerosol.reffclwtop.tavg-u-hxy-cl.mon.30S-90S", + "aerosol.reffclwtop.tavg-u-hxy-cl.mon.GLB", + "aerosol.rluscsaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rlutaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rlutcsaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rsutaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rsutcsaf.tavg-u-hxy-u.mon.GLB", + "aerosol.sfpm1.tavg-h2m-hxy-u.day.GLB", + "aerosol.sfpm10.tavg-al-hxy-u.mon.30S-90S", + "aerosol.sfpm10.tavg-al-hxy-u.mon.GLB", + "aerosol.sfpm10.tavg-h2m-hxy-u.day.GLB", + "aerosol.sfpm25.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.sfpm25.tavg-h2m-hxy-u.day.GLB", + "aerosol.so2.tavg-al-hxy-u.mon.30S-90S", + "aerosol.so2.tavg-al-hxy-u.mon.GLB", + "aerosol.so2.tavg-h2m-hxy-u.day.GLB", + "aerosol.so2.tpt-h2m-hs-u.3hr.GLB", + "aerosol.tatp.tavg-u-hxy-u.mon.GLB", + "aerosol.toz.tavg-u-hxy-u.day.GLB", + "aerosol.toz.tavg-u-hxy-u.mon.GLB", + "aerosol.tropoz.tavg-u-hxy-u.mon.GLB", + "aerosol.ttop.tavg-u-hxy-cl.mon.GLB", + "aerosol.ua.tavg-10hPa-hxy-air.day.GLB", + "aerosol.vt100.tavg-100hPa-hy-air.mon.GLB", + "aerosol.wa.tavg-al-hxy-u.mon.GLB", + "aerosol.wetbc.tavg-u-hxy-u.mon.GLB", + "aerosol.wetdust.tavg-u-hxy-u.mon.GLB", + "aerosol.wetoa.tavg-u-hxy-u.mon.GLB", + "aerosol.wetso2.tavg-u-hxy-u.mon.GLB", + "aerosol.wetso4.tavg-u-hxy-u.mon.GLB", + "aerosol.wetss.tavg-u-hxy-u.mon.GLB", + "aerosol.zg.tavg-10hPa-hxy-air.day.GLB", + "atmos.albisccp.tavg-u-hxy-cl.day.GLB", + "atmos.albisccp.tavg-u-hxy-cl.mon.30S-90S", + "atmos.albisccp.tavg-u-hxy-cl.mon.GLB", + "atmos.bldep.tavg-u-hxy-u.mon.GLB", + "atmos.bldep.tmax-u-hxy-u.day.GLB", + "atmos.bldep.tmin-u-hxy-u.day.GLB", + "atmos.ccb.tavg-u-hxy-ccl.day.GLB", + "atmos.ccb.tavg-u-hxy-ccl.mon.GLB", + "atmos.cct.tavg-u-hxy-ccl.day.GLB", + "atmos.cct.tavg-u-hxy-ccl.mon.GLB", + "atmos.ci.tavg-u-hxy-u.mon.GLB", + "atmos.cl.tavg-al-hxy-u.day.GLB", + "atmos.cl.tavg-al-hxy-u.mon.30S-90S", + "atmos.clc.tavg-al-hxy-u.mon.30S-90S", + "atmos.clc.tavg-al-hxy-u.mon.GLB", + "atmos.clcalipso.tavg-220hPa-hxy-air.day.GLB", + "atmos.clcalipso.tavg-220hPa-hxy-air.mon.30S-90S", + "atmos.clcalipso.tavg-220hPa-hxy-air.mon.GLB", + "atmos.clcalipso.tavg-560hPa-hxy-air.day.GLB", + "atmos.clcalipso.tavg-560hPa-hxy-air.mon.30S-90S", + "atmos.clcalipso.tavg-560hPa-hxy-air.mon.GLB", + "atmos.clcalipso.tavg-840hPa-hxy-air.day.GLB", + "atmos.clcalipso.tavg-840hPa-hxy-air.mon.30S-90S", + "atmos.clcalipso.tavg-840hPa-hxy-air.mon.GLB", + "atmos.clcalipso.tavg-h40-hxy-air.mon.30S-90S", + "atmos.clcalipso.tavg-h40-hxy-air.mon.GLB", + "atmos.cldnci.tavg-u-hxy-cl.mon.GLB", + "atmos.cldncl.tavg-u-hxy-cl.mon.GLB", + "atmos.cldnvi.tavg-u-hxy-u.day.GLB", + "atmos.cldnvi.tavg-u-hxy-u.mon.GLB", + "atmos.cli.tavg-al-hxy-u.mon.30S-90S", + "atmos.clic.tavg-al-hxy-u.mon.30S-90S", + "atmos.clic.tavg-al-hxy-u.mon.GLB", + "atmos.clis.tavg-al-hxy-u.mon.30S-90S", + "atmos.clis.tavg-al-hxy-u.mon.GLB", + "atmos.clisccp.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clisccp.tavg-p7c-hxy-air.mon.GLB", + "atmos.clivi.tavg-u-hxy-u.day.GLB", + "atmos.clivi.tavg-u-hxy-u.mon.30S-90S", + "atmos.clivic.tavg-u-hxy-u.day.GLB", + "atmos.clivimodis.tavg-u-hxy-u.mon.30S-90S", + "atmos.clmisr.tavg-h16-hxy-air.mon.GLB", + "atmos.clmodis.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clmodis.tavg-p7c-hxy-air.mon.GLB", + "atmos.clmodisice.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clmodisice.tavg-p7c-hxy-air.mon.GLB", + "atmos.clmodisiceReff.tavg-u-hxy-u.mon.GLB", + "atmos.clmodisliquid.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clmodisliquid.tavg-p7c-hxy-air.mon.GLB", + "atmos.clmodisliquidReff.tavg-u-hxy-u.mon.GLB", + "atmos.cls.tavg-al-hxy-u.mon.30S-90S", + "atmos.cls.tavg-al-hxy-u.mon.GLB", + "atmos.clt.tavg-u-hxy-lnd.day.GLB", + "atmos.clt.tavg-u-hxy-u.mon.30S-90S", + "atmos.cltc.tavg-u-hxy-u.mon.GLB", + "atmos.cltcalipso.tavg-u-hxy-u.day.GLB", + "atmos.cltcalipso.tavg-u-hxy-u.mon.30S-90S", + "atmos.cltcalipso.tavg-u-hxy-u.mon.GLB", + "atmos.cltisccp.tavg-u-hxy-u.day.GLB", + "atmos.cltisccp.tavg-u-hxy-u.mon.30S-90S", + "atmos.cltisccp.tavg-u-hxy-u.mon.GLB", + "atmos.cltmodis.tavg-u-hxy-u.mon.30S-90S", + "atmos.clw.tavg-al-hxy-u.mon.30S-90S", + "atmos.clwc.tavg-al-hxy-u.mon.30S-90S", + "atmos.clwc.tavg-al-hxy-u.mon.GLB", + "atmos.clws.tavg-al-hxy-u.mon.30S-90S", + "atmos.clws.tavg-al-hxy-u.mon.GLB", + "atmos.clwvi.tavg-u-hxy-u.day.GLB", + "atmos.clwvi.tavg-u-hxy-u.mon.30S-90S", + "atmos.clwvic.tavg-u-hxy-u.day.GLB", + "atmos.clwvimodis.tavg-u-hxy-u.mon.30S-90S", + "atmos.co2.tavg-al-hxy-u.mon.GLB", + "atmos.co2.tavg-p19-hxy-air.mon.GLB", + "atmos.co2.tclm-p19-hxy-air.mon.GLB", + "atmos.co2.tclm-u-hm-u.mon.GLB", + "atmos.co2mass.tavg-u-hm-u.mon.GLB", + "atmos.dmc.tavg-alh-hxy-u.mon.30S-90S", + "atmos.dmc.tavg-alh-hxy-u.mon.GLB", + "atmos.edt.tavg-al-hxy-u.mon.30S-90S", + "atmos.edt.tavg-al-hxy-u.mon.GLB", + "atmos.evspsbl.tavg-u-hxy-lnd.day.GLB", + "atmos.evu.tavg-al-hxy-u.mon.30S-90S", + "atmos.evu.tavg-al-hxy-u.mon.GLB", + "atmos.fco2antt.tavg-u-hxy-u.mon.GLB", + "atmos.fco2nat.tavg-u-hxy-u.mon.GLB", + "atmos.hfls.tavg-u-hxy-u.day.GLB", + "atmos.hfls.tavg-u-hxy-u.mon.30S-90S", + "atmos.hfss.tavg-u-hxy-u.day.GLB", + "atmos.hfss.tavg-u-hxy-u.mon.30S-90S", + "atmos.hur.tavg-al-hxy-u.mon.30S-90S", + "atmos.hur.tavg-al-hxy-u.mon.GLB", + "atmos.hur.tavg-p19-hxy-air.mon.30S-90S", + "atmos.hurs.tavg-h2m-hxy-u.mon.30S-90S", + "atmos.hurs.tmax-h2m-hxy-u.day.GLB", + "atmos.hurs.tmin-h2m-hxy-u.day.GLB", + "atmos.hus.tavg-al-hxy-u.mon.30S-90S", + "atmos.hus.tavg-al-hxy-u.mon.GLB", + "atmos.hus.tavg-p19-hxy-u.mon.30S-90S", + "atmos.huss.tavg-h2m-hxy-u.mon.30S-90S", + "atmos.intuadse.tavg-u-hxy-u.day.GLB", + "atmos.intuadse.tavg-u-hxy-u.mon.GLB", + "atmos.intuaw.tavg-u-hxy-u.day.GLB", + "atmos.intuaw.tavg-u-hxy-u.mon.GLB", + "atmos.intvadse.tavg-u-hxy-u.day.GLB", + "atmos.intvadse.tavg-u-hxy-u.mon.GLB", + "atmos.intvaw.tavg-u-hxy-u.day.GLB", + "atmos.intvaw.tavg-u-hxy-u.mon.GLB", + "atmos.loadbc.tavg-u-hxy-u.day.GLB", + "atmos.loadoa.tavg-u-hxy-u.day.GLB", + "atmos.loadpoa.tavg-u-hxy-u.day.GLB", + "atmos.mc.tavg-alh-hxy-u.mon.GLB", + "atmos.mcd.tavg-alh-hxy-u.mon.30S-90S", + "atmos.mcd.tavg-alh-hxy-u.mon.GLB", + "atmos.mcu.tavg-alh-hxy-u.mon.30S-90S", + "atmos.mcu.tavg-alh-hxy-u.mon.GLB", + "atmos.pctisccp.tavg-u-hxy-cl.day.GLB", + "atmos.pctisccp.tavg-u-hxy-cl.mon.30S-90S", + "atmos.pctisccp.tavg-u-hxy-cl.mon.GLB", + "atmos.pfull.tavg-al-hxy-u.mon.GLB", + "atmos.pfull.tclm-al-hxy-u.mon.30S-90S", + "atmos.pfull.tclm-al-hxy-u.mon.GLB", + "atmos.phalf.tavg-alh-hxy-u.mon.GLB", + "atmos.phalf.tclm-alh-hxy-u.mon.GLB", + "atmos.pr.tavg-u-hxy-u.mon.30S-90S", + "atmos.pr.tmax-u-hxy-u.day.GLB", + "atmos.pr.tpt-u-hxy-u.6hr.GLB", + "atmos.prc.tavg-u-hxy-u.day.GLB", + "atmos.prc.tavg-u-hxy-u.mon.30S-90S", + "atmos.prra.tavg-u-hxy-u.mon.30S-90S", + "atmos.prra.tavg-u-hxy-u.mon.GLB", + "atmos.prsn.tavg-u-hxy-u.day.GLB", + "atmos.prsn.tavg-u-hxy-u.mon.30S-90S", + "atmos.prw.tavg-u-hxy-u.mon.30S-90S", + "atmos.ps.tavg-u-hxy-u.1hr.GLB", + "atmos.ps.tavg-u-hxy-u.mon.30S-90S", + "atmos.psl.tavg-u-hxy-u.mon.30S-90S", + "atmos.psl.tpt-u-hxy-u.1hr.GLB", + "atmos.ptp.tavg-u-hxy-u.mon.GLB", + "atmos.reffcclwtop.tavg-u-hxy-ccl.mon.GLB", + "atmos.reffclic.tavg-al-hxy-ccl.mon.30S-90S", + "atmos.reffclic.tavg-al-hxy-ccl.mon.GLB", + "atmos.reffclis.tavg-al-hxy-scl.mon.30S-90S", + "atmos.reffclis.tavg-al-hxy-scl.mon.GLB", + "atmos.reffclwc.tavg-al-hxy-ccl.mon.30S-90S", + "atmos.reffclwc.tavg-al-hxy-ccl.mon.GLB", + "atmos.reffclws.tavg-al-hxy-scl.mon.30S-90S", + "atmos.reffclws.tavg-al-hxy-scl.mon.GLB", + "atmos.reffsclwtop.tavg-u-hxy-scl.mon.GLB", + "atmos.rld.tavg-alh-hxy-u.mon.GLB", + "atmos.rld4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rldcs.tavg-alh-hxy-u.mon.GLB", + "atmos.rldcs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rlds.tavg-u-hxy-u.day.GLB", + "atmos.rlds.tavg-u-hxy-u.mon.30S-90S", + "atmos.rldscs.tavg-u-hxy-u.day.GLB", + "atmos.rldscs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rls.tavg-u-hxy-u.mon.GLB", + "atmos.rlu.tavg-alh-hxy-u.mon.GLB", + "atmos.rlu4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rlucs.tavg-alh-hxy-u.mon.GLB", + "atmos.rlucs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rlus.tavg-u-hxy-u.day.GLB", + "atmos.rlus.tavg-u-hxy-u.mon.30S-90S", + "atmos.rluscs.tavg-u-hxy-u.day.GLB", + "atmos.rlut.tavg-u-hxy-u.day.GLB", + "atmos.rlut.tavg-u-hxy-u.mon.30S-90S", + "atmos.rlut4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rlutcs.tavg-u-hxy-u.day.GLB", + "atmos.rlutcs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rlutcs4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rsd.tavg-alh-hxy-u.mon.GLB", + "atmos.rsd4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsdcs.tavg-alh-hxy-u.mon.GLB", + "atmos.rsdcs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsds.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsdscs.tavg-u-hxy-u.day.GLB", + "atmos.rsdscs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsdt.tavg-u-hxy-u.day.GLB", + "atmos.rsdt.tavg-u-hxy-u.mon.30S-90S", + "atmos.rss.tavg-u-hxy-u.mon.GLB", + "atmos.rsu.tavg-alh-hxy-u.mon.GLB", + "atmos.rsu4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsucs.tavg-alh-hxy-u.mon.GLB", + "atmos.rsucs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsus.tavg-u-hxy-u.day.GLB", + "atmos.rsus.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsuscs.tavg-u-hxy-u.day.GLB", + "atmos.rsuscs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsut.tavg-u-hxy-u.day.GLB", + "atmos.rsut.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsut4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rsutcs.tavg-u-hxy-u.day.GLB", + "atmos.rsutcs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsutcs4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rtmt.tavg-u-hxy-u.mon.GLB", + "atmos.rv850.tpt-850hPa-hxy-air.6hr.GLB", + "atmos.sci.tavg-u-hxy-u.mon.GLB", + "atmos.scldncl.tavg-u-hxy-scl.mon.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.mon.30S-90S", + "atmos.sfcWind.tmax-h10m-hxy-u.day.GLB", + "atmos.smc.tavg-alh-hxy-u.mon.GLB", + "atmos.ta.tavg-700hPa-hxy-air.day.GLB", + "atmos.ta.tavg-al-hxy-u.mon.30S-90S", + "atmos.ta.tavg-al-hxy-u.mon.GLB", + "atmos.ta.tavg-p19-hxy-air.mon.30S-90S", + "atmos.ta.tavg-p39-hy-air.mon.GLB", + "atmos.tas.tavg-h2m-hxy-u.1hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.mon.30S-90S", + "atmos.tas.tmaxavg-h2m-hxy-u.mon.30S-90S", + "atmos.tas.tminavg-h2m-hxy-u.mon.30S-90S", + "atmos.tnhus.tavg-al-hxy-u.mon.GLB", + "atmos.tnhusa.tavg-al-hxy-u.mon.GLB", + "atmos.tnhusc.tavg-al-hxy-u.mon.GLB", + "atmos.tnhusd.tavg-al-hxy-u.mon.GLB", + "atmos.tnhusmp.tavg-al-hxy-u.mon.GLB", + "atmos.tnhuspbl.tavg-al-hxy-u.mon.GLB", + "atmos.tnhusscp.tavg-al-hxy-u.mon.GLB", + "atmos.tnhusscpbl.tavg-al-hxy-u.mon.GLB", + "atmos.tnt.tavg-al-hxy-u.mon.GLB", + "atmos.tnta.tavg-al-hxy-u.mon.GLB", + "atmos.tntc.tavg-al-hxy-u.mon.GLB", + "atmos.tntd.tavg-al-hxy-u.mon.GLB", + "atmos.tntmp.tavg-al-hxy-u.mon.GLB", + "atmos.tntpbl.tavg-al-hxy-u.mon.GLB", + "atmos.tntr.tavg-al-hxy-u.mon.GLB", + "atmos.tntrl.tavg-al-hxy-u.mon.GLB", + "atmos.tntrlcs.tavg-al-hxy-u.mon.GLB", + "atmos.tntrs.tavg-al-hxy-u.mon.GLB", + "atmos.tntrscs.tavg-al-hxy-u.mon.GLB", + "atmos.tntscp.tavg-al-hxy-u.mon.GLB", + "atmos.tntscpbl.tavg-al-hxy-u.mon.GLB", + "atmos.ts.tavg-u-hxy-u.mon.30S-90S", + "atmos.ua.tavg-al-hxy-u.mon.GLB", + "atmos.ua.tavg-p19-hxy-air.mon.30S-90S", + "atmos.ua.tavg-p39-hy-air.mon.GLB", + "atmos.ua.tpt-h100m-hxy-u.1hr.GLB", + "atmos.uas.tavg-h10m-hxy-u.mon.30S-90S", + "atmos.uas.tpt-h10m-hxy-u.1hr.GLB", + "atmos.va.tavg-al-hxy-u.mon.GLB", + "atmos.va.tavg-p19-hxy-air.mon.30S-90S", + "atmos.va.tavg-p39-hy-air.mon.GLB", + "atmos.va.tpt-h100m-hxy-u.1hr.GLB", + "atmos.vas.tavg-h10m-hxy-u.mon.30S-90S", + "atmos.vas.tpt-h10m-hxy-u.1hr.GLB", + "atmos.wap.tavg-500hPa-hxy-air.day.GLB", + "atmos.wap.tavg-p19-hxy-air.mon.30S-90S", + "atmos.zg.tavg-1000hPa-hxy-air.day.GLB", + "atmos.zg.tavg-500hPa-hxy-air.day.GLB", + "atmos.zg.tavg-al-hxy-u.mon.GLB", + "atmos.zg.tavg-p19-hxy-air.mon.30S-90S", + "atmos.zg.tavg-p39-hy-air.mon.GLB", + "atmos.zg.tpt-500hPa-hxy-air.6hr.GLB", + "atmos.ztp.tavg-u-hxy-u.mon.GLB", + "atmosChem.c2h4.tavg-al-hxy-u.mon.GLB", + "atmosChem.c2h5oh.tavg-al-hxy-u.mon.GLB", + "atmosChem.c4h10.tavg-al-hxy-u.mon.GLB", + "atmosChem.cfc11.tavg-u-hm-u.mon.GLB", + "atmosChem.cfc113.tavg-u-hm-u.mon.GLB", + "atmosChem.cfc12.tavg-u-hm-u.mon.GLB", + "atmosChem.ch3oh.tavg-al-hxy-u.mon.GLB", + "atmosChem.ch4.tavg-al-hxy-u.mon.GLB", + "atmosChem.ch4.tavg-p19-hxy-air.mon.GLB", + "atmosChem.ch4.tavg-p39-hy-air.mon.GLB", + "atmosChem.ch4.tavg-u-hm-u.mon.GLB", + "atmosChem.ch4.tclm-p19-hxy-air.mon.GLB", + "atmosChem.ch4.tclm-u-hm-u.mon.GLB", + "atmosChem.ch4losssoil.tavg-u-hxy-u.mon.GLB", + "atmosChem.ch4ref.ti-al-hxy-u.fx.GLB", + "atmosChem.chegph2oo1d.tavg-al-hxy-u.mon.GLB", + "atmosChem.chepnh4.tavg-al-hxy-u.mon.GLB", + "atmosChem.chepno3.tavg-al-hxy-u.mon.GLB", + "atmosChem.dms.tavg-al-hxy-u.mon.30S-90S", + "atmosChem.dms.tavg-al-hxy-u.mon.GLB", + "atmosChem.do3chm.tavg-al-hxy-u.mon.GLB", + "atmosChem.dryh2.tavg-u-hxy-u.mon.GLB", + "atmosChem.dryhno3.tavg-u-hxy-u.mon.GLB", + "atmosChem.drynh3.tavg-u-hxy-u.mon.GLB", + "atmosChem.drynh4.tavg-u-hxy-u.mon.GLB", + "atmosChem.drynoy.tavg-u-hxy-u.mon.GLB", + "atmosChem.e90inst.tpt-al-hxy-u.mon.GLB", + "atmosChem.emiach4.tavg-u-hxy-u.mon.GLB", + "atmosChem.emiavnox.tavg-al-hxy-u.mon.GLB", + "atmosChem.emic2h4.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic2h5oh.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic2h6.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic3h6.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic3h8.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic4h10.tavg-u-hxy-u.mon.GLB", + "atmosChem.emich3oh.tavg-u-hxy-u.mon.GLB", + "atmosChem.emich4.tavg-u-hxy-u.mon.GLB", + "atmosChem.emih2.tavg-u-hxy-u.mon.GLB", + "atmosChem.emilkch4.tavg-u-hxy-u.mon.GLB", + "atmosChem.h2.tavg-al-hxy-u.mon.GLB", + "atmosChem.h2loss.tavg-al-hxy-u.mon.GLB", + "atmosChem.h2prod.tavg-al-hxy-u.mon.GLB", + "atmosChem.hcfc22.tavg-u-hm-u.mon.GLB", + "atmosChem.meanage.tavg-al-hxy-u.mon.GLB", + "atmosChem.meanage.tavg-p39-hy-air.mon.GLB", + "atmosChem.n2o.tavg-al-hxy-u.mon.GLB", + "atmosChem.n2o.tavg-p19-hxy-air.mon.GLB", + "atmosChem.n2o.tavg-p39-hy-air.mon.GLB", + "atmosChem.n2o.tavg-u-hm-u.mon.GLB", + "atmosChem.n2o.tclm-p19-hxy-air.mon.GLB", + "atmosChem.n2o.tclm-u-hm-u.mon.GLB", + "atmosChem.o3.tavg-al-hxy-u.mon.GLB", + "atmosChem.o3.tavg-p19-hxy-air.mon.GLB", + "atmosChem.o3.tavg-p39-hy-air.mon.GLB", + "atmosChem.o3.tclm-p19-hxy-air.mon.GLB", + "atmosChem.o3.tpt-al-hxy-u.mon.GLB", + "atmosChem.o3ref.tclm-al-hxy-u.fx.GLB", + "atmosChem.o3ref.ti-al-hxy-u.fx.GLB", + "atmosChem.o3ste.tavg-al-hxy-u.mon.GLB", + "atmosChem.rlutch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rlutcsch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rlutcso3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rluto3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsutch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsutcsch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsutcso3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsuto3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.stratch4loss.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropch4loss.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropch4lossoh.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropdo3chm.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropo3ste.tavg-al-hxy-u.mon.GLB", + "atmosChem.wethno3.tavg-al-hxy-u.mon.GLB", + "atmosChem.wetnh3.tavg-u-hxy-u.mon.GLB", + "atmosChem.wetnh4.tavg-u-hxy-u.mon.GLB", + "atmosChem.wetno3.tavg-al-hxy-u.mon.GLB", + "atmosChem.wetnoy.tavg-u-hxy-u.mon.GLB", + "land.baresoilFrac.tavg-u-hxy-u.mon.GLB", + "land.burntFractionAll.tavg-u-hxy-u.mon.GLB", + "land.cLand.tavg-u-hxy-lnd.mon.GLB", + "land.cLeaf.tavg-u-hxy-lnd.mon.GLB", + "land.cLitter.tavg-u-hxy-lnd.mon.GLB", + "land.cProduct.tavg-u-hxy-lnd.mon.GLB", + "land.cRoot.tavg-u-hxy-lnd.mon.GLB", + "land.cropFrac.tavg-u-hxy-u.mon.GLB", + "land.cSoil.tavg-d100cm-hxy-lnd.mon.GLB", + "land.cSoil.tavg-u-hxy-lnd.mon.GLB", + "land.cStem.tavg-u-hxy-lnd.mon.GLB", + "land.cVeg.tavg-u-hxy-lnd.mon.GLB", + "land.evspsblpot.tavg-u-hxy-lnd.day.GLB", + "land.fBNF.tavg-u-hxy-lnd.mon.GLB", + "land.fFire.tavg-u-hxy-lnd.mon.GLB", + "land.fFireAll.tavg-u-hxy-lnd.mon.GLB", + "land.fFireNat.tavg-u-hxy-lnd.mon.GLB", + "land.fLuc.tavg-u-hxy-lnd.mon.GLB", + "land.fNgas.tavg-u-hxy-lnd.mon.GLB", + "land.fNgasFire.tavg-u-hxy-lnd.mon.GLB", + "land.fNLandToOcean.tavg-u-hxy-lnd.mon.GLB", + "land.fNleach.tavg-u-hxy-lnd.mon.GLB", + "land.fNLitterSoil.tavg-u-hxy-lnd.mon.GLB", + "land.fNloss.tavg-u-hxy-lnd.mon.GLB", + "land.fNup.tavg-u-hxy-lnd.mon.GLB", + "land.fNVegSoil.tavg-u-hxy-lnd.mon.GLB", + "land.gpp.tavg-u-hxy-lnd.mon.GLB", + "land.grassFrac.tavg-u-hxy-u.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.day.GLB", + "land.mrros.tavg-u-hxy-lnd.day.GLB", + "land.mrso.tavg-u-hxy-lnd.day.GLB", + "land.mrsol.tavg-d10cm-hxy-lnd.day.GLB", + "land.nbp.tavg-u-hxy-lnd.mon.GLB", + "land.nep.tavg-u-hxy-lnd.mon.GLB", + "land.nLand.tavg-u-hxy-lnd.mon.GLB", + "land.nLitter.tavg-u-hxy-lnd.mon.GLB", + "land.nMineral.tavg-u-hxy-lnd.mon.GLB", + "land.npp.tavg-u-hxy-lnd.mon.GLB", + "land.nProduct.tavg-u-hxy-lnd.mon.GLB", + "land.nSoil.tavg-u-hxy-lnd.mon.GLB", + "land.nVeg.tavg-u-hxy-lnd.mon.GLB", + "land.ra.tavg-u-hxy-lnd.mon.GLB", + "land.rh.tavg-u-hxy-lnd.mon.GLB", + "land.shrubFrac.tavg-u-hxy-u.mon.GLB", + "land.tran.tavg-u-hxy-lnd.mon.GLB", + "land.treeFrac.tavg-u-hxy-u.mon.GLB", + "land.tsl.tavg-sl-hxy-lnd.mon.GLB", + "land.tslsi.tavg-u-hxy-u.day.GLB", + "land.vegFrac.tavg-u-hxy-u.mon.GLB", + "land.vegHeight.tavg-u-hxy-tree.mon.GLB", + "land.vegHeight.tavg-u-hxy-veg.mon.GLB", + "land.wetlandCH4.tavg-u-hxy-lnd.mon.GLB", + "landIce.pflw.tavg-u-hxy-lnd.mon.GLB", + "landIce.sbl.tavg-u-hxy-u.mon.GLB", + "landIce.snc.tavg-u-hxy-lnd.day.GLB", + "landIce.snd.tavg-u-hxy-lnd.mon.GLB", + "landIce.snm.tavg-u-hxy-lnd.mon.GLB", + "landIce.snw.tavg-u-hxy-lnd.day.GLB", + "landIce.sootsn.tavg-u-hxy-lnd.mon.GLB", + "landIce.tpf.tavg-u-hxy-lnd.mon.GLB", + "ocean.absscint.tavg-op4-hxy-sea.mon.GLB", + "ocean.agessc.tavg-ol-hxy-sea.mon.GLB", + "ocean.bigthetao.tavg-ol-hm-sea.mon.GLB", + "ocean.bigthetao.tavg-ol-hxy-sea.dec.GLB", + "ocean.bigthetao.tavg-op20bar-hxy-sea.day.GLB", + "ocean.chcint.tavg-op4-hxy-sea.mon.GLB", + "ocean.hfbasin.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpmadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpmdiff.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpsmadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfds.tavg-u-hxy-sea.mon.30S-90S", + "ocean.hfx.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfx.tavg-u-hxy-sea.day.GLB", + "ocean.hfx.tavg-u-hxy-sea.mon.GLB", + "ocean.hfy.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfy.tavg-u-hxy-sea.day.GLB", + "ocean.hfy.tavg-u-hxy-sea.mon.GLB", + "ocean.htovgyre.tavg-u-hyb-sea.mon.GLB", + "ocean.htovovrt.tavg-u-hyb-sea.mon.GLB", + "ocean.masscello.tavg-ol-hxy-sea.dec.GLB", + "ocean.masso.tavg-u-hm-sea.dec.GLB", + "ocean.masso.tavg-u-hm-sea.mon.GLB", + "ocean.mlotst.tavg-u-hxy-sea.day.GLB", + "ocean.mlotst.tavg-u-hxy-sea.mon.30S-90S", + "ocean.mlotst.tmax-u-hxy-sea.mon.GLB", + "ocean.mlotst.tmin-u-hxy-sea.mon.GLB", + "ocean.mpw.tavg-u-hxy-sea.mon.GLB", + "ocean.mpw.tpt-u-hxy-sea.3hr.GLB", + "ocean.mpwswell.tavg-u-hxy-sea.mon.GLB", + "ocean.mpwswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.mpwwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.mpwwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.msftbarot.tavg-u-hxy-sea.mon.GLB", + "ocean.msftm.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftm.tavg-rho-hyb-sea.mon.GLB", + "ocean.msfty.tavg-ol-ht-sea.mon.GLB", + "ocean.msfty.tavg-rho-ht-sea.mon.GLB", + "ocean.obvfsq.tavg-ol-hxy-sea.mon.GLB", + "ocean.pbo.tavg-u-hxy-sea.mon.GLB", + "ocean.pfscint.tavg-op4-hxy-sea.mon.GLB", + "ocean.phcint.tavg-op4-hxy-sea.mon.GLB", + "ocean.pso.tavg-u-hxy-sea.mon.GLB", + "ocean.scint.tavg-op4-hxy-sea.mon.GLB", + "ocean.sduo.tavg-u-hxy-sea.mon.GLB", + "ocean.sduo.tpt-u-hxy-sea.3hr.GLB", + "ocean.sdvo.tavg-u-hxy-sea.mon.GLB", + "ocean.sdvo.tpt-u-hxy-sea.3hr.GLB", + "ocean.sfx.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfx.tavg-u-hxy-sea.mon.GLB", + "ocean.sfy.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfy.tavg-u-hxy-sea.mon.GLB", + "ocean.sltbasin.tavg-u-hyb-sea.mon.GLB", + "ocean.sltovgyre.tavg-u-hyb-sea.mon.GLB", + "ocean.sltovovrt.tavg-u-hyb-sea.mon.GLB", + "ocean.so.tavg-ol-hm-sea.mon.GLB", + "ocean.so.tavg-ol-hxy-sea.dec.GLB", + "ocean.so.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.sob.tavg-u-hxy-sea.mon.GLB", + "ocean.sos.tavg-u-hm-sea.mon.30S-90S", + "ocean.sos.tavg-u-hm-sea.mon.GLB", + "ocean.swh.tavg-u-hxy-sea.mon.GLB", + "ocean.swh.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhmax.tmax-u-hxy-sea.mon.GLB", + "ocean.swhmax.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhswell.tavg-u-hxy-sea.mon.GLB", + "ocean.swhswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.swhwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.tauuo.tavg-u-hxy-sea.dec.GLB", + "ocean.tauvo.tavg-u-hxy-sea.dec.GLB", + "ocean.thetao.tavg-ol-hm-sea.mon.GLB", + "ocean.thetao.tavg-ol-hxy-sea.dec.GLB", + "ocean.thetao.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.thetao.tavg-op20bar-hxy-sea.day.GLB", + "ocean.thkcello.tavg-ol-hxy-sea.dec.GLB", + "ocean.tob.tavg-u-hxy-sea.mon.GLB", + "ocean.tos.tavg-u-hm-sea.mon.GLB", + "ocean.tos.tavg-u-hxy-sea.mon.30S-90S", + "ocean.tos.tpt-u-hxy-sea.3hr.GLB", + "ocean.tossq.tavg-u-hxy-sea.day.GLB", + "ocean.umo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.uo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.uos.tavg-u-hxy-sea.day.GLB", + "ocean.vmo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.vo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.volcello.tavg-ol-hxy-sea.dec.GLB", + "ocean.volcello.tavg-ol-hxy-sea.mon.GLB", + "ocean.volcello.tavg-ol-hxy-sea.yr.GLB", + "ocean.volcello.ti-ol-hxy-sea.fx.GLB", + "ocean.volo.tavg-u-hm-sea.dec.GLB", + "ocean.volo.tavg-u-hm-sea.mon.GLB", + "ocean.vos.tavg-u-hxy-sea.day.GLB", + "ocean.wdir.tavg-u-hxy-sea.mon.GLB", + "ocean.wdir.tpt-u-hxy-sea.3hr.GLB", + "ocean.wdirswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wdirswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wdirwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wdirwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.wfcorr.tavg-u-hxy-sea.mon.GLB", + "ocean.wfo.tavg-u-hxy-sea.mon.GLB", + "ocean.wmo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.wo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.wpdir.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdir.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpdirswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdirswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpdirwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdirwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpp.tavg-u-hxy-sea.mon.GLB", + "ocean.wpp.tpt-u-hxy-sea.3hr.GLB", + "ocean.wppswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wppswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wppwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wppwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.zos.tavg-u-hxy-sea.mon.30S-90S", + "ocean.zossq.tavg-u-hxy-sea.mon.GLB", + "ocean.zostoga.tavg-u-hm-sea.day.GLB", + "ocnBgchem.bacc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.calc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chl.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chl.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chlcalc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chldiat.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chldiaz.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chlmisc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chlpico.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.dfe.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.dfe.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.dissic.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.dissic.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dmso.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.fgco2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.graz.tavg-ol-hxy-sea.mon.30S-90S", + "ocnBgchem.intdic.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intdoc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intparag.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbfe.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbn.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbp.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbsi.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpcalcite.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpn2.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpoc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpp.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppcalc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppdiat.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppdiaz.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppmisc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppnitrate.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpppico.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.nh4.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.no3.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.no3.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.ph.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phyc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phycalc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phydiat.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phydiaz.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phymisc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phypico.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.po4.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.pp.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.spco2.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.spco2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.zmeso.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zmicro.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zmisc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zooc.tavg-d0m-hxy-sea.mon.30S-90S", + "seaIce.evspsbl.tavg-u-hxy-si.mon.GLB", + "seaIce.prra.tavg-u-hxy-si.mon.GLB", + "seaIce.prsn.tavg-u-hxy-si.mon.GLB", + "seaIce.rlds.tavg-u-hxy-si.day.GLB", + "seaIce.rlds.tavg-u-hxy-si.mon.GLB", + "seaIce.rlus.tavg-u-hxy-si.day.GLB", + "seaIce.rlus.tavg-u-hxy-si.mon.GLB", + "seaIce.rsds.tavg-u-hxy-si.day.GLB", + "seaIce.rsds.tavg-u-hxy-si.mon.GLB", + "seaIce.rsus.tavg-u-hxy-si.day.GLB", + "seaIce.rsus.tavg-u-hxy-si.mon.GLB", + "seaIce.sbl.tavg-u-hxy-si.mon.GLB", + "seaIce.siage.tavg-u-hxy-si.day.GLB", + "seaIce.siage.tavg-u-hxy-si.mon.30S-90S", + "seaIce.siarea.tavg-u-hm-u.mon.NH", + "seaIce.siarea.tavg-u-hm-u.mon.SH", + "seaIce.siconc.tavg-u-hxy-u.mon.30S-90S", + "seaIce.siconca.tavg-u-hxy-u.day.GLB", + "seaIce.siconca.tavg-u-hxy-u.mon.GLB", + "seaIce.sidconcdyn.tavg-u-hxy-sea.mon.GLB", + "seaIce.sidconcth.tavg-u-hxy-sea.mon.GLB", + "seaIce.sidmassdyn.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthsi.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthwat.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmeltbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmeltlat.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmelttop.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassth.tavg-u-hxy-si.mon.GLB", + "seaIce.sieqthick.tavg-u-hxy-si.mon.GLB", + "seaIce.siextent.tavg-u-hm-u.mon.NH", + "seaIce.siextent.tavg-u-hm-u.mon.SH", + "seaIce.siflcondbot.tavg-u-hxy-si.day.GLB", + "seaIce.siflcondbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflcondtop.tavg-u-hxy-si.day.GLB", + "seaIce.siflcondtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sifllattop.tavg-u-hxy-si.day.GLB", + "seaIce.sifllattop.tavg-u-hxy-si.mon.GLB", + "seaIce.siflsensbot.tavg-u-hxy-si.day.GLB", + "seaIce.siflsensbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflsenstop.tavg-u-hxy-si.day.GLB", + "seaIce.siflsenstop.tavg-u-hxy-si.mon.GLB", + "seaIce.siflswdbot.tavg-u-hxy-si.day.GLB", + "seaIce.siflswdbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sihc.tavg-u-hxy-sea.day.GLB", + "seaIce.sihc.tavg-u-hxy-sea.mon.GLB", + "seaIce.sisndmassdyn.tavg-u-hxy-si.mon.GLB", + "seaIce.sisndmasssi.tavg-u-hxy-si.mon.GLB", + "seaIce.sisndmasswind.tavg-u-hxy-si.mon.GLB", + "seaIce.sisnhc.tavg-u-hxy-si.day.GLB", + "seaIce.sisnhc.tavg-u-hxy-si.mon.GLB", + "seaIce.sisnmass.tavg-u-hm-u.mon.NH", + "seaIce.sisnmass.tavg-u-hm-u.mon.SH", + "seaIce.sispeed.tavg-u-hxy-si.day.GLB", + "seaIce.sispeed.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-si.day.GLB", + "seaIce.sithick.tavg-u-hxy-si.mon.30S-90S", + "seaIce.sitimefrac.tavg-u-hxy-sea.day.GLB", + "seaIce.sitimefrac.tavg-u-hxy-sea.mon.30S-90S", + "seaIce.siu.tavg-u-hxy-si.day.GLB", + "seaIce.siu.tavg-u-hxy-si.mon.30S-90S", + "seaIce.siv.tavg-u-hxy-si.day.GLB", + "seaIce.siv.tavg-u-hxy-si.mon.30S-90S", + "seaIce.sivol.tavg-u-hm-u.mon.NH", + "seaIce.sivol.tavg-u-hm-u.mon.SH", + "seaIce.snc.tavg-u-hxy-si.mon.GLB", + "seaIce.snd.tavg-u-hxy-sn.day.GLB", + "seaIce.snd.tavg-u-hxy-sn.mon.30S-90S", + "seaIce.snm.tavg-u-hxy-si.mon.GLB", + "seaIce.snw.tavg-u-hxy-si.mon.GLB", + "seaIce.ts.tavg-u-hxy-si.day.GLB", + "seaIce.ts.tavg-u-hxy-si.mon.30S-90S" + ], + "Medium": [ + "atmos.hurs.tpt-h2m-hxy-u.3hr.GLB", + "atmos.noaahi2m.tavg-h2m-hxy-u.day.GLB", + "atmos.noaahi2m.tmax-h2m-hxy-u.day.GLB", + "atmos.prsn.tavg-u-hxy-u.3hr.GLB", + "atmos.ps.tpt-u-hxy-u.3hr.GLB", + "atmos.rlds.tavg-u-hxy-u.3hr.GLB", + "atmos.rsds.tavg-u-hxy-u.3hr.GLB", + "atmos.rsdsdiff.tavg-u-hxy-u.day.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.3hr.GLB", + "atmos.ua.tavg-h100m-hxy-u.3hr.GLB", + "atmos.va.tavg-h100m-hxy-u.3hr.GLB", + "atmos.wbgt.tavg-h2m-hxy-u.day.GLB", + "atmos.wbgt.tmax-h2m-hxy-u.day.GLB", + "land.irrDem.tavg-u-hxy-u.day.GLB", + "land.irrGw.tavg-u-hxy-u.day.GLB", + "land.irrLut.tavg-u-hxy-u.day.GLB", + "land.irrSurf.tavg-u-hxy-u.day.GLB", + "land.rzwc.tavg-u-hxy-lnd.day.GLB", + "ocean.evspsbl.tavg-u-hxy-ifs.mon.GLB", + "ocean.ficeberg.tavg-ol-hxy-sea.mon.GLB", + "ocean.ficeberg.tavg-u-hxy-sea.mon.GLB", + "ocean.friver.tavg-u-hxy-sea.mon.GLB", + "ocean.hfacrossline.tavg-u-ht-sea.mon.GLB", + "ocean.hfevapds.tavg-u-hxy-ifs.mon.GLB", + "ocean.hfibthermds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfibthermds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfrainds.tavg-u-hxy-ifs.mon.GLB", + "ocean.hfrunoffds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfrunoffds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfsnthermds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfsnthermds.tavg-u-hxy-sea.mon.GLB", + "ocean.mfo.tavg-u-ht-sea.mon.GLB", + "ocean.sfacrossline.tavg-u-ht-sea.mon.GLB", + "ocean.sfdsi.tavg-u-hxy-sea.mon.GLB", + "ocean.sfriver.tavg-u-hxy-sea.mon.GLB", + "ocean.siflfwbot.tavg-u-hxy-sea.mon.GLB", + "ocean.so.tavg-ol-hxy-sea.day.GLB", + "ocean.tnkebto.tavg-u-hxy-sea.yr.GLB", + "ocean.vsf.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfcorr.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfevap.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfpr.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfriver.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfsit.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.arag.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.arag.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.calc.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.calc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chl.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.o2.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.ph.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.talk.tavg-ol-hxy-sea.mon.GLB", + "seaIce.sfdsi.tavg-u-hxy-si.mon.GLB", + "seaIce.siage.tavg-u-hxy-si.mon.GLB", + "seaIce.siarea.tavg-u-hm-u.day.NH", + "seaIce.siarea.tavg-u-hm-u.day.SH", + "seaIce.siareaacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.sicompstren.tavg-u-hxy-si.mon.GLB", + "seaIce.sidivvel.tpt-u-hxy-si.mon.GLB", + "seaIce.sidmasstranx.tavg-u-hxy-u.mon.GLB", + "seaIce.sidmasstrany.tavg-u-hxy-u.mon.GLB", + "seaIce.sidragbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidragtop.tavg-u-hxy-si.mon.GLB", + "seaIce.siextent.tavg-u-hm-u.day.NH", + "seaIce.siextent.tavg-u-hm-u.day.SH", + "seaIce.sifb.tavg-u-hxy-si.day.GLB", + "seaIce.sifb.tavg-u-hxy-si.mon.GLB", + "seaIce.siflfwbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflfwdrain.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcecoriolx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcecorioly.tavg-u-hxy-si.mon.GLB", + "seaIce.siforceintstrx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforceintstry.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcetiltx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcetilty.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdconc.tavg-u-hxy-si.day.GLB", + "seaIce.siitdconc.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdsnconc.tavg-u-hxy-si.day.GLB", + "seaIce.siitdsnconc.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdsnthick.tavg-u-hxy-si.day.GLB", + "seaIce.siitdsnthick.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdthick.tavg-u-hxy-si.day.GLB", + "seaIce.siitdthick.tavg-u-hxy-si.mon.GLB", + "seaIce.simassacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.simpconc.tavg-u-hxy-si.day.GLB", + "seaIce.simpconc.tavg-u-hxy-si.mon.GLB", + "seaIce.simpeffconc.tavg-u-hxy-si.day.GLB", + "seaIce.simpeffconc.tavg-u-hxy-si.mon.GLB", + "seaIce.simprefrozen.tavg-u-hxy-simp.day.GLB", + "seaIce.simprefrozen.tavg-u-hxy-simp.mon.GLB", + "seaIce.simpthick.tavg-u-hxy-si.day.GLB", + "seaIce.simpthick.tavg-u-hxy-simp.mon.GLB", + "seaIce.sirdgconc.tavg-u-hxy-si.day.GLB", + "seaIce.sirdgconc.tavg-u-hxy-si.mon.GLB", + "seaIce.sisali.tavg-u-hxy-si.day.GLB", + "seaIce.sisali.tavg-u-hxy-si.mon.GLB", + "seaIce.sisaltmass.tavg-u-hxy-si.day.GLB", + "seaIce.sisaltmass.tavg-u-hxy-si.mon.GLB", + "seaIce.sishearvel.tpt-u-hxy-si.mon.GLB", + "seaIce.sisnmass.tavg-u-hm-u.day.NH", + "seaIce.sisnmass.tavg-u-hm-u.day.SH", + "seaIce.sisnmassacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.sistressave.tpt-u-hxy-si.mon.GLB", + "seaIce.sistressmax.tpt-u-hxy-si.mon.GLB", + "seaIce.sistrxdtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sistrxubot.tavg-u-hxy-si.mon.GLB", + "seaIce.sistrydtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sistryubot.tavg-u-hxy-si.mon.GLB", + "seaIce.sitempbot.tavg-u-hxy-si.day.GLB", + "seaIce.sitempbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sitempsnic.tavg-u-hxy-si.day.GLB", + "seaIce.sitempsnic.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-sir.day.GLB", + "seaIce.sithick.tavg-u-hxy-sir.mon.GLB", + "seaIce.sivol.tavg-u-hm-u.day.NH", + "seaIce.sivol.tavg-u-hm-u.day.SH" + ], + "Low": [ + "aerosol.ccldncl.tavg-u-hxy-ccl.day.GLB", + "aerosol.sfpm1.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.sfpm10.tavg-h2m-hxy-u.1hr.GLB", + "atmos.cldnci.tavg-u-hxy-cl.day.GLB", + "atmos.co2.tavg-h2m-hxy-u.mon.GLB", + "atmos.hurs.tavg-h2m-hxy-u.1hr.GLB", + "atmos.hurs.tmin-h2m-hxy-crp.day.GLB", + "atmos.loaddust.tavg-u-hxy-u.day.GLB", + "atmos.loadnh4.tavg-u-hxy-u.day.GLB", + "atmos.loadno3.tavg-u-hxy-u.day.GLB", + "atmos.loadso4.tavg-u-hxy-u.day.GLB", + "atmos.loadsoa.tavg-u-hxy-u.day.GLB", + "atmos.loadss.tavg-u-hxy-u.day.GLB", + "atmos.pr.tavg-u-hxy-crp.day.GLB", + "atmos.reffcclwtop.tavg-u-hxy-ccl.day.GLB", + "atmos.reffsclwtop.tavg-u-hxy-scl.day.GLB", + "atmos.rsds.tavg-u-hxy-u.1hr.GLB", + "atmos.rsdscsdiff.tavg-u-hxy-u.day.GLB", + "atmos.scldncl.tavg-u-hxy-scl.day.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.1hr.GLB", + "atmos.tas.tmax-h2m-hxy-crp.day.GLB", + "atmos.tas.tmin-h2m-hxy-crp.day.GLB", + "atmos.zfull.ti-al-hxy-u.fx.GLB", + "atmosChem.drynh3.tavg-u-hxy-u.day.GLB", + "atmosChem.drynh4.tavg-u-hxy-u.day.GLB", + "atmosChem.drynoy.tavg-u-hxy-u.day.GLB", + "atmosChem.wetnh3.tavg-u-hxy-u.day.GLB", + "atmosChem.wetnh4.tavg-u-hxy-u.day.GLB", + "atmosChem.wetnoy.tavg-u-hxy-u.day.GLB", + "land.c3PftFrac.tavg-u-hxy-u.mon.GLB", + "land.c4PftFrac.tavg-u-hxy-u.mon.GLB", + "land.cropFracC3.tavg-u-hxy-u.mon.GLB", + "land.cropFracC4.tavg-u-hxy-u.mon.GLB", + "land.fHarvestToAtmos.tavg-u-hxy-lnd.mon.GLB", + "land.irrLut.tavg-u-hxy-multi.mon.GLB", + "land.lai.tavg-u-hxy-lnd.day.GLB", + "land.mrsol.tavg-sl-hxy-lnd.mon.GLB", + "land.pastureFrac.tavg-u-hxy-u.mon.GLB", + "land.pastureFracC3.tavg-u-hxy-u.mon.GLB", + "land.pastureFracC4.tavg-u-hxy-u.mon.GLB", + "land.prveg.tavg-u-hxy-lnd.mon.GLB", + "land.residualFrac.tavg-u-hxy-u.mon.GLB", + "land.tas.tavg-u-hxy-u.1hr.GLB", + "ocean.difmxybo.tavg-ol-hxy-sea.yr.GLB", + "ocean.difmxylo.tavg-ol-hxy-sea.yr.GLB", + "ocean.diftrblo.tavg-ol-hxy-sea.yr.GLB", + "ocean.diftrelo.tavg-ol-hxy-sea.yr.GLB", + "ocean.difvho.tavg-ol-hxy-sea.yr.GLB", + "ocean.difvso.tavg-ol-hxy-sea.yr.GLB", + "ocean.dispkexyfo.tavg-u-hxy-sea.yr.GLB", + "ocean.dxto.ti-u-hxy-u.fx.GLB", + "ocean.dxuo.ti-u-hxy-u.fx.GLB", + "ocean.dxvo.ti-u-hxy-u.fx.GLB", + "ocean.dyto.ti-u-hxy-u.fx.GLB", + "ocean.dyuo.ti-u-hxy-u.fx.GLB", + "ocean.dyvo.ti-u-hxy-u.fx.GLB", + "ocean.mlotstsq.tavg-u-hxy-sea.mon.GLB", + "ocean.msftmmpa.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftmmpa.tavg-rho-hyb-sea.mon.GLB", + "ocean.msftmsmpa.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftypa.tavg-ol-ht-sea.mon.GLB", + "ocean.msftypa.tavg-rho-ht-sea.mon.GLB", + "ocean.ocontempdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontempmint.tavg-u-hxy-sea.yr.GLB", + "ocean.ocontemppadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemppmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemppsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemprmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemptend.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottempdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottempmint.tavg-u-hxy-sea.yr.GLB", + "ocean.opottemppadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemppmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemppsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemprmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemptend.tavg-ol-hxy-sea.dec.GLB", + "ocean.osaltdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpsmadvect.tavg-ol-hxy-sea.mon.GLB", + "ocean.osaltpsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltrmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osalttend.tavg-ol-hxy-sea.yr.GLB", + "ocean.rsdoabsorb.tavg-ol-hxy-sea.yr.GLB", + "ocean.somint.tavg-u-hxy-sea.yr.GLB", + "ocean.sossq.tavg-u-hxy-sea.mon.GLB", + "ocean.thkcelluo.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcellvo.tavg-ol-hxy-sea.mon.GLB", + "ocean.tnpeo.tavg-u-hxy-sea.yr.GLB", + "ocean.tossq.tavg-u-hxy-sea.mon.GLB" + ] + }, + "piClim-aer": { + "Core": [ + "atmos.areacella.ti-u-hxy-u.fx.GLB", + "atmos.cl.tavg-al-hxy-u.mon.GLB", + "atmos.cli.tavg-al-hxy-u.mon.GLB", + "atmos.clivi.tavg-u-hxy-u.mon.GLB", + "atmos.clt.tavg-u-hxy-u.day.GLB", + "atmos.clt.tavg-u-hxy-u.mon.GLB", + "atmos.clw.tavg-al-hxy-u.mon.GLB", + "atmos.clwvi.tavg-u-hxy-u.mon.GLB", + "atmos.evspsbl.tavg-u-hxy-u.mon.GLB", + "atmos.hfls.tavg-u-hxy-u.mon.GLB", + "atmos.hfss.tavg-u-hxy-u.mon.GLB", + "atmos.hur.tavg-p19-hxy-air.mon.GLB", + "atmos.hur.tavg-p19-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.6hr.GLB", + "atmos.hurs.tavg-h2m-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.mon.GLB", + "atmos.hus.tavg-p19-hxy-u.day.GLB", + "atmos.hus.tavg-p19-hxy-u.mon.GLB", + "atmos.huss.tavg-h2m-hxy-u.day.GLB", + "atmos.huss.tavg-h2m-hxy-u.mon.GLB", + "atmos.huss.tpt-h2m-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.1hr.GLB", + "atmos.pr.tavg-u-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.day.GLB", + "atmos.pr.tavg-u-hxy-u.mon.GLB", + "atmos.prc.tavg-u-hxy-u.mon.GLB", + "atmos.prsn.tavg-u-hxy-u.mon.GLB", + "atmos.prw.tavg-u-hxy-u.mon.GLB", + "atmos.ps.tavg-u-hxy-u.day.GLB", + "atmos.ps.tavg-u-hxy-u.mon.GLB", + "atmos.psl.tavg-u-hxy-u.day.GLB", + "atmos.psl.tavg-u-hxy-u.mon.GLB", + "atmos.rlds.tavg-u-hxy-u.mon.GLB", + "atmos.rldscs.tavg-u-hxy-u.mon.GLB", + "atmos.rlus.tavg-u-hxy-u.mon.GLB", + "atmos.rluscs.tavg-u-hxy-u.mon.GLB", + "atmos.rlut.tavg-u-hxy-u.mon.GLB", + "atmos.rlutcs.tavg-u-hxy-u.mon.GLB", + "atmos.rsds.tavg-u-hxy-u.day.GLB", + "atmos.rsds.tavg-u-hxy-u.mon.GLB", + "atmos.rsdscs.tavg-u-hxy-u.mon.GLB", + "atmos.rsdt.tavg-u-hxy-u.mon.GLB", + "atmos.rsus.tavg-u-hxy-u.mon.GLB", + "atmos.rsuscs.tavg-u-hxy-u.mon.GLB", + "atmos.rsut.tavg-u-hxy-u.mon.GLB", + "atmos.rsutcs.tavg-u-hxy-u.mon.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.day.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.mon.GLB", + "atmos.sftlf.ti-u-hxy-u.fx.GLB", + "atmos.ta.tavg-p19-hxy-air.day.GLB", + "atmos.ta.tavg-p19-hxy-air.mon.GLB", + "atmos.ta.tpt-p3-hxy-air.6hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.day.GLB", + "atmos.tas.tavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tmax-h2m-hxy-u.day.GLB", + "atmos.tas.tmaxavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tmin-h2m-hxy-u.day.GLB", + "atmos.tas.tminavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tpt-h2m-hxy-u.3hr.GLB", + "atmos.tauu.tavg-u-hxy-u.mon.GLB", + "atmos.tauv.tavg-u-hxy-u.mon.GLB", + "atmos.ts.tavg-u-hxy-u.mon.GLB", + "atmos.ua.tavg-p19-hxy-air.day.GLB", + "atmos.ua.tavg-p19-hxy-air.mon.GLB", + "atmos.ua.tpt-p3-hxy-air.6hr.GLB", + "atmos.uas.tavg-h10m-hxy-u.day.GLB", + "atmos.uas.tavg-h10m-hxy-u.mon.GLB", + "atmos.uas.tpt-h10m-hxy-u.3hr.GLB", + "atmos.va.tavg-p19-hxy-air.day.GLB", + "atmos.va.tavg-p19-hxy-air.mon.GLB", + "atmos.va.tpt-p3-hxy-air.6hr.GLB", + "atmos.vas.tavg-h10m-hxy-u.day.GLB", + "atmos.vas.tavg-h10m-hxy-u.mon.GLB", + "atmos.vas.tpt-h10m-hxy-u.3hr.GLB", + "atmos.wap.tavg-p19-hxy-air.mon.GLB", + "atmos.wap.tavg-p19-hxy-u.day.GLB", + "atmos.zg.tavg-p19-hxy-air.day.GLB", + "atmos.zg.tavg-p19-hxy-air.mon.GLB", + "land.evspsblsoi.tavg-u-hxy-lnd.mon.GLB", + "land.evspsblveg.tavg-u-hxy-lnd.mon.GLB", + "land.lai.tavg-u-hxy-lnd.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.mon.GLB", + "land.mrros.tavg-u-hxy-lnd.mon.GLB", + "land.mrso.tavg-u-hxy-lnd.mon.GLB", + "land.mrsofc.ti-u-hxy-lnd.fx.GLB", + "land.mrsol.tavg-d10cm-hxy-lnd.mon.GLB", + "land.orog.ti-u-hxy-u.fx.GLB", + "land.rootd.ti-u-hxy-lnd.fx.GLB", + "land.sftgif.ti-u-hxy-u.fx.GLB", + "land.slthick.ti-sl-hxy-lnd.fx.GLB", + "landIce.mrfso.tavg-u-hxy-lnd.mon.GLB", + "landIce.snc.tavg-u-hxy-lnd.mon.GLB", + "landIce.snw.tavg-u-hxy-lnd.mon.GLB", + "ocean.areacello.ti-u-hxy-u.fx.GLB", + "ocean.basin.ti-u-hxy-u.fx.GLB", + "ocean.bigthetao.tavg-ol-hxy-sea.mon.GLB", + "ocean.deptho.ti-u-hxy-sea.fx.GLB", + "ocean.hfds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfgeou.ti-u-hxy-sea.fx.GLB", + "ocean.masscello.tavg-ol-hxy-sea.mon.GLB", + "ocean.masscello.ti-ol-hxy-sea.fx.GLB", + "ocean.mlotst.tavg-u-hxy-sea.mon.GLB", + "ocean.sftof.ti-u-hxy-u.fx.GLB", + "ocean.so.tavg-ol-hxy-sea.mon.GLB", + "ocean.sos.tavg-u-hxy-sea.day.GLB", + "ocean.sos.tavg-u-hxy-sea.mon.GLB", + "ocean.tauuo.tavg-u-hxy-sea.mon.GLB", + "ocean.tauvo.tavg-u-hxy-sea.mon.GLB", + "ocean.thetao.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcello.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcello.ti-ol-hxy-sea.fx.GLB", + "ocean.tos.tavg-u-hxy-sea.day.GLB", + "ocean.tos.tavg-u-hxy-sea.mon.GLB", + "ocean.umo.tavg-ol-hxy-sea.mon.GLB", + "ocean.uo.tavg-ol-hxy-sea.mon.GLB", + "ocean.vmo.tavg-ol-hxy-sea.mon.GLB", + "ocean.vo.tavg-ol-hxy-sea.mon.GLB", + "ocean.wmo.tavg-ol-hxy-sea.mon.GLB", + "ocean.wo.tavg-ol-hxy-sea.mon.GLB", + "ocean.zos.tavg-u-hxy-sea.day.GLB", + "ocean.zos.tavg-u-hxy-sea.mon.GLB", + "ocean.zostoga.tavg-u-hm-sea.mon.GLB", + "seaIce.siconc.tavg-u-hxy-u.day.GLB", + "seaIce.siconc.tavg-u-hxy-u.mon.GLB", + "seaIce.simass.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-si.mon.GLB", + "seaIce.sitimefrac.tavg-u-hxy-sea.mon.GLB", + "seaIce.siu.tavg-u-hxy-si.mon.GLB", + "seaIce.siv.tavg-u-hxy-si.mon.GLB", + "seaIce.snd.tavg-u-hxy-sn.mon.GLB", + "seaIce.ts.tavg-u-hxy-si.mon.GLB" + ], + "High": [ + "aerosol.abs550aer.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550bc.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550dust.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550no3.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550oa.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550so4.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550ss.tavg-u-hxy-u.mon.GLB", + "aerosol.airmass.tavg-al-hxy-u.mon.GLB", + "aerosol.aoanh.tavg-al-hxy-u.mon.NH", + "aerosol.bry.tavg-p39-hy-air.mon.GLB", + "aerosol.bs550aer.tpt-al-hxy-u.6hr.GLB", + "aerosol.c2h6.tavg-al-hxy-u.mon.GLB", + "aerosol.c3h6.tavg-al-hxy-u.mon.GLB", + "aerosol.c3h8.tavg-al-hxy-u.mon.GLB", + "aerosol.ccldncl.tavg-u-hxy-ccl.mon.GLB", + "aerosol.ccn.tavg-u-hxy-ccl.mon.30S-90S", + "aerosol.ccn.tavg-u-hxy-ccl.mon.GLB", + "aerosol.ccn1.tavg-al-hxy-u.mon.30S-90S", + "aerosol.ccn1.tavg-al-hxy-u.mon.GLB", + "aerosol.ccnp02.tavg-al-hxy-u.mon.30S-90S", + "aerosol.ccnp02.tavg-al-hxy-u.mon.GLB", + "aerosol.cdnc.tavg-al-hxy-u.mon.30S-90S", + "aerosol.cdnc.tavg-al-hxy-u.mon.GLB", + "aerosol.cfc114.tavg-al-hxy-u.mon.GLB", + "aerosol.ch3coch3.tavg-al-hxy-u.mon.GLB", + "aerosol.cheaqpso4.tavg-al-hxy-u.mon.GLB", + "aerosol.chegpso4.tavg-al-hxy-u.mon.GLB", + "aerosol.chepasoa.tavg-u-hxy-u.mon.GLB", + "aerosol.chepsoa.tavg-u-hxy-u.mon.GLB", + "aerosol.cly.tavg-p39-hy-air.mon.GLB", + "aerosol.co.tavg-al-hxy-u.mon.GLB", + "aerosol.co.tavg-h2m-hxy-u.day.GLB", + "aerosol.cod.tavg-u-hxy-u.day.GLB", + "aerosol.cod.tavg-u-hxy-u.mon.30S-90S", + "aerosol.cod.tavg-u-hxy-u.mon.GLB", + "aerosol.conccn.tavg-al-hxy-u.mon.GLB", + "aerosol.conccn.tpt-u-hs-u.3hr.GLB", + "aerosol.drybc.tavg-u-hxy-u.mon.GLB", + "aerosol.drydust.tavg-u-hxy-u.mon.GLB", + "aerosol.dryno3.tavg-u-hxy-u.mon.GLB", + "aerosol.dryo3.tavg-u-hxy-u.mon.GLB", + "aerosol.dryoa.tavg-u-hxy-u.mon.GLB", + "aerosol.dryso2.tavg-u-hxy-u.mon.GLB", + "aerosol.dryso4.tavg-u-hxy-u.mon.GLB", + "aerosol.dryss.tavg-u-hxy-u.mon.GLB", + "aerosol.ec550aer.tavg-al-hxy-u.mon.GLB", + "aerosol.ec550aer.tpt-u-hxy-u.6hr.GLB", + "aerosol.emiaco.tavg-u-hxy-u.mon.GLB", + "aerosol.emianox.tavg-u-hxy-u.mon.GLB", + "aerosol.emiaoa.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbbc.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbch4.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbco.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbdms.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbnh3.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbnox.tavg-u-hxy-u.mon.GLB", + "aerosol.emibboa.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbso2.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbvoc.tavg-u-hxy-u.mon.GLB", + "aerosol.emibc.tavg-u-hxy-u.mon.GLB", + "aerosol.emibvoc.tavg-u-hxy-u.mon.GLB", + "aerosol.emico.tavg-u-hxy-u.mon.GLB", + "aerosol.emidms.tavg-u-hxy-u.mon.30S-90S", + "aerosol.emidms.tavg-u-hxy-u.mon.GLB", + "aerosol.emidust.tavg-u-hxy-u.mon.GLB", + "aerosol.emiisop.tavg-u-hxy-u.mon.GLB", + "aerosol.emilnox.tavg-al-hxy-u.mon.GLB", + "aerosol.eminh3.tavg-u-hxy-u.mon.GLB", + "aerosol.eminox.tavg-u-hxy-u.mon.GLB", + "aerosol.emioa.tavg-u-hxy-u.mon.GLB", + "aerosol.emiso2.tavg-u-hxy-u.mon.GLB", + "aerosol.emiso4.tavg-u-hxy-u.mon.GLB", + "aerosol.emiss.tavg-u-hxy-u.mon.30S-90S", + "aerosol.emiss.tavg-u-hxy-u.mon.GLB", + "aerosol.emivoc.tavg-u-hxy-u.mon.GLB", + "aerosol.h2o.tavg-al-hxy-u.mon.GLB", + "aerosol.h2o.tavg-p39-hy-air.mon.GLB", + "aerosol.hcfc22.tavg-al-hxy-u.mon.GLB", + "aerosol.hcho.tavg-al-hxy-u.mon.GLB", + "aerosol.hcl.tavg-al-hxy-u.mon.GLB", + "aerosol.hcl.tavg-p39-hy-air.mon.GLB", + "aerosol.hfc125.tavg-al-hxy-u.mon.GLB", + "aerosol.hfc134a.tavg-al-hxy-u.mon.GLB", + "aerosol.hno3.tavg-al-hxy-u.mon.GLB", + "aerosol.hno3.tavg-p39-hy-air.mon.GLB", + "aerosol.ho2.tavg-p39-hy-air.mon.GLB", + "aerosol.isop.tavg-al-hxy-u.mon.GLB", + "aerosol.jno2.tavg-al-hxy-u.mon.GLB", + "aerosol.lossch4.tavg-al-hxy-u.mon.GLB", + "aerosol.lossco.tavg-al-hxy-u.mon.GLB", + "aerosol.lossn2o.tavg-al-hxy-u.mon.GLB", + "aerosol.lwp.tavg-u-hxy-u.mon.GLB", + "aerosol.mmraerh2o.tavg-al-hxy-u.mon.GLB", + "aerosol.mmraerh2o.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmraerh2o.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrbc.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrbc.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrbc.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrbc.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrdust.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrdust.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrdust.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrdust.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrnh4.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrnh4.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrnh4.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrnh4.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrno3.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrno3.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrno3.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrno3.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmroa.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmroa.tavg-al-hxy-u.mon.GLB", + "aerosol.mmroa.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmroa.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrpm1.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrpm1.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrpm2p5.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrpm2p5.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrso4.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrso4.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrso4.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrso4.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrsoa.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrsoa.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrsoa.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrss.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrss.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrss.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrss.tpt-h2m-hs-u.3hr.GLB", + "aerosol.nh50.tavg-al-hxy-u.mon.GLB", + "aerosol.no.tavg-al-hxy-u.mon.GLB", + "aerosol.no2.tavg-al-hxy-u.mon.GLB", + "aerosol.no2.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.noy.tavg-p39-hy-air.mon.GLB", + "aerosol.o3.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.o3.tmax-h2m-hxy-u.day.GLB", + "aerosol.o3loss.tavg-al-hxy-u.mon.GLB", + "aerosol.o3prod.tavg-al-hxy-u.mon.GLB", + "aerosol.od443aer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550aer.tavg-u-hxy-u.day.GLB", + "aerosol.od550aer.tavg-u-hxy-u.mon.30S-90S", + "aerosol.od550aer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550aerh2o.tavg-u-hxy-u.mon.GLB", + "aerosol.od550bb.tavg-u-hxy-u.mon.GLB", + "aerosol.od550bc.tavg-u-hxy-u.mon.GLB", + "aerosol.od550csaer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550dust.tavg-u-hxy-u.mon.GLB", + "aerosol.od550lt1aer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550no3.tavg-u-hxy-u.mon.GLB", + "aerosol.od550oa.tavg-u-hxy-u.mon.GLB", + "aerosol.od550so4.tavg-u-hxy-u.mon.GLB", + "aerosol.od550soa.tavg-u-hxy-u.mon.GLB", + "aerosol.od550ss.tavg-u-hxy-u.mon.GLB", + "aerosol.od865aer.tavg-u-hxy-u.mon.GLB", + "aerosol.oh.tavg-al-hxy-u.mon.GLB", + "aerosol.oh.tavg-p39-hy-air.mon.GLB", + "aerosol.pan.tavg-al-hxy-u.mon.GLB", + "aerosol.photo1d.tavg-al-hxy-u.mon.GLB", + "aerosol.pod0.tsum-u-hxy-u.mon.GLB", + "aerosol.reffccwctop.tavg-u-hxy-cl.mon.GLB", + "aerosol.reffclwtop.tavg-u-hxy-cl.mon.30S-90S", + "aerosol.reffclwtop.tavg-u-hxy-cl.mon.GLB", + "aerosol.rluscsaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rlutaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rlutcsaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rsutaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rsutcsaf.tavg-u-hxy-u.mon.GLB", + "aerosol.sfpm1.tavg-h2m-hxy-u.day.GLB", + "aerosol.sfpm10.tavg-al-hxy-u.mon.30S-90S", + "aerosol.sfpm10.tavg-al-hxy-u.mon.GLB", + "aerosol.sfpm10.tavg-h2m-hxy-u.day.GLB", + "aerosol.sfpm25.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.sfpm25.tavg-h2m-hxy-u.day.GLB", + "aerosol.so2.tavg-al-hxy-u.mon.30S-90S", + "aerosol.so2.tavg-al-hxy-u.mon.GLB", + "aerosol.so2.tavg-h2m-hxy-u.day.GLB", + "aerosol.so2.tpt-h2m-hs-u.3hr.GLB", + "aerosol.tatp.tavg-u-hxy-u.mon.GLB", + "aerosol.toz.tavg-u-hxy-u.day.GLB", + "aerosol.toz.tavg-u-hxy-u.mon.GLB", + "aerosol.tropoz.tavg-u-hxy-u.mon.GLB", + "aerosol.ttop.tavg-u-hxy-cl.mon.GLB", + "aerosol.ua.tavg-10hPa-hxy-air.day.GLB", + "aerosol.vt100.tavg-100hPa-hy-air.mon.GLB", + "aerosol.wa.tavg-al-hxy-u.mon.GLB", + "aerosol.wetbc.tavg-u-hxy-u.mon.GLB", + "aerosol.wetdust.tavg-u-hxy-u.mon.GLB", + "aerosol.wetoa.tavg-u-hxy-u.mon.GLB", + "aerosol.wetso2.tavg-u-hxy-u.mon.GLB", + "aerosol.wetso4.tavg-u-hxy-u.mon.GLB", + "aerosol.wetss.tavg-u-hxy-u.mon.GLB", + "aerosol.zg.tavg-10hPa-hxy-air.day.GLB", + "atmos.albisccp.tavg-u-hxy-cl.mon.30S-90S", + "atmos.bldep.tavg-u-hxy-u.mon.GLB", + "atmos.bldep.tmax-u-hxy-u.day.GLB", + "atmos.bldep.tmin-u-hxy-u.day.GLB", + "atmos.cl.tavg-al-hxy-u.mon.30S-90S", + "atmos.clc.tavg-al-hxy-u.mon.30S-90S", + "atmos.clc.tavg-al-hxy-u.mon.GLB", + "atmos.clcalipso.tavg-220hPa-hxy-air.mon.30S-90S", + "atmos.clcalipso.tavg-220hPa-hxy-air.mon.GLB", + "atmos.clcalipso.tavg-560hPa-hxy-air.mon.30S-90S", + "atmos.clcalipso.tavg-560hPa-hxy-air.mon.GLB", + "atmos.clcalipso.tavg-840hPa-hxy-air.mon.30S-90S", + "atmos.clcalipso.tavg-840hPa-hxy-air.mon.GLB", + "atmos.clcalipso.tavg-h40-hxy-air.mon.30S-90S", + "atmos.cldnci.tavg-u-hxy-cl.mon.GLB", + "atmos.cldncl.tavg-u-hxy-cl.mon.GLB", + "atmos.cldnvi.tavg-u-hxy-u.mon.GLB", + "atmos.cli.tavg-al-hxy-u.mon.30S-90S", + "atmos.clic.tavg-al-hxy-u.mon.30S-90S", + "atmos.clis.tavg-al-hxy-u.mon.30S-90S", + "atmos.clisccp.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clisccp.tavg-p7c-hxy-air.mon.GLB", + "atmos.clivi.tavg-u-hxy-u.mon.30S-90S", + "atmos.clivimodis.tavg-u-hxy-u.mon.30S-90S", + "atmos.clmodis.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clmodis.tavg-p7c-hxy-air.mon.GLB", + "atmos.clmodisice.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clmodisice.tavg-p7c-hxy-air.mon.GLB", + "atmos.clmodisiceReff.tavg-u-hxy-u.mon.GLB", + "atmos.clmodisliquid.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clmodisliquid.tavg-p7c-hxy-air.mon.GLB", + "atmos.clmodisliquidReff.tavg-u-hxy-u.mon.GLB", + "atmos.cls.tavg-al-hxy-u.mon.30S-90S", + "atmos.clt.tavg-u-hxy-u.mon.30S-90S", + "atmos.cltc.tavg-u-hxy-u.mon.GLB", + "atmos.cltcalipso.tavg-u-hxy-u.mon.30S-90S", + "atmos.cltisccp.tavg-u-hxy-u.mon.30S-90S", + "atmos.cltmodis.tavg-u-hxy-u.mon.30S-90S", + "atmos.clw.tavg-al-hxy-u.mon.30S-90S", + "atmos.clwc.tavg-al-hxy-u.mon.30S-90S", + "atmos.clws.tavg-al-hxy-u.mon.30S-90S", + "atmos.clwvi.tavg-u-hxy-u.mon.30S-90S", + "atmos.clwvimodis.tavg-u-hxy-u.mon.30S-90S", + "atmos.co2.tavg-al-hxy-u.mon.GLB", + "atmos.co2.tavg-p19-hxy-air.mon.GLB", + "atmos.co23D.tavg-al-hxy-u.mon.GLB", + "atmos.co2mass.tavg-u-hm-u.mon.GLB", + "atmos.dmc.tavg-alh-hxy-u.mon.30S-90S", + "atmos.edt.tavg-al-hxy-u.mon.30S-90S", + "atmos.evspsbl.tavg-u-hxy-lnd.day.GLB", + "atmos.evu.tavg-al-hxy-u.mon.30S-90S", + "atmos.fco2antt.tavg-u-hxy-u.mon.GLB", + "atmos.fco2fos.tavg-u-hxy-u.mon.GLB", + "atmos.fco2nat.tavg-u-hxy-u.mon.GLB", + "atmos.hfls.tavg-u-hxy-u.mon.30S-90S", + "atmos.hfss.tavg-u-hxy-u.mon.30S-90S", + "atmos.hur.tavg-al-hxy-u.mon.30S-90S", + "atmos.hur.tavg-al-hxy-u.mon.GLB", + "atmos.hur.tavg-p19-hxy-air.mon.30S-90S", + "atmos.hurs.tavg-h2m-hxy-u.mon.30S-90S", + "atmos.hurs.tmax-h2m-hxy-u.day.GLB", + "atmos.hurs.tmin-h2m-hxy-u.day.GLB", + "atmos.hus.tavg-al-hxy-u.mon.30S-90S", + "atmos.hus.tavg-al-hxy-u.mon.GLB", + "atmos.hus.tavg-p19-hxy-u.mon.30S-90S", + "atmos.hus.tpt-al-hxy-u.6hr.GLB", + "atmos.hus.tpt-p7h-hxy-air.6hr.GLB", + "atmos.huss.tavg-h2m-hxy-u.mon.30S-90S", + "atmos.huss.tpt-h2m-hxy-u.1hr.GLB", + "atmos.mc.tavg-alh-hxy-u.mon.GLB", + "atmos.mcd.tavg-alh-hxy-u.mon.30S-90S", + "atmos.mcu.tavg-alh-hxy-u.mon.30S-90S", + "atmos.mcu.tavg-alh-hxy-u.mon.GLB", + "atmos.pctisccp.tavg-u-hxy-cl.mon.30S-90S", + "atmos.pfull.tavg-al-hxy-u.mon.GLB", + "atmos.pfull.tclm-al-hxy-u.mon.30S-90S", + "atmos.phalf.tavg-alh-hxy-u.mon.GLB", + "atmos.pr.tavg-u-hxy-u.mon.30S-90S", + "atmos.pr.tmax-u-hxy-u.day.GLB", + "atmos.pr.tpt-u-hxy-u.6hr.GLB", + "atmos.prc.tavg-u-hxy-u.mon.30S-90S", + "atmos.prra.tavg-u-hxy-lnd.day.GLB", + "atmos.prra.tavg-u-hxy-u.mon.30S-90S", + "atmos.prsn.tavg-u-hxy-u.3hr.GLB", + "atmos.prsn.tavg-u-hxy-u.day.GLB", + "atmos.prsn.tavg-u-hxy-u.mon.30S-90S", + "atmos.prw.tavg-u-hxy-u.day.GLB", + "atmos.prw.tavg-u-hxy-u.mon.30S-90S", + "atmos.ps.tavg-u-hxy-u.1hr.GLB", + "atmos.ps.tavg-u-hxy-u.mon.30S-90S", + "atmos.ps.tpt-u-hxy-u.6hr.GLB", + "atmos.psl.tavg-u-hxy-u.mon.30S-90S", + "atmos.psl.tpt-u-hxy-u.1hr.GLB", + "atmos.psl.tpt-u-hxy-u.6hr.GLB", + "atmos.ptp.tavg-u-hxy-u.mon.GLB", + "atmos.reffcclwtop.tavg-u-hxy-ccl.mon.GLB", + "atmos.reffclic.tavg-al-hxy-ccl.mon.30S-90S", + "atmos.reffclis.tavg-al-hxy-scl.mon.30S-90S", + "atmos.reffclwc.tavg-al-hxy-ccl.mon.30S-90S", + "atmos.reffclws.tavg-al-hxy-scl.mon.30S-90S", + "atmos.reffsclwtop.tavg-u-hxy-scl.mon.GLB", + "atmos.rld.tavg-alh-hxy-u.mon.GLB", + "atmos.rld4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rldcs.tavg-alh-hxy-u.mon.GLB", + "atmos.rldcs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rlds.tavg-u-hxy-u.1hr.GLB", + "atmos.rlds.tavg-u-hxy-u.day.GLB", + "atmos.rlds.tavg-u-hxy-u.mon.30S-90S", + "atmos.rldscs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rlu.tavg-alh-hxy-u.mon.GLB", + "atmos.rlu4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rlucs.tavg-alh-hxy-u.mon.GLB", + "atmos.rlucs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rlus.tavg-u-hxy-u.day.GLB", + "atmos.rlus.tavg-u-hxy-u.mon.30S-90S", + "atmos.rlut.tavg-u-hxy-u.mon.30S-90S", + "atmos.rlut4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rlutcs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rlutcs4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rsd.tavg-alh-hxy-u.mon.GLB", + "atmos.rsd4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsdcs.tavg-alh-hxy-u.mon.GLB", + "atmos.rsdcs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsds.tavg-u-hxy-u.1hr.GLB", + "atmos.rsds.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsdscs.tavg-u-hxy-u.day.GLB", + "atmos.rsdscs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsdt.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsu.tavg-alh-hxy-u.mon.GLB", + "atmos.rsu4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsucs.tavg-alh-hxy-u.mon.GLB", + "atmos.rsucs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsus.tavg-u-hxy-u.day.GLB", + "atmos.rsus.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsuscs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsut.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsut4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rsutcs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsutcs4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rtmt.tavg-u-hxy-u.mon.GLB", + "atmos.rv850.tpt-850hPa-hxy-air.6hr.GLB", + "atmos.scldncl.tavg-u-hxy-scl.mon.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.mon.30S-90S", + "atmos.ta.tavg-al-hxy-u.mon.30S-90S", + "atmos.ta.tavg-al-hxy-u.mon.GLB", + "atmos.ta.tavg-p19-hxy-air.mon.30S-90S", + "atmos.ta.tavg-p39-hy-air.mon.GLB", + "atmos.ta.tpt-al-hxy-u.6hr.GLB", + "atmos.ta.tpt-p7h-hxy-air.6hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.1hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.mon.30S-90S", + "atmos.tas.tmaxavg-h2m-hxy-u.mon.30S-90S", + "atmos.tas.tminavg-h2m-hxy-u.mon.30S-90S", + "atmos.tnt.tavg-al-hxy-u.mon.GLB", + "atmos.tntrl.tavg-al-hxy-u.mon.GLB", + "atmos.tntrs.tavg-al-hxy-u.mon.GLB", + "atmos.ts.tavg-u-hxy-u.mon.30S-90S", + "atmos.ts.tpt-u-hxy-u.6hr.GLB", + "atmos.ua.tavg-al-hxy-u.mon.GLB", + "atmos.ua.tavg-p19-hxy-air.mon.30S-90S", + "atmos.ua.tavg-p39-hy-air.mon.GLB", + "atmos.ua.tpt-al-hxy-u.6hr.GLB", + "atmos.ua.tpt-p7h-hxy-air.6hr.GLB", + "atmos.uas.tavg-h10m-hxy-u.mon.30S-90S", + "atmos.uas.tpt-h10m-hxy-u.1hr.GLB", + "atmos.va.tavg-al-hxy-u.mon.GLB", + "atmos.va.tavg-p19-hxy-air.mon.30S-90S", + "atmos.va.tavg-p39-hy-air.mon.GLB", + "atmos.va.tpt-al-hxy-u.6hr.GLB", + "atmos.va.tpt-p7h-hxy-air.6hr.GLB", + "atmos.vas.tavg-h10m-hxy-u.mon.30S-90S", + "atmos.vas.tpt-h10m-hxy-u.1hr.GLB", + "atmos.wap.tavg-p19-hxy-air.mon.30S-90S", + "atmos.zg.tavg-1000hPa-hxy-air.day.GLB", + "atmos.zg.tavg-500hPa-hxy-air.day.GLB", + "atmos.zg.tavg-al-hxy-u.mon.GLB", + "atmos.zg.tavg-p19-hxy-air.mon.30S-90S", + "atmos.zg.tavg-p39-hy-air.mon.GLB", + "atmos.zg.tpt-500hPa-hxy-air.6hr.GLB", + "atmos.zg.tpt-al-hxy-u.6hr.GLB", + "atmos.zg.tpt-p7h-hxy-air.6hr.GLB", + "atmos.ztp.tavg-u-hxy-u.mon.GLB", + "atmosChem.c2h4.tavg-al-hxy-u.mon.GLB", + "atmosChem.c2h5oh.tavg-al-hxy-u.mon.GLB", + "atmosChem.c4h10.tavg-al-hxy-u.mon.GLB", + "atmosChem.cfc11.tavg-u-hm-u.mon.GLB", + "atmosChem.cfc113.tavg-u-hm-u.mon.GLB", + "atmosChem.cfc12.tavg-u-hm-u.mon.GLB", + "atmosChem.ch3oh.tavg-al-hxy-u.mon.GLB", + "atmosChem.ch4.tavg-al-hxy-u.mon.GLB", + "atmosChem.ch4.tavg-p39-hy-air.mon.GLB", + "atmosChem.ch4losssoil.tavg-u-hxy-u.mon.GLB", + "atmosChem.ch4ref.ti-al-hxy-u.fx.GLB", + "atmosChem.chegph2oo1d.tavg-al-hxy-u.mon.GLB", + "atmosChem.chepnh4.tavg-al-hxy-u.mon.GLB", + "atmosChem.chepno3.tavg-al-hxy-u.mon.GLB", + "atmosChem.dms.tavg-al-hxy-u.mon.30S-90S", + "atmosChem.dms.tavg-al-hxy-u.mon.GLB", + "atmosChem.do3chm.tavg-al-hxy-u.mon.GLB", + "atmosChem.dryh2.tavg-u-hxy-u.mon.GLB", + "atmosChem.dryhno3.tavg-u-hxy-u.mon.GLB", + "atmosChem.drynh3.tavg-u-hxy-u.mon.GLB", + "atmosChem.drynh4.tavg-u-hxy-u.mon.GLB", + "atmosChem.drynoy.tavg-u-hxy-u.mon.GLB", + "atmosChem.e90inst.tpt-al-hxy-u.mon.GLB", + "atmosChem.emiach4.tavg-u-hxy-u.mon.GLB", + "atmosChem.emiavnox.tavg-al-hxy-u.mon.GLB", + "atmosChem.emic2h4.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic2h5oh.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic2h6.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic3h6.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic3h8.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic4h10.tavg-u-hxy-u.mon.GLB", + "atmosChem.emich3oh.tavg-u-hxy-u.mon.GLB", + "atmosChem.emich4.tavg-u-hxy-u.mon.GLB", + "atmosChem.emih2.tavg-u-hxy-u.mon.GLB", + "atmosChem.emilkch4.tavg-u-hxy-u.mon.GLB", + "atmosChem.h2.tavg-al-hxy-u.mon.GLB", + "atmosChem.h2loss.tavg-al-hxy-u.mon.GLB", + "atmosChem.h2prod.tavg-al-hxy-u.mon.GLB", + "atmosChem.hcfc22.tavg-u-hm-u.mon.GLB", + "atmosChem.meanage.tavg-al-hxy-u.mon.GLB", + "atmosChem.meanage.tavg-p39-hy-air.mon.GLB", + "atmosChem.n2o.tavg-al-hxy-u.mon.GLB", + "atmosChem.n2o.tavg-p39-hy-air.mon.GLB", + "atmosChem.o3.tavg-al-hxy-u.mon.GLB", + "atmosChem.o3.tavg-p19-hxy-air.mon.GLB", + "atmosChem.o3.tavg-p39-hy-air.mon.GLB", + "atmosChem.o3.tpt-al-hxy-u.mon.GLB", + "atmosChem.o3ref.tclm-al-hxy-u.fx.GLB", + "atmosChem.o3ref.ti-al-hxy-u.fx.GLB", + "atmosChem.o3ste.tavg-al-hxy-u.mon.GLB", + "atmosChem.rlutch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rlutcsch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rlutcso3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rluto3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsutch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsutcsch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsutcso3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsuto3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.stratch4loss.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropch4loss.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropch4lossoh.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropdo3chm.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropo3ste.tavg-al-hxy-u.mon.GLB", + "atmosChem.wethno3.tavg-al-hxy-u.mon.GLB", + "atmosChem.wetnh3.tavg-u-hxy-u.mon.GLB", + "atmosChem.wetnh4.tavg-u-hxy-u.mon.GLB", + "atmosChem.wetno3.tavg-al-hxy-u.mon.GLB", + "atmosChem.wetnoy.tavg-u-hxy-u.mon.GLB", + "land.albc.tavg-u-hxy-veg.mon.GLB", + "land.areacellr.ti-u-hxy-u.fx.GLB", + "land.baresoilFrac.tavg-u-hxy-u.mon.GLB", + "land.burntFractionAll.tavg-u-hxy-u.mon.GLB", + "land.cGeologicStorage.tavg-u-hxy-u.mon.GLB", + "land.cLand.tavg-u-hxy-lnd.mon.GLB", + "land.cLitter.tavg-u-hxy-lnd.mon.GLB", + "land.cnc.tavg-u-hxy-u.mon.GLB", + "land.cProduct.tavg-u-hxy-lnd.mon.GLB", + "land.cropFrac.tavg-u-hxy-u.mon.GLB", + "land.cSoil.tavg-d100cm-hxy-lnd.mon.GLB", + "land.cSoil.tavg-u-hxy-lnd.mon.GLB", + "land.cVeg.tavg-u-hxy-lnd.mon.GLB", + "land.dcw.tavg-u-hxy-lnd.day.GLB", + "land.dslw.tavg-u-hxy-lnd.day.GLB", + "land.evspsblpot.tavg-u-hxy-lnd.day.GLB", + "land.evspsblpot.tavg-u-hxy-lnd.mon.GLB", + "land.fAnthDisturb.tavg-u-hxy-lnd.mon.GLB", + "land.fBNF.tavg-u-hxy-lnd.mon.GLB", + "land.fCLandToOcean.tavg-u-hxy-lnd.mon.GLB", + "land.fDeforestToAtmos.tavg-u-hxy-lnd.mon.GLB", + "land.fDeforestToProduct.tavg-u-hxy-lnd.mon.GLB", + "land.fFire.tavg-u-hxy-lnd.mon.GLB", + "land.fFireAll.tavg-u-hxy-lnd.mon.GLB", + "land.fFireNat.tavg-u-hxy-lnd.mon.GLB", + "land.fHarvestToAtmos.tavg-u-hxy-lnd.mon.GLB", + "land.fHarvestToGeologicStorage.tavg-u-hxy-lnd.mon.GLB", + "land.fHarvestToProduct.tavg-u-hxy-lnd.mon.GLB", + "land.fLitterSoil.tavg-u-hxy-lnd.mon.GLB", + "land.fN2O.tavg-u-hxy-lnd.mon.GLB", + "land.fNAnthDisturb.tavg-u-hxy-lnd.mon.GLB", + "land.fNdep.tavg-u-hxy-lnd.mon.GLB", + "land.fNfert.tavg-u-hxy-lnd.mon.GLB", + "land.fNLandToOcean.tavg-u-hxy-lnd.mon.GLB", + "land.fNLitterSoil.tavg-u-hxy-lnd.mon.GLB", + "land.fNloss.tavg-u-hxy-lnd.mon.GLB", + "land.fNnetmin.tavg-u-hxy-lnd.mon.GLB", + "land.fNOx.tavg-u-hxy-lnd.mon.GLB", + "land.fNProduct.tavg-u-hxy-lnd.mon.GLB", + "land.fNup.tavg-u-hxy-lnd.mon.GLB", + "land.fNVegLitter.tavg-u-hxy-lnd.mon.GLB", + "land.fNVegSoil.tavg-u-hxy-lnd.mon.GLB", + "land.fProductDecomp.tavg-u-hxy-lnd.mon.GLB", + "land.fVegLitter.tavg-u-hxy-lnd.mon.GLB", + "land.fVegSoil.tavg-u-hxy-lnd.mon.GLB", + "land.gpp.tavg-u-hxy-lnd.mon.GLB", + "land.grassFrac.tavg-u-hxy-u.mon.GLB", + "land.landCoverFrac.tavg-u-hxy-u.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.day.GLB", + "land.mrrob.tavg-u-hxy-lnd.day.GLB", + "land.mrros.tavg-u-hxy-lnd.day.GLB", + "land.mrsfl.tavg-sl-hxy-lnd.day.GLB", + "land.mrsfl.tavg-sl-hxy-lnd.mon.GLB", + "land.mrsll.tavg-sl-hxy-lnd.day.GLB", + "land.mrsll.tavg-sl-hxy-lnd.mon.GLB", + "land.mrso.tavg-u-hxy-lnd.day.GLB", + "land.mrsol.tavg-d10cm-hxy-lnd.day.GLB", + "land.mrsol.tavg-sl-hxy-lnd.day.GLB", + "land.mrsol.tavg-sl-hxy-lnd.mon.GLB", + "land.mrsow.tavg-u-hxy-lnd.day.GLB", + "land.mrtws.tavg-u-hxy-lnd.day.GLB", + "land.mrtws.tavg-u-hxy-lnd.mon.GLB", + "land.nbp.tavg-u-hxy-lnd.mon.GLB", + "land.nep.tavg-u-hxy-lnd.mon.GLB", + "land.nLand.tavg-u-hxy-lnd.mon.GLB", + "land.nLitter.tavg-u-hxy-lnd.mon.GLB", + "land.nMineral.tavg-u-hxy-lnd.mon.GLB", + "land.npp.tavg-u-hxy-lnd.mon.GLB", + "land.nProduct.tavg-u-hxy-lnd.mon.GLB", + "land.nSoil.tavg-u-hxy-lnd.mon.GLB", + "land.nVeg.tavg-u-hxy-lnd.mon.GLB", + "land.pastureFrac.tavg-u-hxy-u.mon.GLB", + "land.prveg.tavg-u-hxy-lnd.mon.GLB", + "land.ra.tavg-u-hxy-lnd.mon.GLB", + "land.residualFrac.tavg-u-hxy-u.mon.GLB", + "land.rh.tavg-u-hxy-lnd.mon.GLB", + "land.rivi.tavg-u-hxy-lnd.day.GLB", + "land.rivo.tavg-u-hxy-lnd.day.GLB", + "land.rsds.tavg-u-hxy-sn.mon.GLB", + "land.rsus.tavg-u-hxy-sn.mon.GLB", + "land.shrubFrac.tavg-u-hxy-u.mon.GLB", + "land.tas.tavg-u-hxy-u.1hr.GLB", + "land.tran.tavg-u-hxy-lnd.mon.GLB", + "land.treeFrac.tavg-u-hxy-u.mon.GLB", + "land.tsl.tavg-sl-hxy-lnd.mon.GLB", + "land.tslsi.tavg-u-hxy-u.day.GLB", + "land.vegFrac.tavg-u-hxy-u.mon.GLB", + "land.vegHeight.tavg-u-hxy-veg.mon.GLB", + "land.wetlandCH4.tavg-u-hxy-lnd.mon.GLB", + "land.wtd.tavg-u-hxy-lnd.day.GLB", + "landIce.snd.tavg-u-hxy-lnd.mon.GLB", + "landIce.snw.tavg-u-hxy-lnd.day.GLB", + "ocean.absscint.tavg-op4-hxy-sea.mon.GLB", + "ocean.agessc.tavg-ol-hxy-sea.mon.GLB", + "ocean.bigthetao.tavg-ol-hm-sea.mon.GLB", + "ocean.bigthetao.tavg-ol-hxy-sea.dec.GLB", + "ocean.bigthetao.tavg-op20bar-hxy-sea.day.GLB", + "ocean.chcint.tavg-op4-hxy-sea.mon.GLB", + "ocean.ficeberg.tavg-ol-hxy-sea.mon.GLB", + "ocean.friver.tavg-u-hxy-sea.mon.GLB", + "ocean.hfbasin.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpmadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpmdiff.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpsmadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfds.tavg-u-hxy-sea.mon.30S-90S", + "ocean.hfx.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfx.tavg-u-hxy-sea.day.GLB", + "ocean.hfx.tavg-u-hxy-sea.mon.GLB", + "ocean.hfy.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfy.tavg-u-hxy-sea.day.GLB", + "ocean.hfy.tavg-u-hxy-sea.mon.GLB", + "ocean.htovgyre.tavg-u-hyb-sea.mon.GLB", + "ocean.htovovrt.tavg-u-hyb-sea.mon.GLB", + "ocean.masscello.tavg-ol-hxy-sea.dec.GLB", + "ocean.masso.tavg-u-hm-sea.dec.GLB", + "ocean.masso.tavg-u-hm-sea.mon.GLB", + "ocean.mlotst.tavg-u-hxy-sea.day.GLB", + "ocean.mlotst.tavg-u-hxy-sea.mon.30S-90S", + "ocean.mlotst.tmax-u-hxy-sea.mon.GLB", + "ocean.mlotst.tmin-u-hxy-sea.mon.GLB", + "ocean.mpw.tavg-u-hxy-sea.mon.GLB", + "ocean.mpw.tpt-u-hxy-sea.3hr.GLB", + "ocean.mpwswell.tavg-u-hxy-sea.mon.GLB", + "ocean.mpwswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.mpwwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.mpwwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.msftbarot.tavg-u-hxy-sea.mon.GLB", + "ocean.msftm.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftm.tavg-rho-hyb-sea.mon.GLB", + "ocean.msfty.tavg-ol-ht-sea.mon.GLB", + "ocean.msfty.tavg-rho-ht-sea.mon.GLB", + "ocean.obvfsq.tavg-ol-hxy-sea.mon.GLB", + "ocean.pbo.tavg-u-hxy-sea.mon.GLB", + "ocean.pfscint.tavg-op4-hxy-sea.mon.GLB", + "ocean.phcint.tavg-op4-hxy-sea.mon.GLB", + "ocean.pso.tavg-u-hxy-sea.mon.GLB", + "ocean.scint.tavg-op4-hxy-sea.mon.GLB", + "ocean.sduo.tavg-u-hxy-sea.mon.GLB", + "ocean.sduo.tpt-u-hxy-sea.3hr.GLB", + "ocean.sdvo.tavg-u-hxy-sea.mon.GLB", + "ocean.sdvo.tpt-u-hxy-sea.3hr.GLB", + "ocean.sfx.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfx.tavg-u-hxy-sea.mon.GLB", + "ocean.sfy.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfy.tavg-u-hxy-sea.mon.GLB", + "ocean.sltbasin.tavg-u-hyb-sea.mon.GLB", + "ocean.sltovgyre.tavg-u-hyb-sea.mon.GLB", + "ocean.sltovovrt.tavg-u-hyb-sea.mon.GLB", + "ocean.so.tavg-ol-hm-sea.mon.GLB", + "ocean.so.tavg-ol-hxy-sea.dec.GLB", + "ocean.so.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.sob.tavg-u-hxy-sea.mon.GLB", + "ocean.sos.tavg-u-hm-sea.mon.30S-90S", + "ocean.sos.tavg-u-hm-sea.mon.GLB", + "ocean.swh.tavg-u-hxy-sea.mon.GLB", + "ocean.swh.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhmax.tmax-u-hxy-sea.mon.GLB", + "ocean.swhmax.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhswell.tavg-u-hxy-sea.mon.GLB", + "ocean.swhswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.swhwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.tauuo.tavg-u-hxy-sea.3hr.GLB", + "ocean.tauuo.tavg-u-hxy-sea.dec.GLB", + "ocean.tauvo.tavg-u-hxy-sea.3hr.GLB", + "ocean.tauvo.tavg-u-hxy-sea.dec.GLB", + "ocean.thetao.tavg-ol-hm-sea.mon.GLB", + "ocean.thetao.tavg-ol-hxy-sea.dec.GLB", + "ocean.thetao.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.thetao.tavg-op20bar-hxy-sea.day.GLB", + "ocean.thkcello.tavg-ol-hxy-sea.dec.GLB", + "ocean.tob.tavg-u-hxy-sea.mon.GLB", + "ocean.tos.tavg-u-hm-sea.mon.GLB", + "ocean.tos.tavg-u-hxy-sea.mon.30S-90S", + "ocean.tos.tpt-u-hxy-sea.3hr.GLB", + "ocean.tossq.tavg-u-hxy-sea.day.GLB", + "ocean.umo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.uo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.uos.tavg-u-hxy-sea.day.GLB", + "ocean.vmo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.vo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.volcello.tavg-ol-hxy-sea.dec.GLB", + "ocean.volcello.tavg-ol-hxy-sea.mon.GLB", + "ocean.volcello.tavg-ol-hxy-sea.yr.GLB", + "ocean.volcello.ti-ol-hxy-sea.fx.GLB", + "ocean.volo.tavg-u-hm-sea.dec.GLB", + "ocean.volo.tavg-u-hm-sea.mon.GLB", + "ocean.vos.tavg-u-hxy-sea.day.GLB", + "ocean.wdir.tavg-u-hxy-sea.mon.GLB", + "ocean.wdir.tpt-u-hxy-sea.3hr.GLB", + "ocean.wdirswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wdirswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wdirwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wdirwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.wfcorr.tavg-u-hxy-sea.mon.GLB", + "ocean.wfo.tavg-u-hxy-sea.mon.GLB", + "ocean.wmo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.wo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.wpdir.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdir.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpdirswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdirswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpdirwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdirwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpp.tavg-u-hxy-sea.mon.GLB", + "ocean.wpp.tpt-u-hxy-sea.3hr.GLB", + "ocean.wppswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wppswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wppwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wppwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.zos.tavg-u-hxy-sea.mon.30S-90S", + "ocean.zossq.tavg-u-hxy-sea.mon.GLB", + "ocean.zostoga.tavg-u-hm-sea.day.GLB", + "ocnBgchem.bacc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.calc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chl.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chl.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chlcalc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chldiat.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chldiat.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chldiaz.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chldiaz.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chlmisc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chlmisc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chlpico.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chlpico.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.detoc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dfe.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.dfe.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissic.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.dissic.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissoc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dmso.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.expc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.expcalc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.fgco2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fsfe.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fsn.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.graz.tavg-ol-hxy-sea.mon.30S-90S", + "ocnBgchem.icfriver.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intdic.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intdoc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intparag.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbfe.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbn.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbp.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbsi.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpcalcite.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpn2.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpoc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpp.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpp.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppcalc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppdiat.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppdiaz.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppmisc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppnitrate.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpppico.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.nh4.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.nh4.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.no3.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.no3.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.o2.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.ocfriver.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.ph.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.ph.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phyc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phyc.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.phyc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phycalc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phycalc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phydiat.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phydiat.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phydiaz.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phydiaz.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phymisc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phymisc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phypico.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phypico.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.po4.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.pp.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.si.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.spco2.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.spco2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.talk.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zmeso.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zmeso.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zmicro.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zmicro.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zmisc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zmisc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zooc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zooc.tavg-ol-hxy-sea.mon.GLB", + "seaIce.evspsbl.tavg-u-hxy-si.mon.GLB", + "seaIce.prra.tavg-u-hxy-si.mon.GLB", + "seaIce.prsn.tavg-u-hxy-si.mon.GLB", + "seaIce.rlds.tavg-u-hxy-si.mon.GLB", + "seaIce.rlus.tavg-u-hxy-si.mon.GLB", + "seaIce.rsds.tavg-u-hxy-si.day.GLB", + "seaIce.rsds.tavg-u-hxy-si.mon.GLB", + "seaIce.rsus.tavg-u-hxy-si.day.GLB", + "seaIce.rsus.tavg-u-hxy-si.mon.GLB", + "seaIce.sbl.tavg-u-hxy-si.mon.GLB", + "seaIce.siage.tavg-u-hxy-si.day.GLB", + "seaIce.siage.tavg-u-hxy-si.mon.30S-90S", + "seaIce.siarea.tavg-u-hm-u.mon.NH", + "seaIce.siarea.tavg-u-hm-u.mon.SH", + "seaIce.siconc.tavg-u-hxy-u.mon.30S-90S", + "seaIce.siconca.tavg-u-hxy-u.day.GLB", + "seaIce.siconca.tavg-u-hxy-u.mon.GLB", + "seaIce.sidconcdyn.tavg-u-hxy-sea.mon.GLB", + "seaIce.sidconcth.tavg-u-hxy-sea.mon.GLB", + "seaIce.sidmassdyn.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthsi.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthwat.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmeltbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmeltlat.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmelttop.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassth.tavg-u-hxy-si.mon.GLB", + "seaIce.sieqthick.tavg-u-hxy-si.mon.GLB", + "seaIce.siextent.tavg-u-hm-u.mon.NH", + "seaIce.siextent.tavg-u-hm-u.mon.SH", + "seaIce.siflcondbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflcondtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sifllattop.tavg-u-hxy-si.mon.GLB", + "seaIce.siflsensbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflsenstop.tavg-u-hxy-si.mon.GLB", + "seaIce.siflswdbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sihc.tavg-u-hxy-sea.mon.GLB", + "seaIce.sisndmassdyn.tavg-u-hxy-si.mon.GLB", + "seaIce.sisndmasssi.tavg-u-hxy-si.mon.GLB", + "seaIce.sisndmasswind.tavg-u-hxy-si.mon.GLB", + "seaIce.sisnhc.tavg-u-hxy-si.mon.GLB", + "seaIce.sisnmass.tavg-u-hm-u.mon.NH", + "seaIce.sisnmass.tavg-u-hm-u.mon.SH", + "seaIce.sispeed.tavg-u-hxy-si.day.GLB", + "seaIce.sispeed.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-si.day.GLB", + "seaIce.sithick.tavg-u-hxy-si.mon.30S-90S", + "seaIce.sitimefrac.tavg-u-hxy-sea.day.GLB", + "seaIce.sitimefrac.tavg-u-hxy-sea.mon.30S-90S", + "seaIce.siu.tavg-u-hxy-si.day.GLB", + "seaIce.siu.tavg-u-hxy-si.mon.30S-90S", + "seaIce.siv.tavg-u-hxy-si.day.GLB", + "seaIce.siv.tavg-u-hxy-si.mon.30S-90S", + "seaIce.sivol.tavg-u-hm-u.mon.NH", + "seaIce.sivol.tavg-u-hm-u.mon.SH", + "seaIce.snc.tavg-u-hxy-si.mon.GLB", + "seaIce.snd.tavg-u-hxy-sn.day.GLB", + "seaIce.snd.tavg-u-hxy-sn.mon.30S-90S", + "seaIce.snm.tavg-u-hxy-si.mon.GLB", + "seaIce.snw.tavg-u-hxy-si.mon.GLB", + "seaIce.ts.tavg-u-hxy-si.day.GLB", + "seaIce.ts.tavg-u-hxy-si.mon.30S-90S" + ], + "Medium": [ + "atmos.noaahi2m.tavg-h2m-hxy-u.day.GLB", + "atmos.noaahi2m.tmax-h2m-hxy-u.day.GLB", + "atmos.rls.tavg-u-hxy-u.day.GLB", + "atmos.rls.tavg-u-hxy-u.mon.GLB", + "atmos.rss.tavg-u-hxy-u.day.GLB", + "atmos.rss.tavg-u-hxy-u.mon.GLB", + "atmos.wbgt.tavg-h2m-hxy-u.day.GLB", + "atmos.wbgt.tmax-h2m-hxy-u.day.GLB", + "land.cLeaf.tavg-u-hxy-lnd.mon.GLB", + "land.cLitterCwd.tavg-u-hxy-lnd.mon.GLB", + "land.cLitterSubSurf.tavg-u-hxy-lnd.mon.GLB", + "land.cLitterSurf.tavg-u-hxy-lnd.mon.GLB", + "land.cOther.tavg-u-hxy-lnd.mon.GLB", + "land.cRoot.tavg-u-hxy-lnd.mon.GLB", + "land.cropFracC3.tavg-u-hxy-u.mon.GLB", + "land.cropFracC4.tavg-u-hxy-u.mon.GLB", + "land.cSoil.tavg-sl-hxy-lnd.mon.GLB", + "land.cSoilPools.tavg-u-hxy-lnd.mon.GLB", + "land.cStem.tavg-u-hxy-lnd.mon.GLB", + "land.cVeg.tavg-u-hxy-ng.mon.GLB", + "land.cVeg.tavg-u-hxy-shb.mon.GLB", + "land.cVeg.tavg-u-hxy-tree.mon.GLB", + "land.fLitterFire.tavg-u-hxy-lnd.mon.GLB", + "land.fNgas.tavg-u-hxy-lnd.mon.GLB", + "land.fNgasFire.tavg-u-hxy-lnd.mon.GLB", + "land.fNgasNonFire.tavg-u-hxy-lnd.mon.GLB", + "land.fNleach.tavg-u-hxy-lnd.mon.GLB", + "land.fVegFire.tavg-u-hxy-lnd.mon.GLB", + "land.fVegLitterMortality.tavg-u-hxy-lnd.mon.GLB", + "land.fVegLitterSenescence.tavg-u-hxy-lnd.mon.GLB", + "land.fVegSoilMortality.tavg-u-hxy-lnd.mon.GLB", + "land.fVegSoilSenescence.tavg-u-hxy-lnd.mon.GLB", + "land.gpp.tavg-u-hxy-ng.mon.GLB", + "land.gpp.tavg-u-hxy-shb.mon.GLB", + "land.gpp.tavg-u-hxy-tree.mon.GLB", + "land.grassFracC3.tavg-u-hxy-u.mon.GLB", + "land.grassFracC4.tavg-u-hxy-u.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.3hr.GLB", + "land.mrros.tavg-u-hxy-lnd.3hr.GLB", + "land.mrsol.tpt-d10cm-hxy-lnd.3hr.GLB", + "land.nLeaf.tavg-u-hxy-lnd.mon.GLB", + "land.nLitterCwd.tavg-u-hxy-lnd.mon.GLB", + "land.nLitterSubSurf.tavg-u-hxy-lnd.mon.GLB", + "land.nLitterSurf.tavg-u-hxy-lnd.mon.GLB", + "land.nMineralNH4.tavg-u-hxy-lnd.mon.GLB", + "land.nMineralNO3.tavg-u-hxy-lnd.mon.GLB", + "land.nOther.tavg-u-hxy-lnd.mon.GLB", + "land.npp.tavg-u-hxy-ng.mon.GLB", + "land.npp.tavg-u-hxy-shb.mon.GLB", + "land.npp.tavg-u-hxy-tree.mon.GLB", + "land.nppLeaf.tavg-u-hxy-lnd.mon.GLB", + "land.nppOther.tavg-u-hxy-lnd.mon.GLB", + "land.nppRoot.tavg-u-hxy-lnd.mon.GLB", + "land.nppStem.tavg-u-hxy-lnd.mon.GLB", + "land.nRoot.tavg-u-hxy-lnd.mon.GLB", + "land.nStem.tavg-u-hxy-lnd.mon.GLB", + "land.pastureFracC3.tavg-u-hxy-u.mon.GLB", + "land.pastureFracC4.tavg-u-hxy-u.mon.GLB", + "land.ra.tavg-u-hxy-ng.mon.GLB", + "land.ra.tavg-u-hxy-shb.mon.GLB", + "land.ra.tavg-u-hxy-tree.mon.GLB", + "land.raLeaf.tavg-u-hxy-lnd.mon.GLB", + "land.raOther.tavg-u-hxy-lnd.mon.GLB", + "land.raRoot.tavg-u-hxy-lnd.mon.GLB", + "land.raStem.tavg-u-hxy-lnd.mon.GLB", + "land.rh.tavg-u-hxy-ng.mon.GLB", + "land.rh.tavg-u-hxy-shb.mon.GLB", + "land.rh.tavg-u-hxy-tree.mon.GLB", + "land.rhLitter.tavg-u-hxy-lnd.mon.GLB", + "land.rhSoil.tavg-u-hxy-lnd.mon.GLB", + "land.treeFracBdlDcd.tavg-u-hxy-u.mon.GLB", + "land.treeFracBdlEvg.tavg-u-hxy-u.mon.GLB", + "land.treeFracNdlDcd.tavg-u-hxy-u.mon.GLB", + "land.treeFracNdlEvg.tavg-u-hxy-u.mon.GLB", + "land.vegHeight.tavg-u-hxy-ng.mon.GLB", + "land.vegHeight.tavg-u-hxy-shb.mon.GLB", + "land.vegHeight.tavg-u-hxy-tree.mon.GLB", + "land.wetlandCH4cons.tavg-u-hxy-lnd.mon.GLB", + "land.wetlandCH4prod.tavg-u-hxy-lnd.mon.GLB", + "land.wetlandFrac.tavg-u-hxy-u.mon.GLB", + "ocean.evspsbl.tavg-u-hxy-ifs.mon.GLB", + "ocean.ficeberg.tavg-u-hxy-sea.mon.GLB", + "ocean.hfacrossline.tavg-u-ht-sea.mon.GLB", + "ocean.hfevapds.tavg-u-hxy-ifs.mon.GLB", + "ocean.hfibthermds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfibthermds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfrainds.tavg-u-hxy-ifs.mon.GLB", + "ocean.hfrunoffds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfrunoffds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfsnthermds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfsnthermds.tavg-u-hxy-sea.mon.GLB", + "ocean.mfo.tavg-u-ht-sea.mon.GLB", + "ocean.sf6.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfacrossline.tavg-u-ht-sea.mon.GLB", + "ocean.sfdsi.tavg-u-hxy-sea.mon.GLB", + "ocean.sfriver.tavg-u-hxy-sea.mon.GLB", + "ocean.siflfwbot.tavg-u-hxy-sea.mon.GLB", + "ocean.so.tavg-ol-hxy-sea.day.GLB", + "ocean.tnkebto.tavg-u-hxy-sea.yr.GLB", + "ocean.vsf.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfcorr.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfevap.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfpr.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfriver.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfsit.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.arag.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.arag.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.calc.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.calc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chl.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.chlcalc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dmso.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.epn.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.epp.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.expc.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.expcalc.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.fgdms.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fric.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.froc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.graz.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.intppcalc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppdiat.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppdiaz.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppmisc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppnitrate.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intpppico.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.o2.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.ph.tavg-op20bar-hxy-sea.day.GLB", + "seaIce.sfdsi.tavg-u-hxy-si.mon.GLB", + "seaIce.siage.tavg-u-hxy-si.mon.GLB", + "seaIce.siarea.tavg-u-hm-u.day.NH", + "seaIce.siarea.tavg-u-hm-u.day.SH", + "seaIce.siareaacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.sicompstren.tavg-u-hxy-si.mon.GLB", + "seaIce.sidivvel.tpt-u-hxy-si.mon.GLB", + "seaIce.sidmasstranx.tavg-u-hxy-u.mon.GLB", + "seaIce.sidmasstrany.tavg-u-hxy-u.mon.GLB", + "seaIce.sidragbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidragtop.tavg-u-hxy-si.mon.GLB", + "seaIce.siextent.tavg-u-hm-u.day.NH", + "seaIce.siextent.tavg-u-hm-u.day.SH", + "seaIce.sifb.tavg-u-hxy-si.mon.GLB", + "seaIce.siflfwbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflfwdrain.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcecoriolx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcecorioly.tavg-u-hxy-si.mon.GLB", + "seaIce.siforceintstrx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforceintstry.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcetiltx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcetilty.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdconc.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdsnconc.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdsnthick.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdthick.tavg-u-hxy-si.mon.GLB", + "seaIce.simassacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.simpconc.tavg-u-hxy-si.mon.GLB", + "seaIce.simpeffconc.tavg-u-hxy-si.mon.GLB", + "seaIce.simprefrozen.tavg-u-hxy-simp.mon.GLB", + "seaIce.simpthick.tavg-u-hxy-simp.mon.GLB", + "seaIce.sirdgconc.tavg-u-hxy-si.mon.GLB", + "seaIce.sisali.tavg-u-hxy-si.mon.GLB", + "seaIce.sisaltmass.tavg-u-hxy-si.mon.GLB", + "seaIce.sishearvel.tpt-u-hxy-si.mon.GLB", + "seaIce.sisnmass.tavg-u-hm-u.day.NH", + "seaIce.sisnmass.tavg-u-hm-u.day.SH", + "seaIce.sisnmassacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.sistressave.tpt-u-hxy-si.mon.GLB", + "seaIce.sistressmax.tpt-u-hxy-si.mon.GLB", + "seaIce.sistrxdtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sistrxubot.tavg-u-hxy-si.mon.GLB", + "seaIce.sistrydtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sistryubot.tavg-u-hxy-si.mon.GLB", + "seaIce.sitempbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sitempsnic.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-sir.mon.GLB", + "seaIce.sivol.tavg-u-hm-u.day.NH", + "seaIce.sivol.tavg-u-hm-u.day.SH" + ], + "Low": [ + "aerosol.sfpm1.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.sfpm10.tavg-h2m-hxy-u.1hr.GLB", + "atmos.hurs.tavg-h2m-hxy-u.1hr.GLB", + "land.c13Land.tavg-u-hxy-lnd.mon.GLB", + "land.c13Litter.tavg-u-hxy-lnd.mon.GLB", + "land.c13Soil.tavg-u-hxy-lnd.mon.GLB", + "land.c13Veg.tavg-u-hxy-lnd.mon.GLB", + "land.c14Land.tavg-u-hxy-lnd.mon.GLB", + "land.c14Litter.tavg-u-hxy-lnd.mon.GLB", + "land.c14Soil.tavg-u-hxy-lnd.mon.GLB", + "land.c14Veg.tavg-u-hxy-lnd.mon.GLB", + "land.gppc13.tavg-u-hxy-lnd.mon.GLB", + "land.gppc14.tavg-u-hxy-lnd.mon.GLB", + "land.netAtmosLandC13Flux.tavg-u-hxy-lnd.mon.GLB", + "land.netAtmosLandC14Flux.tavg-u-hxy-lnd.mon.GLB", + "land.rac13.tavg-u-hxy-lnd.mon.GLB", + "land.rac14.tavg-u-hxy-lnd.mon.GLB", + "land.rhc13.tavg-u-hxy-lnd.mon.GLB", + "land.rhc14.tavg-u-hxy-lnd.mon.GLB", + "ocean.difmxybo.tavg-ol-hxy-sea.yr.GLB", + "ocean.difmxylo.tavg-ol-hxy-sea.yr.GLB", + "ocean.diftrblo.tavg-ol-hxy-sea.yr.GLB", + "ocean.diftrelo.tavg-ol-hxy-sea.yr.GLB", + "ocean.difvho.tavg-ol-hxy-sea.yr.GLB", + "ocean.difvso.tavg-ol-hxy-sea.yr.GLB", + "ocean.dispkexyfo.tavg-u-hxy-sea.yr.GLB", + "ocean.dxto.ti-u-hxy-u.fx.GLB", + "ocean.dxuo.ti-u-hxy-u.fx.GLB", + "ocean.dxvo.ti-u-hxy-u.fx.GLB", + "ocean.dyto.ti-u-hxy-u.fx.GLB", + "ocean.dyuo.ti-u-hxy-u.fx.GLB", + "ocean.dyvo.ti-u-hxy-u.fx.GLB", + "ocean.mlotstsq.tavg-u-hxy-sea.mon.GLB", + "ocean.msftmmpa.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftmmpa.tavg-rho-hyb-sea.mon.GLB", + "ocean.msftmsmpa.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftypa.tavg-ol-ht-sea.mon.GLB", + "ocean.msftypa.tavg-rho-ht-sea.mon.GLB", + "ocean.ocontempdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontempmint.tavg-u-hxy-sea.yr.GLB", + "ocean.ocontemppadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemppmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemppsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemprmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemptend.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottempdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottempmint.tavg-u-hxy-sea.yr.GLB", + "ocean.opottemppadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemppmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemppsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemprmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemptend.tavg-ol-hxy-sea.dec.GLB", + "ocean.osaltdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpsmadvect.tavg-ol-hxy-sea.mon.GLB", + "ocean.osaltpsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltrmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osalttend.tavg-ol-hxy-sea.yr.GLB", + "ocean.rsdoabsorb.tavg-ol-hxy-sea.yr.GLB", + "ocean.somint.tavg-u-hxy-sea.yr.GLB", + "ocean.sossq.tavg-u-hxy-sea.mon.GLB", + "ocean.thkcelluo.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcellvo.tavg-ol-hxy-sea.mon.GLB", + "ocean.tnpeo.tavg-u-hxy-sea.yr.GLB", + "ocean.tossq.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.dissi13c.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.dissi13c.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissi14c.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissi14cabio.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.dissi14cabio.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.fg13co2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fg14co2abio.tavg-u-hxy-sea.mon.GLB" + ] + }, + "piClim-anthro": { + "Core": [ + "atmos.areacella.ti-u-hxy-u.fx.GLB", + "atmos.cl.tavg-al-hxy-u.mon.GLB", + "atmos.cli.tavg-al-hxy-u.mon.GLB", + "atmos.clivi.tavg-u-hxy-u.mon.GLB", + "atmos.clt.tavg-u-hxy-u.day.GLB", + "atmos.clt.tavg-u-hxy-u.mon.GLB", + "atmos.clw.tavg-al-hxy-u.mon.GLB", + "atmos.clwvi.tavg-u-hxy-u.mon.GLB", + "atmos.evspsbl.tavg-u-hxy-u.mon.GLB", + "atmos.hfls.tavg-u-hxy-u.mon.GLB", + "atmos.hfss.tavg-u-hxy-u.mon.GLB", + "atmos.hur.tavg-p19-hxy-air.mon.GLB", + "atmos.hur.tavg-p19-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.6hr.GLB", + "atmos.hurs.tavg-h2m-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.mon.GLB", + "atmos.hus.tavg-p19-hxy-u.day.GLB", + "atmos.hus.tavg-p19-hxy-u.mon.GLB", + "atmos.huss.tavg-h2m-hxy-u.day.GLB", + "atmos.huss.tavg-h2m-hxy-u.mon.GLB", + "atmos.huss.tpt-h2m-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.1hr.GLB", + "atmos.pr.tavg-u-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.day.GLB", + "atmos.pr.tavg-u-hxy-u.mon.GLB", + "atmos.prc.tavg-u-hxy-u.mon.GLB", + "atmos.prsn.tavg-u-hxy-u.mon.GLB", + "atmos.prw.tavg-u-hxy-u.mon.GLB", + "atmos.ps.tavg-u-hxy-u.day.GLB", + "atmos.ps.tavg-u-hxy-u.mon.GLB", + "atmos.psl.tavg-u-hxy-u.day.GLB", + "atmos.psl.tavg-u-hxy-u.mon.GLB", + "atmos.rlds.tavg-u-hxy-u.mon.GLB", + "atmos.rldscs.tavg-u-hxy-u.mon.GLB", + "atmos.rlus.tavg-u-hxy-u.mon.GLB", + "atmos.rluscs.tavg-u-hxy-u.mon.GLB", + "atmos.rlut.tavg-u-hxy-u.mon.GLB", + "atmos.rlutcs.tavg-u-hxy-u.mon.GLB", + "atmos.rsds.tavg-u-hxy-u.day.GLB", + "atmos.rsds.tavg-u-hxy-u.mon.GLB", + "atmos.rsdscs.tavg-u-hxy-u.mon.GLB", + "atmos.rsdt.tavg-u-hxy-u.mon.GLB", + "atmos.rsus.tavg-u-hxy-u.mon.GLB", + "atmos.rsuscs.tavg-u-hxy-u.mon.GLB", + "atmos.rsut.tavg-u-hxy-u.mon.GLB", + "atmos.rsutcs.tavg-u-hxy-u.mon.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.day.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.mon.GLB", + "atmos.sftlf.ti-u-hxy-u.fx.GLB", + "atmos.ta.tavg-p19-hxy-air.day.GLB", + "atmos.ta.tavg-p19-hxy-air.mon.GLB", + "atmos.ta.tpt-p3-hxy-air.6hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.day.GLB", + "atmos.tas.tavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tmax-h2m-hxy-u.day.GLB", + "atmos.tas.tmaxavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tmin-h2m-hxy-u.day.GLB", + "atmos.tas.tminavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tpt-h2m-hxy-u.3hr.GLB", + "atmos.tauu.tavg-u-hxy-u.mon.GLB", + "atmos.tauv.tavg-u-hxy-u.mon.GLB", + "atmos.ts.tavg-u-hxy-u.mon.GLB", + "atmos.ua.tavg-p19-hxy-air.day.GLB", + "atmos.ua.tavg-p19-hxy-air.mon.GLB", + "atmos.ua.tpt-p3-hxy-air.6hr.GLB", + "atmos.uas.tavg-h10m-hxy-u.day.GLB", + "atmos.uas.tavg-h10m-hxy-u.mon.GLB", + "atmos.uas.tpt-h10m-hxy-u.3hr.GLB", + "atmos.va.tavg-p19-hxy-air.day.GLB", + "atmos.va.tavg-p19-hxy-air.mon.GLB", + "atmos.va.tpt-p3-hxy-air.6hr.GLB", + "atmos.vas.tavg-h10m-hxy-u.day.GLB", + "atmos.vas.tavg-h10m-hxy-u.mon.GLB", + "atmos.vas.tpt-h10m-hxy-u.3hr.GLB", + "atmos.wap.tavg-p19-hxy-air.mon.GLB", + "atmos.wap.tavg-p19-hxy-u.day.GLB", + "atmos.zg.tavg-p19-hxy-air.day.GLB", + "atmos.zg.tavg-p19-hxy-air.mon.GLB", + "land.evspsblsoi.tavg-u-hxy-lnd.mon.GLB", + "land.evspsblveg.tavg-u-hxy-lnd.mon.GLB", + "land.lai.tavg-u-hxy-lnd.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.mon.GLB", + "land.mrros.tavg-u-hxy-lnd.mon.GLB", + "land.mrso.tavg-u-hxy-lnd.mon.GLB", + "land.mrsofc.ti-u-hxy-lnd.fx.GLB", + "land.mrsol.tavg-d10cm-hxy-lnd.mon.GLB", + "land.orog.ti-u-hxy-u.fx.GLB", + "land.rootd.ti-u-hxy-lnd.fx.GLB", + "land.sftgif.ti-u-hxy-u.fx.GLB", + "land.slthick.ti-sl-hxy-lnd.fx.GLB", + "landIce.mrfso.tavg-u-hxy-lnd.mon.GLB", + "landIce.snc.tavg-u-hxy-lnd.mon.GLB", + "landIce.snw.tavg-u-hxy-lnd.mon.GLB", + "ocean.areacello.ti-u-hxy-u.fx.GLB", + "ocean.basin.ti-u-hxy-u.fx.GLB", + "ocean.bigthetao.tavg-ol-hxy-sea.mon.GLB", + "ocean.deptho.ti-u-hxy-sea.fx.GLB", + "ocean.hfds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfgeou.ti-u-hxy-sea.fx.GLB", + "ocean.masscello.tavg-ol-hxy-sea.mon.GLB", + "ocean.masscello.ti-ol-hxy-sea.fx.GLB", + "ocean.mlotst.tavg-u-hxy-sea.mon.GLB", + "ocean.sftof.ti-u-hxy-u.fx.GLB", + "ocean.so.tavg-ol-hxy-sea.mon.GLB", + "ocean.sos.tavg-u-hxy-sea.day.GLB", + "ocean.sos.tavg-u-hxy-sea.mon.GLB", + "ocean.tauuo.tavg-u-hxy-sea.mon.GLB", + "ocean.tauvo.tavg-u-hxy-sea.mon.GLB", + "ocean.thetao.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcello.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcello.ti-ol-hxy-sea.fx.GLB", + "ocean.tos.tavg-u-hxy-sea.day.GLB", + "ocean.tos.tavg-u-hxy-sea.mon.GLB", + "ocean.umo.tavg-ol-hxy-sea.mon.GLB", + "ocean.uo.tavg-ol-hxy-sea.mon.GLB", + "ocean.vmo.tavg-ol-hxy-sea.mon.GLB", + "ocean.vo.tavg-ol-hxy-sea.mon.GLB", + "ocean.wmo.tavg-ol-hxy-sea.mon.GLB", + "ocean.wo.tavg-ol-hxy-sea.mon.GLB", + "ocean.zos.tavg-u-hxy-sea.day.GLB", + "ocean.zos.tavg-u-hxy-sea.mon.GLB", + "ocean.zostoga.tavg-u-hm-sea.mon.GLB", + "seaIce.siconc.tavg-u-hxy-u.day.GLB", + "seaIce.siconc.tavg-u-hxy-u.mon.GLB", + "seaIce.simass.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-si.mon.GLB", + "seaIce.sitimefrac.tavg-u-hxy-sea.mon.GLB", + "seaIce.siu.tavg-u-hxy-si.mon.GLB", + "seaIce.siv.tavg-u-hxy-si.mon.GLB", + "seaIce.snd.tavg-u-hxy-sn.mon.GLB", + "seaIce.ts.tavg-u-hxy-si.mon.GLB" + ], + "High": [ + "aerosol.abs550aer.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550bc.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550dust.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550no3.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550oa.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550so4.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550ss.tavg-u-hxy-u.mon.GLB", + "aerosol.airmass.tavg-al-hxy-u.mon.GLB", + "aerosol.aoanh.tavg-al-hxy-u.mon.NH", + "aerosol.bry.tavg-p39-hy-air.mon.GLB", + "aerosol.bs550aer.tpt-al-hxy-u.6hr.GLB", + "aerosol.c2h6.tavg-al-hxy-u.mon.GLB", + "aerosol.c3h6.tavg-al-hxy-u.mon.GLB", + "aerosol.c3h8.tavg-al-hxy-u.mon.GLB", + "aerosol.ccldncl.tavg-u-hxy-ccl.mon.GLB", + "aerosol.ccn.tavg-u-hxy-ccl.mon.30S-90S", + "aerosol.ccn.tavg-u-hxy-ccl.mon.GLB", + "aerosol.ccn1.tavg-al-hxy-u.mon.30S-90S", + "aerosol.ccn1.tavg-al-hxy-u.mon.GLB", + "aerosol.ccnp02.tavg-al-hxy-u.mon.30S-90S", + "aerosol.ccnp02.tavg-al-hxy-u.mon.GLB", + "aerosol.cdnc.tavg-al-hxy-u.mon.30S-90S", + "aerosol.cdnc.tavg-al-hxy-u.mon.GLB", + "aerosol.ch3coch3.tavg-al-hxy-u.mon.GLB", + "aerosol.cheaqpso4.tavg-al-hxy-u.mon.GLB", + "aerosol.chegpso4.tavg-al-hxy-u.mon.GLB", + "aerosol.chepasoa.tavg-u-hxy-u.mon.GLB", + "aerosol.chepsoa.tavg-u-hxy-u.mon.GLB", + "aerosol.cly.tavg-p39-hy-air.mon.GLB", + "aerosol.co.tavg-al-hxy-u.mon.GLB", + "aerosol.co.tavg-h2m-hxy-u.day.GLB", + "aerosol.cod.tavg-u-hxy-u.day.GLB", + "aerosol.cod.tavg-u-hxy-u.mon.30S-90S", + "aerosol.cod.tavg-u-hxy-u.mon.GLB", + "aerosol.conccn.tavg-al-hxy-u.mon.GLB", + "aerosol.conccn.tpt-u-hs-u.3hr.GLB", + "aerosol.drybc.tavg-u-hxy-u.mon.GLB", + "aerosol.drydust.tavg-u-hxy-u.mon.GLB", + "aerosol.dryno3.tavg-u-hxy-u.mon.GLB", + "aerosol.dryo3.tavg-u-hxy-u.mon.GLB", + "aerosol.dryoa.tavg-u-hxy-u.mon.GLB", + "aerosol.dryso2.tavg-u-hxy-u.mon.GLB", + "aerosol.dryso4.tavg-u-hxy-u.mon.GLB", + "aerosol.dryss.tavg-u-hxy-u.mon.GLB", + "aerosol.ec550aer.tavg-al-hxy-u.mon.GLB", + "aerosol.ec550aer.tpt-u-hxy-u.6hr.GLB", + "aerosol.emiaco.tavg-u-hxy-u.mon.GLB", + "aerosol.emianox.tavg-u-hxy-u.mon.GLB", + "aerosol.emiaoa.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbbc.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbch4.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbco.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbdms.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbnh3.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbnox.tavg-u-hxy-u.mon.GLB", + "aerosol.emibboa.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbso2.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbvoc.tavg-u-hxy-u.mon.GLB", + "aerosol.emibc.tavg-u-hxy-u.mon.GLB", + "aerosol.emibvoc.tavg-u-hxy-u.mon.GLB", + "aerosol.emico.tavg-u-hxy-u.mon.GLB", + "aerosol.emidms.tavg-u-hxy-u.mon.30S-90S", + "aerosol.emidms.tavg-u-hxy-u.mon.GLB", + "aerosol.emidust.tavg-u-hxy-u.mon.GLB", + "aerosol.emiisop.tavg-u-hxy-u.mon.GLB", + "aerosol.emilnox.tavg-al-hxy-u.mon.GLB", + "aerosol.eminh3.tavg-u-hxy-u.mon.GLB", + "aerosol.eminox.tavg-u-hxy-u.mon.GLB", + "aerosol.emioa.tavg-u-hxy-u.mon.GLB", + "aerosol.emiso2.tavg-u-hxy-u.mon.GLB", + "aerosol.emiso4.tavg-u-hxy-u.mon.GLB", + "aerosol.emiss.tavg-u-hxy-u.mon.30S-90S", + "aerosol.emiss.tavg-u-hxy-u.mon.GLB", + "aerosol.emivoc.tavg-u-hxy-u.mon.GLB", + "aerosol.h2o.tavg-al-hxy-u.mon.GLB", + "aerosol.h2o.tavg-p39-hy-air.mon.GLB", + "aerosol.hcho.tavg-al-hxy-u.mon.GLB", + "aerosol.hcl.tavg-al-hxy-u.mon.GLB", + "aerosol.hcl.tavg-p39-hy-air.mon.GLB", + "aerosol.hno3.tavg-al-hxy-u.mon.GLB", + "aerosol.hno3.tavg-p39-hy-air.mon.GLB", + "aerosol.ho2.tavg-p39-hy-air.mon.GLB", + "aerosol.isop.tavg-al-hxy-u.mon.GLB", + "aerosol.jno2.tavg-al-hxy-u.mon.GLB", + "aerosol.lossch4.tavg-al-hxy-u.mon.GLB", + "aerosol.lossco.tavg-al-hxy-u.mon.GLB", + "aerosol.lossn2o.tavg-al-hxy-u.mon.GLB", + "aerosol.lwp.tavg-u-hxy-u.mon.GLB", + "aerosol.mmraerh2o.tavg-al-hxy-u.mon.GLB", + "aerosol.mmraerh2o.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmraerh2o.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrbc.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrbc.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrbc.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrbc.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrdust.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrdust.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrdust.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrdust.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrnh4.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrnh4.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrnh4.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrnh4.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrno3.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrno3.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrno3.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrno3.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmroa.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmroa.tavg-al-hxy-u.mon.GLB", + "aerosol.mmroa.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmroa.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrpm1.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrpm1.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrpm2p5.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrpm2p5.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrso4.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrso4.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrso4.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrso4.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrsoa.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrsoa.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrsoa.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrss.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrss.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrss.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrss.tpt-h2m-hs-u.3hr.GLB", + "aerosol.nh50.tavg-al-hxy-u.mon.GLB", + "aerosol.no.tavg-al-hxy-u.mon.GLB", + "aerosol.no2.tavg-al-hxy-u.mon.GLB", + "aerosol.no2.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.noy.tavg-p39-hy-air.mon.GLB", + "aerosol.o3.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.o3.tmax-h2m-hxy-u.day.GLB", + "aerosol.o3loss.tavg-al-hxy-u.mon.GLB", + "aerosol.o3prod.tavg-al-hxy-u.mon.GLB", + "aerosol.od443aer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550aer.tavg-u-hxy-u.day.GLB", + "aerosol.od550aer.tavg-u-hxy-u.mon.30S-90S", + "aerosol.od550aer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550aerh2o.tavg-u-hxy-u.mon.GLB", + "aerosol.od550bb.tavg-u-hxy-u.mon.GLB", + "aerosol.od550bc.tavg-u-hxy-u.mon.GLB", + "aerosol.od550csaer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550dust.tavg-u-hxy-u.mon.GLB", + "aerosol.od550lt1aer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550no3.tavg-u-hxy-u.mon.GLB", + "aerosol.od550oa.tavg-u-hxy-u.mon.GLB", + "aerosol.od550so4.tavg-u-hxy-u.mon.GLB", + "aerosol.od550soa.tavg-u-hxy-u.mon.GLB", + "aerosol.od550ss.tavg-u-hxy-u.mon.GLB", + "aerosol.od865aer.tavg-u-hxy-u.mon.GLB", + "aerosol.oh.tavg-al-hxy-u.mon.GLB", + "aerosol.oh.tavg-p39-hy-air.mon.GLB", + "aerosol.pan.tavg-al-hxy-u.mon.GLB", + "aerosol.photo1d.tavg-al-hxy-u.mon.GLB", + "aerosol.pod0.tsum-u-hxy-u.mon.GLB", + "aerosol.reffccwctop.tavg-u-hxy-cl.mon.GLB", + "aerosol.reffclwtop.tavg-u-hxy-cl.mon.30S-90S", + "aerosol.reffclwtop.tavg-u-hxy-cl.mon.GLB", + "aerosol.rluscsaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rlutaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rlutcsaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rsutaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rsutcsaf.tavg-u-hxy-u.mon.GLB", + "aerosol.sfpm1.tavg-h2m-hxy-u.day.GLB", + "aerosol.sfpm10.tavg-al-hxy-u.mon.30S-90S", + "aerosol.sfpm10.tavg-al-hxy-u.mon.GLB", + "aerosol.sfpm10.tavg-h2m-hxy-u.day.GLB", + "aerosol.sfpm25.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.sfpm25.tavg-h2m-hxy-u.day.GLB", + "aerosol.so2.tavg-al-hxy-u.mon.30S-90S", + "aerosol.so2.tavg-al-hxy-u.mon.GLB", + "aerosol.so2.tavg-h2m-hxy-u.day.GLB", + "aerosol.so2.tpt-h2m-hs-u.3hr.GLB", + "aerosol.tatp.tavg-u-hxy-u.mon.GLB", + "aerosol.toz.tavg-u-hxy-u.day.GLB", + "aerosol.toz.tavg-u-hxy-u.mon.GLB", + "aerosol.tropoz.tavg-u-hxy-u.mon.GLB", + "aerosol.ttop.tavg-u-hxy-cl.mon.GLB", + "aerosol.ua.tavg-10hPa-hxy-air.day.GLB", + "aerosol.vt100.tavg-100hPa-hy-air.mon.GLB", + "aerosol.wa.tavg-al-hxy-u.mon.GLB", + "aerosol.wetbc.tavg-u-hxy-u.mon.GLB", + "aerosol.wetdust.tavg-u-hxy-u.mon.GLB", + "aerosol.wetoa.tavg-u-hxy-u.mon.GLB", + "aerosol.wetso2.tavg-u-hxy-u.mon.GLB", + "aerosol.wetso4.tavg-u-hxy-u.mon.GLB", + "aerosol.wetss.tavg-u-hxy-u.mon.GLB", + "aerosol.zg.tavg-10hPa-hxy-air.day.GLB", + "atmos.albisccp.tavg-u-hxy-cl.day.GLB", + "atmos.albisccp.tavg-u-hxy-cl.mon.30S-90S", + "atmos.albisccp.tavg-u-hxy-cl.mon.GLB", + "atmos.aod550volso4.tavg-u-hxy-u.mon.GLB", + "atmos.bldep.tavg-u-hxy-u.mon.GLB", + "atmos.bldep.tmax-u-hxy-u.day.GLB", + "atmos.bldep.tmin-u-hxy-u.day.GLB", + "atmos.ccb.tavg-u-hxy-ccl.day.GLB", + "atmos.ccb.tavg-u-hxy-ccl.mon.GLB", + "atmos.cct.tavg-u-hxy-ccl.day.GLB", + "atmos.cct.tavg-u-hxy-ccl.mon.GLB", + "atmos.ci.tavg-u-hxy-u.mon.GLB", + "atmos.cl.tavg-al-hxy-u.day.GLB", + "atmos.cl.tavg-al-hxy-u.mon.30S-90S", + "atmos.clc.tavg-al-hxy-u.mon.30S-90S", + "atmos.clc.tavg-al-hxy-u.mon.GLB", + "atmos.clcalipso.tavg-220hPa-hxy-air.day.GLB", + "atmos.clcalipso.tavg-220hPa-hxy-air.mon.30S-90S", + "atmos.clcalipso.tavg-220hPa-hxy-air.mon.GLB", + "atmos.clcalipso.tavg-560hPa-hxy-air.day.GLB", + "atmos.clcalipso.tavg-560hPa-hxy-air.mon.30S-90S", + "atmos.clcalipso.tavg-560hPa-hxy-air.mon.GLB", + "atmos.clcalipso.tavg-840hPa-hxy-air.day.GLB", + "atmos.clcalipso.tavg-840hPa-hxy-air.mon.30S-90S", + "atmos.clcalipso.tavg-840hPa-hxy-air.mon.GLB", + "atmos.clcalipso.tavg-h40-hxy-air.mon.30S-90S", + "atmos.clcalipso.tavg-h40-hxy-air.mon.GLB", + "atmos.cldnci.tavg-u-hxy-cl.mon.GLB", + "atmos.cldncl.tavg-u-hxy-cl.mon.GLB", + "atmos.cldnvi.tavg-u-hxy-u.day.GLB", + "atmos.cldnvi.tavg-u-hxy-u.mon.GLB", + "atmos.cli.tavg-al-hxy-u.mon.30S-90S", + "atmos.clic.tavg-al-hxy-u.mon.30S-90S", + "atmos.clic.tavg-al-hxy-u.mon.GLB", + "atmos.clis.tavg-al-hxy-u.mon.30S-90S", + "atmos.clis.tavg-al-hxy-u.mon.GLB", + "atmos.clisccp.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clisccp.tavg-p7c-hxy-air.mon.GLB", + "atmos.clivi.tavg-u-hxy-u.day.GLB", + "atmos.clivi.tavg-u-hxy-u.mon.30S-90S", + "atmos.clivic.tavg-u-hxy-u.day.GLB", + "atmos.clivimodis.tavg-u-hxy-u.mon.30S-90S", + "atmos.clmisr.tavg-h16-hxy-air.mon.GLB", + "atmos.clmodis.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clmodis.tavg-p7c-hxy-air.mon.GLB", + "atmos.clmodisice.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clmodisice.tavg-p7c-hxy-air.mon.GLB", + "atmos.clmodisiceReff.tavg-u-hxy-u.mon.GLB", + "atmos.clmodisliquid.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clmodisliquid.tavg-p7c-hxy-air.mon.GLB", + "atmos.clmodisliquidReff.tavg-u-hxy-u.mon.GLB", + "atmos.cls.tavg-al-hxy-u.mon.30S-90S", + "atmos.cls.tavg-al-hxy-u.mon.GLB", + "atmos.clt.tavg-u-hxy-lnd.day.GLB", + "atmos.clt.tavg-u-hxy-u.mon.30S-90S", + "atmos.cltc.tavg-u-hxy-u.mon.GLB", + "atmos.cltcalipso.tavg-u-hxy-u.day.GLB", + "atmos.cltcalipso.tavg-u-hxy-u.mon.30S-90S", + "atmos.cltcalipso.tavg-u-hxy-u.mon.GLB", + "atmos.cltisccp.tavg-u-hxy-u.day.GLB", + "atmos.cltisccp.tavg-u-hxy-u.mon.30S-90S", + "atmos.cltisccp.tavg-u-hxy-u.mon.GLB", + "atmos.cltmodis.tavg-u-hxy-u.mon.30S-90S", + "atmos.clw.tavg-al-hxy-u.mon.30S-90S", + "atmos.clwc.tavg-al-hxy-u.mon.30S-90S", + "atmos.clwc.tavg-al-hxy-u.mon.GLB", + "atmos.clws.tavg-al-hxy-u.mon.30S-90S", + "atmos.clws.tavg-al-hxy-u.mon.GLB", + "atmos.clwvi.tavg-u-hxy-u.day.GLB", + "atmos.clwvi.tavg-u-hxy-u.mon.30S-90S", + "atmos.clwvic.tavg-u-hxy-u.day.GLB", + "atmos.clwvimodis.tavg-u-hxy-u.mon.30S-90S", + "atmos.co2.tavg-al-hxy-u.mon.GLB", + "atmos.co2.tavg-p19-hxy-air.mon.GLB", + "atmos.co2.tclm-p19-hxy-air.mon.GLB", + "atmos.co2.tclm-u-hm-u.mon.GLB", + "atmos.co2mass.tavg-u-hm-u.mon.GLB", + "atmos.dmc.tavg-alh-hxy-u.mon.30S-90S", + "atmos.dmc.tavg-alh-hxy-u.mon.GLB", + "atmos.edt.tavg-al-hxy-u.mon.30S-90S", + "atmos.edt.tavg-al-hxy-u.mon.GLB", + "atmos.evspsbl.tavg-u-hxy-lnd.day.GLB", + "atmos.evu.tavg-al-hxy-u.mon.30S-90S", + "atmos.evu.tavg-al-hxy-u.mon.GLB", + "atmos.fco2antt.tavg-u-hxy-u.mon.GLB", + "atmos.fco2nat.tavg-u-hxy-u.mon.GLB", + "atmos.hfls.tavg-u-hxy-u.day.GLB", + "atmos.hfls.tavg-u-hxy-u.mon.30S-90S", + "atmos.hfss.tavg-u-hxy-u.day.GLB", + "atmos.hfss.tavg-u-hxy-u.mon.30S-90S", + "atmos.hur.tavg-al-hxy-u.mon.30S-90S", + "atmos.hur.tavg-al-hxy-u.mon.GLB", + "atmos.hur.tavg-p19-hxy-air.mon.30S-90S", + "atmos.hurs.tavg-h2m-hxy-u.mon.30S-90S", + "atmos.hurs.tmax-h2m-hxy-u.day.GLB", + "atmos.hurs.tmin-h2m-hxy-u.day.GLB", + "atmos.hus.tavg-al-hxy-u.mon.30S-90S", + "atmos.hus.tavg-al-hxy-u.mon.GLB", + "atmos.hus.tavg-p19-hxy-u.mon.30S-90S", + "atmos.huss.tavg-h2m-hxy-u.mon.30S-90S", + "atmos.intuadse.tavg-u-hxy-u.day.GLB", + "atmos.intuadse.tavg-u-hxy-u.mon.GLB", + "atmos.intuaw.tavg-u-hxy-u.day.GLB", + "atmos.intuaw.tavg-u-hxy-u.mon.GLB", + "atmos.intvadse.tavg-u-hxy-u.day.GLB", + "atmos.intvadse.tavg-u-hxy-u.mon.GLB", + "atmos.intvaw.tavg-u-hxy-u.day.GLB", + "atmos.intvaw.tavg-u-hxy-u.mon.GLB", + "atmos.loadbc.tavg-u-hxy-u.day.GLB", + "atmos.loadoa.tavg-u-hxy-u.day.GLB", + "atmos.loadpoa.tavg-u-hxy-u.day.GLB", + "atmos.loadso4.tavg-u-hxy-u.mon.GLB", + "atmos.mc.tavg-alh-hxy-u.mon.GLB", + "atmos.mcd.tavg-alh-hxy-u.mon.30S-90S", + "atmos.mcd.tavg-alh-hxy-u.mon.GLB", + "atmos.mcu.tavg-alh-hxy-u.mon.30S-90S", + "atmos.mcu.tavg-alh-hxy-u.mon.GLB", + "atmos.pctisccp.tavg-u-hxy-cl.day.GLB", + "atmos.pctisccp.tavg-u-hxy-cl.mon.30S-90S", + "atmos.pctisccp.tavg-u-hxy-cl.mon.GLB", + "atmos.pfull.tavg-al-hxy-u.mon.GLB", + "atmos.pfull.tclm-al-hxy-u.mon.30S-90S", + "atmos.pfull.tclm-al-hxy-u.mon.GLB", + "atmos.phalf.tavg-alh-hxy-u.mon.GLB", + "atmos.phalf.tclm-alh-hxy-u.mon.GLB", + "atmos.pr.tavg-u-hxy-u.mon.30S-90S", + "atmos.pr.tmax-u-hxy-u.day.GLB", + "atmos.pr.tpt-u-hxy-u.6hr.GLB", + "atmos.prc.tavg-u-hxy-u.day.GLB", + "atmos.prc.tavg-u-hxy-u.mon.30S-90S", + "atmos.prra.tavg-u-hxy-lnd.day.GLB", + "atmos.prra.tavg-u-hxy-u.mon.30S-90S", + "atmos.prra.tavg-u-hxy-u.mon.GLB", + "atmos.prsn.tavg-u-hxy-u.day.GLB", + "atmos.prsn.tavg-u-hxy-u.mon.30S-90S", + "atmos.prw.tavg-u-hxy-u.day.GLB", + "atmos.prw.tavg-u-hxy-u.mon.30S-90S", + "atmos.ps.tavg-u-hxy-u.1hr.GLB", + "atmos.ps.tavg-u-hxy-u.mon.30S-90S", + "atmos.psl.tavg-u-hxy-u.mon.30S-90S", + "atmos.psl.tpt-u-hxy-u.1hr.GLB", + "atmos.ptp.tavg-u-hxy-u.mon.GLB", + "atmos.reffcclwtop.tavg-u-hxy-ccl.mon.GLB", + "atmos.reffclic.tavg-al-hxy-ccl.mon.30S-90S", + "atmos.reffclic.tavg-al-hxy-ccl.mon.GLB", + "atmos.reffclis.tavg-al-hxy-scl.mon.30S-90S", + "atmos.reffclis.tavg-al-hxy-scl.mon.GLB", + "atmos.reffclwc.tavg-al-hxy-ccl.mon.30S-90S", + "atmos.reffclwc.tavg-al-hxy-ccl.mon.GLB", + "atmos.reffclws.tavg-al-hxy-scl.mon.30S-90S", + "atmos.reffclws.tavg-al-hxy-scl.mon.GLB", + "atmos.reffsclwtop.tavg-u-hxy-scl.mon.GLB", + "atmos.rld.tavg-alh-hxy-u.mon.GLB", + "atmos.rld4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rldcs.tavg-alh-hxy-u.mon.GLB", + "atmos.rldcs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rlds.tavg-u-hxy-u.day.GLB", + "atmos.rlds.tavg-u-hxy-u.mon.30S-90S", + "atmos.rldscs.tavg-u-hxy-u.day.GLB", + "atmos.rldscs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rls.tavg-u-hxy-u.mon.GLB", + "atmos.rlu.tavg-alh-hxy-u.mon.GLB", + "atmos.rlu4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rlucs.tavg-alh-hxy-u.mon.GLB", + "atmos.rlucs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rlus.tavg-u-hxy-u.day.GLB", + "atmos.rlus.tavg-u-hxy-u.mon.30S-90S", + "atmos.rluscs.tavg-u-hxy-u.day.GLB", + "atmos.rlut.tavg-u-hxy-u.day.GLB", + "atmos.rlut.tavg-u-hxy-u.mon.30S-90S", + "atmos.rlut4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rlutcs.tavg-u-hxy-u.day.GLB", + "atmos.rlutcs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rlutcs4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rsd.tavg-alh-hxy-u.mon.GLB", + "atmos.rsd4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsdcs.tavg-alh-hxy-u.mon.GLB", + "atmos.rsdcs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsds.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsdscs.tavg-u-hxy-u.day.GLB", + "atmos.rsdscs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsdt.tavg-u-hxy-u.day.GLB", + "atmos.rsdt.tavg-u-hxy-u.mon.30S-90S", + "atmos.rss.tavg-u-hxy-u.mon.GLB", + "atmos.rsu.tavg-alh-hxy-u.mon.GLB", + "atmos.rsu4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsucs.tavg-alh-hxy-u.mon.GLB", + "atmos.rsucs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsus.tavg-u-hxy-u.day.GLB", + "atmos.rsus.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsuscs.tavg-u-hxy-u.day.GLB", + "atmos.rsuscs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsut.tavg-u-hxy-u.day.GLB", + "atmos.rsut.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsut4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rsutcs.tavg-u-hxy-u.day.GLB", + "atmos.rsutcs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsutcs4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rtmt.tavg-u-hxy-u.mon.GLB", + "atmos.rv850.tpt-850hPa-hxy-air.6hr.GLB", + "atmos.sci.tavg-u-hxy-u.mon.GLB", + "atmos.scldncl.tavg-u-hxy-scl.mon.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.mon.30S-90S", + "atmos.sfcWind.tmax-h10m-hxy-u.day.GLB", + "atmos.smc.tavg-alh-hxy-u.mon.GLB", + "atmos.ta.tavg-700hPa-hxy-air.day.GLB", + "atmos.ta.tavg-al-hxy-u.mon.30S-90S", + "atmos.ta.tavg-al-hxy-u.mon.GLB", + "atmos.ta.tavg-p19-hxy-air.mon.30S-90S", + "atmos.ta.tavg-p39-hy-air.mon.GLB", + "atmos.tas.tavg-h2m-hxy-u.1hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.mon.30S-90S", + "atmos.tas.tmaxavg-h2m-hxy-u.mon.30S-90S", + "atmos.tas.tminavg-h2m-hxy-u.mon.30S-90S", + "atmos.tnhus.tavg-al-hxy-u.mon.GLB", + "atmos.tnhusa.tavg-al-hxy-u.mon.GLB", + "atmos.tnhusc.tavg-al-hxy-u.mon.GLB", + "atmos.tnhusd.tavg-al-hxy-u.mon.GLB", + "atmos.tnhusmp.tavg-al-hxy-u.mon.GLB", + "atmos.tnhuspbl.tavg-al-hxy-u.mon.GLB", + "atmos.tnhusscp.tavg-al-hxy-u.mon.GLB", + "atmos.tnhusscpbl.tavg-al-hxy-u.mon.GLB", + "atmos.tnt.tavg-al-hxy-u.mon.GLB", + "atmos.tnta.tavg-al-hxy-u.mon.GLB", + "atmos.tntc.tavg-al-hxy-u.mon.GLB", + "atmos.tntd.tavg-al-hxy-u.mon.GLB", + "atmos.tntmp.tavg-al-hxy-u.mon.GLB", + "atmos.tntpbl.tavg-al-hxy-u.mon.GLB", + "atmos.tntr.tavg-al-hxy-u.mon.GLB", + "atmos.tntrl.tavg-al-hxy-u.mon.GLB", + "atmos.tntrlcs.tavg-al-hxy-u.mon.GLB", + "atmos.tntrs.tavg-al-hxy-u.mon.GLB", + "atmos.tntrscs.tavg-al-hxy-u.mon.GLB", + "atmos.tntscp.tavg-al-hxy-u.mon.GLB", + "atmos.tntscpbl.tavg-al-hxy-u.mon.GLB", + "atmos.ts.tavg-u-hxy-u.mon.30S-90S", + "atmos.ua.tavg-al-hxy-u.mon.GLB", + "atmos.ua.tavg-p19-hxy-air.mon.30S-90S", + "atmos.ua.tavg-p39-hy-air.mon.GLB", + "atmos.ua.tpt-h100m-hxy-u.1hr.GLB", + "atmos.uas.tavg-h10m-hxy-u.mon.30S-90S", + "atmos.uas.tpt-h10m-hxy-u.1hr.GLB", + "atmos.va.tavg-al-hxy-u.mon.GLB", + "atmos.va.tavg-p19-hxy-air.mon.30S-90S", + "atmos.va.tavg-p39-hy-air.mon.GLB", + "atmos.va.tpt-h100m-hxy-u.1hr.GLB", + "atmos.vas.tavg-h10m-hxy-u.mon.30S-90S", + "atmos.vas.tpt-h10m-hxy-u.1hr.GLB", + "atmos.wap.tavg-500hPa-hxy-air.day.GLB", + "atmos.wap.tavg-p19-hxy-air.mon.30S-90S", + "atmos.zg.tavg-1000hPa-hxy-air.day.GLB", + "atmos.zg.tavg-500hPa-hxy-air.day.GLB", + "atmos.zg.tavg-al-hxy-u.mon.GLB", + "atmos.zg.tavg-p19-hxy-air.mon.30S-90S", + "atmos.zg.tavg-p39-hy-air.mon.GLB", + "atmos.zg.tpt-500hPa-hxy-air.6hr.GLB", + "atmos.ztp.tavg-u-hxy-u.mon.GLB", + "atmosChem.c2h4.tavg-al-hxy-u.mon.GLB", + "atmosChem.c2h5oh.tavg-al-hxy-u.mon.GLB", + "atmosChem.c4h10.tavg-al-hxy-u.mon.GLB", + "atmosChem.cfc11.tavg-u-hm-u.mon.GLB", + "atmosChem.cfc113.tavg-u-hm-u.mon.GLB", + "atmosChem.cfc12.tavg-u-hm-u.mon.GLB", + "atmosChem.ch3oh.tavg-al-hxy-u.mon.GLB", + "atmosChem.ch4.tavg-al-hxy-u.mon.GLB", + "atmosChem.ch4.tavg-p19-hxy-air.mon.GLB", + "atmosChem.ch4.tavg-p39-hy-air.mon.GLB", + "atmosChem.ch4.tavg-u-hm-u.mon.GLB", + "atmosChem.ch4.tclm-p19-hxy-air.mon.GLB", + "atmosChem.ch4.tclm-u-hm-u.mon.GLB", + "atmosChem.ch4losssoil.tavg-u-hxy-u.mon.GLB", + "atmosChem.ch4ref.ti-al-hxy-u.fx.GLB", + "atmosChem.chegph2oo1d.tavg-al-hxy-u.mon.GLB", + "atmosChem.chepnh4.tavg-al-hxy-u.mon.GLB", + "atmosChem.chepno3.tavg-al-hxy-u.mon.GLB", + "atmosChem.dms.tavg-al-hxy-u.mon.30S-90S", + "atmosChem.dms.tavg-al-hxy-u.mon.GLB", + "atmosChem.do3chm.tavg-al-hxy-u.mon.GLB", + "atmosChem.dryh2.tavg-u-hxy-u.mon.GLB", + "atmosChem.dryhno3.tavg-u-hxy-u.mon.GLB", + "atmosChem.drynh3.tavg-u-hxy-u.mon.GLB", + "atmosChem.drynh4.tavg-u-hxy-u.mon.GLB", + "atmosChem.drynoy.tavg-u-hxy-u.mon.GLB", + "atmosChem.e90inst.tpt-al-hxy-u.mon.GLB", + "atmosChem.emiach4.tavg-u-hxy-u.mon.GLB", + "atmosChem.emiavnox.tavg-al-hxy-u.mon.GLB", + "atmosChem.emic2h4.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic2h5oh.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic2h6.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic3h6.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic3h8.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic4h10.tavg-u-hxy-u.mon.GLB", + "atmosChem.emich3oh.tavg-u-hxy-u.mon.GLB", + "atmosChem.emich4.tavg-u-hxy-u.mon.GLB", + "atmosChem.emih2.tavg-u-hxy-u.mon.GLB", + "atmosChem.emilkch4.tavg-u-hxy-u.mon.GLB", + "atmosChem.h2.tavg-al-hxy-u.mon.GLB", + "atmosChem.h2loss.tavg-al-hxy-u.mon.GLB", + "atmosChem.h2prod.tavg-al-hxy-u.mon.GLB", + "atmosChem.hcfc22.tavg-u-hm-u.mon.GLB", + "atmosChem.meanage.tavg-al-hxy-u.mon.GLB", + "atmosChem.meanage.tavg-p39-hy-air.mon.GLB", + "atmosChem.n2o.tavg-al-hxy-u.mon.GLB", + "atmosChem.n2o.tavg-p19-hxy-air.mon.GLB", + "atmosChem.n2o.tavg-p39-hy-air.mon.GLB", + "atmosChem.n2o.tavg-u-hm-u.mon.GLB", + "atmosChem.n2o.tclm-p19-hxy-air.mon.GLB", + "atmosChem.n2o.tclm-u-hm-u.mon.GLB", + "atmosChem.o3.tavg-al-hxy-u.mon.GLB", + "atmosChem.o3.tavg-p19-hxy-air.mon.GLB", + "atmosChem.o3.tavg-p39-hy-air.mon.GLB", + "atmosChem.o3.tclm-p19-hxy-air.mon.GLB", + "atmosChem.o3.tpt-al-hxy-u.mon.GLB", + "atmosChem.o3ref.tclm-al-hxy-u.fx.GLB", + "atmosChem.o3ref.ti-al-hxy-u.fx.GLB", + "atmosChem.o3ste.tavg-al-hxy-u.mon.GLB", + "atmosChem.rlutch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rlutcsch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rlutcso3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rluto3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsutch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsutcsch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsutcso3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsuto3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.stratch4loss.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropch4loss.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropch4lossoh.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropdo3chm.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropo3ste.tavg-al-hxy-u.mon.GLB", + "atmosChem.wethno3.tavg-al-hxy-u.mon.GLB", + "atmosChem.wetnh3.tavg-u-hxy-u.mon.GLB", + "atmosChem.wetnh4.tavg-u-hxy-u.mon.GLB", + "atmosChem.wetno3.tavg-al-hxy-u.mon.GLB", + "atmosChem.wetnoy.tavg-u-hxy-u.mon.GLB", + "land.areacellr.ti-u-hxy-u.fx.GLB", + "land.baresoilFrac.tavg-u-hxy-u.mon.GLB", + "land.burntFractionAll.tavg-u-hxy-u.mon.GLB", + "land.cLand.tavg-u-hxy-lnd.mon.GLB", + "land.cLeaf.tavg-u-hxy-lnd.mon.GLB", + "land.cLitter.tavg-u-hxy-lnd.mon.GLB", + "land.cProduct.tavg-u-hxy-lnd.mon.GLB", + "land.cRoot.tavg-u-hxy-lnd.mon.GLB", + "land.cropFrac.tavg-u-hxy-u.mon.GLB", + "land.cSoil.tavg-d100cm-hxy-lnd.mon.GLB", + "land.cSoil.tavg-u-hxy-lnd.mon.GLB", + "land.cStem.tavg-u-hxy-lnd.mon.GLB", + "land.cVeg.tavg-u-hxy-lnd.mon.GLB", + "land.dcw.tavg-u-hxy-lnd.day.GLB", + "land.dslw.tavg-u-hxy-lnd.day.GLB", + "land.evspsblpot.tavg-u-hxy-lnd.day.GLB", + "land.evspsblpot.tavg-u-hxy-lnd.mon.GLB", + "land.fBNF.tavg-u-hxy-lnd.mon.GLB", + "land.fFire.tavg-u-hxy-lnd.mon.GLB", + "land.fFireAll.tavg-u-hxy-lnd.mon.GLB", + "land.fFireNat.tavg-u-hxy-lnd.mon.GLB", + "land.fLuc.tavg-u-hxy-lnd.mon.GLB", + "land.fNgas.tavg-u-hxy-lnd.mon.GLB", + "land.fNgasFire.tavg-u-hxy-lnd.mon.GLB", + "land.fNLandToOcean.tavg-u-hxy-lnd.mon.GLB", + "land.fNleach.tavg-u-hxy-lnd.mon.GLB", + "land.fNLitterSoil.tavg-u-hxy-lnd.mon.GLB", + "land.fNloss.tavg-u-hxy-lnd.mon.GLB", + "land.fNup.tavg-u-hxy-lnd.mon.GLB", + "land.fNVegSoil.tavg-u-hxy-lnd.mon.GLB", + "land.gpp.tavg-u-hxy-lnd.mon.GLB", + "land.grassFrac.tavg-u-hxy-u.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.day.GLB", + "land.mrrob.tavg-u-hxy-lnd.day.GLB", + "land.mrros.tavg-u-hxy-lnd.day.GLB", + "land.mrsfl.tavg-sl-hxy-lnd.day.GLB", + "land.mrsll.tavg-sl-hxy-lnd.day.GLB", + "land.mrso.tavg-u-hxy-lnd.day.GLB", + "land.mrsol.tavg-d10cm-hxy-lnd.day.GLB", + "land.mrsol.tavg-sl-hxy-lnd.day.GLB", + "land.mrsow.tavg-u-hxy-lnd.day.GLB", + "land.mrtws.tavg-u-hxy-lnd.day.GLB", + "land.nbp.tavg-u-hxy-lnd.mon.GLB", + "land.nep.tavg-u-hxy-lnd.mon.GLB", + "land.nLand.tavg-u-hxy-lnd.mon.GLB", + "land.nLitter.tavg-u-hxy-lnd.mon.GLB", + "land.nMineral.tavg-u-hxy-lnd.mon.GLB", + "land.npp.tavg-u-hxy-lnd.mon.GLB", + "land.nProduct.tavg-u-hxy-lnd.mon.GLB", + "land.nSoil.tavg-u-hxy-lnd.mon.GLB", + "land.nVeg.tavg-u-hxy-lnd.mon.GLB", + "land.ra.tavg-u-hxy-lnd.mon.GLB", + "land.rh.tavg-u-hxy-lnd.mon.GLB", + "land.rivi.tavg-u-hxy-lnd.day.GLB", + "land.rivo.tavg-u-hxy-lnd.day.GLB", + "land.shrubFrac.tavg-u-hxy-u.mon.GLB", + "land.tran.tavg-u-hxy-lnd.mon.GLB", + "land.treeFrac.tavg-u-hxy-u.mon.GLB", + "land.tsl.tavg-sl-hxy-lnd.mon.GLB", + "land.tslsi.tavg-u-hxy-u.day.GLB", + "land.vegFrac.tavg-u-hxy-u.mon.GLB", + "land.vegHeight.tavg-u-hxy-tree.mon.GLB", + "land.vegHeight.tavg-u-hxy-veg.mon.GLB", + "land.wetlandCH4.tavg-u-hxy-lnd.mon.GLB", + "land.wtd.tavg-u-hxy-lnd.day.GLB", + "landIce.pflw.tavg-u-hxy-lnd.mon.GLB", + "landIce.sbl.tavg-u-hxy-u.mon.GLB", + "landIce.snc.tavg-u-hxy-lnd.day.GLB", + "landIce.snd.tavg-u-hxy-lnd.mon.GLB", + "landIce.snm.tavg-u-hxy-lnd.mon.GLB", + "landIce.snw.tavg-u-hxy-lnd.day.GLB", + "landIce.sootsn.tavg-u-hxy-lnd.mon.GLB", + "landIce.tpf.tavg-u-hxy-lnd.mon.GLB", + "ocean.absscint.tavg-op4-hxy-sea.mon.GLB", + "ocean.agessc.tavg-ol-hxy-sea.mon.GLB", + "ocean.bigthetao.tavg-ol-hm-sea.mon.GLB", + "ocean.bigthetao.tavg-ol-hxy-sea.dec.GLB", + "ocean.bigthetao.tavg-op20bar-hxy-sea.day.GLB", + "ocean.chcint.tavg-op4-hxy-sea.mon.GLB", + "ocean.hfbasin.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpmadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpmdiff.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpsmadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfds.tavg-u-hxy-sea.mon.30S-90S", + "ocean.hfx.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfx.tavg-u-hxy-sea.day.GLB", + "ocean.hfx.tavg-u-hxy-sea.mon.GLB", + "ocean.hfy.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfy.tavg-u-hxy-sea.day.GLB", + "ocean.hfy.tavg-u-hxy-sea.mon.GLB", + "ocean.htovgyre.tavg-u-hyb-sea.mon.GLB", + "ocean.htovovrt.tavg-u-hyb-sea.mon.GLB", + "ocean.masscello.tavg-ol-hxy-sea.dec.GLB", + "ocean.masso.tavg-u-hm-sea.dec.GLB", + "ocean.masso.tavg-u-hm-sea.mon.GLB", + "ocean.mlotst.tavg-u-hxy-sea.day.GLB", + "ocean.mlotst.tavg-u-hxy-sea.mon.30S-90S", + "ocean.mlotst.tmax-u-hxy-sea.mon.GLB", + "ocean.mlotst.tmin-u-hxy-sea.mon.GLB", + "ocean.mpw.tavg-u-hxy-sea.mon.GLB", + "ocean.mpw.tpt-u-hxy-sea.3hr.GLB", + "ocean.mpwswell.tavg-u-hxy-sea.mon.GLB", + "ocean.mpwswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.mpwwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.mpwwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.msftbarot.tavg-u-hxy-sea.mon.GLB", + "ocean.msftm.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftm.tavg-rho-hyb-sea.mon.GLB", + "ocean.msfty.tavg-ol-ht-sea.mon.GLB", + "ocean.msfty.tavg-rho-ht-sea.mon.GLB", + "ocean.obvfsq.tavg-ol-hxy-sea.mon.GLB", + "ocean.pbo.tavg-u-hxy-sea.mon.GLB", + "ocean.pfscint.tavg-op4-hxy-sea.mon.GLB", + "ocean.phcint.tavg-op4-hxy-sea.mon.GLB", + "ocean.pso.tavg-u-hxy-sea.mon.GLB", + "ocean.scint.tavg-op4-hxy-sea.mon.GLB", + "ocean.sduo.tavg-u-hxy-sea.mon.GLB", + "ocean.sduo.tpt-u-hxy-sea.3hr.GLB", + "ocean.sdvo.tavg-u-hxy-sea.mon.GLB", + "ocean.sdvo.tpt-u-hxy-sea.3hr.GLB", + "ocean.sfx.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfx.tavg-u-hxy-sea.mon.GLB", + "ocean.sfy.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfy.tavg-u-hxy-sea.mon.GLB", + "ocean.sltbasin.tavg-u-hyb-sea.mon.GLB", + "ocean.sltovgyre.tavg-u-hyb-sea.mon.GLB", + "ocean.sltovovrt.tavg-u-hyb-sea.mon.GLB", + "ocean.so.tavg-ol-hm-sea.mon.GLB", + "ocean.so.tavg-ol-hxy-sea.dec.GLB", + "ocean.so.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.sob.tavg-u-hxy-sea.mon.GLB", + "ocean.sos.tavg-u-hm-sea.mon.30S-90S", + "ocean.sos.tavg-u-hm-sea.mon.GLB", + "ocean.swh.tavg-u-hxy-sea.mon.GLB", + "ocean.swh.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhmax.tmax-u-hxy-sea.mon.GLB", + "ocean.swhmax.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhswell.tavg-u-hxy-sea.mon.GLB", + "ocean.swhswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.swhwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.tauuo.tavg-u-hxy-sea.dec.GLB", + "ocean.tauvo.tavg-u-hxy-sea.dec.GLB", + "ocean.thetao.tavg-ol-hm-sea.mon.GLB", + "ocean.thetao.tavg-ol-hxy-sea.dec.GLB", + "ocean.thetao.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.thetao.tavg-op20bar-hxy-sea.day.GLB", + "ocean.thkcello.tavg-ol-hxy-sea.dec.GLB", + "ocean.tob.tavg-u-hxy-sea.mon.GLB", + "ocean.tos.tavg-u-hm-sea.mon.GLB", + "ocean.tos.tavg-u-hxy-sea.mon.30S-90S", + "ocean.tos.tpt-u-hxy-sea.3hr.GLB", + "ocean.tossq.tavg-u-hxy-sea.day.GLB", + "ocean.umo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.uo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.uos.tavg-u-hxy-sea.day.GLB", + "ocean.vmo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.vo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.volcello.tavg-ol-hxy-sea.dec.GLB", + "ocean.volcello.tavg-ol-hxy-sea.mon.GLB", + "ocean.volcello.tavg-ol-hxy-sea.yr.GLB", + "ocean.volcello.ti-ol-hxy-sea.fx.GLB", + "ocean.volo.tavg-u-hm-sea.dec.GLB", + "ocean.volo.tavg-u-hm-sea.mon.GLB", + "ocean.vos.tavg-u-hxy-sea.day.GLB", + "ocean.wdir.tavg-u-hxy-sea.mon.GLB", + "ocean.wdir.tpt-u-hxy-sea.3hr.GLB", + "ocean.wdirswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wdirswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wdirwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wdirwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.wfcorr.tavg-u-hxy-sea.mon.GLB", + "ocean.wfo.tavg-u-hxy-sea.mon.GLB", + "ocean.wmo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.wo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.wpdir.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdir.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpdirswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdirswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpdirwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdirwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpp.tavg-u-hxy-sea.mon.GLB", + "ocean.wpp.tpt-u-hxy-sea.3hr.GLB", + "ocean.wppswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wppswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wppwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wppwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.zos.tavg-u-hxy-sea.mon.30S-90S", + "ocean.zossq.tavg-u-hxy-sea.mon.GLB", + "ocean.zostoga.tavg-u-hm-sea.day.GLB", + "ocnBgchem.bacc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.calc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chl.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chl.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chlcalc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chldiat.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chldiaz.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chlmisc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chlpico.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.dfe.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.dfe.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.dissic.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.dissic.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dmso.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.fgco2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.graz.tavg-ol-hxy-sea.mon.30S-90S", + "ocnBgchem.intdic.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intdoc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intparag.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbfe.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbn.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbp.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbsi.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpcalcite.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpn2.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpoc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpp.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppcalc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppdiat.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppdiaz.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppmisc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppnitrate.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpppico.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.nh4.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.no3.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.no3.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.ph.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phyc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phycalc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phydiat.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phydiaz.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phymisc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phypico.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.po4.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.pp.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.spco2.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.spco2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.zmeso.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zmicro.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zmisc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zooc.tavg-d0m-hxy-sea.mon.30S-90S", + "seaIce.evspsbl.tavg-u-hxy-si.mon.GLB", + "seaIce.prra.tavg-u-hxy-si.mon.GLB", + "seaIce.prsn.tavg-u-hxy-si.mon.GLB", + "seaIce.rlds.tavg-u-hxy-si.day.GLB", + "seaIce.rlds.tavg-u-hxy-si.mon.GLB", + "seaIce.rlus.tavg-u-hxy-si.day.GLB", + "seaIce.rlus.tavg-u-hxy-si.mon.GLB", + "seaIce.rsds.tavg-u-hxy-si.day.GLB", + "seaIce.rsds.tavg-u-hxy-si.mon.GLB", + "seaIce.rsus.tavg-u-hxy-si.day.GLB", + "seaIce.rsus.tavg-u-hxy-si.mon.GLB", + "seaIce.sbl.tavg-u-hxy-si.mon.GLB", + "seaIce.siage.tavg-u-hxy-si.day.GLB", + "seaIce.siage.tavg-u-hxy-si.mon.30S-90S", + "seaIce.siarea.tavg-u-hm-u.mon.NH", + "seaIce.siarea.tavg-u-hm-u.mon.SH", + "seaIce.siconc.tavg-u-hxy-u.mon.30S-90S", + "seaIce.siconca.tavg-u-hxy-u.day.GLB", + "seaIce.siconca.tavg-u-hxy-u.mon.GLB", + "seaIce.sidconcdyn.tavg-u-hxy-sea.mon.GLB", + "seaIce.sidconcth.tavg-u-hxy-sea.mon.GLB", + "seaIce.sidmassdyn.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthsi.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthwat.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmeltbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmeltlat.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmelttop.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassth.tavg-u-hxy-si.mon.GLB", + "seaIce.sieqthick.tavg-u-hxy-si.mon.GLB", + "seaIce.siextent.tavg-u-hm-u.mon.NH", + "seaIce.siextent.tavg-u-hm-u.mon.SH", + "seaIce.siflcondbot.tavg-u-hxy-si.day.GLB", + "seaIce.siflcondbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflcondtop.tavg-u-hxy-si.day.GLB", + "seaIce.siflcondtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sifllattop.tavg-u-hxy-si.day.GLB", + "seaIce.sifllattop.tavg-u-hxy-si.mon.GLB", + "seaIce.siflsensbot.tavg-u-hxy-si.day.GLB", + "seaIce.siflsensbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflsenstop.tavg-u-hxy-si.day.GLB", + "seaIce.siflsenstop.tavg-u-hxy-si.mon.GLB", + "seaIce.siflswdbot.tavg-u-hxy-si.day.GLB", + "seaIce.siflswdbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sihc.tavg-u-hxy-sea.day.GLB", + "seaIce.sihc.tavg-u-hxy-sea.mon.GLB", + "seaIce.sisndmassdyn.tavg-u-hxy-si.mon.GLB", + "seaIce.sisndmasssi.tavg-u-hxy-si.mon.GLB", + "seaIce.sisndmasswind.tavg-u-hxy-si.mon.GLB", + "seaIce.sisnhc.tavg-u-hxy-si.day.GLB", + "seaIce.sisnhc.tavg-u-hxy-si.mon.GLB", + "seaIce.sisnmass.tavg-u-hm-u.mon.NH", + "seaIce.sisnmass.tavg-u-hm-u.mon.SH", + "seaIce.sispeed.tavg-u-hxy-si.day.GLB", + "seaIce.sispeed.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-si.day.GLB", + "seaIce.sithick.tavg-u-hxy-si.mon.30S-90S", + "seaIce.sitimefrac.tavg-u-hxy-sea.day.GLB", + "seaIce.sitimefrac.tavg-u-hxy-sea.mon.30S-90S", + "seaIce.siu.tavg-u-hxy-si.day.GLB", + "seaIce.siu.tavg-u-hxy-si.mon.30S-90S", + "seaIce.siv.tavg-u-hxy-si.day.GLB", + "seaIce.siv.tavg-u-hxy-si.mon.30S-90S", + "seaIce.sivol.tavg-u-hm-u.mon.NH", + "seaIce.sivol.tavg-u-hm-u.mon.SH", + "seaIce.snc.tavg-u-hxy-si.mon.GLB", + "seaIce.snd.tavg-u-hxy-sn.day.GLB", + "seaIce.snd.tavg-u-hxy-sn.mon.30S-90S", + "seaIce.snm.tavg-u-hxy-si.mon.GLB", + "seaIce.snw.tavg-u-hxy-si.mon.GLB", + "seaIce.ts.tavg-u-hxy-si.day.GLB", + "seaIce.ts.tavg-u-hxy-si.mon.30S-90S" + ], + "Medium": [ + "atmos.hurs.tpt-h2m-hxy-u.3hr.GLB", + "atmos.noaahi2m.tavg-h2m-hxy-u.day.GLB", + "atmos.noaahi2m.tmax-h2m-hxy-u.day.GLB", + "atmos.prsn.tavg-u-hxy-u.3hr.GLB", + "atmos.ps.tpt-u-hxy-u.3hr.GLB", + "atmos.rlds.tavg-u-hxy-u.3hr.GLB", + "atmos.rls.tavg-u-hxy-u.day.GLB", + "atmos.rsds.tavg-u-hxy-u.3hr.GLB", + "atmos.rsdsdiff.tavg-u-hxy-u.day.GLB", + "atmos.rss.tavg-u-hxy-u.day.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.3hr.GLB", + "atmos.ua.tavg-h100m-hxy-u.3hr.GLB", + "atmos.va.tavg-h100m-hxy-u.3hr.GLB", + "atmos.wbgt.tavg-h2m-hxy-u.day.GLB", + "atmos.wbgt.tmax-h2m-hxy-u.day.GLB", + "land.irrDem.tavg-u-hxy-u.day.GLB", + "land.irrGw.tavg-u-hxy-u.day.GLB", + "land.irrLut.tavg-u-hxy-u.day.GLB", + "land.irrSurf.tavg-u-hxy-u.day.GLB", + "land.mrro.tavg-u-hxy-lnd.3hr.GLB", + "land.mrros.tavg-u-hxy-lnd.3hr.GLB", + "land.mrsol.tpt-d10cm-hxy-lnd.3hr.GLB", + "land.rzwc.tavg-u-hxy-lnd.day.GLB", + "ocean.evspsbl.tavg-u-hxy-ifs.mon.GLB", + "ocean.ficeberg.tavg-ol-hxy-sea.mon.GLB", + "ocean.ficeberg.tavg-u-hxy-sea.mon.GLB", + "ocean.friver.tavg-u-hxy-sea.mon.GLB", + "ocean.hfacrossline.tavg-u-ht-sea.mon.GLB", + "ocean.hfevapds.tavg-u-hxy-ifs.mon.GLB", + "ocean.hfibthermds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfibthermds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfrainds.tavg-u-hxy-ifs.mon.GLB", + "ocean.hfrunoffds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfrunoffds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfsnthermds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfsnthermds.tavg-u-hxy-sea.mon.GLB", + "ocean.mfo.tavg-u-ht-sea.mon.GLB", + "ocean.sfacrossline.tavg-u-ht-sea.mon.GLB", + "ocean.sfdsi.tavg-u-hxy-sea.mon.GLB", + "ocean.sfriver.tavg-u-hxy-sea.mon.GLB", + "ocean.siflfwbot.tavg-u-hxy-sea.mon.GLB", + "ocean.so.tavg-ol-hxy-sea.day.GLB", + "ocean.tnkebto.tavg-u-hxy-sea.yr.GLB", + "ocean.vsf.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfcorr.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfevap.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfpr.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfriver.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfsit.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.arag.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.arag.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.calc.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.calc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chl.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.o2.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.ph.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.talk.tavg-ol-hxy-sea.mon.GLB", + "seaIce.sfdsi.tavg-u-hxy-si.mon.GLB", + "seaIce.siage.tavg-u-hxy-si.mon.GLB", + "seaIce.siarea.tavg-u-hm-u.day.NH", + "seaIce.siarea.tavg-u-hm-u.day.SH", + "seaIce.siareaacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.sicompstren.tavg-u-hxy-si.mon.GLB", + "seaIce.sidivvel.tpt-u-hxy-si.mon.GLB", + "seaIce.sidmasstranx.tavg-u-hxy-u.mon.GLB", + "seaIce.sidmasstrany.tavg-u-hxy-u.mon.GLB", + "seaIce.sidragbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidragtop.tavg-u-hxy-si.mon.GLB", + "seaIce.siextent.tavg-u-hm-u.day.NH", + "seaIce.siextent.tavg-u-hm-u.day.SH", + "seaIce.sifb.tavg-u-hxy-si.day.GLB", + "seaIce.sifb.tavg-u-hxy-si.mon.GLB", + "seaIce.siflfwbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflfwdrain.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcecoriolx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcecorioly.tavg-u-hxy-si.mon.GLB", + "seaIce.siforceintstrx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforceintstry.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcetiltx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcetilty.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdconc.tavg-u-hxy-si.day.GLB", + "seaIce.siitdconc.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdsnconc.tavg-u-hxy-si.day.GLB", + "seaIce.siitdsnconc.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdsnthick.tavg-u-hxy-si.day.GLB", + "seaIce.siitdsnthick.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdthick.tavg-u-hxy-si.day.GLB", + "seaIce.siitdthick.tavg-u-hxy-si.mon.GLB", + "seaIce.simassacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.simpconc.tavg-u-hxy-si.day.GLB", + "seaIce.simpconc.tavg-u-hxy-si.mon.GLB", + "seaIce.simpeffconc.tavg-u-hxy-si.day.GLB", + "seaIce.simpeffconc.tavg-u-hxy-si.mon.GLB", + "seaIce.simprefrozen.tavg-u-hxy-simp.day.GLB", + "seaIce.simprefrozen.tavg-u-hxy-simp.mon.GLB", + "seaIce.simpthick.tavg-u-hxy-si.day.GLB", + "seaIce.simpthick.tavg-u-hxy-simp.mon.GLB", + "seaIce.sirdgconc.tavg-u-hxy-si.day.GLB", + "seaIce.sirdgconc.tavg-u-hxy-si.mon.GLB", + "seaIce.sisali.tavg-u-hxy-si.day.GLB", + "seaIce.sisali.tavg-u-hxy-si.mon.GLB", + "seaIce.sisaltmass.tavg-u-hxy-si.day.GLB", + "seaIce.sisaltmass.tavg-u-hxy-si.mon.GLB", + "seaIce.sishearvel.tpt-u-hxy-si.mon.GLB", + "seaIce.sisnmass.tavg-u-hm-u.day.NH", + "seaIce.sisnmass.tavg-u-hm-u.day.SH", + "seaIce.sisnmassacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.sistressave.tpt-u-hxy-si.mon.GLB", + "seaIce.sistressmax.tpt-u-hxy-si.mon.GLB", + "seaIce.sistrxdtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sistrxubot.tavg-u-hxy-si.mon.GLB", + "seaIce.sistrydtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sistryubot.tavg-u-hxy-si.mon.GLB", + "seaIce.sitempbot.tavg-u-hxy-si.day.GLB", + "seaIce.sitempbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sitempsnic.tavg-u-hxy-si.day.GLB", + "seaIce.sitempsnic.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-sir.day.GLB", + "seaIce.sithick.tavg-u-hxy-sir.mon.GLB", + "seaIce.sivol.tavg-u-hm-u.day.NH", + "seaIce.sivol.tavg-u-hm-u.day.SH" + ], + "Low": [ + "aerosol.ccldncl.tavg-u-hxy-ccl.day.GLB", + "aerosol.sfpm1.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.sfpm10.tavg-h2m-hxy-u.1hr.GLB", + "atmos.cldnci.tavg-u-hxy-cl.day.GLB", + "atmos.co2.tavg-h2m-hxy-u.mon.GLB", + "atmos.hurs.tavg-h2m-hxy-u.1hr.GLB", + "atmos.hurs.tmin-h2m-hxy-crp.day.GLB", + "atmos.loaddust.tavg-u-hxy-u.day.GLB", + "atmos.loadnh4.tavg-u-hxy-u.day.GLB", + "atmos.loadno3.tavg-u-hxy-u.day.GLB", + "atmos.loadso4.tavg-u-hxy-u.day.GLB", + "atmos.loadsoa.tavg-u-hxy-u.day.GLB", + "atmos.loadss.tavg-u-hxy-u.day.GLB", + "atmos.pr.tavg-u-hxy-crp.day.GLB", + "atmos.reffcclwtop.tavg-u-hxy-ccl.day.GLB", + "atmos.reffsclwtop.tavg-u-hxy-scl.day.GLB", + "atmos.rsds.tavg-u-hxy-u.1hr.GLB", + "atmos.rsdscsdiff.tavg-u-hxy-u.day.GLB", + "atmos.scldncl.tavg-u-hxy-scl.day.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.1hr.GLB", + "atmos.tas.tmax-h2m-hxy-crp.day.GLB", + "atmos.tas.tmin-h2m-hxy-crp.day.GLB", + "atmos.zfull.ti-al-hxy-u.fx.GLB", + "atmosChem.drynh3.tavg-u-hxy-u.day.GLB", + "atmosChem.drynh4.tavg-u-hxy-u.day.GLB", + "atmosChem.drynoy.tavg-u-hxy-u.day.GLB", + "atmosChem.wetnh3.tavg-u-hxy-u.day.GLB", + "atmosChem.wetnh4.tavg-u-hxy-u.day.GLB", + "atmosChem.wetnoy.tavg-u-hxy-u.day.GLB", + "land.c3PftFrac.tavg-u-hxy-u.mon.GLB", + "land.c4PftFrac.tavg-u-hxy-u.mon.GLB", + "land.cropFracC3.tavg-u-hxy-u.mon.GLB", + "land.cropFracC4.tavg-u-hxy-u.mon.GLB", + "land.fHarvestToAtmos.tavg-u-hxy-lnd.mon.GLB", + "land.irrLut.tavg-u-hxy-multi.mon.GLB", + "land.lai.tavg-u-hxy-lnd.day.GLB", + "land.mrsol.tavg-sl-hxy-lnd.mon.GLB", + "land.pastureFrac.tavg-u-hxy-u.mon.GLB", + "land.pastureFracC3.tavg-u-hxy-u.mon.GLB", + "land.pastureFracC4.tavg-u-hxy-u.mon.GLB", + "land.prveg.tavg-u-hxy-lnd.mon.GLB", + "land.residualFrac.tavg-u-hxy-u.mon.GLB", + "land.tas.tavg-u-hxy-u.1hr.GLB", + "ocean.difmxybo.tavg-ol-hxy-sea.yr.GLB", + "ocean.difmxylo.tavg-ol-hxy-sea.yr.GLB", + "ocean.diftrblo.tavg-ol-hxy-sea.yr.GLB", + "ocean.diftrelo.tavg-ol-hxy-sea.yr.GLB", + "ocean.difvho.tavg-ol-hxy-sea.yr.GLB", + "ocean.difvso.tavg-ol-hxy-sea.yr.GLB", + "ocean.dispkexyfo.tavg-u-hxy-sea.yr.GLB", + "ocean.dxto.ti-u-hxy-u.fx.GLB", + "ocean.dxuo.ti-u-hxy-u.fx.GLB", + "ocean.dxvo.ti-u-hxy-u.fx.GLB", + "ocean.dyto.ti-u-hxy-u.fx.GLB", + "ocean.dyuo.ti-u-hxy-u.fx.GLB", + "ocean.dyvo.ti-u-hxy-u.fx.GLB", + "ocean.mlotstsq.tavg-u-hxy-sea.mon.GLB", + "ocean.msftmmpa.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftmmpa.tavg-rho-hyb-sea.mon.GLB", + "ocean.msftmsmpa.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftypa.tavg-ol-ht-sea.mon.GLB", + "ocean.msftypa.tavg-rho-ht-sea.mon.GLB", + "ocean.ocontempdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontempmint.tavg-u-hxy-sea.yr.GLB", + "ocean.ocontemppadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemppmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemppsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemprmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemptend.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottempdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottempmint.tavg-u-hxy-sea.yr.GLB", + "ocean.opottemppadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemppmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemppsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemprmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemptend.tavg-ol-hxy-sea.dec.GLB", + "ocean.osaltdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpsmadvect.tavg-ol-hxy-sea.mon.GLB", + "ocean.osaltpsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltrmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osalttend.tavg-ol-hxy-sea.yr.GLB", + "ocean.rsdoabsorb.tavg-ol-hxy-sea.yr.GLB", + "ocean.somint.tavg-u-hxy-sea.yr.GLB", + "ocean.sossq.tavg-u-hxy-sea.mon.GLB", + "ocean.thkcelluo.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcellvo.tavg-ol-hxy-sea.mon.GLB", + "ocean.tnpeo.tavg-u-hxy-sea.yr.GLB", + "ocean.tossq.tavg-u-hxy-sea.mon.GLB" + ] + }, + "piClim-CH4": { + "Core": [ + "atmos.areacella.ti-u-hxy-u.fx.GLB", + "atmos.cl.tavg-al-hxy-u.mon.GLB", + "atmos.cli.tavg-al-hxy-u.mon.GLB", + "atmos.clivi.tavg-u-hxy-u.mon.GLB", + "atmos.clt.tavg-u-hxy-u.day.GLB", + "atmos.clt.tavg-u-hxy-u.mon.GLB", + "atmos.clw.tavg-al-hxy-u.mon.GLB", + "atmos.clwvi.tavg-u-hxy-u.mon.GLB", + "atmos.evspsbl.tavg-u-hxy-u.mon.GLB", + "atmos.hfls.tavg-u-hxy-u.mon.GLB", + "atmos.hfss.tavg-u-hxy-u.mon.GLB", + "atmos.hur.tavg-p19-hxy-air.mon.GLB", + "atmos.hur.tavg-p19-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.6hr.GLB", + "atmos.hurs.tavg-h2m-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.mon.GLB", + "atmos.hus.tavg-p19-hxy-u.day.GLB", + "atmos.hus.tavg-p19-hxy-u.mon.GLB", + "atmos.huss.tavg-h2m-hxy-u.day.GLB", + "atmos.huss.tavg-h2m-hxy-u.mon.GLB", + "atmos.huss.tpt-h2m-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.1hr.GLB", + "atmos.pr.tavg-u-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.day.GLB", + "atmos.pr.tavg-u-hxy-u.mon.GLB", + "atmos.prc.tavg-u-hxy-u.mon.GLB", + "atmos.prsn.tavg-u-hxy-u.mon.GLB", + "atmos.prw.tavg-u-hxy-u.mon.GLB", + "atmos.ps.tavg-u-hxy-u.day.GLB", + "atmos.ps.tavg-u-hxy-u.mon.GLB", + "atmos.psl.tavg-u-hxy-u.day.GLB", + "atmos.psl.tavg-u-hxy-u.mon.GLB", + "atmos.rlds.tavg-u-hxy-u.mon.GLB", + "atmos.rldscs.tavg-u-hxy-u.mon.GLB", + "atmos.rlus.tavg-u-hxy-u.mon.GLB", + "atmos.rluscs.tavg-u-hxy-u.mon.GLB", + "atmos.rlut.tavg-u-hxy-u.mon.GLB", + "atmos.rlutcs.tavg-u-hxy-u.mon.GLB", + "atmos.rsds.tavg-u-hxy-u.day.GLB", + "atmos.rsds.tavg-u-hxy-u.mon.GLB", + "atmos.rsdscs.tavg-u-hxy-u.mon.GLB", + "atmos.rsdt.tavg-u-hxy-u.mon.GLB", + "atmos.rsus.tavg-u-hxy-u.mon.GLB", + "atmos.rsuscs.tavg-u-hxy-u.mon.GLB", + "atmos.rsut.tavg-u-hxy-u.mon.GLB", + "atmos.rsutcs.tavg-u-hxy-u.mon.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.day.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.mon.GLB", + "atmos.sftlf.ti-u-hxy-u.fx.GLB", + "atmos.ta.tavg-p19-hxy-air.day.GLB", + "atmos.ta.tavg-p19-hxy-air.mon.GLB", + "atmos.ta.tpt-p3-hxy-air.6hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.day.GLB", + "atmos.tas.tavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tmax-h2m-hxy-u.day.GLB", + "atmos.tas.tmaxavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tmin-h2m-hxy-u.day.GLB", + "atmos.tas.tminavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tpt-h2m-hxy-u.3hr.GLB", + "atmos.tauu.tavg-u-hxy-u.mon.GLB", + "atmos.tauv.tavg-u-hxy-u.mon.GLB", + "atmos.ts.tavg-u-hxy-u.mon.GLB", + "atmos.ua.tavg-p19-hxy-air.day.GLB", + "atmos.ua.tavg-p19-hxy-air.mon.GLB", + "atmos.ua.tpt-p3-hxy-air.6hr.GLB", + "atmos.uas.tavg-h10m-hxy-u.day.GLB", + "atmos.uas.tavg-h10m-hxy-u.mon.GLB", + "atmos.uas.tpt-h10m-hxy-u.3hr.GLB", + "atmos.va.tavg-p19-hxy-air.day.GLB", + "atmos.va.tavg-p19-hxy-air.mon.GLB", + "atmos.va.tpt-p3-hxy-air.6hr.GLB", + "atmos.vas.tavg-h10m-hxy-u.day.GLB", + "atmos.vas.tavg-h10m-hxy-u.mon.GLB", + "atmos.vas.tpt-h10m-hxy-u.3hr.GLB", + "atmos.wap.tavg-p19-hxy-air.mon.GLB", + "atmos.wap.tavg-p19-hxy-u.day.GLB", + "atmos.zg.tavg-p19-hxy-air.day.GLB", + "atmos.zg.tavg-p19-hxy-air.mon.GLB", + "land.evspsblsoi.tavg-u-hxy-lnd.mon.GLB", + "land.evspsblveg.tavg-u-hxy-lnd.mon.GLB", + "land.lai.tavg-u-hxy-lnd.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.mon.GLB", + "land.mrros.tavg-u-hxy-lnd.mon.GLB", + "land.mrso.tavg-u-hxy-lnd.mon.GLB", + "land.mrsofc.ti-u-hxy-lnd.fx.GLB", + "land.mrsol.tavg-d10cm-hxy-lnd.mon.GLB", + "land.orog.ti-u-hxy-u.fx.GLB", + "land.rootd.ti-u-hxy-lnd.fx.GLB", + "land.sftgif.ti-u-hxy-u.fx.GLB", + "land.slthick.ti-sl-hxy-lnd.fx.GLB", + "landIce.mrfso.tavg-u-hxy-lnd.mon.GLB", + "landIce.snc.tavg-u-hxy-lnd.mon.GLB", + "landIce.snw.tavg-u-hxy-lnd.mon.GLB", + "ocean.areacello.ti-u-hxy-u.fx.GLB", + "ocean.basin.ti-u-hxy-u.fx.GLB", + "ocean.bigthetao.tavg-ol-hxy-sea.mon.GLB", + "ocean.deptho.ti-u-hxy-sea.fx.GLB", + "ocean.hfds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfgeou.ti-u-hxy-sea.fx.GLB", + "ocean.masscello.tavg-ol-hxy-sea.mon.GLB", + "ocean.masscello.ti-ol-hxy-sea.fx.GLB", + "ocean.mlotst.tavg-u-hxy-sea.mon.GLB", + "ocean.sftof.ti-u-hxy-u.fx.GLB", + "ocean.so.tavg-ol-hxy-sea.mon.GLB", + "ocean.sos.tavg-u-hxy-sea.day.GLB", + "ocean.sos.tavg-u-hxy-sea.mon.GLB", + "ocean.tauuo.tavg-u-hxy-sea.mon.GLB", + "ocean.tauvo.tavg-u-hxy-sea.mon.GLB", + "ocean.thetao.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcello.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcello.ti-ol-hxy-sea.fx.GLB", + "ocean.tos.tavg-u-hxy-sea.day.GLB", + "ocean.tos.tavg-u-hxy-sea.mon.GLB", + "ocean.umo.tavg-ol-hxy-sea.mon.GLB", + "ocean.uo.tavg-ol-hxy-sea.mon.GLB", + "ocean.vmo.tavg-ol-hxy-sea.mon.GLB", + "ocean.vo.tavg-ol-hxy-sea.mon.GLB", + "ocean.wmo.tavg-ol-hxy-sea.mon.GLB", + "ocean.wo.tavg-ol-hxy-sea.mon.GLB", + "ocean.zos.tavg-u-hxy-sea.day.GLB", + "ocean.zos.tavg-u-hxy-sea.mon.GLB", + "ocean.zostoga.tavg-u-hm-sea.mon.GLB", + "seaIce.siconc.tavg-u-hxy-u.day.GLB", + "seaIce.siconc.tavg-u-hxy-u.mon.GLB", + "seaIce.simass.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-si.mon.GLB", + "seaIce.sitimefrac.tavg-u-hxy-sea.mon.GLB", + "seaIce.siu.tavg-u-hxy-si.mon.GLB", + "seaIce.siv.tavg-u-hxy-si.mon.GLB", + "seaIce.snd.tavg-u-hxy-sn.mon.GLB", + "seaIce.ts.tavg-u-hxy-si.mon.GLB" + ], + "High": [ + "aerosol.abs550aer.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550bc.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550dust.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550no3.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550oa.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550so4.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550ss.tavg-u-hxy-u.mon.GLB", + "aerosol.airmass.tavg-al-hxy-u.mon.GLB", + "aerosol.aoanh.tavg-al-hxy-u.mon.NH", + "aerosol.bry.tavg-p39-hy-air.mon.GLB", + "aerosol.bs550aer.tpt-al-hxy-u.6hr.GLB", + "aerosol.c2h6.tavg-al-hxy-u.mon.GLB", + "aerosol.c3h6.tavg-al-hxy-u.mon.GLB", + "aerosol.c3h8.tavg-al-hxy-u.mon.GLB", + "aerosol.ccldncl.tavg-u-hxy-ccl.mon.GLB", + "aerosol.ccn.tavg-u-hxy-ccl.mon.30S-90S", + "aerosol.ccn.tavg-u-hxy-ccl.mon.GLB", + "aerosol.ccn1.tavg-al-hxy-u.mon.30S-90S", + "aerosol.ccn1.tavg-al-hxy-u.mon.GLB", + "aerosol.ccnp02.tavg-al-hxy-u.mon.30S-90S", + "aerosol.ccnp02.tavg-al-hxy-u.mon.GLB", + "aerosol.cdnc.tavg-al-hxy-u.mon.30S-90S", + "aerosol.cdnc.tavg-al-hxy-u.mon.GLB", + "aerosol.cfc114.tavg-al-hxy-u.mon.GLB", + "aerosol.ch3coch3.tavg-al-hxy-u.mon.GLB", + "aerosol.cheaqpso4.tavg-al-hxy-u.mon.GLB", + "aerosol.chegpso4.tavg-al-hxy-u.mon.GLB", + "aerosol.chepasoa.tavg-u-hxy-u.mon.GLB", + "aerosol.chepsoa.tavg-u-hxy-u.mon.GLB", + "aerosol.cly.tavg-p39-hy-air.mon.GLB", + "aerosol.co.tavg-al-hxy-u.mon.GLB", + "aerosol.co.tavg-h2m-hxy-u.day.GLB", + "aerosol.cod.tavg-u-hxy-u.day.GLB", + "aerosol.cod.tavg-u-hxy-u.mon.30S-90S", + "aerosol.cod.tavg-u-hxy-u.mon.GLB", + "aerosol.conccn.tavg-al-hxy-u.mon.GLB", + "aerosol.conccn.tpt-u-hs-u.3hr.GLB", + "aerosol.drybc.tavg-u-hxy-u.mon.GLB", + "aerosol.drydust.tavg-u-hxy-u.mon.GLB", + "aerosol.dryno3.tavg-u-hxy-u.mon.GLB", + "aerosol.dryo3.tavg-u-hxy-u.mon.GLB", + "aerosol.dryoa.tavg-u-hxy-u.mon.GLB", + "aerosol.dryso2.tavg-u-hxy-u.mon.GLB", + "aerosol.dryso4.tavg-u-hxy-u.mon.GLB", + "aerosol.dryss.tavg-u-hxy-u.mon.GLB", + "aerosol.ec550aer.tavg-al-hxy-u.mon.GLB", + "aerosol.ec550aer.tpt-u-hxy-u.6hr.GLB", + "aerosol.emiaco.tavg-u-hxy-u.mon.GLB", + "aerosol.emianox.tavg-u-hxy-u.mon.GLB", + "aerosol.emiaoa.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbbc.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbch4.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbco.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbdms.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbnh3.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbnox.tavg-u-hxy-u.mon.GLB", + "aerosol.emibboa.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbso2.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbvoc.tavg-u-hxy-u.mon.GLB", + "aerosol.emibc.tavg-u-hxy-u.mon.GLB", + "aerosol.emibvoc.tavg-u-hxy-u.mon.GLB", + "aerosol.emico.tavg-u-hxy-u.mon.GLB", + "aerosol.emidms.tavg-u-hxy-u.mon.30S-90S", + "aerosol.emidms.tavg-u-hxy-u.mon.GLB", + "aerosol.emidust.tavg-u-hxy-u.mon.GLB", + "aerosol.emiisop.tavg-u-hxy-u.mon.GLB", + "aerosol.emilnox.tavg-al-hxy-u.mon.GLB", + "aerosol.eminh3.tavg-u-hxy-u.mon.GLB", + "aerosol.eminox.tavg-u-hxy-u.mon.GLB", + "aerosol.emioa.tavg-u-hxy-u.mon.GLB", + "aerosol.emiso2.tavg-u-hxy-u.mon.GLB", + "aerosol.emiso4.tavg-u-hxy-u.mon.GLB", + "aerosol.emiss.tavg-u-hxy-u.mon.30S-90S", + "aerosol.emiss.tavg-u-hxy-u.mon.GLB", + "aerosol.emivoc.tavg-u-hxy-u.mon.GLB", + "aerosol.h2o.tavg-al-hxy-u.mon.GLB", + "aerosol.h2o.tavg-p39-hy-air.mon.GLB", + "aerosol.hcfc22.tavg-al-hxy-u.mon.GLB", + "aerosol.hcho.tavg-al-hxy-u.mon.GLB", + "aerosol.hcl.tavg-al-hxy-u.mon.GLB", + "aerosol.hcl.tavg-p39-hy-air.mon.GLB", + "aerosol.hfc125.tavg-al-hxy-u.mon.GLB", + "aerosol.hfc134a.tavg-al-hxy-u.mon.GLB", + "aerosol.hno3.tavg-al-hxy-u.mon.GLB", + "aerosol.hno3.tavg-p39-hy-air.mon.GLB", + "aerosol.ho2.tavg-p39-hy-air.mon.GLB", + "aerosol.isop.tavg-al-hxy-u.mon.GLB", + "aerosol.jno2.tavg-al-hxy-u.mon.GLB", + "aerosol.lossch4.tavg-al-hxy-u.mon.GLB", + "aerosol.lossco.tavg-al-hxy-u.mon.GLB", + "aerosol.lossn2o.tavg-al-hxy-u.mon.GLB", + "aerosol.lwp.tavg-u-hxy-u.mon.GLB", + "aerosol.mmraerh2o.tavg-al-hxy-u.mon.GLB", + "aerosol.mmraerh2o.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmraerh2o.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrbc.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrbc.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrbc.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrbc.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrdust.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrdust.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrdust.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrdust.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrnh4.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrnh4.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrnh4.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrnh4.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrno3.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrno3.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrno3.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrno3.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmroa.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmroa.tavg-al-hxy-u.mon.GLB", + "aerosol.mmroa.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmroa.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrpm1.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrpm1.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrpm2p5.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrpm2p5.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrso4.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrso4.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrso4.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrso4.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrsoa.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrsoa.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrsoa.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrss.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrss.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrss.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrss.tpt-h2m-hs-u.3hr.GLB", + "aerosol.nh50.tavg-al-hxy-u.mon.GLB", + "aerosol.no.tavg-al-hxy-u.mon.GLB", + "aerosol.no2.tavg-al-hxy-u.mon.GLB", + "aerosol.no2.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.noy.tavg-p39-hy-air.mon.GLB", + "aerosol.o3.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.o3.tmax-h2m-hxy-u.day.GLB", + "aerosol.o3loss.tavg-al-hxy-u.mon.GLB", + "aerosol.o3prod.tavg-al-hxy-u.mon.GLB", + "aerosol.od443aer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550aer.tavg-u-hxy-u.day.GLB", + "aerosol.od550aer.tavg-u-hxy-u.mon.30S-90S", + "aerosol.od550aer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550aerh2o.tavg-u-hxy-u.mon.GLB", + "aerosol.od550bb.tavg-u-hxy-u.mon.GLB", + "aerosol.od550bc.tavg-u-hxy-u.mon.GLB", + "aerosol.od550csaer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550dust.tavg-u-hxy-u.mon.GLB", + "aerosol.od550lt1aer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550no3.tavg-u-hxy-u.mon.GLB", + "aerosol.od550oa.tavg-u-hxy-u.mon.GLB", + "aerosol.od550so4.tavg-u-hxy-u.mon.GLB", + "aerosol.od550soa.tavg-u-hxy-u.mon.GLB", + "aerosol.od550ss.tavg-u-hxy-u.mon.GLB", + "aerosol.od865aer.tavg-u-hxy-u.mon.GLB", + "aerosol.oh.tavg-al-hxy-u.mon.GLB", + "aerosol.oh.tavg-p39-hy-air.mon.GLB", + "aerosol.pan.tavg-al-hxy-u.mon.GLB", + "aerosol.photo1d.tavg-al-hxy-u.mon.GLB", + "aerosol.pod0.tsum-u-hxy-u.mon.GLB", + "aerosol.reffccwctop.tavg-u-hxy-cl.mon.GLB", + "aerosol.reffclwtop.tavg-u-hxy-cl.mon.30S-90S", + "aerosol.reffclwtop.tavg-u-hxy-cl.mon.GLB", + "aerosol.rluscsaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rlutaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rlutcsaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rsutaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rsutcsaf.tavg-u-hxy-u.mon.GLB", + "aerosol.sfpm1.tavg-h2m-hxy-u.day.GLB", + "aerosol.sfpm10.tavg-al-hxy-u.mon.30S-90S", + "aerosol.sfpm10.tavg-al-hxy-u.mon.GLB", + "aerosol.sfpm10.tavg-h2m-hxy-u.day.GLB", + "aerosol.sfpm25.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.sfpm25.tavg-h2m-hxy-u.day.GLB", + "aerosol.so2.tavg-al-hxy-u.mon.30S-90S", + "aerosol.so2.tavg-al-hxy-u.mon.GLB", + "aerosol.so2.tavg-h2m-hxy-u.day.GLB", + "aerosol.so2.tpt-h2m-hs-u.3hr.GLB", + "aerosol.tatp.tavg-u-hxy-u.mon.GLB", + "aerosol.toz.tavg-u-hxy-u.day.GLB", + "aerosol.toz.tavg-u-hxy-u.mon.GLB", + "aerosol.tropoz.tavg-u-hxy-u.mon.GLB", + "aerosol.ttop.tavg-u-hxy-cl.mon.GLB", + "aerosol.ua.tavg-10hPa-hxy-air.day.GLB", + "aerosol.vt100.tavg-100hPa-hy-air.mon.GLB", + "aerosol.wa.tavg-al-hxy-u.mon.GLB", + "aerosol.wetbc.tavg-u-hxy-u.mon.GLB", + "aerosol.wetdust.tavg-u-hxy-u.mon.GLB", + "aerosol.wetoa.tavg-u-hxy-u.mon.GLB", + "aerosol.wetso2.tavg-u-hxy-u.mon.GLB", + "aerosol.wetso4.tavg-u-hxy-u.mon.GLB", + "aerosol.wetss.tavg-u-hxy-u.mon.GLB", + "aerosol.zg.tavg-10hPa-hxy-air.day.GLB", + "atmos.albisccp.tavg-u-hxy-cl.mon.30S-90S", + "atmos.bldep.tavg-u-hxy-u.mon.GLB", + "atmos.bldep.tmax-u-hxy-u.day.GLB", + "atmos.bldep.tmin-u-hxy-u.day.GLB", + "atmos.cl.tavg-al-hxy-u.mon.30S-90S", + "atmos.clc.tavg-al-hxy-u.mon.30S-90S", + "atmos.clc.tavg-al-hxy-u.mon.GLB", + "atmos.clcalipso.tavg-220hPa-hxy-air.mon.30S-90S", + "atmos.clcalipso.tavg-220hPa-hxy-air.mon.GLB", + "atmos.clcalipso.tavg-560hPa-hxy-air.mon.30S-90S", + "atmos.clcalipso.tavg-560hPa-hxy-air.mon.GLB", + "atmos.clcalipso.tavg-840hPa-hxy-air.mon.30S-90S", + "atmos.clcalipso.tavg-840hPa-hxy-air.mon.GLB", + "atmos.clcalipso.tavg-h40-hxy-air.mon.30S-90S", + "atmos.cldnci.tavg-u-hxy-cl.mon.GLB", + "atmos.cldncl.tavg-u-hxy-cl.mon.GLB", + "atmos.cldnvi.tavg-u-hxy-u.mon.GLB", + "atmos.cli.tavg-al-hxy-u.mon.30S-90S", + "atmos.clic.tavg-al-hxy-u.mon.30S-90S", + "atmos.clis.tavg-al-hxy-u.mon.30S-90S", + "atmos.clisccp.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clisccp.tavg-p7c-hxy-air.mon.GLB", + "atmos.clivi.tavg-u-hxy-u.mon.30S-90S", + "atmos.clivimodis.tavg-u-hxy-u.mon.30S-90S", + "atmos.clmodis.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clmodis.tavg-p7c-hxy-air.mon.GLB", + "atmos.clmodisice.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clmodisice.tavg-p7c-hxy-air.mon.GLB", + "atmos.clmodisiceReff.tavg-u-hxy-u.mon.GLB", + "atmos.clmodisliquid.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clmodisliquid.tavg-p7c-hxy-air.mon.GLB", + "atmos.clmodisliquidReff.tavg-u-hxy-u.mon.GLB", + "atmos.cls.tavg-al-hxy-u.mon.30S-90S", + "atmos.clt.tavg-u-hxy-u.mon.30S-90S", + "atmos.cltc.tavg-u-hxy-u.mon.GLB", + "atmos.cltcalipso.tavg-u-hxy-u.mon.30S-90S", + "atmos.cltisccp.tavg-u-hxy-u.mon.30S-90S", + "atmos.cltmodis.tavg-u-hxy-u.mon.30S-90S", + "atmos.clw.tavg-al-hxy-u.mon.30S-90S", + "atmos.clwc.tavg-al-hxy-u.mon.30S-90S", + "atmos.clws.tavg-al-hxy-u.mon.30S-90S", + "atmos.clwvi.tavg-u-hxy-u.mon.30S-90S", + "atmos.clwvimodis.tavg-u-hxy-u.mon.30S-90S", + "atmos.co2.tavg-al-hxy-u.mon.GLB", + "atmos.co2.tavg-p19-hxy-air.mon.GLB", + "atmos.co23D.tavg-al-hxy-u.mon.GLB", + "atmos.co2mass.tavg-u-hm-u.mon.GLB", + "atmos.dmc.tavg-alh-hxy-u.mon.30S-90S", + "atmos.edt.tavg-al-hxy-u.mon.30S-90S", + "atmos.evspsbl.tavg-u-hxy-lnd.day.GLB", + "atmos.evu.tavg-al-hxy-u.mon.30S-90S", + "atmos.fco2antt.tavg-u-hxy-u.mon.GLB", + "atmos.fco2fos.tavg-u-hxy-u.mon.GLB", + "atmos.fco2nat.tavg-u-hxy-u.mon.GLB", + "atmos.hfls.tavg-u-hxy-u.mon.30S-90S", + "atmos.hfss.tavg-u-hxy-u.mon.30S-90S", + "atmos.hur.tavg-al-hxy-u.mon.30S-90S", + "atmos.hur.tavg-al-hxy-u.mon.GLB", + "atmos.hur.tavg-p19-hxy-air.mon.30S-90S", + "atmos.hurs.tavg-h2m-hxy-u.mon.30S-90S", + "atmos.hurs.tmax-h2m-hxy-u.day.GLB", + "atmos.hurs.tmin-h2m-hxy-u.day.GLB", + "atmos.hus.tavg-al-hxy-u.mon.30S-90S", + "atmos.hus.tavg-al-hxy-u.mon.GLB", + "atmos.hus.tavg-p19-hxy-u.mon.30S-90S", + "atmos.hus.tpt-al-hxy-u.6hr.GLB", + "atmos.hus.tpt-p7h-hxy-air.6hr.GLB", + "atmos.huss.tavg-h2m-hxy-u.mon.30S-90S", + "atmos.huss.tpt-h2m-hxy-u.1hr.GLB", + "atmos.mc.tavg-alh-hxy-u.mon.GLB", + "atmos.mcd.tavg-alh-hxy-u.mon.30S-90S", + "atmos.mcu.tavg-alh-hxy-u.mon.30S-90S", + "atmos.mcu.tavg-alh-hxy-u.mon.GLB", + "atmos.pctisccp.tavg-u-hxy-cl.mon.30S-90S", + "atmos.pfull.tavg-al-hxy-u.mon.GLB", + "atmos.pfull.tclm-al-hxy-u.mon.30S-90S", + "atmos.phalf.tavg-alh-hxy-u.mon.GLB", + "atmos.pr.tavg-u-hxy-u.mon.30S-90S", + "atmos.pr.tmax-u-hxy-u.day.GLB", + "atmos.pr.tpt-u-hxy-u.6hr.GLB", + "atmos.prc.tavg-u-hxy-u.mon.30S-90S", + "atmos.prra.tavg-u-hxy-lnd.day.GLB", + "atmos.prra.tavg-u-hxy-u.mon.30S-90S", + "atmos.prsn.tavg-u-hxy-u.3hr.GLB", + "atmos.prsn.tavg-u-hxy-u.day.GLB", + "atmos.prsn.tavg-u-hxy-u.mon.30S-90S", + "atmos.prw.tavg-u-hxy-u.day.GLB", + "atmos.prw.tavg-u-hxy-u.mon.30S-90S", + "atmos.ps.tavg-u-hxy-u.1hr.GLB", + "atmos.ps.tavg-u-hxy-u.mon.30S-90S", + "atmos.ps.tpt-u-hxy-u.6hr.GLB", + "atmos.psl.tavg-u-hxy-u.mon.30S-90S", + "atmos.psl.tpt-u-hxy-u.1hr.GLB", + "atmos.psl.tpt-u-hxy-u.6hr.GLB", + "atmos.ptp.tavg-u-hxy-u.mon.GLB", + "atmos.reffcclwtop.tavg-u-hxy-ccl.mon.GLB", + "atmos.reffclic.tavg-al-hxy-ccl.mon.30S-90S", + "atmos.reffclis.tavg-al-hxy-scl.mon.30S-90S", + "atmos.reffclwc.tavg-al-hxy-ccl.mon.30S-90S", + "atmos.reffclws.tavg-al-hxy-scl.mon.30S-90S", + "atmos.reffsclwtop.tavg-u-hxy-scl.mon.GLB", + "atmos.rld.tavg-alh-hxy-u.mon.GLB", + "atmos.rld4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rldcs.tavg-alh-hxy-u.mon.GLB", + "atmos.rldcs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rlds.tavg-u-hxy-u.1hr.GLB", + "atmos.rlds.tavg-u-hxy-u.day.GLB", + "atmos.rlds.tavg-u-hxy-u.mon.30S-90S", + "atmos.rldscs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rlu.tavg-alh-hxy-u.mon.GLB", + "atmos.rlu4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rlucs.tavg-alh-hxy-u.mon.GLB", + "atmos.rlucs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rlus.tavg-u-hxy-u.day.GLB", + "atmos.rlus.tavg-u-hxy-u.mon.30S-90S", + "atmos.rlut.tavg-u-hxy-u.mon.30S-90S", + "atmos.rlut4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rlutcs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rlutcs4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rsd.tavg-alh-hxy-u.mon.GLB", + "atmos.rsd4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsdcs.tavg-alh-hxy-u.mon.GLB", + "atmos.rsdcs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsds.tavg-u-hxy-u.1hr.GLB", + "atmos.rsds.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsdscs.tavg-u-hxy-u.day.GLB", + "atmos.rsdscs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsdt.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsu.tavg-alh-hxy-u.mon.GLB", + "atmos.rsu4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsucs.tavg-alh-hxy-u.mon.GLB", + "atmos.rsucs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsus.tavg-u-hxy-u.day.GLB", + "atmos.rsus.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsuscs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsut.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsut4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rsutcs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsutcs4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rtmt.tavg-u-hxy-u.mon.GLB", + "atmos.rv850.tpt-850hPa-hxy-air.6hr.GLB", + "atmos.scldncl.tavg-u-hxy-scl.mon.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.mon.30S-90S", + "atmos.ta.tavg-al-hxy-u.mon.30S-90S", + "atmos.ta.tavg-al-hxy-u.mon.GLB", + "atmos.ta.tavg-p19-hxy-air.mon.30S-90S", + "atmos.ta.tavg-p39-hy-air.mon.GLB", + "atmos.ta.tpt-al-hxy-u.6hr.GLB", + "atmos.ta.tpt-p7h-hxy-air.6hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.1hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.mon.30S-90S", + "atmos.tas.tmaxavg-h2m-hxy-u.mon.30S-90S", + "atmos.tas.tminavg-h2m-hxy-u.mon.30S-90S", + "atmos.tnt.tavg-al-hxy-u.mon.GLB", + "atmos.tntrl.tavg-al-hxy-u.mon.GLB", + "atmos.tntrs.tavg-al-hxy-u.mon.GLB", + "atmos.ts.tavg-u-hxy-u.mon.30S-90S", + "atmos.ts.tpt-u-hxy-u.6hr.GLB", + "atmos.ua.tavg-al-hxy-u.mon.GLB", + "atmos.ua.tavg-p19-hxy-air.mon.30S-90S", + "atmos.ua.tavg-p39-hy-air.mon.GLB", + "atmos.ua.tpt-al-hxy-u.6hr.GLB", + "atmos.ua.tpt-p7h-hxy-air.6hr.GLB", + "atmos.uas.tavg-h10m-hxy-u.mon.30S-90S", + "atmos.uas.tpt-h10m-hxy-u.1hr.GLB", + "atmos.va.tavg-al-hxy-u.mon.GLB", + "atmos.va.tavg-p19-hxy-air.mon.30S-90S", + "atmos.va.tavg-p39-hy-air.mon.GLB", + "atmos.va.tpt-al-hxy-u.6hr.GLB", + "atmos.va.tpt-p7h-hxy-air.6hr.GLB", + "atmos.vas.tavg-h10m-hxy-u.mon.30S-90S", + "atmos.vas.tpt-h10m-hxy-u.1hr.GLB", + "atmos.wap.tavg-p19-hxy-air.mon.30S-90S", + "atmos.zg.tavg-1000hPa-hxy-air.day.GLB", + "atmos.zg.tavg-500hPa-hxy-air.day.GLB", + "atmos.zg.tavg-al-hxy-u.mon.GLB", + "atmos.zg.tavg-p19-hxy-air.mon.30S-90S", + "atmos.zg.tavg-p39-hy-air.mon.GLB", + "atmos.zg.tpt-500hPa-hxy-air.6hr.GLB", + "atmos.zg.tpt-al-hxy-u.6hr.GLB", + "atmos.zg.tpt-p7h-hxy-air.6hr.GLB", + "atmos.ztp.tavg-u-hxy-u.mon.GLB", + "atmosChem.c2h4.tavg-al-hxy-u.mon.GLB", + "atmosChem.c2h5oh.tavg-al-hxy-u.mon.GLB", + "atmosChem.c4h10.tavg-al-hxy-u.mon.GLB", + "atmosChem.cfc11.tavg-u-hm-u.mon.GLB", + "atmosChem.cfc113.tavg-u-hm-u.mon.GLB", + "atmosChem.cfc12.tavg-u-hm-u.mon.GLB", + "atmosChem.ch3oh.tavg-al-hxy-u.mon.GLB", + "atmosChem.ch4.tavg-al-hxy-u.mon.GLB", + "atmosChem.ch4.tavg-p39-hy-air.mon.GLB", + "atmosChem.ch4losssoil.tavg-u-hxy-u.mon.GLB", + "atmosChem.ch4ref.ti-al-hxy-u.fx.GLB", + "atmosChem.chegph2oo1d.tavg-al-hxy-u.mon.GLB", + "atmosChem.chepnh4.tavg-al-hxy-u.mon.GLB", + "atmosChem.chepno3.tavg-al-hxy-u.mon.GLB", + "atmosChem.dms.tavg-al-hxy-u.mon.30S-90S", + "atmosChem.dms.tavg-al-hxy-u.mon.GLB", + "atmosChem.do3chm.tavg-al-hxy-u.mon.GLB", + "atmosChem.dryh2.tavg-u-hxy-u.mon.GLB", + "atmosChem.dryhno3.tavg-u-hxy-u.mon.GLB", + "atmosChem.drynh3.tavg-u-hxy-u.mon.GLB", + "atmosChem.drynh4.tavg-u-hxy-u.mon.GLB", + "atmosChem.drynoy.tavg-u-hxy-u.mon.GLB", + "atmosChem.e90inst.tpt-al-hxy-u.mon.GLB", + "atmosChem.emiach4.tavg-u-hxy-u.mon.GLB", + "atmosChem.emiavnox.tavg-al-hxy-u.mon.GLB", + "atmosChem.emic2h4.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic2h5oh.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic2h6.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic3h6.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic3h8.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic4h10.tavg-u-hxy-u.mon.GLB", + "atmosChem.emich3oh.tavg-u-hxy-u.mon.GLB", + "atmosChem.emich4.tavg-u-hxy-u.mon.GLB", + "atmosChem.emih2.tavg-u-hxy-u.mon.GLB", + "atmosChem.emilkch4.tavg-u-hxy-u.mon.GLB", + "atmosChem.h2.tavg-al-hxy-u.mon.GLB", + "atmosChem.h2loss.tavg-al-hxy-u.mon.GLB", + "atmosChem.h2prod.tavg-al-hxy-u.mon.GLB", + "atmosChem.hcfc22.tavg-u-hm-u.mon.GLB", + "atmosChem.meanage.tavg-al-hxy-u.mon.GLB", + "atmosChem.meanage.tavg-p39-hy-air.mon.GLB", + "atmosChem.n2o.tavg-al-hxy-u.mon.GLB", + "atmosChem.n2o.tavg-p39-hy-air.mon.GLB", + "atmosChem.o3.tavg-al-hxy-u.mon.GLB", + "atmosChem.o3.tavg-p19-hxy-air.mon.GLB", + "atmosChem.o3.tavg-p39-hy-air.mon.GLB", + "atmosChem.o3.tpt-al-hxy-u.mon.GLB", + "atmosChem.o3ref.tclm-al-hxy-u.fx.GLB", + "atmosChem.o3ref.ti-al-hxy-u.fx.GLB", + "atmosChem.o3ste.tavg-al-hxy-u.mon.GLB", + "atmosChem.rlutch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rlutcsch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rlutcso3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rluto3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsutch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsutcsch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsutcso3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsuto3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.stratch4loss.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropch4loss.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropch4lossoh.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropdo3chm.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropo3ste.tavg-al-hxy-u.mon.GLB", + "atmosChem.wethno3.tavg-al-hxy-u.mon.GLB", + "atmosChem.wetnh3.tavg-u-hxy-u.mon.GLB", + "atmosChem.wetnh4.tavg-u-hxy-u.mon.GLB", + "atmosChem.wetno3.tavg-al-hxy-u.mon.GLB", + "atmosChem.wetnoy.tavg-u-hxy-u.mon.GLB", + "land.albc.tavg-u-hxy-veg.mon.GLB", + "land.areacellr.ti-u-hxy-u.fx.GLB", + "land.baresoilFrac.tavg-u-hxy-u.mon.GLB", + "land.burntFractionAll.tavg-u-hxy-u.mon.GLB", + "land.cGeologicStorage.tavg-u-hxy-u.mon.GLB", + "land.cLand.tavg-u-hxy-lnd.mon.GLB", + "land.cLitter.tavg-u-hxy-lnd.mon.GLB", + "land.cnc.tavg-u-hxy-u.mon.GLB", + "land.cProduct.tavg-u-hxy-lnd.mon.GLB", + "land.cropFrac.tavg-u-hxy-u.mon.GLB", + "land.cSoil.tavg-d100cm-hxy-lnd.mon.GLB", + "land.cSoil.tavg-u-hxy-lnd.mon.GLB", + "land.cVeg.tavg-u-hxy-lnd.mon.GLB", + "land.dcw.tavg-u-hxy-lnd.day.GLB", + "land.dslw.tavg-u-hxy-lnd.day.GLB", + "land.evspsblpot.tavg-u-hxy-lnd.day.GLB", + "land.evspsblpot.tavg-u-hxy-lnd.mon.GLB", + "land.fAnthDisturb.tavg-u-hxy-lnd.mon.GLB", + "land.fBNF.tavg-u-hxy-lnd.mon.GLB", + "land.fCLandToOcean.tavg-u-hxy-lnd.mon.GLB", + "land.fDeforestToAtmos.tavg-u-hxy-lnd.mon.GLB", + "land.fDeforestToProduct.tavg-u-hxy-lnd.mon.GLB", + "land.fFire.tavg-u-hxy-lnd.mon.GLB", + "land.fFireAll.tavg-u-hxy-lnd.mon.GLB", + "land.fFireNat.tavg-u-hxy-lnd.mon.GLB", + "land.fHarvestToAtmos.tavg-u-hxy-lnd.mon.GLB", + "land.fHarvestToGeologicStorage.tavg-u-hxy-lnd.mon.GLB", + "land.fHarvestToProduct.tavg-u-hxy-lnd.mon.GLB", + "land.fLitterSoil.tavg-u-hxy-lnd.mon.GLB", + "land.fN2O.tavg-u-hxy-lnd.mon.GLB", + "land.fNAnthDisturb.tavg-u-hxy-lnd.mon.GLB", + "land.fNdep.tavg-u-hxy-lnd.mon.GLB", + "land.fNfert.tavg-u-hxy-lnd.mon.GLB", + "land.fNLandToOcean.tavg-u-hxy-lnd.mon.GLB", + "land.fNLitterSoil.tavg-u-hxy-lnd.mon.GLB", + "land.fNloss.tavg-u-hxy-lnd.mon.GLB", + "land.fNnetmin.tavg-u-hxy-lnd.mon.GLB", + "land.fNOx.tavg-u-hxy-lnd.mon.GLB", + "land.fNProduct.tavg-u-hxy-lnd.mon.GLB", + "land.fNup.tavg-u-hxy-lnd.mon.GLB", + "land.fNVegLitter.tavg-u-hxy-lnd.mon.GLB", + "land.fNVegSoil.tavg-u-hxy-lnd.mon.GLB", + "land.fProductDecomp.tavg-u-hxy-lnd.mon.GLB", + "land.fVegLitter.tavg-u-hxy-lnd.mon.GLB", + "land.fVegSoil.tavg-u-hxy-lnd.mon.GLB", + "land.gpp.tavg-u-hxy-lnd.mon.GLB", + "land.grassFrac.tavg-u-hxy-u.mon.GLB", + "land.landCoverFrac.tavg-u-hxy-u.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.day.GLB", + "land.mrrob.tavg-u-hxy-lnd.day.GLB", + "land.mrros.tavg-u-hxy-lnd.day.GLB", + "land.mrsfl.tavg-sl-hxy-lnd.day.GLB", + "land.mrsfl.tavg-sl-hxy-lnd.mon.GLB", + "land.mrsll.tavg-sl-hxy-lnd.day.GLB", + "land.mrsll.tavg-sl-hxy-lnd.mon.GLB", + "land.mrso.tavg-u-hxy-lnd.day.GLB", + "land.mrsol.tavg-d10cm-hxy-lnd.day.GLB", + "land.mrsol.tavg-sl-hxy-lnd.day.GLB", + "land.mrsol.tavg-sl-hxy-lnd.mon.GLB", + "land.mrsow.tavg-u-hxy-lnd.day.GLB", + "land.mrtws.tavg-u-hxy-lnd.day.GLB", + "land.mrtws.tavg-u-hxy-lnd.mon.GLB", + "land.nbp.tavg-u-hxy-lnd.mon.GLB", + "land.nep.tavg-u-hxy-lnd.mon.GLB", + "land.nLand.tavg-u-hxy-lnd.mon.GLB", + "land.nLitter.tavg-u-hxy-lnd.mon.GLB", + "land.nMineral.tavg-u-hxy-lnd.mon.GLB", + "land.npp.tavg-u-hxy-lnd.mon.GLB", + "land.nProduct.tavg-u-hxy-lnd.mon.GLB", + "land.nSoil.tavg-u-hxy-lnd.mon.GLB", + "land.nVeg.tavg-u-hxy-lnd.mon.GLB", + "land.pastureFrac.tavg-u-hxy-u.mon.GLB", + "land.prveg.tavg-u-hxy-lnd.mon.GLB", + "land.ra.tavg-u-hxy-lnd.mon.GLB", + "land.residualFrac.tavg-u-hxy-u.mon.GLB", + "land.rh.tavg-u-hxy-lnd.mon.GLB", + "land.rivi.tavg-u-hxy-lnd.day.GLB", + "land.rivo.tavg-u-hxy-lnd.day.GLB", + "land.rsds.tavg-u-hxy-sn.mon.GLB", + "land.rsus.tavg-u-hxy-sn.mon.GLB", + "land.shrubFrac.tavg-u-hxy-u.mon.GLB", + "land.tas.tavg-u-hxy-u.1hr.GLB", + "land.tran.tavg-u-hxy-lnd.mon.GLB", + "land.treeFrac.tavg-u-hxy-u.mon.GLB", + "land.tsl.tavg-sl-hxy-lnd.mon.GLB", + "land.tslsi.tavg-u-hxy-u.day.GLB", + "land.vegFrac.tavg-u-hxy-u.mon.GLB", + "land.vegHeight.tavg-u-hxy-veg.mon.GLB", + "land.wetlandCH4.tavg-u-hxy-lnd.mon.GLB", + "land.wtd.tavg-u-hxy-lnd.day.GLB", + "landIce.snd.tavg-u-hxy-lnd.mon.GLB", + "landIce.snw.tavg-u-hxy-lnd.day.GLB", + "ocean.absscint.tavg-op4-hxy-sea.mon.GLB", + "ocean.agessc.tavg-ol-hxy-sea.mon.GLB", + "ocean.bigthetao.tavg-ol-hm-sea.mon.GLB", + "ocean.bigthetao.tavg-ol-hxy-sea.dec.GLB", + "ocean.bigthetao.tavg-op20bar-hxy-sea.day.GLB", + "ocean.chcint.tavg-op4-hxy-sea.mon.GLB", + "ocean.ficeberg.tavg-ol-hxy-sea.mon.GLB", + "ocean.friver.tavg-u-hxy-sea.mon.GLB", + "ocean.hfbasin.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpmadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpmdiff.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpsmadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfds.tavg-u-hxy-sea.mon.30S-90S", + "ocean.hfx.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfx.tavg-u-hxy-sea.day.GLB", + "ocean.hfx.tavg-u-hxy-sea.mon.GLB", + "ocean.hfy.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfy.tavg-u-hxy-sea.day.GLB", + "ocean.hfy.tavg-u-hxy-sea.mon.GLB", + "ocean.htovgyre.tavg-u-hyb-sea.mon.GLB", + "ocean.htovovrt.tavg-u-hyb-sea.mon.GLB", + "ocean.masscello.tavg-ol-hxy-sea.dec.GLB", + "ocean.masso.tavg-u-hm-sea.dec.GLB", + "ocean.masso.tavg-u-hm-sea.mon.GLB", + "ocean.mlotst.tavg-u-hxy-sea.day.GLB", + "ocean.mlotst.tavg-u-hxy-sea.mon.30S-90S", + "ocean.mlotst.tmax-u-hxy-sea.mon.GLB", + "ocean.mlotst.tmin-u-hxy-sea.mon.GLB", + "ocean.mpw.tavg-u-hxy-sea.mon.GLB", + "ocean.mpw.tpt-u-hxy-sea.3hr.GLB", + "ocean.mpwswell.tavg-u-hxy-sea.mon.GLB", + "ocean.mpwswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.mpwwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.mpwwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.msftbarot.tavg-u-hxy-sea.mon.GLB", + "ocean.msftm.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftm.tavg-rho-hyb-sea.mon.GLB", + "ocean.msfty.tavg-ol-ht-sea.mon.GLB", + "ocean.msfty.tavg-rho-ht-sea.mon.GLB", + "ocean.obvfsq.tavg-ol-hxy-sea.mon.GLB", + "ocean.pbo.tavg-u-hxy-sea.mon.GLB", + "ocean.pfscint.tavg-op4-hxy-sea.mon.GLB", + "ocean.phcint.tavg-op4-hxy-sea.mon.GLB", + "ocean.pso.tavg-u-hxy-sea.mon.GLB", + "ocean.scint.tavg-op4-hxy-sea.mon.GLB", + "ocean.sduo.tavg-u-hxy-sea.mon.GLB", + "ocean.sduo.tpt-u-hxy-sea.3hr.GLB", + "ocean.sdvo.tavg-u-hxy-sea.mon.GLB", + "ocean.sdvo.tpt-u-hxy-sea.3hr.GLB", + "ocean.sfx.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfx.tavg-u-hxy-sea.mon.GLB", + "ocean.sfy.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfy.tavg-u-hxy-sea.mon.GLB", + "ocean.sltbasin.tavg-u-hyb-sea.mon.GLB", + "ocean.sltovgyre.tavg-u-hyb-sea.mon.GLB", + "ocean.sltovovrt.tavg-u-hyb-sea.mon.GLB", + "ocean.so.tavg-ol-hm-sea.mon.GLB", + "ocean.so.tavg-ol-hxy-sea.dec.GLB", + "ocean.so.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.sob.tavg-u-hxy-sea.mon.GLB", + "ocean.sos.tavg-u-hm-sea.mon.30S-90S", + "ocean.sos.tavg-u-hm-sea.mon.GLB", + "ocean.swh.tavg-u-hxy-sea.mon.GLB", + "ocean.swh.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhmax.tmax-u-hxy-sea.mon.GLB", + "ocean.swhmax.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhswell.tavg-u-hxy-sea.mon.GLB", + "ocean.swhswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.swhwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.tauuo.tavg-u-hxy-sea.3hr.GLB", + "ocean.tauuo.tavg-u-hxy-sea.dec.GLB", + "ocean.tauvo.tavg-u-hxy-sea.3hr.GLB", + "ocean.tauvo.tavg-u-hxy-sea.dec.GLB", + "ocean.thetao.tavg-ol-hm-sea.mon.GLB", + "ocean.thetao.tavg-ol-hxy-sea.dec.GLB", + "ocean.thetao.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.thetao.tavg-op20bar-hxy-sea.day.GLB", + "ocean.thkcello.tavg-ol-hxy-sea.dec.GLB", + "ocean.tob.tavg-u-hxy-sea.mon.GLB", + "ocean.tos.tavg-u-hm-sea.mon.GLB", + "ocean.tos.tavg-u-hxy-sea.mon.30S-90S", + "ocean.tos.tpt-u-hxy-sea.3hr.GLB", + "ocean.tossq.tavg-u-hxy-sea.day.GLB", + "ocean.umo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.uo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.uos.tavg-u-hxy-sea.day.GLB", + "ocean.vmo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.vo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.volcello.tavg-ol-hxy-sea.dec.GLB", + "ocean.volcello.tavg-ol-hxy-sea.mon.GLB", + "ocean.volcello.tavg-ol-hxy-sea.yr.GLB", + "ocean.volcello.ti-ol-hxy-sea.fx.GLB", + "ocean.volo.tavg-u-hm-sea.dec.GLB", + "ocean.volo.tavg-u-hm-sea.mon.GLB", + "ocean.vos.tavg-u-hxy-sea.day.GLB", + "ocean.wdir.tavg-u-hxy-sea.mon.GLB", + "ocean.wdir.tpt-u-hxy-sea.3hr.GLB", + "ocean.wdirswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wdirswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wdirwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wdirwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.wfcorr.tavg-u-hxy-sea.mon.GLB", + "ocean.wfo.tavg-u-hxy-sea.mon.GLB", + "ocean.wmo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.wo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.wpdir.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdir.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpdirswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdirswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpdirwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdirwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpp.tavg-u-hxy-sea.mon.GLB", + "ocean.wpp.tpt-u-hxy-sea.3hr.GLB", + "ocean.wppswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wppswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wppwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wppwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.zos.tavg-u-hxy-sea.mon.30S-90S", + "ocean.zossq.tavg-u-hxy-sea.mon.GLB", + "ocean.zostoga.tavg-u-hm-sea.day.GLB", + "ocnBgchem.bacc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.calc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chl.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chl.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chlcalc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chldiat.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chldiat.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chldiaz.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chldiaz.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chlmisc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chlmisc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chlpico.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chlpico.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.detoc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dfe.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.dfe.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissic.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.dissic.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissoc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dmso.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.expc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.expcalc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.fgco2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fsfe.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fsn.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.graz.tavg-ol-hxy-sea.mon.30S-90S", + "ocnBgchem.icfriver.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intdic.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intdoc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intparag.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbfe.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbn.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbp.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbsi.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpcalcite.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpn2.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpoc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpp.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpp.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppcalc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppdiat.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppdiaz.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppmisc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppnitrate.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpppico.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.nh4.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.nh4.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.no3.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.no3.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.o2.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.ocfriver.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.ph.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.ph.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phyc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phyc.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.phyc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phycalc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phycalc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phydiat.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phydiat.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phydiaz.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phydiaz.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phymisc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phymisc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phypico.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phypico.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.po4.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.pp.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.si.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.spco2.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.spco2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.talk.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zmeso.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zmeso.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zmicro.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zmicro.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zmisc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zmisc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zooc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zooc.tavg-ol-hxy-sea.mon.GLB", + "seaIce.evspsbl.tavg-u-hxy-si.mon.GLB", + "seaIce.prra.tavg-u-hxy-si.mon.GLB", + "seaIce.prsn.tavg-u-hxy-si.mon.GLB", + "seaIce.rlds.tavg-u-hxy-si.mon.GLB", + "seaIce.rlus.tavg-u-hxy-si.mon.GLB", + "seaIce.rsds.tavg-u-hxy-si.day.GLB", + "seaIce.rsds.tavg-u-hxy-si.mon.GLB", + "seaIce.rsus.tavg-u-hxy-si.day.GLB", + "seaIce.rsus.tavg-u-hxy-si.mon.GLB", + "seaIce.sbl.tavg-u-hxy-si.mon.GLB", + "seaIce.siage.tavg-u-hxy-si.day.GLB", + "seaIce.siage.tavg-u-hxy-si.mon.30S-90S", + "seaIce.siarea.tavg-u-hm-u.mon.NH", + "seaIce.siarea.tavg-u-hm-u.mon.SH", + "seaIce.siconc.tavg-u-hxy-u.mon.30S-90S", + "seaIce.siconca.tavg-u-hxy-u.day.GLB", + "seaIce.siconca.tavg-u-hxy-u.mon.GLB", + "seaIce.sidconcdyn.tavg-u-hxy-sea.mon.GLB", + "seaIce.sidconcth.tavg-u-hxy-sea.mon.GLB", + "seaIce.sidmassdyn.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthsi.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthwat.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmeltbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmeltlat.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmelttop.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassth.tavg-u-hxy-si.mon.GLB", + "seaIce.sieqthick.tavg-u-hxy-si.mon.GLB", + "seaIce.siextent.tavg-u-hm-u.mon.NH", + "seaIce.siextent.tavg-u-hm-u.mon.SH", + "seaIce.siflcondbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflcondtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sifllattop.tavg-u-hxy-si.mon.GLB", + "seaIce.siflsensbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflsenstop.tavg-u-hxy-si.mon.GLB", + "seaIce.siflswdbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sihc.tavg-u-hxy-sea.mon.GLB", + "seaIce.sisndmassdyn.tavg-u-hxy-si.mon.GLB", + "seaIce.sisndmasssi.tavg-u-hxy-si.mon.GLB", + "seaIce.sisndmasswind.tavg-u-hxy-si.mon.GLB", + "seaIce.sisnhc.tavg-u-hxy-si.mon.GLB", + "seaIce.sisnmass.tavg-u-hm-u.mon.NH", + "seaIce.sisnmass.tavg-u-hm-u.mon.SH", + "seaIce.sispeed.tavg-u-hxy-si.day.GLB", + "seaIce.sispeed.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-si.day.GLB", + "seaIce.sithick.tavg-u-hxy-si.mon.30S-90S", + "seaIce.sitimefrac.tavg-u-hxy-sea.day.GLB", + "seaIce.sitimefrac.tavg-u-hxy-sea.mon.30S-90S", + "seaIce.siu.tavg-u-hxy-si.day.GLB", + "seaIce.siu.tavg-u-hxy-si.mon.30S-90S", + "seaIce.siv.tavg-u-hxy-si.day.GLB", + "seaIce.siv.tavg-u-hxy-si.mon.30S-90S", + "seaIce.sivol.tavg-u-hm-u.mon.NH", + "seaIce.sivol.tavg-u-hm-u.mon.SH", + "seaIce.snc.tavg-u-hxy-si.mon.GLB", + "seaIce.snd.tavg-u-hxy-sn.day.GLB", + "seaIce.snd.tavg-u-hxy-sn.mon.30S-90S", + "seaIce.snm.tavg-u-hxy-si.mon.GLB", + "seaIce.snw.tavg-u-hxy-si.mon.GLB", + "seaIce.ts.tavg-u-hxy-si.day.GLB", + "seaIce.ts.tavg-u-hxy-si.mon.30S-90S" + ], + "Medium": [ + "atmos.noaahi2m.tavg-h2m-hxy-u.day.GLB", + "atmos.noaahi2m.tmax-h2m-hxy-u.day.GLB", + "atmos.rls.tavg-u-hxy-u.day.GLB", + "atmos.rls.tavg-u-hxy-u.mon.GLB", + "atmos.rss.tavg-u-hxy-u.day.GLB", + "atmos.rss.tavg-u-hxy-u.mon.GLB", + "atmos.wbgt.tavg-h2m-hxy-u.day.GLB", + "atmos.wbgt.tmax-h2m-hxy-u.day.GLB", + "land.cLeaf.tavg-u-hxy-lnd.mon.GLB", + "land.cLitterCwd.tavg-u-hxy-lnd.mon.GLB", + "land.cLitterSubSurf.tavg-u-hxy-lnd.mon.GLB", + "land.cLitterSurf.tavg-u-hxy-lnd.mon.GLB", + "land.cOther.tavg-u-hxy-lnd.mon.GLB", + "land.cRoot.tavg-u-hxy-lnd.mon.GLB", + "land.cropFracC3.tavg-u-hxy-u.mon.GLB", + "land.cropFracC4.tavg-u-hxy-u.mon.GLB", + "land.cSoil.tavg-sl-hxy-lnd.mon.GLB", + "land.cSoilPools.tavg-u-hxy-lnd.mon.GLB", + "land.cStem.tavg-u-hxy-lnd.mon.GLB", + "land.cVeg.tavg-u-hxy-ng.mon.GLB", + "land.cVeg.tavg-u-hxy-shb.mon.GLB", + "land.cVeg.tavg-u-hxy-tree.mon.GLB", + "land.fLitterFire.tavg-u-hxy-lnd.mon.GLB", + "land.fNgas.tavg-u-hxy-lnd.mon.GLB", + "land.fNgasFire.tavg-u-hxy-lnd.mon.GLB", + "land.fNgasNonFire.tavg-u-hxy-lnd.mon.GLB", + "land.fNleach.tavg-u-hxy-lnd.mon.GLB", + "land.fVegFire.tavg-u-hxy-lnd.mon.GLB", + "land.fVegLitterMortality.tavg-u-hxy-lnd.mon.GLB", + "land.fVegLitterSenescence.tavg-u-hxy-lnd.mon.GLB", + "land.fVegSoilMortality.tavg-u-hxy-lnd.mon.GLB", + "land.fVegSoilSenescence.tavg-u-hxy-lnd.mon.GLB", + "land.gpp.tavg-u-hxy-ng.mon.GLB", + "land.gpp.tavg-u-hxy-shb.mon.GLB", + "land.gpp.tavg-u-hxy-tree.mon.GLB", + "land.grassFracC3.tavg-u-hxy-u.mon.GLB", + "land.grassFracC4.tavg-u-hxy-u.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.3hr.GLB", + "land.mrros.tavg-u-hxy-lnd.3hr.GLB", + "land.mrsol.tpt-d10cm-hxy-lnd.3hr.GLB", + "land.nLeaf.tavg-u-hxy-lnd.mon.GLB", + "land.nLitterCwd.tavg-u-hxy-lnd.mon.GLB", + "land.nLitterSubSurf.tavg-u-hxy-lnd.mon.GLB", + "land.nLitterSurf.tavg-u-hxy-lnd.mon.GLB", + "land.nMineralNH4.tavg-u-hxy-lnd.mon.GLB", + "land.nMineralNO3.tavg-u-hxy-lnd.mon.GLB", + "land.nOther.tavg-u-hxy-lnd.mon.GLB", + "land.npp.tavg-u-hxy-ng.mon.GLB", + "land.npp.tavg-u-hxy-shb.mon.GLB", + "land.npp.tavg-u-hxy-tree.mon.GLB", + "land.nppLeaf.tavg-u-hxy-lnd.mon.GLB", + "land.nppOther.tavg-u-hxy-lnd.mon.GLB", + "land.nppRoot.tavg-u-hxy-lnd.mon.GLB", + "land.nppStem.tavg-u-hxy-lnd.mon.GLB", + "land.nRoot.tavg-u-hxy-lnd.mon.GLB", + "land.nStem.tavg-u-hxy-lnd.mon.GLB", + "land.pastureFracC3.tavg-u-hxy-u.mon.GLB", + "land.pastureFracC4.tavg-u-hxy-u.mon.GLB", + "land.ra.tavg-u-hxy-ng.mon.GLB", + "land.ra.tavg-u-hxy-shb.mon.GLB", + "land.ra.tavg-u-hxy-tree.mon.GLB", + "land.raLeaf.tavg-u-hxy-lnd.mon.GLB", + "land.raOther.tavg-u-hxy-lnd.mon.GLB", + "land.raRoot.tavg-u-hxy-lnd.mon.GLB", + "land.raStem.tavg-u-hxy-lnd.mon.GLB", + "land.rh.tavg-u-hxy-ng.mon.GLB", + "land.rh.tavg-u-hxy-shb.mon.GLB", + "land.rh.tavg-u-hxy-tree.mon.GLB", + "land.rhLitter.tavg-u-hxy-lnd.mon.GLB", + "land.rhSoil.tavg-u-hxy-lnd.mon.GLB", + "land.treeFracBdlDcd.tavg-u-hxy-u.mon.GLB", + "land.treeFracBdlEvg.tavg-u-hxy-u.mon.GLB", + "land.treeFracNdlDcd.tavg-u-hxy-u.mon.GLB", + "land.treeFracNdlEvg.tavg-u-hxy-u.mon.GLB", + "land.vegHeight.tavg-u-hxy-ng.mon.GLB", + "land.vegHeight.tavg-u-hxy-shb.mon.GLB", + "land.vegHeight.tavg-u-hxy-tree.mon.GLB", + "land.wetlandCH4cons.tavg-u-hxy-lnd.mon.GLB", + "land.wetlandCH4prod.tavg-u-hxy-lnd.mon.GLB", + "land.wetlandFrac.tavg-u-hxy-u.mon.GLB", + "ocean.evspsbl.tavg-u-hxy-ifs.mon.GLB", + "ocean.ficeberg.tavg-u-hxy-sea.mon.GLB", + "ocean.hfacrossline.tavg-u-ht-sea.mon.GLB", + "ocean.hfevapds.tavg-u-hxy-ifs.mon.GLB", + "ocean.hfibthermds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfibthermds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfrainds.tavg-u-hxy-ifs.mon.GLB", + "ocean.hfrunoffds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfrunoffds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfsnthermds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfsnthermds.tavg-u-hxy-sea.mon.GLB", + "ocean.mfo.tavg-u-ht-sea.mon.GLB", + "ocean.sf6.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfacrossline.tavg-u-ht-sea.mon.GLB", + "ocean.sfdsi.tavg-u-hxy-sea.mon.GLB", + "ocean.sfriver.tavg-u-hxy-sea.mon.GLB", + "ocean.siflfwbot.tavg-u-hxy-sea.mon.GLB", + "ocean.so.tavg-ol-hxy-sea.day.GLB", + "ocean.tnkebto.tavg-u-hxy-sea.yr.GLB", + "ocean.vsf.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfcorr.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfevap.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfpr.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfriver.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfsit.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.arag.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.arag.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.calc.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.calc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chl.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.chlcalc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dmso.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.epn.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.epp.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.expc.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.expcalc.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.fgdms.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fric.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.froc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.graz.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.intppcalc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppdiat.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppdiaz.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppmisc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppnitrate.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intpppico.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.o2.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.ph.tavg-op20bar-hxy-sea.day.GLB", + "seaIce.sfdsi.tavg-u-hxy-si.mon.GLB", + "seaIce.siage.tavg-u-hxy-si.mon.GLB", + "seaIce.siarea.tavg-u-hm-u.day.NH", + "seaIce.siarea.tavg-u-hm-u.day.SH", + "seaIce.siareaacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.sicompstren.tavg-u-hxy-si.mon.GLB", + "seaIce.sidivvel.tpt-u-hxy-si.mon.GLB", + "seaIce.sidmasstranx.tavg-u-hxy-u.mon.GLB", + "seaIce.sidmasstrany.tavg-u-hxy-u.mon.GLB", + "seaIce.sidragbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidragtop.tavg-u-hxy-si.mon.GLB", + "seaIce.siextent.tavg-u-hm-u.day.NH", + "seaIce.siextent.tavg-u-hm-u.day.SH", + "seaIce.sifb.tavg-u-hxy-si.mon.GLB", + "seaIce.siflfwbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflfwdrain.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcecoriolx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcecorioly.tavg-u-hxy-si.mon.GLB", + "seaIce.siforceintstrx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforceintstry.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcetiltx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcetilty.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdconc.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdsnconc.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdsnthick.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdthick.tavg-u-hxy-si.mon.GLB", + "seaIce.simassacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.simpconc.tavg-u-hxy-si.mon.GLB", + "seaIce.simpeffconc.tavg-u-hxy-si.mon.GLB", + "seaIce.simprefrozen.tavg-u-hxy-simp.mon.GLB", + "seaIce.simpthick.tavg-u-hxy-simp.mon.GLB", + "seaIce.sirdgconc.tavg-u-hxy-si.mon.GLB", + "seaIce.sisali.tavg-u-hxy-si.mon.GLB", + "seaIce.sisaltmass.tavg-u-hxy-si.mon.GLB", + "seaIce.sishearvel.tpt-u-hxy-si.mon.GLB", + "seaIce.sisnmass.tavg-u-hm-u.day.NH", + "seaIce.sisnmass.tavg-u-hm-u.day.SH", + "seaIce.sisnmassacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.sistressave.tpt-u-hxy-si.mon.GLB", + "seaIce.sistressmax.tpt-u-hxy-si.mon.GLB", + "seaIce.sistrxdtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sistrxubot.tavg-u-hxy-si.mon.GLB", + "seaIce.sistrydtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sistryubot.tavg-u-hxy-si.mon.GLB", + "seaIce.sitempbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sitempsnic.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-sir.mon.GLB", + "seaIce.sivol.tavg-u-hm-u.day.NH", + "seaIce.sivol.tavg-u-hm-u.day.SH" + ], + "Low": [ + "aerosol.sfpm1.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.sfpm10.tavg-h2m-hxy-u.1hr.GLB", + "atmos.hurs.tavg-h2m-hxy-u.1hr.GLB", + "land.c13Land.tavg-u-hxy-lnd.mon.GLB", + "land.c13Litter.tavg-u-hxy-lnd.mon.GLB", + "land.c13Soil.tavg-u-hxy-lnd.mon.GLB", + "land.c13Veg.tavg-u-hxy-lnd.mon.GLB", + "land.c14Land.tavg-u-hxy-lnd.mon.GLB", + "land.c14Litter.tavg-u-hxy-lnd.mon.GLB", + "land.c14Soil.tavg-u-hxy-lnd.mon.GLB", + "land.c14Veg.tavg-u-hxy-lnd.mon.GLB", + "land.gppc13.tavg-u-hxy-lnd.mon.GLB", + "land.gppc14.tavg-u-hxy-lnd.mon.GLB", + "land.netAtmosLandC13Flux.tavg-u-hxy-lnd.mon.GLB", + "land.netAtmosLandC14Flux.tavg-u-hxy-lnd.mon.GLB", + "land.rac13.tavg-u-hxy-lnd.mon.GLB", + "land.rac14.tavg-u-hxy-lnd.mon.GLB", + "land.rhc13.tavg-u-hxy-lnd.mon.GLB", + "land.rhc14.tavg-u-hxy-lnd.mon.GLB", + "ocean.difmxybo.tavg-ol-hxy-sea.yr.GLB", + "ocean.difmxylo.tavg-ol-hxy-sea.yr.GLB", + "ocean.diftrblo.tavg-ol-hxy-sea.yr.GLB", + "ocean.diftrelo.tavg-ol-hxy-sea.yr.GLB", + "ocean.difvho.tavg-ol-hxy-sea.yr.GLB", + "ocean.difvso.tavg-ol-hxy-sea.yr.GLB", + "ocean.dispkexyfo.tavg-u-hxy-sea.yr.GLB", + "ocean.dxto.ti-u-hxy-u.fx.GLB", + "ocean.dxuo.ti-u-hxy-u.fx.GLB", + "ocean.dxvo.ti-u-hxy-u.fx.GLB", + "ocean.dyto.ti-u-hxy-u.fx.GLB", + "ocean.dyuo.ti-u-hxy-u.fx.GLB", + "ocean.dyvo.ti-u-hxy-u.fx.GLB", + "ocean.mlotstsq.tavg-u-hxy-sea.mon.GLB", + "ocean.msftmmpa.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftmmpa.tavg-rho-hyb-sea.mon.GLB", + "ocean.msftmsmpa.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftypa.tavg-ol-ht-sea.mon.GLB", + "ocean.msftypa.tavg-rho-ht-sea.mon.GLB", + "ocean.ocontempdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontempmint.tavg-u-hxy-sea.yr.GLB", + "ocean.ocontemppadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemppmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemppsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemprmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemptend.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottempdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottempmint.tavg-u-hxy-sea.yr.GLB", + "ocean.opottemppadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemppmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemppsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemprmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemptend.tavg-ol-hxy-sea.dec.GLB", + "ocean.osaltdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpsmadvect.tavg-ol-hxy-sea.mon.GLB", + "ocean.osaltpsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltrmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osalttend.tavg-ol-hxy-sea.yr.GLB", + "ocean.rsdoabsorb.tavg-ol-hxy-sea.yr.GLB", + "ocean.somint.tavg-u-hxy-sea.yr.GLB", + "ocean.sossq.tavg-u-hxy-sea.mon.GLB", + "ocean.thkcelluo.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcellvo.tavg-ol-hxy-sea.mon.GLB", + "ocean.tnpeo.tavg-u-hxy-sea.yr.GLB", + "ocean.tossq.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.dissi13c.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.dissi13c.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissi14c.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissi14cabio.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.dissi14cabio.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.fg13co2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fg14co2abio.tavg-u-hxy-sea.mon.GLB" + ] + }, + "piClim-control": { + "Core": [ + "atmos.areacella.ti-u-hxy-u.fx.GLB", + "atmos.cl.tavg-al-hxy-u.mon.GLB", + "atmos.cli.tavg-al-hxy-u.mon.GLB", + "atmos.clivi.tavg-u-hxy-u.mon.GLB", + "atmos.clt.tavg-u-hxy-u.day.GLB", + "atmos.clt.tavg-u-hxy-u.mon.GLB", + "atmos.clw.tavg-al-hxy-u.mon.GLB", + "atmos.clwvi.tavg-u-hxy-u.mon.GLB", + "atmos.evspsbl.tavg-u-hxy-u.mon.GLB", + "atmos.hfls.tavg-u-hxy-u.mon.GLB", + "atmos.hfss.tavg-u-hxy-u.mon.GLB", + "atmos.hur.tavg-p19-hxy-air.mon.GLB", + "atmos.hur.tavg-p19-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.6hr.GLB", + "atmos.hurs.tavg-h2m-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.mon.GLB", + "atmos.hus.tavg-p19-hxy-u.day.GLB", + "atmos.hus.tavg-p19-hxy-u.mon.GLB", + "atmos.huss.tavg-h2m-hxy-u.day.GLB", + "atmos.huss.tavg-h2m-hxy-u.mon.GLB", + "atmos.huss.tpt-h2m-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.1hr.GLB", + "atmos.pr.tavg-u-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.day.GLB", + "atmos.pr.tavg-u-hxy-u.mon.GLB", + "atmos.prc.tavg-u-hxy-u.mon.GLB", + "atmos.prsn.tavg-u-hxy-u.mon.GLB", + "atmos.prw.tavg-u-hxy-u.mon.GLB", + "atmos.ps.tavg-u-hxy-u.day.GLB", + "atmos.ps.tavg-u-hxy-u.mon.GLB", + "atmos.psl.tavg-u-hxy-u.day.GLB", + "atmos.psl.tavg-u-hxy-u.mon.GLB", + "atmos.rlds.tavg-u-hxy-u.mon.GLB", + "atmos.rldscs.tavg-u-hxy-u.mon.GLB", + "atmos.rlus.tavg-u-hxy-u.mon.GLB", + "atmos.rluscs.tavg-u-hxy-u.mon.GLB", + "atmos.rlut.tavg-u-hxy-u.mon.GLB", + "atmos.rlutcs.tavg-u-hxy-u.mon.GLB", + "atmos.rsds.tavg-u-hxy-u.day.GLB", + "atmos.rsds.tavg-u-hxy-u.mon.GLB", + "atmos.rsdscs.tavg-u-hxy-u.mon.GLB", + "atmos.rsdt.tavg-u-hxy-u.mon.GLB", + "atmos.rsus.tavg-u-hxy-u.mon.GLB", + "atmos.rsuscs.tavg-u-hxy-u.mon.GLB", + "atmos.rsut.tavg-u-hxy-u.mon.GLB", + "atmos.rsutcs.tavg-u-hxy-u.mon.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.day.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.mon.GLB", + "atmos.sftlf.ti-u-hxy-u.fx.GLB", + "atmos.ta.tavg-p19-hxy-air.day.GLB", + "atmos.ta.tavg-p19-hxy-air.mon.GLB", + "atmos.ta.tpt-p3-hxy-air.6hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.day.GLB", + "atmos.tas.tavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tmax-h2m-hxy-u.day.GLB", + "atmos.tas.tmaxavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tmin-h2m-hxy-u.day.GLB", + "atmos.tas.tminavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tpt-h2m-hxy-u.3hr.GLB", + "atmos.tauu.tavg-u-hxy-u.mon.GLB", + "atmos.tauv.tavg-u-hxy-u.mon.GLB", + "atmos.ts.tavg-u-hxy-u.mon.GLB", + "atmos.ua.tavg-p19-hxy-air.day.GLB", + "atmos.ua.tavg-p19-hxy-air.mon.GLB", + "atmos.ua.tpt-p3-hxy-air.6hr.GLB", + "atmos.uas.tavg-h10m-hxy-u.day.GLB", + "atmos.uas.tavg-h10m-hxy-u.mon.GLB", + "atmos.uas.tpt-h10m-hxy-u.3hr.GLB", + "atmos.va.tavg-p19-hxy-air.day.GLB", + "atmos.va.tavg-p19-hxy-air.mon.GLB", + "atmos.va.tpt-p3-hxy-air.6hr.GLB", + "atmos.vas.tavg-h10m-hxy-u.day.GLB", + "atmos.vas.tavg-h10m-hxy-u.mon.GLB", + "atmos.vas.tpt-h10m-hxy-u.3hr.GLB", + "atmos.wap.tavg-p19-hxy-air.mon.GLB", + "atmos.wap.tavg-p19-hxy-u.day.GLB", + "atmos.zg.tavg-p19-hxy-air.day.GLB", + "atmos.zg.tavg-p19-hxy-air.mon.GLB", + "land.evspsblsoi.tavg-u-hxy-lnd.mon.GLB", + "land.evspsblveg.tavg-u-hxy-lnd.mon.GLB", + "land.lai.tavg-u-hxy-lnd.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.mon.GLB", + "land.mrros.tavg-u-hxy-lnd.mon.GLB", + "land.mrso.tavg-u-hxy-lnd.mon.GLB", + "land.mrsofc.ti-u-hxy-lnd.fx.GLB", + "land.mrsol.tavg-d10cm-hxy-lnd.mon.GLB", + "land.orog.ti-u-hxy-u.fx.GLB", + "land.rootd.ti-u-hxy-lnd.fx.GLB", + "land.sftgif.ti-u-hxy-u.fx.GLB", + "land.slthick.ti-sl-hxy-lnd.fx.GLB", + "landIce.mrfso.tavg-u-hxy-lnd.mon.GLB", + "landIce.snc.tavg-u-hxy-lnd.mon.GLB", + "landIce.snw.tavg-u-hxy-lnd.mon.GLB", + "ocean.areacello.ti-u-hxy-u.fx.GLB", + "ocean.basin.ti-u-hxy-u.fx.GLB", + "ocean.bigthetao.tavg-ol-hxy-sea.mon.GLB", + "ocean.deptho.ti-u-hxy-sea.fx.GLB", + "ocean.hfds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfgeou.ti-u-hxy-sea.fx.GLB", + "ocean.masscello.tavg-ol-hxy-sea.mon.GLB", + "ocean.masscello.ti-ol-hxy-sea.fx.GLB", + "ocean.mlotst.tavg-u-hxy-sea.mon.GLB", + "ocean.sftof.ti-u-hxy-u.fx.GLB", + "ocean.so.tavg-ol-hxy-sea.mon.GLB", + "ocean.sos.tavg-u-hxy-sea.day.GLB", + "ocean.sos.tavg-u-hxy-sea.mon.GLB", + "ocean.tauuo.tavg-u-hxy-sea.mon.GLB", + "ocean.tauvo.tavg-u-hxy-sea.mon.GLB", + "ocean.thetao.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcello.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcello.ti-ol-hxy-sea.fx.GLB", + "ocean.tos.tavg-u-hxy-sea.day.GLB", + "ocean.tos.tavg-u-hxy-sea.mon.GLB", + "ocean.umo.tavg-ol-hxy-sea.mon.GLB", + "ocean.uo.tavg-ol-hxy-sea.mon.GLB", + "ocean.vmo.tavg-ol-hxy-sea.mon.GLB", + "ocean.vo.tavg-ol-hxy-sea.mon.GLB", + "ocean.wmo.tavg-ol-hxy-sea.mon.GLB", + "ocean.wo.tavg-ol-hxy-sea.mon.GLB", + "ocean.zos.tavg-u-hxy-sea.day.GLB", + "ocean.zos.tavg-u-hxy-sea.mon.GLB", + "ocean.zostoga.tavg-u-hm-sea.mon.GLB", + "seaIce.siconc.tavg-u-hxy-u.day.GLB", + "seaIce.siconc.tavg-u-hxy-u.mon.GLB", + "seaIce.simass.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-si.mon.GLB", + "seaIce.sitimefrac.tavg-u-hxy-sea.mon.GLB", + "seaIce.siu.tavg-u-hxy-si.mon.GLB", + "seaIce.siv.tavg-u-hxy-si.mon.GLB", + "seaIce.snd.tavg-u-hxy-sn.mon.GLB", + "seaIce.ts.tavg-u-hxy-si.mon.GLB" + ], + "High": [ + "aerosol.abs550aer.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550bc.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550dust.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550no3.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550oa.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550so4.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550ss.tavg-u-hxy-u.mon.GLB", + "aerosol.airmass.tavg-al-hxy-u.mon.GLB", + "aerosol.aoanh.tavg-al-hxy-u.mon.NH", + "aerosol.bry.tavg-p39-hy-air.mon.GLB", + "aerosol.bs550aer.tpt-al-hxy-u.6hr.GLB", + "aerosol.c2h6.tavg-al-hxy-u.mon.GLB", + "aerosol.c3h6.tavg-al-hxy-u.mon.GLB", + "aerosol.c3h8.tavg-al-hxy-u.mon.GLB", + "aerosol.ccldncl.tavg-u-hxy-ccl.mon.GLB", + "aerosol.ccn.tavg-u-hxy-ccl.mon.30S-90S", + "aerosol.ccn.tavg-u-hxy-ccl.mon.GLB", + "aerosol.ccn1.tavg-al-hxy-u.mon.30S-90S", + "aerosol.ccn1.tavg-al-hxy-u.mon.GLB", + "aerosol.ccnp02.tavg-al-hxy-u.mon.30S-90S", + "aerosol.ccnp02.tavg-al-hxy-u.mon.GLB", + "aerosol.cdnc.tavg-al-hxy-u.mon.30S-90S", + "aerosol.cdnc.tavg-al-hxy-u.mon.GLB", + "aerosol.ch3coch3.tavg-al-hxy-u.mon.GLB", + "aerosol.cheaqpso4.tavg-al-hxy-u.mon.GLB", + "aerosol.chegpso4.tavg-al-hxy-u.mon.GLB", + "aerosol.chepasoa.tavg-u-hxy-u.mon.GLB", + "aerosol.chepsoa.tavg-u-hxy-u.mon.GLB", + "aerosol.cly.tavg-p39-hy-air.mon.GLB", + "aerosol.co.tavg-al-hxy-u.mon.GLB", + "aerosol.co.tavg-h2m-hxy-u.day.GLB", + "aerosol.cod.tavg-u-hxy-u.day.GLB", + "aerosol.cod.tavg-u-hxy-u.mon.30S-90S", + "aerosol.cod.tavg-u-hxy-u.mon.GLB", + "aerosol.conccn.tavg-al-hxy-u.mon.GLB", + "aerosol.conccn.tpt-u-hs-u.3hr.GLB", + "aerosol.drybc.tavg-u-hxy-u.mon.GLB", + "aerosol.drydust.tavg-u-hxy-u.mon.GLB", + "aerosol.dryno3.tavg-u-hxy-u.mon.GLB", + "aerosol.dryo3.tavg-u-hxy-u.mon.GLB", + "aerosol.dryoa.tavg-u-hxy-u.mon.GLB", + "aerosol.dryso2.tavg-u-hxy-u.mon.GLB", + "aerosol.dryso4.tavg-u-hxy-u.mon.GLB", + "aerosol.dryss.tavg-u-hxy-u.mon.GLB", + "aerosol.ec550aer.tavg-al-hxy-u.mon.GLB", + "aerosol.ec550aer.tpt-u-hxy-u.6hr.GLB", + "aerosol.emiaco.tavg-u-hxy-u.mon.GLB", + "aerosol.emianox.tavg-u-hxy-u.mon.GLB", + "aerosol.emiaoa.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbbc.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbch4.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbco.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbdms.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbnh3.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbnox.tavg-u-hxy-u.mon.GLB", + "aerosol.emibboa.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbso2.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbvoc.tavg-u-hxy-u.mon.GLB", + "aerosol.emibc.tavg-u-hxy-u.mon.GLB", + "aerosol.emibvoc.tavg-u-hxy-u.mon.GLB", + "aerosol.emico.tavg-u-hxy-u.mon.GLB", + "aerosol.emidms.tavg-u-hxy-u.mon.30S-90S", + "aerosol.emidms.tavg-u-hxy-u.mon.GLB", + "aerosol.emidust.tavg-u-hxy-u.mon.GLB", + "aerosol.emiisop.tavg-u-hxy-u.mon.GLB", + "aerosol.emilnox.tavg-al-hxy-u.mon.GLB", + "aerosol.eminh3.tavg-u-hxy-u.mon.GLB", + "aerosol.eminox.tavg-u-hxy-u.mon.GLB", + "aerosol.emioa.tavg-u-hxy-u.mon.GLB", + "aerosol.emiso2.tavg-u-hxy-u.mon.GLB", + "aerosol.emiso4.tavg-u-hxy-u.mon.GLB", + "aerosol.emiss.tavg-u-hxy-u.mon.30S-90S", + "aerosol.emiss.tavg-u-hxy-u.mon.GLB", + "aerosol.emivoc.tavg-u-hxy-u.mon.GLB", + "aerosol.h2o.tavg-al-hxy-u.mon.GLB", + "aerosol.h2o.tavg-p39-hy-air.mon.GLB", + "aerosol.hcho.tavg-al-hxy-u.mon.GLB", + "aerosol.hcl.tavg-al-hxy-u.mon.GLB", + "aerosol.hcl.tavg-p39-hy-air.mon.GLB", + "aerosol.hno3.tavg-al-hxy-u.mon.GLB", + "aerosol.hno3.tavg-p39-hy-air.mon.GLB", + "aerosol.ho2.tavg-p39-hy-air.mon.GLB", + "aerosol.isop.tavg-al-hxy-u.mon.GLB", + "aerosol.jno2.tavg-al-hxy-u.mon.GLB", + "aerosol.lossch4.tavg-al-hxy-u.mon.GLB", + "aerosol.lossco.tavg-al-hxy-u.mon.GLB", + "aerosol.lossn2o.tavg-al-hxy-u.mon.GLB", + "aerosol.lwp.tavg-u-hxy-u.mon.GLB", + "aerosol.mmraerh2o.tavg-al-hxy-u.mon.GLB", + "aerosol.mmraerh2o.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmraerh2o.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrbc.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrbc.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrbc.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrbc.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrdust.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrdust.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrdust.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrdust.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrnh4.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrnh4.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrnh4.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrnh4.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrno3.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrno3.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrno3.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrno3.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmroa.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmroa.tavg-al-hxy-u.mon.GLB", + "aerosol.mmroa.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmroa.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrpm1.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrpm1.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrpm2p5.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrpm2p5.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrso4.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrso4.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrso4.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrso4.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrsoa.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrsoa.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrsoa.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrss.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrss.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrss.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrss.tpt-h2m-hs-u.3hr.GLB", + "aerosol.nh50.tavg-al-hxy-u.mon.GLB", + "aerosol.no.tavg-al-hxy-u.mon.GLB", + "aerosol.no2.tavg-al-hxy-u.mon.GLB", + "aerosol.no2.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.noy.tavg-p39-hy-air.mon.GLB", + "aerosol.o3.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.o3.tmax-h2m-hxy-u.day.GLB", + "aerosol.o3loss.tavg-al-hxy-u.mon.GLB", + "aerosol.o3prod.tavg-al-hxy-u.mon.GLB", + "aerosol.od443aer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550aer.tavg-u-hxy-u.day.GLB", + "aerosol.od550aer.tavg-u-hxy-u.mon.30S-90S", + "aerosol.od550aer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550aerh2o.tavg-u-hxy-u.mon.GLB", + "aerosol.od550bb.tavg-u-hxy-u.mon.GLB", + "aerosol.od550bc.tavg-u-hxy-u.mon.GLB", + "aerosol.od550csaer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550dust.tavg-u-hxy-u.mon.GLB", + "aerosol.od550lt1aer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550no3.tavg-u-hxy-u.mon.GLB", + "aerosol.od550oa.tavg-u-hxy-u.mon.GLB", + "aerosol.od550so4.tavg-u-hxy-u.mon.GLB", + "aerosol.od550soa.tavg-u-hxy-u.mon.GLB", + "aerosol.od550ss.tavg-u-hxy-u.mon.GLB", + "aerosol.od865aer.tavg-u-hxy-u.mon.GLB", + "aerosol.oh.tavg-al-hxy-u.mon.GLB", + "aerosol.oh.tavg-p39-hy-air.mon.GLB", + "aerosol.pan.tavg-al-hxy-u.mon.GLB", + "aerosol.photo1d.tavg-al-hxy-u.mon.GLB", + "aerosol.pod0.tsum-u-hxy-u.mon.GLB", + "aerosol.reffccwctop.tavg-u-hxy-cl.mon.GLB", + "aerosol.reffclwtop.tavg-u-hxy-cl.mon.30S-90S", + "aerosol.reffclwtop.tavg-u-hxy-cl.mon.GLB", + "aerosol.rluscsaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rlutaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rlutcsaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rsutaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rsutcsaf.tavg-u-hxy-u.mon.GLB", + "aerosol.sfpm1.tavg-h2m-hxy-u.day.GLB", + "aerosol.sfpm10.tavg-al-hxy-u.mon.30S-90S", + "aerosol.sfpm10.tavg-al-hxy-u.mon.GLB", + "aerosol.sfpm10.tavg-h2m-hxy-u.day.GLB", + "aerosol.sfpm25.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.sfpm25.tavg-h2m-hxy-u.day.GLB", + "aerosol.so2.tavg-al-hxy-u.mon.30S-90S", + "aerosol.so2.tavg-al-hxy-u.mon.GLB", + "aerosol.so2.tavg-h2m-hxy-u.day.GLB", + "aerosol.so2.tpt-h2m-hs-u.3hr.GLB", + "aerosol.tatp.tavg-u-hxy-u.mon.GLB", + "aerosol.toz.tavg-u-hxy-u.day.GLB", + "aerosol.toz.tavg-u-hxy-u.mon.GLB", + "aerosol.tropoz.tavg-u-hxy-u.mon.GLB", + "aerosol.ttop.tavg-u-hxy-cl.mon.GLB", + "aerosol.ua.tavg-10hPa-hxy-air.day.GLB", + "aerosol.vt100.tavg-100hPa-hy-air.mon.GLB", + "aerosol.wa.tavg-al-hxy-u.mon.GLB", + "aerosol.wetbc.tavg-u-hxy-u.mon.GLB", + "aerosol.wetdust.tavg-u-hxy-u.mon.GLB", + "aerosol.wetoa.tavg-u-hxy-u.mon.GLB", + "aerosol.wetso2.tavg-u-hxy-u.mon.GLB", + "aerosol.wetso4.tavg-u-hxy-u.mon.GLB", + "aerosol.wetss.tavg-u-hxy-u.mon.GLB", + "aerosol.zg.tavg-10hPa-hxy-air.day.GLB", + "atmos.albisccp.tavg-u-hxy-cl.day.GLB", + "atmos.albisccp.tavg-u-hxy-cl.mon.30S-90S", + "atmos.albisccp.tavg-u-hxy-cl.mon.GLB", + "atmos.bldep.tavg-u-hxy-u.mon.GLB", + "atmos.bldep.tmax-u-hxy-u.day.GLB", + "atmos.bldep.tmin-u-hxy-u.day.GLB", + "atmos.ccb.tavg-u-hxy-ccl.day.GLB", + "atmos.ccb.tavg-u-hxy-ccl.mon.GLB", + "atmos.cct.tavg-u-hxy-ccl.day.GLB", + "atmos.cct.tavg-u-hxy-ccl.mon.GLB", + "atmos.ci.tavg-u-hxy-u.mon.GLB", + "atmos.cl.tavg-al-hxy-u.day.GLB", + "atmos.cl.tavg-al-hxy-u.mon.30S-90S", + "atmos.clc.tavg-al-hxy-u.mon.30S-90S", + "atmos.clc.tavg-al-hxy-u.mon.GLB", + "atmos.clcalipso.tavg-220hPa-hxy-air.day.GLB", + "atmos.clcalipso.tavg-220hPa-hxy-air.mon.30S-90S", + "atmos.clcalipso.tavg-220hPa-hxy-air.mon.GLB", + "atmos.clcalipso.tavg-560hPa-hxy-air.day.GLB", + "atmos.clcalipso.tavg-560hPa-hxy-air.mon.30S-90S", + "atmos.clcalipso.tavg-560hPa-hxy-air.mon.GLB", + "atmos.clcalipso.tavg-840hPa-hxy-air.day.GLB", + "atmos.clcalipso.tavg-840hPa-hxy-air.mon.30S-90S", + "atmos.clcalipso.tavg-840hPa-hxy-air.mon.GLB", + "atmos.clcalipso.tavg-h40-hxy-air.mon.30S-90S", + "atmos.clcalipso.tavg-h40-hxy-air.mon.GLB", + "atmos.cldnci.tavg-u-hxy-cl.mon.GLB", + "atmos.cldncl.tavg-u-hxy-cl.mon.GLB", + "atmos.cldnvi.tavg-u-hxy-u.day.GLB", + "atmos.cldnvi.tavg-u-hxy-u.mon.GLB", + "atmos.cli.tavg-al-hxy-u.mon.30S-90S", + "atmos.clic.tavg-al-hxy-u.mon.30S-90S", + "atmos.clic.tavg-al-hxy-u.mon.GLB", + "atmos.clis.tavg-al-hxy-u.mon.30S-90S", + "atmos.clis.tavg-al-hxy-u.mon.GLB", + "atmos.clisccp.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clisccp.tavg-p7c-hxy-air.mon.GLB", + "atmos.clivi.tavg-u-hxy-u.day.GLB", + "atmos.clivi.tavg-u-hxy-u.mon.30S-90S", + "atmos.clivic.tavg-u-hxy-u.day.GLB", + "atmos.clivimodis.tavg-u-hxy-u.mon.30S-90S", + "atmos.clmisr.tavg-h16-hxy-air.mon.GLB", + "atmos.clmodis.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clmodis.tavg-p7c-hxy-air.mon.GLB", + "atmos.clmodisice.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clmodisice.tavg-p7c-hxy-air.mon.GLB", + "atmos.clmodisiceReff.tavg-u-hxy-u.mon.GLB", + "atmos.clmodisliquid.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clmodisliquid.tavg-p7c-hxy-air.mon.GLB", + "atmos.clmodisliquidReff.tavg-u-hxy-u.mon.GLB", + "atmos.cls.tavg-al-hxy-u.mon.30S-90S", + "atmos.cls.tavg-al-hxy-u.mon.GLB", + "atmos.clt.tavg-u-hxy-lnd.day.GLB", + "atmos.clt.tavg-u-hxy-u.mon.30S-90S", + "atmos.cltc.tavg-u-hxy-u.mon.GLB", + "atmos.cltcalipso.tavg-u-hxy-u.day.GLB", + "atmos.cltcalipso.tavg-u-hxy-u.mon.30S-90S", + "atmos.cltcalipso.tavg-u-hxy-u.mon.GLB", + "atmos.cltisccp.tavg-u-hxy-u.day.GLB", + "atmos.cltisccp.tavg-u-hxy-u.mon.30S-90S", + "atmos.cltisccp.tavg-u-hxy-u.mon.GLB", + "atmos.cltmodis.tavg-u-hxy-u.mon.30S-90S", + "atmos.clw.tavg-al-hxy-u.mon.30S-90S", + "atmos.clwc.tavg-al-hxy-u.mon.30S-90S", + "atmos.clwc.tavg-al-hxy-u.mon.GLB", + "atmos.clws.tavg-al-hxy-u.mon.30S-90S", + "atmos.clws.tavg-al-hxy-u.mon.GLB", + "atmos.clwvi.tavg-u-hxy-u.day.GLB", + "atmos.clwvi.tavg-u-hxy-u.mon.30S-90S", + "atmos.clwvic.tavg-u-hxy-u.day.GLB", + "atmos.clwvimodis.tavg-u-hxy-u.mon.30S-90S", + "atmos.co2.tavg-al-hxy-u.mon.GLB", + "atmos.co2.tavg-p19-hxy-air.mon.GLB", + "atmos.co2.tclm-p19-hxy-air.mon.GLB", + "atmos.co2.tclm-u-hm-u.mon.GLB", + "atmos.co2mass.tavg-u-hm-u.mon.GLB", + "atmos.dmc.tavg-alh-hxy-u.mon.30S-90S", + "atmos.dmc.tavg-alh-hxy-u.mon.GLB", + "atmos.edt.tavg-al-hxy-u.mon.30S-90S", + "atmos.edt.tavg-al-hxy-u.mon.GLB", + "atmos.evspsbl.tavg-u-hxy-lnd.day.GLB", + "atmos.evu.tavg-al-hxy-u.mon.30S-90S", + "atmos.evu.tavg-al-hxy-u.mon.GLB", + "atmos.fco2antt.tavg-u-hxy-u.mon.GLB", + "atmos.fco2nat.tavg-u-hxy-u.mon.GLB", + "atmos.hfls.tavg-u-hxy-u.day.GLB", + "atmos.hfls.tavg-u-hxy-u.mon.30S-90S", + "atmos.hfss.tavg-u-hxy-u.day.GLB", + "atmos.hfss.tavg-u-hxy-u.mon.30S-90S", + "atmos.hur.tavg-al-hxy-u.mon.30S-90S", + "atmos.hur.tavg-al-hxy-u.mon.GLB", + "atmos.hur.tavg-p19-hxy-air.mon.30S-90S", + "atmos.hurs.tavg-h2m-hxy-u.mon.30S-90S", + "atmos.hurs.tmax-h2m-hxy-u.day.GLB", + "atmos.hurs.tmin-h2m-hxy-u.day.GLB", + "atmos.hus.tavg-al-hxy-u.mon.30S-90S", + "atmos.hus.tavg-al-hxy-u.mon.GLB", + "atmos.hus.tavg-p19-hxy-u.mon.30S-90S", + "atmos.huss.tavg-h2m-hxy-u.mon.30S-90S", + "atmos.intuadse.tavg-u-hxy-u.day.GLB", + "atmos.intuadse.tavg-u-hxy-u.mon.GLB", + "atmos.intuaw.tavg-u-hxy-u.day.GLB", + "atmos.intuaw.tavg-u-hxy-u.mon.GLB", + "atmos.intvadse.tavg-u-hxy-u.day.GLB", + "atmos.intvadse.tavg-u-hxy-u.mon.GLB", + "atmos.intvaw.tavg-u-hxy-u.day.GLB", + "atmos.intvaw.tavg-u-hxy-u.mon.GLB", + "atmos.loadbc.tavg-u-hxy-u.day.GLB", + "atmos.loadoa.tavg-u-hxy-u.day.GLB", + "atmos.loadpoa.tavg-u-hxy-u.day.GLB", + "atmos.mc.tavg-alh-hxy-u.mon.GLB", + "atmos.mcd.tavg-alh-hxy-u.mon.30S-90S", + "atmos.mcd.tavg-alh-hxy-u.mon.GLB", + "atmos.mcu.tavg-alh-hxy-u.mon.30S-90S", + "atmos.mcu.tavg-alh-hxy-u.mon.GLB", + "atmos.pctisccp.tavg-u-hxy-cl.day.GLB", + "atmos.pctisccp.tavg-u-hxy-cl.mon.30S-90S", + "atmos.pctisccp.tavg-u-hxy-cl.mon.GLB", + "atmos.pfull.tavg-al-hxy-u.mon.GLB", + "atmos.pfull.tclm-al-hxy-u.mon.30S-90S", + "atmos.pfull.tclm-al-hxy-u.mon.GLB", + "atmos.phalf.tavg-alh-hxy-u.mon.GLB", + "atmos.phalf.tclm-alh-hxy-u.mon.GLB", + "atmos.pr.tavg-u-hxy-u.mon.30S-90S", + "atmos.pr.tmax-u-hxy-u.day.GLB", + "atmos.pr.tpt-u-hxy-u.6hr.GLB", + "atmos.prc.tavg-u-hxy-u.day.GLB", + "atmos.prc.tavg-u-hxy-u.mon.30S-90S", + "atmos.prra.tavg-u-hxy-u.mon.30S-90S", + "atmos.prra.tavg-u-hxy-u.mon.GLB", + "atmos.prsn.tavg-u-hxy-u.day.GLB", + "atmos.prsn.tavg-u-hxy-u.mon.30S-90S", + "atmos.prw.tavg-u-hxy-u.mon.30S-90S", + "atmos.ps.tavg-u-hxy-u.1hr.GLB", + "atmos.ps.tavg-u-hxy-u.mon.30S-90S", + "atmos.psl.tavg-u-hxy-u.mon.30S-90S", + "atmos.psl.tpt-u-hxy-u.1hr.GLB", + "atmos.ptp.tavg-u-hxy-u.mon.GLB", + "atmos.reffcclwtop.tavg-u-hxy-ccl.mon.GLB", + "atmos.reffclic.tavg-al-hxy-ccl.mon.30S-90S", + "atmos.reffclic.tavg-al-hxy-ccl.mon.GLB", + "atmos.reffclis.tavg-al-hxy-scl.mon.30S-90S", + "atmos.reffclis.tavg-al-hxy-scl.mon.GLB", + "atmos.reffclwc.tavg-al-hxy-ccl.mon.30S-90S", + "atmos.reffclwc.tavg-al-hxy-ccl.mon.GLB", + "atmos.reffclws.tavg-al-hxy-scl.mon.30S-90S", + "atmos.reffclws.tavg-al-hxy-scl.mon.GLB", + "atmos.reffsclwtop.tavg-u-hxy-scl.mon.GLB", + "atmos.rld.tavg-alh-hxy-u.mon.GLB", + "atmos.rld4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rldcs.tavg-alh-hxy-u.mon.GLB", + "atmos.rldcs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rlds.tavg-u-hxy-u.day.GLB", + "atmos.rlds.tavg-u-hxy-u.mon.30S-90S", + "atmos.rldscs.tavg-u-hxy-u.day.GLB", + "atmos.rldscs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rls.tavg-u-hxy-u.mon.GLB", + "atmos.rlu.tavg-alh-hxy-u.mon.GLB", + "atmos.rlu4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rlucs.tavg-alh-hxy-u.mon.GLB", + "atmos.rlucs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rlus.tavg-u-hxy-u.day.GLB", + "atmos.rlus.tavg-u-hxy-u.mon.30S-90S", + "atmos.rluscs.tavg-u-hxy-u.day.GLB", + "atmos.rlut.tavg-u-hxy-u.day.GLB", + "atmos.rlut.tavg-u-hxy-u.mon.30S-90S", + "atmos.rlut4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rlutcs.tavg-u-hxy-u.day.GLB", + "atmos.rlutcs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rlutcs4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rsd.tavg-alh-hxy-u.mon.GLB", + "atmos.rsd4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsdcs.tavg-alh-hxy-u.mon.GLB", + "atmos.rsdcs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsds.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsdscs.tavg-u-hxy-u.day.GLB", + "atmos.rsdscs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsdt.tavg-u-hxy-u.day.GLB", + "atmos.rsdt.tavg-u-hxy-u.mon.30S-90S", + "atmos.rss.tavg-u-hxy-u.mon.GLB", + "atmos.rsu.tavg-alh-hxy-u.mon.GLB", + "atmos.rsu4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsucs.tavg-alh-hxy-u.mon.GLB", + "atmos.rsucs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsus.tavg-u-hxy-u.day.GLB", + "atmos.rsus.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsuscs.tavg-u-hxy-u.day.GLB", + "atmos.rsuscs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsut.tavg-u-hxy-u.day.GLB", + "atmos.rsut.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsut4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rsutcs.tavg-u-hxy-u.day.GLB", + "atmos.rsutcs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsutcs4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rtmt.tavg-u-hxy-u.mon.GLB", + "atmos.rv850.tpt-850hPa-hxy-air.6hr.GLB", + "atmos.sci.tavg-u-hxy-u.mon.GLB", + "atmos.scldncl.tavg-u-hxy-scl.mon.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.mon.30S-90S", + "atmos.sfcWind.tmax-h10m-hxy-u.day.GLB", + "atmos.smc.tavg-alh-hxy-u.mon.GLB", + "atmos.ta.tavg-700hPa-hxy-air.day.GLB", + "atmos.ta.tavg-al-hxy-u.mon.30S-90S", + "atmos.ta.tavg-al-hxy-u.mon.GLB", + "atmos.ta.tavg-p19-hxy-air.mon.30S-90S", + "atmos.ta.tavg-p39-hy-air.mon.GLB", + "atmos.tas.tavg-h2m-hxy-u.1hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.mon.30S-90S", + "atmos.tas.tmaxavg-h2m-hxy-u.mon.30S-90S", + "atmos.tas.tminavg-h2m-hxy-u.mon.30S-90S", + "atmos.tnhus.tavg-al-hxy-u.mon.GLB", + "atmos.tnhusa.tavg-al-hxy-u.mon.GLB", + "atmos.tnhusc.tavg-al-hxy-u.mon.GLB", + "atmos.tnhusd.tavg-al-hxy-u.mon.GLB", + "atmos.tnhusmp.tavg-al-hxy-u.mon.GLB", + "atmos.tnhuspbl.tavg-al-hxy-u.mon.GLB", + "atmos.tnhusscp.tavg-al-hxy-u.mon.GLB", + "atmos.tnhusscpbl.tavg-al-hxy-u.mon.GLB", + "atmos.tnt.tavg-al-hxy-u.mon.GLB", + "atmos.tnta.tavg-al-hxy-u.mon.GLB", + "atmos.tntc.tavg-al-hxy-u.mon.GLB", + "atmos.tntd.tavg-al-hxy-u.mon.GLB", + "atmos.tntmp.tavg-al-hxy-u.mon.GLB", + "atmos.tntpbl.tavg-al-hxy-u.mon.GLB", + "atmos.tntr.tavg-al-hxy-u.mon.GLB", + "atmos.tntrl.tavg-al-hxy-u.mon.GLB", + "atmos.tntrlcs.tavg-al-hxy-u.mon.GLB", + "atmos.tntrs.tavg-al-hxy-u.mon.GLB", + "atmos.tntrscs.tavg-al-hxy-u.mon.GLB", + "atmos.tntscp.tavg-al-hxy-u.mon.GLB", + "atmos.tntscpbl.tavg-al-hxy-u.mon.GLB", + "atmos.ts.tavg-u-hxy-u.mon.30S-90S", + "atmos.ua.tavg-al-hxy-u.mon.GLB", + "atmos.ua.tavg-p19-hxy-air.mon.30S-90S", + "atmos.ua.tavg-p39-hy-air.mon.GLB", + "atmos.ua.tpt-h100m-hxy-u.1hr.GLB", + "atmos.uas.tavg-h10m-hxy-u.mon.30S-90S", + "atmos.uas.tpt-h10m-hxy-u.1hr.GLB", + "atmos.va.tavg-al-hxy-u.mon.GLB", + "atmos.va.tavg-p19-hxy-air.mon.30S-90S", + "atmos.va.tavg-p39-hy-air.mon.GLB", + "atmos.va.tpt-h100m-hxy-u.1hr.GLB", + "atmos.vas.tavg-h10m-hxy-u.mon.30S-90S", + "atmos.vas.tpt-h10m-hxy-u.1hr.GLB", + "atmos.wap.tavg-500hPa-hxy-air.day.GLB", + "atmos.wap.tavg-p19-hxy-air.mon.30S-90S", + "atmos.zg.tavg-1000hPa-hxy-air.day.GLB", + "atmos.zg.tavg-500hPa-hxy-air.day.GLB", + "atmos.zg.tavg-al-hxy-u.mon.GLB", + "atmos.zg.tavg-p19-hxy-air.mon.30S-90S", + "atmos.zg.tavg-p39-hy-air.mon.GLB", + "atmos.zg.tpt-500hPa-hxy-air.6hr.GLB", + "atmos.ztp.tavg-u-hxy-u.mon.GLB", + "atmosChem.c2h4.tavg-al-hxy-u.mon.GLB", + "atmosChem.c2h5oh.tavg-al-hxy-u.mon.GLB", + "atmosChem.c4h10.tavg-al-hxy-u.mon.GLB", + "atmosChem.cfc11.tavg-u-hm-u.mon.GLB", + "atmosChem.cfc113.tavg-u-hm-u.mon.GLB", + "atmosChem.cfc12.tavg-u-hm-u.mon.GLB", + "atmosChem.ch3oh.tavg-al-hxy-u.mon.GLB", + "atmosChem.ch4.tavg-al-hxy-u.mon.GLB", + "atmosChem.ch4.tavg-p19-hxy-air.mon.GLB", + "atmosChem.ch4.tavg-p39-hy-air.mon.GLB", + "atmosChem.ch4.tavg-u-hm-u.mon.GLB", + "atmosChem.ch4.tclm-p19-hxy-air.mon.GLB", + "atmosChem.ch4.tclm-u-hm-u.mon.GLB", + "atmosChem.ch4losssoil.tavg-u-hxy-u.mon.GLB", + "atmosChem.ch4ref.ti-al-hxy-u.fx.GLB", + "atmosChem.chegph2oo1d.tavg-al-hxy-u.mon.GLB", + "atmosChem.chepnh4.tavg-al-hxy-u.mon.GLB", + "atmosChem.chepno3.tavg-al-hxy-u.mon.GLB", + "atmosChem.dms.tavg-al-hxy-u.mon.30S-90S", + "atmosChem.dms.tavg-al-hxy-u.mon.GLB", + "atmosChem.do3chm.tavg-al-hxy-u.mon.GLB", + "atmosChem.dryh2.tavg-u-hxy-u.mon.GLB", + "atmosChem.dryhno3.tavg-u-hxy-u.mon.GLB", + "atmosChem.drynh3.tavg-u-hxy-u.mon.GLB", + "atmosChem.drynh4.tavg-u-hxy-u.mon.GLB", + "atmosChem.drynoy.tavg-u-hxy-u.mon.GLB", + "atmosChem.e90inst.tpt-al-hxy-u.mon.GLB", + "atmosChem.emiach4.tavg-u-hxy-u.mon.GLB", + "atmosChem.emiavnox.tavg-al-hxy-u.mon.GLB", + "atmosChem.emic2h4.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic2h5oh.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic2h6.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic3h6.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic3h8.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic4h10.tavg-u-hxy-u.mon.GLB", + "atmosChem.emich3oh.tavg-u-hxy-u.mon.GLB", + "atmosChem.emich4.tavg-u-hxy-u.mon.GLB", + "atmosChem.emih2.tavg-u-hxy-u.mon.GLB", + "atmosChem.emilkch4.tavg-u-hxy-u.mon.GLB", + "atmosChem.h2.tavg-al-hxy-u.mon.GLB", + "atmosChem.h2loss.tavg-al-hxy-u.mon.GLB", + "atmosChem.h2prod.tavg-al-hxy-u.mon.GLB", + "atmosChem.hcfc22.tavg-u-hm-u.mon.GLB", + "atmosChem.meanage.tavg-al-hxy-u.mon.GLB", + "atmosChem.meanage.tavg-p39-hy-air.mon.GLB", + "atmosChem.n2o.tavg-al-hxy-u.mon.GLB", + "atmosChem.n2o.tavg-p19-hxy-air.mon.GLB", + "atmosChem.n2o.tavg-p39-hy-air.mon.GLB", + "atmosChem.n2o.tavg-u-hm-u.mon.GLB", + "atmosChem.n2o.tclm-p19-hxy-air.mon.GLB", + "atmosChem.n2o.tclm-u-hm-u.mon.GLB", + "atmosChem.o3.tavg-al-hxy-u.mon.GLB", + "atmosChem.o3.tavg-p19-hxy-air.mon.GLB", + "atmosChem.o3.tavg-p39-hy-air.mon.GLB", + "atmosChem.o3.tclm-p19-hxy-air.mon.GLB", + "atmosChem.o3.tpt-al-hxy-u.mon.GLB", + "atmosChem.o3ref.tclm-al-hxy-u.fx.GLB", + "atmosChem.o3ref.ti-al-hxy-u.fx.GLB", + "atmosChem.o3ste.tavg-al-hxy-u.mon.GLB", + "atmosChem.rlutch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rlutcsch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rlutcso3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rluto3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsutch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsutcsch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsutcso3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsuto3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.stratch4loss.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropch4loss.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropch4lossoh.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropdo3chm.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropo3ste.tavg-al-hxy-u.mon.GLB", + "atmosChem.wethno3.tavg-al-hxy-u.mon.GLB", + "atmosChem.wetnh3.tavg-u-hxy-u.mon.GLB", + "atmosChem.wetnh4.tavg-u-hxy-u.mon.GLB", + "atmosChem.wetno3.tavg-al-hxy-u.mon.GLB", + "atmosChem.wetnoy.tavg-u-hxy-u.mon.GLB", + "land.baresoilFrac.tavg-u-hxy-u.mon.GLB", + "land.burntFractionAll.tavg-u-hxy-u.mon.GLB", + "land.cLand.tavg-u-hxy-lnd.mon.GLB", + "land.cLeaf.tavg-u-hxy-lnd.mon.GLB", + "land.cLitter.tavg-u-hxy-lnd.mon.GLB", + "land.cProduct.tavg-u-hxy-lnd.mon.GLB", + "land.cRoot.tavg-u-hxy-lnd.mon.GLB", + "land.cropFrac.tavg-u-hxy-u.mon.GLB", + "land.cSoil.tavg-d100cm-hxy-lnd.mon.GLB", + "land.cSoil.tavg-u-hxy-lnd.mon.GLB", + "land.cStem.tavg-u-hxy-lnd.mon.GLB", + "land.cVeg.tavg-u-hxy-lnd.mon.GLB", + "land.evspsblpot.tavg-u-hxy-lnd.day.GLB", + "land.fBNF.tavg-u-hxy-lnd.mon.GLB", + "land.fFire.tavg-u-hxy-lnd.mon.GLB", + "land.fFireAll.tavg-u-hxy-lnd.mon.GLB", + "land.fFireNat.tavg-u-hxy-lnd.mon.GLB", + "land.fLuc.tavg-u-hxy-lnd.mon.GLB", + "land.fNgas.tavg-u-hxy-lnd.mon.GLB", + "land.fNgasFire.tavg-u-hxy-lnd.mon.GLB", + "land.fNLandToOcean.tavg-u-hxy-lnd.mon.GLB", + "land.fNleach.tavg-u-hxy-lnd.mon.GLB", + "land.fNLitterSoil.tavg-u-hxy-lnd.mon.GLB", + "land.fNloss.tavg-u-hxy-lnd.mon.GLB", + "land.fNup.tavg-u-hxy-lnd.mon.GLB", + "land.fNVegSoil.tavg-u-hxy-lnd.mon.GLB", + "land.gpp.tavg-u-hxy-lnd.mon.GLB", + "land.grassFrac.tavg-u-hxy-u.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.day.GLB", + "land.mrros.tavg-u-hxy-lnd.day.GLB", + "land.mrso.tavg-u-hxy-lnd.day.GLB", + "land.mrsol.tavg-d10cm-hxy-lnd.day.GLB", + "land.nbp.tavg-u-hxy-lnd.mon.GLB", + "land.nep.tavg-u-hxy-lnd.mon.GLB", + "land.nLand.tavg-u-hxy-lnd.mon.GLB", + "land.nLitter.tavg-u-hxy-lnd.mon.GLB", + "land.nMineral.tavg-u-hxy-lnd.mon.GLB", + "land.npp.tavg-u-hxy-lnd.mon.GLB", + "land.nProduct.tavg-u-hxy-lnd.mon.GLB", + "land.nSoil.tavg-u-hxy-lnd.mon.GLB", + "land.nVeg.tavg-u-hxy-lnd.mon.GLB", + "land.ra.tavg-u-hxy-lnd.mon.GLB", + "land.rh.tavg-u-hxy-lnd.mon.GLB", + "land.shrubFrac.tavg-u-hxy-u.mon.GLB", + "land.tran.tavg-u-hxy-lnd.mon.GLB", + "land.treeFrac.tavg-u-hxy-u.mon.GLB", + "land.tsl.tavg-sl-hxy-lnd.mon.GLB", + "land.tslsi.tavg-u-hxy-u.day.GLB", + "land.vegFrac.tavg-u-hxy-u.mon.GLB", + "land.vegHeight.tavg-u-hxy-tree.mon.GLB", + "land.vegHeight.tavg-u-hxy-veg.mon.GLB", + "land.wetlandCH4.tavg-u-hxy-lnd.mon.GLB", + "landIce.pflw.tavg-u-hxy-lnd.mon.GLB", + "landIce.sbl.tavg-u-hxy-u.mon.GLB", + "landIce.snc.tavg-u-hxy-lnd.day.GLB", + "landIce.snd.tavg-u-hxy-lnd.mon.GLB", + "landIce.snm.tavg-u-hxy-lnd.mon.GLB", + "landIce.snw.tavg-u-hxy-lnd.day.GLB", + "landIce.sootsn.tavg-u-hxy-lnd.mon.GLB", + "landIce.tpf.tavg-u-hxy-lnd.mon.GLB", + "ocean.absscint.tavg-op4-hxy-sea.mon.GLB", + "ocean.agessc.tavg-ol-hxy-sea.mon.GLB", + "ocean.bigthetao.tavg-ol-hm-sea.mon.GLB", + "ocean.bigthetao.tavg-ol-hxy-sea.dec.GLB", + "ocean.bigthetao.tavg-op20bar-hxy-sea.day.GLB", + "ocean.chcint.tavg-op4-hxy-sea.mon.GLB", + "ocean.hfbasin.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpmadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpmdiff.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpsmadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfds.tavg-u-hxy-sea.mon.30S-90S", + "ocean.hfx.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfx.tavg-u-hxy-sea.day.GLB", + "ocean.hfx.tavg-u-hxy-sea.mon.GLB", + "ocean.hfy.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfy.tavg-u-hxy-sea.day.GLB", + "ocean.hfy.tavg-u-hxy-sea.mon.GLB", + "ocean.htovgyre.tavg-u-hyb-sea.mon.GLB", + "ocean.htovovrt.tavg-u-hyb-sea.mon.GLB", + "ocean.masscello.tavg-ol-hxy-sea.dec.GLB", + "ocean.masso.tavg-u-hm-sea.dec.GLB", + "ocean.masso.tavg-u-hm-sea.mon.GLB", + "ocean.mlotst.tavg-u-hxy-sea.day.GLB", + "ocean.mlotst.tavg-u-hxy-sea.mon.30S-90S", + "ocean.mlotst.tmax-u-hxy-sea.mon.GLB", + "ocean.mlotst.tmin-u-hxy-sea.mon.GLB", + "ocean.mpw.tavg-u-hxy-sea.mon.GLB", + "ocean.mpw.tpt-u-hxy-sea.3hr.GLB", + "ocean.mpwswell.tavg-u-hxy-sea.mon.GLB", + "ocean.mpwswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.mpwwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.mpwwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.msftbarot.tavg-u-hxy-sea.mon.GLB", + "ocean.msftm.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftm.tavg-rho-hyb-sea.mon.GLB", + "ocean.msfty.tavg-ol-ht-sea.mon.GLB", + "ocean.msfty.tavg-rho-ht-sea.mon.GLB", + "ocean.obvfsq.tavg-ol-hxy-sea.mon.GLB", + "ocean.pbo.tavg-u-hxy-sea.mon.GLB", + "ocean.pfscint.tavg-op4-hxy-sea.mon.GLB", + "ocean.phcint.tavg-op4-hxy-sea.mon.GLB", + "ocean.pso.tavg-u-hxy-sea.mon.GLB", + "ocean.scint.tavg-op4-hxy-sea.mon.GLB", + "ocean.sduo.tavg-u-hxy-sea.mon.GLB", + "ocean.sduo.tpt-u-hxy-sea.3hr.GLB", + "ocean.sdvo.tavg-u-hxy-sea.mon.GLB", + "ocean.sdvo.tpt-u-hxy-sea.3hr.GLB", + "ocean.sfx.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfx.tavg-u-hxy-sea.mon.GLB", + "ocean.sfy.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfy.tavg-u-hxy-sea.mon.GLB", + "ocean.sltbasin.tavg-u-hyb-sea.mon.GLB", + "ocean.sltovgyre.tavg-u-hyb-sea.mon.GLB", + "ocean.sltovovrt.tavg-u-hyb-sea.mon.GLB", + "ocean.so.tavg-ol-hm-sea.mon.GLB", + "ocean.so.tavg-ol-hxy-sea.dec.GLB", + "ocean.so.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.sob.tavg-u-hxy-sea.mon.GLB", + "ocean.sos.tavg-u-hm-sea.mon.30S-90S", + "ocean.sos.tavg-u-hm-sea.mon.GLB", + "ocean.swh.tavg-u-hxy-sea.mon.GLB", + "ocean.swh.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhmax.tmax-u-hxy-sea.mon.GLB", + "ocean.swhmax.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhswell.tavg-u-hxy-sea.mon.GLB", + "ocean.swhswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.swhwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.tauuo.tavg-u-hxy-sea.dec.GLB", + "ocean.tauvo.tavg-u-hxy-sea.dec.GLB", + "ocean.thetao.tavg-ol-hm-sea.mon.GLB", + "ocean.thetao.tavg-ol-hxy-sea.dec.GLB", + "ocean.thetao.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.thetao.tavg-op20bar-hxy-sea.day.GLB", + "ocean.thkcello.tavg-ol-hxy-sea.dec.GLB", + "ocean.tob.tavg-u-hxy-sea.mon.GLB", + "ocean.tos.tavg-u-hm-sea.mon.GLB", + "ocean.tos.tavg-u-hxy-sea.mon.30S-90S", + "ocean.tos.tpt-u-hxy-sea.3hr.GLB", + "ocean.tossq.tavg-u-hxy-sea.day.GLB", + "ocean.umo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.uo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.uos.tavg-u-hxy-sea.day.GLB", + "ocean.vmo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.vo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.volcello.tavg-ol-hxy-sea.dec.GLB", + "ocean.volcello.tavg-ol-hxy-sea.mon.GLB", + "ocean.volcello.tavg-ol-hxy-sea.yr.GLB", + "ocean.volcello.ti-ol-hxy-sea.fx.GLB", + "ocean.volo.tavg-u-hm-sea.dec.GLB", + "ocean.volo.tavg-u-hm-sea.mon.GLB", + "ocean.vos.tavg-u-hxy-sea.day.GLB", + "ocean.wdir.tavg-u-hxy-sea.mon.GLB", + "ocean.wdir.tpt-u-hxy-sea.3hr.GLB", + "ocean.wdirswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wdirswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wdirwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wdirwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.wfcorr.tavg-u-hxy-sea.mon.GLB", + "ocean.wfo.tavg-u-hxy-sea.mon.GLB", + "ocean.wmo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.wo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.wpdir.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdir.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpdirswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdirswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpdirwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdirwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpp.tavg-u-hxy-sea.mon.GLB", + "ocean.wpp.tpt-u-hxy-sea.3hr.GLB", + "ocean.wppswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wppswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wppwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wppwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.zos.tavg-u-hxy-sea.mon.30S-90S", + "ocean.zossq.tavg-u-hxy-sea.mon.GLB", + "ocean.zostoga.tavg-u-hm-sea.day.GLB", + "ocnBgchem.bacc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.calc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chl.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chl.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chlcalc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chldiat.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chldiaz.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chlmisc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chlpico.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.dfe.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.dfe.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.dissic.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.dissic.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dmso.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.fgco2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.graz.tavg-ol-hxy-sea.mon.30S-90S", + "ocnBgchem.intdic.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intdoc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intparag.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbfe.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbn.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbp.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbsi.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpcalcite.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpn2.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpoc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpp.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppcalc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppdiat.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppdiaz.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppmisc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppnitrate.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpppico.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.nh4.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.no3.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.no3.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.ph.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phyc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phycalc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phydiat.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phydiaz.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phymisc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phypico.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.po4.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.pp.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.spco2.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.spco2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.zmeso.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zmicro.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zmisc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zooc.tavg-d0m-hxy-sea.mon.30S-90S", + "seaIce.evspsbl.tavg-u-hxy-si.mon.GLB", + "seaIce.prra.tavg-u-hxy-si.mon.GLB", + "seaIce.prsn.tavg-u-hxy-si.mon.GLB", + "seaIce.rlds.tavg-u-hxy-si.day.GLB", + "seaIce.rlds.tavg-u-hxy-si.mon.GLB", + "seaIce.rlus.tavg-u-hxy-si.day.GLB", + "seaIce.rlus.tavg-u-hxy-si.mon.GLB", + "seaIce.rsds.tavg-u-hxy-si.day.GLB", + "seaIce.rsds.tavg-u-hxy-si.mon.GLB", + "seaIce.rsus.tavg-u-hxy-si.day.GLB", + "seaIce.rsus.tavg-u-hxy-si.mon.GLB", + "seaIce.sbl.tavg-u-hxy-si.mon.GLB", + "seaIce.siage.tavg-u-hxy-si.day.GLB", + "seaIce.siage.tavg-u-hxy-si.mon.30S-90S", + "seaIce.siarea.tavg-u-hm-u.mon.NH", + "seaIce.siarea.tavg-u-hm-u.mon.SH", + "seaIce.siconc.tavg-u-hxy-u.mon.30S-90S", + "seaIce.siconca.tavg-u-hxy-u.day.GLB", + "seaIce.siconca.tavg-u-hxy-u.mon.GLB", + "seaIce.sidconcdyn.tavg-u-hxy-sea.mon.GLB", + "seaIce.sidconcth.tavg-u-hxy-sea.mon.GLB", + "seaIce.sidmassdyn.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthsi.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthwat.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmeltbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmeltlat.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmelttop.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassth.tavg-u-hxy-si.mon.GLB", + "seaIce.sieqthick.tavg-u-hxy-si.mon.GLB", + "seaIce.siextent.tavg-u-hm-u.mon.NH", + "seaIce.siextent.tavg-u-hm-u.mon.SH", + "seaIce.siflcondbot.tavg-u-hxy-si.day.GLB", + "seaIce.siflcondbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflcondtop.tavg-u-hxy-si.day.GLB", + "seaIce.siflcondtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sifllattop.tavg-u-hxy-si.day.GLB", + "seaIce.sifllattop.tavg-u-hxy-si.mon.GLB", + "seaIce.siflsensbot.tavg-u-hxy-si.day.GLB", + "seaIce.siflsensbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflsenstop.tavg-u-hxy-si.day.GLB", + "seaIce.siflsenstop.tavg-u-hxy-si.mon.GLB", + "seaIce.siflswdbot.tavg-u-hxy-si.day.GLB", + "seaIce.siflswdbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sihc.tavg-u-hxy-sea.day.GLB", + "seaIce.sihc.tavg-u-hxy-sea.mon.GLB", + "seaIce.sisndmassdyn.tavg-u-hxy-si.mon.GLB", + "seaIce.sisndmasssi.tavg-u-hxy-si.mon.GLB", + "seaIce.sisndmasswind.tavg-u-hxy-si.mon.GLB", + "seaIce.sisnhc.tavg-u-hxy-si.day.GLB", + "seaIce.sisnhc.tavg-u-hxy-si.mon.GLB", + "seaIce.sisnmass.tavg-u-hm-u.mon.NH", + "seaIce.sisnmass.tavg-u-hm-u.mon.SH", + "seaIce.sispeed.tavg-u-hxy-si.day.GLB", + "seaIce.sispeed.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-si.day.GLB", + "seaIce.sithick.tavg-u-hxy-si.mon.30S-90S", + "seaIce.sitimefrac.tavg-u-hxy-sea.day.GLB", + "seaIce.sitimefrac.tavg-u-hxy-sea.mon.30S-90S", + "seaIce.siu.tavg-u-hxy-si.day.GLB", + "seaIce.siu.tavg-u-hxy-si.mon.30S-90S", + "seaIce.siv.tavg-u-hxy-si.day.GLB", + "seaIce.siv.tavg-u-hxy-si.mon.30S-90S", + "seaIce.sivol.tavg-u-hm-u.mon.NH", + "seaIce.sivol.tavg-u-hm-u.mon.SH", + "seaIce.snc.tavg-u-hxy-si.mon.GLB", + "seaIce.snd.tavg-u-hxy-sn.day.GLB", + "seaIce.snd.tavg-u-hxy-sn.mon.30S-90S", + "seaIce.snm.tavg-u-hxy-si.mon.GLB", + "seaIce.snw.tavg-u-hxy-si.mon.GLB", + "seaIce.ts.tavg-u-hxy-si.day.GLB", + "seaIce.ts.tavg-u-hxy-si.mon.30S-90S" + ], + "Medium": [ + "atmos.hurs.tpt-h2m-hxy-u.3hr.GLB", + "atmos.noaahi2m.tavg-h2m-hxy-u.day.GLB", + "atmos.noaahi2m.tmax-h2m-hxy-u.day.GLB", + "atmos.prsn.tavg-u-hxy-u.3hr.GLB", + "atmos.ps.tpt-u-hxy-u.3hr.GLB", + "atmos.rlds.tavg-u-hxy-u.3hr.GLB", + "atmos.rsds.tavg-u-hxy-u.3hr.GLB", + "atmos.rsdsdiff.tavg-u-hxy-u.day.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.3hr.GLB", + "atmos.ua.tavg-h100m-hxy-u.3hr.GLB", + "atmos.va.tavg-h100m-hxy-u.3hr.GLB", + "atmos.wbgt.tavg-h2m-hxy-u.day.GLB", + "atmos.wbgt.tmax-h2m-hxy-u.day.GLB", + "land.irrDem.tavg-u-hxy-u.day.GLB", + "land.irrGw.tavg-u-hxy-u.day.GLB", + "land.irrLut.tavg-u-hxy-u.day.GLB", + "land.irrSurf.tavg-u-hxy-u.day.GLB", + "land.rzwc.tavg-u-hxy-lnd.day.GLB", + "ocean.evspsbl.tavg-u-hxy-ifs.mon.GLB", + "ocean.ficeberg.tavg-ol-hxy-sea.mon.GLB", + "ocean.ficeberg.tavg-u-hxy-sea.mon.GLB", + "ocean.friver.tavg-u-hxy-sea.mon.GLB", + "ocean.hfacrossline.tavg-u-ht-sea.mon.GLB", + "ocean.hfevapds.tavg-u-hxy-ifs.mon.GLB", + "ocean.hfibthermds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfibthermds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfrainds.tavg-u-hxy-ifs.mon.GLB", + "ocean.hfrunoffds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfrunoffds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfsnthermds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfsnthermds.tavg-u-hxy-sea.mon.GLB", + "ocean.mfo.tavg-u-ht-sea.mon.GLB", + "ocean.sfacrossline.tavg-u-ht-sea.mon.GLB", + "ocean.sfdsi.tavg-u-hxy-sea.mon.GLB", + "ocean.sfriver.tavg-u-hxy-sea.mon.GLB", + "ocean.siflfwbot.tavg-u-hxy-sea.mon.GLB", + "ocean.so.tavg-ol-hxy-sea.day.GLB", + "ocean.tnkebto.tavg-u-hxy-sea.yr.GLB", + "ocean.vsf.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfcorr.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfevap.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfpr.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfriver.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfsit.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.arag.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.arag.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.calc.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.calc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chl.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.o2.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.ph.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.talk.tavg-ol-hxy-sea.mon.GLB", + "seaIce.sfdsi.tavg-u-hxy-si.mon.GLB", + "seaIce.siage.tavg-u-hxy-si.mon.GLB", + "seaIce.siarea.tavg-u-hm-u.day.NH", + "seaIce.siarea.tavg-u-hm-u.day.SH", + "seaIce.siareaacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.sicompstren.tavg-u-hxy-si.mon.GLB", + "seaIce.sidivvel.tpt-u-hxy-si.mon.GLB", + "seaIce.sidmasstranx.tavg-u-hxy-u.mon.GLB", + "seaIce.sidmasstrany.tavg-u-hxy-u.mon.GLB", + "seaIce.sidragbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidragtop.tavg-u-hxy-si.mon.GLB", + "seaIce.siextent.tavg-u-hm-u.day.NH", + "seaIce.siextent.tavg-u-hm-u.day.SH", + "seaIce.sifb.tavg-u-hxy-si.day.GLB", + "seaIce.sifb.tavg-u-hxy-si.mon.GLB", + "seaIce.siflfwbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflfwdrain.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcecoriolx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcecorioly.tavg-u-hxy-si.mon.GLB", + "seaIce.siforceintstrx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforceintstry.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcetiltx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcetilty.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdconc.tavg-u-hxy-si.day.GLB", + "seaIce.siitdconc.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdsnconc.tavg-u-hxy-si.day.GLB", + "seaIce.siitdsnconc.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdsnthick.tavg-u-hxy-si.day.GLB", + "seaIce.siitdsnthick.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdthick.tavg-u-hxy-si.day.GLB", + "seaIce.siitdthick.tavg-u-hxy-si.mon.GLB", + "seaIce.simassacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.simpconc.tavg-u-hxy-si.day.GLB", + "seaIce.simpconc.tavg-u-hxy-si.mon.GLB", + "seaIce.simpeffconc.tavg-u-hxy-si.day.GLB", + "seaIce.simpeffconc.tavg-u-hxy-si.mon.GLB", + "seaIce.simprefrozen.tavg-u-hxy-simp.day.GLB", + "seaIce.simprefrozen.tavg-u-hxy-simp.mon.GLB", + "seaIce.simpthick.tavg-u-hxy-si.day.GLB", + "seaIce.simpthick.tavg-u-hxy-simp.mon.GLB", + "seaIce.sirdgconc.tavg-u-hxy-si.day.GLB", + "seaIce.sirdgconc.tavg-u-hxy-si.mon.GLB", + "seaIce.sisali.tavg-u-hxy-si.day.GLB", + "seaIce.sisali.tavg-u-hxy-si.mon.GLB", + "seaIce.sisaltmass.tavg-u-hxy-si.day.GLB", + "seaIce.sisaltmass.tavg-u-hxy-si.mon.GLB", + "seaIce.sishearvel.tpt-u-hxy-si.mon.GLB", + "seaIce.sisnmass.tavg-u-hm-u.day.NH", + "seaIce.sisnmass.tavg-u-hm-u.day.SH", + "seaIce.sisnmassacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.sistressave.tpt-u-hxy-si.mon.GLB", + "seaIce.sistressmax.tpt-u-hxy-si.mon.GLB", + "seaIce.sistrxdtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sistrxubot.tavg-u-hxy-si.mon.GLB", + "seaIce.sistrydtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sistryubot.tavg-u-hxy-si.mon.GLB", + "seaIce.sitempbot.tavg-u-hxy-si.day.GLB", + "seaIce.sitempbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sitempsnic.tavg-u-hxy-si.day.GLB", + "seaIce.sitempsnic.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-sir.day.GLB", + "seaIce.sithick.tavg-u-hxy-sir.mon.GLB", + "seaIce.sivol.tavg-u-hm-u.day.NH", + "seaIce.sivol.tavg-u-hm-u.day.SH" + ], + "Low": [ + "aerosol.ccldncl.tavg-u-hxy-ccl.day.GLB", + "aerosol.sfpm1.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.sfpm10.tavg-h2m-hxy-u.1hr.GLB", + "atmos.cldnci.tavg-u-hxy-cl.day.GLB", + "atmos.co2.tavg-h2m-hxy-u.mon.GLB", + "atmos.hurs.tavg-h2m-hxy-u.1hr.GLB", + "atmos.hurs.tmin-h2m-hxy-crp.day.GLB", + "atmos.loaddust.tavg-u-hxy-u.day.GLB", + "atmos.loadnh4.tavg-u-hxy-u.day.GLB", + "atmos.loadno3.tavg-u-hxy-u.day.GLB", + "atmos.loadso4.tavg-u-hxy-u.day.GLB", + "atmos.loadsoa.tavg-u-hxy-u.day.GLB", + "atmos.loadss.tavg-u-hxy-u.day.GLB", + "atmos.pr.tavg-u-hxy-crp.day.GLB", + "atmos.reffcclwtop.tavg-u-hxy-ccl.day.GLB", + "atmos.reffsclwtop.tavg-u-hxy-scl.day.GLB", + "atmos.rsds.tavg-u-hxy-u.1hr.GLB", + "atmos.rsdscsdiff.tavg-u-hxy-u.day.GLB", + "atmos.scldncl.tavg-u-hxy-scl.day.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.1hr.GLB", + "atmos.tas.tmax-h2m-hxy-crp.day.GLB", + "atmos.tas.tmin-h2m-hxy-crp.day.GLB", + "atmos.zfull.ti-al-hxy-u.fx.GLB", + "atmosChem.drynh3.tavg-u-hxy-u.day.GLB", + "atmosChem.drynh4.tavg-u-hxy-u.day.GLB", + "atmosChem.drynoy.tavg-u-hxy-u.day.GLB", + "atmosChem.wetnh3.tavg-u-hxy-u.day.GLB", + "atmosChem.wetnh4.tavg-u-hxy-u.day.GLB", + "atmosChem.wetnoy.tavg-u-hxy-u.day.GLB", + "land.c3PftFrac.tavg-u-hxy-u.mon.GLB", + "land.c4PftFrac.tavg-u-hxy-u.mon.GLB", + "land.cropFracC3.tavg-u-hxy-u.mon.GLB", + "land.cropFracC4.tavg-u-hxy-u.mon.GLB", + "land.fHarvestToAtmos.tavg-u-hxy-lnd.mon.GLB", + "land.irrLut.tavg-u-hxy-multi.mon.GLB", + "land.lai.tavg-u-hxy-lnd.day.GLB", + "land.mrsol.tavg-sl-hxy-lnd.mon.GLB", + "land.pastureFrac.tavg-u-hxy-u.mon.GLB", + "land.pastureFracC3.tavg-u-hxy-u.mon.GLB", + "land.pastureFracC4.tavg-u-hxy-u.mon.GLB", + "land.prveg.tavg-u-hxy-lnd.mon.GLB", + "land.residualFrac.tavg-u-hxy-u.mon.GLB", + "land.tas.tavg-u-hxy-u.1hr.GLB", + "ocean.difmxybo.tavg-ol-hxy-sea.yr.GLB", + "ocean.difmxylo.tavg-ol-hxy-sea.yr.GLB", + "ocean.diftrblo.tavg-ol-hxy-sea.yr.GLB", + "ocean.diftrelo.tavg-ol-hxy-sea.yr.GLB", + "ocean.difvho.tavg-ol-hxy-sea.yr.GLB", + "ocean.difvso.tavg-ol-hxy-sea.yr.GLB", + "ocean.dispkexyfo.tavg-u-hxy-sea.yr.GLB", + "ocean.dxto.ti-u-hxy-u.fx.GLB", + "ocean.dxuo.ti-u-hxy-u.fx.GLB", + "ocean.dxvo.ti-u-hxy-u.fx.GLB", + "ocean.dyto.ti-u-hxy-u.fx.GLB", + "ocean.dyuo.ti-u-hxy-u.fx.GLB", + "ocean.dyvo.ti-u-hxy-u.fx.GLB", + "ocean.mlotstsq.tavg-u-hxy-sea.mon.GLB", + "ocean.msftmmpa.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftmmpa.tavg-rho-hyb-sea.mon.GLB", + "ocean.msftmsmpa.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftypa.tavg-ol-ht-sea.mon.GLB", + "ocean.msftypa.tavg-rho-ht-sea.mon.GLB", + "ocean.ocontempdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontempmint.tavg-u-hxy-sea.yr.GLB", + "ocean.ocontemppadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemppmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemppsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemprmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemptend.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottempdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottempmint.tavg-u-hxy-sea.yr.GLB", + "ocean.opottemppadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemppmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemppsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemprmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemptend.tavg-ol-hxy-sea.dec.GLB", + "ocean.osaltdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpsmadvect.tavg-ol-hxy-sea.mon.GLB", + "ocean.osaltpsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltrmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osalttend.tavg-ol-hxy-sea.yr.GLB", + "ocean.rsdoabsorb.tavg-ol-hxy-sea.yr.GLB", + "ocean.somint.tavg-u-hxy-sea.yr.GLB", + "ocean.sossq.tavg-u-hxy-sea.mon.GLB", + "ocean.thkcelluo.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcellvo.tavg-ol-hxy-sea.mon.GLB", + "ocean.tnpeo.tavg-u-hxy-sea.yr.GLB", + "ocean.tossq.tavg-u-hxy-sea.mon.GLB" + ] + }, + "piClim-histaer": { + "Core": [ + "atmos.areacella.ti-u-hxy-u.fx.GLB", + "atmos.cl.tavg-al-hxy-u.mon.GLB", + "atmos.cli.tavg-al-hxy-u.mon.GLB", + "atmos.clivi.tavg-u-hxy-u.mon.GLB", + "atmos.clt.tavg-u-hxy-u.day.GLB", + "atmos.clt.tavg-u-hxy-u.mon.GLB", + "atmos.clw.tavg-al-hxy-u.mon.GLB", + "atmos.clwvi.tavg-u-hxy-u.mon.GLB", + "atmos.evspsbl.tavg-u-hxy-u.mon.GLB", + "atmos.hfls.tavg-u-hxy-u.mon.GLB", + "atmos.hfss.tavg-u-hxy-u.mon.GLB", + "atmos.hur.tavg-p19-hxy-air.mon.GLB", + "atmos.hur.tavg-p19-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.6hr.GLB", + "atmos.hurs.tavg-h2m-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.mon.GLB", + "atmos.hus.tavg-p19-hxy-u.day.GLB", + "atmos.hus.tavg-p19-hxy-u.mon.GLB", + "atmos.huss.tavg-h2m-hxy-u.day.GLB", + "atmos.huss.tavg-h2m-hxy-u.mon.GLB", + "atmos.huss.tpt-h2m-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.1hr.GLB", + "atmos.pr.tavg-u-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.day.GLB", + "atmos.pr.tavg-u-hxy-u.mon.GLB", + "atmos.prc.tavg-u-hxy-u.mon.GLB", + "atmos.prsn.tavg-u-hxy-u.mon.GLB", + "atmos.prw.tavg-u-hxy-u.mon.GLB", + "atmos.ps.tavg-u-hxy-u.day.GLB", + "atmos.ps.tavg-u-hxy-u.mon.GLB", + "atmos.psl.tavg-u-hxy-u.day.GLB", + "atmos.psl.tavg-u-hxy-u.mon.GLB", + "atmos.rlds.tavg-u-hxy-u.mon.GLB", + "atmos.rldscs.tavg-u-hxy-u.mon.GLB", + "atmos.rlus.tavg-u-hxy-u.mon.GLB", + "atmos.rluscs.tavg-u-hxy-u.mon.GLB", + "atmos.rlut.tavg-u-hxy-u.mon.GLB", + "atmos.rlutcs.tavg-u-hxy-u.mon.GLB", + "atmos.rsds.tavg-u-hxy-u.day.GLB", + "atmos.rsds.tavg-u-hxy-u.mon.GLB", + "atmos.rsdscs.tavg-u-hxy-u.mon.GLB", + "atmos.rsdt.tavg-u-hxy-u.mon.GLB", + "atmos.rsus.tavg-u-hxy-u.mon.GLB", + "atmos.rsuscs.tavg-u-hxy-u.mon.GLB", + "atmos.rsut.tavg-u-hxy-u.mon.GLB", + "atmos.rsutcs.tavg-u-hxy-u.mon.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.day.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.mon.GLB", + "atmos.sftlf.ti-u-hxy-u.fx.GLB", + "atmos.ta.tavg-p19-hxy-air.day.GLB", + "atmos.ta.tavg-p19-hxy-air.mon.GLB", + "atmos.ta.tpt-p3-hxy-air.6hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.day.GLB", + "atmos.tas.tavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tmax-h2m-hxy-u.day.GLB", + "atmos.tas.tmaxavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tmin-h2m-hxy-u.day.GLB", + "atmos.tas.tminavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tpt-h2m-hxy-u.3hr.GLB", + "atmos.tauu.tavg-u-hxy-u.mon.GLB", + "atmos.tauv.tavg-u-hxy-u.mon.GLB", + "atmos.ts.tavg-u-hxy-u.mon.GLB", + "atmos.ua.tavg-p19-hxy-air.day.GLB", + "atmos.ua.tavg-p19-hxy-air.mon.GLB", + "atmos.ua.tpt-p3-hxy-air.6hr.GLB", + "atmos.uas.tavg-h10m-hxy-u.day.GLB", + "atmos.uas.tavg-h10m-hxy-u.mon.GLB", + "atmos.uas.tpt-h10m-hxy-u.3hr.GLB", + "atmos.va.tavg-p19-hxy-air.day.GLB", + "atmos.va.tavg-p19-hxy-air.mon.GLB", + "atmos.va.tpt-p3-hxy-air.6hr.GLB", + "atmos.vas.tavg-h10m-hxy-u.day.GLB", + "atmos.vas.tavg-h10m-hxy-u.mon.GLB", + "atmos.vas.tpt-h10m-hxy-u.3hr.GLB", + "atmos.wap.tavg-p19-hxy-air.mon.GLB", + "atmos.wap.tavg-p19-hxy-u.day.GLB", + "atmos.zg.tavg-p19-hxy-air.day.GLB", + "atmos.zg.tavg-p19-hxy-air.mon.GLB", + "land.evspsblsoi.tavg-u-hxy-lnd.mon.GLB", + "land.evspsblveg.tavg-u-hxy-lnd.mon.GLB", + "land.lai.tavg-u-hxy-lnd.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.mon.GLB", + "land.mrros.tavg-u-hxy-lnd.mon.GLB", + "land.mrso.tavg-u-hxy-lnd.mon.GLB", + "land.mrsofc.ti-u-hxy-lnd.fx.GLB", + "land.mrsol.tavg-d10cm-hxy-lnd.mon.GLB", + "land.orog.ti-u-hxy-u.fx.GLB", + "land.rootd.ti-u-hxy-lnd.fx.GLB", + "land.sftgif.ti-u-hxy-u.fx.GLB", + "land.slthick.ti-sl-hxy-lnd.fx.GLB", + "landIce.mrfso.tavg-u-hxy-lnd.mon.GLB", + "landIce.snc.tavg-u-hxy-lnd.mon.GLB", + "landIce.snw.tavg-u-hxy-lnd.mon.GLB", + "ocean.areacello.ti-u-hxy-u.fx.GLB", + "ocean.basin.ti-u-hxy-u.fx.GLB", + "ocean.bigthetao.tavg-ol-hxy-sea.mon.GLB", + "ocean.deptho.ti-u-hxy-sea.fx.GLB", + "ocean.hfds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfgeou.ti-u-hxy-sea.fx.GLB", + "ocean.masscello.tavg-ol-hxy-sea.mon.GLB", + "ocean.masscello.ti-ol-hxy-sea.fx.GLB", + "ocean.mlotst.tavg-u-hxy-sea.mon.GLB", + "ocean.sftof.ti-u-hxy-u.fx.GLB", + "ocean.so.tavg-ol-hxy-sea.mon.GLB", + "ocean.sos.tavg-u-hxy-sea.day.GLB", + "ocean.sos.tavg-u-hxy-sea.mon.GLB", + "ocean.tauuo.tavg-u-hxy-sea.mon.GLB", + "ocean.tauvo.tavg-u-hxy-sea.mon.GLB", + "ocean.thetao.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcello.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcello.ti-ol-hxy-sea.fx.GLB", + "ocean.tos.tavg-u-hxy-sea.day.GLB", + "ocean.tos.tavg-u-hxy-sea.mon.GLB", + "ocean.umo.tavg-ol-hxy-sea.mon.GLB", + "ocean.uo.tavg-ol-hxy-sea.mon.GLB", + "ocean.vmo.tavg-ol-hxy-sea.mon.GLB", + "ocean.vo.tavg-ol-hxy-sea.mon.GLB", + "ocean.wmo.tavg-ol-hxy-sea.mon.GLB", + "ocean.wo.tavg-ol-hxy-sea.mon.GLB", + "ocean.zos.tavg-u-hxy-sea.day.GLB", + "ocean.zos.tavg-u-hxy-sea.mon.GLB", + "ocean.zostoga.tavg-u-hm-sea.mon.GLB", + "seaIce.siconc.tavg-u-hxy-u.day.GLB", + "seaIce.siconc.tavg-u-hxy-u.mon.GLB", + "seaIce.simass.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-si.mon.GLB", + "seaIce.sitimefrac.tavg-u-hxy-sea.mon.GLB", + "seaIce.siu.tavg-u-hxy-si.mon.GLB", + "seaIce.siv.tavg-u-hxy-si.mon.GLB", + "seaIce.snd.tavg-u-hxy-sn.mon.GLB", + "seaIce.ts.tavg-u-hxy-si.mon.GLB" + ], + "High": [ + "aerosol.abs550aer.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550bc.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550dust.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550no3.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550oa.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550so4.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550ss.tavg-u-hxy-u.mon.GLB", + "aerosol.airmass.tavg-al-hxy-u.mon.GLB", + "aerosol.aoanh.tavg-al-hxy-u.mon.NH", + "aerosol.bry.tavg-p39-hy-air.mon.GLB", + "aerosol.bs550aer.tpt-al-hxy-u.6hr.GLB", + "aerosol.c2h6.tavg-al-hxy-u.mon.GLB", + "aerosol.c3h6.tavg-al-hxy-u.mon.GLB", + "aerosol.c3h8.tavg-al-hxy-u.mon.GLB", + "aerosol.ccldncl.tavg-u-hxy-ccl.mon.GLB", + "aerosol.ccn.tavg-u-hxy-ccl.mon.30S-90S", + "aerosol.ccn.tavg-u-hxy-ccl.mon.GLB", + "aerosol.ccn1.tavg-al-hxy-u.mon.30S-90S", + "aerosol.ccn1.tavg-al-hxy-u.mon.GLB", + "aerosol.ccnp02.tavg-al-hxy-u.mon.30S-90S", + "aerosol.ccnp02.tavg-al-hxy-u.mon.GLB", + "aerosol.cdnc.tavg-al-hxy-u.mon.30S-90S", + "aerosol.cdnc.tavg-al-hxy-u.mon.GLB", + "aerosol.cfc114.tavg-al-hxy-u.mon.GLB", + "aerosol.ch3coch3.tavg-al-hxy-u.mon.GLB", + "aerosol.cheaqpso4.tavg-al-hxy-u.mon.GLB", + "aerosol.chegpso4.tavg-al-hxy-u.mon.GLB", + "aerosol.chepasoa.tavg-u-hxy-u.mon.GLB", + "aerosol.chepsoa.tavg-u-hxy-u.mon.GLB", + "aerosol.cly.tavg-p39-hy-air.mon.GLB", + "aerosol.co.tavg-al-hxy-u.mon.GLB", + "aerosol.co.tavg-h2m-hxy-u.day.GLB", + "aerosol.cod.tavg-u-hxy-u.day.GLB", + "aerosol.cod.tavg-u-hxy-u.mon.30S-90S", + "aerosol.cod.tavg-u-hxy-u.mon.GLB", + "aerosol.conccn.tavg-al-hxy-u.mon.GLB", + "aerosol.conccn.tpt-u-hs-u.3hr.GLB", + "aerosol.drybc.tavg-u-hxy-u.mon.GLB", + "aerosol.drydust.tavg-u-hxy-u.mon.GLB", + "aerosol.dryno3.tavg-u-hxy-u.mon.GLB", + "aerosol.dryo3.tavg-u-hxy-u.mon.GLB", + "aerosol.dryoa.tavg-u-hxy-u.mon.GLB", + "aerosol.dryso2.tavg-u-hxy-u.mon.GLB", + "aerosol.dryso4.tavg-u-hxy-u.mon.GLB", + "aerosol.dryss.tavg-u-hxy-u.mon.GLB", + "aerosol.ec550aer.tavg-al-hxy-u.mon.GLB", + "aerosol.ec550aer.tpt-u-hxy-u.6hr.GLB", + "aerosol.emiaco.tavg-u-hxy-u.mon.GLB", + "aerosol.emianox.tavg-u-hxy-u.mon.GLB", + "aerosol.emiaoa.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbbc.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbch4.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbco.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbdms.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbnh3.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbnox.tavg-u-hxy-u.mon.GLB", + "aerosol.emibboa.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbso2.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbvoc.tavg-u-hxy-u.mon.GLB", + "aerosol.emibc.tavg-u-hxy-u.mon.GLB", + "aerosol.emibvoc.tavg-u-hxy-u.mon.GLB", + "aerosol.emico.tavg-u-hxy-u.mon.GLB", + "aerosol.emidms.tavg-u-hxy-u.mon.30S-90S", + "aerosol.emidms.tavg-u-hxy-u.mon.GLB", + "aerosol.emidust.tavg-u-hxy-u.mon.GLB", + "aerosol.emiisop.tavg-u-hxy-u.mon.GLB", + "aerosol.emilnox.tavg-al-hxy-u.mon.GLB", + "aerosol.eminh3.tavg-u-hxy-u.mon.GLB", + "aerosol.eminox.tavg-u-hxy-u.mon.GLB", + "aerosol.emioa.tavg-u-hxy-u.mon.GLB", + "aerosol.emiso2.tavg-u-hxy-u.mon.GLB", + "aerosol.emiso4.tavg-u-hxy-u.mon.GLB", + "aerosol.emiss.tavg-u-hxy-u.mon.30S-90S", + "aerosol.emiss.tavg-u-hxy-u.mon.GLB", + "aerosol.emivoc.tavg-u-hxy-u.mon.GLB", + "aerosol.h2o.tavg-al-hxy-u.mon.GLB", + "aerosol.h2o.tavg-p39-hy-air.mon.GLB", + "aerosol.hcfc22.tavg-al-hxy-u.mon.GLB", + "aerosol.hcho.tavg-al-hxy-u.mon.GLB", + "aerosol.hcl.tavg-al-hxy-u.mon.GLB", + "aerosol.hcl.tavg-p39-hy-air.mon.GLB", + "aerosol.hfc125.tavg-al-hxy-u.mon.GLB", + "aerosol.hfc134a.tavg-al-hxy-u.mon.GLB", + "aerosol.hno3.tavg-al-hxy-u.mon.GLB", + "aerosol.hno3.tavg-p39-hy-air.mon.GLB", + "aerosol.ho2.tavg-p39-hy-air.mon.GLB", + "aerosol.isop.tavg-al-hxy-u.mon.GLB", + "aerosol.jno2.tavg-al-hxy-u.mon.GLB", + "aerosol.lossch4.tavg-al-hxy-u.mon.GLB", + "aerosol.lossco.tavg-al-hxy-u.mon.GLB", + "aerosol.lossn2o.tavg-al-hxy-u.mon.GLB", + "aerosol.lwp.tavg-u-hxy-u.mon.GLB", + "aerosol.mmraerh2o.tavg-al-hxy-u.mon.GLB", + "aerosol.mmraerh2o.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmraerh2o.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrbc.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrbc.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrbc.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrbc.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrdust.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrdust.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrdust.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrdust.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrnh4.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrnh4.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrnh4.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrnh4.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrno3.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrno3.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrno3.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrno3.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmroa.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmroa.tavg-al-hxy-u.mon.GLB", + "aerosol.mmroa.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmroa.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrpm1.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrpm1.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrpm2p5.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrpm2p5.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrso4.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrso4.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrso4.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrso4.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrsoa.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrsoa.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrsoa.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrss.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrss.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrss.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrss.tpt-h2m-hs-u.3hr.GLB", + "aerosol.nh50.tavg-al-hxy-u.mon.GLB", + "aerosol.no.tavg-al-hxy-u.mon.GLB", + "aerosol.no2.tavg-al-hxy-u.mon.GLB", + "aerosol.no2.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.noy.tavg-p39-hy-air.mon.GLB", + "aerosol.o3.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.o3loss.tavg-al-hxy-u.mon.GLB", + "aerosol.o3prod.tavg-al-hxy-u.mon.GLB", + "aerosol.od443aer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550aer.tavg-u-hxy-u.day.GLB", + "aerosol.od550aer.tavg-u-hxy-u.mon.30S-90S", + "aerosol.od550aer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550aerh2o.tavg-u-hxy-u.mon.GLB", + "aerosol.od550bb.tavg-u-hxy-u.mon.GLB", + "aerosol.od550bc.tavg-u-hxy-u.mon.GLB", + "aerosol.od550csaer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550dust.tavg-u-hxy-u.mon.GLB", + "aerosol.od550lt1aer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550no3.tavg-u-hxy-u.mon.GLB", + "aerosol.od550oa.tavg-u-hxy-u.mon.GLB", + "aerosol.od550so4.tavg-u-hxy-u.mon.GLB", + "aerosol.od550soa.tavg-u-hxy-u.mon.GLB", + "aerosol.od550ss.tavg-u-hxy-u.mon.GLB", + "aerosol.od865aer.tavg-u-hxy-u.mon.GLB", + "aerosol.oh.tavg-al-hxy-u.mon.GLB", + "aerosol.oh.tavg-p39-hy-air.mon.GLB", + "aerosol.pan.tavg-al-hxy-u.mon.GLB", + "aerosol.photo1d.tavg-al-hxy-u.mon.GLB", + "aerosol.pod0.tsum-u-hxy-u.mon.GLB", + "aerosol.reffccwctop.tavg-u-hxy-cl.mon.GLB", + "aerosol.reffclwtop.tavg-u-hxy-cl.mon.30S-90S", + "aerosol.reffclwtop.tavg-u-hxy-cl.mon.GLB", + "aerosol.rluscsaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rlutaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rlutcsaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rsutaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rsutcsaf.tavg-u-hxy-u.mon.GLB", + "aerosol.sfpm1.tavg-h2m-hxy-u.day.GLB", + "aerosol.sfpm10.tavg-al-hxy-u.mon.30S-90S", + "aerosol.sfpm10.tavg-al-hxy-u.mon.GLB", + "aerosol.sfpm10.tavg-h2m-hxy-u.day.GLB", + "aerosol.sfpm25.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.sfpm25.tavg-h2m-hxy-u.day.GLB", + "aerosol.so2.tavg-al-hxy-u.mon.30S-90S", + "aerosol.so2.tavg-al-hxy-u.mon.GLB", + "aerosol.so2.tavg-h2m-hxy-u.day.GLB", + "aerosol.so2.tpt-h2m-hs-u.3hr.GLB", + "aerosol.tatp.tavg-u-hxy-u.mon.GLB", + "aerosol.toz.tavg-u-hxy-u.day.GLB", + "aerosol.toz.tavg-u-hxy-u.mon.GLB", + "aerosol.tropoz.tavg-u-hxy-u.mon.GLB", + "aerosol.ttop.tavg-u-hxy-cl.mon.GLB", + "aerosol.ua.tavg-10hPa-hxy-air.day.GLB", + "aerosol.vt100.tavg-100hPa-hy-air.mon.GLB", + "aerosol.wa.tavg-al-hxy-u.mon.GLB", + "aerosol.wetbc.tavg-u-hxy-u.mon.GLB", + "aerosol.wetdust.tavg-u-hxy-u.mon.GLB", + "aerosol.wetoa.tavg-u-hxy-u.mon.GLB", + "aerosol.wetso2.tavg-u-hxy-u.mon.GLB", + "aerosol.wetso4.tavg-u-hxy-u.mon.GLB", + "aerosol.wetss.tavg-u-hxy-u.mon.GLB", + "aerosol.zg.tavg-10hPa-hxy-air.day.GLB", + "atmos.albisccp.tavg-u-hxy-cl.mon.30S-90S", + "atmos.bldep.tavg-u-hxy-u.mon.GLB", + "atmos.bldep.tmax-u-hxy-u.day.GLB", + "atmos.bldep.tmin-u-hxy-u.day.GLB", + "atmos.cl.tavg-al-hxy-u.mon.30S-90S", + "atmos.clc.tavg-al-hxy-u.mon.30S-90S", + "atmos.clc.tavg-al-hxy-u.mon.GLB", + "atmos.clcalipso.tavg-220hPa-hxy-air.mon.30S-90S", + "atmos.clcalipso.tavg-220hPa-hxy-air.mon.GLB", + "atmos.clcalipso.tavg-560hPa-hxy-air.mon.30S-90S", + "atmos.clcalipso.tavg-560hPa-hxy-air.mon.GLB", + "atmos.clcalipso.tavg-840hPa-hxy-air.mon.30S-90S", + "atmos.clcalipso.tavg-840hPa-hxy-air.mon.GLB", + "atmos.clcalipso.tavg-h40-hxy-air.mon.30S-90S", + "atmos.cldnci.tavg-u-hxy-cl.mon.GLB", + "atmos.cldncl.tavg-u-hxy-cl.mon.GLB", + "atmos.cldnvi.tavg-u-hxy-u.mon.GLB", + "atmos.cli.tavg-al-hxy-u.mon.30S-90S", + "atmos.clic.tavg-al-hxy-u.mon.30S-90S", + "atmos.clis.tavg-al-hxy-u.mon.30S-90S", + "atmos.clisccp.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clisccp.tavg-p7c-hxy-air.mon.GLB", + "atmos.clivi.tavg-u-hxy-u.mon.30S-90S", + "atmos.clivimodis.tavg-u-hxy-u.mon.30S-90S", + "atmos.clmodis.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clmodis.tavg-p7c-hxy-air.mon.GLB", + "atmos.clmodisice.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clmodisice.tavg-p7c-hxy-air.mon.GLB", + "atmos.clmodisiceReff.tavg-u-hxy-u.mon.GLB", + "atmos.clmodisliquid.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clmodisliquid.tavg-p7c-hxy-air.mon.GLB", + "atmos.clmodisliquidReff.tavg-u-hxy-u.mon.GLB", + "atmos.cls.tavg-al-hxy-u.mon.30S-90S", + "atmos.clt.tavg-u-hxy-u.mon.30S-90S", + "atmos.cltc.tavg-u-hxy-u.mon.GLB", + "atmos.cltcalipso.tavg-u-hxy-u.mon.30S-90S", + "atmos.cltisccp.tavg-u-hxy-u.mon.30S-90S", + "atmos.cltmodis.tavg-u-hxy-u.mon.30S-90S", + "atmos.clw.tavg-al-hxy-u.mon.30S-90S", + "atmos.clwc.tavg-al-hxy-u.mon.30S-90S", + "atmos.clws.tavg-al-hxy-u.mon.30S-90S", + "atmos.clwvi.tavg-u-hxy-u.mon.30S-90S", + "atmos.clwvimodis.tavg-u-hxy-u.mon.30S-90S", + "atmos.co2.tavg-al-hxy-u.mon.GLB", + "atmos.co2.tavg-p19-hxy-air.mon.GLB", + "atmos.co23D.tavg-al-hxy-u.mon.GLB", + "atmos.co2mass.tavg-u-hm-u.mon.GLB", + "atmos.dmc.tavg-alh-hxy-u.mon.30S-90S", + "atmos.edt.tavg-al-hxy-u.mon.30S-90S", + "atmos.evspsbl.tavg-u-hxy-lnd.day.GLB", + "atmos.evu.tavg-al-hxy-u.mon.30S-90S", + "atmos.fco2antt.tavg-u-hxy-u.mon.GLB", + "atmos.fco2fos.tavg-u-hxy-u.mon.GLB", + "atmos.fco2nat.tavg-u-hxy-u.mon.GLB", + "atmos.hfls.tavg-u-hxy-u.mon.30S-90S", + "atmos.hfss.tavg-u-hxy-u.mon.30S-90S", + "atmos.hur.tavg-al-hxy-u.mon.30S-90S", + "atmos.hur.tavg-al-hxy-u.mon.GLB", + "atmos.hur.tavg-p19-hxy-air.mon.30S-90S", + "atmos.hurs.tavg-h2m-hxy-u.mon.30S-90S", + "atmos.hus.tavg-al-hxy-u.mon.30S-90S", + "atmos.hus.tavg-al-hxy-u.mon.GLB", + "atmos.hus.tavg-p19-hxy-u.mon.30S-90S", + "atmos.hus.tpt-al-hxy-u.6hr.GLB", + "atmos.hus.tpt-p7h-hxy-air.6hr.GLB", + "atmos.huss.tavg-h2m-hxy-u.mon.30S-90S", + "atmos.huss.tpt-h2m-hxy-u.1hr.GLB", + "atmos.mc.tavg-alh-hxy-u.mon.GLB", + "atmos.mcd.tavg-alh-hxy-u.mon.30S-90S", + "atmos.mcu.tavg-alh-hxy-u.mon.30S-90S", + "atmos.mcu.tavg-alh-hxy-u.mon.GLB", + "atmos.pctisccp.tavg-u-hxy-cl.mon.30S-90S", + "atmos.pfull.tavg-al-hxy-u.mon.GLB", + "atmos.pfull.tclm-al-hxy-u.mon.30S-90S", + "atmos.phalf.tavg-alh-hxy-u.mon.GLB", + "atmos.pr.tavg-u-hxy-u.mon.30S-90S", + "atmos.pr.tmax-u-hxy-u.day.GLB", + "atmos.pr.tpt-u-hxy-u.6hr.GLB", + "atmos.prc.tavg-u-hxy-u.mon.30S-90S", + "atmos.prra.tavg-u-hxy-lnd.day.GLB", + "atmos.prra.tavg-u-hxy-u.mon.30S-90S", + "atmos.prsn.tavg-u-hxy-u.3hr.GLB", + "atmos.prsn.tavg-u-hxy-u.day.GLB", + "atmos.prsn.tavg-u-hxy-u.mon.30S-90S", + "atmos.prw.tavg-u-hxy-u.day.GLB", + "atmos.prw.tavg-u-hxy-u.mon.30S-90S", + "atmos.ps.tavg-u-hxy-u.1hr.GLB", + "atmos.ps.tavg-u-hxy-u.mon.30S-90S", + "atmos.ps.tpt-u-hxy-u.6hr.GLB", + "atmos.psl.tavg-u-hxy-u.mon.30S-90S", + "atmos.psl.tpt-u-hxy-u.1hr.GLB", + "atmos.psl.tpt-u-hxy-u.6hr.GLB", + "atmos.ptp.tavg-u-hxy-u.mon.GLB", + "atmos.reffcclwtop.tavg-u-hxy-ccl.mon.GLB", + "atmos.reffclic.tavg-al-hxy-ccl.mon.30S-90S", + "atmos.reffclis.tavg-al-hxy-scl.mon.30S-90S", + "atmos.reffclwc.tavg-al-hxy-ccl.mon.30S-90S", + "atmos.reffclws.tavg-al-hxy-scl.mon.30S-90S", + "atmos.reffsclwtop.tavg-u-hxy-scl.mon.GLB", + "atmos.rld.tavg-alh-hxy-u.mon.GLB", + "atmos.rld4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rldcs.tavg-alh-hxy-u.mon.GLB", + "atmos.rldcs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rlds.tavg-u-hxy-u.1hr.GLB", + "atmos.rlds.tavg-u-hxy-u.day.GLB", + "atmos.rlds.tavg-u-hxy-u.mon.30S-90S", + "atmos.rldscs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rlu.tavg-alh-hxy-u.mon.GLB", + "atmos.rlu4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rlucs.tavg-alh-hxy-u.mon.GLB", + "atmos.rlucs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rlus.tavg-u-hxy-u.day.GLB", + "atmos.rlus.tavg-u-hxy-u.mon.30S-90S", + "atmos.rlut.tavg-u-hxy-u.mon.30S-90S", + "atmos.rlut4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rlutcs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rlutcs4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rsd.tavg-alh-hxy-u.mon.GLB", + "atmos.rsd4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsdcs.tavg-alh-hxy-u.mon.GLB", + "atmos.rsdcs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsds.tavg-u-hxy-u.1hr.GLB", + "atmos.rsds.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsdscs.tavg-u-hxy-u.day.GLB", + "atmos.rsdscs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsdt.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsu.tavg-alh-hxy-u.mon.GLB", + "atmos.rsu4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsucs.tavg-alh-hxy-u.mon.GLB", + "atmos.rsucs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsus.tavg-u-hxy-u.day.GLB", + "atmos.rsus.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsuscs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsut.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsut4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rsutcs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsutcs4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rtmt.tavg-u-hxy-u.mon.GLB", + "atmos.rv850.tpt-850hPa-hxy-air.6hr.GLB", + "atmos.scldncl.tavg-u-hxy-scl.mon.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.mon.30S-90S", + "atmos.ta.tavg-al-hxy-u.mon.30S-90S", + "atmos.ta.tavg-al-hxy-u.mon.GLB", + "atmos.ta.tavg-p19-hxy-air.mon.30S-90S", + "atmos.ta.tavg-p39-hy-air.mon.GLB", + "atmos.ta.tpt-al-hxy-u.6hr.GLB", + "atmos.ta.tpt-p7h-hxy-air.6hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.1hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.mon.30S-90S", + "atmos.tas.tmaxavg-h2m-hxy-u.mon.30S-90S", + "atmos.tas.tminavg-h2m-hxy-u.mon.30S-90S", + "atmos.tnt.tavg-al-hxy-u.mon.GLB", + "atmos.tntrl.tavg-al-hxy-u.mon.GLB", + "atmos.tntrs.tavg-al-hxy-u.mon.GLB", + "atmos.ts.tavg-u-hxy-u.mon.30S-90S", + "atmos.ts.tpt-u-hxy-u.6hr.GLB", + "atmos.ua.tavg-al-hxy-u.mon.GLB", + "atmos.ua.tavg-p19-hxy-air.mon.30S-90S", + "atmos.ua.tavg-p39-hy-air.mon.GLB", + "atmos.ua.tpt-al-hxy-u.6hr.GLB", + "atmos.ua.tpt-p7h-hxy-air.6hr.GLB", + "atmos.uas.tavg-h10m-hxy-u.mon.30S-90S", + "atmos.uas.tpt-h10m-hxy-u.1hr.GLB", + "atmos.va.tavg-al-hxy-u.mon.GLB", + "atmos.va.tavg-p19-hxy-air.mon.30S-90S", + "atmos.va.tavg-p39-hy-air.mon.GLB", + "atmos.va.tpt-al-hxy-u.6hr.GLB", + "atmos.va.tpt-p7h-hxy-air.6hr.GLB", + "atmos.vas.tavg-h10m-hxy-u.mon.30S-90S", + "atmos.vas.tpt-h10m-hxy-u.1hr.GLB", + "atmos.wap.tavg-p19-hxy-air.mon.30S-90S", + "atmos.zg.tavg-1000hPa-hxy-air.day.GLB", + "atmos.zg.tavg-500hPa-hxy-air.day.GLB", + "atmos.zg.tavg-al-hxy-u.mon.GLB", + "atmos.zg.tavg-p19-hxy-air.mon.30S-90S", + "atmos.zg.tavg-p39-hy-air.mon.GLB", + "atmos.zg.tpt-500hPa-hxy-air.6hr.GLB", + "atmos.zg.tpt-al-hxy-u.6hr.GLB", + "atmos.zg.tpt-p7h-hxy-air.6hr.GLB", + "atmos.ztp.tavg-u-hxy-u.mon.GLB", + "atmosChem.c2h4.tavg-al-hxy-u.mon.GLB", + "atmosChem.c2h5oh.tavg-al-hxy-u.mon.GLB", + "atmosChem.c4h10.tavg-al-hxy-u.mon.GLB", + "atmosChem.cfc11.tavg-u-hm-u.mon.GLB", + "atmosChem.cfc113.tavg-u-hm-u.mon.GLB", + "atmosChem.cfc12.tavg-u-hm-u.mon.GLB", + "atmosChem.ch3oh.tavg-al-hxy-u.mon.GLB", + "atmosChem.ch4.tavg-al-hxy-u.mon.GLB", + "atmosChem.ch4.tavg-p39-hy-air.mon.GLB", + "atmosChem.ch4losssoil.tavg-u-hxy-u.mon.GLB", + "atmosChem.ch4ref.ti-al-hxy-u.fx.GLB", + "atmosChem.chegph2oo1d.tavg-al-hxy-u.mon.GLB", + "atmosChem.chepnh4.tavg-al-hxy-u.mon.GLB", + "atmosChem.chepno3.tavg-al-hxy-u.mon.GLB", + "atmosChem.dms.tavg-al-hxy-u.mon.30S-90S", + "atmosChem.dms.tavg-al-hxy-u.mon.GLB", + "atmosChem.do3chm.tavg-al-hxy-u.mon.GLB", + "atmosChem.dryh2.tavg-u-hxy-u.mon.GLB", + "atmosChem.dryhno3.tavg-u-hxy-u.mon.GLB", + "atmosChem.drynh3.tavg-u-hxy-u.mon.GLB", + "atmosChem.drynh4.tavg-u-hxy-u.mon.GLB", + "atmosChem.drynoy.tavg-u-hxy-u.mon.GLB", + "atmosChem.e90inst.tpt-al-hxy-u.mon.GLB", + "atmosChem.emiach4.tavg-u-hxy-u.mon.GLB", + "atmosChem.emiavnox.tavg-al-hxy-u.mon.GLB", + "atmosChem.emic2h4.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic2h5oh.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic2h6.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic3h6.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic3h8.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic4h10.tavg-u-hxy-u.mon.GLB", + "atmosChem.emich3oh.tavg-u-hxy-u.mon.GLB", + "atmosChem.emich4.tavg-u-hxy-u.mon.GLB", + "atmosChem.emih2.tavg-u-hxy-u.mon.GLB", + "atmosChem.emilkch4.tavg-u-hxy-u.mon.GLB", + "atmosChem.h2.tavg-al-hxy-u.mon.GLB", + "atmosChem.h2loss.tavg-al-hxy-u.mon.GLB", + "atmosChem.h2prod.tavg-al-hxy-u.mon.GLB", + "atmosChem.hcfc22.tavg-u-hm-u.mon.GLB", + "atmosChem.meanage.tavg-al-hxy-u.mon.GLB", + "atmosChem.meanage.tavg-p39-hy-air.mon.GLB", + "atmosChem.n2o.tavg-al-hxy-u.mon.GLB", + "atmosChem.n2o.tavg-p39-hy-air.mon.GLB", + "atmosChem.o3.tavg-al-hxy-u.mon.GLB", + "atmosChem.o3.tavg-p19-hxy-air.mon.GLB", + "atmosChem.o3.tavg-p39-hy-air.mon.GLB", + "atmosChem.o3.tpt-al-hxy-u.mon.GLB", + "atmosChem.o3ref.tclm-al-hxy-u.fx.GLB", + "atmosChem.o3ref.ti-al-hxy-u.fx.GLB", + "atmosChem.o3ste.tavg-al-hxy-u.mon.GLB", + "atmosChem.rlutch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rlutcsch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rlutcso3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rluto3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsutch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsutcsch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsutcso3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsuto3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.stratch4loss.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropch4loss.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropch4lossoh.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropdo3chm.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropo3ste.tavg-al-hxy-u.mon.GLB", + "atmosChem.wethno3.tavg-al-hxy-u.mon.GLB", + "atmosChem.wetnh3.tavg-u-hxy-u.mon.GLB", + "atmosChem.wetnh4.tavg-u-hxy-u.mon.GLB", + "atmosChem.wetno3.tavg-al-hxy-u.mon.GLB", + "atmosChem.wetnoy.tavg-u-hxy-u.mon.GLB", + "land.albc.tavg-u-hxy-veg.mon.GLB", + "land.areacellr.ti-u-hxy-u.fx.GLB", + "land.baresoilFrac.tavg-u-hxy-u.mon.GLB", + "land.burntFractionAll.tavg-u-hxy-u.mon.GLB", + "land.cGeologicStorage.tavg-u-hxy-u.mon.GLB", + "land.cLand.tavg-u-hxy-lnd.mon.GLB", + "land.cLitter.tavg-u-hxy-lnd.mon.GLB", + "land.cnc.tavg-u-hxy-u.mon.GLB", + "land.cProduct.tavg-u-hxy-lnd.mon.GLB", + "land.cropFrac.tavg-u-hxy-u.mon.GLB", + "land.cSoil.tavg-d100cm-hxy-lnd.mon.GLB", + "land.cSoil.tavg-u-hxy-lnd.mon.GLB", + "land.cVeg.tavg-u-hxy-lnd.mon.GLB", + "land.dcw.tavg-u-hxy-lnd.day.GLB", + "land.dslw.tavg-u-hxy-lnd.day.GLB", + "land.evspsblpot.tavg-u-hxy-lnd.day.GLB", + "land.evspsblpot.tavg-u-hxy-lnd.mon.GLB", + "land.fAnthDisturb.tavg-u-hxy-lnd.mon.GLB", + "land.fBNF.tavg-u-hxy-lnd.mon.GLB", + "land.fCLandToOcean.tavg-u-hxy-lnd.mon.GLB", + "land.fDeforestToAtmos.tavg-u-hxy-lnd.mon.GLB", + "land.fDeforestToProduct.tavg-u-hxy-lnd.mon.GLB", + "land.fFire.tavg-u-hxy-lnd.mon.GLB", + "land.fFireAll.tavg-u-hxy-lnd.mon.GLB", + "land.fFireNat.tavg-u-hxy-lnd.mon.GLB", + "land.fHarvestToAtmos.tavg-u-hxy-lnd.mon.GLB", + "land.fHarvestToGeologicStorage.tavg-u-hxy-lnd.mon.GLB", + "land.fHarvestToProduct.tavg-u-hxy-lnd.mon.GLB", + "land.fLitterSoil.tavg-u-hxy-lnd.mon.GLB", + "land.fN2O.tavg-u-hxy-lnd.mon.GLB", + "land.fNAnthDisturb.tavg-u-hxy-lnd.mon.GLB", + "land.fNdep.tavg-u-hxy-lnd.mon.GLB", + "land.fNfert.tavg-u-hxy-lnd.mon.GLB", + "land.fNLandToOcean.tavg-u-hxy-lnd.mon.GLB", + "land.fNLitterSoil.tavg-u-hxy-lnd.mon.GLB", + "land.fNloss.tavg-u-hxy-lnd.mon.GLB", + "land.fNnetmin.tavg-u-hxy-lnd.mon.GLB", + "land.fNOx.tavg-u-hxy-lnd.mon.GLB", + "land.fNProduct.tavg-u-hxy-lnd.mon.GLB", + "land.fNup.tavg-u-hxy-lnd.mon.GLB", + "land.fNVegLitter.tavg-u-hxy-lnd.mon.GLB", + "land.fNVegSoil.tavg-u-hxy-lnd.mon.GLB", + "land.fProductDecomp.tavg-u-hxy-lnd.mon.GLB", + "land.fVegLitter.tavg-u-hxy-lnd.mon.GLB", + "land.fVegSoil.tavg-u-hxy-lnd.mon.GLB", + "land.gpp.tavg-u-hxy-lnd.mon.GLB", + "land.grassFrac.tavg-u-hxy-u.mon.GLB", + "land.landCoverFrac.tavg-u-hxy-u.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.day.GLB", + "land.mrrob.tavg-u-hxy-lnd.day.GLB", + "land.mrros.tavg-u-hxy-lnd.day.GLB", + "land.mrsfl.tavg-sl-hxy-lnd.day.GLB", + "land.mrsfl.tavg-sl-hxy-lnd.mon.GLB", + "land.mrsll.tavg-sl-hxy-lnd.day.GLB", + "land.mrsll.tavg-sl-hxy-lnd.mon.GLB", + "land.mrso.tavg-u-hxy-lnd.day.GLB", + "land.mrsol.tavg-d10cm-hxy-lnd.day.GLB", + "land.mrsol.tavg-sl-hxy-lnd.day.GLB", + "land.mrsol.tavg-sl-hxy-lnd.mon.GLB", + "land.mrsow.tavg-u-hxy-lnd.day.GLB", + "land.mrtws.tavg-u-hxy-lnd.day.GLB", + "land.mrtws.tavg-u-hxy-lnd.mon.GLB", + "land.nbp.tavg-u-hxy-lnd.mon.GLB", + "land.nep.tavg-u-hxy-lnd.mon.GLB", + "land.nLand.tavg-u-hxy-lnd.mon.GLB", + "land.nLitter.tavg-u-hxy-lnd.mon.GLB", + "land.nMineral.tavg-u-hxy-lnd.mon.GLB", + "land.npp.tavg-u-hxy-lnd.mon.GLB", + "land.nProduct.tavg-u-hxy-lnd.mon.GLB", + "land.nSoil.tavg-u-hxy-lnd.mon.GLB", + "land.nVeg.tavg-u-hxy-lnd.mon.GLB", + "land.pastureFrac.tavg-u-hxy-u.mon.GLB", + "land.prveg.tavg-u-hxy-lnd.mon.GLB", + "land.ra.tavg-u-hxy-lnd.mon.GLB", + "land.residualFrac.tavg-u-hxy-u.mon.GLB", + "land.rh.tavg-u-hxy-lnd.mon.GLB", + "land.rivi.tavg-u-hxy-lnd.day.GLB", + "land.rivo.tavg-u-hxy-lnd.day.GLB", + "land.rsds.tavg-u-hxy-sn.mon.GLB", + "land.rsus.tavg-u-hxy-sn.mon.GLB", + "land.shrubFrac.tavg-u-hxy-u.mon.GLB", + "land.tas.tavg-u-hxy-u.1hr.GLB", + "land.tran.tavg-u-hxy-lnd.mon.GLB", + "land.treeFrac.tavg-u-hxy-u.mon.GLB", + "land.tsl.tavg-sl-hxy-lnd.mon.GLB", + "land.tslsi.tavg-u-hxy-u.day.GLB", + "land.vegFrac.tavg-u-hxy-u.mon.GLB", + "land.vegHeight.tavg-u-hxy-veg.mon.GLB", + "land.wetlandCH4.tavg-u-hxy-lnd.mon.GLB", + "land.wtd.tavg-u-hxy-lnd.day.GLB", + "landIce.snd.tavg-u-hxy-lnd.mon.GLB", + "ocean.absscint.tavg-op4-hxy-sea.mon.GLB", + "ocean.agessc.tavg-ol-hxy-sea.mon.GLB", + "ocean.bigthetao.tavg-ol-hm-sea.mon.GLB", + "ocean.bigthetao.tavg-ol-hxy-sea.dec.GLB", + "ocean.bigthetao.tavg-op20bar-hxy-sea.day.GLB", + "ocean.chcint.tavg-op4-hxy-sea.mon.GLB", + "ocean.ficeberg.tavg-ol-hxy-sea.mon.GLB", + "ocean.friver.tavg-u-hxy-sea.mon.GLB", + "ocean.hfbasin.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpmadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpmdiff.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpsmadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfds.tavg-u-hxy-sea.mon.30S-90S", + "ocean.hfx.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfx.tavg-u-hxy-sea.day.GLB", + "ocean.hfx.tavg-u-hxy-sea.mon.GLB", + "ocean.hfy.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfy.tavg-u-hxy-sea.day.GLB", + "ocean.hfy.tavg-u-hxy-sea.mon.GLB", + "ocean.htovgyre.tavg-u-hyb-sea.mon.GLB", + "ocean.htovovrt.tavg-u-hyb-sea.mon.GLB", + "ocean.masscello.tavg-ol-hxy-sea.dec.GLB", + "ocean.masso.tavg-u-hm-sea.dec.GLB", + "ocean.masso.tavg-u-hm-sea.mon.GLB", + "ocean.mlotst.tavg-u-hxy-sea.day.GLB", + "ocean.mlotst.tavg-u-hxy-sea.mon.30S-90S", + "ocean.mlotst.tmax-u-hxy-sea.mon.GLB", + "ocean.mlotst.tmin-u-hxy-sea.mon.GLB", + "ocean.mpw.tavg-u-hxy-sea.mon.GLB", + "ocean.mpw.tpt-u-hxy-sea.3hr.GLB", + "ocean.mpwswell.tavg-u-hxy-sea.mon.GLB", + "ocean.mpwswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.mpwwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.mpwwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.msftbarot.tavg-u-hxy-sea.mon.GLB", + "ocean.msftm.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftm.tavg-rho-hyb-sea.mon.GLB", + "ocean.msfty.tavg-ol-ht-sea.mon.GLB", + "ocean.msfty.tavg-rho-ht-sea.mon.GLB", + "ocean.obvfsq.tavg-ol-hxy-sea.mon.GLB", + "ocean.pbo.tavg-u-hxy-sea.mon.GLB", + "ocean.pfscint.tavg-op4-hxy-sea.mon.GLB", + "ocean.phcint.tavg-op4-hxy-sea.mon.GLB", + "ocean.pso.tavg-u-hxy-sea.mon.GLB", + "ocean.scint.tavg-op4-hxy-sea.mon.GLB", + "ocean.sduo.tavg-u-hxy-sea.mon.GLB", + "ocean.sduo.tpt-u-hxy-sea.3hr.GLB", + "ocean.sdvo.tavg-u-hxy-sea.mon.GLB", + "ocean.sdvo.tpt-u-hxy-sea.3hr.GLB", + "ocean.sfx.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfx.tavg-u-hxy-sea.mon.GLB", + "ocean.sfy.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfy.tavg-u-hxy-sea.mon.GLB", + "ocean.sltbasin.tavg-u-hyb-sea.mon.GLB", + "ocean.sltovgyre.tavg-u-hyb-sea.mon.GLB", + "ocean.sltovovrt.tavg-u-hyb-sea.mon.GLB", + "ocean.so.tavg-ol-hm-sea.mon.GLB", + "ocean.so.tavg-ol-hxy-sea.dec.GLB", + "ocean.so.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.sob.tavg-u-hxy-sea.mon.GLB", + "ocean.sos.tavg-u-hm-sea.mon.30S-90S", + "ocean.sos.tavg-u-hm-sea.mon.GLB", + "ocean.swh.tavg-u-hxy-sea.mon.GLB", + "ocean.swh.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhmax.tmax-u-hxy-sea.mon.GLB", + "ocean.swhmax.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhswell.tavg-u-hxy-sea.mon.GLB", + "ocean.swhswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.swhwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.tauuo.tavg-u-hxy-sea.3hr.GLB", + "ocean.tauuo.tavg-u-hxy-sea.dec.GLB", + "ocean.tauvo.tavg-u-hxy-sea.3hr.GLB", + "ocean.tauvo.tavg-u-hxy-sea.dec.GLB", + "ocean.thetao.tavg-ol-hm-sea.mon.GLB", + "ocean.thetao.tavg-ol-hxy-sea.dec.GLB", + "ocean.thetao.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.thetao.tavg-op20bar-hxy-sea.day.GLB", + "ocean.thkcello.tavg-ol-hxy-sea.dec.GLB", + "ocean.tob.tavg-u-hxy-sea.mon.GLB", + "ocean.tos.tavg-u-hm-sea.mon.GLB", + "ocean.tos.tavg-u-hxy-sea.mon.30S-90S", + "ocean.tos.tpt-u-hxy-sea.3hr.GLB", + "ocean.tossq.tavg-u-hxy-sea.day.GLB", + "ocean.umo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.uo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.uos.tavg-u-hxy-sea.day.GLB", + "ocean.vmo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.vo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.volcello.tavg-ol-hxy-sea.dec.GLB", + "ocean.volcello.tavg-ol-hxy-sea.mon.GLB", + "ocean.volcello.tavg-ol-hxy-sea.yr.GLB", + "ocean.volcello.ti-ol-hxy-sea.fx.GLB", + "ocean.volo.tavg-u-hm-sea.dec.GLB", + "ocean.volo.tavg-u-hm-sea.mon.GLB", + "ocean.vos.tavg-u-hxy-sea.day.GLB", + "ocean.wdir.tavg-u-hxy-sea.mon.GLB", + "ocean.wdir.tpt-u-hxy-sea.3hr.GLB", + "ocean.wdirswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wdirswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wdirwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wdirwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.wfcorr.tavg-u-hxy-sea.mon.GLB", + "ocean.wfo.tavg-u-hxy-sea.mon.GLB", + "ocean.wmo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.wo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.wpdir.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdir.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpdirswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdirswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpdirwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdirwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpp.tavg-u-hxy-sea.mon.GLB", + "ocean.wpp.tpt-u-hxy-sea.3hr.GLB", + "ocean.wppswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wppswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wppwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wppwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.zos.tavg-u-hxy-sea.mon.30S-90S", + "ocean.zossq.tavg-u-hxy-sea.mon.GLB", + "ocean.zostoga.tavg-u-hm-sea.day.GLB", + "ocnBgchem.bacc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.calc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chl.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chl.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chlcalc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chldiat.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chldiat.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chldiaz.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chldiaz.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chlmisc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chlmisc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chlpico.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chlpico.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.detoc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dfe.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.dfe.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissic.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.dissic.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissoc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dmso.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.expc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.expcalc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.fgco2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fsfe.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fsn.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.graz.tavg-ol-hxy-sea.mon.30S-90S", + "ocnBgchem.icfriver.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intdic.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intdoc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intparag.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbfe.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbn.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbp.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbsi.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpcalcite.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpn2.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpoc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpp.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpp.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppcalc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppdiat.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppdiaz.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppmisc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppnitrate.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpppico.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.nh4.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.nh4.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.no3.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.no3.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.o2.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.ocfriver.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.ph.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.ph.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phyc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phyc.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.phyc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phycalc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phycalc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phydiat.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phydiat.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phydiaz.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phydiaz.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phymisc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phymisc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phypico.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phypico.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.po4.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.pp.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.si.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.spco2.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.spco2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.talk.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zmeso.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zmeso.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zmicro.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zmicro.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zmisc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zmisc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zooc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zooc.tavg-ol-hxy-sea.mon.GLB", + "seaIce.evspsbl.tavg-u-hxy-si.mon.GLB", + "seaIce.prra.tavg-u-hxy-si.mon.GLB", + "seaIce.prsn.tavg-u-hxy-si.mon.GLB", + "seaIce.rlds.tavg-u-hxy-si.mon.GLB", + "seaIce.rlus.tavg-u-hxy-si.mon.GLB", + "seaIce.rsds.tavg-u-hxy-si.day.GLB", + "seaIce.rsds.tavg-u-hxy-si.mon.GLB", + "seaIce.rsus.tavg-u-hxy-si.day.GLB", + "seaIce.rsus.tavg-u-hxy-si.mon.GLB", + "seaIce.sbl.tavg-u-hxy-si.mon.GLB", + "seaIce.siage.tavg-u-hxy-si.day.GLB", + "seaIce.siage.tavg-u-hxy-si.mon.30S-90S", + "seaIce.siarea.tavg-u-hm-u.mon.NH", + "seaIce.siarea.tavg-u-hm-u.mon.SH", + "seaIce.siconc.tavg-u-hxy-u.mon.30S-90S", + "seaIce.siconca.tavg-u-hxy-u.day.GLB", + "seaIce.siconca.tavg-u-hxy-u.mon.GLB", + "seaIce.sidconcdyn.tavg-u-hxy-sea.mon.GLB", + "seaIce.sidconcth.tavg-u-hxy-sea.mon.GLB", + "seaIce.sidmassdyn.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthsi.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthwat.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmeltbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmeltlat.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmelttop.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassth.tavg-u-hxy-si.mon.GLB", + "seaIce.sieqthick.tavg-u-hxy-si.mon.GLB", + "seaIce.siextent.tavg-u-hm-u.mon.NH", + "seaIce.siextent.tavg-u-hm-u.mon.SH", + "seaIce.siflcondbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflcondtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sifllattop.tavg-u-hxy-si.mon.GLB", + "seaIce.siflsensbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflsenstop.tavg-u-hxy-si.mon.GLB", + "seaIce.siflswdbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sihc.tavg-u-hxy-sea.mon.GLB", + "seaIce.sisndmassdyn.tavg-u-hxy-si.mon.GLB", + "seaIce.sisndmasssi.tavg-u-hxy-si.mon.GLB", + "seaIce.sisndmasswind.tavg-u-hxy-si.mon.GLB", + "seaIce.sisnhc.tavg-u-hxy-si.mon.GLB", + "seaIce.sisnmass.tavg-u-hm-u.mon.NH", + "seaIce.sisnmass.tavg-u-hm-u.mon.SH", + "seaIce.sispeed.tavg-u-hxy-si.day.GLB", + "seaIce.sispeed.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-si.day.GLB", + "seaIce.sithick.tavg-u-hxy-si.mon.30S-90S", + "seaIce.sitimefrac.tavg-u-hxy-sea.day.GLB", + "seaIce.sitimefrac.tavg-u-hxy-sea.mon.30S-90S", + "seaIce.siu.tavg-u-hxy-si.day.GLB", + "seaIce.siu.tavg-u-hxy-si.mon.30S-90S", + "seaIce.siv.tavg-u-hxy-si.day.GLB", + "seaIce.siv.tavg-u-hxy-si.mon.30S-90S", + "seaIce.sivol.tavg-u-hm-u.mon.NH", + "seaIce.sivol.tavg-u-hm-u.mon.SH", + "seaIce.snc.tavg-u-hxy-si.mon.GLB", + "seaIce.snd.tavg-u-hxy-sn.day.GLB", + "seaIce.snd.tavg-u-hxy-sn.mon.30S-90S", + "seaIce.snm.tavg-u-hxy-si.mon.GLB", + "seaIce.snw.tavg-u-hxy-si.mon.GLB", + "seaIce.ts.tavg-u-hxy-si.day.GLB", + "seaIce.ts.tavg-u-hxy-si.mon.30S-90S" + ], + "Medium": [ + "atmos.rls.tavg-u-hxy-u.day.GLB", + "atmos.rls.tavg-u-hxy-u.mon.GLB", + "atmos.rss.tavg-u-hxy-u.day.GLB", + "atmos.rss.tavg-u-hxy-u.mon.GLB", + "land.cLeaf.tavg-u-hxy-lnd.mon.GLB", + "land.cLitterCwd.tavg-u-hxy-lnd.mon.GLB", + "land.cLitterSubSurf.tavg-u-hxy-lnd.mon.GLB", + "land.cLitterSurf.tavg-u-hxy-lnd.mon.GLB", + "land.cOther.tavg-u-hxy-lnd.mon.GLB", + "land.cRoot.tavg-u-hxy-lnd.mon.GLB", + "land.cropFracC3.tavg-u-hxy-u.mon.GLB", + "land.cropFracC4.tavg-u-hxy-u.mon.GLB", + "land.cSoil.tavg-sl-hxy-lnd.mon.GLB", + "land.cSoilPools.tavg-u-hxy-lnd.mon.GLB", + "land.cStem.tavg-u-hxy-lnd.mon.GLB", + "land.cVeg.tavg-u-hxy-ng.mon.GLB", + "land.cVeg.tavg-u-hxy-shb.mon.GLB", + "land.cVeg.tavg-u-hxy-tree.mon.GLB", + "land.fLitterFire.tavg-u-hxy-lnd.mon.GLB", + "land.fNgas.tavg-u-hxy-lnd.mon.GLB", + "land.fNgasFire.tavg-u-hxy-lnd.mon.GLB", + "land.fNgasNonFire.tavg-u-hxy-lnd.mon.GLB", + "land.fNleach.tavg-u-hxy-lnd.mon.GLB", + "land.fVegFire.tavg-u-hxy-lnd.mon.GLB", + "land.fVegLitterMortality.tavg-u-hxy-lnd.mon.GLB", + "land.fVegLitterSenescence.tavg-u-hxy-lnd.mon.GLB", + "land.fVegSoilMortality.tavg-u-hxy-lnd.mon.GLB", + "land.fVegSoilSenescence.tavg-u-hxy-lnd.mon.GLB", + "land.gpp.tavg-u-hxy-ng.mon.GLB", + "land.gpp.tavg-u-hxy-shb.mon.GLB", + "land.gpp.tavg-u-hxy-tree.mon.GLB", + "land.grassFracC3.tavg-u-hxy-u.mon.GLB", + "land.grassFracC4.tavg-u-hxy-u.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.3hr.GLB", + "land.mrros.tavg-u-hxy-lnd.3hr.GLB", + "land.mrsol.tpt-d10cm-hxy-lnd.3hr.GLB", + "land.nLeaf.tavg-u-hxy-lnd.mon.GLB", + "land.nLitterCwd.tavg-u-hxy-lnd.mon.GLB", + "land.nLitterSubSurf.tavg-u-hxy-lnd.mon.GLB", + "land.nLitterSurf.tavg-u-hxy-lnd.mon.GLB", + "land.nMineralNH4.tavg-u-hxy-lnd.mon.GLB", + "land.nMineralNO3.tavg-u-hxy-lnd.mon.GLB", + "land.nOther.tavg-u-hxy-lnd.mon.GLB", + "land.npp.tavg-u-hxy-ng.mon.GLB", + "land.npp.tavg-u-hxy-shb.mon.GLB", + "land.npp.tavg-u-hxy-tree.mon.GLB", + "land.nppLeaf.tavg-u-hxy-lnd.mon.GLB", + "land.nppOther.tavg-u-hxy-lnd.mon.GLB", + "land.nppRoot.tavg-u-hxy-lnd.mon.GLB", + "land.nppStem.tavg-u-hxy-lnd.mon.GLB", + "land.nRoot.tavg-u-hxy-lnd.mon.GLB", + "land.nStem.tavg-u-hxy-lnd.mon.GLB", + "land.pastureFracC3.tavg-u-hxy-u.mon.GLB", + "land.pastureFracC4.tavg-u-hxy-u.mon.GLB", + "land.ra.tavg-u-hxy-ng.mon.GLB", + "land.ra.tavg-u-hxy-shb.mon.GLB", + "land.ra.tavg-u-hxy-tree.mon.GLB", + "land.raLeaf.tavg-u-hxy-lnd.mon.GLB", + "land.raOther.tavg-u-hxy-lnd.mon.GLB", + "land.raRoot.tavg-u-hxy-lnd.mon.GLB", + "land.raStem.tavg-u-hxy-lnd.mon.GLB", + "land.rh.tavg-u-hxy-ng.mon.GLB", + "land.rh.tavg-u-hxy-shb.mon.GLB", + "land.rh.tavg-u-hxy-tree.mon.GLB", + "land.rhLitter.tavg-u-hxy-lnd.mon.GLB", + "land.rhSoil.tavg-u-hxy-lnd.mon.GLB", + "land.treeFracBdlDcd.tavg-u-hxy-u.mon.GLB", + "land.treeFracBdlEvg.tavg-u-hxy-u.mon.GLB", + "land.treeFracNdlDcd.tavg-u-hxy-u.mon.GLB", + "land.treeFracNdlEvg.tavg-u-hxy-u.mon.GLB", + "land.vegHeight.tavg-u-hxy-ng.mon.GLB", + "land.vegHeight.tavg-u-hxy-shb.mon.GLB", + "land.vegHeight.tavg-u-hxy-tree.mon.GLB", + "land.wetlandCH4cons.tavg-u-hxy-lnd.mon.GLB", + "land.wetlandCH4prod.tavg-u-hxy-lnd.mon.GLB", + "land.wetlandFrac.tavg-u-hxy-u.mon.GLB", + "ocean.evspsbl.tavg-u-hxy-ifs.mon.GLB", + "ocean.ficeberg.tavg-u-hxy-sea.mon.GLB", + "ocean.hfacrossline.tavg-u-ht-sea.mon.GLB", + "ocean.hfevapds.tavg-u-hxy-ifs.mon.GLB", + "ocean.hfibthermds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfibthermds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfrainds.tavg-u-hxy-ifs.mon.GLB", + "ocean.hfrunoffds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfrunoffds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfsnthermds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfsnthermds.tavg-u-hxy-sea.mon.GLB", + "ocean.mfo.tavg-u-ht-sea.mon.GLB", + "ocean.sf6.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfacrossline.tavg-u-ht-sea.mon.GLB", + "ocean.sfdsi.tavg-u-hxy-sea.mon.GLB", + "ocean.sfriver.tavg-u-hxy-sea.mon.GLB", + "ocean.siflfwbot.tavg-u-hxy-sea.mon.GLB", + "ocean.so.tavg-ol-hxy-sea.day.GLB", + "ocean.tnkebto.tavg-u-hxy-sea.yr.GLB", + "ocean.vsf.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfcorr.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfevap.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfpr.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfriver.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfsit.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.arag.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.arag.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.calc.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.calc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chl.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.chlcalc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dmso.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.epn.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.epp.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.expc.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.expcalc.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.fgdms.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fric.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.froc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.graz.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.intppcalc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppdiat.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppdiaz.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppmisc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppnitrate.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intpppico.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.o2.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.ph.tavg-op20bar-hxy-sea.day.GLB", + "seaIce.sfdsi.tavg-u-hxy-si.mon.GLB", + "seaIce.siage.tavg-u-hxy-si.mon.GLB", + "seaIce.siarea.tavg-u-hm-u.day.NH", + "seaIce.siarea.tavg-u-hm-u.day.SH", + "seaIce.siareaacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.sicompstren.tavg-u-hxy-si.mon.GLB", + "seaIce.sidivvel.tpt-u-hxy-si.mon.GLB", + "seaIce.sidmasstranx.tavg-u-hxy-u.mon.GLB", + "seaIce.sidmasstrany.tavg-u-hxy-u.mon.GLB", + "seaIce.sidragbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidragtop.tavg-u-hxy-si.mon.GLB", + "seaIce.siextent.tavg-u-hm-u.day.NH", + "seaIce.siextent.tavg-u-hm-u.day.SH", + "seaIce.sifb.tavg-u-hxy-si.mon.GLB", + "seaIce.siflfwbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflfwdrain.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcecoriolx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcecorioly.tavg-u-hxy-si.mon.GLB", + "seaIce.siforceintstrx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforceintstry.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcetiltx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcetilty.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdconc.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdsnconc.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdsnthick.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdthick.tavg-u-hxy-si.mon.GLB", + "seaIce.simassacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.simpconc.tavg-u-hxy-si.mon.GLB", + "seaIce.simpeffconc.tavg-u-hxy-si.mon.GLB", + "seaIce.simprefrozen.tavg-u-hxy-simp.mon.GLB", + "seaIce.simpthick.tavg-u-hxy-simp.mon.GLB", + "seaIce.sirdgconc.tavg-u-hxy-si.mon.GLB", + "seaIce.sisali.tavg-u-hxy-si.mon.GLB", + "seaIce.sisaltmass.tavg-u-hxy-si.mon.GLB", + "seaIce.sishearvel.tpt-u-hxy-si.mon.GLB", + "seaIce.sisnmass.tavg-u-hm-u.day.NH", + "seaIce.sisnmass.tavg-u-hm-u.day.SH", + "seaIce.sisnmassacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.sistressave.tpt-u-hxy-si.mon.GLB", + "seaIce.sistressmax.tpt-u-hxy-si.mon.GLB", + "seaIce.sistrxdtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sistrxubot.tavg-u-hxy-si.mon.GLB", + "seaIce.sistrydtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sistryubot.tavg-u-hxy-si.mon.GLB", + "seaIce.sitempbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sitempsnic.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-sir.mon.GLB", + "seaIce.sivol.tavg-u-hm-u.day.NH", + "seaIce.sivol.tavg-u-hm-u.day.SH" + ], + "Low": [ + "land.c13Land.tavg-u-hxy-lnd.mon.GLB", + "land.c13Litter.tavg-u-hxy-lnd.mon.GLB", + "land.c13Soil.tavg-u-hxy-lnd.mon.GLB", + "land.c13Veg.tavg-u-hxy-lnd.mon.GLB", + "land.c14Land.tavg-u-hxy-lnd.mon.GLB", + "land.c14Litter.tavg-u-hxy-lnd.mon.GLB", + "land.c14Soil.tavg-u-hxy-lnd.mon.GLB", + "land.c14Veg.tavg-u-hxy-lnd.mon.GLB", + "land.gppc13.tavg-u-hxy-lnd.mon.GLB", + "land.gppc14.tavg-u-hxy-lnd.mon.GLB", + "land.netAtmosLandC13Flux.tavg-u-hxy-lnd.mon.GLB", + "land.netAtmosLandC14Flux.tavg-u-hxy-lnd.mon.GLB", + "land.rac13.tavg-u-hxy-lnd.mon.GLB", + "land.rac14.tavg-u-hxy-lnd.mon.GLB", + "land.rhc13.tavg-u-hxy-lnd.mon.GLB", + "land.rhc14.tavg-u-hxy-lnd.mon.GLB", + "ocean.difmxybo.tavg-ol-hxy-sea.yr.GLB", + "ocean.difmxylo.tavg-ol-hxy-sea.yr.GLB", + "ocean.diftrblo.tavg-ol-hxy-sea.yr.GLB", + "ocean.diftrelo.tavg-ol-hxy-sea.yr.GLB", + "ocean.difvho.tavg-ol-hxy-sea.yr.GLB", + "ocean.difvso.tavg-ol-hxy-sea.yr.GLB", + "ocean.dispkexyfo.tavg-u-hxy-sea.yr.GLB", + "ocean.dxto.ti-u-hxy-u.fx.GLB", + "ocean.dxuo.ti-u-hxy-u.fx.GLB", + "ocean.dxvo.ti-u-hxy-u.fx.GLB", + "ocean.dyto.ti-u-hxy-u.fx.GLB", + "ocean.dyuo.ti-u-hxy-u.fx.GLB", + "ocean.dyvo.ti-u-hxy-u.fx.GLB", + "ocean.mlotstsq.tavg-u-hxy-sea.mon.GLB", + "ocean.msftmmpa.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftmmpa.tavg-rho-hyb-sea.mon.GLB", + "ocean.msftmsmpa.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftypa.tavg-ol-ht-sea.mon.GLB", + "ocean.msftypa.tavg-rho-ht-sea.mon.GLB", + "ocean.ocontempdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontempmint.tavg-u-hxy-sea.yr.GLB", + "ocean.ocontemppadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemppmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemppsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemprmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemptend.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottempdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottempmint.tavg-u-hxy-sea.yr.GLB", + "ocean.opottemppadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemppmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemppsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemprmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemptend.tavg-ol-hxy-sea.dec.GLB", + "ocean.osaltdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpsmadvect.tavg-ol-hxy-sea.mon.GLB", + "ocean.osaltpsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltrmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osalttend.tavg-ol-hxy-sea.yr.GLB", + "ocean.rsdoabsorb.tavg-ol-hxy-sea.yr.GLB", + "ocean.somint.tavg-u-hxy-sea.yr.GLB", + "ocean.sossq.tavg-u-hxy-sea.mon.GLB", + "ocean.thkcelluo.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcellvo.tavg-ol-hxy-sea.mon.GLB", + "ocean.tnpeo.tavg-u-hxy-sea.yr.GLB", + "ocean.tossq.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.dissi13c.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.dissi13c.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissi14c.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissi14cabio.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.dissi14cabio.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.fg13co2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fg14co2abio.tavg-u-hxy-sea.mon.GLB" + ] + }, + "piClim-histall": { + "Core": [ + "atmos.areacella.ti-u-hxy-u.fx.GLB", + "atmos.cl.tavg-al-hxy-u.mon.GLB", + "atmos.cli.tavg-al-hxy-u.mon.GLB", + "atmos.clivi.tavg-u-hxy-u.mon.GLB", + "atmos.clt.tavg-u-hxy-u.day.GLB", + "atmos.clt.tavg-u-hxy-u.mon.GLB", + "atmos.clw.tavg-al-hxy-u.mon.GLB", + "atmos.clwvi.tavg-u-hxy-u.mon.GLB", + "atmos.evspsbl.tavg-u-hxy-u.mon.GLB", + "atmos.hfls.tavg-u-hxy-u.mon.GLB", + "atmos.hfss.tavg-u-hxy-u.mon.GLB", + "atmos.hur.tavg-p19-hxy-air.mon.GLB", + "atmos.hur.tavg-p19-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.6hr.GLB", + "atmos.hurs.tavg-h2m-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.mon.GLB", + "atmos.hus.tavg-p19-hxy-u.day.GLB", + "atmos.hus.tavg-p19-hxy-u.mon.GLB", + "atmos.huss.tavg-h2m-hxy-u.day.GLB", + "atmos.huss.tavg-h2m-hxy-u.mon.GLB", + "atmos.huss.tpt-h2m-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.1hr.GLB", + "atmos.pr.tavg-u-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.day.GLB", + "atmos.pr.tavg-u-hxy-u.mon.GLB", + "atmos.prc.tavg-u-hxy-u.mon.GLB", + "atmos.prsn.tavg-u-hxy-u.mon.GLB", + "atmos.prw.tavg-u-hxy-u.mon.GLB", + "atmos.ps.tavg-u-hxy-u.day.GLB", + "atmos.ps.tavg-u-hxy-u.mon.GLB", + "atmos.psl.tavg-u-hxy-u.day.GLB", + "atmos.psl.tavg-u-hxy-u.mon.GLB", + "atmos.rlds.tavg-u-hxy-u.mon.GLB", + "atmos.rldscs.tavg-u-hxy-u.mon.GLB", + "atmos.rlus.tavg-u-hxy-u.mon.GLB", + "atmos.rluscs.tavg-u-hxy-u.mon.GLB", + "atmos.rlut.tavg-u-hxy-u.mon.GLB", + "atmos.rlutcs.tavg-u-hxy-u.mon.GLB", + "atmos.rsds.tavg-u-hxy-u.day.GLB", + "atmos.rsds.tavg-u-hxy-u.mon.GLB", + "atmos.rsdscs.tavg-u-hxy-u.mon.GLB", + "atmos.rsdt.tavg-u-hxy-u.mon.GLB", + "atmos.rsus.tavg-u-hxy-u.mon.GLB", + "atmos.rsuscs.tavg-u-hxy-u.mon.GLB", + "atmos.rsut.tavg-u-hxy-u.mon.GLB", + "atmos.rsutcs.tavg-u-hxy-u.mon.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.day.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.mon.GLB", + "atmos.sftlf.ti-u-hxy-u.fx.GLB", + "atmos.ta.tavg-p19-hxy-air.day.GLB", + "atmos.ta.tavg-p19-hxy-air.mon.GLB", + "atmos.ta.tpt-p3-hxy-air.6hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.day.GLB", + "atmos.tas.tavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tmax-h2m-hxy-u.day.GLB", + "atmos.tas.tmaxavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tmin-h2m-hxy-u.day.GLB", + "atmos.tas.tminavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tpt-h2m-hxy-u.3hr.GLB", + "atmos.tauu.tavg-u-hxy-u.mon.GLB", + "atmos.tauv.tavg-u-hxy-u.mon.GLB", + "atmos.ts.tavg-u-hxy-u.mon.GLB", + "atmos.ua.tavg-p19-hxy-air.day.GLB", + "atmos.ua.tavg-p19-hxy-air.mon.GLB", + "atmos.ua.tpt-p3-hxy-air.6hr.GLB", + "atmos.uas.tavg-h10m-hxy-u.day.GLB", + "atmos.uas.tavg-h10m-hxy-u.mon.GLB", + "atmos.uas.tpt-h10m-hxy-u.3hr.GLB", + "atmos.va.tavg-p19-hxy-air.day.GLB", + "atmos.va.tavg-p19-hxy-air.mon.GLB", + "atmos.va.tpt-p3-hxy-air.6hr.GLB", + "atmos.vas.tavg-h10m-hxy-u.day.GLB", + "atmos.vas.tavg-h10m-hxy-u.mon.GLB", + "atmos.vas.tpt-h10m-hxy-u.3hr.GLB", + "atmos.wap.tavg-p19-hxy-air.mon.GLB", + "atmos.wap.tavg-p19-hxy-u.day.GLB", + "atmos.zg.tavg-p19-hxy-air.day.GLB", + "atmos.zg.tavg-p19-hxy-air.mon.GLB", + "land.evspsblsoi.tavg-u-hxy-lnd.mon.GLB", + "land.evspsblveg.tavg-u-hxy-lnd.mon.GLB", + "land.lai.tavg-u-hxy-lnd.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.mon.GLB", + "land.mrros.tavg-u-hxy-lnd.mon.GLB", + "land.mrso.tavg-u-hxy-lnd.mon.GLB", + "land.mrsofc.ti-u-hxy-lnd.fx.GLB", + "land.mrsol.tavg-d10cm-hxy-lnd.mon.GLB", + "land.orog.ti-u-hxy-u.fx.GLB", + "land.rootd.ti-u-hxy-lnd.fx.GLB", + "land.sftgif.ti-u-hxy-u.fx.GLB", + "land.slthick.ti-sl-hxy-lnd.fx.GLB", + "landIce.mrfso.tavg-u-hxy-lnd.mon.GLB", + "landIce.snc.tavg-u-hxy-lnd.mon.GLB", + "landIce.snw.tavg-u-hxy-lnd.mon.GLB", + "ocean.areacello.ti-u-hxy-u.fx.GLB", + "ocean.basin.ti-u-hxy-u.fx.GLB", + "ocean.bigthetao.tavg-ol-hxy-sea.mon.GLB", + "ocean.deptho.ti-u-hxy-sea.fx.GLB", + "ocean.hfds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfgeou.ti-u-hxy-sea.fx.GLB", + "ocean.masscello.tavg-ol-hxy-sea.mon.GLB", + "ocean.masscello.ti-ol-hxy-sea.fx.GLB", + "ocean.mlotst.tavg-u-hxy-sea.mon.GLB", + "ocean.sftof.ti-u-hxy-u.fx.GLB", + "ocean.so.tavg-ol-hxy-sea.mon.GLB", + "ocean.sos.tavg-u-hxy-sea.day.GLB", + "ocean.sos.tavg-u-hxy-sea.mon.GLB", + "ocean.tauuo.tavg-u-hxy-sea.mon.GLB", + "ocean.tauvo.tavg-u-hxy-sea.mon.GLB", + "ocean.thetao.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcello.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcello.ti-ol-hxy-sea.fx.GLB", + "ocean.tos.tavg-u-hxy-sea.day.GLB", + "ocean.tos.tavg-u-hxy-sea.mon.GLB", + "ocean.umo.tavg-ol-hxy-sea.mon.GLB", + "ocean.uo.tavg-ol-hxy-sea.mon.GLB", + "ocean.vmo.tavg-ol-hxy-sea.mon.GLB", + "ocean.vo.tavg-ol-hxy-sea.mon.GLB", + "ocean.wmo.tavg-ol-hxy-sea.mon.GLB", + "ocean.wo.tavg-ol-hxy-sea.mon.GLB", + "ocean.zos.tavg-u-hxy-sea.day.GLB", + "ocean.zos.tavg-u-hxy-sea.mon.GLB", + "ocean.zostoga.tavg-u-hm-sea.mon.GLB", + "seaIce.siconc.tavg-u-hxy-u.day.GLB", + "seaIce.siconc.tavg-u-hxy-u.mon.GLB", + "seaIce.simass.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-si.mon.GLB", + "seaIce.sitimefrac.tavg-u-hxy-sea.mon.GLB", + "seaIce.siu.tavg-u-hxy-si.mon.GLB", + "seaIce.siv.tavg-u-hxy-si.mon.GLB", + "seaIce.snd.tavg-u-hxy-sn.mon.GLB", + "seaIce.ts.tavg-u-hxy-si.mon.GLB" + ], + "High": [ + "aerosol.abs550aer.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550bc.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550dust.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550no3.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550oa.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550so4.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550ss.tavg-u-hxy-u.mon.GLB", + "aerosol.airmass.tavg-al-hxy-u.mon.GLB", + "aerosol.aoanh.tavg-al-hxy-u.mon.NH", + "aerosol.bry.tavg-p39-hy-air.mon.GLB", + "aerosol.bs550aer.tpt-al-hxy-u.6hr.GLB", + "aerosol.c2h6.tavg-al-hxy-u.mon.GLB", + "aerosol.c3h6.tavg-al-hxy-u.mon.GLB", + "aerosol.c3h8.tavg-al-hxy-u.mon.GLB", + "aerosol.ccldncl.tavg-u-hxy-ccl.mon.GLB", + "aerosol.ccn.tavg-u-hxy-ccl.mon.30S-90S", + "aerosol.ccn.tavg-u-hxy-ccl.mon.GLB", + "aerosol.ccn1.tavg-al-hxy-u.mon.30S-90S", + "aerosol.ccn1.tavg-al-hxy-u.mon.GLB", + "aerosol.ccnp02.tavg-al-hxy-u.mon.30S-90S", + "aerosol.ccnp02.tavg-al-hxy-u.mon.GLB", + "aerosol.cdnc.tavg-al-hxy-u.mon.30S-90S", + "aerosol.cdnc.tavg-al-hxy-u.mon.GLB", + "aerosol.cfc114.tavg-al-hxy-u.mon.GLB", + "aerosol.ch3coch3.tavg-al-hxy-u.mon.GLB", + "aerosol.cheaqpso4.tavg-al-hxy-u.mon.GLB", + "aerosol.chegpso4.tavg-al-hxy-u.mon.GLB", + "aerosol.chepasoa.tavg-u-hxy-u.mon.GLB", + "aerosol.chepsoa.tavg-u-hxy-u.mon.GLB", + "aerosol.cly.tavg-p39-hy-air.mon.GLB", + "aerosol.co.tavg-al-hxy-u.mon.GLB", + "aerosol.co.tavg-h2m-hxy-u.day.GLB", + "aerosol.cod.tavg-u-hxy-u.day.GLB", + "aerosol.cod.tavg-u-hxy-u.mon.30S-90S", + "aerosol.cod.tavg-u-hxy-u.mon.GLB", + "aerosol.conccn.tavg-al-hxy-u.mon.GLB", + "aerosol.conccn.tpt-u-hs-u.3hr.GLB", + "aerosol.drybc.tavg-u-hxy-u.mon.GLB", + "aerosol.drydust.tavg-u-hxy-u.mon.GLB", + "aerosol.dryno3.tavg-u-hxy-u.mon.GLB", + "aerosol.dryo3.tavg-u-hxy-u.mon.GLB", + "aerosol.dryoa.tavg-u-hxy-u.mon.GLB", + "aerosol.dryso2.tavg-u-hxy-u.mon.GLB", + "aerosol.dryso4.tavg-u-hxy-u.mon.GLB", + "aerosol.dryss.tavg-u-hxy-u.mon.GLB", + "aerosol.ec550aer.tavg-al-hxy-u.mon.GLB", + "aerosol.ec550aer.tpt-u-hxy-u.6hr.GLB", + "aerosol.emiaco.tavg-u-hxy-u.mon.GLB", + "aerosol.emianox.tavg-u-hxy-u.mon.GLB", + "aerosol.emiaoa.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbbc.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbch4.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbco.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbdms.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbnh3.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbnox.tavg-u-hxy-u.mon.GLB", + "aerosol.emibboa.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbso2.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbvoc.tavg-u-hxy-u.mon.GLB", + "aerosol.emibc.tavg-u-hxy-u.mon.GLB", + "aerosol.emibvoc.tavg-u-hxy-u.mon.GLB", + "aerosol.emico.tavg-u-hxy-u.mon.GLB", + "aerosol.emidms.tavg-u-hxy-u.mon.30S-90S", + "aerosol.emidms.tavg-u-hxy-u.mon.GLB", + "aerosol.emidust.tavg-u-hxy-u.mon.GLB", + "aerosol.emiisop.tavg-u-hxy-u.mon.GLB", + "aerosol.emilnox.tavg-al-hxy-u.mon.GLB", + "aerosol.eminh3.tavg-u-hxy-u.mon.GLB", + "aerosol.eminox.tavg-u-hxy-u.mon.GLB", + "aerosol.emioa.tavg-u-hxy-u.mon.GLB", + "aerosol.emiso2.tavg-u-hxy-u.mon.GLB", + "aerosol.emiso4.tavg-u-hxy-u.mon.GLB", + "aerosol.emiss.tavg-u-hxy-u.mon.30S-90S", + "aerosol.emiss.tavg-u-hxy-u.mon.GLB", + "aerosol.emivoc.tavg-u-hxy-u.mon.GLB", + "aerosol.h2o.tavg-al-hxy-u.mon.GLB", + "aerosol.h2o.tavg-p39-hy-air.mon.GLB", + "aerosol.hcfc22.tavg-al-hxy-u.mon.GLB", + "aerosol.hcho.tavg-al-hxy-u.mon.GLB", + "aerosol.hcl.tavg-al-hxy-u.mon.GLB", + "aerosol.hcl.tavg-p39-hy-air.mon.GLB", + "aerosol.hfc125.tavg-al-hxy-u.mon.GLB", + "aerosol.hfc134a.tavg-al-hxy-u.mon.GLB", + "aerosol.hno3.tavg-al-hxy-u.mon.GLB", + "aerosol.hno3.tavg-p39-hy-air.mon.GLB", + "aerosol.ho2.tavg-p39-hy-air.mon.GLB", + "aerosol.isop.tavg-al-hxy-u.mon.GLB", + "aerosol.jno2.tavg-al-hxy-u.mon.GLB", + "aerosol.lossch4.tavg-al-hxy-u.mon.GLB", + "aerosol.lossco.tavg-al-hxy-u.mon.GLB", + "aerosol.lossn2o.tavg-al-hxy-u.mon.GLB", + "aerosol.lwp.tavg-u-hxy-u.mon.GLB", + "aerosol.mmraerh2o.tavg-al-hxy-u.mon.GLB", + "aerosol.mmraerh2o.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmraerh2o.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrbc.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrbc.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrbc.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrbc.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrdust.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrdust.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrdust.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrdust.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrnh4.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrnh4.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrnh4.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrnh4.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrno3.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrno3.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrno3.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrno3.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmroa.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmroa.tavg-al-hxy-u.mon.GLB", + "aerosol.mmroa.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmroa.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrpm1.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrpm1.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrpm2p5.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrpm2p5.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrso4.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrso4.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrso4.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrso4.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrsoa.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrsoa.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrsoa.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrss.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrss.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrss.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrss.tpt-h2m-hs-u.3hr.GLB", + "aerosol.nh50.tavg-al-hxy-u.mon.GLB", + "aerosol.no.tavg-al-hxy-u.mon.GLB", + "aerosol.no2.tavg-al-hxy-u.mon.GLB", + "aerosol.no2.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.noy.tavg-p39-hy-air.mon.GLB", + "aerosol.o3.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.o3loss.tavg-al-hxy-u.mon.GLB", + "aerosol.o3prod.tavg-al-hxy-u.mon.GLB", + "aerosol.od443aer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550aer.tavg-u-hxy-u.day.GLB", + "aerosol.od550aer.tavg-u-hxy-u.mon.30S-90S", + "aerosol.od550aer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550aerh2o.tavg-u-hxy-u.mon.GLB", + "aerosol.od550bb.tavg-u-hxy-u.mon.GLB", + "aerosol.od550bc.tavg-u-hxy-u.mon.GLB", + "aerosol.od550csaer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550dust.tavg-u-hxy-u.mon.GLB", + "aerosol.od550lt1aer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550no3.tavg-u-hxy-u.mon.GLB", + "aerosol.od550oa.tavg-u-hxy-u.mon.GLB", + "aerosol.od550so4.tavg-u-hxy-u.mon.GLB", + "aerosol.od550soa.tavg-u-hxy-u.mon.GLB", + "aerosol.od550ss.tavg-u-hxy-u.mon.GLB", + "aerosol.od865aer.tavg-u-hxy-u.mon.GLB", + "aerosol.oh.tavg-al-hxy-u.mon.GLB", + "aerosol.oh.tavg-p39-hy-air.mon.GLB", + "aerosol.pan.tavg-al-hxy-u.mon.GLB", + "aerosol.photo1d.tavg-al-hxy-u.mon.GLB", + "aerosol.pod0.tsum-u-hxy-u.mon.GLB", + "aerosol.reffccwctop.tavg-u-hxy-cl.mon.GLB", + "aerosol.reffclwtop.tavg-u-hxy-cl.mon.30S-90S", + "aerosol.reffclwtop.tavg-u-hxy-cl.mon.GLB", + "aerosol.rluscsaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rlutaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rlutcsaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rsutaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rsutcsaf.tavg-u-hxy-u.mon.GLB", + "aerosol.sfpm1.tavg-h2m-hxy-u.day.GLB", + "aerosol.sfpm10.tavg-al-hxy-u.mon.30S-90S", + "aerosol.sfpm10.tavg-al-hxy-u.mon.GLB", + "aerosol.sfpm10.tavg-h2m-hxy-u.day.GLB", + "aerosol.sfpm25.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.sfpm25.tavg-h2m-hxy-u.day.GLB", + "aerosol.so2.tavg-al-hxy-u.mon.30S-90S", + "aerosol.so2.tavg-al-hxy-u.mon.GLB", + "aerosol.so2.tavg-h2m-hxy-u.day.GLB", + "aerosol.so2.tpt-h2m-hs-u.3hr.GLB", + "aerosol.tatp.tavg-u-hxy-u.mon.GLB", + "aerosol.toz.tavg-u-hxy-u.day.GLB", + "aerosol.toz.tavg-u-hxy-u.mon.GLB", + "aerosol.tropoz.tavg-u-hxy-u.mon.GLB", + "aerosol.ttop.tavg-u-hxy-cl.mon.GLB", + "aerosol.ua.tavg-10hPa-hxy-air.day.GLB", + "aerosol.vt100.tavg-100hPa-hy-air.mon.GLB", + "aerosol.wa.tavg-al-hxy-u.mon.GLB", + "aerosol.wetbc.tavg-u-hxy-u.mon.GLB", + "aerosol.wetdust.tavg-u-hxy-u.mon.GLB", + "aerosol.wetoa.tavg-u-hxy-u.mon.GLB", + "aerosol.wetso2.tavg-u-hxy-u.mon.GLB", + "aerosol.wetso4.tavg-u-hxy-u.mon.GLB", + "aerosol.wetss.tavg-u-hxy-u.mon.GLB", + "aerosol.zg.tavg-10hPa-hxy-air.day.GLB", + "atmos.albisccp.tavg-u-hxy-cl.mon.30S-90S", + "atmos.bldep.tavg-u-hxy-u.mon.GLB", + "atmos.bldep.tmax-u-hxy-u.day.GLB", + "atmos.bldep.tmin-u-hxy-u.day.GLB", + "atmos.cl.tavg-al-hxy-u.mon.30S-90S", + "atmos.clc.tavg-al-hxy-u.mon.30S-90S", + "atmos.clc.tavg-al-hxy-u.mon.GLB", + "atmos.clcalipso.tavg-220hPa-hxy-air.mon.30S-90S", + "atmos.clcalipso.tavg-220hPa-hxy-air.mon.GLB", + "atmos.clcalipso.tavg-560hPa-hxy-air.mon.30S-90S", + "atmos.clcalipso.tavg-560hPa-hxy-air.mon.GLB", + "atmos.clcalipso.tavg-840hPa-hxy-air.mon.30S-90S", + "atmos.clcalipso.tavg-840hPa-hxy-air.mon.GLB", + "atmos.clcalipso.tavg-h40-hxy-air.mon.30S-90S", + "atmos.cldnci.tavg-u-hxy-cl.mon.GLB", + "atmos.cldncl.tavg-u-hxy-cl.mon.GLB", + "atmos.cldnvi.tavg-u-hxy-u.mon.GLB", + "atmos.cli.tavg-al-hxy-u.mon.30S-90S", + "atmos.clic.tavg-al-hxy-u.mon.30S-90S", + "atmos.clis.tavg-al-hxy-u.mon.30S-90S", + "atmos.clisccp.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clisccp.tavg-p7c-hxy-air.mon.GLB", + "atmos.clivi.tavg-u-hxy-u.mon.30S-90S", + "atmos.clivimodis.tavg-u-hxy-u.mon.30S-90S", + "atmos.clmodis.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clmodis.tavg-p7c-hxy-air.mon.GLB", + "atmos.clmodisice.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clmodisice.tavg-p7c-hxy-air.mon.GLB", + "atmos.clmodisiceReff.tavg-u-hxy-u.mon.GLB", + "atmos.clmodisliquid.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clmodisliquid.tavg-p7c-hxy-air.mon.GLB", + "atmos.clmodisliquidReff.tavg-u-hxy-u.mon.GLB", + "atmos.cls.tavg-al-hxy-u.mon.30S-90S", + "atmos.clt.tavg-u-hxy-u.mon.30S-90S", + "atmos.cltc.tavg-u-hxy-u.mon.GLB", + "atmos.cltcalipso.tavg-u-hxy-u.mon.30S-90S", + "atmos.cltisccp.tavg-u-hxy-u.mon.30S-90S", + "atmos.cltmodis.tavg-u-hxy-u.mon.30S-90S", + "atmos.clw.tavg-al-hxy-u.mon.30S-90S", + "atmos.clwc.tavg-al-hxy-u.mon.30S-90S", + "atmos.clws.tavg-al-hxy-u.mon.30S-90S", + "atmos.clwvi.tavg-u-hxy-u.mon.30S-90S", + "atmos.clwvimodis.tavg-u-hxy-u.mon.30S-90S", + "atmos.co2.tavg-al-hxy-u.mon.GLB", + "atmos.co2.tavg-p19-hxy-air.mon.GLB", + "atmos.co23D.tavg-al-hxy-u.mon.GLB", + "atmos.co2mass.tavg-u-hm-u.mon.GLB", + "atmos.dmc.tavg-alh-hxy-u.mon.30S-90S", + "atmos.edt.tavg-al-hxy-u.mon.30S-90S", + "atmos.evspsbl.tavg-u-hxy-lnd.day.GLB", + "atmos.evu.tavg-al-hxy-u.mon.30S-90S", + "atmos.fco2antt.tavg-u-hxy-u.mon.GLB", + "atmos.fco2fos.tavg-u-hxy-u.mon.GLB", + "atmos.fco2nat.tavg-u-hxy-u.mon.GLB", + "atmos.hfls.tavg-u-hxy-u.mon.30S-90S", + "atmos.hfss.tavg-u-hxy-u.mon.30S-90S", + "atmos.hur.tavg-al-hxy-u.mon.30S-90S", + "atmos.hur.tavg-al-hxy-u.mon.GLB", + "atmos.hur.tavg-p19-hxy-air.mon.30S-90S", + "atmos.hurs.tavg-h2m-hxy-u.mon.30S-90S", + "atmos.hus.tavg-al-hxy-u.mon.30S-90S", + "atmos.hus.tavg-al-hxy-u.mon.GLB", + "atmos.hus.tavg-p19-hxy-u.mon.30S-90S", + "atmos.hus.tpt-al-hxy-u.6hr.GLB", + "atmos.hus.tpt-p7h-hxy-air.6hr.GLB", + "atmos.huss.tavg-h2m-hxy-u.mon.30S-90S", + "atmos.huss.tpt-h2m-hxy-u.1hr.GLB", + "atmos.mc.tavg-alh-hxy-u.mon.GLB", + "atmos.mcd.tavg-alh-hxy-u.mon.30S-90S", + "atmos.mcu.tavg-alh-hxy-u.mon.30S-90S", + "atmos.mcu.tavg-alh-hxy-u.mon.GLB", + "atmos.pctisccp.tavg-u-hxy-cl.mon.30S-90S", + "atmos.pfull.tavg-al-hxy-u.mon.GLB", + "atmos.pfull.tclm-al-hxy-u.mon.30S-90S", + "atmos.phalf.tavg-alh-hxy-u.mon.GLB", + "atmos.pr.tavg-u-hxy-u.mon.30S-90S", + "atmos.pr.tmax-u-hxy-u.day.GLB", + "atmos.pr.tpt-u-hxy-u.6hr.GLB", + "atmos.prc.tavg-u-hxy-u.mon.30S-90S", + "atmos.prra.tavg-u-hxy-lnd.day.GLB", + "atmos.prra.tavg-u-hxy-u.mon.30S-90S", + "atmos.prsn.tavg-u-hxy-u.3hr.GLB", + "atmos.prsn.tavg-u-hxy-u.day.GLB", + "atmos.prsn.tavg-u-hxy-u.mon.30S-90S", + "atmos.prw.tavg-u-hxy-u.day.GLB", + "atmos.prw.tavg-u-hxy-u.mon.30S-90S", + "atmos.ps.tavg-u-hxy-u.1hr.GLB", + "atmos.ps.tavg-u-hxy-u.mon.30S-90S", + "atmos.ps.tpt-u-hxy-u.6hr.GLB", + "atmos.psl.tavg-u-hxy-u.mon.30S-90S", + "atmos.psl.tpt-u-hxy-u.1hr.GLB", + "atmos.psl.tpt-u-hxy-u.6hr.GLB", + "atmos.ptp.tavg-u-hxy-u.mon.GLB", + "atmos.reffcclwtop.tavg-u-hxy-ccl.mon.GLB", + "atmos.reffclic.tavg-al-hxy-ccl.mon.30S-90S", + "atmos.reffclis.tavg-al-hxy-scl.mon.30S-90S", + "atmos.reffclwc.tavg-al-hxy-ccl.mon.30S-90S", + "atmos.reffclws.tavg-al-hxy-scl.mon.30S-90S", + "atmos.reffsclwtop.tavg-u-hxy-scl.mon.GLB", + "atmos.rld.tavg-alh-hxy-u.mon.GLB", + "atmos.rld4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rldcs.tavg-alh-hxy-u.mon.GLB", + "atmos.rldcs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rlds.tavg-u-hxy-u.1hr.GLB", + "atmos.rlds.tavg-u-hxy-u.day.GLB", + "atmos.rlds.tavg-u-hxy-u.mon.30S-90S", + "atmos.rldscs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rlu.tavg-alh-hxy-u.mon.GLB", + "atmos.rlu4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rlucs.tavg-alh-hxy-u.mon.GLB", + "atmos.rlucs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rlus.tavg-u-hxy-u.day.GLB", + "atmos.rlus.tavg-u-hxy-u.mon.30S-90S", + "atmos.rlut.tavg-u-hxy-u.mon.30S-90S", + "atmos.rlut4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rlutcs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rlutcs4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rsd.tavg-alh-hxy-u.mon.GLB", + "atmos.rsd4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsdcs.tavg-alh-hxy-u.mon.GLB", + "atmos.rsdcs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsds.tavg-u-hxy-u.1hr.GLB", + "atmos.rsds.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsdscs.tavg-u-hxy-u.day.GLB", + "atmos.rsdscs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsdt.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsu.tavg-alh-hxy-u.mon.GLB", + "atmos.rsu4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsucs.tavg-alh-hxy-u.mon.GLB", + "atmos.rsucs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsus.tavg-u-hxy-u.day.GLB", + "atmos.rsus.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsuscs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsut.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsut4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rsutcs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsutcs4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rtmt.tavg-u-hxy-u.mon.GLB", + "atmos.rv850.tpt-850hPa-hxy-air.6hr.GLB", + "atmos.scldncl.tavg-u-hxy-scl.mon.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.mon.30S-90S", + "atmos.ta.tavg-al-hxy-u.mon.30S-90S", + "atmos.ta.tavg-al-hxy-u.mon.GLB", + "atmos.ta.tavg-p19-hxy-air.mon.30S-90S", + "atmos.ta.tavg-p39-hy-air.mon.GLB", + "atmos.ta.tpt-al-hxy-u.6hr.GLB", + "atmos.ta.tpt-p7h-hxy-air.6hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.1hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.mon.30S-90S", + "atmos.tas.tmaxavg-h2m-hxy-u.mon.30S-90S", + "atmos.tas.tminavg-h2m-hxy-u.mon.30S-90S", + "atmos.tnt.tavg-al-hxy-u.mon.GLB", + "atmos.tntrl.tavg-al-hxy-u.mon.GLB", + "atmos.tntrs.tavg-al-hxy-u.mon.GLB", + "atmos.ts.tavg-u-hxy-u.mon.30S-90S", + "atmos.ts.tpt-u-hxy-u.6hr.GLB", + "atmos.ua.tavg-al-hxy-u.mon.GLB", + "atmos.ua.tavg-p19-hxy-air.mon.30S-90S", + "atmos.ua.tavg-p39-hy-air.mon.GLB", + "atmos.ua.tpt-al-hxy-u.6hr.GLB", + "atmos.ua.tpt-p7h-hxy-air.6hr.GLB", + "atmos.uas.tavg-h10m-hxy-u.mon.30S-90S", + "atmos.uas.tpt-h10m-hxy-u.1hr.GLB", + "atmos.va.tavg-al-hxy-u.mon.GLB", + "atmos.va.tavg-p19-hxy-air.mon.30S-90S", + "atmos.va.tavg-p39-hy-air.mon.GLB", + "atmos.va.tpt-al-hxy-u.6hr.GLB", + "atmos.va.tpt-p7h-hxy-air.6hr.GLB", + "atmos.vas.tavg-h10m-hxy-u.mon.30S-90S", + "atmos.vas.tpt-h10m-hxy-u.1hr.GLB", + "atmos.wap.tavg-p19-hxy-air.mon.30S-90S", + "atmos.zg.tavg-1000hPa-hxy-air.day.GLB", + "atmos.zg.tavg-500hPa-hxy-air.day.GLB", + "atmos.zg.tavg-al-hxy-u.mon.GLB", + "atmos.zg.tavg-p19-hxy-air.mon.30S-90S", + "atmos.zg.tavg-p39-hy-air.mon.GLB", + "atmos.zg.tpt-500hPa-hxy-air.6hr.GLB", + "atmos.zg.tpt-al-hxy-u.6hr.GLB", + "atmos.zg.tpt-p7h-hxy-air.6hr.GLB", + "atmos.ztp.tavg-u-hxy-u.mon.GLB", + "atmosChem.c2h4.tavg-al-hxy-u.mon.GLB", + "atmosChem.c2h5oh.tavg-al-hxy-u.mon.GLB", + "atmosChem.c4h10.tavg-al-hxy-u.mon.GLB", + "atmosChem.cfc11.tavg-u-hm-u.mon.GLB", + "atmosChem.cfc113.tavg-u-hm-u.mon.GLB", + "atmosChem.cfc12.tavg-u-hm-u.mon.GLB", + "atmosChem.ch3oh.tavg-al-hxy-u.mon.GLB", + "atmosChem.ch4.tavg-al-hxy-u.mon.GLB", + "atmosChem.ch4.tavg-p39-hy-air.mon.GLB", + "atmosChem.ch4losssoil.tavg-u-hxy-u.mon.GLB", + "atmosChem.ch4ref.ti-al-hxy-u.fx.GLB", + "atmosChem.chegph2oo1d.tavg-al-hxy-u.mon.GLB", + "atmosChem.chepnh4.tavg-al-hxy-u.mon.GLB", + "atmosChem.chepno3.tavg-al-hxy-u.mon.GLB", + "atmosChem.dms.tavg-al-hxy-u.mon.30S-90S", + "atmosChem.dms.tavg-al-hxy-u.mon.GLB", + "atmosChem.do3chm.tavg-al-hxy-u.mon.GLB", + "atmosChem.dryh2.tavg-u-hxy-u.mon.GLB", + "atmosChem.dryhno3.tavg-u-hxy-u.mon.GLB", + "atmosChem.drynh3.tavg-u-hxy-u.mon.GLB", + "atmosChem.drynh4.tavg-u-hxy-u.mon.GLB", + "atmosChem.drynoy.tavg-u-hxy-u.mon.GLB", + "atmosChem.e90inst.tpt-al-hxy-u.mon.GLB", + "atmosChem.emiach4.tavg-u-hxy-u.mon.GLB", + "atmosChem.emiavnox.tavg-al-hxy-u.mon.GLB", + "atmosChem.emic2h4.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic2h5oh.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic2h6.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic3h6.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic3h8.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic4h10.tavg-u-hxy-u.mon.GLB", + "atmosChem.emich3oh.tavg-u-hxy-u.mon.GLB", + "atmosChem.emich4.tavg-u-hxy-u.mon.GLB", + "atmosChem.emih2.tavg-u-hxy-u.mon.GLB", + "atmosChem.emilkch4.tavg-u-hxy-u.mon.GLB", + "atmosChem.h2.tavg-al-hxy-u.mon.GLB", + "atmosChem.h2loss.tavg-al-hxy-u.mon.GLB", + "atmosChem.h2prod.tavg-al-hxy-u.mon.GLB", + "atmosChem.hcfc22.tavg-u-hm-u.mon.GLB", + "atmosChem.meanage.tavg-al-hxy-u.mon.GLB", + "atmosChem.meanage.tavg-p39-hy-air.mon.GLB", + "atmosChem.n2o.tavg-al-hxy-u.mon.GLB", + "atmosChem.n2o.tavg-p39-hy-air.mon.GLB", + "atmosChem.o3.tavg-al-hxy-u.mon.GLB", + "atmosChem.o3.tavg-p19-hxy-air.mon.GLB", + "atmosChem.o3.tavg-p39-hy-air.mon.GLB", + "atmosChem.o3.tpt-al-hxy-u.mon.GLB", + "atmosChem.o3ref.tclm-al-hxy-u.fx.GLB", + "atmosChem.o3ref.ti-al-hxy-u.fx.GLB", + "atmosChem.o3ste.tavg-al-hxy-u.mon.GLB", + "atmosChem.rlutch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rlutcsch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rlutcso3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rluto3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsutch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsutcsch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsutcso3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsuto3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.stratch4loss.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropch4loss.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropch4lossoh.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropdo3chm.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropo3ste.tavg-al-hxy-u.mon.GLB", + "atmosChem.wethno3.tavg-al-hxy-u.mon.GLB", + "atmosChem.wetnh3.tavg-u-hxy-u.mon.GLB", + "atmosChem.wetnh4.tavg-u-hxy-u.mon.GLB", + "atmosChem.wetno3.tavg-al-hxy-u.mon.GLB", + "atmosChem.wetnoy.tavg-u-hxy-u.mon.GLB", + "land.albc.tavg-u-hxy-veg.mon.GLB", + "land.areacellr.ti-u-hxy-u.fx.GLB", + "land.baresoilFrac.tavg-u-hxy-u.mon.GLB", + "land.burntFractionAll.tavg-u-hxy-u.mon.GLB", + "land.cGeologicStorage.tavg-u-hxy-u.mon.GLB", + "land.cLand.tavg-u-hxy-lnd.mon.GLB", + "land.cLitter.tavg-u-hxy-lnd.mon.GLB", + "land.cnc.tavg-u-hxy-u.mon.GLB", + "land.cProduct.tavg-u-hxy-lnd.mon.GLB", + "land.cropFrac.tavg-u-hxy-u.mon.GLB", + "land.cSoil.tavg-d100cm-hxy-lnd.mon.GLB", + "land.cSoil.tavg-u-hxy-lnd.mon.GLB", + "land.cVeg.tavg-u-hxy-lnd.mon.GLB", + "land.dcw.tavg-u-hxy-lnd.day.GLB", + "land.dslw.tavg-u-hxy-lnd.day.GLB", + "land.evspsblpot.tavg-u-hxy-lnd.day.GLB", + "land.evspsblpot.tavg-u-hxy-lnd.mon.GLB", + "land.fAnthDisturb.tavg-u-hxy-lnd.mon.GLB", + "land.fBNF.tavg-u-hxy-lnd.mon.GLB", + "land.fCLandToOcean.tavg-u-hxy-lnd.mon.GLB", + "land.fDeforestToAtmos.tavg-u-hxy-lnd.mon.GLB", + "land.fDeforestToProduct.tavg-u-hxy-lnd.mon.GLB", + "land.fFire.tavg-u-hxy-lnd.mon.GLB", + "land.fFireAll.tavg-u-hxy-lnd.mon.GLB", + "land.fFireNat.tavg-u-hxy-lnd.mon.GLB", + "land.fHarvestToAtmos.tavg-u-hxy-lnd.mon.GLB", + "land.fHarvestToGeologicStorage.tavg-u-hxy-lnd.mon.GLB", + "land.fHarvestToProduct.tavg-u-hxy-lnd.mon.GLB", + "land.fLitterSoil.tavg-u-hxy-lnd.mon.GLB", + "land.fN2O.tavg-u-hxy-lnd.mon.GLB", + "land.fNAnthDisturb.tavg-u-hxy-lnd.mon.GLB", + "land.fNdep.tavg-u-hxy-lnd.mon.GLB", + "land.fNfert.tavg-u-hxy-lnd.mon.GLB", + "land.fNLandToOcean.tavg-u-hxy-lnd.mon.GLB", + "land.fNLitterSoil.tavg-u-hxy-lnd.mon.GLB", + "land.fNloss.tavg-u-hxy-lnd.mon.GLB", + "land.fNnetmin.tavg-u-hxy-lnd.mon.GLB", + "land.fNOx.tavg-u-hxy-lnd.mon.GLB", + "land.fNProduct.tavg-u-hxy-lnd.mon.GLB", + "land.fNup.tavg-u-hxy-lnd.mon.GLB", + "land.fNVegLitter.tavg-u-hxy-lnd.mon.GLB", + "land.fNVegSoil.tavg-u-hxy-lnd.mon.GLB", + "land.fProductDecomp.tavg-u-hxy-lnd.mon.GLB", + "land.fVegLitter.tavg-u-hxy-lnd.mon.GLB", + "land.fVegSoil.tavg-u-hxy-lnd.mon.GLB", + "land.gpp.tavg-u-hxy-lnd.mon.GLB", + "land.grassFrac.tavg-u-hxy-u.mon.GLB", + "land.landCoverFrac.tavg-u-hxy-u.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.day.GLB", + "land.mrrob.tavg-u-hxy-lnd.day.GLB", + "land.mrros.tavg-u-hxy-lnd.day.GLB", + "land.mrsfl.tavg-sl-hxy-lnd.day.GLB", + "land.mrsfl.tavg-sl-hxy-lnd.mon.GLB", + "land.mrsll.tavg-sl-hxy-lnd.day.GLB", + "land.mrsll.tavg-sl-hxy-lnd.mon.GLB", + "land.mrso.tavg-u-hxy-lnd.day.GLB", + "land.mrsol.tavg-d10cm-hxy-lnd.day.GLB", + "land.mrsol.tavg-sl-hxy-lnd.day.GLB", + "land.mrsol.tavg-sl-hxy-lnd.mon.GLB", + "land.mrsow.tavg-u-hxy-lnd.day.GLB", + "land.mrtws.tavg-u-hxy-lnd.day.GLB", + "land.mrtws.tavg-u-hxy-lnd.mon.GLB", + "land.nbp.tavg-u-hxy-lnd.mon.GLB", + "land.nep.tavg-u-hxy-lnd.mon.GLB", + "land.nLand.tavg-u-hxy-lnd.mon.GLB", + "land.nLitter.tavg-u-hxy-lnd.mon.GLB", + "land.nMineral.tavg-u-hxy-lnd.mon.GLB", + "land.npp.tavg-u-hxy-lnd.mon.GLB", + "land.nProduct.tavg-u-hxy-lnd.mon.GLB", + "land.nSoil.tavg-u-hxy-lnd.mon.GLB", + "land.nVeg.tavg-u-hxy-lnd.mon.GLB", + "land.pastureFrac.tavg-u-hxy-u.mon.GLB", + "land.prveg.tavg-u-hxy-lnd.mon.GLB", + "land.ra.tavg-u-hxy-lnd.mon.GLB", + "land.residualFrac.tavg-u-hxy-u.mon.GLB", + "land.rh.tavg-u-hxy-lnd.mon.GLB", + "land.rivi.tavg-u-hxy-lnd.day.GLB", + "land.rivo.tavg-u-hxy-lnd.day.GLB", + "land.rsds.tavg-u-hxy-sn.mon.GLB", + "land.rsus.tavg-u-hxy-sn.mon.GLB", + "land.shrubFrac.tavg-u-hxy-u.mon.GLB", + "land.tas.tavg-u-hxy-u.1hr.GLB", + "land.tran.tavg-u-hxy-lnd.mon.GLB", + "land.treeFrac.tavg-u-hxy-u.mon.GLB", + "land.tsl.tavg-sl-hxy-lnd.mon.GLB", + "land.tslsi.tavg-u-hxy-u.day.GLB", + "land.vegFrac.tavg-u-hxy-u.mon.GLB", + "land.vegHeight.tavg-u-hxy-veg.mon.GLB", + "land.wetlandCH4.tavg-u-hxy-lnd.mon.GLB", + "land.wtd.tavg-u-hxy-lnd.day.GLB", + "landIce.snd.tavg-u-hxy-lnd.mon.GLB", + "ocean.absscint.tavg-op4-hxy-sea.mon.GLB", + "ocean.agessc.tavg-ol-hxy-sea.mon.GLB", + "ocean.bigthetao.tavg-ol-hm-sea.mon.GLB", + "ocean.bigthetao.tavg-ol-hxy-sea.dec.GLB", + "ocean.bigthetao.tavg-op20bar-hxy-sea.day.GLB", + "ocean.chcint.tavg-op4-hxy-sea.mon.GLB", + "ocean.ficeberg.tavg-ol-hxy-sea.mon.GLB", + "ocean.friver.tavg-u-hxy-sea.mon.GLB", + "ocean.hfbasin.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpmadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpmdiff.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpsmadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfds.tavg-u-hxy-sea.mon.30S-90S", + "ocean.hfx.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfx.tavg-u-hxy-sea.day.GLB", + "ocean.hfx.tavg-u-hxy-sea.mon.GLB", + "ocean.hfy.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfy.tavg-u-hxy-sea.day.GLB", + "ocean.hfy.tavg-u-hxy-sea.mon.GLB", + "ocean.htovgyre.tavg-u-hyb-sea.mon.GLB", + "ocean.htovovrt.tavg-u-hyb-sea.mon.GLB", + "ocean.masscello.tavg-ol-hxy-sea.dec.GLB", + "ocean.masso.tavg-u-hm-sea.dec.GLB", + "ocean.masso.tavg-u-hm-sea.mon.GLB", + "ocean.mlotst.tavg-u-hxy-sea.day.GLB", + "ocean.mlotst.tavg-u-hxy-sea.mon.30S-90S", + "ocean.mlotst.tmax-u-hxy-sea.mon.GLB", + "ocean.mlotst.tmin-u-hxy-sea.mon.GLB", + "ocean.mpw.tavg-u-hxy-sea.mon.GLB", + "ocean.mpw.tpt-u-hxy-sea.3hr.GLB", + "ocean.mpwswell.tavg-u-hxy-sea.mon.GLB", + "ocean.mpwswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.mpwwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.mpwwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.msftbarot.tavg-u-hxy-sea.mon.GLB", + "ocean.msftm.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftm.tavg-rho-hyb-sea.mon.GLB", + "ocean.msfty.tavg-ol-ht-sea.mon.GLB", + "ocean.msfty.tavg-rho-ht-sea.mon.GLB", + "ocean.obvfsq.tavg-ol-hxy-sea.mon.GLB", + "ocean.pbo.tavg-u-hxy-sea.mon.GLB", + "ocean.pfscint.tavg-op4-hxy-sea.mon.GLB", + "ocean.phcint.tavg-op4-hxy-sea.mon.GLB", + "ocean.pso.tavg-u-hxy-sea.mon.GLB", + "ocean.scint.tavg-op4-hxy-sea.mon.GLB", + "ocean.sduo.tavg-u-hxy-sea.mon.GLB", + "ocean.sduo.tpt-u-hxy-sea.3hr.GLB", + "ocean.sdvo.tavg-u-hxy-sea.mon.GLB", + "ocean.sdvo.tpt-u-hxy-sea.3hr.GLB", + "ocean.sfx.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfx.tavg-u-hxy-sea.mon.GLB", + "ocean.sfy.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfy.tavg-u-hxy-sea.mon.GLB", + "ocean.sltbasin.tavg-u-hyb-sea.mon.GLB", + "ocean.sltovgyre.tavg-u-hyb-sea.mon.GLB", + "ocean.sltovovrt.tavg-u-hyb-sea.mon.GLB", + "ocean.so.tavg-ol-hm-sea.mon.GLB", + "ocean.so.tavg-ol-hxy-sea.dec.GLB", + "ocean.so.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.sob.tavg-u-hxy-sea.mon.GLB", + "ocean.sos.tavg-u-hm-sea.mon.30S-90S", + "ocean.sos.tavg-u-hm-sea.mon.GLB", + "ocean.swh.tavg-u-hxy-sea.mon.GLB", + "ocean.swh.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhmax.tmax-u-hxy-sea.mon.GLB", + "ocean.swhmax.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhswell.tavg-u-hxy-sea.mon.GLB", + "ocean.swhswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.swhwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.tauuo.tavg-u-hxy-sea.3hr.GLB", + "ocean.tauuo.tavg-u-hxy-sea.dec.GLB", + "ocean.tauvo.tavg-u-hxy-sea.3hr.GLB", + "ocean.tauvo.tavg-u-hxy-sea.dec.GLB", + "ocean.thetao.tavg-ol-hm-sea.mon.GLB", + "ocean.thetao.tavg-ol-hxy-sea.dec.GLB", + "ocean.thetao.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.thetao.tavg-op20bar-hxy-sea.day.GLB", + "ocean.thkcello.tavg-ol-hxy-sea.dec.GLB", + "ocean.tob.tavg-u-hxy-sea.mon.GLB", + "ocean.tos.tavg-u-hm-sea.mon.GLB", + "ocean.tos.tavg-u-hxy-sea.mon.30S-90S", + "ocean.tos.tpt-u-hxy-sea.3hr.GLB", + "ocean.tossq.tavg-u-hxy-sea.day.GLB", + "ocean.umo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.uo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.uos.tavg-u-hxy-sea.day.GLB", + "ocean.vmo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.vo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.volcello.tavg-ol-hxy-sea.dec.GLB", + "ocean.volcello.tavg-ol-hxy-sea.mon.GLB", + "ocean.volcello.tavg-ol-hxy-sea.yr.GLB", + "ocean.volcello.ti-ol-hxy-sea.fx.GLB", + "ocean.volo.tavg-u-hm-sea.dec.GLB", + "ocean.volo.tavg-u-hm-sea.mon.GLB", + "ocean.vos.tavg-u-hxy-sea.day.GLB", + "ocean.wdir.tavg-u-hxy-sea.mon.GLB", + "ocean.wdir.tpt-u-hxy-sea.3hr.GLB", + "ocean.wdirswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wdirswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wdirwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wdirwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.wfcorr.tavg-u-hxy-sea.mon.GLB", + "ocean.wfo.tavg-u-hxy-sea.mon.GLB", + "ocean.wmo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.wo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.wpdir.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdir.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpdirswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdirswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpdirwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdirwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpp.tavg-u-hxy-sea.mon.GLB", + "ocean.wpp.tpt-u-hxy-sea.3hr.GLB", + "ocean.wppswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wppswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wppwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wppwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.zos.tavg-u-hxy-sea.mon.30S-90S", + "ocean.zossq.tavg-u-hxy-sea.mon.GLB", + "ocean.zostoga.tavg-u-hm-sea.day.GLB", + "ocnBgchem.bacc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.calc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chl.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chl.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chlcalc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chldiat.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chldiat.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chldiaz.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chldiaz.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chlmisc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chlmisc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chlpico.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chlpico.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.detoc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dfe.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.dfe.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissic.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.dissic.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissoc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dmso.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.expc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.expcalc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.fgco2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fsfe.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fsn.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.graz.tavg-ol-hxy-sea.mon.30S-90S", + "ocnBgchem.icfriver.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intdic.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intdoc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intparag.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbfe.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbn.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbp.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbsi.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpcalcite.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpn2.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpoc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpp.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpp.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppcalc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppdiat.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppdiaz.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppmisc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppnitrate.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpppico.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.nh4.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.nh4.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.no3.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.no3.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.o2.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.ocfriver.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.ph.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.ph.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phyc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phyc.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.phyc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phycalc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phycalc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phydiat.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phydiat.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phydiaz.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phydiaz.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phymisc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phymisc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phypico.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phypico.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.po4.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.pp.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.si.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.spco2.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.spco2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.talk.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zmeso.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zmeso.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zmicro.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zmicro.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zmisc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zmisc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zooc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zooc.tavg-ol-hxy-sea.mon.GLB", + "seaIce.evspsbl.tavg-u-hxy-si.mon.GLB", + "seaIce.prra.tavg-u-hxy-si.mon.GLB", + "seaIce.prsn.tavg-u-hxy-si.mon.GLB", + "seaIce.rlds.tavg-u-hxy-si.mon.GLB", + "seaIce.rlus.tavg-u-hxy-si.mon.GLB", + "seaIce.rsds.tavg-u-hxy-si.day.GLB", + "seaIce.rsds.tavg-u-hxy-si.mon.GLB", + "seaIce.rsus.tavg-u-hxy-si.day.GLB", + "seaIce.rsus.tavg-u-hxy-si.mon.GLB", + "seaIce.sbl.tavg-u-hxy-si.mon.GLB", + "seaIce.siage.tavg-u-hxy-si.day.GLB", + "seaIce.siage.tavg-u-hxy-si.mon.30S-90S", + "seaIce.siarea.tavg-u-hm-u.mon.NH", + "seaIce.siarea.tavg-u-hm-u.mon.SH", + "seaIce.siconc.tavg-u-hxy-u.mon.30S-90S", + "seaIce.siconca.tavg-u-hxy-u.day.GLB", + "seaIce.siconca.tavg-u-hxy-u.mon.GLB", + "seaIce.sidconcdyn.tavg-u-hxy-sea.mon.GLB", + "seaIce.sidconcth.tavg-u-hxy-sea.mon.GLB", + "seaIce.sidmassdyn.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthsi.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthwat.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmeltbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmeltlat.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmelttop.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassth.tavg-u-hxy-si.mon.GLB", + "seaIce.sieqthick.tavg-u-hxy-si.mon.GLB", + "seaIce.siextent.tavg-u-hm-u.mon.NH", + "seaIce.siextent.tavg-u-hm-u.mon.SH", + "seaIce.siflcondbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflcondtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sifllattop.tavg-u-hxy-si.mon.GLB", + "seaIce.siflsensbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflsenstop.tavg-u-hxy-si.mon.GLB", + "seaIce.siflswdbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sihc.tavg-u-hxy-sea.mon.GLB", + "seaIce.sisndmassdyn.tavg-u-hxy-si.mon.GLB", + "seaIce.sisndmasssi.tavg-u-hxy-si.mon.GLB", + "seaIce.sisndmasswind.tavg-u-hxy-si.mon.GLB", + "seaIce.sisnhc.tavg-u-hxy-si.mon.GLB", + "seaIce.sisnmass.tavg-u-hm-u.mon.NH", + "seaIce.sisnmass.tavg-u-hm-u.mon.SH", + "seaIce.sispeed.tavg-u-hxy-si.day.GLB", + "seaIce.sispeed.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-si.day.GLB", + "seaIce.sithick.tavg-u-hxy-si.mon.30S-90S", + "seaIce.sitimefrac.tavg-u-hxy-sea.day.GLB", + "seaIce.sitimefrac.tavg-u-hxy-sea.mon.30S-90S", + "seaIce.siu.tavg-u-hxy-si.day.GLB", + "seaIce.siu.tavg-u-hxy-si.mon.30S-90S", + "seaIce.siv.tavg-u-hxy-si.day.GLB", + "seaIce.siv.tavg-u-hxy-si.mon.30S-90S", + "seaIce.sivol.tavg-u-hm-u.mon.NH", + "seaIce.sivol.tavg-u-hm-u.mon.SH", + "seaIce.snc.tavg-u-hxy-si.mon.GLB", + "seaIce.snd.tavg-u-hxy-sn.day.GLB", + "seaIce.snd.tavg-u-hxy-sn.mon.30S-90S", + "seaIce.snm.tavg-u-hxy-si.mon.GLB", + "seaIce.snw.tavg-u-hxy-si.mon.GLB", + "seaIce.ts.tavg-u-hxy-si.day.GLB", + "seaIce.ts.tavg-u-hxy-si.mon.30S-90S" + ], + "Medium": [ + "atmos.rls.tavg-u-hxy-u.day.GLB", + "atmos.rls.tavg-u-hxy-u.mon.GLB", + "atmos.rss.tavg-u-hxy-u.day.GLB", + "atmos.rss.tavg-u-hxy-u.mon.GLB", + "land.cLeaf.tavg-u-hxy-lnd.mon.GLB", + "land.cLitterCwd.tavg-u-hxy-lnd.mon.GLB", + "land.cLitterSubSurf.tavg-u-hxy-lnd.mon.GLB", + "land.cLitterSurf.tavg-u-hxy-lnd.mon.GLB", + "land.cOther.tavg-u-hxy-lnd.mon.GLB", + "land.cRoot.tavg-u-hxy-lnd.mon.GLB", + "land.cropFracC3.tavg-u-hxy-u.mon.GLB", + "land.cropFracC4.tavg-u-hxy-u.mon.GLB", + "land.cSoil.tavg-sl-hxy-lnd.mon.GLB", + "land.cSoilPools.tavg-u-hxy-lnd.mon.GLB", + "land.cStem.tavg-u-hxy-lnd.mon.GLB", + "land.cVeg.tavg-u-hxy-ng.mon.GLB", + "land.cVeg.tavg-u-hxy-shb.mon.GLB", + "land.cVeg.tavg-u-hxy-tree.mon.GLB", + "land.fLitterFire.tavg-u-hxy-lnd.mon.GLB", + "land.fNgas.tavg-u-hxy-lnd.mon.GLB", + "land.fNgasFire.tavg-u-hxy-lnd.mon.GLB", + "land.fNgasNonFire.tavg-u-hxy-lnd.mon.GLB", + "land.fNleach.tavg-u-hxy-lnd.mon.GLB", + "land.fVegFire.tavg-u-hxy-lnd.mon.GLB", + "land.fVegLitterMortality.tavg-u-hxy-lnd.mon.GLB", + "land.fVegLitterSenescence.tavg-u-hxy-lnd.mon.GLB", + "land.fVegSoilMortality.tavg-u-hxy-lnd.mon.GLB", + "land.fVegSoilSenescence.tavg-u-hxy-lnd.mon.GLB", + "land.gpp.tavg-u-hxy-ng.mon.GLB", + "land.gpp.tavg-u-hxy-shb.mon.GLB", + "land.gpp.tavg-u-hxy-tree.mon.GLB", + "land.grassFracC3.tavg-u-hxy-u.mon.GLB", + "land.grassFracC4.tavg-u-hxy-u.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.3hr.GLB", + "land.mrros.tavg-u-hxy-lnd.3hr.GLB", + "land.mrsol.tpt-d10cm-hxy-lnd.3hr.GLB", + "land.nLeaf.tavg-u-hxy-lnd.mon.GLB", + "land.nLitterCwd.tavg-u-hxy-lnd.mon.GLB", + "land.nLitterSubSurf.tavg-u-hxy-lnd.mon.GLB", + "land.nLitterSurf.tavg-u-hxy-lnd.mon.GLB", + "land.nMineralNH4.tavg-u-hxy-lnd.mon.GLB", + "land.nMineralNO3.tavg-u-hxy-lnd.mon.GLB", + "land.nOther.tavg-u-hxy-lnd.mon.GLB", + "land.npp.tavg-u-hxy-ng.mon.GLB", + "land.npp.tavg-u-hxy-shb.mon.GLB", + "land.npp.tavg-u-hxy-tree.mon.GLB", + "land.nppLeaf.tavg-u-hxy-lnd.mon.GLB", + "land.nppOther.tavg-u-hxy-lnd.mon.GLB", + "land.nppRoot.tavg-u-hxy-lnd.mon.GLB", + "land.nppStem.tavg-u-hxy-lnd.mon.GLB", + "land.nRoot.tavg-u-hxy-lnd.mon.GLB", + "land.nStem.tavg-u-hxy-lnd.mon.GLB", + "land.pastureFracC3.tavg-u-hxy-u.mon.GLB", + "land.pastureFracC4.tavg-u-hxy-u.mon.GLB", + "land.ra.tavg-u-hxy-ng.mon.GLB", + "land.ra.tavg-u-hxy-shb.mon.GLB", + "land.ra.tavg-u-hxy-tree.mon.GLB", + "land.raLeaf.tavg-u-hxy-lnd.mon.GLB", + "land.raOther.tavg-u-hxy-lnd.mon.GLB", + "land.raRoot.tavg-u-hxy-lnd.mon.GLB", + "land.raStem.tavg-u-hxy-lnd.mon.GLB", + "land.rh.tavg-u-hxy-ng.mon.GLB", + "land.rh.tavg-u-hxy-shb.mon.GLB", + "land.rh.tavg-u-hxy-tree.mon.GLB", + "land.rhLitter.tavg-u-hxy-lnd.mon.GLB", + "land.rhSoil.tavg-u-hxy-lnd.mon.GLB", + "land.treeFracBdlDcd.tavg-u-hxy-u.mon.GLB", + "land.treeFracBdlEvg.tavg-u-hxy-u.mon.GLB", + "land.treeFracNdlDcd.tavg-u-hxy-u.mon.GLB", + "land.treeFracNdlEvg.tavg-u-hxy-u.mon.GLB", + "land.vegHeight.tavg-u-hxy-ng.mon.GLB", + "land.vegHeight.tavg-u-hxy-shb.mon.GLB", + "land.vegHeight.tavg-u-hxy-tree.mon.GLB", + "land.wetlandCH4cons.tavg-u-hxy-lnd.mon.GLB", + "land.wetlandCH4prod.tavg-u-hxy-lnd.mon.GLB", + "land.wetlandFrac.tavg-u-hxy-u.mon.GLB", + "ocean.evspsbl.tavg-u-hxy-ifs.mon.GLB", + "ocean.ficeberg.tavg-u-hxy-sea.mon.GLB", + "ocean.hfacrossline.tavg-u-ht-sea.mon.GLB", + "ocean.hfevapds.tavg-u-hxy-ifs.mon.GLB", + "ocean.hfibthermds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfibthermds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfrainds.tavg-u-hxy-ifs.mon.GLB", + "ocean.hfrunoffds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfrunoffds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfsnthermds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfsnthermds.tavg-u-hxy-sea.mon.GLB", + "ocean.mfo.tavg-u-ht-sea.mon.GLB", + "ocean.sf6.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfacrossline.tavg-u-ht-sea.mon.GLB", + "ocean.sfdsi.tavg-u-hxy-sea.mon.GLB", + "ocean.sfriver.tavg-u-hxy-sea.mon.GLB", + "ocean.siflfwbot.tavg-u-hxy-sea.mon.GLB", + "ocean.so.tavg-ol-hxy-sea.day.GLB", + "ocean.tnkebto.tavg-u-hxy-sea.yr.GLB", + "ocean.vsf.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfcorr.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfevap.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfpr.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfriver.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfsit.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.arag.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.arag.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.calc.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.calc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chl.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.chlcalc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dmso.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.epn.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.epp.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.expc.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.expcalc.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.fgdms.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fric.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.froc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.graz.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.intppcalc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppdiat.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppdiaz.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppmisc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppnitrate.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intpppico.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.o2.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.ph.tavg-op20bar-hxy-sea.day.GLB", + "seaIce.sfdsi.tavg-u-hxy-si.mon.GLB", + "seaIce.siage.tavg-u-hxy-si.mon.GLB", + "seaIce.siarea.tavg-u-hm-u.day.NH", + "seaIce.siarea.tavg-u-hm-u.day.SH", + "seaIce.siareaacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.sicompstren.tavg-u-hxy-si.mon.GLB", + "seaIce.sidivvel.tpt-u-hxy-si.mon.GLB", + "seaIce.sidmasstranx.tavg-u-hxy-u.mon.GLB", + "seaIce.sidmasstrany.tavg-u-hxy-u.mon.GLB", + "seaIce.sidragbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidragtop.tavg-u-hxy-si.mon.GLB", + "seaIce.siextent.tavg-u-hm-u.day.NH", + "seaIce.siextent.tavg-u-hm-u.day.SH", + "seaIce.sifb.tavg-u-hxy-si.mon.GLB", + "seaIce.siflfwbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflfwdrain.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcecoriolx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcecorioly.tavg-u-hxy-si.mon.GLB", + "seaIce.siforceintstrx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforceintstry.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcetiltx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcetilty.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdconc.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdsnconc.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdsnthick.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdthick.tavg-u-hxy-si.mon.GLB", + "seaIce.simassacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.simpconc.tavg-u-hxy-si.mon.GLB", + "seaIce.simpeffconc.tavg-u-hxy-si.mon.GLB", + "seaIce.simprefrozen.tavg-u-hxy-simp.mon.GLB", + "seaIce.simpthick.tavg-u-hxy-simp.mon.GLB", + "seaIce.sirdgconc.tavg-u-hxy-si.mon.GLB", + "seaIce.sisali.tavg-u-hxy-si.mon.GLB", + "seaIce.sisaltmass.tavg-u-hxy-si.mon.GLB", + "seaIce.sishearvel.tpt-u-hxy-si.mon.GLB", + "seaIce.sisnmass.tavg-u-hm-u.day.NH", + "seaIce.sisnmass.tavg-u-hm-u.day.SH", + "seaIce.sisnmassacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.sistressave.tpt-u-hxy-si.mon.GLB", + "seaIce.sistressmax.tpt-u-hxy-si.mon.GLB", + "seaIce.sistrxdtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sistrxubot.tavg-u-hxy-si.mon.GLB", + "seaIce.sistrydtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sistryubot.tavg-u-hxy-si.mon.GLB", + "seaIce.sitempbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sitempsnic.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-sir.mon.GLB", + "seaIce.sivol.tavg-u-hm-u.day.NH", + "seaIce.sivol.tavg-u-hm-u.day.SH" + ], + "Low": [ + "land.c13Land.tavg-u-hxy-lnd.mon.GLB", + "land.c13Litter.tavg-u-hxy-lnd.mon.GLB", + "land.c13Soil.tavg-u-hxy-lnd.mon.GLB", + "land.c13Veg.tavg-u-hxy-lnd.mon.GLB", + "land.c14Land.tavg-u-hxy-lnd.mon.GLB", + "land.c14Litter.tavg-u-hxy-lnd.mon.GLB", + "land.c14Soil.tavg-u-hxy-lnd.mon.GLB", + "land.c14Veg.tavg-u-hxy-lnd.mon.GLB", + "land.gppc13.tavg-u-hxy-lnd.mon.GLB", + "land.gppc14.tavg-u-hxy-lnd.mon.GLB", + "land.netAtmosLandC13Flux.tavg-u-hxy-lnd.mon.GLB", + "land.netAtmosLandC14Flux.tavg-u-hxy-lnd.mon.GLB", + "land.rac13.tavg-u-hxy-lnd.mon.GLB", + "land.rac14.tavg-u-hxy-lnd.mon.GLB", + "land.rhc13.tavg-u-hxy-lnd.mon.GLB", + "land.rhc14.tavg-u-hxy-lnd.mon.GLB", + "ocean.difmxybo.tavg-ol-hxy-sea.yr.GLB", + "ocean.difmxylo.tavg-ol-hxy-sea.yr.GLB", + "ocean.diftrblo.tavg-ol-hxy-sea.yr.GLB", + "ocean.diftrelo.tavg-ol-hxy-sea.yr.GLB", + "ocean.difvho.tavg-ol-hxy-sea.yr.GLB", + "ocean.difvso.tavg-ol-hxy-sea.yr.GLB", + "ocean.dispkexyfo.tavg-u-hxy-sea.yr.GLB", + "ocean.dxto.ti-u-hxy-u.fx.GLB", + "ocean.dxuo.ti-u-hxy-u.fx.GLB", + "ocean.dxvo.ti-u-hxy-u.fx.GLB", + "ocean.dyto.ti-u-hxy-u.fx.GLB", + "ocean.dyuo.ti-u-hxy-u.fx.GLB", + "ocean.dyvo.ti-u-hxy-u.fx.GLB", + "ocean.mlotstsq.tavg-u-hxy-sea.mon.GLB", + "ocean.msftmmpa.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftmmpa.tavg-rho-hyb-sea.mon.GLB", + "ocean.msftmsmpa.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftypa.tavg-ol-ht-sea.mon.GLB", + "ocean.msftypa.tavg-rho-ht-sea.mon.GLB", + "ocean.ocontempdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontempmint.tavg-u-hxy-sea.yr.GLB", + "ocean.ocontemppadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemppmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemppsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemprmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemptend.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottempdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottempmint.tavg-u-hxy-sea.yr.GLB", + "ocean.opottemppadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemppmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemppsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemprmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemptend.tavg-ol-hxy-sea.dec.GLB", + "ocean.osaltdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpsmadvect.tavg-ol-hxy-sea.mon.GLB", + "ocean.osaltpsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltrmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osalttend.tavg-ol-hxy-sea.yr.GLB", + "ocean.rsdoabsorb.tavg-ol-hxy-sea.yr.GLB", + "ocean.somint.tavg-u-hxy-sea.yr.GLB", + "ocean.sossq.tavg-u-hxy-sea.mon.GLB", + "ocean.thkcelluo.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcellvo.tavg-ol-hxy-sea.mon.GLB", + "ocean.tnpeo.tavg-u-hxy-sea.yr.GLB", + "ocean.tossq.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.dissi13c.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.dissi13c.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissi14c.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissi14cabio.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.dissi14cabio.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.fg13co2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fg14co2abio.tavg-u-hxy-sea.mon.GLB" + ] + }, + "piClim-N2O": { + "Core": [ + "atmos.areacella.ti-u-hxy-u.fx.GLB", + "atmos.cl.tavg-al-hxy-u.mon.GLB", + "atmos.cli.tavg-al-hxy-u.mon.GLB", + "atmos.clivi.tavg-u-hxy-u.mon.GLB", + "atmos.clt.tavg-u-hxy-u.day.GLB", + "atmos.clt.tavg-u-hxy-u.mon.GLB", + "atmos.clw.tavg-al-hxy-u.mon.GLB", + "atmos.clwvi.tavg-u-hxy-u.mon.GLB", + "atmos.evspsbl.tavg-u-hxy-u.mon.GLB", + "atmos.hfls.tavg-u-hxy-u.mon.GLB", + "atmos.hfss.tavg-u-hxy-u.mon.GLB", + "atmos.hur.tavg-p19-hxy-air.mon.GLB", + "atmos.hur.tavg-p19-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.6hr.GLB", + "atmos.hurs.tavg-h2m-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.mon.GLB", + "atmos.hus.tavg-p19-hxy-u.day.GLB", + "atmos.hus.tavg-p19-hxy-u.mon.GLB", + "atmos.huss.tavg-h2m-hxy-u.day.GLB", + "atmos.huss.tavg-h2m-hxy-u.mon.GLB", + "atmos.huss.tpt-h2m-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.1hr.GLB", + "atmos.pr.tavg-u-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.day.GLB", + "atmos.pr.tavg-u-hxy-u.mon.GLB", + "atmos.prc.tavg-u-hxy-u.mon.GLB", + "atmos.prsn.tavg-u-hxy-u.mon.GLB", + "atmos.prw.tavg-u-hxy-u.mon.GLB", + "atmos.ps.tavg-u-hxy-u.day.GLB", + "atmos.ps.tavg-u-hxy-u.mon.GLB", + "atmos.psl.tavg-u-hxy-u.day.GLB", + "atmos.psl.tavg-u-hxy-u.mon.GLB", + "atmos.rlds.tavg-u-hxy-u.mon.GLB", + "atmos.rldscs.tavg-u-hxy-u.mon.GLB", + "atmos.rlus.tavg-u-hxy-u.mon.GLB", + "atmos.rluscs.tavg-u-hxy-u.mon.GLB", + "atmos.rlut.tavg-u-hxy-u.mon.GLB", + "atmos.rlutcs.tavg-u-hxy-u.mon.GLB", + "atmos.rsds.tavg-u-hxy-u.day.GLB", + "atmos.rsds.tavg-u-hxy-u.mon.GLB", + "atmos.rsdscs.tavg-u-hxy-u.mon.GLB", + "atmos.rsdt.tavg-u-hxy-u.mon.GLB", + "atmos.rsus.tavg-u-hxy-u.mon.GLB", + "atmos.rsuscs.tavg-u-hxy-u.mon.GLB", + "atmos.rsut.tavg-u-hxy-u.mon.GLB", + "atmos.rsutcs.tavg-u-hxy-u.mon.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.day.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.mon.GLB", + "atmos.sftlf.ti-u-hxy-u.fx.GLB", + "atmos.ta.tavg-p19-hxy-air.day.GLB", + "atmos.ta.tavg-p19-hxy-air.mon.GLB", + "atmos.ta.tpt-p3-hxy-air.6hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.day.GLB", + "atmos.tas.tavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tmax-h2m-hxy-u.day.GLB", + "atmos.tas.tmaxavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tmin-h2m-hxy-u.day.GLB", + "atmos.tas.tminavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tpt-h2m-hxy-u.3hr.GLB", + "atmos.tauu.tavg-u-hxy-u.mon.GLB", + "atmos.tauv.tavg-u-hxy-u.mon.GLB", + "atmos.ts.tavg-u-hxy-u.mon.GLB", + "atmos.ua.tavg-p19-hxy-air.day.GLB", + "atmos.ua.tavg-p19-hxy-air.mon.GLB", + "atmos.ua.tpt-p3-hxy-air.6hr.GLB", + "atmos.uas.tavg-h10m-hxy-u.day.GLB", + "atmos.uas.tavg-h10m-hxy-u.mon.GLB", + "atmos.uas.tpt-h10m-hxy-u.3hr.GLB", + "atmos.va.tavg-p19-hxy-air.day.GLB", + "atmos.va.tavg-p19-hxy-air.mon.GLB", + "atmos.va.tpt-p3-hxy-air.6hr.GLB", + "atmos.vas.tavg-h10m-hxy-u.day.GLB", + "atmos.vas.tavg-h10m-hxy-u.mon.GLB", + "atmos.vas.tpt-h10m-hxy-u.3hr.GLB", + "atmos.wap.tavg-p19-hxy-air.mon.GLB", + "atmos.wap.tavg-p19-hxy-u.day.GLB", + "atmos.zg.tavg-p19-hxy-air.day.GLB", + "atmos.zg.tavg-p19-hxy-air.mon.GLB", + "land.evspsblsoi.tavg-u-hxy-lnd.mon.GLB", + "land.evspsblveg.tavg-u-hxy-lnd.mon.GLB", + "land.lai.tavg-u-hxy-lnd.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.mon.GLB", + "land.mrros.tavg-u-hxy-lnd.mon.GLB", + "land.mrso.tavg-u-hxy-lnd.mon.GLB", + "land.mrsofc.ti-u-hxy-lnd.fx.GLB", + "land.mrsol.tavg-d10cm-hxy-lnd.mon.GLB", + "land.orog.ti-u-hxy-u.fx.GLB", + "land.rootd.ti-u-hxy-lnd.fx.GLB", + "land.sftgif.ti-u-hxy-u.fx.GLB", + "land.slthick.ti-sl-hxy-lnd.fx.GLB", + "landIce.mrfso.tavg-u-hxy-lnd.mon.GLB", + "landIce.snc.tavg-u-hxy-lnd.mon.GLB", + "landIce.snw.tavg-u-hxy-lnd.mon.GLB", + "ocean.areacello.ti-u-hxy-u.fx.GLB", + "ocean.basin.ti-u-hxy-u.fx.GLB", + "ocean.bigthetao.tavg-ol-hxy-sea.mon.GLB", + "ocean.deptho.ti-u-hxy-sea.fx.GLB", + "ocean.hfds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfgeou.ti-u-hxy-sea.fx.GLB", + "ocean.masscello.tavg-ol-hxy-sea.mon.GLB", + "ocean.masscello.ti-ol-hxy-sea.fx.GLB", + "ocean.mlotst.tavg-u-hxy-sea.mon.GLB", + "ocean.sftof.ti-u-hxy-u.fx.GLB", + "ocean.so.tavg-ol-hxy-sea.mon.GLB", + "ocean.sos.tavg-u-hxy-sea.day.GLB", + "ocean.sos.tavg-u-hxy-sea.mon.GLB", + "ocean.tauuo.tavg-u-hxy-sea.mon.GLB", + "ocean.tauvo.tavg-u-hxy-sea.mon.GLB", + "ocean.thetao.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcello.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcello.ti-ol-hxy-sea.fx.GLB", + "ocean.tos.tavg-u-hxy-sea.day.GLB", + "ocean.tos.tavg-u-hxy-sea.mon.GLB", + "ocean.umo.tavg-ol-hxy-sea.mon.GLB", + "ocean.uo.tavg-ol-hxy-sea.mon.GLB", + "ocean.vmo.tavg-ol-hxy-sea.mon.GLB", + "ocean.vo.tavg-ol-hxy-sea.mon.GLB", + "ocean.wmo.tavg-ol-hxy-sea.mon.GLB", + "ocean.wo.tavg-ol-hxy-sea.mon.GLB", + "ocean.zos.tavg-u-hxy-sea.day.GLB", + "ocean.zos.tavg-u-hxy-sea.mon.GLB", + "ocean.zostoga.tavg-u-hm-sea.mon.GLB", + "seaIce.siconc.tavg-u-hxy-u.day.GLB", + "seaIce.siconc.tavg-u-hxy-u.mon.GLB", + "seaIce.simass.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-si.mon.GLB", + "seaIce.sitimefrac.tavg-u-hxy-sea.mon.GLB", + "seaIce.siu.tavg-u-hxy-si.mon.GLB", + "seaIce.siv.tavg-u-hxy-si.mon.GLB", + "seaIce.snd.tavg-u-hxy-sn.mon.GLB", + "seaIce.ts.tavg-u-hxy-si.mon.GLB" + ], + "High": [ + "aerosol.abs550aer.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550bc.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550dust.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550no3.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550oa.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550so4.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550ss.tavg-u-hxy-u.mon.GLB", + "aerosol.airmass.tavg-al-hxy-u.mon.GLB", + "aerosol.aoanh.tavg-al-hxy-u.mon.NH", + "aerosol.bry.tavg-p39-hy-air.mon.GLB", + "aerosol.bs550aer.tpt-al-hxy-u.6hr.GLB", + "aerosol.c2h6.tavg-al-hxy-u.mon.GLB", + "aerosol.c3h6.tavg-al-hxy-u.mon.GLB", + "aerosol.c3h8.tavg-al-hxy-u.mon.GLB", + "aerosol.ccldncl.tavg-u-hxy-ccl.mon.GLB", + "aerosol.ccn.tavg-u-hxy-ccl.mon.30S-90S", + "aerosol.ccn.tavg-u-hxy-ccl.mon.GLB", + "aerosol.ccn1.tavg-al-hxy-u.mon.30S-90S", + "aerosol.ccn1.tavg-al-hxy-u.mon.GLB", + "aerosol.ccnp02.tavg-al-hxy-u.mon.30S-90S", + "aerosol.ccnp02.tavg-al-hxy-u.mon.GLB", + "aerosol.cdnc.tavg-al-hxy-u.mon.30S-90S", + "aerosol.cdnc.tavg-al-hxy-u.mon.GLB", + "aerosol.cfc114.tavg-al-hxy-u.mon.GLB", + "aerosol.ch3coch3.tavg-al-hxy-u.mon.GLB", + "aerosol.cheaqpso4.tavg-al-hxy-u.mon.GLB", + "aerosol.chegpso4.tavg-al-hxy-u.mon.GLB", + "aerosol.chepasoa.tavg-u-hxy-u.mon.GLB", + "aerosol.chepsoa.tavg-u-hxy-u.mon.GLB", + "aerosol.cly.tavg-p39-hy-air.mon.GLB", + "aerosol.co.tavg-al-hxy-u.mon.GLB", + "aerosol.co.tavg-h2m-hxy-u.day.GLB", + "aerosol.cod.tavg-u-hxy-u.day.GLB", + "aerosol.cod.tavg-u-hxy-u.mon.30S-90S", + "aerosol.cod.tavg-u-hxy-u.mon.GLB", + "aerosol.conccn.tavg-al-hxy-u.mon.GLB", + "aerosol.conccn.tpt-u-hs-u.3hr.GLB", + "aerosol.drybc.tavg-u-hxy-u.mon.GLB", + "aerosol.drydust.tavg-u-hxy-u.mon.GLB", + "aerosol.dryno3.tavg-u-hxy-u.mon.GLB", + "aerosol.dryo3.tavg-u-hxy-u.mon.GLB", + "aerosol.dryoa.tavg-u-hxy-u.mon.GLB", + "aerosol.dryso2.tavg-u-hxy-u.mon.GLB", + "aerosol.dryso4.tavg-u-hxy-u.mon.GLB", + "aerosol.dryss.tavg-u-hxy-u.mon.GLB", + "aerosol.ec550aer.tavg-al-hxy-u.mon.GLB", + "aerosol.ec550aer.tpt-u-hxy-u.6hr.GLB", + "aerosol.emiaco.tavg-u-hxy-u.mon.GLB", + "aerosol.emianox.tavg-u-hxy-u.mon.GLB", + "aerosol.emiaoa.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbbc.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbch4.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbco.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbdms.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbnh3.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbnox.tavg-u-hxy-u.mon.GLB", + "aerosol.emibboa.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbso2.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbvoc.tavg-u-hxy-u.mon.GLB", + "aerosol.emibc.tavg-u-hxy-u.mon.GLB", + "aerosol.emibvoc.tavg-u-hxy-u.mon.GLB", + "aerosol.emico.tavg-u-hxy-u.mon.GLB", + "aerosol.emidms.tavg-u-hxy-u.mon.30S-90S", + "aerosol.emidms.tavg-u-hxy-u.mon.GLB", + "aerosol.emidust.tavg-u-hxy-u.mon.GLB", + "aerosol.emiisop.tavg-u-hxy-u.mon.GLB", + "aerosol.emilnox.tavg-al-hxy-u.mon.GLB", + "aerosol.eminh3.tavg-u-hxy-u.mon.GLB", + "aerosol.eminox.tavg-u-hxy-u.mon.GLB", + "aerosol.emioa.tavg-u-hxy-u.mon.GLB", + "aerosol.emiso2.tavg-u-hxy-u.mon.GLB", + "aerosol.emiso4.tavg-u-hxy-u.mon.GLB", + "aerosol.emiss.tavg-u-hxy-u.mon.30S-90S", + "aerosol.emiss.tavg-u-hxy-u.mon.GLB", + "aerosol.emivoc.tavg-u-hxy-u.mon.GLB", + "aerosol.h2o.tavg-al-hxy-u.mon.GLB", + "aerosol.h2o.tavg-p39-hy-air.mon.GLB", + "aerosol.hcfc22.tavg-al-hxy-u.mon.GLB", + "aerosol.hcho.tavg-al-hxy-u.mon.GLB", + "aerosol.hcl.tavg-al-hxy-u.mon.GLB", + "aerosol.hcl.tavg-p39-hy-air.mon.GLB", + "aerosol.hfc125.tavg-al-hxy-u.mon.GLB", + "aerosol.hfc134a.tavg-al-hxy-u.mon.GLB", + "aerosol.hno3.tavg-al-hxy-u.mon.GLB", + "aerosol.hno3.tavg-p39-hy-air.mon.GLB", + "aerosol.ho2.tavg-p39-hy-air.mon.GLB", + "aerosol.isop.tavg-al-hxy-u.mon.GLB", + "aerosol.jno2.tavg-al-hxy-u.mon.GLB", + "aerosol.lossch4.tavg-al-hxy-u.mon.GLB", + "aerosol.lossco.tavg-al-hxy-u.mon.GLB", + "aerosol.lossn2o.tavg-al-hxy-u.mon.GLB", + "aerosol.lwp.tavg-u-hxy-u.mon.GLB", + "aerosol.mmraerh2o.tavg-al-hxy-u.mon.GLB", + "aerosol.mmraerh2o.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmraerh2o.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrbc.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrbc.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrbc.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrbc.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrdust.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrdust.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrdust.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrdust.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrnh4.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrnh4.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrnh4.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrnh4.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrno3.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrno3.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrno3.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrno3.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmroa.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmroa.tavg-al-hxy-u.mon.GLB", + "aerosol.mmroa.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmroa.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrpm1.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrpm1.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrpm2p5.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrpm2p5.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrso4.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrso4.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrso4.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrso4.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrsoa.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrsoa.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrsoa.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrss.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrss.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrss.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrss.tpt-h2m-hs-u.3hr.GLB", + "aerosol.nh50.tavg-al-hxy-u.mon.GLB", + "aerosol.no.tavg-al-hxy-u.mon.GLB", + "aerosol.no2.tavg-al-hxy-u.mon.GLB", + "aerosol.no2.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.noy.tavg-p39-hy-air.mon.GLB", + "aerosol.o3.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.o3.tmax-h2m-hxy-u.day.GLB", + "aerosol.o3loss.tavg-al-hxy-u.mon.GLB", + "aerosol.o3prod.tavg-al-hxy-u.mon.GLB", + "aerosol.od443aer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550aer.tavg-u-hxy-u.day.GLB", + "aerosol.od550aer.tavg-u-hxy-u.mon.30S-90S", + "aerosol.od550aer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550aerh2o.tavg-u-hxy-u.mon.GLB", + "aerosol.od550bb.tavg-u-hxy-u.mon.GLB", + "aerosol.od550bc.tavg-u-hxy-u.mon.GLB", + "aerosol.od550csaer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550dust.tavg-u-hxy-u.mon.GLB", + "aerosol.od550lt1aer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550no3.tavg-u-hxy-u.mon.GLB", + "aerosol.od550oa.tavg-u-hxy-u.mon.GLB", + "aerosol.od550so4.tavg-u-hxy-u.mon.GLB", + "aerosol.od550soa.tavg-u-hxy-u.mon.GLB", + "aerosol.od550ss.tavg-u-hxy-u.mon.GLB", + "aerosol.od865aer.tavg-u-hxy-u.mon.GLB", + "aerosol.oh.tavg-al-hxy-u.mon.GLB", + "aerosol.oh.tavg-p39-hy-air.mon.GLB", + "aerosol.pan.tavg-al-hxy-u.mon.GLB", + "aerosol.photo1d.tavg-al-hxy-u.mon.GLB", + "aerosol.pod0.tsum-u-hxy-u.mon.GLB", + "aerosol.reffccwctop.tavg-u-hxy-cl.mon.GLB", + "aerosol.reffclwtop.tavg-u-hxy-cl.mon.30S-90S", + "aerosol.reffclwtop.tavg-u-hxy-cl.mon.GLB", + "aerosol.rluscsaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rlutaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rlutcsaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rsutaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rsutcsaf.tavg-u-hxy-u.mon.GLB", + "aerosol.sfpm1.tavg-h2m-hxy-u.day.GLB", + "aerosol.sfpm10.tavg-al-hxy-u.mon.30S-90S", + "aerosol.sfpm10.tavg-al-hxy-u.mon.GLB", + "aerosol.sfpm10.tavg-h2m-hxy-u.day.GLB", + "aerosol.sfpm25.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.sfpm25.tavg-h2m-hxy-u.day.GLB", + "aerosol.so2.tavg-al-hxy-u.mon.30S-90S", + "aerosol.so2.tavg-al-hxy-u.mon.GLB", + "aerosol.so2.tavg-h2m-hxy-u.day.GLB", + "aerosol.so2.tpt-h2m-hs-u.3hr.GLB", + "aerosol.tatp.tavg-u-hxy-u.mon.GLB", + "aerosol.toz.tavg-u-hxy-u.day.GLB", + "aerosol.toz.tavg-u-hxy-u.mon.GLB", + "aerosol.tropoz.tavg-u-hxy-u.mon.GLB", + "aerosol.ttop.tavg-u-hxy-cl.mon.GLB", + "aerosol.ua.tavg-10hPa-hxy-air.day.GLB", + "aerosol.vt100.tavg-100hPa-hy-air.mon.GLB", + "aerosol.wa.tavg-al-hxy-u.mon.GLB", + "aerosol.wetbc.tavg-u-hxy-u.mon.GLB", + "aerosol.wetdust.tavg-u-hxy-u.mon.GLB", + "aerosol.wetoa.tavg-u-hxy-u.mon.GLB", + "aerosol.wetso2.tavg-u-hxy-u.mon.GLB", + "aerosol.wetso4.tavg-u-hxy-u.mon.GLB", + "aerosol.wetss.tavg-u-hxy-u.mon.GLB", + "aerosol.zg.tavg-10hPa-hxy-air.day.GLB", + "atmos.albisccp.tavg-u-hxy-cl.mon.30S-90S", + "atmos.bldep.tavg-u-hxy-u.mon.GLB", + "atmos.bldep.tmax-u-hxy-u.day.GLB", + "atmos.bldep.tmin-u-hxy-u.day.GLB", + "atmos.cl.tavg-al-hxy-u.mon.30S-90S", + "atmos.clc.tavg-al-hxy-u.mon.30S-90S", + "atmos.clc.tavg-al-hxy-u.mon.GLB", + "atmos.clcalipso.tavg-220hPa-hxy-air.mon.30S-90S", + "atmos.clcalipso.tavg-220hPa-hxy-air.mon.GLB", + "atmos.clcalipso.tavg-560hPa-hxy-air.mon.30S-90S", + "atmos.clcalipso.tavg-560hPa-hxy-air.mon.GLB", + "atmos.clcalipso.tavg-840hPa-hxy-air.mon.30S-90S", + "atmos.clcalipso.tavg-840hPa-hxy-air.mon.GLB", + "atmos.clcalipso.tavg-h40-hxy-air.mon.30S-90S", + "atmos.cldnci.tavg-u-hxy-cl.mon.GLB", + "atmos.cldncl.tavg-u-hxy-cl.mon.GLB", + "atmos.cldnvi.tavg-u-hxy-u.mon.GLB", + "atmos.cli.tavg-al-hxy-u.mon.30S-90S", + "atmos.clic.tavg-al-hxy-u.mon.30S-90S", + "atmos.clis.tavg-al-hxy-u.mon.30S-90S", + "atmos.clisccp.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clisccp.tavg-p7c-hxy-air.mon.GLB", + "atmos.clivi.tavg-u-hxy-u.mon.30S-90S", + "atmos.clivimodis.tavg-u-hxy-u.mon.30S-90S", + "atmos.clmodis.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clmodis.tavg-p7c-hxy-air.mon.GLB", + "atmos.clmodisice.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clmodisice.tavg-p7c-hxy-air.mon.GLB", + "atmos.clmodisiceReff.tavg-u-hxy-u.mon.GLB", + "atmos.clmodisliquid.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clmodisliquid.tavg-p7c-hxy-air.mon.GLB", + "atmos.clmodisliquidReff.tavg-u-hxy-u.mon.GLB", + "atmos.cls.tavg-al-hxy-u.mon.30S-90S", + "atmos.clt.tavg-u-hxy-u.mon.30S-90S", + "atmos.cltc.tavg-u-hxy-u.mon.GLB", + "atmos.cltcalipso.tavg-u-hxy-u.mon.30S-90S", + "atmos.cltisccp.tavg-u-hxy-u.mon.30S-90S", + "atmos.cltmodis.tavg-u-hxy-u.mon.30S-90S", + "atmos.clw.tavg-al-hxy-u.mon.30S-90S", + "atmos.clwc.tavg-al-hxy-u.mon.30S-90S", + "atmos.clws.tavg-al-hxy-u.mon.30S-90S", + "atmos.clwvi.tavg-u-hxy-u.mon.30S-90S", + "atmos.clwvimodis.tavg-u-hxy-u.mon.30S-90S", + "atmos.co2.tavg-al-hxy-u.mon.GLB", + "atmos.co2.tavg-p19-hxy-air.mon.GLB", + "atmos.co23D.tavg-al-hxy-u.mon.GLB", + "atmos.co2mass.tavg-u-hm-u.mon.GLB", + "atmos.dmc.tavg-alh-hxy-u.mon.30S-90S", + "atmos.edt.tavg-al-hxy-u.mon.30S-90S", + "atmos.evspsbl.tavg-u-hxy-lnd.day.GLB", + "atmos.evu.tavg-al-hxy-u.mon.30S-90S", + "atmos.fco2antt.tavg-u-hxy-u.mon.GLB", + "atmos.fco2fos.tavg-u-hxy-u.mon.GLB", + "atmos.fco2nat.tavg-u-hxy-u.mon.GLB", + "atmos.hfls.tavg-u-hxy-u.mon.30S-90S", + "atmos.hfss.tavg-u-hxy-u.mon.30S-90S", + "atmos.hur.tavg-al-hxy-u.mon.30S-90S", + "atmos.hur.tavg-al-hxy-u.mon.GLB", + "atmos.hur.tavg-p19-hxy-air.mon.30S-90S", + "atmos.hurs.tavg-h2m-hxy-u.mon.30S-90S", + "atmos.hurs.tmax-h2m-hxy-u.day.GLB", + "atmos.hurs.tmin-h2m-hxy-u.day.GLB", + "atmos.hus.tavg-al-hxy-u.mon.30S-90S", + "atmos.hus.tavg-al-hxy-u.mon.GLB", + "atmos.hus.tavg-p19-hxy-u.mon.30S-90S", + "atmos.hus.tpt-al-hxy-u.6hr.GLB", + "atmos.hus.tpt-p7h-hxy-air.6hr.GLB", + "atmos.huss.tavg-h2m-hxy-u.mon.30S-90S", + "atmos.huss.tpt-h2m-hxy-u.1hr.GLB", + "atmos.mc.tavg-alh-hxy-u.mon.GLB", + "atmos.mcd.tavg-alh-hxy-u.mon.30S-90S", + "atmos.mcu.tavg-alh-hxy-u.mon.30S-90S", + "atmos.mcu.tavg-alh-hxy-u.mon.GLB", + "atmos.pctisccp.tavg-u-hxy-cl.mon.30S-90S", + "atmos.pfull.tavg-al-hxy-u.mon.GLB", + "atmos.pfull.tclm-al-hxy-u.mon.30S-90S", + "atmos.phalf.tavg-alh-hxy-u.mon.GLB", + "atmos.pr.tavg-u-hxy-u.mon.30S-90S", + "atmos.pr.tmax-u-hxy-u.day.GLB", + "atmos.pr.tpt-u-hxy-u.6hr.GLB", + "atmos.prc.tavg-u-hxy-u.mon.30S-90S", + "atmos.prra.tavg-u-hxy-lnd.day.GLB", + "atmos.prra.tavg-u-hxy-u.mon.30S-90S", + "atmos.prsn.tavg-u-hxy-u.3hr.GLB", + "atmos.prsn.tavg-u-hxy-u.day.GLB", + "atmos.prsn.tavg-u-hxy-u.mon.30S-90S", + "atmos.prw.tavg-u-hxy-u.day.GLB", + "atmos.prw.tavg-u-hxy-u.mon.30S-90S", + "atmos.ps.tavg-u-hxy-u.1hr.GLB", + "atmos.ps.tavg-u-hxy-u.mon.30S-90S", + "atmos.ps.tpt-u-hxy-u.6hr.GLB", + "atmos.psl.tavg-u-hxy-u.mon.30S-90S", + "atmos.psl.tpt-u-hxy-u.1hr.GLB", + "atmos.psl.tpt-u-hxy-u.6hr.GLB", + "atmos.ptp.tavg-u-hxy-u.mon.GLB", + "atmos.reffcclwtop.tavg-u-hxy-ccl.mon.GLB", + "atmos.reffclic.tavg-al-hxy-ccl.mon.30S-90S", + "atmos.reffclis.tavg-al-hxy-scl.mon.30S-90S", + "atmos.reffclwc.tavg-al-hxy-ccl.mon.30S-90S", + "atmos.reffclws.tavg-al-hxy-scl.mon.30S-90S", + "atmos.reffsclwtop.tavg-u-hxy-scl.mon.GLB", + "atmos.rld.tavg-alh-hxy-u.mon.GLB", + "atmos.rld4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rldcs.tavg-alh-hxy-u.mon.GLB", + "atmos.rldcs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rlds.tavg-u-hxy-u.1hr.GLB", + "atmos.rlds.tavg-u-hxy-u.day.GLB", + "atmos.rlds.tavg-u-hxy-u.mon.30S-90S", + "atmos.rldscs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rlu.tavg-alh-hxy-u.mon.GLB", + "atmos.rlu4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rlucs.tavg-alh-hxy-u.mon.GLB", + "atmos.rlucs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rlus.tavg-u-hxy-u.day.GLB", + "atmos.rlus.tavg-u-hxy-u.mon.30S-90S", + "atmos.rlut.tavg-u-hxy-u.mon.30S-90S", + "atmos.rlut4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rlutcs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rlutcs4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rsd.tavg-alh-hxy-u.mon.GLB", + "atmos.rsd4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsdcs.tavg-alh-hxy-u.mon.GLB", + "atmos.rsdcs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsds.tavg-u-hxy-u.1hr.GLB", + "atmos.rsds.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsdscs.tavg-u-hxy-u.day.GLB", + "atmos.rsdscs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsdt.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsu.tavg-alh-hxy-u.mon.GLB", + "atmos.rsu4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsucs.tavg-alh-hxy-u.mon.GLB", + "atmos.rsucs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsus.tavg-u-hxy-u.day.GLB", + "atmos.rsus.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsuscs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsut.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsut4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rsutcs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsutcs4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rtmt.tavg-u-hxy-u.mon.GLB", + "atmos.rv850.tpt-850hPa-hxy-air.6hr.GLB", + "atmos.scldncl.tavg-u-hxy-scl.mon.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.mon.30S-90S", + "atmos.ta.tavg-al-hxy-u.mon.30S-90S", + "atmos.ta.tavg-al-hxy-u.mon.GLB", + "atmos.ta.tavg-p19-hxy-air.mon.30S-90S", + "atmos.ta.tavg-p39-hy-air.mon.GLB", + "atmos.ta.tpt-al-hxy-u.6hr.GLB", + "atmos.ta.tpt-p7h-hxy-air.6hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.1hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.mon.30S-90S", + "atmos.tas.tmaxavg-h2m-hxy-u.mon.30S-90S", + "atmos.tas.tminavg-h2m-hxy-u.mon.30S-90S", + "atmos.tnt.tavg-al-hxy-u.mon.GLB", + "atmos.tntrl.tavg-al-hxy-u.mon.GLB", + "atmos.tntrs.tavg-al-hxy-u.mon.GLB", + "atmos.ts.tavg-u-hxy-u.mon.30S-90S", + "atmos.ts.tpt-u-hxy-u.6hr.GLB", + "atmos.ua.tavg-al-hxy-u.mon.GLB", + "atmos.ua.tavg-p19-hxy-air.mon.30S-90S", + "atmos.ua.tavg-p39-hy-air.mon.GLB", + "atmos.ua.tpt-al-hxy-u.6hr.GLB", + "atmos.ua.tpt-p7h-hxy-air.6hr.GLB", + "atmos.uas.tavg-h10m-hxy-u.mon.30S-90S", + "atmos.uas.tpt-h10m-hxy-u.1hr.GLB", + "atmos.va.tavg-al-hxy-u.mon.GLB", + "atmos.va.tavg-p19-hxy-air.mon.30S-90S", + "atmos.va.tavg-p39-hy-air.mon.GLB", + "atmos.va.tpt-al-hxy-u.6hr.GLB", + "atmos.va.tpt-p7h-hxy-air.6hr.GLB", + "atmos.vas.tavg-h10m-hxy-u.mon.30S-90S", + "atmos.vas.tpt-h10m-hxy-u.1hr.GLB", + "atmos.wap.tavg-p19-hxy-air.mon.30S-90S", + "atmos.zg.tavg-1000hPa-hxy-air.day.GLB", + "atmos.zg.tavg-500hPa-hxy-air.day.GLB", + "atmos.zg.tavg-al-hxy-u.mon.GLB", + "atmos.zg.tavg-p19-hxy-air.mon.30S-90S", + "atmos.zg.tavg-p39-hy-air.mon.GLB", + "atmos.zg.tpt-500hPa-hxy-air.6hr.GLB", + "atmos.zg.tpt-al-hxy-u.6hr.GLB", + "atmos.zg.tpt-p7h-hxy-air.6hr.GLB", + "atmos.ztp.tavg-u-hxy-u.mon.GLB", + "atmosChem.c2h4.tavg-al-hxy-u.mon.GLB", + "atmosChem.c2h5oh.tavg-al-hxy-u.mon.GLB", + "atmosChem.c4h10.tavg-al-hxy-u.mon.GLB", + "atmosChem.cfc11.tavg-u-hm-u.mon.GLB", + "atmosChem.cfc113.tavg-u-hm-u.mon.GLB", + "atmosChem.cfc12.tavg-u-hm-u.mon.GLB", + "atmosChem.ch3oh.tavg-al-hxy-u.mon.GLB", + "atmosChem.ch4.tavg-al-hxy-u.mon.GLB", + "atmosChem.ch4.tavg-p39-hy-air.mon.GLB", + "atmosChem.ch4losssoil.tavg-u-hxy-u.mon.GLB", + "atmosChem.ch4ref.ti-al-hxy-u.fx.GLB", + "atmosChem.chegph2oo1d.tavg-al-hxy-u.mon.GLB", + "atmosChem.chepnh4.tavg-al-hxy-u.mon.GLB", + "atmosChem.chepno3.tavg-al-hxy-u.mon.GLB", + "atmosChem.dms.tavg-al-hxy-u.mon.30S-90S", + "atmosChem.dms.tavg-al-hxy-u.mon.GLB", + "atmosChem.do3chm.tavg-al-hxy-u.mon.GLB", + "atmosChem.dryh2.tavg-u-hxy-u.mon.GLB", + "atmosChem.dryhno3.tavg-u-hxy-u.mon.GLB", + "atmosChem.drynh3.tavg-u-hxy-u.mon.GLB", + "atmosChem.drynh4.tavg-u-hxy-u.mon.GLB", + "atmosChem.drynoy.tavg-u-hxy-u.mon.GLB", + "atmosChem.e90inst.tpt-al-hxy-u.mon.GLB", + "atmosChem.emiach4.tavg-u-hxy-u.mon.GLB", + "atmosChem.emiavnox.tavg-al-hxy-u.mon.GLB", + "atmosChem.emic2h4.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic2h5oh.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic2h6.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic3h6.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic3h8.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic4h10.tavg-u-hxy-u.mon.GLB", + "atmosChem.emich3oh.tavg-u-hxy-u.mon.GLB", + "atmosChem.emich4.tavg-u-hxy-u.mon.GLB", + "atmosChem.emih2.tavg-u-hxy-u.mon.GLB", + "atmosChem.emilkch4.tavg-u-hxy-u.mon.GLB", + "atmosChem.h2.tavg-al-hxy-u.mon.GLB", + "atmosChem.h2loss.tavg-al-hxy-u.mon.GLB", + "atmosChem.h2prod.tavg-al-hxy-u.mon.GLB", + "atmosChem.hcfc22.tavg-u-hm-u.mon.GLB", + "atmosChem.meanage.tavg-al-hxy-u.mon.GLB", + "atmosChem.meanage.tavg-p39-hy-air.mon.GLB", + "atmosChem.n2o.tavg-al-hxy-u.mon.GLB", + "atmosChem.n2o.tavg-p39-hy-air.mon.GLB", + "atmosChem.o3.tavg-al-hxy-u.mon.GLB", + "atmosChem.o3.tavg-p19-hxy-air.mon.GLB", + "atmosChem.o3.tavg-p39-hy-air.mon.GLB", + "atmosChem.o3.tpt-al-hxy-u.mon.GLB", + "atmosChem.o3ref.tclm-al-hxy-u.fx.GLB", + "atmosChem.o3ref.ti-al-hxy-u.fx.GLB", + "atmosChem.o3ste.tavg-al-hxy-u.mon.GLB", + "atmosChem.rlutch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rlutcsch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rlutcso3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rluto3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsutch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsutcsch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsutcso3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsuto3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.stratch4loss.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropch4loss.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropch4lossoh.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropdo3chm.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropo3ste.tavg-al-hxy-u.mon.GLB", + "atmosChem.wethno3.tavg-al-hxy-u.mon.GLB", + "atmosChem.wetnh3.tavg-u-hxy-u.mon.GLB", + "atmosChem.wetnh4.tavg-u-hxy-u.mon.GLB", + "atmosChem.wetno3.tavg-al-hxy-u.mon.GLB", + "atmosChem.wetnoy.tavg-u-hxy-u.mon.GLB", + "land.albc.tavg-u-hxy-veg.mon.GLB", + "land.areacellr.ti-u-hxy-u.fx.GLB", + "land.baresoilFrac.tavg-u-hxy-u.mon.GLB", + "land.burntFractionAll.tavg-u-hxy-u.mon.GLB", + "land.cGeologicStorage.tavg-u-hxy-u.mon.GLB", + "land.cLand.tavg-u-hxy-lnd.mon.GLB", + "land.cLitter.tavg-u-hxy-lnd.mon.GLB", + "land.cnc.tavg-u-hxy-u.mon.GLB", + "land.cProduct.tavg-u-hxy-lnd.mon.GLB", + "land.cropFrac.tavg-u-hxy-u.mon.GLB", + "land.cSoil.tavg-d100cm-hxy-lnd.mon.GLB", + "land.cSoil.tavg-u-hxy-lnd.mon.GLB", + "land.cVeg.tavg-u-hxy-lnd.mon.GLB", + "land.dcw.tavg-u-hxy-lnd.day.GLB", + "land.dslw.tavg-u-hxy-lnd.day.GLB", + "land.evspsblpot.tavg-u-hxy-lnd.day.GLB", + "land.evspsblpot.tavg-u-hxy-lnd.mon.GLB", + "land.fAnthDisturb.tavg-u-hxy-lnd.mon.GLB", + "land.fBNF.tavg-u-hxy-lnd.mon.GLB", + "land.fCLandToOcean.tavg-u-hxy-lnd.mon.GLB", + "land.fDeforestToAtmos.tavg-u-hxy-lnd.mon.GLB", + "land.fDeforestToProduct.tavg-u-hxy-lnd.mon.GLB", + "land.fFire.tavg-u-hxy-lnd.mon.GLB", + "land.fFireAll.tavg-u-hxy-lnd.mon.GLB", + "land.fFireNat.tavg-u-hxy-lnd.mon.GLB", + "land.fHarvestToAtmos.tavg-u-hxy-lnd.mon.GLB", + "land.fHarvestToGeologicStorage.tavg-u-hxy-lnd.mon.GLB", + "land.fHarvestToProduct.tavg-u-hxy-lnd.mon.GLB", + "land.fLitterSoil.tavg-u-hxy-lnd.mon.GLB", + "land.fN2O.tavg-u-hxy-lnd.mon.GLB", + "land.fNAnthDisturb.tavg-u-hxy-lnd.mon.GLB", + "land.fNdep.tavg-u-hxy-lnd.mon.GLB", + "land.fNfert.tavg-u-hxy-lnd.mon.GLB", + "land.fNLandToOcean.tavg-u-hxy-lnd.mon.GLB", + "land.fNLitterSoil.tavg-u-hxy-lnd.mon.GLB", + "land.fNloss.tavg-u-hxy-lnd.mon.GLB", + "land.fNnetmin.tavg-u-hxy-lnd.mon.GLB", + "land.fNOx.tavg-u-hxy-lnd.mon.GLB", + "land.fNProduct.tavg-u-hxy-lnd.mon.GLB", + "land.fNup.tavg-u-hxy-lnd.mon.GLB", + "land.fNVegLitter.tavg-u-hxy-lnd.mon.GLB", + "land.fNVegSoil.tavg-u-hxy-lnd.mon.GLB", + "land.fProductDecomp.tavg-u-hxy-lnd.mon.GLB", + "land.fVegLitter.tavg-u-hxy-lnd.mon.GLB", + "land.fVegSoil.tavg-u-hxy-lnd.mon.GLB", + "land.gpp.tavg-u-hxy-lnd.mon.GLB", + "land.grassFrac.tavg-u-hxy-u.mon.GLB", + "land.landCoverFrac.tavg-u-hxy-u.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.day.GLB", + "land.mrrob.tavg-u-hxy-lnd.day.GLB", + "land.mrros.tavg-u-hxy-lnd.day.GLB", + "land.mrsfl.tavg-sl-hxy-lnd.day.GLB", + "land.mrsfl.tavg-sl-hxy-lnd.mon.GLB", + "land.mrsll.tavg-sl-hxy-lnd.day.GLB", + "land.mrsll.tavg-sl-hxy-lnd.mon.GLB", + "land.mrso.tavg-u-hxy-lnd.day.GLB", + "land.mrsol.tavg-d10cm-hxy-lnd.day.GLB", + "land.mrsol.tavg-sl-hxy-lnd.day.GLB", + "land.mrsol.tavg-sl-hxy-lnd.mon.GLB", + "land.mrsow.tavg-u-hxy-lnd.day.GLB", + "land.mrtws.tavg-u-hxy-lnd.day.GLB", + "land.mrtws.tavg-u-hxy-lnd.mon.GLB", + "land.nbp.tavg-u-hxy-lnd.mon.GLB", + "land.nep.tavg-u-hxy-lnd.mon.GLB", + "land.nLand.tavg-u-hxy-lnd.mon.GLB", + "land.nLitter.tavg-u-hxy-lnd.mon.GLB", + "land.nMineral.tavg-u-hxy-lnd.mon.GLB", + "land.npp.tavg-u-hxy-lnd.mon.GLB", + "land.nProduct.tavg-u-hxy-lnd.mon.GLB", + "land.nSoil.tavg-u-hxy-lnd.mon.GLB", + "land.nVeg.tavg-u-hxy-lnd.mon.GLB", + "land.pastureFrac.tavg-u-hxy-u.mon.GLB", + "land.prveg.tavg-u-hxy-lnd.mon.GLB", + "land.ra.tavg-u-hxy-lnd.mon.GLB", + "land.residualFrac.tavg-u-hxy-u.mon.GLB", + "land.rh.tavg-u-hxy-lnd.mon.GLB", + "land.rivi.tavg-u-hxy-lnd.day.GLB", + "land.rivo.tavg-u-hxy-lnd.day.GLB", + "land.rsds.tavg-u-hxy-sn.mon.GLB", + "land.rsus.tavg-u-hxy-sn.mon.GLB", + "land.shrubFrac.tavg-u-hxy-u.mon.GLB", + "land.tas.tavg-u-hxy-u.1hr.GLB", + "land.tran.tavg-u-hxy-lnd.mon.GLB", + "land.treeFrac.tavg-u-hxy-u.mon.GLB", + "land.tsl.tavg-sl-hxy-lnd.mon.GLB", + "land.tslsi.tavg-u-hxy-u.day.GLB", + "land.vegFrac.tavg-u-hxy-u.mon.GLB", + "land.vegHeight.tavg-u-hxy-veg.mon.GLB", + "land.wetlandCH4.tavg-u-hxy-lnd.mon.GLB", + "land.wtd.tavg-u-hxy-lnd.day.GLB", + "landIce.snd.tavg-u-hxy-lnd.mon.GLB", + "landIce.snw.tavg-u-hxy-lnd.day.GLB", + "ocean.absscint.tavg-op4-hxy-sea.mon.GLB", + "ocean.agessc.tavg-ol-hxy-sea.mon.GLB", + "ocean.bigthetao.tavg-ol-hm-sea.mon.GLB", + "ocean.bigthetao.tavg-ol-hxy-sea.dec.GLB", + "ocean.bigthetao.tavg-op20bar-hxy-sea.day.GLB", + "ocean.chcint.tavg-op4-hxy-sea.mon.GLB", + "ocean.ficeberg.tavg-ol-hxy-sea.mon.GLB", + "ocean.friver.tavg-u-hxy-sea.mon.GLB", + "ocean.hfbasin.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpmadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpmdiff.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpsmadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfds.tavg-u-hxy-sea.mon.30S-90S", + "ocean.hfx.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfx.tavg-u-hxy-sea.day.GLB", + "ocean.hfx.tavg-u-hxy-sea.mon.GLB", + "ocean.hfy.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfy.tavg-u-hxy-sea.day.GLB", + "ocean.hfy.tavg-u-hxy-sea.mon.GLB", + "ocean.htovgyre.tavg-u-hyb-sea.mon.GLB", + "ocean.htovovrt.tavg-u-hyb-sea.mon.GLB", + "ocean.masscello.tavg-ol-hxy-sea.dec.GLB", + "ocean.masso.tavg-u-hm-sea.dec.GLB", + "ocean.masso.tavg-u-hm-sea.mon.GLB", + "ocean.mlotst.tavg-u-hxy-sea.day.GLB", + "ocean.mlotst.tavg-u-hxy-sea.mon.30S-90S", + "ocean.mlotst.tmax-u-hxy-sea.mon.GLB", + "ocean.mlotst.tmin-u-hxy-sea.mon.GLB", + "ocean.mpw.tavg-u-hxy-sea.mon.GLB", + "ocean.mpw.tpt-u-hxy-sea.3hr.GLB", + "ocean.mpwswell.tavg-u-hxy-sea.mon.GLB", + "ocean.mpwswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.mpwwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.mpwwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.msftbarot.tavg-u-hxy-sea.mon.GLB", + "ocean.msftm.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftm.tavg-rho-hyb-sea.mon.GLB", + "ocean.msfty.tavg-ol-ht-sea.mon.GLB", + "ocean.msfty.tavg-rho-ht-sea.mon.GLB", + "ocean.obvfsq.tavg-ol-hxy-sea.mon.GLB", + "ocean.pbo.tavg-u-hxy-sea.mon.GLB", + "ocean.pfscint.tavg-op4-hxy-sea.mon.GLB", + "ocean.phcint.tavg-op4-hxy-sea.mon.GLB", + "ocean.pso.tavg-u-hxy-sea.mon.GLB", + "ocean.scint.tavg-op4-hxy-sea.mon.GLB", + "ocean.sduo.tavg-u-hxy-sea.mon.GLB", + "ocean.sduo.tpt-u-hxy-sea.3hr.GLB", + "ocean.sdvo.tavg-u-hxy-sea.mon.GLB", + "ocean.sdvo.tpt-u-hxy-sea.3hr.GLB", + "ocean.sfx.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfx.tavg-u-hxy-sea.mon.GLB", + "ocean.sfy.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfy.tavg-u-hxy-sea.mon.GLB", + "ocean.sltbasin.tavg-u-hyb-sea.mon.GLB", + "ocean.sltovgyre.tavg-u-hyb-sea.mon.GLB", + "ocean.sltovovrt.tavg-u-hyb-sea.mon.GLB", + "ocean.so.tavg-ol-hm-sea.mon.GLB", + "ocean.so.tavg-ol-hxy-sea.dec.GLB", + "ocean.so.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.sob.tavg-u-hxy-sea.mon.GLB", + "ocean.sos.tavg-u-hm-sea.mon.30S-90S", + "ocean.sos.tavg-u-hm-sea.mon.GLB", + "ocean.swh.tavg-u-hxy-sea.mon.GLB", + "ocean.swh.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhmax.tmax-u-hxy-sea.mon.GLB", + "ocean.swhmax.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhswell.tavg-u-hxy-sea.mon.GLB", + "ocean.swhswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.swhwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.tauuo.tavg-u-hxy-sea.3hr.GLB", + "ocean.tauuo.tavg-u-hxy-sea.dec.GLB", + "ocean.tauvo.tavg-u-hxy-sea.3hr.GLB", + "ocean.tauvo.tavg-u-hxy-sea.dec.GLB", + "ocean.thetao.tavg-ol-hm-sea.mon.GLB", + "ocean.thetao.tavg-ol-hxy-sea.dec.GLB", + "ocean.thetao.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.thetao.tavg-op20bar-hxy-sea.day.GLB", + "ocean.thkcello.tavg-ol-hxy-sea.dec.GLB", + "ocean.tob.tavg-u-hxy-sea.mon.GLB", + "ocean.tos.tavg-u-hm-sea.mon.GLB", + "ocean.tos.tavg-u-hxy-sea.mon.30S-90S", + "ocean.tos.tpt-u-hxy-sea.3hr.GLB", + "ocean.tossq.tavg-u-hxy-sea.day.GLB", + "ocean.umo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.uo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.uos.tavg-u-hxy-sea.day.GLB", + "ocean.vmo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.vo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.volcello.tavg-ol-hxy-sea.dec.GLB", + "ocean.volcello.tavg-ol-hxy-sea.mon.GLB", + "ocean.volcello.tavg-ol-hxy-sea.yr.GLB", + "ocean.volcello.ti-ol-hxy-sea.fx.GLB", + "ocean.volo.tavg-u-hm-sea.dec.GLB", + "ocean.volo.tavg-u-hm-sea.mon.GLB", + "ocean.vos.tavg-u-hxy-sea.day.GLB", + "ocean.wdir.tavg-u-hxy-sea.mon.GLB", + "ocean.wdir.tpt-u-hxy-sea.3hr.GLB", + "ocean.wdirswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wdirswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wdirwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wdirwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.wfcorr.tavg-u-hxy-sea.mon.GLB", + "ocean.wfo.tavg-u-hxy-sea.mon.GLB", + "ocean.wmo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.wo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.wpdir.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdir.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpdirswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdirswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpdirwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdirwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpp.tavg-u-hxy-sea.mon.GLB", + "ocean.wpp.tpt-u-hxy-sea.3hr.GLB", + "ocean.wppswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wppswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wppwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wppwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.zos.tavg-u-hxy-sea.mon.30S-90S", + "ocean.zossq.tavg-u-hxy-sea.mon.GLB", + "ocean.zostoga.tavg-u-hm-sea.day.GLB", + "ocnBgchem.bacc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.calc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chl.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chl.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chlcalc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chldiat.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chldiat.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chldiaz.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chldiaz.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chlmisc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chlmisc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chlpico.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chlpico.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.detoc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dfe.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.dfe.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissic.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.dissic.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissoc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dmso.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.expc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.expcalc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.fgco2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fsfe.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fsn.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.graz.tavg-ol-hxy-sea.mon.30S-90S", + "ocnBgchem.icfriver.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intdic.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intdoc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intparag.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbfe.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbn.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbp.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbsi.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpcalcite.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpn2.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpoc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpp.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpp.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppcalc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppdiat.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppdiaz.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppmisc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppnitrate.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpppico.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.nh4.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.nh4.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.no3.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.no3.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.o2.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.ocfriver.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.ph.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.ph.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phyc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phyc.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.phyc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phycalc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phycalc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phydiat.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phydiat.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phydiaz.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phydiaz.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phymisc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phymisc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phypico.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phypico.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.po4.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.pp.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.si.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.spco2.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.spco2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.talk.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zmeso.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zmeso.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zmicro.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zmicro.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zmisc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zmisc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zooc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zooc.tavg-ol-hxy-sea.mon.GLB", + "seaIce.evspsbl.tavg-u-hxy-si.mon.GLB", + "seaIce.prra.tavg-u-hxy-si.mon.GLB", + "seaIce.prsn.tavg-u-hxy-si.mon.GLB", + "seaIce.rlds.tavg-u-hxy-si.mon.GLB", + "seaIce.rlus.tavg-u-hxy-si.mon.GLB", + "seaIce.rsds.tavg-u-hxy-si.day.GLB", + "seaIce.rsds.tavg-u-hxy-si.mon.GLB", + "seaIce.rsus.tavg-u-hxy-si.day.GLB", + "seaIce.rsus.tavg-u-hxy-si.mon.GLB", + "seaIce.sbl.tavg-u-hxy-si.mon.GLB", + "seaIce.siage.tavg-u-hxy-si.day.GLB", + "seaIce.siage.tavg-u-hxy-si.mon.30S-90S", + "seaIce.siarea.tavg-u-hm-u.mon.NH", + "seaIce.siarea.tavg-u-hm-u.mon.SH", + "seaIce.siconc.tavg-u-hxy-u.mon.30S-90S", + "seaIce.siconca.tavg-u-hxy-u.day.GLB", + "seaIce.siconca.tavg-u-hxy-u.mon.GLB", + "seaIce.sidconcdyn.tavg-u-hxy-sea.mon.GLB", + "seaIce.sidconcth.tavg-u-hxy-sea.mon.GLB", + "seaIce.sidmassdyn.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthsi.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthwat.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmeltbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmeltlat.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmelttop.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassth.tavg-u-hxy-si.mon.GLB", + "seaIce.sieqthick.tavg-u-hxy-si.mon.GLB", + "seaIce.siextent.tavg-u-hm-u.mon.NH", + "seaIce.siextent.tavg-u-hm-u.mon.SH", + "seaIce.siflcondbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflcondtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sifllattop.tavg-u-hxy-si.mon.GLB", + "seaIce.siflsensbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflsenstop.tavg-u-hxy-si.mon.GLB", + "seaIce.siflswdbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sihc.tavg-u-hxy-sea.mon.GLB", + "seaIce.sisndmassdyn.tavg-u-hxy-si.mon.GLB", + "seaIce.sisndmasssi.tavg-u-hxy-si.mon.GLB", + "seaIce.sisndmasswind.tavg-u-hxy-si.mon.GLB", + "seaIce.sisnhc.tavg-u-hxy-si.mon.GLB", + "seaIce.sisnmass.tavg-u-hm-u.mon.NH", + "seaIce.sisnmass.tavg-u-hm-u.mon.SH", + "seaIce.sispeed.tavg-u-hxy-si.day.GLB", + "seaIce.sispeed.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-si.day.GLB", + "seaIce.sithick.tavg-u-hxy-si.mon.30S-90S", + "seaIce.sitimefrac.tavg-u-hxy-sea.day.GLB", + "seaIce.sitimefrac.tavg-u-hxy-sea.mon.30S-90S", + "seaIce.siu.tavg-u-hxy-si.day.GLB", + "seaIce.siu.tavg-u-hxy-si.mon.30S-90S", + "seaIce.siv.tavg-u-hxy-si.day.GLB", + "seaIce.siv.tavg-u-hxy-si.mon.30S-90S", + "seaIce.sivol.tavg-u-hm-u.mon.NH", + "seaIce.sivol.tavg-u-hm-u.mon.SH", + "seaIce.snc.tavg-u-hxy-si.mon.GLB", + "seaIce.snd.tavg-u-hxy-sn.day.GLB", + "seaIce.snd.tavg-u-hxy-sn.mon.30S-90S", + "seaIce.snm.tavg-u-hxy-si.mon.GLB", + "seaIce.snw.tavg-u-hxy-si.mon.GLB", + "seaIce.ts.tavg-u-hxy-si.day.GLB", + "seaIce.ts.tavg-u-hxy-si.mon.30S-90S" + ], + "Medium": [ + "atmos.noaahi2m.tavg-h2m-hxy-u.day.GLB", + "atmos.noaahi2m.tmax-h2m-hxy-u.day.GLB", + "atmos.rls.tavg-u-hxy-u.day.GLB", + "atmos.rls.tavg-u-hxy-u.mon.GLB", + "atmos.rss.tavg-u-hxy-u.day.GLB", + "atmos.rss.tavg-u-hxy-u.mon.GLB", + "atmos.wbgt.tavg-h2m-hxy-u.day.GLB", + "atmos.wbgt.tmax-h2m-hxy-u.day.GLB", + "land.cLeaf.tavg-u-hxy-lnd.mon.GLB", + "land.cLitterCwd.tavg-u-hxy-lnd.mon.GLB", + "land.cLitterSubSurf.tavg-u-hxy-lnd.mon.GLB", + "land.cLitterSurf.tavg-u-hxy-lnd.mon.GLB", + "land.cOther.tavg-u-hxy-lnd.mon.GLB", + "land.cRoot.tavg-u-hxy-lnd.mon.GLB", + "land.cropFracC3.tavg-u-hxy-u.mon.GLB", + "land.cropFracC4.tavg-u-hxy-u.mon.GLB", + "land.cSoil.tavg-sl-hxy-lnd.mon.GLB", + "land.cSoilPools.tavg-u-hxy-lnd.mon.GLB", + "land.cStem.tavg-u-hxy-lnd.mon.GLB", + "land.cVeg.tavg-u-hxy-ng.mon.GLB", + "land.cVeg.tavg-u-hxy-shb.mon.GLB", + "land.cVeg.tavg-u-hxy-tree.mon.GLB", + "land.fLitterFire.tavg-u-hxy-lnd.mon.GLB", + "land.fNgas.tavg-u-hxy-lnd.mon.GLB", + "land.fNgasFire.tavg-u-hxy-lnd.mon.GLB", + "land.fNgasNonFire.tavg-u-hxy-lnd.mon.GLB", + "land.fNleach.tavg-u-hxy-lnd.mon.GLB", + "land.fVegFire.tavg-u-hxy-lnd.mon.GLB", + "land.fVegLitterMortality.tavg-u-hxy-lnd.mon.GLB", + "land.fVegLitterSenescence.tavg-u-hxy-lnd.mon.GLB", + "land.fVegSoilMortality.tavg-u-hxy-lnd.mon.GLB", + "land.fVegSoilSenescence.tavg-u-hxy-lnd.mon.GLB", + "land.gpp.tavg-u-hxy-ng.mon.GLB", + "land.gpp.tavg-u-hxy-shb.mon.GLB", + "land.gpp.tavg-u-hxy-tree.mon.GLB", + "land.grassFracC3.tavg-u-hxy-u.mon.GLB", + "land.grassFracC4.tavg-u-hxy-u.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.3hr.GLB", + "land.mrros.tavg-u-hxy-lnd.3hr.GLB", + "land.mrsol.tpt-d10cm-hxy-lnd.3hr.GLB", + "land.nLeaf.tavg-u-hxy-lnd.mon.GLB", + "land.nLitterCwd.tavg-u-hxy-lnd.mon.GLB", + "land.nLitterSubSurf.tavg-u-hxy-lnd.mon.GLB", + "land.nLitterSurf.tavg-u-hxy-lnd.mon.GLB", + "land.nMineralNH4.tavg-u-hxy-lnd.mon.GLB", + "land.nMineralNO3.tavg-u-hxy-lnd.mon.GLB", + "land.nOther.tavg-u-hxy-lnd.mon.GLB", + "land.npp.tavg-u-hxy-ng.mon.GLB", + "land.npp.tavg-u-hxy-shb.mon.GLB", + "land.npp.tavg-u-hxy-tree.mon.GLB", + "land.nppLeaf.tavg-u-hxy-lnd.mon.GLB", + "land.nppOther.tavg-u-hxy-lnd.mon.GLB", + "land.nppRoot.tavg-u-hxy-lnd.mon.GLB", + "land.nppStem.tavg-u-hxy-lnd.mon.GLB", + "land.nRoot.tavg-u-hxy-lnd.mon.GLB", + "land.nStem.tavg-u-hxy-lnd.mon.GLB", + "land.pastureFracC3.tavg-u-hxy-u.mon.GLB", + "land.pastureFracC4.tavg-u-hxy-u.mon.GLB", + "land.ra.tavg-u-hxy-ng.mon.GLB", + "land.ra.tavg-u-hxy-shb.mon.GLB", + "land.ra.tavg-u-hxy-tree.mon.GLB", + "land.raLeaf.tavg-u-hxy-lnd.mon.GLB", + "land.raOther.tavg-u-hxy-lnd.mon.GLB", + "land.raRoot.tavg-u-hxy-lnd.mon.GLB", + "land.raStem.tavg-u-hxy-lnd.mon.GLB", + "land.rh.tavg-u-hxy-ng.mon.GLB", + "land.rh.tavg-u-hxy-shb.mon.GLB", + "land.rh.tavg-u-hxy-tree.mon.GLB", + "land.rhLitter.tavg-u-hxy-lnd.mon.GLB", + "land.rhSoil.tavg-u-hxy-lnd.mon.GLB", + "land.treeFracBdlDcd.tavg-u-hxy-u.mon.GLB", + "land.treeFracBdlEvg.tavg-u-hxy-u.mon.GLB", + "land.treeFracNdlDcd.tavg-u-hxy-u.mon.GLB", + "land.treeFracNdlEvg.tavg-u-hxy-u.mon.GLB", + "land.vegHeight.tavg-u-hxy-ng.mon.GLB", + "land.vegHeight.tavg-u-hxy-shb.mon.GLB", + "land.vegHeight.tavg-u-hxy-tree.mon.GLB", + "land.wetlandCH4cons.tavg-u-hxy-lnd.mon.GLB", + "land.wetlandCH4prod.tavg-u-hxy-lnd.mon.GLB", + "land.wetlandFrac.tavg-u-hxy-u.mon.GLB", + "ocean.evspsbl.tavg-u-hxy-ifs.mon.GLB", + "ocean.ficeberg.tavg-u-hxy-sea.mon.GLB", + "ocean.hfacrossline.tavg-u-ht-sea.mon.GLB", + "ocean.hfevapds.tavg-u-hxy-ifs.mon.GLB", + "ocean.hfibthermds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfibthermds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfrainds.tavg-u-hxy-ifs.mon.GLB", + "ocean.hfrunoffds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfrunoffds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfsnthermds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfsnthermds.tavg-u-hxy-sea.mon.GLB", + "ocean.mfo.tavg-u-ht-sea.mon.GLB", + "ocean.sf6.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfacrossline.tavg-u-ht-sea.mon.GLB", + "ocean.sfdsi.tavg-u-hxy-sea.mon.GLB", + "ocean.sfriver.tavg-u-hxy-sea.mon.GLB", + "ocean.siflfwbot.tavg-u-hxy-sea.mon.GLB", + "ocean.so.tavg-ol-hxy-sea.day.GLB", + "ocean.tnkebto.tavg-u-hxy-sea.yr.GLB", + "ocean.vsf.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfcorr.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfevap.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfpr.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfriver.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfsit.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.arag.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.arag.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.calc.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.calc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chl.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.chlcalc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dmso.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.epn.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.epp.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.expc.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.expcalc.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.fgdms.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fric.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.froc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.graz.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.intppcalc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppdiat.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppdiaz.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppmisc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppnitrate.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intpppico.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.o2.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.ph.tavg-op20bar-hxy-sea.day.GLB", + "seaIce.sfdsi.tavg-u-hxy-si.mon.GLB", + "seaIce.siage.tavg-u-hxy-si.mon.GLB", + "seaIce.siarea.tavg-u-hm-u.day.NH", + "seaIce.siarea.tavg-u-hm-u.day.SH", + "seaIce.siareaacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.sicompstren.tavg-u-hxy-si.mon.GLB", + "seaIce.sidivvel.tpt-u-hxy-si.mon.GLB", + "seaIce.sidmasstranx.tavg-u-hxy-u.mon.GLB", + "seaIce.sidmasstrany.tavg-u-hxy-u.mon.GLB", + "seaIce.sidragbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidragtop.tavg-u-hxy-si.mon.GLB", + "seaIce.siextent.tavg-u-hm-u.day.NH", + "seaIce.siextent.tavg-u-hm-u.day.SH", + "seaIce.sifb.tavg-u-hxy-si.mon.GLB", + "seaIce.siflfwbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflfwdrain.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcecoriolx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcecorioly.tavg-u-hxy-si.mon.GLB", + "seaIce.siforceintstrx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforceintstry.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcetiltx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcetilty.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdconc.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdsnconc.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdsnthick.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdthick.tavg-u-hxy-si.mon.GLB", + "seaIce.simassacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.simpconc.tavg-u-hxy-si.mon.GLB", + "seaIce.simpeffconc.tavg-u-hxy-si.mon.GLB", + "seaIce.simprefrozen.tavg-u-hxy-simp.mon.GLB", + "seaIce.simpthick.tavg-u-hxy-simp.mon.GLB", + "seaIce.sirdgconc.tavg-u-hxy-si.mon.GLB", + "seaIce.sisali.tavg-u-hxy-si.mon.GLB", + "seaIce.sisaltmass.tavg-u-hxy-si.mon.GLB", + "seaIce.sishearvel.tpt-u-hxy-si.mon.GLB", + "seaIce.sisnmass.tavg-u-hm-u.day.NH", + "seaIce.sisnmass.tavg-u-hm-u.day.SH", + "seaIce.sisnmassacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.sistressave.tpt-u-hxy-si.mon.GLB", + "seaIce.sistressmax.tpt-u-hxy-si.mon.GLB", + "seaIce.sistrxdtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sistrxubot.tavg-u-hxy-si.mon.GLB", + "seaIce.sistrydtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sistryubot.tavg-u-hxy-si.mon.GLB", + "seaIce.sitempbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sitempsnic.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-sir.mon.GLB", + "seaIce.sivol.tavg-u-hm-u.day.NH", + "seaIce.sivol.tavg-u-hm-u.day.SH" + ], + "Low": [ + "aerosol.sfpm1.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.sfpm10.tavg-h2m-hxy-u.1hr.GLB", + "atmos.hurs.tavg-h2m-hxy-u.1hr.GLB", + "land.c13Land.tavg-u-hxy-lnd.mon.GLB", + "land.c13Litter.tavg-u-hxy-lnd.mon.GLB", + "land.c13Soil.tavg-u-hxy-lnd.mon.GLB", + "land.c13Veg.tavg-u-hxy-lnd.mon.GLB", + "land.c14Land.tavg-u-hxy-lnd.mon.GLB", + "land.c14Litter.tavg-u-hxy-lnd.mon.GLB", + "land.c14Soil.tavg-u-hxy-lnd.mon.GLB", + "land.c14Veg.tavg-u-hxy-lnd.mon.GLB", + "land.gppc13.tavg-u-hxy-lnd.mon.GLB", + "land.gppc14.tavg-u-hxy-lnd.mon.GLB", + "land.netAtmosLandC13Flux.tavg-u-hxy-lnd.mon.GLB", + "land.netAtmosLandC14Flux.tavg-u-hxy-lnd.mon.GLB", + "land.rac13.tavg-u-hxy-lnd.mon.GLB", + "land.rac14.tavg-u-hxy-lnd.mon.GLB", + "land.rhc13.tavg-u-hxy-lnd.mon.GLB", + "land.rhc14.tavg-u-hxy-lnd.mon.GLB", + "ocean.difmxybo.tavg-ol-hxy-sea.yr.GLB", + "ocean.difmxylo.tavg-ol-hxy-sea.yr.GLB", + "ocean.diftrblo.tavg-ol-hxy-sea.yr.GLB", + "ocean.diftrelo.tavg-ol-hxy-sea.yr.GLB", + "ocean.difvho.tavg-ol-hxy-sea.yr.GLB", + "ocean.difvso.tavg-ol-hxy-sea.yr.GLB", + "ocean.dispkexyfo.tavg-u-hxy-sea.yr.GLB", + "ocean.dxto.ti-u-hxy-u.fx.GLB", + "ocean.dxuo.ti-u-hxy-u.fx.GLB", + "ocean.dxvo.ti-u-hxy-u.fx.GLB", + "ocean.dyto.ti-u-hxy-u.fx.GLB", + "ocean.dyuo.ti-u-hxy-u.fx.GLB", + "ocean.dyvo.ti-u-hxy-u.fx.GLB", + "ocean.mlotstsq.tavg-u-hxy-sea.mon.GLB", + "ocean.msftmmpa.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftmmpa.tavg-rho-hyb-sea.mon.GLB", + "ocean.msftmsmpa.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftypa.tavg-ol-ht-sea.mon.GLB", + "ocean.msftypa.tavg-rho-ht-sea.mon.GLB", + "ocean.ocontempdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontempmint.tavg-u-hxy-sea.yr.GLB", + "ocean.ocontemppadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemppmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemppsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemprmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemptend.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottempdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottempmint.tavg-u-hxy-sea.yr.GLB", + "ocean.opottemppadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemppmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemppsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemprmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemptend.tavg-ol-hxy-sea.dec.GLB", + "ocean.osaltdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpsmadvect.tavg-ol-hxy-sea.mon.GLB", + "ocean.osaltpsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltrmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osalttend.tavg-ol-hxy-sea.yr.GLB", + "ocean.rsdoabsorb.tavg-ol-hxy-sea.yr.GLB", + "ocean.somint.tavg-u-hxy-sea.yr.GLB", + "ocean.sossq.tavg-u-hxy-sea.mon.GLB", + "ocean.thkcelluo.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcellvo.tavg-ol-hxy-sea.mon.GLB", + "ocean.tnpeo.tavg-u-hxy-sea.yr.GLB", + "ocean.tossq.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.dissi13c.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.dissi13c.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissi14c.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissi14cabio.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.dissi14cabio.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.fg13co2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fg14co2abio.tavg-u-hxy-sea.mon.GLB" + ] + }, + "piClim-NOX": { + "Core": [ + "atmos.areacella.ti-u-hxy-u.fx.GLB", + "atmos.cl.tavg-al-hxy-u.mon.GLB", + "atmos.cli.tavg-al-hxy-u.mon.GLB", + "atmos.clivi.tavg-u-hxy-u.mon.GLB", + "atmos.clt.tavg-u-hxy-u.day.GLB", + "atmos.clt.tavg-u-hxy-u.mon.GLB", + "atmos.clw.tavg-al-hxy-u.mon.GLB", + "atmos.clwvi.tavg-u-hxy-u.mon.GLB", + "atmos.evspsbl.tavg-u-hxy-u.mon.GLB", + "atmos.hfls.tavg-u-hxy-u.mon.GLB", + "atmos.hfss.tavg-u-hxy-u.mon.GLB", + "atmos.hur.tavg-p19-hxy-air.mon.GLB", + "atmos.hur.tavg-p19-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.6hr.GLB", + "atmos.hurs.tavg-h2m-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.mon.GLB", + "atmos.hus.tavg-p19-hxy-u.day.GLB", + "atmos.hus.tavg-p19-hxy-u.mon.GLB", + "atmos.huss.tavg-h2m-hxy-u.day.GLB", + "atmos.huss.tavg-h2m-hxy-u.mon.GLB", + "atmos.huss.tpt-h2m-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.1hr.GLB", + "atmos.pr.tavg-u-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.day.GLB", + "atmos.pr.tavg-u-hxy-u.mon.GLB", + "atmos.prc.tavg-u-hxy-u.mon.GLB", + "atmos.prsn.tavg-u-hxy-u.mon.GLB", + "atmos.prw.tavg-u-hxy-u.mon.GLB", + "atmos.ps.tavg-u-hxy-u.day.GLB", + "atmos.ps.tavg-u-hxy-u.mon.GLB", + "atmos.psl.tavg-u-hxy-u.day.GLB", + "atmos.psl.tavg-u-hxy-u.mon.GLB", + "atmos.rlds.tavg-u-hxy-u.mon.GLB", + "atmos.rldscs.tavg-u-hxy-u.mon.GLB", + "atmos.rlus.tavg-u-hxy-u.mon.GLB", + "atmos.rluscs.tavg-u-hxy-u.mon.GLB", + "atmos.rlut.tavg-u-hxy-u.mon.GLB", + "atmos.rlutcs.tavg-u-hxy-u.mon.GLB", + "atmos.rsds.tavg-u-hxy-u.day.GLB", + "atmos.rsds.tavg-u-hxy-u.mon.GLB", + "atmos.rsdscs.tavg-u-hxy-u.mon.GLB", + "atmos.rsdt.tavg-u-hxy-u.mon.GLB", + "atmos.rsus.tavg-u-hxy-u.mon.GLB", + "atmos.rsuscs.tavg-u-hxy-u.mon.GLB", + "atmos.rsut.tavg-u-hxy-u.mon.GLB", + "atmos.rsutcs.tavg-u-hxy-u.mon.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.day.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.mon.GLB", + "atmos.sftlf.ti-u-hxy-u.fx.GLB", + "atmos.ta.tavg-p19-hxy-air.day.GLB", + "atmos.ta.tavg-p19-hxy-air.mon.GLB", + "atmos.ta.tpt-p3-hxy-air.6hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.day.GLB", + "atmos.tas.tavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tmax-h2m-hxy-u.day.GLB", + "atmos.tas.tmaxavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tmin-h2m-hxy-u.day.GLB", + "atmos.tas.tminavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tpt-h2m-hxy-u.3hr.GLB", + "atmos.tauu.tavg-u-hxy-u.mon.GLB", + "atmos.tauv.tavg-u-hxy-u.mon.GLB", + "atmos.ts.tavg-u-hxy-u.mon.GLB", + "atmos.ua.tavg-p19-hxy-air.day.GLB", + "atmos.ua.tavg-p19-hxy-air.mon.GLB", + "atmos.ua.tpt-p3-hxy-air.6hr.GLB", + "atmos.uas.tavg-h10m-hxy-u.day.GLB", + "atmos.uas.tavg-h10m-hxy-u.mon.GLB", + "atmos.uas.tpt-h10m-hxy-u.3hr.GLB", + "atmos.va.tavg-p19-hxy-air.day.GLB", + "atmos.va.tavg-p19-hxy-air.mon.GLB", + "atmos.va.tpt-p3-hxy-air.6hr.GLB", + "atmos.vas.tavg-h10m-hxy-u.day.GLB", + "atmos.vas.tavg-h10m-hxy-u.mon.GLB", + "atmos.vas.tpt-h10m-hxy-u.3hr.GLB", + "atmos.wap.tavg-p19-hxy-air.mon.GLB", + "atmos.wap.tavg-p19-hxy-u.day.GLB", + "atmos.zg.tavg-p19-hxy-air.day.GLB", + "atmos.zg.tavg-p19-hxy-air.mon.GLB", + "land.evspsblsoi.tavg-u-hxy-lnd.mon.GLB", + "land.evspsblveg.tavg-u-hxy-lnd.mon.GLB", + "land.lai.tavg-u-hxy-lnd.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.mon.GLB", + "land.mrros.tavg-u-hxy-lnd.mon.GLB", + "land.mrso.tavg-u-hxy-lnd.mon.GLB", + "land.mrsofc.ti-u-hxy-lnd.fx.GLB", + "land.mrsol.tavg-d10cm-hxy-lnd.mon.GLB", + "land.orog.ti-u-hxy-u.fx.GLB", + "land.rootd.ti-u-hxy-lnd.fx.GLB", + "land.sftgif.ti-u-hxy-u.fx.GLB", + "land.slthick.ti-sl-hxy-lnd.fx.GLB", + "landIce.mrfso.tavg-u-hxy-lnd.mon.GLB", + "landIce.snc.tavg-u-hxy-lnd.mon.GLB", + "landIce.snw.tavg-u-hxy-lnd.mon.GLB", + "ocean.areacello.ti-u-hxy-u.fx.GLB", + "ocean.basin.ti-u-hxy-u.fx.GLB", + "ocean.bigthetao.tavg-ol-hxy-sea.mon.GLB", + "ocean.deptho.ti-u-hxy-sea.fx.GLB", + "ocean.hfds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfgeou.ti-u-hxy-sea.fx.GLB", + "ocean.masscello.tavg-ol-hxy-sea.mon.GLB", + "ocean.masscello.ti-ol-hxy-sea.fx.GLB", + "ocean.mlotst.tavg-u-hxy-sea.mon.GLB", + "ocean.sftof.ti-u-hxy-u.fx.GLB", + "ocean.so.tavg-ol-hxy-sea.mon.GLB", + "ocean.sos.tavg-u-hxy-sea.day.GLB", + "ocean.sos.tavg-u-hxy-sea.mon.GLB", + "ocean.tauuo.tavg-u-hxy-sea.mon.GLB", + "ocean.tauvo.tavg-u-hxy-sea.mon.GLB", + "ocean.thetao.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcello.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcello.ti-ol-hxy-sea.fx.GLB", + "ocean.tos.tavg-u-hxy-sea.day.GLB", + "ocean.tos.tavg-u-hxy-sea.mon.GLB", + "ocean.umo.tavg-ol-hxy-sea.mon.GLB", + "ocean.uo.tavg-ol-hxy-sea.mon.GLB", + "ocean.vmo.tavg-ol-hxy-sea.mon.GLB", + "ocean.vo.tavg-ol-hxy-sea.mon.GLB", + "ocean.wmo.tavg-ol-hxy-sea.mon.GLB", + "ocean.wo.tavg-ol-hxy-sea.mon.GLB", + "ocean.zos.tavg-u-hxy-sea.day.GLB", + "ocean.zos.tavg-u-hxy-sea.mon.GLB", + "ocean.zostoga.tavg-u-hm-sea.mon.GLB", + "seaIce.siconc.tavg-u-hxy-u.day.GLB", + "seaIce.siconc.tavg-u-hxy-u.mon.GLB", + "seaIce.simass.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-si.mon.GLB", + "seaIce.sitimefrac.tavg-u-hxy-sea.mon.GLB", + "seaIce.siu.tavg-u-hxy-si.mon.GLB", + "seaIce.siv.tavg-u-hxy-si.mon.GLB", + "seaIce.snd.tavg-u-hxy-sn.mon.GLB", + "seaIce.ts.tavg-u-hxy-si.mon.GLB" + ], + "High": [ + "aerosol.abs550aer.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550bc.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550dust.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550no3.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550oa.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550so4.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550ss.tavg-u-hxy-u.mon.GLB", + "aerosol.airmass.tavg-al-hxy-u.mon.GLB", + "aerosol.aoanh.tavg-al-hxy-u.mon.NH", + "aerosol.bry.tavg-p39-hy-air.mon.GLB", + "aerosol.bs550aer.tpt-al-hxy-u.6hr.GLB", + "aerosol.c2h6.tavg-al-hxy-u.mon.GLB", + "aerosol.c3h6.tavg-al-hxy-u.mon.GLB", + "aerosol.c3h8.tavg-al-hxy-u.mon.GLB", + "aerosol.ccldncl.tavg-u-hxy-ccl.mon.GLB", + "aerosol.ccn.tavg-u-hxy-ccl.mon.30S-90S", + "aerosol.ccn.tavg-u-hxy-ccl.mon.GLB", + "aerosol.ccn1.tavg-al-hxy-u.mon.30S-90S", + "aerosol.ccn1.tavg-al-hxy-u.mon.GLB", + "aerosol.ccnp02.tavg-al-hxy-u.mon.30S-90S", + "aerosol.ccnp02.tavg-al-hxy-u.mon.GLB", + "aerosol.cdnc.tavg-al-hxy-u.mon.30S-90S", + "aerosol.cdnc.tavg-al-hxy-u.mon.GLB", + "aerosol.cfc114.tavg-al-hxy-u.mon.GLB", + "aerosol.ch3coch3.tavg-al-hxy-u.mon.GLB", + "aerosol.cheaqpso4.tavg-al-hxy-u.mon.GLB", + "aerosol.chegpso4.tavg-al-hxy-u.mon.GLB", + "aerosol.chepasoa.tavg-u-hxy-u.mon.GLB", + "aerosol.chepsoa.tavg-u-hxy-u.mon.GLB", + "aerosol.cly.tavg-p39-hy-air.mon.GLB", + "aerosol.co.tavg-al-hxy-u.mon.GLB", + "aerosol.co.tavg-h2m-hxy-u.day.GLB", + "aerosol.cod.tavg-u-hxy-u.day.GLB", + "aerosol.cod.tavg-u-hxy-u.mon.30S-90S", + "aerosol.cod.tavg-u-hxy-u.mon.GLB", + "aerosol.conccn.tavg-al-hxy-u.mon.GLB", + "aerosol.conccn.tpt-u-hs-u.3hr.GLB", + "aerosol.drybc.tavg-u-hxy-u.mon.GLB", + "aerosol.drydust.tavg-u-hxy-u.mon.GLB", + "aerosol.dryno3.tavg-u-hxy-u.mon.GLB", + "aerosol.dryo3.tavg-u-hxy-u.mon.GLB", + "aerosol.dryoa.tavg-u-hxy-u.mon.GLB", + "aerosol.dryso2.tavg-u-hxy-u.mon.GLB", + "aerosol.dryso4.tavg-u-hxy-u.mon.GLB", + "aerosol.dryss.tavg-u-hxy-u.mon.GLB", + "aerosol.ec550aer.tavg-al-hxy-u.mon.GLB", + "aerosol.ec550aer.tpt-u-hxy-u.6hr.GLB", + "aerosol.emiaco.tavg-u-hxy-u.mon.GLB", + "aerosol.emianox.tavg-u-hxy-u.mon.GLB", + "aerosol.emiaoa.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbbc.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbch4.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbco.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbdms.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbnh3.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbnox.tavg-u-hxy-u.mon.GLB", + "aerosol.emibboa.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbso2.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbvoc.tavg-u-hxy-u.mon.GLB", + "aerosol.emibc.tavg-u-hxy-u.mon.GLB", + "aerosol.emibvoc.tavg-u-hxy-u.mon.GLB", + "aerosol.emico.tavg-u-hxy-u.mon.GLB", + "aerosol.emidms.tavg-u-hxy-u.mon.30S-90S", + "aerosol.emidms.tavg-u-hxy-u.mon.GLB", + "aerosol.emidust.tavg-u-hxy-u.mon.GLB", + "aerosol.emiisop.tavg-u-hxy-u.mon.GLB", + "aerosol.emilnox.tavg-al-hxy-u.mon.GLB", + "aerosol.eminh3.tavg-u-hxy-u.mon.GLB", + "aerosol.eminox.tavg-u-hxy-u.mon.GLB", + "aerosol.emioa.tavg-u-hxy-u.mon.GLB", + "aerosol.emiso2.tavg-u-hxy-u.mon.GLB", + "aerosol.emiso4.tavg-u-hxy-u.mon.GLB", + "aerosol.emiss.tavg-u-hxy-u.mon.30S-90S", + "aerosol.emiss.tavg-u-hxy-u.mon.GLB", + "aerosol.emivoc.tavg-u-hxy-u.mon.GLB", + "aerosol.h2o.tavg-al-hxy-u.mon.GLB", + "aerosol.h2o.tavg-p39-hy-air.mon.GLB", + "aerosol.hcfc22.tavg-al-hxy-u.mon.GLB", + "aerosol.hcho.tavg-al-hxy-u.mon.GLB", + "aerosol.hcl.tavg-al-hxy-u.mon.GLB", + "aerosol.hcl.tavg-p39-hy-air.mon.GLB", + "aerosol.hfc125.tavg-al-hxy-u.mon.GLB", + "aerosol.hfc134a.tavg-al-hxy-u.mon.GLB", + "aerosol.hno3.tavg-al-hxy-u.mon.GLB", + "aerosol.hno3.tavg-p39-hy-air.mon.GLB", + "aerosol.ho2.tavg-p39-hy-air.mon.GLB", + "aerosol.isop.tavg-al-hxy-u.mon.GLB", + "aerosol.jno2.tavg-al-hxy-u.mon.GLB", + "aerosol.lossch4.tavg-al-hxy-u.mon.GLB", + "aerosol.lossco.tavg-al-hxy-u.mon.GLB", + "aerosol.lossn2o.tavg-al-hxy-u.mon.GLB", + "aerosol.lwp.tavg-u-hxy-u.mon.GLB", + "aerosol.mmraerh2o.tavg-al-hxy-u.mon.GLB", + "aerosol.mmraerh2o.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmraerh2o.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrbc.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrbc.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrbc.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrbc.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrdust.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrdust.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrdust.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrdust.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrnh4.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrnh4.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrnh4.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrnh4.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrno3.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrno3.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrno3.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrno3.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmroa.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmroa.tavg-al-hxy-u.mon.GLB", + "aerosol.mmroa.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmroa.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrpm1.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrpm1.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrpm2p5.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrpm2p5.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrso4.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrso4.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrso4.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrso4.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrsoa.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrsoa.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrsoa.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrss.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrss.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrss.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrss.tpt-h2m-hs-u.3hr.GLB", + "aerosol.nh50.tavg-al-hxy-u.mon.GLB", + "aerosol.no.tavg-al-hxy-u.mon.GLB", + "aerosol.no2.tavg-al-hxy-u.mon.GLB", + "aerosol.no2.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.noy.tavg-p39-hy-air.mon.GLB", + "aerosol.o3.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.o3.tmax-h2m-hxy-u.day.GLB", + "aerosol.o3loss.tavg-al-hxy-u.mon.GLB", + "aerosol.o3prod.tavg-al-hxy-u.mon.GLB", + "aerosol.od443aer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550aer.tavg-u-hxy-u.day.GLB", + "aerosol.od550aer.tavg-u-hxy-u.mon.30S-90S", + "aerosol.od550aer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550aerh2o.tavg-u-hxy-u.mon.GLB", + "aerosol.od550bb.tavg-u-hxy-u.mon.GLB", + "aerosol.od550bc.tavg-u-hxy-u.mon.GLB", + "aerosol.od550csaer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550dust.tavg-u-hxy-u.mon.GLB", + "aerosol.od550lt1aer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550no3.tavg-u-hxy-u.mon.GLB", + "aerosol.od550oa.tavg-u-hxy-u.mon.GLB", + "aerosol.od550so4.tavg-u-hxy-u.mon.GLB", + "aerosol.od550soa.tavg-u-hxy-u.mon.GLB", + "aerosol.od550ss.tavg-u-hxy-u.mon.GLB", + "aerosol.od865aer.tavg-u-hxy-u.mon.GLB", + "aerosol.oh.tavg-al-hxy-u.mon.GLB", + "aerosol.oh.tavg-p39-hy-air.mon.GLB", + "aerosol.pan.tavg-al-hxy-u.mon.GLB", + "aerosol.photo1d.tavg-al-hxy-u.mon.GLB", + "aerosol.pod0.tsum-u-hxy-u.mon.GLB", + "aerosol.reffccwctop.tavg-u-hxy-cl.mon.GLB", + "aerosol.reffclwtop.tavg-u-hxy-cl.mon.30S-90S", + "aerosol.reffclwtop.tavg-u-hxy-cl.mon.GLB", + "aerosol.rluscsaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rlutaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rlutcsaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rsutaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rsutcsaf.tavg-u-hxy-u.mon.GLB", + "aerosol.sfpm1.tavg-h2m-hxy-u.day.GLB", + "aerosol.sfpm10.tavg-al-hxy-u.mon.30S-90S", + "aerosol.sfpm10.tavg-al-hxy-u.mon.GLB", + "aerosol.sfpm10.tavg-h2m-hxy-u.day.GLB", + "aerosol.sfpm25.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.sfpm25.tavg-h2m-hxy-u.day.GLB", + "aerosol.so2.tavg-al-hxy-u.mon.30S-90S", + "aerosol.so2.tavg-al-hxy-u.mon.GLB", + "aerosol.so2.tavg-h2m-hxy-u.day.GLB", + "aerosol.so2.tpt-h2m-hs-u.3hr.GLB", + "aerosol.tatp.tavg-u-hxy-u.mon.GLB", + "aerosol.toz.tavg-u-hxy-u.day.GLB", + "aerosol.toz.tavg-u-hxy-u.mon.GLB", + "aerosol.tropoz.tavg-u-hxy-u.mon.GLB", + "aerosol.ttop.tavg-u-hxy-cl.mon.GLB", + "aerosol.ua.tavg-10hPa-hxy-air.day.GLB", + "aerosol.vt100.tavg-100hPa-hy-air.mon.GLB", + "aerosol.wa.tavg-al-hxy-u.mon.GLB", + "aerosol.wetbc.tavg-u-hxy-u.mon.GLB", + "aerosol.wetdust.tavg-u-hxy-u.mon.GLB", + "aerosol.wetoa.tavg-u-hxy-u.mon.GLB", + "aerosol.wetso2.tavg-u-hxy-u.mon.GLB", + "aerosol.wetso4.tavg-u-hxy-u.mon.GLB", + "aerosol.wetss.tavg-u-hxy-u.mon.GLB", + "aerosol.zg.tavg-10hPa-hxy-air.day.GLB", + "atmos.albisccp.tavg-u-hxy-cl.mon.30S-90S", + "atmos.bldep.tavg-u-hxy-u.mon.GLB", + "atmos.bldep.tmax-u-hxy-u.day.GLB", + "atmos.bldep.tmin-u-hxy-u.day.GLB", + "atmos.cl.tavg-al-hxy-u.mon.30S-90S", + "atmos.clc.tavg-al-hxy-u.mon.30S-90S", + "atmos.clc.tavg-al-hxy-u.mon.GLB", + "atmos.clcalipso.tavg-220hPa-hxy-air.mon.30S-90S", + "atmos.clcalipso.tavg-220hPa-hxy-air.mon.GLB", + "atmos.clcalipso.tavg-560hPa-hxy-air.mon.30S-90S", + "atmos.clcalipso.tavg-560hPa-hxy-air.mon.GLB", + "atmos.clcalipso.tavg-840hPa-hxy-air.mon.30S-90S", + "atmos.clcalipso.tavg-840hPa-hxy-air.mon.GLB", + "atmos.clcalipso.tavg-h40-hxy-air.mon.30S-90S", + "atmos.cldnci.tavg-u-hxy-cl.mon.GLB", + "atmos.cldncl.tavg-u-hxy-cl.mon.GLB", + "atmos.cldnvi.tavg-u-hxy-u.mon.GLB", + "atmos.cli.tavg-al-hxy-u.mon.30S-90S", + "atmos.clic.tavg-al-hxy-u.mon.30S-90S", + "atmos.clis.tavg-al-hxy-u.mon.30S-90S", + "atmos.clisccp.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clisccp.tavg-p7c-hxy-air.mon.GLB", + "atmos.clivi.tavg-u-hxy-u.mon.30S-90S", + "atmos.clivimodis.tavg-u-hxy-u.mon.30S-90S", + "atmos.clmodis.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clmodis.tavg-p7c-hxy-air.mon.GLB", + "atmos.clmodisice.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clmodisice.tavg-p7c-hxy-air.mon.GLB", + "atmos.clmodisiceReff.tavg-u-hxy-u.mon.GLB", + "atmos.clmodisliquid.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clmodisliquid.tavg-p7c-hxy-air.mon.GLB", + "atmos.clmodisliquidReff.tavg-u-hxy-u.mon.GLB", + "atmos.cls.tavg-al-hxy-u.mon.30S-90S", + "atmos.clt.tavg-u-hxy-u.mon.30S-90S", + "atmos.cltc.tavg-u-hxy-u.mon.GLB", + "atmos.cltcalipso.tavg-u-hxy-u.mon.30S-90S", + "atmos.cltisccp.tavg-u-hxy-u.mon.30S-90S", + "atmos.cltmodis.tavg-u-hxy-u.mon.30S-90S", + "atmos.clw.tavg-al-hxy-u.mon.30S-90S", + "atmos.clwc.tavg-al-hxy-u.mon.30S-90S", + "atmos.clws.tavg-al-hxy-u.mon.30S-90S", + "atmos.clwvi.tavg-u-hxy-u.mon.30S-90S", + "atmos.clwvimodis.tavg-u-hxy-u.mon.30S-90S", + "atmos.co2.tavg-al-hxy-u.mon.GLB", + "atmos.co2.tavg-p19-hxy-air.mon.GLB", + "atmos.co23D.tavg-al-hxy-u.mon.GLB", + "atmos.co2mass.tavg-u-hm-u.mon.GLB", + "atmos.dmc.tavg-alh-hxy-u.mon.30S-90S", + "atmos.edt.tavg-al-hxy-u.mon.30S-90S", + "atmos.evspsbl.tavg-u-hxy-lnd.day.GLB", + "atmos.evu.tavg-al-hxy-u.mon.30S-90S", + "atmos.fco2antt.tavg-u-hxy-u.mon.GLB", + "atmos.fco2fos.tavg-u-hxy-u.mon.GLB", + "atmos.fco2nat.tavg-u-hxy-u.mon.GLB", + "atmos.hfls.tavg-u-hxy-u.mon.30S-90S", + "atmos.hfss.tavg-u-hxy-u.mon.30S-90S", + "atmos.hur.tavg-al-hxy-u.mon.30S-90S", + "atmos.hur.tavg-al-hxy-u.mon.GLB", + "atmos.hur.tavg-p19-hxy-air.mon.30S-90S", + "atmos.hurs.tavg-h2m-hxy-u.mon.30S-90S", + "atmos.hurs.tmax-h2m-hxy-u.day.GLB", + "atmos.hurs.tmin-h2m-hxy-u.day.GLB", + "atmos.hus.tavg-al-hxy-u.mon.30S-90S", + "atmos.hus.tavg-al-hxy-u.mon.GLB", + "atmos.hus.tavg-p19-hxy-u.mon.30S-90S", + "atmos.hus.tpt-al-hxy-u.6hr.GLB", + "atmos.hus.tpt-p7h-hxy-air.6hr.GLB", + "atmos.huss.tavg-h2m-hxy-u.mon.30S-90S", + "atmos.huss.tpt-h2m-hxy-u.1hr.GLB", + "atmos.mc.tavg-alh-hxy-u.mon.GLB", + "atmos.mcd.tavg-alh-hxy-u.mon.30S-90S", + "atmos.mcu.tavg-alh-hxy-u.mon.30S-90S", + "atmos.mcu.tavg-alh-hxy-u.mon.GLB", + "atmos.pctisccp.tavg-u-hxy-cl.mon.30S-90S", + "atmos.pfull.tavg-al-hxy-u.mon.GLB", + "atmos.pfull.tclm-al-hxy-u.mon.30S-90S", + "atmos.phalf.tavg-alh-hxy-u.mon.GLB", + "atmos.pr.tavg-u-hxy-u.mon.30S-90S", + "atmos.pr.tmax-u-hxy-u.day.GLB", + "atmos.pr.tpt-u-hxy-u.6hr.GLB", + "atmos.prc.tavg-u-hxy-u.mon.30S-90S", + "atmos.prra.tavg-u-hxy-lnd.day.GLB", + "atmos.prra.tavg-u-hxy-u.mon.30S-90S", + "atmos.prsn.tavg-u-hxy-u.3hr.GLB", + "atmos.prsn.tavg-u-hxy-u.day.GLB", + "atmos.prsn.tavg-u-hxy-u.mon.30S-90S", + "atmos.prw.tavg-u-hxy-u.day.GLB", + "atmos.prw.tavg-u-hxy-u.mon.30S-90S", + "atmos.ps.tavg-u-hxy-u.1hr.GLB", + "atmos.ps.tavg-u-hxy-u.mon.30S-90S", + "atmos.ps.tpt-u-hxy-u.6hr.GLB", + "atmos.psl.tavg-u-hxy-u.mon.30S-90S", + "atmos.psl.tpt-u-hxy-u.1hr.GLB", + "atmos.psl.tpt-u-hxy-u.6hr.GLB", + "atmos.ptp.tavg-u-hxy-u.mon.GLB", + "atmos.reffcclwtop.tavg-u-hxy-ccl.mon.GLB", + "atmos.reffclic.tavg-al-hxy-ccl.mon.30S-90S", + "atmos.reffclis.tavg-al-hxy-scl.mon.30S-90S", + "atmos.reffclwc.tavg-al-hxy-ccl.mon.30S-90S", + "atmos.reffclws.tavg-al-hxy-scl.mon.30S-90S", + "atmos.reffsclwtop.tavg-u-hxy-scl.mon.GLB", + "atmos.rld.tavg-alh-hxy-u.mon.GLB", + "atmos.rld4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rldcs.tavg-alh-hxy-u.mon.GLB", + "atmos.rldcs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rlds.tavg-u-hxy-u.1hr.GLB", + "atmos.rlds.tavg-u-hxy-u.day.GLB", + "atmos.rlds.tavg-u-hxy-u.mon.30S-90S", + "atmos.rldscs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rlu.tavg-alh-hxy-u.mon.GLB", + "atmos.rlu4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rlucs.tavg-alh-hxy-u.mon.GLB", + "atmos.rlucs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rlus.tavg-u-hxy-u.day.GLB", + "atmos.rlus.tavg-u-hxy-u.mon.30S-90S", + "atmos.rlut.tavg-u-hxy-u.mon.30S-90S", + "atmos.rlut4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rlutcs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rlutcs4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rsd.tavg-alh-hxy-u.mon.GLB", + "atmos.rsd4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsdcs.tavg-alh-hxy-u.mon.GLB", + "atmos.rsdcs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsds.tavg-u-hxy-u.1hr.GLB", + "atmos.rsds.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsdscs.tavg-u-hxy-u.day.GLB", + "atmos.rsdscs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsdt.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsu.tavg-alh-hxy-u.mon.GLB", + "atmos.rsu4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsucs.tavg-alh-hxy-u.mon.GLB", + "atmos.rsucs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsus.tavg-u-hxy-u.day.GLB", + "atmos.rsus.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsuscs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsut.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsut4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rsutcs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsutcs4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rtmt.tavg-u-hxy-u.mon.GLB", + "atmos.rv850.tpt-850hPa-hxy-air.6hr.GLB", + "atmos.scldncl.tavg-u-hxy-scl.mon.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.mon.30S-90S", + "atmos.ta.tavg-al-hxy-u.mon.30S-90S", + "atmos.ta.tavg-al-hxy-u.mon.GLB", + "atmos.ta.tavg-p19-hxy-air.mon.30S-90S", + "atmos.ta.tavg-p39-hy-air.mon.GLB", + "atmos.ta.tpt-al-hxy-u.6hr.GLB", + "atmos.ta.tpt-p7h-hxy-air.6hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.1hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.mon.30S-90S", + "atmos.tas.tmaxavg-h2m-hxy-u.mon.30S-90S", + "atmos.tas.tminavg-h2m-hxy-u.mon.30S-90S", + "atmos.tnt.tavg-al-hxy-u.mon.GLB", + "atmos.tntrl.tavg-al-hxy-u.mon.GLB", + "atmos.tntrs.tavg-al-hxy-u.mon.GLB", + "atmos.ts.tavg-u-hxy-u.mon.30S-90S", + "atmos.ts.tpt-u-hxy-u.6hr.GLB", + "atmos.ua.tavg-al-hxy-u.mon.GLB", + "atmos.ua.tavg-p19-hxy-air.mon.30S-90S", + "atmos.ua.tavg-p39-hy-air.mon.GLB", + "atmos.ua.tpt-al-hxy-u.6hr.GLB", + "atmos.ua.tpt-p7h-hxy-air.6hr.GLB", + "atmos.uas.tavg-h10m-hxy-u.mon.30S-90S", + "atmos.uas.tpt-h10m-hxy-u.1hr.GLB", + "atmos.va.tavg-al-hxy-u.mon.GLB", + "atmos.va.tavg-p19-hxy-air.mon.30S-90S", + "atmos.va.tavg-p39-hy-air.mon.GLB", + "atmos.va.tpt-al-hxy-u.6hr.GLB", + "atmos.va.tpt-p7h-hxy-air.6hr.GLB", + "atmos.vas.tavg-h10m-hxy-u.mon.30S-90S", + "atmos.vas.tpt-h10m-hxy-u.1hr.GLB", + "atmos.wap.tavg-p19-hxy-air.mon.30S-90S", + "atmos.zg.tavg-1000hPa-hxy-air.day.GLB", + "atmos.zg.tavg-500hPa-hxy-air.day.GLB", + "atmos.zg.tavg-al-hxy-u.mon.GLB", + "atmos.zg.tavg-p19-hxy-air.mon.30S-90S", + "atmos.zg.tavg-p39-hy-air.mon.GLB", + "atmos.zg.tpt-500hPa-hxy-air.6hr.GLB", + "atmos.zg.tpt-al-hxy-u.6hr.GLB", + "atmos.zg.tpt-p7h-hxy-air.6hr.GLB", + "atmos.ztp.tavg-u-hxy-u.mon.GLB", + "atmosChem.c2h4.tavg-al-hxy-u.mon.GLB", + "atmosChem.c2h5oh.tavg-al-hxy-u.mon.GLB", + "atmosChem.c4h10.tavg-al-hxy-u.mon.GLB", + "atmosChem.cfc11.tavg-u-hm-u.mon.GLB", + "atmosChem.cfc113.tavg-u-hm-u.mon.GLB", + "atmosChem.cfc12.tavg-u-hm-u.mon.GLB", + "atmosChem.ch3oh.tavg-al-hxy-u.mon.GLB", + "atmosChem.ch4.tavg-al-hxy-u.mon.GLB", + "atmosChem.ch4.tavg-p39-hy-air.mon.GLB", + "atmosChem.ch4losssoil.tavg-u-hxy-u.mon.GLB", + "atmosChem.ch4ref.ti-al-hxy-u.fx.GLB", + "atmosChem.chegph2oo1d.tavg-al-hxy-u.mon.GLB", + "atmosChem.chepnh4.tavg-al-hxy-u.mon.GLB", + "atmosChem.chepno3.tavg-al-hxy-u.mon.GLB", + "atmosChem.dms.tavg-al-hxy-u.mon.30S-90S", + "atmosChem.dms.tavg-al-hxy-u.mon.GLB", + "atmosChem.do3chm.tavg-al-hxy-u.mon.GLB", + "atmosChem.dryh2.tavg-u-hxy-u.mon.GLB", + "atmosChem.dryhno3.tavg-u-hxy-u.mon.GLB", + "atmosChem.drynh3.tavg-u-hxy-u.mon.GLB", + "atmosChem.drynh4.tavg-u-hxy-u.mon.GLB", + "atmosChem.drynoy.tavg-u-hxy-u.mon.GLB", + "atmosChem.e90inst.tpt-al-hxy-u.mon.GLB", + "atmosChem.emiach4.tavg-u-hxy-u.mon.GLB", + "atmosChem.emiavnox.tavg-al-hxy-u.mon.GLB", + "atmosChem.emic2h4.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic2h5oh.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic2h6.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic3h6.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic3h8.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic4h10.tavg-u-hxy-u.mon.GLB", + "atmosChem.emich3oh.tavg-u-hxy-u.mon.GLB", + "atmosChem.emich4.tavg-u-hxy-u.mon.GLB", + "atmosChem.emih2.tavg-u-hxy-u.mon.GLB", + "atmosChem.emilkch4.tavg-u-hxy-u.mon.GLB", + "atmosChem.h2.tavg-al-hxy-u.mon.GLB", + "atmosChem.h2loss.tavg-al-hxy-u.mon.GLB", + "atmosChem.h2prod.tavg-al-hxy-u.mon.GLB", + "atmosChem.hcfc22.tavg-u-hm-u.mon.GLB", + "atmosChem.meanage.tavg-al-hxy-u.mon.GLB", + "atmosChem.meanage.tavg-p39-hy-air.mon.GLB", + "atmosChem.n2o.tavg-al-hxy-u.mon.GLB", + "atmosChem.n2o.tavg-p39-hy-air.mon.GLB", + "atmosChem.o3.tavg-al-hxy-u.mon.GLB", + "atmosChem.o3.tavg-p19-hxy-air.mon.GLB", + "atmosChem.o3.tavg-p39-hy-air.mon.GLB", + "atmosChem.o3.tpt-al-hxy-u.mon.GLB", + "atmosChem.o3ref.tclm-al-hxy-u.fx.GLB", + "atmosChem.o3ref.ti-al-hxy-u.fx.GLB", + "atmosChem.o3ste.tavg-al-hxy-u.mon.GLB", + "atmosChem.rlutch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rlutcsch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rlutcso3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rluto3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsutch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsutcsch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsutcso3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsuto3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.stratch4loss.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropch4loss.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropch4lossoh.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropdo3chm.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropo3ste.tavg-al-hxy-u.mon.GLB", + "atmosChem.wethno3.tavg-al-hxy-u.mon.GLB", + "atmosChem.wetnh3.tavg-u-hxy-u.mon.GLB", + "atmosChem.wetnh4.tavg-u-hxy-u.mon.GLB", + "atmosChem.wetno3.tavg-al-hxy-u.mon.GLB", + "atmosChem.wetnoy.tavg-u-hxy-u.mon.GLB", + "land.albc.tavg-u-hxy-veg.mon.GLB", + "land.areacellr.ti-u-hxy-u.fx.GLB", + "land.baresoilFrac.tavg-u-hxy-u.mon.GLB", + "land.burntFractionAll.tavg-u-hxy-u.mon.GLB", + "land.cGeologicStorage.tavg-u-hxy-u.mon.GLB", + "land.cLand.tavg-u-hxy-lnd.mon.GLB", + "land.cLitter.tavg-u-hxy-lnd.mon.GLB", + "land.cnc.tavg-u-hxy-u.mon.GLB", + "land.cProduct.tavg-u-hxy-lnd.mon.GLB", + "land.cropFrac.tavg-u-hxy-u.mon.GLB", + "land.cSoil.tavg-d100cm-hxy-lnd.mon.GLB", + "land.cSoil.tavg-u-hxy-lnd.mon.GLB", + "land.cVeg.tavg-u-hxy-lnd.mon.GLB", + "land.dcw.tavg-u-hxy-lnd.day.GLB", + "land.dslw.tavg-u-hxy-lnd.day.GLB", + "land.evspsblpot.tavg-u-hxy-lnd.day.GLB", + "land.evspsblpot.tavg-u-hxy-lnd.mon.GLB", + "land.fAnthDisturb.tavg-u-hxy-lnd.mon.GLB", + "land.fBNF.tavg-u-hxy-lnd.mon.GLB", + "land.fCLandToOcean.tavg-u-hxy-lnd.mon.GLB", + "land.fDeforestToAtmos.tavg-u-hxy-lnd.mon.GLB", + "land.fDeforestToProduct.tavg-u-hxy-lnd.mon.GLB", + "land.fFire.tavg-u-hxy-lnd.mon.GLB", + "land.fFireAll.tavg-u-hxy-lnd.mon.GLB", + "land.fFireNat.tavg-u-hxy-lnd.mon.GLB", + "land.fHarvestToAtmos.tavg-u-hxy-lnd.mon.GLB", + "land.fHarvestToGeologicStorage.tavg-u-hxy-lnd.mon.GLB", + "land.fHarvestToProduct.tavg-u-hxy-lnd.mon.GLB", + "land.fLitterSoil.tavg-u-hxy-lnd.mon.GLB", + "land.fN2O.tavg-u-hxy-lnd.mon.GLB", + "land.fNAnthDisturb.tavg-u-hxy-lnd.mon.GLB", + "land.fNdep.tavg-u-hxy-lnd.mon.GLB", + "land.fNfert.tavg-u-hxy-lnd.mon.GLB", + "land.fNLandToOcean.tavg-u-hxy-lnd.mon.GLB", + "land.fNLitterSoil.tavg-u-hxy-lnd.mon.GLB", + "land.fNloss.tavg-u-hxy-lnd.mon.GLB", + "land.fNnetmin.tavg-u-hxy-lnd.mon.GLB", + "land.fNOx.tavg-u-hxy-lnd.mon.GLB", + "land.fNProduct.tavg-u-hxy-lnd.mon.GLB", + "land.fNup.tavg-u-hxy-lnd.mon.GLB", + "land.fNVegLitter.tavg-u-hxy-lnd.mon.GLB", + "land.fNVegSoil.tavg-u-hxy-lnd.mon.GLB", + "land.fProductDecomp.tavg-u-hxy-lnd.mon.GLB", + "land.fVegLitter.tavg-u-hxy-lnd.mon.GLB", + "land.fVegSoil.tavg-u-hxy-lnd.mon.GLB", + "land.gpp.tavg-u-hxy-lnd.mon.GLB", + "land.grassFrac.tavg-u-hxy-u.mon.GLB", + "land.landCoverFrac.tavg-u-hxy-u.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.day.GLB", + "land.mrrob.tavg-u-hxy-lnd.day.GLB", + "land.mrros.tavg-u-hxy-lnd.day.GLB", + "land.mrsfl.tavg-sl-hxy-lnd.day.GLB", + "land.mrsfl.tavg-sl-hxy-lnd.mon.GLB", + "land.mrsll.tavg-sl-hxy-lnd.day.GLB", + "land.mrsll.tavg-sl-hxy-lnd.mon.GLB", + "land.mrso.tavg-u-hxy-lnd.day.GLB", + "land.mrsol.tavg-d10cm-hxy-lnd.day.GLB", + "land.mrsol.tavg-sl-hxy-lnd.day.GLB", + "land.mrsol.tavg-sl-hxy-lnd.mon.GLB", + "land.mrsow.tavg-u-hxy-lnd.day.GLB", + "land.mrtws.tavg-u-hxy-lnd.day.GLB", + "land.mrtws.tavg-u-hxy-lnd.mon.GLB", + "land.nbp.tavg-u-hxy-lnd.mon.GLB", + "land.nep.tavg-u-hxy-lnd.mon.GLB", + "land.nLand.tavg-u-hxy-lnd.mon.GLB", + "land.nLitter.tavg-u-hxy-lnd.mon.GLB", + "land.nMineral.tavg-u-hxy-lnd.mon.GLB", + "land.npp.tavg-u-hxy-lnd.mon.GLB", + "land.nProduct.tavg-u-hxy-lnd.mon.GLB", + "land.nSoil.tavg-u-hxy-lnd.mon.GLB", + "land.nVeg.tavg-u-hxy-lnd.mon.GLB", + "land.pastureFrac.tavg-u-hxy-u.mon.GLB", + "land.prveg.tavg-u-hxy-lnd.mon.GLB", + "land.ra.tavg-u-hxy-lnd.mon.GLB", + "land.residualFrac.tavg-u-hxy-u.mon.GLB", + "land.rh.tavg-u-hxy-lnd.mon.GLB", + "land.rivi.tavg-u-hxy-lnd.day.GLB", + "land.rivo.tavg-u-hxy-lnd.day.GLB", + "land.rsds.tavg-u-hxy-sn.mon.GLB", + "land.rsus.tavg-u-hxy-sn.mon.GLB", + "land.shrubFrac.tavg-u-hxy-u.mon.GLB", + "land.tas.tavg-u-hxy-u.1hr.GLB", + "land.tran.tavg-u-hxy-lnd.mon.GLB", + "land.treeFrac.tavg-u-hxy-u.mon.GLB", + "land.tsl.tavg-sl-hxy-lnd.mon.GLB", + "land.tslsi.tavg-u-hxy-u.day.GLB", + "land.vegFrac.tavg-u-hxy-u.mon.GLB", + "land.vegHeight.tavg-u-hxy-veg.mon.GLB", + "land.wetlandCH4.tavg-u-hxy-lnd.mon.GLB", + "land.wtd.tavg-u-hxy-lnd.day.GLB", + "landIce.snd.tavg-u-hxy-lnd.mon.GLB", + "landIce.snw.tavg-u-hxy-lnd.day.GLB", + "ocean.absscint.tavg-op4-hxy-sea.mon.GLB", + "ocean.agessc.tavg-ol-hxy-sea.mon.GLB", + "ocean.bigthetao.tavg-ol-hm-sea.mon.GLB", + "ocean.bigthetao.tavg-ol-hxy-sea.dec.GLB", + "ocean.bigthetao.tavg-op20bar-hxy-sea.day.GLB", + "ocean.chcint.tavg-op4-hxy-sea.mon.GLB", + "ocean.ficeberg.tavg-ol-hxy-sea.mon.GLB", + "ocean.friver.tavg-u-hxy-sea.mon.GLB", + "ocean.hfbasin.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpmadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpmdiff.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpsmadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfds.tavg-u-hxy-sea.mon.30S-90S", + "ocean.hfx.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfx.tavg-u-hxy-sea.day.GLB", + "ocean.hfx.tavg-u-hxy-sea.mon.GLB", + "ocean.hfy.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfy.tavg-u-hxy-sea.day.GLB", + "ocean.hfy.tavg-u-hxy-sea.mon.GLB", + "ocean.htovgyre.tavg-u-hyb-sea.mon.GLB", + "ocean.htovovrt.tavg-u-hyb-sea.mon.GLB", + "ocean.masscello.tavg-ol-hxy-sea.dec.GLB", + "ocean.masso.tavg-u-hm-sea.dec.GLB", + "ocean.masso.tavg-u-hm-sea.mon.GLB", + "ocean.mlotst.tavg-u-hxy-sea.day.GLB", + "ocean.mlotst.tavg-u-hxy-sea.mon.30S-90S", + "ocean.mlotst.tmax-u-hxy-sea.mon.GLB", + "ocean.mlotst.tmin-u-hxy-sea.mon.GLB", + "ocean.mpw.tavg-u-hxy-sea.mon.GLB", + "ocean.mpw.tpt-u-hxy-sea.3hr.GLB", + "ocean.mpwswell.tavg-u-hxy-sea.mon.GLB", + "ocean.mpwswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.mpwwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.mpwwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.msftbarot.tavg-u-hxy-sea.mon.GLB", + "ocean.msftm.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftm.tavg-rho-hyb-sea.mon.GLB", + "ocean.msfty.tavg-ol-ht-sea.mon.GLB", + "ocean.msfty.tavg-rho-ht-sea.mon.GLB", + "ocean.obvfsq.tavg-ol-hxy-sea.mon.GLB", + "ocean.pbo.tavg-u-hxy-sea.mon.GLB", + "ocean.pfscint.tavg-op4-hxy-sea.mon.GLB", + "ocean.phcint.tavg-op4-hxy-sea.mon.GLB", + "ocean.pso.tavg-u-hxy-sea.mon.GLB", + "ocean.scint.tavg-op4-hxy-sea.mon.GLB", + "ocean.sduo.tavg-u-hxy-sea.mon.GLB", + "ocean.sduo.tpt-u-hxy-sea.3hr.GLB", + "ocean.sdvo.tavg-u-hxy-sea.mon.GLB", + "ocean.sdvo.tpt-u-hxy-sea.3hr.GLB", + "ocean.sfx.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfx.tavg-u-hxy-sea.mon.GLB", + "ocean.sfy.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfy.tavg-u-hxy-sea.mon.GLB", + "ocean.sltbasin.tavg-u-hyb-sea.mon.GLB", + "ocean.sltovgyre.tavg-u-hyb-sea.mon.GLB", + "ocean.sltovovrt.tavg-u-hyb-sea.mon.GLB", + "ocean.so.tavg-ol-hm-sea.mon.GLB", + "ocean.so.tavg-ol-hxy-sea.dec.GLB", + "ocean.so.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.sob.tavg-u-hxy-sea.mon.GLB", + "ocean.sos.tavg-u-hm-sea.mon.30S-90S", + "ocean.sos.tavg-u-hm-sea.mon.GLB", + "ocean.swh.tavg-u-hxy-sea.mon.GLB", + "ocean.swh.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhmax.tmax-u-hxy-sea.mon.GLB", + "ocean.swhmax.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhswell.tavg-u-hxy-sea.mon.GLB", + "ocean.swhswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.swhwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.tauuo.tavg-u-hxy-sea.3hr.GLB", + "ocean.tauuo.tavg-u-hxy-sea.dec.GLB", + "ocean.tauvo.tavg-u-hxy-sea.3hr.GLB", + "ocean.tauvo.tavg-u-hxy-sea.dec.GLB", + "ocean.thetao.tavg-ol-hm-sea.mon.GLB", + "ocean.thetao.tavg-ol-hxy-sea.dec.GLB", + "ocean.thetao.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.thetao.tavg-op20bar-hxy-sea.day.GLB", + "ocean.thkcello.tavg-ol-hxy-sea.dec.GLB", + "ocean.tob.tavg-u-hxy-sea.mon.GLB", + "ocean.tos.tavg-u-hm-sea.mon.GLB", + "ocean.tos.tavg-u-hxy-sea.mon.30S-90S", + "ocean.tos.tpt-u-hxy-sea.3hr.GLB", + "ocean.tossq.tavg-u-hxy-sea.day.GLB", + "ocean.umo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.uo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.uos.tavg-u-hxy-sea.day.GLB", + "ocean.vmo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.vo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.volcello.tavg-ol-hxy-sea.dec.GLB", + "ocean.volcello.tavg-ol-hxy-sea.mon.GLB", + "ocean.volcello.tavg-ol-hxy-sea.yr.GLB", + "ocean.volcello.ti-ol-hxy-sea.fx.GLB", + "ocean.volo.tavg-u-hm-sea.dec.GLB", + "ocean.volo.tavg-u-hm-sea.mon.GLB", + "ocean.vos.tavg-u-hxy-sea.day.GLB", + "ocean.wdir.tavg-u-hxy-sea.mon.GLB", + "ocean.wdir.tpt-u-hxy-sea.3hr.GLB", + "ocean.wdirswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wdirswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wdirwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wdirwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.wfcorr.tavg-u-hxy-sea.mon.GLB", + "ocean.wfo.tavg-u-hxy-sea.mon.GLB", + "ocean.wmo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.wo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.wpdir.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdir.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpdirswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdirswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpdirwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdirwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpp.tavg-u-hxy-sea.mon.GLB", + "ocean.wpp.tpt-u-hxy-sea.3hr.GLB", + "ocean.wppswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wppswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wppwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wppwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.zos.tavg-u-hxy-sea.mon.30S-90S", + "ocean.zossq.tavg-u-hxy-sea.mon.GLB", + "ocean.zostoga.tavg-u-hm-sea.day.GLB", + "ocnBgchem.bacc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.calc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chl.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chl.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chlcalc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chldiat.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chldiat.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chldiaz.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chldiaz.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chlmisc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chlmisc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chlpico.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chlpico.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.detoc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dfe.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.dfe.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissic.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.dissic.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissoc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dmso.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.expc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.expcalc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.fgco2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fsfe.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fsn.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.graz.tavg-ol-hxy-sea.mon.30S-90S", + "ocnBgchem.icfriver.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intdic.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intdoc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intparag.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbfe.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbn.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbp.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbsi.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpcalcite.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpn2.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpoc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpp.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpp.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppcalc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppdiat.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppdiaz.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppmisc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppnitrate.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpppico.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.nh4.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.nh4.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.no3.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.no3.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.o2.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.ocfriver.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.ph.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.ph.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phyc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phyc.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.phyc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phycalc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phycalc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phydiat.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phydiat.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phydiaz.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phydiaz.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phymisc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phymisc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phypico.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phypico.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.po4.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.pp.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.si.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.spco2.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.spco2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.talk.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zmeso.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zmeso.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zmicro.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zmicro.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zmisc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zmisc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zooc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zooc.tavg-ol-hxy-sea.mon.GLB", + "seaIce.evspsbl.tavg-u-hxy-si.mon.GLB", + "seaIce.prra.tavg-u-hxy-si.mon.GLB", + "seaIce.prsn.tavg-u-hxy-si.mon.GLB", + "seaIce.rlds.tavg-u-hxy-si.mon.GLB", + "seaIce.rlus.tavg-u-hxy-si.mon.GLB", + "seaIce.rsds.tavg-u-hxy-si.day.GLB", + "seaIce.rsds.tavg-u-hxy-si.mon.GLB", + "seaIce.rsus.tavg-u-hxy-si.day.GLB", + "seaIce.rsus.tavg-u-hxy-si.mon.GLB", + "seaIce.sbl.tavg-u-hxy-si.mon.GLB", + "seaIce.siage.tavg-u-hxy-si.day.GLB", + "seaIce.siage.tavg-u-hxy-si.mon.30S-90S", + "seaIce.siarea.tavg-u-hm-u.mon.NH", + "seaIce.siarea.tavg-u-hm-u.mon.SH", + "seaIce.siconc.tavg-u-hxy-u.mon.30S-90S", + "seaIce.siconca.tavg-u-hxy-u.day.GLB", + "seaIce.siconca.tavg-u-hxy-u.mon.GLB", + "seaIce.sidconcdyn.tavg-u-hxy-sea.mon.GLB", + "seaIce.sidconcth.tavg-u-hxy-sea.mon.GLB", + "seaIce.sidmassdyn.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthsi.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthwat.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmeltbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmeltlat.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmelttop.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassth.tavg-u-hxy-si.mon.GLB", + "seaIce.sieqthick.tavg-u-hxy-si.mon.GLB", + "seaIce.siextent.tavg-u-hm-u.mon.NH", + "seaIce.siextent.tavg-u-hm-u.mon.SH", + "seaIce.siflcondbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflcondtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sifllattop.tavg-u-hxy-si.mon.GLB", + "seaIce.siflsensbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflsenstop.tavg-u-hxy-si.mon.GLB", + "seaIce.siflswdbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sihc.tavg-u-hxy-sea.mon.GLB", + "seaIce.sisndmassdyn.tavg-u-hxy-si.mon.GLB", + "seaIce.sisndmasssi.tavg-u-hxy-si.mon.GLB", + "seaIce.sisndmasswind.tavg-u-hxy-si.mon.GLB", + "seaIce.sisnhc.tavg-u-hxy-si.mon.GLB", + "seaIce.sisnmass.tavg-u-hm-u.mon.NH", + "seaIce.sisnmass.tavg-u-hm-u.mon.SH", + "seaIce.sispeed.tavg-u-hxy-si.day.GLB", + "seaIce.sispeed.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-si.day.GLB", + "seaIce.sithick.tavg-u-hxy-si.mon.30S-90S", + "seaIce.sitimefrac.tavg-u-hxy-sea.day.GLB", + "seaIce.sitimefrac.tavg-u-hxy-sea.mon.30S-90S", + "seaIce.siu.tavg-u-hxy-si.day.GLB", + "seaIce.siu.tavg-u-hxy-si.mon.30S-90S", + "seaIce.siv.tavg-u-hxy-si.day.GLB", + "seaIce.siv.tavg-u-hxy-si.mon.30S-90S", + "seaIce.sivol.tavg-u-hm-u.mon.NH", + "seaIce.sivol.tavg-u-hm-u.mon.SH", + "seaIce.snc.tavg-u-hxy-si.mon.GLB", + "seaIce.snd.tavg-u-hxy-sn.day.GLB", + "seaIce.snd.tavg-u-hxy-sn.mon.30S-90S", + "seaIce.snm.tavg-u-hxy-si.mon.GLB", + "seaIce.snw.tavg-u-hxy-si.mon.GLB", + "seaIce.ts.tavg-u-hxy-si.day.GLB", + "seaIce.ts.tavg-u-hxy-si.mon.30S-90S" + ], + "Medium": [ + "atmos.noaahi2m.tavg-h2m-hxy-u.day.GLB", + "atmos.noaahi2m.tmax-h2m-hxy-u.day.GLB", + "atmos.rls.tavg-u-hxy-u.day.GLB", + "atmos.rls.tavg-u-hxy-u.mon.GLB", + "atmos.rss.tavg-u-hxy-u.day.GLB", + "atmos.rss.tavg-u-hxy-u.mon.GLB", + "atmos.wbgt.tavg-h2m-hxy-u.day.GLB", + "atmos.wbgt.tmax-h2m-hxy-u.day.GLB", + "land.cLeaf.tavg-u-hxy-lnd.mon.GLB", + "land.cLitterCwd.tavg-u-hxy-lnd.mon.GLB", + "land.cLitterSubSurf.tavg-u-hxy-lnd.mon.GLB", + "land.cLitterSurf.tavg-u-hxy-lnd.mon.GLB", + "land.cOther.tavg-u-hxy-lnd.mon.GLB", + "land.cRoot.tavg-u-hxy-lnd.mon.GLB", + "land.cropFracC3.tavg-u-hxy-u.mon.GLB", + "land.cropFracC4.tavg-u-hxy-u.mon.GLB", + "land.cSoil.tavg-sl-hxy-lnd.mon.GLB", + "land.cSoilPools.tavg-u-hxy-lnd.mon.GLB", + "land.cStem.tavg-u-hxy-lnd.mon.GLB", + "land.cVeg.tavg-u-hxy-ng.mon.GLB", + "land.cVeg.tavg-u-hxy-shb.mon.GLB", + "land.cVeg.tavg-u-hxy-tree.mon.GLB", + "land.fLitterFire.tavg-u-hxy-lnd.mon.GLB", + "land.fNgas.tavg-u-hxy-lnd.mon.GLB", + "land.fNgasFire.tavg-u-hxy-lnd.mon.GLB", + "land.fNgasNonFire.tavg-u-hxy-lnd.mon.GLB", + "land.fNleach.tavg-u-hxy-lnd.mon.GLB", + "land.fVegFire.tavg-u-hxy-lnd.mon.GLB", + "land.fVegLitterMortality.tavg-u-hxy-lnd.mon.GLB", + "land.fVegLitterSenescence.tavg-u-hxy-lnd.mon.GLB", + "land.fVegSoilMortality.tavg-u-hxy-lnd.mon.GLB", + "land.fVegSoilSenescence.tavg-u-hxy-lnd.mon.GLB", + "land.gpp.tavg-u-hxy-ng.mon.GLB", + "land.gpp.tavg-u-hxy-shb.mon.GLB", + "land.gpp.tavg-u-hxy-tree.mon.GLB", + "land.grassFracC3.tavg-u-hxy-u.mon.GLB", + "land.grassFracC4.tavg-u-hxy-u.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.3hr.GLB", + "land.mrros.tavg-u-hxy-lnd.3hr.GLB", + "land.mrsol.tpt-d10cm-hxy-lnd.3hr.GLB", + "land.nLeaf.tavg-u-hxy-lnd.mon.GLB", + "land.nLitterCwd.tavg-u-hxy-lnd.mon.GLB", + "land.nLitterSubSurf.tavg-u-hxy-lnd.mon.GLB", + "land.nLitterSurf.tavg-u-hxy-lnd.mon.GLB", + "land.nMineralNH4.tavg-u-hxy-lnd.mon.GLB", + "land.nMineralNO3.tavg-u-hxy-lnd.mon.GLB", + "land.nOther.tavg-u-hxy-lnd.mon.GLB", + "land.npp.tavg-u-hxy-ng.mon.GLB", + "land.npp.tavg-u-hxy-shb.mon.GLB", + "land.npp.tavg-u-hxy-tree.mon.GLB", + "land.nppLeaf.tavg-u-hxy-lnd.mon.GLB", + "land.nppOther.tavg-u-hxy-lnd.mon.GLB", + "land.nppRoot.tavg-u-hxy-lnd.mon.GLB", + "land.nppStem.tavg-u-hxy-lnd.mon.GLB", + "land.nRoot.tavg-u-hxy-lnd.mon.GLB", + "land.nStem.tavg-u-hxy-lnd.mon.GLB", + "land.pastureFracC3.tavg-u-hxy-u.mon.GLB", + "land.pastureFracC4.tavg-u-hxy-u.mon.GLB", + "land.ra.tavg-u-hxy-ng.mon.GLB", + "land.ra.tavg-u-hxy-shb.mon.GLB", + "land.ra.tavg-u-hxy-tree.mon.GLB", + "land.raLeaf.tavg-u-hxy-lnd.mon.GLB", + "land.raOther.tavg-u-hxy-lnd.mon.GLB", + "land.raRoot.tavg-u-hxy-lnd.mon.GLB", + "land.raStem.tavg-u-hxy-lnd.mon.GLB", + "land.rh.tavg-u-hxy-ng.mon.GLB", + "land.rh.tavg-u-hxy-shb.mon.GLB", + "land.rh.tavg-u-hxy-tree.mon.GLB", + "land.rhLitter.tavg-u-hxy-lnd.mon.GLB", + "land.rhSoil.tavg-u-hxy-lnd.mon.GLB", + "land.treeFracBdlDcd.tavg-u-hxy-u.mon.GLB", + "land.treeFracBdlEvg.tavg-u-hxy-u.mon.GLB", + "land.treeFracNdlDcd.tavg-u-hxy-u.mon.GLB", + "land.treeFracNdlEvg.tavg-u-hxy-u.mon.GLB", + "land.vegHeight.tavg-u-hxy-ng.mon.GLB", + "land.vegHeight.tavg-u-hxy-shb.mon.GLB", + "land.vegHeight.tavg-u-hxy-tree.mon.GLB", + "land.wetlandCH4cons.tavg-u-hxy-lnd.mon.GLB", + "land.wetlandCH4prod.tavg-u-hxy-lnd.mon.GLB", + "land.wetlandFrac.tavg-u-hxy-u.mon.GLB", + "ocean.evspsbl.tavg-u-hxy-ifs.mon.GLB", + "ocean.ficeberg.tavg-u-hxy-sea.mon.GLB", + "ocean.hfacrossline.tavg-u-ht-sea.mon.GLB", + "ocean.hfevapds.tavg-u-hxy-ifs.mon.GLB", + "ocean.hfibthermds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfibthermds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfrainds.tavg-u-hxy-ifs.mon.GLB", + "ocean.hfrunoffds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfrunoffds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfsnthermds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfsnthermds.tavg-u-hxy-sea.mon.GLB", + "ocean.mfo.tavg-u-ht-sea.mon.GLB", + "ocean.sf6.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfacrossline.tavg-u-ht-sea.mon.GLB", + "ocean.sfdsi.tavg-u-hxy-sea.mon.GLB", + "ocean.sfriver.tavg-u-hxy-sea.mon.GLB", + "ocean.siflfwbot.tavg-u-hxy-sea.mon.GLB", + "ocean.so.tavg-ol-hxy-sea.day.GLB", + "ocean.tnkebto.tavg-u-hxy-sea.yr.GLB", + "ocean.vsf.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfcorr.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfevap.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfpr.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfriver.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfsit.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.arag.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.arag.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.calc.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.calc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chl.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.chlcalc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dmso.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.epn.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.epp.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.expc.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.expcalc.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.fgdms.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fric.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.froc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.graz.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.intppcalc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppdiat.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppdiaz.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppmisc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppnitrate.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intpppico.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.o2.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.ph.tavg-op20bar-hxy-sea.day.GLB", + "seaIce.sfdsi.tavg-u-hxy-si.mon.GLB", + "seaIce.siage.tavg-u-hxy-si.mon.GLB", + "seaIce.siarea.tavg-u-hm-u.day.NH", + "seaIce.siarea.tavg-u-hm-u.day.SH", + "seaIce.siareaacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.sicompstren.tavg-u-hxy-si.mon.GLB", + "seaIce.sidivvel.tpt-u-hxy-si.mon.GLB", + "seaIce.sidmasstranx.tavg-u-hxy-u.mon.GLB", + "seaIce.sidmasstrany.tavg-u-hxy-u.mon.GLB", + "seaIce.sidragbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidragtop.tavg-u-hxy-si.mon.GLB", + "seaIce.siextent.tavg-u-hm-u.day.NH", + "seaIce.siextent.tavg-u-hm-u.day.SH", + "seaIce.sifb.tavg-u-hxy-si.mon.GLB", + "seaIce.siflfwbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflfwdrain.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcecoriolx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcecorioly.tavg-u-hxy-si.mon.GLB", + "seaIce.siforceintstrx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforceintstry.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcetiltx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcetilty.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdconc.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdsnconc.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdsnthick.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdthick.tavg-u-hxy-si.mon.GLB", + "seaIce.simassacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.simpconc.tavg-u-hxy-si.mon.GLB", + "seaIce.simpeffconc.tavg-u-hxy-si.mon.GLB", + "seaIce.simprefrozen.tavg-u-hxy-simp.mon.GLB", + "seaIce.simpthick.tavg-u-hxy-simp.mon.GLB", + "seaIce.sirdgconc.tavg-u-hxy-si.mon.GLB", + "seaIce.sisali.tavg-u-hxy-si.mon.GLB", + "seaIce.sisaltmass.tavg-u-hxy-si.mon.GLB", + "seaIce.sishearvel.tpt-u-hxy-si.mon.GLB", + "seaIce.sisnmass.tavg-u-hm-u.day.NH", + "seaIce.sisnmass.tavg-u-hm-u.day.SH", + "seaIce.sisnmassacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.sistressave.tpt-u-hxy-si.mon.GLB", + "seaIce.sistressmax.tpt-u-hxy-si.mon.GLB", + "seaIce.sistrxdtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sistrxubot.tavg-u-hxy-si.mon.GLB", + "seaIce.sistrydtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sistryubot.tavg-u-hxy-si.mon.GLB", + "seaIce.sitempbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sitempsnic.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-sir.mon.GLB", + "seaIce.sivol.tavg-u-hm-u.day.NH", + "seaIce.sivol.tavg-u-hm-u.day.SH" + ], + "Low": [ + "aerosol.sfpm1.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.sfpm10.tavg-h2m-hxy-u.1hr.GLB", + "atmos.hurs.tavg-h2m-hxy-u.1hr.GLB", + "land.c13Land.tavg-u-hxy-lnd.mon.GLB", + "land.c13Litter.tavg-u-hxy-lnd.mon.GLB", + "land.c13Soil.tavg-u-hxy-lnd.mon.GLB", + "land.c13Veg.tavg-u-hxy-lnd.mon.GLB", + "land.c14Land.tavg-u-hxy-lnd.mon.GLB", + "land.c14Litter.tavg-u-hxy-lnd.mon.GLB", + "land.c14Soil.tavg-u-hxy-lnd.mon.GLB", + "land.c14Veg.tavg-u-hxy-lnd.mon.GLB", + "land.gppc13.tavg-u-hxy-lnd.mon.GLB", + "land.gppc14.tavg-u-hxy-lnd.mon.GLB", + "land.netAtmosLandC13Flux.tavg-u-hxy-lnd.mon.GLB", + "land.netAtmosLandC14Flux.tavg-u-hxy-lnd.mon.GLB", + "land.rac13.tavg-u-hxy-lnd.mon.GLB", + "land.rac14.tavg-u-hxy-lnd.mon.GLB", + "land.rhc13.tavg-u-hxy-lnd.mon.GLB", + "land.rhc14.tavg-u-hxy-lnd.mon.GLB", + "ocean.difmxybo.tavg-ol-hxy-sea.yr.GLB", + "ocean.difmxylo.tavg-ol-hxy-sea.yr.GLB", + "ocean.diftrblo.tavg-ol-hxy-sea.yr.GLB", + "ocean.diftrelo.tavg-ol-hxy-sea.yr.GLB", + "ocean.difvho.tavg-ol-hxy-sea.yr.GLB", + "ocean.difvso.tavg-ol-hxy-sea.yr.GLB", + "ocean.dispkexyfo.tavg-u-hxy-sea.yr.GLB", + "ocean.dxto.ti-u-hxy-u.fx.GLB", + "ocean.dxuo.ti-u-hxy-u.fx.GLB", + "ocean.dxvo.ti-u-hxy-u.fx.GLB", + "ocean.dyto.ti-u-hxy-u.fx.GLB", + "ocean.dyuo.ti-u-hxy-u.fx.GLB", + "ocean.dyvo.ti-u-hxy-u.fx.GLB", + "ocean.mlotstsq.tavg-u-hxy-sea.mon.GLB", + "ocean.msftmmpa.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftmmpa.tavg-rho-hyb-sea.mon.GLB", + "ocean.msftmsmpa.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftypa.tavg-ol-ht-sea.mon.GLB", + "ocean.msftypa.tavg-rho-ht-sea.mon.GLB", + "ocean.ocontempdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontempmint.tavg-u-hxy-sea.yr.GLB", + "ocean.ocontemppadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemppmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemppsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemprmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemptend.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottempdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottempmint.tavg-u-hxy-sea.yr.GLB", + "ocean.opottemppadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemppmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemppsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemprmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemptend.tavg-ol-hxy-sea.dec.GLB", + "ocean.osaltdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpsmadvect.tavg-ol-hxy-sea.mon.GLB", + "ocean.osaltpsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltrmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osalttend.tavg-ol-hxy-sea.yr.GLB", + "ocean.rsdoabsorb.tavg-ol-hxy-sea.yr.GLB", + "ocean.somint.tavg-u-hxy-sea.yr.GLB", + "ocean.sossq.tavg-u-hxy-sea.mon.GLB", + "ocean.thkcelluo.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcellvo.tavg-ol-hxy-sea.mon.GLB", + "ocean.tnpeo.tavg-u-hxy-sea.yr.GLB", + "ocean.tossq.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.dissi13c.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.dissi13c.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissi14c.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissi14cabio.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.dissi14cabio.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.fg13co2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fg14co2abio.tavg-u-hxy-sea.mon.GLB" + ] + }, + "piClim-ODS": { + "Core": [ + "atmos.areacella.ti-u-hxy-u.fx.GLB", + "atmos.cl.tavg-al-hxy-u.mon.GLB", + "atmos.cli.tavg-al-hxy-u.mon.GLB", + "atmos.clivi.tavg-u-hxy-u.mon.GLB", + "atmos.clt.tavg-u-hxy-u.day.GLB", + "atmos.clt.tavg-u-hxy-u.mon.GLB", + "atmos.clw.tavg-al-hxy-u.mon.GLB", + "atmos.clwvi.tavg-u-hxy-u.mon.GLB", + "atmos.evspsbl.tavg-u-hxy-u.mon.GLB", + "atmos.hfls.tavg-u-hxy-u.mon.GLB", + "atmos.hfss.tavg-u-hxy-u.mon.GLB", + "atmos.hur.tavg-p19-hxy-air.mon.GLB", + "atmos.hur.tavg-p19-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.6hr.GLB", + "atmos.hurs.tavg-h2m-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.mon.GLB", + "atmos.hus.tavg-p19-hxy-u.day.GLB", + "atmos.hus.tavg-p19-hxy-u.mon.GLB", + "atmos.huss.tavg-h2m-hxy-u.day.GLB", + "atmos.huss.tavg-h2m-hxy-u.mon.GLB", + "atmos.huss.tpt-h2m-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.1hr.GLB", + "atmos.pr.tavg-u-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.day.GLB", + "atmos.pr.tavg-u-hxy-u.mon.GLB", + "atmos.prc.tavg-u-hxy-u.mon.GLB", + "atmos.prsn.tavg-u-hxy-u.mon.GLB", + "atmos.prw.tavg-u-hxy-u.mon.GLB", + "atmos.ps.tavg-u-hxy-u.day.GLB", + "atmos.ps.tavg-u-hxy-u.mon.GLB", + "atmos.psl.tavg-u-hxy-u.day.GLB", + "atmos.psl.tavg-u-hxy-u.mon.GLB", + "atmos.rlds.tavg-u-hxy-u.mon.GLB", + "atmos.rldscs.tavg-u-hxy-u.mon.GLB", + "atmos.rlus.tavg-u-hxy-u.mon.GLB", + "atmos.rluscs.tavg-u-hxy-u.mon.GLB", + "atmos.rlut.tavg-u-hxy-u.mon.GLB", + "atmos.rlutcs.tavg-u-hxy-u.mon.GLB", + "atmos.rsds.tavg-u-hxy-u.day.GLB", + "atmos.rsds.tavg-u-hxy-u.mon.GLB", + "atmos.rsdscs.tavg-u-hxy-u.mon.GLB", + "atmos.rsdt.tavg-u-hxy-u.mon.GLB", + "atmos.rsus.tavg-u-hxy-u.mon.GLB", + "atmos.rsuscs.tavg-u-hxy-u.mon.GLB", + "atmos.rsut.tavg-u-hxy-u.mon.GLB", + "atmos.rsutcs.tavg-u-hxy-u.mon.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.day.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.mon.GLB", + "atmos.sftlf.ti-u-hxy-u.fx.GLB", + "atmos.ta.tavg-p19-hxy-air.day.GLB", + "atmos.ta.tavg-p19-hxy-air.mon.GLB", + "atmos.ta.tpt-p3-hxy-air.6hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.day.GLB", + "atmos.tas.tavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tmax-h2m-hxy-u.day.GLB", + "atmos.tas.tmaxavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tmin-h2m-hxy-u.day.GLB", + "atmos.tas.tminavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tpt-h2m-hxy-u.3hr.GLB", + "atmos.tauu.tavg-u-hxy-u.mon.GLB", + "atmos.tauv.tavg-u-hxy-u.mon.GLB", + "atmos.ts.tavg-u-hxy-u.mon.GLB", + "atmos.ua.tavg-p19-hxy-air.day.GLB", + "atmos.ua.tavg-p19-hxy-air.mon.GLB", + "atmos.ua.tpt-p3-hxy-air.6hr.GLB", + "atmos.uas.tavg-h10m-hxy-u.day.GLB", + "atmos.uas.tavg-h10m-hxy-u.mon.GLB", + "atmos.uas.tpt-h10m-hxy-u.3hr.GLB", + "atmos.va.tavg-p19-hxy-air.day.GLB", + "atmos.va.tavg-p19-hxy-air.mon.GLB", + "atmos.va.tpt-p3-hxy-air.6hr.GLB", + "atmos.vas.tavg-h10m-hxy-u.day.GLB", + "atmos.vas.tavg-h10m-hxy-u.mon.GLB", + "atmos.vas.tpt-h10m-hxy-u.3hr.GLB", + "atmos.wap.tavg-p19-hxy-air.mon.GLB", + "atmos.wap.tavg-p19-hxy-u.day.GLB", + "atmos.zg.tavg-p19-hxy-air.day.GLB", + "atmos.zg.tavg-p19-hxy-air.mon.GLB", + "land.evspsblsoi.tavg-u-hxy-lnd.mon.GLB", + "land.evspsblveg.tavg-u-hxy-lnd.mon.GLB", + "land.lai.tavg-u-hxy-lnd.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.mon.GLB", + "land.mrros.tavg-u-hxy-lnd.mon.GLB", + "land.mrso.tavg-u-hxy-lnd.mon.GLB", + "land.mrsofc.ti-u-hxy-lnd.fx.GLB", + "land.mrsol.tavg-d10cm-hxy-lnd.mon.GLB", + "land.orog.ti-u-hxy-u.fx.GLB", + "land.rootd.ti-u-hxy-lnd.fx.GLB", + "land.sftgif.ti-u-hxy-u.fx.GLB", + "land.slthick.ti-sl-hxy-lnd.fx.GLB", + "landIce.mrfso.tavg-u-hxy-lnd.mon.GLB", + "landIce.snc.tavg-u-hxy-lnd.mon.GLB", + "landIce.snw.tavg-u-hxy-lnd.mon.GLB", + "ocean.areacello.ti-u-hxy-u.fx.GLB", + "ocean.basin.ti-u-hxy-u.fx.GLB", + "ocean.bigthetao.tavg-ol-hxy-sea.mon.GLB", + "ocean.deptho.ti-u-hxy-sea.fx.GLB", + "ocean.hfds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfgeou.ti-u-hxy-sea.fx.GLB", + "ocean.masscello.tavg-ol-hxy-sea.mon.GLB", + "ocean.masscello.ti-ol-hxy-sea.fx.GLB", + "ocean.mlotst.tavg-u-hxy-sea.mon.GLB", + "ocean.sftof.ti-u-hxy-u.fx.GLB", + "ocean.so.tavg-ol-hxy-sea.mon.GLB", + "ocean.sos.tavg-u-hxy-sea.day.GLB", + "ocean.sos.tavg-u-hxy-sea.mon.GLB", + "ocean.tauuo.tavg-u-hxy-sea.mon.GLB", + "ocean.tauvo.tavg-u-hxy-sea.mon.GLB", + "ocean.thetao.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcello.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcello.ti-ol-hxy-sea.fx.GLB", + "ocean.tos.tavg-u-hxy-sea.day.GLB", + "ocean.tos.tavg-u-hxy-sea.mon.GLB", + "ocean.umo.tavg-ol-hxy-sea.mon.GLB", + "ocean.uo.tavg-ol-hxy-sea.mon.GLB", + "ocean.vmo.tavg-ol-hxy-sea.mon.GLB", + "ocean.vo.tavg-ol-hxy-sea.mon.GLB", + "ocean.wmo.tavg-ol-hxy-sea.mon.GLB", + "ocean.wo.tavg-ol-hxy-sea.mon.GLB", + "ocean.zos.tavg-u-hxy-sea.day.GLB", + "ocean.zos.tavg-u-hxy-sea.mon.GLB", + "ocean.zostoga.tavg-u-hm-sea.mon.GLB", + "seaIce.siconc.tavg-u-hxy-u.day.GLB", + "seaIce.siconc.tavg-u-hxy-u.mon.GLB", + "seaIce.simass.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-si.mon.GLB", + "seaIce.sitimefrac.tavg-u-hxy-sea.mon.GLB", + "seaIce.siu.tavg-u-hxy-si.mon.GLB", + "seaIce.siv.tavg-u-hxy-si.mon.GLB", + "seaIce.snd.tavg-u-hxy-sn.mon.GLB", + "seaIce.ts.tavg-u-hxy-si.mon.GLB" + ], + "High": [ + "aerosol.abs550aer.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550bc.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550dust.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550no3.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550oa.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550so4.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550ss.tavg-u-hxy-u.mon.GLB", + "aerosol.airmass.tavg-al-hxy-u.mon.GLB", + "aerosol.aoanh.tavg-al-hxy-u.mon.NH", + "aerosol.bry.tavg-p39-hy-air.mon.GLB", + "aerosol.bs550aer.tpt-al-hxy-u.6hr.GLB", + "aerosol.c2h6.tavg-al-hxy-u.mon.GLB", + "aerosol.c3h6.tavg-al-hxy-u.mon.GLB", + "aerosol.c3h8.tavg-al-hxy-u.mon.GLB", + "aerosol.ccldncl.tavg-u-hxy-ccl.mon.GLB", + "aerosol.ccn.tavg-u-hxy-ccl.mon.30S-90S", + "aerosol.ccn.tavg-u-hxy-ccl.mon.GLB", + "aerosol.ccn1.tavg-al-hxy-u.mon.30S-90S", + "aerosol.ccn1.tavg-al-hxy-u.mon.GLB", + "aerosol.ccnp02.tavg-al-hxy-u.mon.30S-90S", + "aerosol.ccnp02.tavg-al-hxy-u.mon.GLB", + "aerosol.cdnc.tavg-al-hxy-u.mon.30S-90S", + "aerosol.cdnc.tavg-al-hxy-u.mon.GLB", + "aerosol.cfc114.tavg-al-hxy-u.mon.GLB", + "aerosol.ch3coch3.tavg-al-hxy-u.mon.GLB", + "aerosol.cheaqpso4.tavg-al-hxy-u.mon.GLB", + "aerosol.chegpso4.tavg-al-hxy-u.mon.GLB", + "aerosol.chepasoa.tavg-u-hxy-u.mon.GLB", + "aerosol.chepsoa.tavg-u-hxy-u.mon.GLB", + "aerosol.cly.tavg-p39-hy-air.mon.GLB", + "aerosol.co.tavg-al-hxy-u.mon.GLB", + "aerosol.co.tavg-h2m-hxy-u.day.GLB", + "aerosol.cod.tavg-u-hxy-u.day.GLB", + "aerosol.cod.tavg-u-hxy-u.mon.30S-90S", + "aerosol.cod.tavg-u-hxy-u.mon.GLB", + "aerosol.conccn.tavg-al-hxy-u.mon.GLB", + "aerosol.conccn.tpt-u-hs-u.3hr.GLB", + "aerosol.drybc.tavg-u-hxy-u.mon.GLB", + "aerosol.drydust.tavg-u-hxy-u.mon.GLB", + "aerosol.dryno3.tavg-u-hxy-u.mon.GLB", + "aerosol.dryo3.tavg-u-hxy-u.mon.GLB", + "aerosol.dryoa.tavg-u-hxy-u.mon.GLB", + "aerosol.dryso2.tavg-u-hxy-u.mon.GLB", + "aerosol.dryso4.tavg-u-hxy-u.mon.GLB", + "aerosol.dryss.tavg-u-hxy-u.mon.GLB", + "aerosol.ec550aer.tavg-al-hxy-u.mon.GLB", + "aerosol.ec550aer.tpt-u-hxy-u.6hr.GLB", + "aerosol.emiaco.tavg-u-hxy-u.mon.GLB", + "aerosol.emianox.tavg-u-hxy-u.mon.GLB", + "aerosol.emiaoa.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbbc.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbch4.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbco.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbdms.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbnh3.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbnox.tavg-u-hxy-u.mon.GLB", + "aerosol.emibboa.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbso2.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbvoc.tavg-u-hxy-u.mon.GLB", + "aerosol.emibc.tavg-u-hxy-u.mon.GLB", + "aerosol.emibvoc.tavg-u-hxy-u.mon.GLB", + "aerosol.emico.tavg-u-hxy-u.mon.GLB", + "aerosol.emidms.tavg-u-hxy-u.mon.30S-90S", + "aerosol.emidms.tavg-u-hxy-u.mon.GLB", + "aerosol.emidust.tavg-u-hxy-u.mon.GLB", + "aerosol.emiisop.tavg-u-hxy-u.mon.GLB", + "aerosol.emilnox.tavg-al-hxy-u.mon.GLB", + "aerosol.eminh3.tavg-u-hxy-u.mon.GLB", + "aerosol.eminox.tavg-u-hxy-u.mon.GLB", + "aerosol.emioa.tavg-u-hxy-u.mon.GLB", + "aerosol.emiso2.tavg-u-hxy-u.mon.GLB", + "aerosol.emiso4.tavg-u-hxy-u.mon.GLB", + "aerosol.emiss.tavg-u-hxy-u.mon.30S-90S", + "aerosol.emiss.tavg-u-hxy-u.mon.GLB", + "aerosol.emivoc.tavg-u-hxy-u.mon.GLB", + "aerosol.h2o.tavg-al-hxy-u.mon.GLB", + "aerosol.h2o.tavg-p39-hy-air.mon.GLB", + "aerosol.hcfc22.tavg-al-hxy-u.mon.GLB", + "aerosol.hcho.tavg-al-hxy-u.mon.GLB", + "aerosol.hcl.tavg-al-hxy-u.mon.GLB", + "aerosol.hcl.tavg-p39-hy-air.mon.GLB", + "aerosol.hfc125.tavg-al-hxy-u.mon.GLB", + "aerosol.hfc134a.tavg-al-hxy-u.mon.GLB", + "aerosol.hno3.tavg-al-hxy-u.mon.GLB", + "aerosol.hno3.tavg-p39-hy-air.mon.GLB", + "aerosol.ho2.tavg-p39-hy-air.mon.GLB", + "aerosol.isop.tavg-al-hxy-u.mon.GLB", + "aerosol.jno2.tavg-al-hxy-u.mon.GLB", + "aerosol.lossch4.tavg-al-hxy-u.mon.GLB", + "aerosol.lossco.tavg-al-hxy-u.mon.GLB", + "aerosol.lossn2o.tavg-al-hxy-u.mon.GLB", + "aerosol.lwp.tavg-u-hxy-u.mon.GLB", + "aerosol.mmraerh2o.tavg-al-hxy-u.mon.GLB", + "aerosol.mmraerh2o.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmraerh2o.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrbc.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrbc.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrbc.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrbc.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrdust.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrdust.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrdust.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrdust.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrnh4.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrnh4.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrnh4.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrnh4.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrno3.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrno3.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrno3.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrno3.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmroa.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmroa.tavg-al-hxy-u.mon.GLB", + "aerosol.mmroa.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmroa.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrpm1.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrpm1.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrpm2p5.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrpm2p5.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrso4.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrso4.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrso4.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrso4.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrsoa.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrsoa.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrsoa.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrss.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrss.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrss.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrss.tpt-h2m-hs-u.3hr.GLB", + "aerosol.nh50.tavg-al-hxy-u.mon.GLB", + "aerosol.no.tavg-al-hxy-u.mon.GLB", + "aerosol.no2.tavg-al-hxy-u.mon.GLB", + "aerosol.no2.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.noy.tavg-p39-hy-air.mon.GLB", + "aerosol.o3.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.o3.tmax-h2m-hxy-u.day.GLB", + "aerosol.o3loss.tavg-al-hxy-u.mon.GLB", + "aerosol.o3prod.tavg-al-hxy-u.mon.GLB", + "aerosol.od443aer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550aer.tavg-u-hxy-u.day.GLB", + "aerosol.od550aer.tavg-u-hxy-u.mon.30S-90S", + "aerosol.od550aer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550aerh2o.tavg-u-hxy-u.mon.GLB", + "aerosol.od550bb.tavg-u-hxy-u.mon.GLB", + "aerosol.od550bc.tavg-u-hxy-u.mon.GLB", + "aerosol.od550csaer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550dust.tavg-u-hxy-u.mon.GLB", + "aerosol.od550lt1aer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550no3.tavg-u-hxy-u.mon.GLB", + "aerosol.od550oa.tavg-u-hxy-u.mon.GLB", + "aerosol.od550so4.tavg-u-hxy-u.mon.GLB", + "aerosol.od550soa.tavg-u-hxy-u.mon.GLB", + "aerosol.od550ss.tavg-u-hxy-u.mon.GLB", + "aerosol.od865aer.tavg-u-hxy-u.mon.GLB", + "aerosol.oh.tavg-al-hxy-u.mon.GLB", + "aerosol.oh.tavg-p39-hy-air.mon.GLB", + "aerosol.pan.tavg-al-hxy-u.mon.GLB", + "aerosol.photo1d.tavg-al-hxy-u.mon.GLB", + "aerosol.pod0.tsum-u-hxy-u.mon.GLB", + "aerosol.reffccwctop.tavg-u-hxy-cl.mon.GLB", + "aerosol.reffclwtop.tavg-u-hxy-cl.mon.30S-90S", + "aerosol.reffclwtop.tavg-u-hxy-cl.mon.GLB", + "aerosol.rluscsaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rlutaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rlutcsaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rsutaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rsutcsaf.tavg-u-hxy-u.mon.GLB", + "aerosol.sfpm1.tavg-h2m-hxy-u.day.GLB", + "aerosol.sfpm10.tavg-al-hxy-u.mon.30S-90S", + "aerosol.sfpm10.tavg-al-hxy-u.mon.GLB", + "aerosol.sfpm10.tavg-h2m-hxy-u.day.GLB", + "aerosol.sfpm25.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.sfpm25.tavg-h2m-hxy-u.day.GLB", + "aerosol.so2.tavg-al-hxy-u.mon.30S-90S", + "aerosol.so2.tavg-al-hxy-u.mon.GLB", + "aerosol.so2.tavg-h2m-hxy-u.day.GLB", + "aerosol.so2.tpt-h2m-hs-u.3hr.GLB", + "aerosol.tatp.tavg-u-hxy-u.mon.GLB", + "aerosol.toz.tavg-u-hxy-u.day.GLB", + "aerosol.toz.tavg-u-hxy-u.mon.GLB", + "aerosol.tropoz.tavg-u-hxy-u.mon.GLB", + "aerosol.ttop.tavg-u-hxy-cl.mon.GLB", + "aerosol.ua.tavg-10hPa-hxy-air.day.GLB", + "aerosol.vt100.tavg-100hPa-hy-air.mon.GLB", + "aerosol.wa.tavg-al-hxy-u.mon.GLB", + "aerosol.wetbc.tavg-u-hxy-u.mon.GLB", + "aerosol.wetdust.tavg-u-hxy-u.mon.GLB", + "aerosol.wetoa.tavg-u-hxy-u.mon.GLB", + "aerosol.wetso2.tavg-u-hxy-u.mon.GLB", + "aerosol.wetso4.tavg-u-hxy-u.mon.GLB", + "aerosol.wetss.tavg-u-hxy-u.mon.GLB", + "aerosol.zg.tavg-10hPa-hxy-air.day.GLB", + "atmos.albisccp.tavg-u-hxy-cl.mon.30S-90S", + "atmos.bldep.tavg-u-hxy-u.mon.GLB", + "atmos.bldep.tmax-u-hxy-u.day.GLB", + "atmos.bldep.tmin-u-hxy-u.day.GLB", + "atmos.cl.tavg-al-hxy-u.mon.30S-90S", + "atmos.clc.tavg-al-hxy-u.mon.30S-90S", + "atmos.clc.tavg-al-hxy-u.mon.GLB", + "atmos.clcalipso.tavg-220hPa-hxy-air.mon.30S-90S", + "atmos.clcalipso.tavg-220hPa-hxy-air.mon.GLB", + "atmos.clcalipso.tavg-560hPa-hxy-air.mon.30S-90S", + "atmos.clcalipso.tavg-560hPa-hxy-air.mon.GLB", + "atmos.clcalipso.tavg-840hPa-hxy-air.mon.30S-90S", + "atmos.clcalipso.tavg-840hPa-hxy-air.mon.GLB", + "atmos.clcalipso.tavg-h40-hxy-air.mon.30S-90S", + "atmos.cldnci.tavg-u-hxy-cl.mon.GLB", + "atmos.cldncl.tavg-u-hxy-cl.mon.GLB", + "atmos.cldnvi.tavg-u-hxy-u.mon.GLB", + "atmos.cli.tavg-al-hxy-u.mon.30S-90S", + "atmos.clic.tavg-al-hxy-u.mon.30S-90S", + "atmos.clis.tavg-al-hxy-u.mon.30S-90S", + "atmos.clisccp.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clisccp.tavg-p7c-hxy-air.mon.GLB", + "atmos.clivi.tavg-u-hxy-u.mon.30S-90S", + "atmos.clivimodis.tavg-u-hxy-u.mon.30S-90S", + "atmos.clmodis.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clmodis.tavg-p7c-hxy-air.mon.GLB", + "atmos.clmodisice.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clmodisice.tavg-p7c-hxy-air.mon.GLB", + "atmos.clmodisiceReff.tavg-u-hxy-u.mon.GLB", + "atmos.clmodisliquid.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clmodisliquid.tavg-p7c-hxy-air.mon.GLB", + "atmos.clmodisliquidReff.tavg-u-hxy-u.mon.GLB", + "atmos.cls.tavg-al-hxy-u.mon.30S-90S", + "atmos.clt.tavg-u-hxy-u.mon.30S-90S", + "atmos.cltc.tavg-u-hxy-u.mon.GLB", + "atmos.cltcalipso.tavg-u-hxy-u.mon.30S-90S", + "atmos.cltisccp.tavg-u-hxy-u.mon.30S-90S", + "atmos.cltmodis.tavg-u-hxy-u.mon.30S-90S", + "atmos.clw.tavg-al-hxy-u.mon.30S-90S", + "atmos.clwc.tavg-al-hxy-u.mon.30S-90S", + "atmos.clws.tavg-al-hxy-u.mon.30S-90S", + "atmos.clwvi.tavg-u-hxy-u.mon.30S-90S", + "atmos.clwvimodis.tavg-u-hxy-u.mon.30S-90S", + "atmos.co2.tavg-al-hxy-u.mon.GLB", + "atmos.co2.tavg-p19-hxy-air.mon.GLB", + "atmos.co23D.tavg-al-hxy-u.mon.GLB", + "atmos.co2mass.tavg-u-hm-u.mon.GLB", + "atmos.dmc.tavg-alh-hxy-u.mon.30S-90S", + "atmos.edt.tavg-al-hxy-u.mon.30S-90S", + "atmos.evspsbl.tavg-u-hxy-lnd.day.GLB", + "atmos.evu.tavg-al-hxy-u.mon.30S-90S", + "atmos.fco2antt.tavg-u-hxy-u.mon.GLB", + "atmos.fco2fos.tavg-u-hxy-u.mon.GLB", + "atmos.fco2nat.tavg-u-hxy-u.mon.GLB", + "atmos.hfls.tavg-u-hxy-u.mon.30S-90S", + "atmos.hfss.tavg-u-hxy-u.mon.30S-90S", + "atmos.hur.tavg-al-hxy-u.mon.30S-90S", + "atmos.hur.tavg-al-hxy-u.mon.GLB", + "atmos.hur.tavg-p19-hxy-air.mon.30S-90S", + "atmos.hurs.tavg-h2m-hxy-u.mon.30S-90S", + "atmos.hurs.tmax-h2m-hxy-u.day.GLB", + "atmos.hurs.tmin-h2m-hxy-u.day.GLB", + "atmos.hus.tavg-al-hxy-u.mon.30S-90S", + "atmos.hus.tavg-al-hxy-u.mon.GLB", + "atmos.hus.tavg-p19-hxy-u.mon.30S-90S", + "atmos.hus.tpt-al-hxy-u.6hr.GLB", + "atmos.hus.tpt-p7h-hxy-air.6hr.GLB", + "atmos.huss.tavg-h2m-hxy-u.mon.30S-90S", + "atmos.huss.tpt-h2m-hxy-u.1hr.GLB", + "atmos.mc.tavg-alh-hxy-u.mon.GLB", + "atmos.mcd.tavg-alh-hxy-u.mon.30S-90S", + "atmos.mcu.tavg-alh-hxy-u.mon.30S-90S", + "atmos.mcu.tavg-alh-hxy-u.mon.GLB", + "atmos.pctisccp.tavg-u-hxy-cl.mon.30S-90S", + "atmos.pfull.tavg-al-hxy-u.mon.GLB", + "atmos.pfull.tclm-al-hxy-u.mon.30S-90S", + "atmos.phalf.tavg-alh-hxy-u.mon.GLB", + "atmos.pr.tavg-u-hxy-u.mon.30S-90S", + "atmos.pr.tmax-u-hxy-u.day.GLB", + "atmos.pr.tpt-u-hxy-u.6hr.GLB", + "atmos.prc.tavg-u-hxy-u.mon.30S-90S", + "atmos.prra.tavg-u-hxy-lnd.day.GLB", + "atmos.prra.tavg-u-hxy-u.mon.30S-90S", + "atmos.prsn.tavg-u-hxy-u.3hr.GLB", + "atmos.prsn.tavg-u-hxy-u.day.GLB", + "atmos.prsn.tavg-u-hxy-u.mon.30S-90S", + "atmos.prw.tavg-u-hxy-u.day.GLB", + "atmos.prw.tavg-u-hxy-u.mon.30S-90S", + "atmos.ps.tavg-u-hxy-u.1hr.GLB", + "atmos.ps.tavg-u-hxy-u.mon.30S-90S", + "atmos.ps.tpt-u-hxy-u.6hr.GLB", + "atmos.psl.tavg-u-hxy-u.mon.30S-90S", + "atmos.psl.tpt-u-hxy-u.1hr.GLB", + "atmos.psl.tpt-u-hxy-u.6hr.GLB", + "atmos.ptp.tavg-u-hxy-u.mon.GLB", + "atmos.reffcclwtop.tavg-u-hxy-ccl.mon.GLB", + "atmos.reffclic.tavg-al-hxy-ccl.mon.30S-90S", + "atmos.reffclis.tavg-al-hxy-scl.mon.30S-90S", + "atmos.reffclwc.tavg-al-hxy-ccl.mon.30S-90S", + "atmos.reffclws.tavg-al-hxy-scl.mon.30S-90S", + "atmos.reffsclwtop.tavg-u-hxy-scl.mon.GLB", + "atmos.rld.tavg-alh-hxy-u.mon.GLB", + "atmos.rld4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rldcs.tavg-alh-hxy-u.mon.GLB", + "atmos.rldcs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rlds.tavg-u-hxy-u.1hr.GLB", + "atmos.rlds.tavg-u-hxy-u.day.GLB", + "atmos.rlds.tavg-u-hxy-u.mon.30S-90S", + "atmos.rldscs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rlu.tavg-alh-hxy-u.mon.GLB", + "atmos.rlu4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rlucs.tavg-alh-hxy-u.mon.GLB", + "atmos.rlucs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rlus.tavg-u-hxy-u.day.GLB", + "atmos.rlus.tavg-u-hxy-u.mon.30S-90S", + "atmos.rlut.tavg-u-hxy-u.mon.30S-90S", + "atmos.rlut4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rlutcs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rlutcs4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rsd.tavg-alh-hxy-u.mon.GLB", + "atmos.rsd4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsdcs.tavg-alh-hxy-u.mon.GLB", + "atmos.rsdcs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsds.tavg-u-hxy-u.1hr.GLB", + "atmos.rsds.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsdscs.tavg-u-hxy-u.day.GLB", + "atmos.rsdscs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsdt.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsu.tavg-alh-hxy-u.mon.GLB", + "atmos.rsu4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsucs.tavg-alh-hxy-u.mon.GLB", + "atmos.rsucs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsus.tavg-u-hxy-u.day.GLB", + "atmos.rsus.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsuscs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsut.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsut4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rsutcs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsutcs4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rtmt.tavg-u-hxy-u.mon.GLB", + "atmos.rv850.tpt-850hPa-hxy-air.6hr.GLB", + "atmos.scldncl.tavg-u-hxy-scl.mon.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.mon.30S-90S", + "atmos.ta.tavg-al-hxy-u.mon.30S-90S", + "atmos.ta.tavg-al-hxy-u.mon.GLB", + "atmos.ta.tavg-p19-hxy-air.mon.30S-90S", + "atmos.ta.tavg-p39-hy-air.mon.GLB", + "atmos.ta.tpt-al-hxy-u.6hr.GLB", + "atmos.ta.tpt-p7h-hxy-air.6hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.1hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.mon.30S-90S", + "atmos.tas.tmaxavg-h2m-hxy-u.mon.30S-90S", + "atmos.tas.tminavg-h2m-hxy-u.mon.30S-90S", + "atmos.tnt.tavg-al-hxy-u.mon.GLB", + "atmos.tntrl.tavg-al-hxy-u.mon.GLB", + "atmos.tntrs.tavg-al-hxy-u.mon.GLB", + "atmos.ts.tavg-u-hxy-u.mon.30S-90S", + "atmos.ts.tpt-u-hxy-u.6hr.GLB", + "atmos.ua.tavg-al-hxy-u.mon.GLB", + "atmos.ua.tavg-p19-hxy-air.mon.30S-90S", + "atmos.ua.tavg-p39-hy-air.mon.GLB", + "atmos.ua.tpt-al-hxy-u.6hr.GLB", + "atmos.ua.tpt-p7h-hxy-air.6hr.GLB", + "atmos.uas.tavg-h10m-hxy-u.mon.30S-90S", + "atmos.uas.tpt-h10m-hxy-u.1hr.GLB", + "atmos.va.tavg-al-hxy-u.mon.GLB", + "atmos.va.tavg-p19-hxy-air.mon.30S-90S", + "atmos.va.tavg-p39-hy-air.mon.GLB", + "atmos.va.tpt-al-hxy-u.6hr.GLB", + "atmos.va.tpt-p7h-hxy-air.6hr.GLB", + "atmos.vas.tavg-h10m-hxy-u.mon.30S-90S", + "atmos.vas.tpt-h10m-hxy-u.1hr.GLB", + "atmos.wap.tavg-p19-hxy-air.mon.30S-90S", + "atmos.zg.tavg-1000hPa-hxy-air.day.GLB", + "atmos.zg.tavg-500hPa-hxy-air.day.GLB", + "atmos.zg.tavg-al-hxy-u.mon.GLB", + "atmos.zg.tavg-p19-hxy-air.mon.30S-90S", + "atmos.zg.tavg-p39-hy-air.mon.GLB", + "atmos.zg.tpt-500hPa-hxy-air.6hr.GLB", + "atmos.zg.tpt-al-hxy-u.6hr.GLB", + "atmos.zg.tpt-p7h-hxy-air.6hr.GLB", + "atmos.ztp.tavg-u-hxy-u.mon.GLB", + "atmosChem.c2h4.tavg-al-hxy-u.mon.GLB", + "atmosChem.c2h5oh.tavg-al-hxy-u.mon.GLB", + "atmosChem.c4h10.tavg-al-hxy-u.mon.GLB", + "atmosChem.cfc11.tavg-u-hm-u.mon.GLB", + "atmosChem.cfc113.tavg-u-hm-u.mon.GLB", + "atmosChem.cfc12.tavg-u-hm-u.mon.GLB", + "atmosChem.ch3oh.tavg-al-hxy-u.mon.GLB", + "atmosChem.ch4.tavg-al-hxy-u.mon.GLB", + "atmosChem.ch4.tavg-p39-hy-air.mon.GLB", + "atmosChem.ch4losssoil.tavg-u-hxy-u.mon.GLB", + "atmosChem.ch4ref.ti-al-hxy-u.fx.GLB", + "atmosChem.chegph2oo1d.tavg-al-hxy-u.mon.GLB", + "atmosChem.chepnh4.tavg-al-hxy-u.mon.GLB", + "atmosChem.chepno3.tavg-al-hxy-u.mon.GLB", + "atmosChem.dms.tavg-al-hxy-u.mon.30S-90S", + "atmosChem.dms.tavg-al-hxy-u.mon.GLB", + "atmosChem.do3chm.tavg-al-hxy-u.mon.GLB", + "atmosChem.dryh2.tavg-u-hxy-u.mon.GLB", + "atmosChem.dryhno3.tavg-u-hxy-u.mon.GLB", + "atmosChem.drynh3.tavg-u-hxy-u.mon.GLB", + "atmosChem.drynh4.tavg-u-hxy-u.mon.GLB", + "atmosChem.drynoy.tavg-u-hxy-u.mon.GLB", + "atmosChem.e90inst.tpt-al-hxy-u.mon.GLB", + "atmosChem.emiach4.tavg-u-hxy-u.mon.GLB", + "atmosChem.emiavnox.tavg-al-hxy-u.mon.GLB", + "atmosChem.emic2h4.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic2h5oh.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic2h6.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic3h6.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic3h8.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic4h10.tavg-u-hxy-u.mon.GLB", + "atmosChem.emich3oh.tavg-u-hxy-u.mon.GLB", + "atmosChem.emich4.tavg-u-hxy-u.mon.GLB", + "atmosChem.emih2.tavg-u-hxy-u.mon.GLB", + "atmosChem.emilkch4.tavg-u-hxy-u.mon.GLB", + "atmosChem.h2.tavg-al-hxy-u.mon.GLB", + "atmosChem.h2loss.tavg-al-hxy-u.mon.GLB", + "atmosChem.h2prod.tavg-al-hxy-u.mon.GLB", + "atmosChem.hcfc22.tavg-u-hm-u.mon.GLB", + "atmosChem.meanage.tavg-al-hxy-u.mon.GLB", + "atmosChem.meanage.tavg-p39-hy-air.mon.GLB", + "atmosChem.n2o.tavg-al-hxy-u.mon.GLB", + "atmosChem.n2o.tavg-p39-hy-air.mon.GLB", + "atmosChem.o3.tavg-al-hxy-u.mon.GLB", + "atmosChem.o3.tavg-p19-hxy-air.mon.GLB", + "atmosChem.o3.tavg-p39-hy-air.mon.GLB", + "atmosChem.o3.tpt-al-hxy-u.mon.GLB", + "atmosChem.o3ref.tclm-al-hxy-u.fx.GLB", + "atmosChem.o3ref.ti-al-hxy-u.fx.GLB", + "atmosChem.o3ste.tavg-al-hxy-u.mon.GLB", + "atmosChem.rlutch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rlutcsch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rlutcso3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rluto3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsutch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsutcsch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsutcso3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsuto3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.stratch4loss.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropch4loss.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropch4lossoh.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropdo3chm.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropo3ste.tavg-al-hxy-u.mon.GLB", + "atmosChem.wethno3.tavg-al-hxy-u.mon.GLB", + "atmosChem.wetnh3.tavg-u-hxy-u.mon.GLB", + "atmosChem.wetnh4.tavg-u-hxy-u.mon.GLB", + "atmosChem.wetno3.tavg-al-hxy-u.mon.GLB", + "atmosChem.wetnoy.tavg-u-hxy-u.mon.GLB", + "land.albc.tavg-u-hxy-veg.mon.GLB", + "land.areacellr.ti-u-hxy-u.fx.GLB", + "land.baresoilFrac.tavg-u-hxy-u.mon.GLB", + "land.burntFractionAll.tavg-u-hxy-u.mon.GLB", + "land.cGeologicStorage.tavg-u-hxy-u.mon.GLB", + "land.cLand.tavg-u-hxy-lnd.mon.GLB", + "land.cLitter.tavg-u-hxy-lnd.mon.GLB", + "land.cnc.tavg-u-hxy-u.mon.GLB", + "land.cProduct.tavg-u-hxy-lnd.mon.GLB", + "land.cropFrac.tavg-u-hxy-u.mon.GLB", + "land.cSoil.tavg-d100cm-hxy-lnd.mon.GLB", + "land.cSoil.tavg-u-hxy-lnd.mon.GLB", + "land.cVeg.tavg-u-hxy-lnd.mon.GLB", + "land.dcw.tavg-u-hxy-lnd.day.GLB", + "land.dslw.tavg-u-hxy-lnd.day.GLB", + "land.evspsblpot.tavg-u-hxy-lnd.day.GLB", + "land.evspsblpot.tavg-u-hxy-lnd.mon.GLB", + "land.fAnthDisturb.tavg-u-hxy-lnd.mon.GLB", + "land.fBNF.tavg-u-hxy-lnd.mon.GLB", + "land.fCLandToOcean.tavg-u-hxy-lnd.mon.GLB", + "land.fDeforestToAtmos.tavg-u-hxy-lnd.mon.GLB", + "land.fDeforestToProduct.tavg-u-hxy-lnd.mon.GLB", + "land.fFire.tavg-u-hxy-lnd.mon.GLB", + "land.fFireAll.tavg-u-hxy-lnd.mon.GLB", + "land.fFireNat.tavg-u-hxy-lnd.mon.GLB", + "land.fHarvestToAtmos.tavg-u-hxy-lnd.mon.GLB", + "land.fHarvestToGeologicStorage.tavg-u-hxy-lnd.mon.GLB", + "land.fHarvestToProduct.tavg-u-hxy-lnd.mon.GLB", + "land.fLitterSoil.tavg-u-hxy-lnd.mon.GLB", + "land.fN2O.tavg-u-hxy-lnd.mon.GLB", + "land.fNAnthDisturb.tavg-u-hxy-lnd.mon.GLB", + "land.fNdep.tavg-u-hxy-lnd.mon.GLB", + "land.fNfert.tavg-u-hxy-lnd.mon.GLB", + "land.fNLandToOcean.tavg-u-hxy-lnd.mon.GLB", + "land.fNLitterSoil.tavg-u-hxy-lnd.mon.GLB", + "land.fNloss.tavg-u-hxy-lnd.mon.GLB", + "land.fNnetmin.tavg-u-hxy-lnd.mon.GLB", + "land.fNOx.tavg-u-hxy-lnd.mon.GLB", + "land.fNProduct.tavg-u-hxy-lnd.mon.GLB", + "land.fNup.tavg-u-hxy-lnd.mon.GLB", + "land.fNVegLitter.tavg-u-hxy-lnd.mon.GLB", + "land.fNVegSoil.tavg-u-hxy-lnd.mon.GLB", + "land.fProductDecomp.tavg-u-hxy-lnd.mon.GLB", + "land.fVegLitter.tavg-u-hxy-lnd.mon.GLB", + "land.fVegSoil.tavg-u-hxy-lnd.mon.GLB", + "land.gpp.tavg-u-hxy-lnd.mon.GLB", + "land.grassFrac.tavg-u-hxy-u.mon.GLB", + "land.landCoverFrac.tavg-u-hxy-u.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.day.GLB", + "land.mrrob.tavg-u-hxy-lnd.day.GLB", + "land.mrros.tavg-u-hxy-lnd.day.GLB", + "land.mrsfl.tavg-sl-hxy-lnd.day.GLB", + "land.mrsfl.tavg-sl-hxy-lnd.mon.GLB", + "land.mrsll.tavg-sl-hxy-lnd.day.GLB", + "land.mrsll.tavg-sl-hxy-lnd.mon.GLB", + "land.mrso.tavg-u-hxy-lnd.day.GLB", + "land.mrsol.tavg-d10cm-hxy-lnd.day.GLB", + "land.mrsol.tavg-sl-hxy-lnd.day.GLB", + "land.mrsol.tavg-sl-hxy-lnd.mon.GLB", + "land.mrsow.tavg-u-hxy-lnd.day.GLB", + "land.mrtws.tavg-u-hxy-lnd.day.GLB", + "land.mrtws.tavg-u-hxy-lnd.mon.GLB", + "land.nbp.tavg-u-hxy-lnd.mon.GLB", + "land.nep.tavg-u-hxy-lnd.mon.GLB", + "land.nLand.tavg-u-hxy-lnd.mon.GLB", + "land.nLitter.tavg-u-hxy-lnd.mon.GLB", + "land.nMineral.tavg-u-hxy-lnd.mon.GLB", + "land.npp.tavg-u-hxy-lnd.mon.GLB", + "land.nProduct.tavg-u-hxy-lnd.mon.GLB", + "land.nSoil.tavg-u-hxy-lnd.mon.GLB", + "land.nVeg.tavg-u-hxy-lnd.mon.GLB", + "land.pastureFrac.tavg-u-hxy-u.mon.GLB", + "land.prveg.tavg-u-hxy-lnd.mon.GLB", + "land.ra.tavg-u-hxy-lnd.mon.GLB", + "land.residualFrac.tavg-u-hxy-u.mon.GLB", + "land.rh.tavg-u-hxy-lnd.mon.GLB", + "land.rivi.tavg-u-hxy-lnd.day.GLB", + "land.rivo.tavg-u-hxy-lnd.day.GLB", + "land.rsds.tavg-u-hxy-sn.mon.GLB", + "land.rsus.tavg-u-hxy-sn.mon.GLB", + "land.shrubFrac.tavg-u-hxy-u.mon.GLB", + "land.tas.tavg-u-hxy-u.1hr.GLB", + "land.tran.tavg-u-hxy-lnd.mon.GLB", + "land.treeFrac.tavg-u-hxy-u.mon.GLB", + "land.tsl.tavg-sl-hxy-lnd.mon.GLB", + "land.tslsi.tavg-u-hxy-u.day.GLB", + "land.vegFrac.tavg-u-hxy-u.mon.GLB", + "land.vegHeight.tavg-u-hxy-veg.mon.GLB", + "land.wetlandCH4.tavg-u-hxy-lnd.mon.GLB", + "land.wtd.tavg-u-hxy-lnd.day.GLB", + "landIce.snd.tavg-u-hxy-lnd.mon.GLB", + "landIce.snw.tavg-u-hxy-lnd.day.GLB", + "ocean.absscint.tavg-op4-hxy-sea.mon.GLB", + "ocean.agessc.tavg-ol-hxy-sea.mon.GLB", + "ocean.bigthetao.tavg-ol-hm-sea.mon.GLB", + "ocean.bigthetao.tavg-ol-hxy-sea.dec.GLB", + "ocean.bigthetao.tavg-op20bar-hxy-sea.day.GLB", + "ocean.chcint.tavg-op4-hxy-sea.mon.GLB", + "ocean.ficeberg.tavg-ol-hxy-sea.mon.GLB", + "ocean.friver.tavg-u-hxy-sea.mon.GLB", + "ocean.hfbasin.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpmadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpmdiff.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpsmadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfds.tavg-u-hxy-sea.mon.30S-90S", + "ocean.hfx.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfx.tavg-u-hxy-sea.day.GLB", + "ocean.hfx.tavg-u-hxy-sea.mon.GLB", + "ocean.hfy.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfy.tavg-u-hxy-sea.day.GLB", + "ocean.hfy.tavg-u-hxy-sea.mon.GLB", + "ocean.htovgyre.tavg-u-hyb-sea.mon.GLB", + "ocean.htovovrt.tavg-u-hyb-sea.mon.GLB", + "ocean.masscello.tavg-ol-hxy-sea.dec.GLB", + "ocean.masso.tavg-u-hm-sea.dec.GLB", + "ocean.masso.tavg-u-hm-sea.mon.GLB", + "ocean.mlotst.tavg-u-hxy-sea.day.GLB", + "ocean.mlotst.tavg-u-hxy-sea.mon.30S-90S", + "ocean.mlotst.tmax-u-hxy-sea.mon.GLB", + "ocean.mlotst.tmin-u-hxy-sea.mon.GLB", + "ocean.mpw.tavg-u-hxy-sea.mon.GLB", + "ocean.mpw.tpt-u-hxy-sea.3hr.GLB", + "ocean.mpwswell.tavg-u-hxy-sea.mon.GLB", + "ocean.mpwswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.mpwwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.mpwwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.msftbarot.tavg-u-hxy-sea.mon.GLB", + "ocean.msftm.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftm.tavg-rho-hyb-sea.mon.GLB", + "ocean.msfty.tavg-ol-ht-sea.mon.GLB", + "ocean.msfty.tavg-rho-ht-sea.mon.GLB", + "ocean.obvfsq.tavg-ol-hxy-sea.mon.GLB", + "ocean.pbo.tavg-u-hxy-sea.mon.GLB", + "ocean.pfscint.tavg-op4-hxy-sea.mon.GLB", + "ocean.phcint.tavg-op4-hxy-sea.mon.GLB", + "ocean.pso.tavg-u-hxy-sea.mon.GLB", + "ocean.scint.tavg-op4-hxy-sea.mon.GLB", + "ocean.sduo.tavg-u-hxy-sea.mon.GLB", + "ocean.sduo.tpt-u-hxy-sea.3hr.GLB", + "ocean.sdvo.tavg-u-hxy-sea.mon.GLB", + "ocean.sdvo.tpt-u-hxy-sea.3hr.GLB", + "ocean.sfx.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfx.tavg-u-hxy-sea.mon.GLB", + "ocean.sfy.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfy.tavg-u-hxy-sea.mon.GLB", + "ocean.sltbasin.tavg-u-hyb-sea.mon.GLB", + "ocean.sltovgyre.tavg-u-hyb-sea.mon.GLB", + "ocean.sltovovrt.tavg-u-hyb-sea.mon.GLB", + "ocean.so.tavg-ol-hm-sea.mon.GLB", + "ocean.so.tavg-ol-hxy-sea.dec.GLB", + "ocean.so.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.sob.tavg-u-hxy-sea.mon.GLB", + "ocean.sos.tavg-u-hm-sea.mon.30S-90S", + "ocean.sos.tavg-u-hm-sea.mon.GLB", + "ocean.swh.tavg-u-hxy-sea.mon.GLB", + "ocean.swh.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhmax.tmax-u-hxy-sea.mon.GLB", + "ocean.swhmax.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhswell.tavg-u-hxy-sea.mon.GLB", + "ocean.swhswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.swhwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.tauuo.tavg-u-hxy-sea.3hr.GLB", + "ocean.tauuo.tavg-u-hxy-sea.dec.GLB", + "ocean.tauvo.tavg-u-hxy-sea.3hr.GLB", + "ocean.tauvo.tavg-u-hxy-sea.dec.GLB", + "ocean.thetao.tavg-ol-hm-sea.mon.GLB", + "ocean.thetao.tavg-ol-hxy-sea.dec.GLB", + "ocean.thetao.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.thetao.tavg-op20bar-hxy-sea.day.GLB", + "ocean.thkcello.tavg-ol-hxy-sea.dec.GLB", + "ocean.tob.tavg-u-hxy-sea.mon.GLB", + "ocean.tos.tavg-u-hm-sea.mon.GLB", + "ocean.tos.tavg-u-hxy-sea.mon.30S-90S", + "ocean.tos.tpt-u-hxy-sea.3hr.GLB", + "ocean.tossq.tavg-u-hxy-sea.day.GLB", + "ocean.umo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.uo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.uos.tavg-u-hxy-sea.day.GLB", + "ocean.vmo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.vo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.volcello.tavg-ol-hxy-sea.dec.GLB", + "ocean.volcello.tavg-ol-hxy-sea.mon.GLB", + "ocean.volcello.tavg-ol-hxy-sea.yr.GLB", + "ocean.volcello.ti-ol-hxy-sea.fx.GLB", + "ocean.volo.tavg-u-hm-sea.dec.GLB", + "ocean.volo.tavg-u-hm-sea.mon.GLB", + "ocean.vos.tavg-u-hxy-sea.day.GLB", + "ocean.wdir.tavg-u-hxy-sea.mon.GLB", + "ocean.wdir.tpt-u-hxy-sea.3hr.GLB", + "ocean.wdirswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wdirswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wdirwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wdirwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.wfcorr.tavg-u-hxy-sea.mon.GLB", + "ocean.wfo.tavg-u-hxy-sea.mon.GLB", + "ocean.wmo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.wo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.wpdir.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdir.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpdirswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdirswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpdirwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdirwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpp.tavg-u-hxy-sea.mon.GLB", + "ocean.wpp.tpt-u-hxy-sea.3hr.GLB", + "ocean.wppswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wppswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wppwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wppwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.zos.tavg-u-hxy-sea.mon.30S-90S", + "ocean.zossq.tavg-u-hxy-sea.mon.GLB", + "ocean.zostoga.tavg-u-hm-sea.day.GLB", + "ocnBgchem.bacc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.calc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chl.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chl.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chlcalc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chldiat.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chldiat.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chldiaz.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chldiaz.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chlmisc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chlmisc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chlpico.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chlpico.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.detoc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dfe.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.dfe.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissic.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.dissic.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissoc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dmso.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.expc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.expcalc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.fgco2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fsfe.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fsn.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.graz.tavg-ol-hxy-sea.mon.30S-90S", + "ocnBgchem.icfriver.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intdic.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intdoc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intparag.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbfe.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbn.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbp.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbsi.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpcalcite.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpn2.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpoc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpp.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpp.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppcalc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppdiat.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppdiaz.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppmisc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppnitrate.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpppico.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.nh4.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.nh4.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.no3.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.no3.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.o2.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.ocfriver.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.ph.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.ph.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phyc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phyc.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.phyc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phycalc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phycalc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phydiat.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phydiat.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phydiaz.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phydiaz.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phymisc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phymisc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phypico.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phypico.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.po4.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.pp.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.si.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.spco2.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.spco2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.talk.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zmeso.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zmeso.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zmicro.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zmicro.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zmisc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zmisc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zooc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zooc.tavg-ol-hxy-sea.mon.GLB", + "seaIce.evspsbl.tavg-u-hxy-si.mon.GLB", + "seaIce.prra.tavg-u-hxy-si.mon.GLB", + "seaIce.prsn.tavg-u-hxy-si.mon.GLB", + "seaIce.rlds.tavg-u-hxy-si.mon.GLB", + "seaIce.rlus.tavg-u-hxy-si.mon.GLB", + "seaIce.rsds.tavg-u-hxy-si.day.GLB", + "seaIce.rsds.tavg-u-hxy-si.mon.GLB", + "seaIce.rsus.tavg-u-hxy-si.day.GLB", + "seaIce.rsus.tavg-u-hxy-si.mon.GLB", + "seaIce.sbl.tavg-u-hxy-si.mon.GLB", + "seaIce.siage.tavg-u-hxy-si.day.GLB", + "seaIce.siage.tavg-u-hxy-si.mon.30S-90S", + "seaIce.siarea.tavg-u-hm-u.mon.NH", + "seaIce.siarea.tavg-u-hm-u.mon.SH", + "seaIce.siconc.tavg-u-hxy-u.mon.30S-90S", + "seaIce.siconca.tavg-u-hxy-u.day.GLB", + "seaIce.siconca.tavg-u-hxy-u.mon.GLB", + "seaIce.sidconcdyn.tavg-u-hxy-sea.mon.GLB", + "seaIce.sidconcth.tavg-u-hxy-sea.mon.GLB", + "seaIce.sidmassdyn.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthsi.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthwat.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmeltbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmeltlat.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmelttop.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassth.tavg-u-hxy-si.mon.GLB", + "seaIce.sieqthick.tavg-u-hxy-si.mon.GLB", + "seaIce.siextent.tavg-u-hm-u.mon.NH", + "seaIce.siextent.tavg-u-hm-u.mon.SH", + "seaIce.siflcondbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflcondtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sifllattop.tavg-u-hxy-si.mon.GLB", + "seaIce.siflsensbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflsenstop.tavg-u-hxy-si.mon.GLB", + "seaIce.siflswdbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sihc.tavg-u-hxy-sea.mon.GLB", + "seaIce.sisndmassdyn.tavg-u-hxy-si.mon.GLB", + "seaIce.sisndmasssi.tavg-u-hxy-si.mon.GLB", + "seaIce.sisndmasswind.tavg-u-hxy-si.mon.GLB", + "seaIce.sisnhc.tavg-u-hxy-si.mon.GLB", + "seaIce.sisnmass.tavg-u-hm-u.mon.NH", + "seaIce.sisnmass.tavg-u-hm-u.mon.SH", + "seaIce.sispeed.tavg-u-hxy-si.day.GLB", + "seaIce.sispeed.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-si.day.GLB", + "seaIce.sithick.tavg-u-hxy-si.mon.30S-90S", + "seaIce.sitimefrac.tavg-u-hxy-sea.day.GLB", + "seaIce.sitimefrac.tavg-u-hxy-sea.mon.30S-90S", + "seaIce.siu.tavg-u-hxy-si.day.GLB", + "seaIce.siu.tavg-u-hxy-si.mon.30S-90S", + "seaIce.siv.tavg-u-hxy-si.day.GLB", + "seaIce.siv.tavg-u-hxy-si.mon.30S-90S", + "seaIce.sivol.tavg-u-hm-u.mon.NH", + "seaIce.sivol.tavg-u-hm-u.mon.SH", + "seaIce.snc.tavg-u-hxy-si.mon.GLB", + "seaIce.snd.tavg-u-hxy-sn.day.GLB", + "seaIce.snd.tavg-u-hxy-sn.mon.30S-90S", + "seaIce.snm.tavg-u-hxy-si.mon.GLB", + "seaIce.snw.tavg-u-hxy-si.mon.GLB", + "seaIce.ts.tavg-u-hxy-si.day.GLB", + "seaIce.ts.tavg-u-hxy-si.mon.30S-90S" + ], + "Medium": [ + "atmos.noaahi2m.tavg-h2m-hxy-u.day.GLB", + "atmos.noaahi2m.tmax-h2m-hxy-u.day.GLB", + "atmos.rls.tavg-u-hxy-u.day.GLB", + "atmos.rls.tavg-u-hxy-u.mon.GLB", + "atmos.rss.tavg-u-hxy-u.day.GLB", + "atmos.rss.tavg-u-hxy-u.mon.GLB", + "atmos.wbgt.tavg-h2m-hxy-u.day.GLB", + "atmos.wbgt.tmax-h2m-hxy-u.day.GLB", + "land.cLeaf.tavg-u-hxy-lnd.mon.GLB", + "land.cLitterCwd.tavg-u-hxy-lnd.mon.GLB", + "land.cLitterSubSurf.tavg-u-hxy-lnd.mon.GLB", + "land.cLitterSurf.tavg-u-hxy-lnd.mon.GLB", + "land.cOther.tavg-u-hxy-lnd.mon.GLB", + "land.cRoot.tavg-u-hxy-lnd.mon.GLB", + "land.cropFracC3.tavg-u-hxy-u.mon.GLB", + "land.cropFracC4.tavg-u-hxy-u.mon.GLB", + "land.cSoil.tavg-sl-hxy-lnd.mon.GLB", + "land.cSoilPools.tavg-u-hxy-lnd.mon.GLB", + "land.cStem.tavg-u-hxy-lnd.mon.GLB", + "land.cVeg.tavg-u-hxy-ng.mon.GLB", + "land.cVeg.tavg-u-hxy-shb.mon.GLB", + "land.cVeg.tavg-u-hxy-tree.mon.GLB", + "land.fLitterFire.tavg-u-hxy-lnd.mon.GLB", + "land.fNgas.tavg-u-hxy-lnd.mon.GLB", + "land.fNgasFire.tavg-u-hxy-lnd.mon.GLB", + "land.fNgasNonFire.tavg-u-hxy-lnd.mon.GLB", + "land.fNleach.tavg-u-hxy-lnd.mon.GLB", + "land.fVegFire.tavg-u-hxy-lnd.mon.GLB", + "land.fVegLitterMortality.tavg-u-hxy-lnd.mon.GLB", + "land.fVegLitterSenescence.tavg-u-hxy-lnd.mon.GLB", + "land.fVegSoilMortality.tavg-u-hxy-lnd.mon.GLB", + "land.fVegSoilSenescence.tavg-u-hxy-lnd.mon.GLB", + "land.gpp.tavg-u-hxy-ng.mon.GLB", + "land.gpp.tavg-u-hxy-shb.mon.GLB", + "land.gpp.tavg-u-hxy-tree.mon.GLB", + "land.grassFracC3.tavg-u-hxy-u.mon.GLB", + "land.grassFracC4.tavg-u-hxy-u.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.3hr.GLB", + "land.mrros.tavg-u-hxy-lnd.3hr.GLB", + "land.mrsol.tpt-d10cm-hxy-lnd.3hr.GLB", + "land.nLeaf.tavg-u-hxy-lnd.mon.GLB", + "land.nLitterCwd.tavg-u-hxy-lnd.mon.GLB", + "land.nLitterSubSurf.tavg-u-hxy-lnd.mon.GLB", + "land.nLitterSurf.tavg-u-hxy-lnd.mon.GLB", + "land.nMineralNH4.tavg-u-hxy-lnd.mon.GLB", + "land.nMineralNO3.tavg-u-hxy-lnd.mon.GLB", + "land.nOther.tavg-u-hxy-lnd.mon.GLB", + "land.npp.tavg-u-hxy-ng.mon.GLB", + "land.npp.tavg-u-hxy-shb.mon.GLB", + "land.npp.tavg-u-hxy-tree.mon.GLB", + "land.nppLeaf.tavg-u-hxy-lnd.mon.GLB", + "land.nppOther.tavg-u-hxy-lnd.mon.GLB", + "land.nppRoot.tavg-u-hxy-lnd.mon.GLB", + "land.nppStem.tavg-u-hxy-lnd.mon.GLB", + "land.nRoot.tavg-u-hxy-lnd.mon.GLB", + "land.nStem.tavg-u-hxy-lnd.mon.GLB", + "land.pastureFracC3.tavg-u-hxy-u.mon.GLB", + "land.pastureFracC4.tavg-u-hxy-u.mon.GLB", + "land.ra.tavg-u-hxy-ng.mon.GLB", + "land.ra.tavg-u-hxy-shb.mon.GLB", + "land.ra.tavg-u-hxy-tree.mon.GLB", + "land.raLeaf.tavg-u-hxy-lnd.mon.GLB", + "land.raOther.tavg-u-hxy-lnd.mon.GLB", + "land.raRoot.tavg-u-hxy-lnd.mon.GLB", + "land.raStem.tavg-u-hxy-lnd.mon.GLB", + "land.rh.tavg-u-hxy-ng.mon.GLB", + "land.rh.tavg-u-hxy-shb.mon.GLB", + "land.rh.tavg-u-hxy-tree.mon.GLB", + "land.rhLitter.tavg-u-hxy-lnd.mon.GLB", + "land.rhSoil.tavg-u-hxy-lnd.mon.GLB", + "land.treeFracBdlDcd.tavg-u-hxy-u.mon.GLB", + "land.treeFracBdlEvg.tavg-u-hxy-u.mon.GLB", + "land.treeFracNdlDcd.tavg-u-hxy-u.mon.GLB", + "land.treeFracNdlEvg.tavg-u-hxy-u.mon.GLB", + "land.vegHeight.tavg-u-hxy-ng.mon.GLB", + "land.vegHeight.tavg-u-hxy-shb.mon.GLB", + "land.vegHeight.tavg-u-hxy-tree.mon.GLB", + "land.wetlandCH4cons.tavg-u-hxy-lnd.mon.GLB", + "land.wetlandCH4prod.tavg-u-hxy-lnd.mon.GLB", + "land.wetlandFrac.tavg-u-hxy-u.mon.GLB", + "ocean.evspsbl.tavg-u-hxy-ifs.mon.GLB", + "ocean.ficeberg.tavg-u-hxy-sea.mon.GLB", + "ocean.hfacrossline.tavg-u-ht-sea.mon.GLB", + "ocean.hfevapds.tavg-u-hxy-ifs.mon.GLB", + "ocean.hfibthermds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfibthermds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfrainds.tavg-u-hxy-ifs.mon.GLB", + "ocean.hfrunoffds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfrunoffds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfsnthermds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfsnthermds.tavg-u-hxy-sea.mon.GLB", + "ocean.mfo.tavg-u-ht-sea.mon.GLB", + "ocean.sf6.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfacrossline.tavg-u-ht-sea.mon.GLB", + "ocean.sfdsi.tavg-u-hxy-sea.mon.GLB", + "ocean.sfriver.tavg-u-hxy-sea.mon.GLB", + "ocean.siflfwbot.tavg-u-hxy-sea.mon.GLB", + "ocean.so.tavg-ol-hxy-sea.day.GLB", + "ocean.tnkebto.tavg-u-hxy-sea.yr.GLB", + "ocean.vsf.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfcorr.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfevap.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfpr.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfriver.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfsit.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.arag.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.arag.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.calc.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.calc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chl.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.chlcalc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dmso.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.epn.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.epp.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.expc.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.expcalc.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.fgdms.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fric.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.froc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.graz.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.intppcalc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppdiat.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppdiaz.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppmisc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppnitrate.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intpppico.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.o2.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.ph.tavg-op20bar-hxy-sea.day.GLB", + "seaIce.sfdsi.tavg-u-hxy-si.mon.GLB", + "seaIce.siage.tavg-u-hxy-si.mon.GLB", + "seaIce.siarea.tavg-u-hm-u.day.NH", + "seaIce.siarea.tavg-u-hm-u.day.SH", + "seaIce.siareaacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.sicompstren.tavg-u-hxy-si.mon.GLB", + "seaIce.sidivvel.tpt-u-hxy-si.mon.GLB", + "seaIce.sidmasstranx.tavg-u-hxy-u.mon.GLB", + "seaIce.sidmasstrany.tavg-u-hxy-u.mon.GLB", + "seaIce.sidragbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidragtop.tavg-u-hxy-si.mon.GLB", + "seaIce.siextent.tavg-u-hm-u.day.NH", + "seaIce.siextent.tavg-u-hm-u.day.SH", + "seaIce.sifb.tavg-u-hxy-si.mon.GLB", + "seaIce.siflfwbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflfwdrain.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcecoriolx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcecorioly.tavg-u-hxy-si.mon.GLB", + "seaIce.siforceintstrx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforceintstry.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcetiltx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcetilty.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdconc.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdsnconc.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdsnthick.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdthick.tavg-u-hxy-si.mon.GLB", + "seaIce.simassacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.simpconc.tavg-u-hxy-si.mon.GLB", + "seaIce.simpeffconc.tavg-u-hxy-si.mon.GLB", + "seaIce.simprefrozen.tavg-u-hxy-simp.mon.GLB", + "seaIce.simpthick.tavg-u-hxy-simp.mon.GLB", + "seaIce.sirdgconc.tavg-u-hxy-si.mon.GLB", + "seaIce.sisali.tavg-u-hxy-si.mon.GLB", + "seaIce.sisaltmass.tavg-u-hxy-si.mon.GLB", + "seaIce.sishearvel.tpt-u-hxy-si.mon.GLB", + "seaIce.sisnmass.tavg-u-hm-u.day.NH", + "seaIce.sisnmass.tavg-u-hm-u.day.SH", + "seaIce.sisnmassacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.sistressave.tpt-u-hxy-si.mon.GLB", + "seaIce.sistressmax.tpt-u-hxy-si.mon.GLB", + "seaIce.sistrxdtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sistrxubot.tavg-u-hxy-si.mon.GLB", + "seaIce.sistrydtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sistryubot.tavg-u-hxy-si.mon.GLB", + "seaIce.sitempbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sitempsnic.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-sir.mon.GLB", + "seaIce.sivol.tavg-u-hm-u.day.NH", + "seaIce.sivol.tavg-u-hm-u.day.SH" + ], + "Low": [ + "aerosol.sfpm1.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.sfpm10.tavg-h2m-hxy-u.1hr.GLB", + "atmos.hurs.tavg-h2m-hxy-u.1hr.GLB", + "land.c13Land.tavg-u-hxy-lnd.mon.GLB", + "land.c13Litter.tavg-u-hxy-lnd.mon.GLB", + "land.c13Soil.tavg-u-hxy-lnd.mon.GLB", + "land.c13Veg.tavg-u-hxy-lnd.mon.GLB", + "land.c14Land.tavg-u-hxy-lnd.mon.GLB", + "land.c14Litter.tavg-u-hxy-lnd.mon.GLB", + "land.c14Soil.tavg-u-hxy-lnd.mon.GLB", + "land.c14Veg.tavg-u-hxy-lnd.mon.GLB", + "land.gppc13.tavg-u-hxy-lnd.mon.GLB", + "land.gppc14.tavg-u-hxy-lnd.mon.GLB", + "land.netAtmosLandC13Flux.tavg-u-hxy-lnd.mon.GLB", + "land.netAtmosLandC14Flux.tavg-u-hxy-lnd.mon.GLB", + "land.rac13.tavg-u-hxy-lnd.mon.GLB", + "land.rac14.tavg-u-hxy-lnd.mon.GLB", + "land.rhc13.tavg-u-hxy-lnd.mon.GLB", + "land.rhc14.tavg-u-hxy-lnd.mon.GLB", + "ocean.difmxybo.tavg-ol-hxy-sea.yr.GLB", + "ocean.difmxylo.tavg-ol-hxy-sea.yr.GLB", + "ocean.diftrblo.tavg-ol-hxy-sea.yr.GLB", + "ocean.diftrelo.tavg-ol-hxy-sea.yr.GLB", + "ocean.difvho.tavg-ol-hxy-sea.yr.GLB", + "ocean.difvso.tavg-ol-hxy-sea.yr.GLB", + "ocean.dispkexyfo.tavg-u-hxy-sea.yr.GLB", + "ocean.dxto.ti-u-hxy-u.fx.GLB", + "ocean.dxuo.ti-u-hxy-u.fx.GLB", + "ocean.dxvo.ti-u-hxy-u.fx.GLB", + "ocean.dyto.ti-u-hxy-u.fx.GLB", + "ocean.dyuo.ti-u-hxy-u.fx.GLB", + "ocean.dyvo.ti-u-hxy-u.fx.GLB", + "ocean.mlotstsq.tavg-u-hxy-sea.mon.GLB", + "ocean.msftmmpa.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftmmpa.tavg-rho-hyb-sea.mon.GLB", + "ocean.msftmsmpa.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftypa.tavg-ol-ht-sea.mon.GLB", + "ocean.msftypa.tavg-rho-ht-sea.mon.GLB", + "ocean.ocontempdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontempmint.tavg-u-hxy-sea.yr.GLB", + "ocean.ocontemppadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemppmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemppsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemprmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemptend.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottempdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottempmint.tavg-u-hxy-sea.yr.GLB", + "ocean.opottemppadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemppmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemppsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemprmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemptend.tavg-ol-hxy-sea.dec.GLB", + "ocean.osaltdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpsmadvect.tavg-ol-hxy-sea.mon.GLB", + "ocean.osaltpsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltrmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osalttend.tavg-ol-hxy-sea.yr.GLB", + "ocean.rsdoabsorb.tavg-ol-hxy-sea.yr.GLB", + "ocean.somint.tavg-u-hxy-sea.yr.GLB", + "ocean.sossq.tavg-u-hxy-sea.mon.GLB", + "ocean.thkcelluo.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcellvo.tavg-ol-hxy-sea.mon.GLB", + "ocean.tnpeo.tavg-u-hxy-sea.yr.GLB", + "ocean.tossq.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.dissi13c.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.dissi13c.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissi14c.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissi14cabio.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.dissi14cabio.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.fg13co2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fg14co2abio.tavg-u-hxy-sea.mon.GLB" + ] + }, + "piClim-SO2": { + "Core": [ + "atmos.areacella.ti-u-hxy-u.fx.GLB", + "atmos.cl.tavg-al-hxy-u.mon.GLB", + "atmos.cli.tavg-al-hxy-u.mon.GLB", + "atmos.clivi.tavg-u-hxy-u.mon.GLB", + "atmos.clt.tavg-u-hxy-u.day.GLB", + "atmos.clt.tavg-u-hxy-u.mon.GLB", + "atmos.clw.tavg-al-hxy-u.mon.GLB", + "atmos.clwvi.tavg-u-hxy-u.mon.GLB", + "atmos.evspsbl.tavg-u-hxy-u.mon.GLB", + "atmos.hfls.tavg-u-hxy-u.mon.GLB", + "atmos.hfss.tavg-u-hxy-u.mon.GLB", + "atmos.hur.tavg-p19-hxy-air.mon.GLB", + "atmos.hur.tavg-p19-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.6hr.GLB", + "atmos.hurs.tavg-h2m-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.mon.GLB", + "atmos.hus.tavg-p19-hxy-u.day.GLB", + "atmos.hus.tavg-p19-hxy-u.mon.GLB", + "atmos.huss.tavg-h2m-hxy-u.day.GLB", + "atmos.huss.tavg-h2m-hxy-u.mon.GLB", + "atmos.huss.tpt-h2m-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.1hr.GLB", + "atmos.pr.tavg-u-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.day.GLB", + "atmos.pr.tavg-u-hxy-u.mon.GLB", + "atmos.prc.tavg-u-hxy-u.mon.GLB", + "atmos.prsn.tavg-u-hxy-u.mon.GLB", + "atmos.prw.tavg-u-hxy-u.mon.GLB", + "atmos.ps.tavg-u-hxy-u.day.GLB", + "atmos.ps.tavg-u-hxy-u.mon.GLB", + "atmos.psl.tavg-u-hxy-u.day.GLB", + "atmos.psl.tavg-u-hxy-u.mon.GLB", + "atmos.rlds.tavg-u-hxy-u.mon.GLB", + "atmos.rldscs.tavg-u-hxy-u.mon.GLB", + "atmos.rlus.tavg-u-hxy-u.mon.GLB", + "atmos.rluscs.tavg-u-hxy-u.mon.GLB", + "atmos.rlut.tavg-u-hxy-u.mon.GLB", + "atmos.rlutcs.tavg-u-hxy-u.mon.GLB", + "atmos.rsds.tavg-u-hxy-u.day.GLB", + "atmos.rsds.tavg-u-hxy-u.mon.GLB", + "atmos.rsdscs.tavg-u-hxy-u.mon.GLB", + "atmos.rsdt.tavg-u-hxy-u.mon.GLB", + "atmos.rsus.tavg-u-hxy-u.mon.GLB", + "atmos.rsuscs.tavg-u-hxy-u.mon.GLB", + "atmos.rsut.tavg-u-hxy-u.mon.GLB", + "atmos.rsutcs.tavg-u-hxy-u.mon.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.day.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.mon.GLB", + "atmos.sftlf.ti-u-hxy-u.fx.GLB", + "atmos.ta.tavg-p19-hxy-air.day.GLB", + "atmos.ta.tavg-p19-hxy-air.mon.GLB", + "atmos.ta.tpt-p3-hxy-air.6hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.day.GLB", + "atmos.tas.tavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tmax-h2m-hxy-u.day.GLB", + "atmos.tas.tmaxavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tmin-h2m-hxy-u.day.GLB", + "atmos.tas.tminavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tpt-h2m-hxy-u.3hr.GLB", + "atmos.tauu.tavg-u-hxy-u.mon.GLB", + "atmos.tauv.tavg-u-hxy-u.mon.GLB", + "atmos.ts.tavg-u-hxy-u.mon.GLB", + "atmos.ua.tavg-p19-hxy-air.day.GLB", + "atmos.ua.tavg-p19-hxy-air.mon.GLB", + "atmos.ua.tpt-p3-hxy-air.6hr.GLB", + "atmos.uas.tavg-h10m-hxy-u.day.GLB", + "atmos.uas.tavg-h10m-hxy-u.mon.GLB", + "atmos.uas.tpt-h10m-hxy-u.3hr.GLB", + "atmos.va.tavg-p19-hxy-air.day.GLB", + "atmos.va.tavg-p19-hxy-air.mon.GLB", + "atmos.va.tpt-p3-hxy-air.6hr.GLB", + "atmos.vas.tavg-h10m-hxy-u.day.GLB", + "atmos.vas.tavg-h10m-hxy-u.mon.GLB", + "atmos.vas.tpt-h10m-hxy-u.3hr.GLB", + "atmos.wap.tavg-p19-hxy-air.mon.GLB", + "atmos.wap.tavg-p19-hxy-u.day.GLB", + "atmos.zg.tavg-p19-hxy-air.day.GLB", + "atmos.zg.tavg-p19-hxy-air.mon.GLB", + "land.evspsblsoi.tavg-u-hxy-lnd.mon.GLB", + "land.evspsblveg.tavg-u-hxy-lnd.mon.GLB", + "land.lai.tavg-u-hxy-lnd.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.mon.GLB", + "land.mrros.tavg-u-hxy-lnd.mon.GLB", + "land.mrso.tavg-u-hxy-lnd.mon.GLB", + "land.mrsofc.ti-u-hxy-lnd.fx.GLB", + "land.mrsol.tavg-d10cm-hxy-lnd.mon.GLB", + "land.orog.ti-u-hxy-u.fx.GLB", + "land.rootd.ti-u-hxy-lnd.fx.GLB", + "land.sftgif.ti-u-hxy-u.fx.GLB", + "land.slthick.ti-sl-hxy-lnd.fx.GLB", + "landIce.mrfso.tavg-u-hxy-lnd.mon.GLB", + "landIce.snc.tavg-u-hxy-lnd.mon.GLB", + "landIce.snw.tavg-u-hxy-lnd.mon.GLB", + "ocean.areacello.ti-u-hxy-u.fx.GLB", + "ocean.basin.ti-u-hxy-u.fx.GLB", + "ocean.bigthetao.tavg-ol-hxy-sea.mon.GLB", + "ocean.deptho.ti-u-hxy-sea.fx.GLB", + "ocean.hfds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfgeou.ti-u-hxy-sea.fx.GLB", + "ocean.masscello.tavg-ol-hxy-sea.mon.GLB", + "ocean.masscello.ti-ol-hxy-sea.fx.GLB", + "ocean.mlotst.tavg-u-hxy-sea.mon.GLB", + "ocean.sftof.ti-u-hxy-u.fx.GLB", + "ocean.so.tavg-ol-hxy-sea.mon.GLB", + "ocean.sos.tavg-u-hxy-sea.day.GLB", + "ocean.sos.tavg-u-hxy-sea.mon.GLB", + "ocean.tauuo.tavg-u-hxy-sea.mon.GLB", + "ocean.tauvo.tavg-u-hxy-sea.mon.GLB", + "ocean.thetao.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcello.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcello.ti-ol-hxy-sea.fx.GLB", + "ocean.tos.tavg-u-hxy-sea.day.GLB", + "ocean.tos.tavg-u-hxy-sea.mon.GLB", + "ocean.umo.tavg-ol-hxy-sea.mon.GLB", + "ocean.uo.tavg-ol-hxy-sea.mon.GLB", + "ocean.vmo.tavg-ol-hxy-sea.mon.GLB", + "ocean.vo.tavg-ol-hxy-sea.mon.GLB", + "ocean.wmo.tavg-ol-hxy-sea.mon.GLB", + "ocean.wo.tavg-ol-hxy-sea.mon.GLB", + "ocean.zos.tavg-u-hxy-sea.day.GLB", + "ocean.zos.tavg-u-hxy-sea.mon.GLB", + "ocean.zostoga.tavg-u-hm-sea.mon.GLB", + "seaIce.siconc.tavg-u-hxy-u.day.GLB", + "seaIce.siconc.tavg-u-hxy-u.mon.GLB", + "seaIce.simass.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-si.mon.GLB", + "seaIce.sitimefrac.tavg-u-hxy-sea.mon.GLB", + "seaIce.siu.tavg-u-hxy-si.mon.GLB", + "seaIce.siv.tavg-u-hxy-si.mon.GLB", + "seaIce.snd.tavg-u-hxy-sn.mon.GLB", + "seaIce.ts.tavg-u-hxy-si.mon.GLB" + ], + "High": [ + "aerosol.abs550aer.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550bc.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550dust.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550no3.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550oa.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550so4.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550ss.tavg-u-hxy-u.mon.GLB", + "aerosol.airmass.tavg-al-hxy-u.mon.GLB", + "aerosol.aoanh.tavg-al-hxy-u.mon.NH", + "aerosol.bry.tavg-p39-hy-air.mon.GLB", + "aerosol.bs550aer.tpt-al-hxy-u.6hr.GLB", + "aerosol.c2h6.tavg-al-hxy-u.mon.GLB", + "aerosol.c3h6.tavg-al-hxy-u.mon.GLB", + "aerosol.c3h8.tavg-al-hxy-u.mon.GLB", + "aerosol.ccldncl.tavg-u-hxy-ccl.mon.GLB", + "aerosol.ccn.tavg-u-hxy-ccl.mon.30S-90S", + "aerosol.ccn.tavg-u-hxy-ccl.mon.GLB", + "aerosol.ccn1.tavg-al-hxy-u.mon.30S-90S", + "aerosol.ccn1.tavg-al-hxy-u.mon.GLB", + "aerosol.ccnp02.tavg-al-hxy-u.mon.30S-90S", + "aerosol.ccnp02.tavg-al-hxy-u.mon.GLB", + "aerosol.cdnc.tavg-al-hxy-u.mon.30S-90S", + "aerosol.cdnc.tavg-al-hxy-u.mon.GLB", + "aerosol.cfc114.tavg-al-hxy-u.mon.GLB", + "aerosol.ch3coch3.tavg-al-hxy-u.mon.GLB", + "aerosol.cheaqpso4.tavg-al-hxy-u.mon.GLB", + "aerosol.chegpso4.tavg-al-hxy-u.mon.GLB", + "aerosol.chepasoa.tavg-u-hxy-u.mon.GLB", + "aerosol.chepsoa.tavg-u-hxy-u.mon.GLB", + "aerosol.cly.tavg-p39-hy-air.mon.GLB", + "aerosol.co.tavg-al-hxy-u.mon.GLB", + "aerosol.co.tavg-h2m-hxy-u.day.GLB", + "aerosol.cod.tavg-u-hxy-u.day.GLB", + "aerosol.cod.tavg-u-hxy-u.mon.30S-90S", + "aerosol.cod.tavg-u-hxy-u.mon.GLB", + "aerosol.conccn.tavg-al-hxy-u.mon.GLB", + "aerosol.conccn.tpt-u-hs-u.3hr.GLB", + "aerosol.drybc.tavg-u-hxy-u.mon.GLB", + "aerosol.drydust.tavg-u-hxy-u.mon.GLB", + "aerosol.dryno3.tavg-u-hxy-u.mon.GLB", + "aerosol.dryo3.tavg-u-hxy-u.mon.GLB", + "aerosol.dryoa.tavg-u-hxy-u.mon.GLB", + "aerosol.dryso2.tavg-u-hxy-u.mon.GLB", + "aerosol.dryso4.tavg-u-hxy-u.mon.GLB", + "aerosol.dryss.tavg-u-hxy-u.mon.GLB", + "aerosol.ec550aer.tavg-al-hxy-u.mon.GLB", + "aerosol.ec550aer.tpt-u-hxy-u.6hr.GLB", + "aerosol.emiaco.tavg-u-hxy-u.mon.GLB", + "aerosol.emianox.tavg-u-hxy-u.mon.GLB", + "aerosol.emiaoa.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbbc.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbch4.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbco.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbdms.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbnh3.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbnox.tavg-u-hxy-u.mon.GLB", + "aerosol.emibboa.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbso2.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbvoc.tavg-u-hxy-u.mon.GLB", + "aerosol.emibc.tavg-u-hxy-u.mon.GLB", + "aerosol.emibvoc.tavg-u-hxy-u.mon.GLB", + "aerosol.emico.tavg-u-hxy-u.mon.GLB", + "aerosol.emidms.tavg-u-hxy-u.mon.30S-90S", + "aerosol.emidms.tavg-u-hxy-u.mon.GLB", + "aerosol.emidust.tavg-u-hxy-u.mon.GLB", + "aerosol.emiisop.tavg-u-hxy-u.mon.GLB", + "aerosol.emilnox.tavg-al-hxy-u.mon.GLB", + "aerosol.eminh3.tavg-u-hxy-u.mon.GLB", + "aerosol.eminox.tavg-u-hxy-u.mon.GLB", + "aerosol.emioa.tavg-u-hxy-u.mon.GLB", + "aerosol.emiso2.tavg-u-hxy-u.mon.GLB", + "aerosol.emiso4.tavg-u-hxy-u.mon.GLB", + "aerosol.emiss.tavg-u-hxy-u.mon.30S-90S", + "aerosol.emiss.tavg-u-hxy-u.mon.GLB", + "aerosol.emivoc.tavg-u-hxy-u.mon.GLB", + "aerosol.h2o.tavg-al-hxy-u.mon.GLB", + "aerosol.h2o.tavg-p39-hy-air.mon.GLB", + "aerosol.hcfc22.tavg-al-hxy-u.mon.GLB", + "aerosol.hcho.tavg-al-hxy-u.mon.GLB", + "aerosol.hcl.tavg-al-hxy-u.mon.GLB", + "aerosol.hcl.tavg-p39-hy-air.mon.GLB", + "aerosol.hfc125.tavg-al-hxy-u.mon.GLB", + "aerosol.hfc134a.tavg-al-hxy-u.mon.GLB", + "aerosol.hno3.tavg-al-hxy-u.mon.GLB", + "aerosol.hno3.tavg-p39-hy-air.mon.GLB", + "aerosol.ho2.tavg-p39-hy-air.mon.GLB", + "aerosol.isop.tavg-al-hxy-u.mon.GLB", + "aerosol.jno2.tavg-al-hxy-u.mon.GLB", + "aerosol.lossch4.tavg-al-hxy-u.mon.GLB", + "aerosol.lossco.tavg-al-hxy-u.mon.GLB", + "aerosol.lossn2o.tavg-al-hxy-u.mon.GLB", + "aerosol.lwp.tavg-u-hxy-u.mon.GLB", + "aerosol.mmraerh2o.tavg-al-hxy-u.mon.GLB", + "aerosol.mmraerh2o.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmraerh2o.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrbc.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrbc.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrbc.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrbc.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrdust.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrdust.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrdust.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrdust.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrnh4.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrnh4.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrnh4.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrnh4.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrno3.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrno3.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrno3.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrno3.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmroa.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmroa.tavg-al-hxy-u.mon.GLB", + "aerosol.mmroa.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmroa.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrpm1.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrpm1.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrpm2p5.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrpm2p5.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrso4.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrso4.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrso4.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrso4.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrsoa.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrsoa.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrsoa.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrss.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrss.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrss.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrss.tpt-h2m-hs-u.3hr.GLB", + "aerosol.nh50.tavg-al-hxy-u.mon.GLB", + "aerosol.no.tavg-al-hxy-u.mon.GLB", + "aerosol.no2.tavg-al-hxy-u.mon.GLB", + "aerosol.no2.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.noy.tavg-p39-hy-air.mon.GLB", + "aerosol.o3.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.o3.tmax-h2m-hxy-u.day.GLB", + "aerosol.o3loss.tavg-al-hxy-u.mon.GLB", + "aerosol.o3prod.tavg-al-hxy-u.mon.GLB", + "aerosol.od443aer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550aer.tavg-u-hxy-u.day.GLB", + "aerosol.od550aer.tavg-u-hxy-u.mon.30S-90S", + "aerosol.od550aer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550aerh2o.tavg-u-hxy-u.mon.GLB", + "aerosol.od550bb.tavg-u-hxy-u.mon.GLB", + "aerosol.od550bc.tavg-u-hxy-u.mon.GLB", + "aerosol.od550csaer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550dust.tavg-u-hxy-u.mon.GLB", + "aerosol.od550lt1aer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550no3.tavg-u-hxy-u.mon.GLB", + "aerosol.od550oa.tavg-u-hxy-u.mon.GLB", + "aerosol.od550so4.tavg-u-hxy-u.mon.GLB", + "aerosol.od550soa.tavg-u-hxy-u.mon.GLB", + "aerosol.od550ss.tavg-u-hxy-u.mon.GLB", + "aerosol.od865aer.tavg-u-hxy-u.mon.GLB", + "aerosol.oh.tavg-al-hxy-u.mon.GLB", + "aerosol.oh.tavg-p39-hy-air.mon.GLB", + "aerosol.pan.tavg-al-hxy-u.mon.GLB", + "aerosol.photo1d.tavg-al-hxy-u.mon.GLB", + "aerosol.pod0.tsum-u-hxy-u.mon.GLB", + "aerosol.reffccwctop.tavg-u-hxy-cl.mon.GLB", + "aerosol.reffclwtop.tavg-u-hxy-cl.mon.30S-90S", + "aerosol.reffclwtop.tavg-u-hxy-cl.mon.GLB", + "aerosol.rluscsaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rlutaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rlutcsaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rsutaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rsutcsaf.tavg-u-hxy-u.mon.GLB", + "aerosol.sfpm1.tavg-h2m-hxy-u.day.GLB", + "aerosol.sfpm10.tavg-al-hxy-u.mon.30S-90S", + "aerosol.sfpm10.tavg-al-hxy-u.mon.GLB", + "aerosol.sfpm10.tavg-h2m-hxy-u.day.GLB", + "aerosol.sfpm25.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.sfpm25.tavg-h2m-hxy-u.day.GLB", + "aerosol.so2.tavg-al-hxy-u.mon.30S-90S", + "aerosol.so2.tavg-al-hxy-u.mon.GLB", + "aerosol.so2.tavg-h2m-hxy-u.day.GLB", + "aerosol.so2.tpt-h2m-hs-u.3hr.GLB", + "aerosol.tatp.tavg-u-hxy-u.mon.GLB", + "aerosol.toz.tavg-u-hxy-u.day.GLB", + "aerosol.toz.tavg-u-hxy-u.mon.GLB", + "aerosol.tropoz.tavg-u-hxy-u.mon.GLB", + "aerosol.ttop.tavg-u-hxy-cl.mon.GLB", + "aerosol.ua.tavg-10hPa-hxy-air.day.GLB", + "aerosol.vt100.tavg-100hPa-hy-air.mon.GLB", + "aerosol.wa.tavg-al-hxy-u.mon.GLB", + "aerosol.wetbc.tavg-u-hxy-u.mon.GLB", + "aerosol.wetdust.tavg-u-hxy-u.mon.GLB", + "aerosol.wetoa.tavg-u-hxy-u.mon.GLB", + "aerosol.wetso2.tavg-u-hxy-u.mon.GLB", + "aerosol.wetso4.tavg-u-hxy-u.mon.GLB", + "aerosol.wetss.tavg-u-hxy-u.mon.GLB", + "aerosol.zg.tavg-10hPa-hxy-air.day.GLB", + "atmos.albisccp.tavg-u-hxy-cl.mon.30S-90S", + "atmos.bldep.tavg-u-hxy-u.mon.GLB", + "atmos.bldep.tmax-u-hxy-u.day.GLB", + "atmos.bldep.tmin-u-hxy-u.day.GLB", + "atmos.cl.tavg-al-hxy-u.mon.30S-90S", + "atmos.clc.tavg-al-hxy-u.mon.30S-90S", + "atmos.clc.tavg-al-hxy-u.mon.GLB", + "atmos.clcalipso.tavg-220hPa-hxy-air.mon.30S-90S", + "atmos.clcalipso.tavg-220hPa-hxy-air.mon.GLB", + "atmos.clcalipso.tavg-560hPa-hxy-air.mon.30S-90S", + "atmos.clcalipso.tavg-560hPa-hxy-air.mon.GLB", + "atmos.clcalipso.tavg-840hPa-hxy-air.mon.30S-90S", + "atmos.clcalipso.tavg-840hPa-hxy-air.mon.GLB", + "atmos.clcalipso.tavg-h40-hxy-air.mon.30S-90S", + "atmos.cldnci.tavg-u-hxy-cl.mon.GLB", + "atmos.cldncl.tavg-u-hxy-cl.mon.GLB", + "atmos.cldnvi.tavg-u-hxy-u.mon.GLB", + "atmos.cli.tavg-al-hxy-u.mon.30S-90S", + "atmos.clic.tavg-al-hxy-u.mon.30S-90S", + "atmos.clis.tavg-al-hxy-u.mon.30S-90S", + "atmos.clisccp.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clisccp.tavg-p7c-hxy-air.mon.GLB", + "atmos.clivi.tavg-u-hxy-u.mon.30S-90S", + "atmos.clivimodis.tavg-u-hxy-u.mon.30S-90S", + "atmos.clmodis.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clmodis.tavg-p7c-hxy-air.mon.GLB", + "atmos.clmodisice.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clmodisice.tavg-p7c-hxy-air.mon.GLB", + "atmos.clmodisiceReff.tavg-u-hxy-u.mon.GLB", + "atmos.clmodisliquid.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clmodisliquid.tavg-p7c-hxy-air.mon.GLB", + "atmos.clmodisliquidReff.tavg-u-hxy-u.mon.GLB", + "atmos.cls.tavg-al-hxy-u.mon.30S-90S", + "atmos.clt.tavg-u-hxy-u.mon.30S-90S", + "atmos.cltc.tavg-u-hxy-u.mon.GLB", + "atmos.cltcalipso.tavg-u-hxy-u.mon.30S-90S", + "atmos.cltisccp.tavg-u-hxy-u.mon.30S-90S", + "atmos.cltmodis.tavg-u-hxy-u.mon.30S-90S", + "atmos.clw.tavg-al-hxy-u.mon.30S-90S", + "atmos.clwc.tavg-al-hxy-u.mon.30S-90S", + "atmos.clws.tavg-al-hxy-u.mon.30S-90S", + "atmos.clwvi.tavg-u-hxy-u.mon.30S-90S", + "atmos.clwvimodis.tavg-u-hxy-u.mon.30S-90S", + "atmos.co2.tavg-al-hxy-u.mon.GLB", + "atmos.co2.tavg-p19-hxy-air.mon.GLB", + "atmos.co23D.tavg-al-hxy-u.mon.GLB", + "atmos.co2mass.tavg-u-hm-u.mon.GLB", + "atmos.dmc.tavg-alh-hxy-u.mon.30S-90S", + "atmos.edt.tavg-al-hxy-u.mon.30S-90S", + "atmos.evspsbl.tavg-u-hxy-lnd.day.GLB", + "atmos.evu.tavg-al-hxy-u.mon.30S-90S", + "atmos.fco2antt.tavg-u-hxy-u.mon.GLB", + "atmos.fco2fos.tavg-u-hxy-u.mon.GLB", + "atmos.fco2nat.tavg-u-hxy-u.mon.GLB", + "atmos.hfls.tavg-u-hxy-u.mon.30S-90S", + "atmos.hfss.tavg-u-hxy-u.mon.30S-90S", + "atmos.hur.tavg-al-hxy-u.mon.30S-90S", + "atmos.hur.tavg-al-hxy-u.mon.GLB", + "atmos.hur.tavg-p19-hxy-air.mon.30S-90S", + "atmos.hurs.tavg-h2m-hxy-u.mon.30S-90S", + "atmos.hurs.tmax-h2m-hxy-u.day.GLB", + "atmos.hurs.tmin-h2m-hxy-u.day.GLB", + "atmos.hus.tavg-al-hxy-u.mon.30S-90S", + "atmos.hus.tavg-al-hxy-u.mon.GLB", + "atmos.hus.tavg-p19-hxy-u.mon.30S-90S", + "atmos.hus.tpt-al-hxy-u.6hr.GLB", + "atmos.hus.tpt-p7h-hxy-air.6hr.GLB", + "atmos.huss.tavg-h2m-hxy-u.mon.30S-90S", + "atmos.huss.tpt-h2m-hxy-u.1hr.GLB", + "atmos.mc.tavg-alh-hxy-u.mon.GLB", + "atmos.mcd.tavg-alh-hxy-u.mon.30S-90S", + "atmos.mcu.tavg-alh-hxy-u.mon.30S-90S", + "atmos.mcu.tavg-alh-hxy-u.mon.GLB", + "atmos.pctisccp.tavg-u-hxy-cl.mon.30S-90S", + "atmos.pfull.tavg-al-hxy-u.mon.GLB", + "atmos.pfull.tclm-al-hxy-u.mon.30S-90S", + "atmos.phalf.tavg-alh-hxy-u.mon.GLB", + "atmos.pr.tavg-u-hxy-u.mon.30S-90S", + "atmos.pr.tmax-u-hxy-u.day.GLB", + "atmos.pr.tpt-u-hxy-u.6hr.GLB", + "atmos.prc.tavg-u-hxy-u.mon.30S-90S", + "atmos.prra.tavg-u-hxy-lnd.day.GLB", + "atmos.prra.tavg-u-hxy-u.mon.30S-90S", + "atmos.prsn.tavg-u-hxy-u.3hr.GLB", + "atmos.prsn.tavg-u-hxy-u.day.GLB", + "atmos.prsn.tavg-u-hxy-u.mon.30S-90S", + "atmos.prw.tavg-u-hxy-u.day.GLB", + "atmos.prw.tavg-u-hxy-u.mon.30S-90S", + "atmos.ps.tavg-u-hxy-u.1hr.GLB", + "atmos.ps.tavg-u-hxy-u.mon.30S-90S", + "atmos.ps.tpt-u-hxy-u.6hr.GLB", + "atmos.psl.tavg-u-hxy-u.mon.30S-90S", + "atmos.psl.tpt-u-hxy-u.1hr.GLB", + "atmos.psl.tpt-u-hxy-u.6hr.GLB", + "atmos.ptp.tavg-u-hxy-u.mon.GLB", + "atmos.reffcclwtop.tavg-u-hxy-ccl.mon.GLB", + "atmos.reffclic.tavg-al-hxy-ccl.mon.30S-90S", + "atmos.reffclis.tavg-al-hxy-scl.mon.30S-90S", + "atmos.reffclwc.tavg-al-hxy-ccl.mon.30S-90S", + "atmos.reffclws.tavg-al-hxy-scl.mon.30S-90S", + "atmos.reffsclwtop.tavg-u-hxy-scl.mon.GLB", + "atmos.rld.tavg-alh-hxy-u.mon.GLB", + "atmos.rld4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rldcs.tavg-alh-hxy-u.mon.GLB", + "atmos.rldcs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rlds.tavg-u-hxy-u.1hr.GLB", + "atmos.rlds.tavg-u-hxy-u.day.GLB", + "atmos.rlds.tavg-u-hxy-u.mon.30S-90S", + "atmos.rldscs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rlu.tavg-alh-hxy-u.mon.GLB", + "atmos.rlu4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rlucs.tavg-alh-hxy-u.mon.GLB", + "atmos.rlucs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rlus.tavg-u-hxy-u.day.GLB", + "atmos.rlus.tavg-u-hxy-u.mon.30S-90S", + "atmos.rlut.tavg-u-hxy-u.mon.30S-90S", + "atmos.rlut4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rlutcs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rlutcs4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rsd.tavg-alh-hxy-u.mon.GLB", + "atmos.rsd4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsdcs.tavg-alh-hxy-u.mon.GLB", + "atmos.rsdcs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsds.tavg-u-hxy-u.1hr.GLB", + "atmos.rsds.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsdscs.tavg-u-hxy-u.day.GLB", + "atmos.rsdscs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsdt.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsu.tavg-alh-hxy-u.mon.GLB", + "atmos.rsu4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsucs.tavg-alh-hxy-u.mon.GLB", + "atmos.rsucs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsus.tavg-u-hxy-u.day.GLB", + "atmos.rsus.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsuscs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsut.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsut4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rsutcs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsutcs4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rtmt.tavg-u-hxy-u.mon.GLB", + "atmos.rv850.tpt-850hPa-hxy-air.6hr.GLB", + "atmos.scldncl.tavg-u-hxy-scl.mon.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.mon.30S-90S", + "atmos.ta.tavg-al-hxy-u.mon.30S-90S", + "atmos.ta.tavg-al-hxy-u.mon.GLB", + "atmos.ta.tavg-p19-hxy-air.mon.30S-90S", + "atmos.ta.tavg-p39-hy-air.mon.GLB", + "atmos.ta.tpt-al-hxy-u.6hr.GLB", + "atmos.ta.tpt-p7h-hxy-air.6hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.1hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.mon.30S-90S", + "atmos.tas.tmaxavg-h2m-hxy-u.mon.30S-90S", + "atmos.tas.tminavg-h2m-hxy-u.mon.30S-90S", + "atmos.tnt.tavg-al-hxy-u.mon.GLB", + "atmos.tntrl.tavg-al-hxy-u.mon.GLB", + "atmos.tntrs.tavg-al-hxy-u.mon.GLB", + "atmos.ts.tavg-u-hxy-u.mon.30S-90S", + "atmos.ts.tpt-u-hxy-u.6hr.GLB", + "atmos.ua.tavg-al-hxy-u.mon.GLB", + "atmos.ua.tavg-p19-hxy-air.mon.30S-90S", + "atmos.ua.tavg-p39-hy-air.mon.GLB", + "atmos.ua.tpt-al-hxy-u.6hr.GLB", + "atmos.ua.tpt-p7h-hxy-air.6hr.GLB", + "atmos.uas.tavg-h10m-hxy-u.mon.30S-90S", + "atmos.uas.tpt-h10m-hxy-u.1hr.GLB", + "atmos.va.tavg-al-hxy-u.mon.GLB", + "atmos.va.tavg-p19-hxy-air.mon.30S-90S", + "atmos.va.tavg-p39-hy-air.mon.GLB", + "atmos.va.tpt-al-hxy-u.6hr.GLB", + "atmos.va.tpt-p7h-hxy-air.6hr.GLB", + "atmos.vas.tavg-h10m-hxy-u.mon.30S-90S", + "atmos.vas.tpt-h10m-hxy-u.1hr.GLB", + "atmos.wap.tavg-p19-hxy-air.mon.30S-90S", + "atmos.zg.tavg-1000hPa-hxy-air.day.GLB", + "atmos.zg.tavg-500hPa-hxy-air.day.GLB", + "atmos.zg.tavg-al-hxy-u.mon.GLB", + "atmos.zg.tavg-p19-hxy-air.mon.30S-90S", + "atmos.zg.tavg-p39-hy-air.mon.GLB", + "atmos.zg.tpt-500hPa-hxy-air.6hr.GLB", + "atmos.zg.tpt-al-hxy-u.6hr.GLB", + "atmos.zg.tpt-p7h-hxy-air.6hr.GLB", + "atmos.ztp.tavg-u-hxy-u.mon.GLB", + "atmosChem.c2h4.tavg-al-hxy-u.mon.GLB", + "atmosChem.c2h5oh.tavg-al-hxy-u.mon.GLB", + "atmosChem.c4h10.tavg-al-hxy-u.mon.GLB", + "atmosChem.cfc11.tavg-u-hm-u.mon.GLB", + "atmosChem.cfc113.tavg-u-hm-u.mon.GLB", + "atmosChem.cfc12.tavg-u-hm-u.mon.GLB", + "atmosChem.ch3oh.tavg-al-hxy-u.mon.GLB", + "atmosChem.ch4.tavg-al-hxy-u.mon.GLB", + "atmosChem.ch4.tavg-p39-hy-air.mon.GLB", + "atmosChem.ch4losssoil.tavg-u-hxy-u.mon.GLB", + "atmosChem.ch4ref.ti-al-hxy-u.fx.GLB", + "atmosChem.chegph2oo1d.tavg-al-hxy-u.mon.GLB", + "atmosChem.chepnh4.tavg-al-hxy-u.mon.GLB", + "atmosChem.chepno3.tavg-al-hxy-u.mon.GLB", + "atmosChem.dms.tavg-al-hxy-u.mon.30S-90S", + "atmosChem.dms.tavg-al-hxy-u.mon.GLB", + "atmosChem.do3chm.tavg-al-hxy-u.mon.GLB", + "atmosChem.dryh2.tavg-u-hxy-u.mon.GLB", + "atmosChem.dryhno3.tavg-u-hxy-u.mon.GLB", + "atmosChem.drynh3.tavg-u-hxy-u.mon.GLB", + "atmosChem.drynh4.tavg-u-hxy-u.mon.GLB", + "atmosChem.drynoy.tavg-u-hxy-u.mon.GLB", + "atmosChem.e90inst.tpt-al-hxy-u.mon.GLB", + "atmosChem.emiach4.tavg-u-hxy-u.mon.GLB", + "atmosChem.emiavnox.tavg-al-hxy-u.mon.GLB", + "atmosChem.emic2h4.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic2h5oh.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic2h6.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic3h6.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic3h8.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic4h10.tavg-u-hxy-u.mon.GLB", + "atmosChem.emich3oh.tavg-u-hxy-u.mon.GLB", + "atmosChem.emich4.tavg-u-hxy-u.mon.GLB", + "atmosChem.emih2.tavg-u-hxy-u.mon.GLB", + "atmosChem.emilkch4.tavg-u-hxy-u.mon.GLB", + "atmosChem.h2.tavg-al-hxy-u.mon.GLB", + "atmosChem.h2loss.tavg-al-hxy-u.mon.GLB", + "atmosChem.h2prod.tavg-al-hxy-u.mon.GLB", + "atmosChem.hcfc22.tavg-u-hm-u.mon.GLB", + "atmosChem.meanage.tavg-al-hxy-u.mon.GLB", + "atmosChem.meanage.tavg-p39-hy-air.mon.GLB", + "atmosChem.n2o.tavg-al-hxy-u.mon.GLB", + "atmosChem.n2o.tavg-p39-hy-air.mon.GLB", + "atmosChem.o3.tavg-al-hxy-u.mon.GLB", + "atmosChem.o3.tavg-p19-hxy-air.mon.GLB", + "atmosChem.o3.tavg-p39-hy-air.mon.GLB", + "atmosChem.o3.tpt-al-hxy-u.mon.GLB", + "atmosChem.o3ref.tclm-al-hxy-u.fx.GLB", + "atmosChem.o3ref.ti-al-hxy-u.fx.GLB", + "atmosChem.o3ste.tavg-al-hxy-u.mon.GLB", + "atmosChem.rlutch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rlutcsch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rlutcso3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rluto3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsutch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsutcsch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsutcso3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsuto3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.stratch4loss.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropch4loss.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropch4lossoh.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropdo3chm.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropo3ste.tavg-al-hxy-u.mon.GLB", + "atmosChem.wethno3.tavg-al-hxy-u.mon.GLB", + "atmosChem.wetnh3.tavg-u-hxy-u.mon.GLB", + "atmosChem.wetnh4.tavg-u-hxy-u.mon.GLB", + "atmosChem.wetno3.tavg-al-hxy-u.mon.GLB", + "atmosChem.wetnoy.tavg-u-hxy-u.mon.GLB", + "land.albc.tavg-u-hxy-veg.mon.GLB", + "land.areacellr.ti-u-hxy-u.fx.GLB", + "land.baresoilFrac.tavg-u-hxy-u.mon.GLB", + "land.burntFractionAll.tavg-u-hxy-u.mon.GLB", + "land.cGeologicStorage.tavg-u-hxy-u.mon.GLB", + "land.cLand.tavg-u-hxy-lnd.mon.GLB", + "land.cLitter.tavg-u-hxy-lnd.mon.GLB", + "land.cnc.tavg-u-hxy-u.mon.GLB", + "land.cProduct.tavg-u-hxy-lnd.mon.GLB", + "land.cropFrac.tavg-u-hxy-u.mon.GLB", + "land.cSoil.tavg-d100cm-hxy-lnd.mon.GLB", + "land.cSoil.tavg-u-hxy-lnd.mon.GLB", + "land.cVeg.tavg-u-hxy-lnd.mon.GLB", + "land.dcw.tavg-u-hxy-lnd.day.GLB", + "land.dslw.tavg-u-hxy-lnd.day.GLB", + "land.evspsblpot.tavg-u-hxy-lnd.day.GLB", + "land.evspsblpot.tavg-u-hxy-lnd.mon.GLB", + "land.fAnthDisturb.tavg-u-hxy-lnd.mon.GLB", + "land.fBNF.tavg-u-hxy-lnd.mon.GLB", + "land.fCLandToOcean.tavg-u-hxy-lnd.mon.GLB", + "land.fDeforestToAtmos.tavg-u-hxy-lnd.mon.GLB", + "land.fDeforestToProduct.tavg-u-hxy-lnd.mon.GLB", + "land.fFire.tavg-u-hxy-lnd.mon.GLB", + "land.fFireAll.tavg-u-hxy-lnd.mon.GLB", + "land.fFireNat.tavg-u-hxy-lnd.mon.GLB", + "land.fHarvestToAtmos.tavg-u-hxy-lnd.mon.GLB", + "land.fHarvestToGeologicStorage.tavg-u-hxy-lnd.mon.GLB", + "land.fHarvestToProduct.tavg-u-hxy-lnd.mon.GLB", + "land.fLitterSoil.tavg-u-hxy-lnd.mon.GLB", + "land.fN2O.tavg-u-hxy-lnd.mon.GLB", + "land.fNAnthDisturb.tavg-u-hxy-lnd.mon.GLB", + "land.fNdep.tavg-u-hxy-lnd.mon.GLB", + "land.fNfert.tavg-u-hxy-lnd.mon.GLB", + "land.fNLandToOcean.tavg-u-hxy-lnd.mon.GLB", + "land.fNLitterSoil.tavg-u-hxy-lnd.mon.GLB", + "land.fNloss.tavg-u-hxy-lnd.mon.GLB", + "land.fNnetmin.tavg-u-hxy-lnd.mon.GLB", + "land.fNOx.tavg-u-hxy-lnd.mon.GLB", + "land.fNProduct.tavg-u-hxy-lnd.mon.GLB", + "land.fNup.tavg-u-hxy-lnd.mon.GLB", + "land.fNVegLitter.tavg-u-hxy-lnd.mon.GLB", + "land.fNVegSoil.tavg-u-hxy-lnd.mon.GLB", + "land.fProductDecomp.tavg-u-hxy-lnd.mon.GLB", + "land.fVegLitter.tavg-u-hxy-lnd.mon.GLB", + "land.fVegSoil.tavg-u-hxy-lnd.mon.GLB", + "land.gpp.tavg-u-hxy-lnd.mon.GLB", + "land.grassFrac.tavg-u-hxy-u.mon.GLB", + "land.landCoverFrac.tavg-u-hxy-u.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.day.GLB", + "land.mrrob.tavg-u-hxy-lnd.day.GLB", + "land.mrros.tavg-u-hxy-lnd.day.GLB", + "land.mrsfl.tavg-sl-hxy-lnd.day.GLB", + "land.mrsfl.tavg-sl-hxy-lnd.mon.GLB", + "land.mrsll.tavg-sl-hxy-lnd.day.GLB", + "land.mrsll.tavg-sl-hxy-lnd.mon.GLB", + "land.mrso.tavg-u-hxy-lnd.day.GLB", + "land.mrsol.tavg-d10cm-hxy-lnd.day.GLB", + "land.mrsol.tavg-sl-hxy-lnd.day.GLB", + "land.mrsol.tavg-sl-hxy-lnd.mon.GLB", + "land.mrsow.tavg-u-hxy-lnd.day.GLB", + "land.mrtws.tavg-u-hxy-lnd.day.GLB", + "land.mrtws.tavg-u-hxy-lnd.mon.GLB", + "land.nbp.tavg-u-hxy-lnd.mon.GLB", + "land.nep.tavg-u-hxy-lnd.mon.GLB", + "land.nLand.tavg-u-hxy-lnd.mon.GLB", + "land.nLitter.tavg-u-hxy-lnd.mon.GLB", + "land.nMineral.tavg-u-hxy-lnd.mon.GLB", + "land.npp.tavg-u-hxy-lnd.mon.GLB", + "land.nProduct.tavg-u-hxy-lnd.mon.GLB", + "land.nSoil.tavg-u-hxy-lnd.mon.GLB", + "land.nVeg.tavg-u-hxy-lnd.mon.GLB", + "land.pastureFrac.tavg-u-hxy-u.mon.GLB", + "land.prveg.tavg-u-hxy-lnd.mon.GLB", + "land.ra.tavg-u-hxy-lnd.mon.GLB", + "land.residualFrac.tavg-u-hxy-u.mon.GLB", + "land.rh.tavg-u-hxy-lnd.mon.GLB", + "land.rivi.tavg-u-hxy-lnd.day.GLB", + "land.rivo.tavg-u-hxy-lnd.day.GLB", + "land.rsds.tavg-u-hxy-sn.mon.GLB", + "land.rsus.tavg-u-hxy-sn.mon.GLB", + "land.shrubFrac.tavg-u-hxy-u.mon.GLB", + "land.tas.tavg-u-hxy-u.1hr.GLB", + "land.tran.tavg-u-hxy-lnd.mon.GLB", + "land.treeFrac.tavg-u-hxy-u.mon.GLB", + "land.tsl.tavg-sl-hxy-lnd.mon.GLB", + "land.tslsi.tavg-u-hxy-u.day.GLB", + "land.vegFrac.tavg-u-hxy-u.mon.GLB", + "land.vegHeight.tavg-u-hxy-veg.mon.GLB", + "land.wetlandCH4.tavg-u-hxy-lnd.mon.GLB", + "land.wtd.tavg-u-hxy-lnd.day.GLB", + "landIce.snd.tavg-u-hxy-lnd.mon.GLB", + "landIce.snw.tavg-u-hxy-lnd.day.GLB", + "ocean.absscint.tavg-op4-hxy-sea.mon.GLB", + "ocean.agessc.tavg-ol-hxy-sea.mon.GLB", + "ocean.bigthetao.tavg-ol-hm-sea.mon.GLB", + "ocean.bigthetao.tavg-ol-hxy-sea.dec.GLB", + "ocean.bigthetao.tavg-op20bar-hxy-sea.day.GLB", + "ocean.chcint.tavg-op4-hxy-sea.mon.GLB", + "ocean.ficeberg.tavg-ol-hxy-sea.mon.GLB", + "ocean.friver.tavg-u-hxy-sea.mon.GLB", + "ocean.hfbasin.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpmadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpmdiff.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpsmadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfds.tavg-u-hxy-sea.mon.30S-90S", + "ocean.hfx.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfx.tavg-u-hxy-sea.day.GLB", + "ocean.hfx.tavg-u-hxy-sea.mon.GLB", + "ocean.hfy.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfy.tavg-u-hxy-sea.day.GLB", + "ocean.hfy.tavg-u-hxy-sea.mon.GLB", + "ocean.htovgyre.tavg-u-hyb-sea.mon.GLB", + "ocean.htovovrt.tavg-u-hyb-sea.mon.GLB", + "ocean.masscello.tavg-ol-hxy-sea.dec.GLB", + "ocean.masso.tavg-u-hm-sea.dec.GLB", + "ocean.masso.tavg-u-hm-sea.mon.GLB", + "ocean.mlotst.tavg-u-hxy-sea.day.GLB", + "ocean.mlotst.tavg-u-hxy-sea.mon.30S-90S", + "ocean.mlotst.tmax-u-hxy-sea.mon.GLB", + "ocean.mlotst.tmin-u-hxy-sea.mon.GLB", + "ocean.mpw.tavg-u-hxy-sea.mon.GLB", + "ocean.mpw.tpt-u-hxy-sea.3hr.GLB", + "ocean.mpwswell.tavg-u-hxy-sea.mon.GLB", + "ocean.mpwswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.mpwwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.mpwwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.msftbarot.tavg-u-hxy-sea.mon.GLB", + "ocean.msftm.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftm.tavg-rho-hyb-sea.mon.GLB", + "ocean.msfty.tavg-ol-ht-sea.mon.GLB", + "ocean.msfty.tavg-rho-ht-sea.mon.GLB", + "ocean.obvfsq.tavg-ol-hxy-sea.mon.GLB", + "ocean.pbo.tavg-u-hxy-sea.mon.GLB", + "ocean.pfscint.tavg-op4-hxy-sea.mon.GLB", + "ocean.phcint.tavg-op4-hxy-sea.mon.GLB", + "ocean.pso.tavg-u-hxy-sea.mon.GLB", + "ocean.scint.tavg-op4-hxy-sea.mon.GLB", + "ocean.sduo.tavg-u-hxy-sea.mon.GLB", + "ocean.sduo.tpt-u-hxy-sea.3hr.GLB", + "ocean.sdvo.tavg-u-hxy-sea.mon.GLB", + "ocean.sdvo.tpt-u-hxy-sea.3hr.GLB", + "ocean.sfx.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfx.tavg-u-hxy-sea.mon.GLB", + "ocean.sfy.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfy.tavg-u-hxy-sea.mon.GLB", + "ocean.sltbasin.tavg-u-hyb-sea.mon.GLB", + "ocean.sltovgyre.tavg-u-hyb-sea.mon.GLB", + "ocean.sltovovrt.tavg-u-hyb-sea.mon.GLB", + "ocean.so.tavg-ol-hm-sea.mon.GLB", + "ocean.so.tavg-ol-hxy-sea.dec.GLB", + "ocean.so.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.sob.tavg-u-hxy-sea.mon.GLB", + "ocean.sos.tavg-u-hm-sea.mon.30S-90S", + "ocean.sos.tavg-u-hm-sea.mon.GLB", + "ocean.swh.tavg-u-hxy-sea.mon.GLB", + "ocean.swh.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhmax.tmax-u-hxy-sea.mon.GLB", + "ocean.swhmax.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhswell.tavg-u-hxy-sea.mon.GLB", + "ocean.swhswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.swhwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.tauuo.tavg-u-hxy-sea.3hr.GLB", + "ocean.tauuo.tavg-u-hxy-sea.dec.GLB", + "ocean.tauvo.tavg-u-hxy-sea.3hr.GLB", + "ocean.tauvo.tavg-u-hxy-sea.dec.GLB", + "ocean.thetao.tavg-ol-hm-sea.mon.GLB", + "ocean.thetao.tavg-ol-hxy-sea.dec.GLB", + "ocean.thetao.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.thetao.tavg-op20bar-hxy-sea.day.GLB", + "ocean.thkcello.tavg-ol-hxy-sea.dec.GLB", + "ocean.tob.tavg-u-hxy-sea.mon.GLB", + "ocean.tos.tavg-u-hm-sea.mon.GLB", + "ocean.tos.tavg-u-hxy-sea.mon.30S-90S", + "ocean.tos.tpt-u-hxy-sea.3hr.GLB", + "ocean.tossq.tavg-u-hxy-sea.day.GLB", + "ocean.umo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.uo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.uos.tavg-u-hxy-sea.day.GLB", + "ocean.vmo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.vo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.volcello.tavg-ol-hxy-sea.dec.GLB", + "ocean.volcello.tavg-ol-hxy-sea.mon.GLB", + "ocean.volcello.tavg-ol-hxy-sea.yr.GLB", + "ocean.volcello.ti-ol-hxy-sea.fx.GLB", + "ocean.volo.tavg-u-hm-sea.dec.GLB", + "ocean.volo.tavg-u-hm-sea.mon.GLB", + "ocean.vos.tavg-u-hxy-sea.day.GLB", + "ocean.wdir.tavg-u-hxy-sea.mon.GLB", + "ocean.wdir.tpt-u-hxy-sea.3hr.GLB", + "ocean.wdirswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wdirswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wdirwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wdirwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.wfcorr.tavg-u-hxy-sea.mon.GLB", + "ocean.wfo.tavg-u-hxy-sea.mon.GLB", + "ocean.wmo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.wo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.wpdir.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdir.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpdirswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdirswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpdirwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdirwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpp.tavg-u-hxy-sea.mon.GLB", + "ocean.wpp.tpt-u-hxy-sea.3hr.GLB", + "ocean.wppswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wppswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wppwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wppwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.zos.tavg-u-hxy-sea.mon.30S-90S", + "ocean.zossq.tavg-u-hxy-sea.mon.GLB", + "ocean.zostoga.tavg-u-hm-sea.day.GLB", + "ocnBgchem.bacc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.calc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chl.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chl.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chlcalc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chldiat.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chldiat.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chldiaz.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chldiaz.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chlmisc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chlmisc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chlpico.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chlpico.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.detoc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dfe.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.dfe.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissic.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.dissic.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissoc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dmso.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.expc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.expcalc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.fgco2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fsfe.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fsn.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.graz.tavg-ol-hxy-sea.mon.30S-90S", + "ocnBgchem.icfriver.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intdic.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intdoc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intparag.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbfe.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbn.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbp.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbsi.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpcalcite.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpn2.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpoc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpp.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpp.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppcalc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppdiat.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppdiaz.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppmisc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppnitrate.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpppico.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.nh4.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.nh4.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.no3.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.no3.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.o2.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.ocfriver.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.ph.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.ph.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phyc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phyc.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.phyc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phycalc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phycalc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phydiat.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phydiat.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phydiaz.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phydiaz.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phymisc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phymisc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phypico.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phypico.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.po4.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.pp.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.si.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.spco2.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.spco2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.talk.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zmeso.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zmeso.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zmicro.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zmicro.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zmisc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zmisc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zooc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zooc.tavg-ol-hxy-sea.mon.GLB", + "seaIce.evspsbl.tavg-u-hxy-si.mon.GLB", + "seaIce.prra.tavg-u-hxy-si.mon.GLB", + "seaIce.prsn.tavg-u-hxy-si.mon.GLB", + "seaIce.rlds.tavg-u-hxy-si.mon.GLB", + "seaIce.rlus.tavg-u-hxy-si.mon.GLB", + "seaIce.rsds.tavg-u-hxy-si.day.GLB", + "seaIce.rsds.tavg-u-hxy-si.mon.GLB", + "seaIce.rsus.tavg-u-hxy-si.day.GLB", + "seaIce.rsus.tavg-u-hxy-si.mon.GLB", + "seaIce.sbl.tavg-u-hxy-si.mon.GLB", + "seaIce.siage.tavg-u-hxy-si.day.GLB", + "seaIce.siage.tavg-u-hxy-si.mon.30S-90S", + "seaIce.siarea.tavg-u-hm-u.mon.NH", + "seaIce.siarea.tavg-u-hm-u.mon.SH", + "seaIce.siconc.tavg-u-hxy-u.mon.30S-90S", + "seaIce.siconca.tavg-u-hxy-u.day.GLB", + "seaIce.siconca.tavg-u-hxy-u.mon.GLB", + "seaIce.sidconcdyn.tavg-u-hxy-sea.mon.GLB", + "seaIce.sidconcth.tavg-u-hxy-sea.mon.GLB", + "seaIce.sidmassdyn.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthsi.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthwat.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmeltbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmeltlat.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmelttop.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassth.tavg-u-hxy-si.mon.GLB", + "seaIce.sieqthick.tavg-u-hxy-si.mon.GLB", + "seaIce.siextent.tavg-u-hm-u.mon.NH", + "seaIce.siextent.tavg-u-hm-u.mon.SH", + "seaIce.siflcondbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflcondtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sifllattop.tavg-u-hxy-si.mon.GLB", + "seaIce.siflsensbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflsenstop.tavg-u-hxy-si.mon.GLB", + "seaIce.siflswdbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sihc.tavg-u-hxy-sea.mon.GLB", + "seaIce.sisndmassdyn.tavg-u-hxy-si.mon.GLB", + "seaIce.sisndmasssi.tavg-u-hxy-si.mon.GLB", + "seaIce.sisndmasswind.tavg-u-hxy-si.mon.GLB", + "seaIce.sisnhc.tavg-u-hxy-si.mon.GLB", + "seaIce.sisnmass.tavg-u-hm-u.mon.NH", + "seaIce.sisnmass.tavg-u-hm-u.mon.SH", + "seaIce.sispeed.tavg-u-hxy-si.day.GLB", + "seaIce.sispeed.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-si.day.GLB", + "seaIce.sithick.tavg-u-hxy-si.mon.30S-90S", + "seaIce.sitimefrac.tavg-u-hxy-sea.day.GLB", + "seaIce.sitimefrac.tavg-u-hxy-sea.mon.30S-90S", + "seaIce.siu.tavg-u-hxy-si.day.GLB", + "seaIce.siu.tavg-u-hxy-si.mon.30S-90S", + "seaIce.siv.tavg-u-hxy-si.day.GLB", + "seaIce.siv.tavg-u-hxy-si.mon.30S-90S", + "seaIce.sivol.tavg-u-hm-u.mon.NH", + "seaIce.sivol.tavg-u-hm-u.mon.SH", + "seaIce.snc.tavg-u-hxy-si.mon.GLB", + "seaIce.snd.tavg-u-hxy-sn.day.GLB", + "seaIce.snd.tavg-u-hxy-sn.mon.30S-90S", + "seaIce.snm.tavg-u-hxy-si.mon.GLB", + "seaIce.snw.tavg-u-hxy-si.mon.GLB", + "seaIce.ts.tavg-u-hxy-si.day.GLB", + "seaIce.ts.tavg-u-hxy-si.mon.30S-90S" + ], + "Medium": [ + "atmos.noaahi2m.tavg-h2m-hxy-u.day.GLB", + "atmos.noaahi2m.tmax-h2m-hxy-u.day.GLB", + "atmos.rls.tavg-u-hxy-u.day.GLB", + "atmos.rls.tavg-u-hxy-u.mon.GLB", + "atmos.rss.tavg-u-hxy-u.day.GLB", + "atmos.rss.tavg-u-hxy-u.mon.GLB", + "atmos.wbgt.tavg-h2m-hxy-u.day.GLB", + "atmos.wbgt.tmax-h2m-hxy-u.day.GLB", + "land.cLeaf.tavg-u-hxy-lnd.mon.GLB", + "land.cLitterCwd.tavg-u-hxy-lnd.mon.GLB", + "land.cLitterSubSurf.tavg-u-hxy-lnd.mon.GLB", + "land.cLitterSurf.tavg-u-hxy-lnd.mon.GLB", + "land.cOther.tavg-u-hxy-lnd.mon.GLB", + "land.cRoot.tavg-u-hxy-lnd.mon.GLB", + "land.cropFracC3.tavg-u-hxy-u.mon.GLB", + "land.cropFracC4.tavg-u-hxy-u.mon.GLB", + "land.cSoil.tavg-sl-hxy-lnd.mon.GLB", + "land.cSoilPools.tavg-u-hxy-lnd.mon.GLB", + "land.cStem.tavg-u-hxy-lnd.mon.GLB", + "land.cVeg.tavg-u-hxy-ng.mon.GLB", + "land.cVeg.tavg-u-hxy-shb.mon.GLB", + "land.cVeg.tavg-u-hxy-tree.mon.GLB", + "land.fLitterFire.tavg-u-hxy-lnd.mon.GLB", + "land.fNgas.tavg-u-hxy-lnd.mon.GLB", + "land.fNgasFire.tavg-u-hxy-lnd.mon.GLB", + "land.fNgasNonFire.tavg-u-hxy-lnd.mon.GLB", + "land.fNleach.tavg-u-hxy-lnd.mon.GLB", + "land.fVegFire.tavg-u-hxy-lnd.mon.GLB", + "land.fVegLitterMortality.tavg-u-hxy-lnd.mon.GLB", + "land.fVegLitterSenescence.tavg-u-hxy-lnd.mon.GLB", + "land.fVegSoilMortality.tavg-u-hxy-lnd.mon.GLB", + "land.fVegSoilSenescence.tavg-u-hxy-lnd.mon.GLB", + "land.gpp.tavg-u-hxy-ng.mon.GLB", + "land.gpp.tavg-u-hxy-shb.mon.GLB", + "land.gpp.tavg-u-hxy-tree.mon.GLB", + "land.grassFracC3.tavg-u-hxy-u.mon.GLB", + "land.grassFracC4.tavg-u-hxy-u.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.3hr.GLB", + "land.mrros.tavg-u-hxy-lnd.3hr.GLB", + "land.mrsol.tpt-d10cm-hxy-lnd.3hr.GLB", + "land.nLeaf.tavg-u-hxy-lnd.mon.GLB", + "land.nLitterCwd.tavg-u-hxy-lnd.mon.GLB", + "land.nLitterSubSurf.tavg-u-hxy-lnd.mon.GLB", + "land.nLitterSurf.tavg-u-hxy-lnd.mon.GLB", + "land.nMineralNH4.tavg-u-hxy-lnd.mon.GLB", + "land.nMineralNO3.tavg-u-hxy-lnd.mon.GLB", + "land.nOther.tavg-u-hxy-lnd.mon.GLB", + "land.npp.tavg-u-hxy-ng.mon.GLB", + "land.npp.tavg-u-hxy-shb.mon.GLB", + "land.npp.tavg-u-hxy-tree.mon.GLB", + "land.nppLeaf.tavg-u-hxy-lnd.mon.GLB", + "land.nppOther.tavg-u-hxy-lnd.mon.GLB", + "land.nppRoot.tavg-u-hxy-lnd.mon.GLB", + "land.nppStem.tavg-u-hxy-lnd.mon.GLB", + "land.nRoot.tavg-u-hxy-lnd.mon.GLB", + "land.nStem.tavg-u-hxy-lnd.mon.GLB", + "land.pastureFracC3.tavg-u-hxy-u.mon.GLB", + "land.pastureFracC4.tavg-u-hxy-u.mon.GLB", + "land.ra.tavg-u-hxy-ng.mon.GLB", + "land.ra.tavg-u-hxy-shb.mon.GLB", + "land.ra.tavg-u-hxy-tree.mon.GLB", + "land.raLeaf.tavg-u-hxy-lnd.mon.GLB", + "land.raOther.tavg-u-hxy-lnd.mon.GLB", + "land.raRoot.tavg-u-hxy-lnd.mon.GLB", + "land.raStem.tavg-u-hxy-lnd.mon.GLB", + "land.rh.tavg-u-hxy-ng.mon.GLB", + "land.rh.tavg-u-hxy-shb.mon.GLB", + "land.rh.tavg-u-hxy-tree.mon.GLB", + "land.rhLitter.tavg-u-hxy-lnd.mon.GLB", + "land.rhSoil.tavg-u-hxy-lnd.mon.GLB", + "land.treeFracBdlDcd.tavg-u-hxy-u.mon.GLB", + "land.treeFracBdlEvg.tavg-u-hxy-u.mon.GLB", + "land.treeFracNdlDcd.tavg-u-hxy-u.mon.GLB", + "land.treeFracNdlEvg.tavg-u-hxy-u.mon.GLB", + "land.vegHeight.tavg-u-hxy-ng.mon.GLB", + "land.vegHeight.tavg-u-hxy-shb.mon.GLB", + "land.vegHeight.tavg-u-hxy-tree.mon.GLB", + "land.wetlandCH4cons.tavg-u-hxy-lnd.mon.GLB", + "land.wetlandCH4prod.tavg-u-hxy-lnd.mon.GLB", + "land.wetlandFrac.tavg-u-hxy-u.mon.GLB", + "ocean.evspsbl.tavg-u-hxy-ifs.mon.GLB", + "ocean.ficeberg.tavg-u-hxy-sea.mon.GLB", + "ocean.hfacrossline.tavg-u-ht-sea.mon.GLB", + "ocean.hfevapds.tavg-u-hxy-ifs.mon.GLB", + "ocean.hfibthermds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfibthermds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfrainds.tavg-u-hxy-ifs.mon.GLB", + "ocean.hfrunoffds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfrunoffds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfsnthermds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfsnthermds.tavg-u-hxy-sea.mon.GLB", + "ocean.mfo.tavg-u-ht-sea.mon.GLB", + "ocean.sf6.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfacrossline.tavg-u-ht-sea.mon.GLB", + "ocean.sfdsi.tavg-u-hxy-sea.mon.GLB", + "ocean.sfriver.tavg-u-hxy-sea.mon.GLB", + "ocean.siflfwbot.tavg-u-hxy-sea.mon.GLB", + "ocean.so.tavg-ol-hxy-sea.day.GLB", + "ocean.tnkebto.tavg-u-hxy-sea.yr.GLB", + "ocean.vsf.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfcorr.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfevap.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfpr.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfriver.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfsit.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.arag.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.arag.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.calc.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.calc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chl.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.chlcalc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dmso.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.epn.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.epp.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.expc.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.expcalc.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.fgdms.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fric.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.froc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.graz.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.intppcalc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppdiat.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppdiaz.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppmisc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppnitrate.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intpppico.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.o2.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.ph.tavg-op20bar-hxy-sea.day.GLB", + "seaIce.sfdsi.tavg-u-hxy-si.mon.GLB", + "seaIce.siage.tavg-u-hxy-si.mon.GLB", + "seaIce.siarea.tavg-u-hm-u.day.NH", + "seaIce.siarea.tavg-u-hm-u.day.SH", + "seaIce.siareaacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.sicompstren.tavg-u-hxy-si.mon.GLB", + "seaIce.sidivvel.tpt-u-hxy-si.mon.GLB", + "seaIce.sidmasstranx.tavg-u-hxy-u.mon.GLB", + "seaIce.sidmasstrany.tavg-u-hxy-u.mon.GLB", + "seaIce.sidragbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidragtop.tavg-u-hxy-si.mon.GLB", + "seaIce.siextent.tavg-u-hm-u.day.NH", + "seaIce.siextent.tavg-u-hm-u.day.SH", + "seaIce.sifb.tavg-u-hxy-si.mon.GLB", + "seaIce.siflfwbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflfwdrain.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcecoriolx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcecorioly.tavg-u-hxy-si.mon.GLB", + "seaIce.siforceintstrx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforceintstry.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcetiltx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcetilty.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdconc.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdsnconc.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdsnthick.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdthick.tavg-u-hxy-si.mon.GLB", + "seaIce.simassacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.simpconc.tavg-u-hxy-si.mon.GLB", + "seaIce.simpeffconc.tavg-u-hxy-si.mon.GLB", + "seaIce.simprefrozen.tavg-u-hxy-simp.mon.GLB", + "seaIce.simpthick.tavg-u-hxy-simp.mon.GLB", + "seaIce.sirdgconc.tavg-u-hxy-si.mon.GLB", + "seaIce.sisali.tavg-u-hxy-si.mon.GLB", + "seaIce.sisaltmass.tavg-u-hxy-si.mon.GLB", + "seaIce.sishearvel.tpt-u-hxy-si.mon.GLB", + "seaIce.sisnmass.tavg-u-hm-u.day.NH", + "seaIce.sisnmass.tavg-u-hm-u.day.SH", + "seaIce.sisnmassacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.sistressave.tpt-u-hxy-si.mon.GLB", + "seaIce.sistressmax.tpt-u-hxy-si.mon.GLB", + "seaIce.sistrxdtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sistrxubot.tavg-u-hxy-si.mon.GLB", + "seaIce.sistrydtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sistryubot.tavg-u-hxy-si.mon.GLB", + "seaIce.sitempbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sitempsnic.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-sir.mon.GLB", + "seaIce.sivol.tavg-u-hm-u.day.NH", + "seaIce.sivol.tavg-u-hm-u.day.SH" + ], + "Low": [ + "aerosol.sfpm1.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.sfpm10.tavg-h2m-hxy-u.1hr.GLB", + "atmos.hurs.tavg-h2m-hxy-u.1hr.GLB", + "land.c13Land.tavg-u-hxy-lnd.mon.GLB", + "land.c13Litter.tavg-u-hxy-lnd.mon.GLB", + "land.c13Soil.tavg-u-hxy-lnd.mon.GLB", + "land.c13Veg.tavg-u-hxy-lnd.mon.GLB", + "land.c14Land.tavg-u-hxy-lnd.mon.GLB", + "land.c14Litter.tavg-u-hxy-lnd.mon.GLB", + "land.c14Soil.tavg-u-hxy-lnd.mon.GLB", + "land.c14Veg.tavg-u-hxy-lnd.mon.GLB", + "land.gppc13.tavg-u-hxy-lnd.mon.GLB", + "land.gppc14.tavg-u-hxy-lnd.mon.GLB", + "land.netAtmosLandC13Flux.tavg-u-hxy-lnd.mon.GLB", + "land.netAtmosLandC14Flux.tavg-u-hxy-lnd.mon.GLB", + "land.rac13.tavg-u-hxy-lnd.mon.GLB", + "land.rac14.tavg-u-hxy-lnd.mon.GLB", + "land.rhc13.tavg-u-hxy-lnd.mon.GLB", + "land.rhc14.tavg-u-hxy-lnd.mon.GLB", + "ocean.difmxybo.tavg-ol-hxy-sea.yr.GLB", + "ocean.difmxylo.tavg-ol-hxy-sea.yr.GLB", + "ocean.diftrblo.tavg-ol-hxy-sea.yr.GLB", + "ocean.diftrelo.tavg-ol-hxy-sea.yr.GLB", + "ocean.difvho.tavg-ol-hxy-sea.yr.GLB", + "ocean.difvso.tavg-ol-hxy-sea.yr.GLB", + "ocean.dispkexyfo.tavg-u-hxy-sea.yr.GLB", + "ocean.dxto.ti-u-hxy-u.fx.GLB", + "ocean.dxuo.ti-u-hxy-u.fx.GLB", + "ocean.dxvo.ti-u-hxy-u.fx.GLB", + "ocean.dyto.ti-u-hxy-u.fx.GLB", + "ocean.dyuo.ti-u-hxy-u.fx.GLB", + "ocean.dyvo.ti-u-hxy-u.fx.GLB", + "ocean.mlotstsq.tavg-u-hxy-sea.mon.GLB", + "ocean.msftmmpa.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftmmpa.tavg-rho-hyb-sea.mon.GLB", + "ocean.msftmsmpa.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftypa.tavg-ol-ht-sea.mon.GLB", + "ocean.msftypa.tavg-rho-ht-sea.mon.GLB", + "ocean.ocontempdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontempmint.tavg-u-hxy-sea.yr.GLB", + "ocean.ocontemppadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemppmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemppsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemprmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemptend.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottempdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottempmint.tavg-u-hxy-sea.yr.GLB", + "ocean.opottemppadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemppmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemppsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemprmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemptend.tavg-ol-hxy-sea.dec.GLB", + "ocean.osaltdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpsmadvect.tavg-ol-hxy-sea.mon.GLB", + "ocean.osaltpsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltrmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osalttend.tavg-ol-hxy-sea.yr.GLB", + "ocean.rsdoabsorb.tavg-ol-hxy-sea.yr.GLB", + "ocean.somint.tavg-u-hxy-sea.yr.GLB", + "ocean.sossq.tavg-u-hxy-sea.mon.GLB", + "ocean.thkcelluo.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcellvo.tavg-ol-hxy-sea.mon.GLB", + "ocean.tnpeo.tavg-u-hxy-sea.yr.GLB", + "ocean.tossq.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.dissi13c.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.dissi13c.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissi14c.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissi14cabio.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.dissi14cabio.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.fg13co2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fg14co2abio.tavg-u-hxy-sea.mon.GLB" + ] + }, + "piControl": { + "Core": [ + "atmos.areacella.ti-u-hxy-u.fx.GLB", + "atmos.cl.tavg-al-hxy-u.mon.GLB", + "atmos.cli.tavg-al-hxy-u.mon.GLB", + "atmos.clivi.tavg-u-hxy-u.mon.GLB", + "atmos.clt.tavg-u-hxy-u.day.GLB", + "atmos.clt.tavg-u-hxy-u.mon.GLB", + "atmos.clw.tavg-al-hxy-u.mon.GLB", + "atmos.clwvi.tavg-u-hxy-u.mon.GLB", + "atmos.evspsbl.tavg-u-hxy-u.mon.GLB", + "atmos.hfls.tavg-u-hxy-u.mon.GLB", + "atmos.hfss.tavg-u-hxy-u.mon.GLB", + "atmos.hur.tavg-p19-hxy-air.mon.GLB", + "atmos.hur.tavg-p19-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.6hr.GLB", + "atmos.hurs.tavg-h2m-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.mon.GLB", + "atmos.hus.tavg-p19-hxy-u.day.GLB", + "atmos.hus.tavg-p19-hxy-u.mon.GLB", + "atmos.huss.tavg-h2m-hxy-u.day.GLB", + "atmos.huss.tavg-h2m-hxy-u.mon.GLB", + "atmos.huss.tpt-h2m-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.1hr.GLB", + "atmos.pr.tavg-u-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.day.GLB", + "atmos.pr.tavg-u-hxy-u.mon.GLB", + "atmos.prc.tavg-u-hxy-u.mon.GLB", + "atmos.prsn.tavg-u-hxy-u.mon.GLB", + "atmos.prw.tavg-u-hxy-u.mon.GLB", + "atmos.ps.tavg-u-hxy-u.day.GLB", + "atmos.ps.tavg-u-hxy-u.mon.GLB", + "atmos.psl.tavg-u-hxy-u.day.GLB", + "atmos.psl.tavg-u-hxy-u.mon.GLB", + "atmos.rlds.tavg-u-hxy-u.mon.GLB", + "atmos.rldscs.tavg-u-hxy-u.mon.GLB", + "atmos.rlus.tavg-u-hxy-u.mon.GLB", + "atmos.rluscs.tavg-u-hxy-u.mon.GLB", + "atmos.rlut.tavg-u-hxy-u.mon.GLB", + "atmos.rlutcs.tavg-u-hxy-u.mon.GLB", + "atmos.rsds.tavg-u-hxy-u.day.GLB", + "atmos.rsds.tavg-u-hxy-u.mon.GLB", + "atmos.rsdscs.tavg-u-hxy-u.mon.GLB", + "atmos.rsdt.tavg-u-hxy-u.mon.GLB", + "atmos.rsus.tavg-u-hxy-u.mon.GLB", + "atmos.rsuscs.tavg-u-hxy-u.mon.GLB", + "atmos.rsut.tavg-u-hxy-u.mon.GLB", + "atmos.rsutcs.tavg-u-hxy-u.mon.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.day.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.mon.GLB", + "atmos.sftlf.ti-u-hxy-u.fx.GLB", + "atmos.ta.tavg-p19-hxy-air.day.GLB", + "atmos.ta.tavg-p19-hxy-air.mon.GLB", + "atmos.ta.tpt-p3-hxy-air.6hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.day.GLB", + "atmos.tas.tavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tmax-h2m-hxy-u.day.GLB", + "atmos.tas.tmaxavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tmin-h2m-hxy-u.day.GLB", + "atmos.tas.tminavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tpt-h2m-hxy-u.3hr.GLB", + "atmos.tauu.tavg-u-hxy-u.mon.GLB", + "atmos.tauv.tavg-u-hxy-u.mon.GLB", + "atmos.ts.tavg-u-hxy-u.mon.GLB", + "atmos.ua.tavg-p19-hxy-air.day.GLB", + "atmos.ua.tavg-p19-hxy-air.mon.GLB", + "atmos.ua.tpt-p3-hxy-air.6hr.GLB", + "atmos.uas.tavg-h10m-hxy-u.day.GLB", + "atmos.uas.tavg-h10m-hxy-u.mon.GLB", + "atmos.uas.tpt-h10m-hxy-u.3hr.GLB", + "atmos.va.tavg-p19-hxy-air.day.GLB", + "atmos.va.tavg-p19-hxy-air.mon.GLB", + "atmos.va.tpt-p3-hxy-air.6hr.GLB", + "atmos.vas.tavg-h10m-hxy-u.day.GLB", + "atmos.vas.tavg-h10m-hxy-u.mon.GLB", + "atmos.vas.tpt-h10m-hxy-u.3hr.GLB", + "atmos.wap.tavg-p19-hxy-air.mon.GLB", + "atmos.wap.tavg-p19-hxy-u.day.GLB", + "atmos.zg.tavg-p19-hxy-air.day.GLB", + "atmos.zg.tavg-p19-hxy-air.mon.GLB", + "land.evspsblsoi.tavg-u-hxy-lnd.mon.GLB", + "land.evspsblveg.tavg-u-hxy-lnd.mon.GLB", + "land.lai.tavg-u-hxy-lnd.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.mon.GLB", + "land.mrros.tavg-u-hxy-lnd.mon.GLB", + "land.mrso.tavg-u-hxy-lnd.mon.GLB", + "land.mrsofc.ti-u-hxy-lnd.fx.GLB", + "land.mrsol.tavg-d10cm-hxy-lnd.mon.GLB", + "land.orog.ti-u-hxy-u.fx.GLB", + "land.rootd.ti-u-hxy-lnd.fx.GLB", + "land.sftgif.ti-u-hxy-u.fx.GLB", + "land.slthick.ti-sl-hxy-lnd.fx.GLB", + "landIce.mrfso.tavg-u-hxy-lnd.mon.GLB", + "landIce.snc.tavg-u-hxy-lnd.mon.GLB", + "landIce.snw.tavg-u-hxy-lnd.mon.GLB", + "ocean.areacello.ti-u-hxy-u.fx.GLB", + "ocean.basin.ti-u-hxy-u.fx.GLB", + "ocean.bigthetao.tavg-ol-hxy-sea.mon.GLB", + "ocean.deptho.ti-u-hxy-sea.fx.GLB", + "ocean.hfds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfgeou.ti-u-hxy-sea.fx.GLB", + "ocean.masscello.tavg-ol-hxy-sea.mon.GLB", + "ocean.masscello.ti-ol-hxy-sea.fx.GLB", + "ocean.mlotst.tavg-u-hxy-sea.mon.GLB", + "ocean.sftof.ti-u-hxy-u.fx.GLB", + "ocean.so.tavg-ol-hxy-sea.mon.GLB", + "ocean.sos.tavg-u-hxy-sea.day.GLB", + "ocean.sos.tavg-u-hxy-sea.mon.GLB", + "ocean.tauuo.tavg-u-hxy-sea.mon.GLB", + "ocean.tauvo.tavg-u-hxy-sea.mon.GLB", + "ocean.thetao.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcello.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcello.ti-ol-hxy-sea.fx.GLB", + "ocean.tos.tavg-u-hxy-sea.day.GLB", + "ocean.tos.tavg-u-hxy-sea.mon.GLB", + "ocean.umo.tavg-ol-hxy-sea.mon.GLB", + "ocean.uo.tavg-ol-hxy-sea.mon.GLB", + "ocean.vmo.tavg-ol-hxy-sea.mon.GLB", + "ocean.vo.tavg-ol-hxy-sea.mon.GLB", + "ocean.wmo.tavg-ol-hxy-sea.mon.GLB", + "ocean.wo.tavg-ol-hxy-sea.mon.GLB", + "ocean.zos.tavg-u-hxy-sea.day.GLB", + "ocean.zos.tavg-u-hxy-sea.mon.GLB", + "ocean.zostoga.tavg-u-hm-sea.mon.GLB", + "seaIce.siconc.tavg-u-hxy-u.day.GLB", + "seaIce.siconc.tavg-u-hxy-u.mon.GLB", + "seaIce.simass.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-si.mon.GLB", + "seaIce.sitimefrac.tavg-u-hxy-sea.mon.GLB", + "seaIce.siu.tavg-u-hxy-si.mon.GLB", + "seaIce.siv.tavg-u-hxy-si.mon.GLB", + "seaIce.snd.tavg-u-hxy-sn.mon.GLB", + "seaIce.ts.tavg-u-hxy-si.mon.GLB" + ], + "High": [ + "aerosol.abs550aer.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550bc.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550dust.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550no3.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550oa.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550so4.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550ss.tavg-u-hxy-u.mon.GLB", + "aerosol.airmass.tavg-al-hxy-u.mon.GLB", + "aerosol.aoanh.tavg-al-hxy-u.mon.NH", + "aerosol.bry.tavg-p39-hy-air.mon.GLB", + "aerosol.bs550aer.tpt-al-hxy-u.6hr.GLB", + "aerosol.c2h6.tavg-al-hxy-u.mon.GLB", + "aerosol.c3h6.tavg-al-hxy-u.mon.GLB", + "aerosol.c3h8.tavg-al-hxy-u.mon.GLB", + "aerosol.ccldncl.tavg-u-hxy-ccl.mon.GLB", + "aerosol.ccn.tavg-u-hxy-ccl.mon.30S-90S", + "aerosol.ccn.tavg-u-hxy-ccl.mon.GLB", + "aerosol.ccn1.tavg-al-hxy-u.mon.30S-90S", + "aerosol.ccn1.tavg-al-hxy-u.mon.GLB", + "aerosol.ccnp02.tavg-al-hxy-u.mon.30S-90S", + "aerosol.ccnp02.tavg-al-hxy-u.mon.GLB", + "aerosol.cdnc.tavg-al-hxy-u.mon.30S-90S", + "aerosol.cdnc.tavg-al-hxy-u.mon.GLB", + "aerosol.ch3coch3.tavg-al-hxy-u.mon.GLB", + "aerosol.cheaqpso4.tavg-al-hxy-u.mon.GLB", + "aerosol.chegpso4.tavg-al-hxy-u.mon.GLB", + "aerosol.chepasoa.tavg-u-hxy-u.mon.GLB", + "aerosol.chepsoa.tavg-u-hxy-u.mon.GLB", + "aerosol.cly.tavg-p39-hy-air.mon.GLB", + "aerosol.co.tavg-al-hxy-u.mon.GLB", + "aerosol.co.tavg-h2m-hxy-u.day.GLB", + "aerosol.cod.tavg-u-hxy-u.day.GLB", + "aerosol.cod.tavg-u-hxy-u.mon.30S-90S", + "aerosol.cod.tavg-u-hxy-u.mon.GLB", + "aerosol.conccn.tavg-al-hxy-u.mon.GLB", + "aerosol.conccn.tpt-u-hs-u.3hr.GLB", + "aerosol.depdust.tavg-u-hxy-u.mon.GLB", + "aerosol.drybc.tavg-u-hxy-u.mon.GLB", + "aerosol.drydust.tavg-u-hxy-u.mon.GLB", + "aerosol.dryno3.tavg-u-hxy-u.mon.GLB", + "aerosol.dryo3.tavg-u-hxy-u.mon.GLB", + "aerosol.dryoa.tavg-u-hxy-u.mon.GLB", + "aerosol.dryso2.tavg-u-hxy-u.mon.GLB", + "aerosol.dryso4.tavg-u-hxy-u.mon.GLB", + "aerosol.dryss.tavg-u-hxy-u.mon.GLB", + "aerosol.ec550aer.tavg-al-hxy-u.mon.GLB", + "aerosol.ec550aer.tpt-u-hxy-u.6hr.GLB", + "aerosol.emiaco.tavg-u-hxy-u.mon.GLB", + "aerosol.emianox.tavg-u-hxy-u.mon.GLB", + "aerosol.emiaoa.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbbc.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbch4.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbco.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbdms.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbnh3.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbnox.tavg-u-hxy-u.mon.GLB", + "aerosol.emibboa.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbso2.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbvoc.tavg-u-hxy-u.mon.GLB", + "aerosol.emibc.tavg-u-hxy-u.mon.GLB", + "aerosol.emibvoc.tavg-u-hxy-u.mon.GLB", + "aerosol.emico.tavg-u-hxy-u.mon.GLB", + "aerosol.emidms.tavg-u-hxy-u.mon.30S-90S", + "aerosol.emidms.tavg-u-hxy-u.mon.GLB", + "aerosol.emidust.tavg-u-hxy-u.mon.GLB", + "aerosol.emiisop.tavg-u-hxy-u.mon.GLB", + "aerosol.emilnox.tavg-al-hxy-u.mon.GLB", + "aerosol.eminh3.tavg-u-hxy-u.mon.GLB", + "aerosol.eminox.tavg-u-hxy-u.mon.GLB", + "aerosol.emioa.tavg-u-hxy-u.mon.GLB", + "aerosol.emiso2.tavg-u-hxy-u.mon.GLB", + "aerosol.emiso4.tavg-u-hxy-u.mon.GLB", + "aerosol.emiss.tavg-u-hxy-u.mon.30S-90S", + "aerosol.emiss.tavg-u-hxy-u.mon.GLB", + "aerosol.emivoc.tavg-u-hxy-u.mon.GLB", + "aerosol.h2o.tavg-al-hxy-u.mon.GLB", + "aerosol.h2o.tavg-p39-hy-air.mon.GLB", + "aerosol.hcho.tavg-al-hxy-u.mon.GLB", + "aerosol.hcl.tavg-al-hxy-u.mon.GLB", + "aerosol.hcl.tavg-p39-hy-air.mon.GLB", + "aerosol.hno3.tavg-al-hxy-u.mon.GLB", + "aerosol.hno3.tavg-p39-hy-air.mon.GLB", + "aerosol.ho2.tavg-p39-hy-air.mon.GLB", + "aerosol.isop.tavg-al-hxy-u.mon.GLB", + "aerosol.jno2.tavg-al-hxy-u.mon.GLB", + "aerosol.lossch4.tavg-al-hxy-u.mon.GLB", + "aerosol.lossco.tavg-al-hxy-u.mon.GLB", + "aerosol.lossn2o.tavg-al-hxy-u.mon.GLB", + "aerosol.lwp.tavg-u-hxy-u.mon.GLB", + "aerosol.mmraerh2o.tavg-al-hxy-u.mon.GLB", + "aerosol.mmraerh2o.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmraerh2o.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrbc.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrbc.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrbc.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrbc.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrdust.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrdust.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrdust.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrdust.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrnh4.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrnh4.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrnh4.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrnh4.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrno3.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrno3.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrno3.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrno3.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmroa.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmroa.tavg-al-hxy-u.mon.GLB", + "aerosol.mmroa.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmroa.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrpm1.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrpm1.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrpm2p5.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrpm2p5.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrso4.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrso4.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrso4.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrso4.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrsoa.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrsoa.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrsoa.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrss.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrss.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrss.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrss.tpt-h2m-hs-u.3hr.GLB", + "aerosol.nh50.tavg-al-hxy-u.mon.GLB", + "aerosol.no.tavg-al-hxy-u.mon.GLB", + "aerosol.no2.tavg-al-hxy-u.mon.GLB", + "aerosol.no2.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.noy.tavg-p39-hy-air.mon.GLB", + "aerosol.o3.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.o3.tmax-h2m-hxy-u.day.GLB", + "aerosol.o3loss.tavg-al-hxy-u.mon.GLB", + "aerosol.o3prod.tavg-al-hxy-u.mon.GLB", + "aerosol.od443aer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550aer.tavg-u-hxy-u.day.GLB", + "aerosol.od550aer.tavg-u-hxy-u.mon.30S-90S", + "aerosol.od550aer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550aerh2o.tavg-u-hxy-u.mon.GLB", + "aerosol.od550bb.tavg-u-hxy-u.mon.GLB", + "aerosol.od550bc.tavg-u-hxy-u.mon.GLB", + "aerosol.od550csaer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550dust.tavg-u-hxy-u.mon.GLB", + "aerosol.od550lt1aer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550no3.tavg-u-hxy-u.mon.GLB", + "aerosol.od550oa.tavg-u-hxy-u.mon.GLB", + "aerosol.od550so4.tavg-u-hxy-u.mon.GLB", + "aerosol.od550soa.tavg-u-hxy-u.mon.GLB", + "aerosol.od550ss.tavg-u-hxy-u.mon.GLB", + "aerosol.od865aer.tavg-u-hxy-u.mon.GLB", + "aerosol.oh.tavg-al-hxy-u.mon.GLB", + "aerosol.oh.tavg-p39-hy-air.mon.GLB", + "aerosol.pan.tavg-al-hxy-u.mon.GLB", + "aerosol.photo1d.tavg-al-hxy-u.mon.GLB", + "aerosol.pod0.tsum-u-hxy-u.mon.GLB", + "aerosol.reffccwctop.tavg-u-hxy-cl.mon.GLB", + "aerosol.reffclwtop.tavg-u-hxy-cl.mon.30S-90S", + "aerosol.reffclwtop.tavg-u-hxy-cl.mon.GLB", + "aerosol.rluscsaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rlutaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rlutcsaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rsutaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rsutcsaf.tavg-u-hxy-u.mon.GLB", + "aerosol.sfpm1.tavg-h2m-hxy-u.day.GLB", + "aerosol.sfpm10.tavg-al-hxy-u.mon.30S-90S", + "aerosol.sfpm10.tavg-al-hxy-u.mon.GLB", + "aerosol.sfpm10.tavg-h2m-hxy-u.day.GLB", + "aerosol.sfpm25.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.sfpm25.tavg-h2m-hxy-u.day.GLB", + "aerosol.so2.tavg-al-hxy-u.mon.30S-90S", + "aerosol.so2.tavg-al-hxy-u.mon.GLB", + "aerosol.so2.tavg-h2m-hxy-u.day.GLB", + "aerosol.so2.tpt-h2m-hs-u.3hr.GLB", + "aerosol.tatp.tavg-u-hxy-u.mon.GLB", + "aerosol.toz.tavg-u-hxy-u.day.GLB", + "aerosol.toz.tavg-u-hxy-u.mon.GLB", + "aerosol.tropoz.tavg-u-hxy-u.mon.GLB", + "aerosol.ttop.tavg-u-hxy-cl.mon.GLB", + "aerosol.ua.tavg-10hPa-hxy-air.day.GLB", + "aerosol.vt100.tavg-100hPa-hy-air.mon.GLB", + "aerosol.wa.tavg-al-hxy-u.mon.GLB", + "aerosol.wetbc.tavg-u-hxy-u.mon.GLB", + "aerosol.wetdust.tavg-u-hxy-u.mon.GLB", + "aerosol.wetoa.tavg-u-hxy-u.mon.GLB", + "aerosol.wetso2.tavg-u-hxy-u.mon.GLB", + "aerosol.wetso4.tavg-u-hxy-u.mon.GLB", + "aerosol.wetss.tavg-u-hxy-u.mon.GLB", + "aerosol.zg.tavg-10hPa-hxy-air.day.GLB", + "atmos.albisccp.tavg-u-hxy-cl.day.GLB", + "atmos.albisccp.tavg-u-hxy-cl.mon.30S-90S", + "atmos.albisccp.tavg-u-hxy-cl.mon.GLB", + "atmos.aod550volso4.tavg-u-hxy-u.mon.GLB", + "atmos.bldep.tavg-u-hxy-u.mon.GLB", + "atmos.bldep.tmax-u-hxy-u.day.GLB", + "atmos.bldep.tmin-u-hxy-u.day.GLB", + "atmos.ccb.tavg-u-hxy-ccl.day.GLB", + "atmos.ccb.tavg-u-hxy-ccl.mon.GLB", + "atmos.cct.tavg-u-hxy-ccl.day.GLB", + "atmos.cct.tavg-u-hxy-ccl.mon.GLB", + "atmos.ci.tavg-u-hxy-u.mon.GLB", + "atmos.cl.tavg-al-hxy-u.day.GLB", + "atmos.cl.tavg-al-hxy-u.mon.30S-90S", + "atmos.clc.tavg-al-hxy-u.mon.30S-90S", + "atmos.clc.tavg-al-hxy-u.mon.GLB", + "atmos.clcalipso.tavg-220hPa-hxy-air.day.GLB", + "atmos.clcalipso.tavg-220hPa-hxy-air.mon.30S-90S", + "atmos.clcalipso.tavg-220hPa-hxy-air.mon.GLB", + "atmos.clcalipso.tavg-560hPa-hxy-air.day.GLB", + "atmos.clcalipso.tavg-560hPa-hxy-air.mon.30S-90S", + "atmos.clcalipso.tavg-560hPa-hxy-air.mon.GLB", + "atmos.clcalipso.tavg-840hPa-hxy-air.day.GLB", + "atmos.clcalipso.tavg-840hPa-hxy-air.mon.30S-90S", + "atmos.clcalipso.tavg-840hPa-hxy-air.mon.GLB", + "atmos.clcalipso.tavg-h40-hxy-air.mon.30S-90S", + "atmos.clcalipso.tavg-h40-hxy-air.mon.GLB", + "atmos.cldnci.tavg-u-hxy-cl.mon.GLB", + "atmos.cldncl.tavg-u-hxy-cl.mon.GLB", + "atmos.cldnvi.tavg-u-hxy-u.day.GLB", + "atmos.cldnvi.tavg-u-hxy-u.mon.GLB", + "atmos.cli.tavg-al-hxy-u.mon.30S-90S", + "atmos.clic.tavg-al-hxy-u.mon.30S-90S", + "atmos.clic.tavg-al-hxy-u.mon.GLB", + "atmos.clis.tavg-al-hxy-u.mon.30S-90S", + "atmos.clis.tavg-al-hxy-u.mon.GLB", + "atmos.clisccp.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clisccp.tavg-p7c-hxy-air.mon.GLB", + "atmos.clivi.tavg-u-hxy-u.day.GLB", + "atmos.clivi.tavg-u-hxy-u.mon.30S-90S", + "atmos.clivic.tavg-u-hxy-u.day.GLB", + "atmos.clivimodis.tavg-u-hxy-u.mon.30S-90S", + "atmos.clmisr.tavg-h16-hxy-air.mon.GLB", + "atmos.clmodis.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clmodis.tavg-p7c-hxy-air.mon.GLB", + "atmos.clmodisice.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clmodisice.tavg-p7c-hxy-air.mon.GLB", + "atmos.clmodisiceReff.tavg-u-hxy-u.mon.GLB", + "atmos.clmodisliquid.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clmodisliquid.tavg-p7c-hxy-air.mon.GLB", + "atmos.clmodisliquidReff.tavg-u-hxy-u.mon.GLB", + "atmos.cls.tavg-al-hxy-u.mon.30S-90S", + "atmos.cls.tavg-al-hxy-u.mon.GLB", + "atmos.clt.tavg-u-hxy-lnd.day.GLB", + "atmos.clt.tavg-u-hxy-u.1hr.30S-90S", + "atmos.clt.tavg-u-hxy-u.mon.30S-90S", + "atmos.cltc.tavg-u-hxy-u.mon.GLB", + "atmos.cltcalipso.tavg-u-hxy-u.day.GLB", + "atmos.cltcalipso.tavg-u-hxy-u.mon.30S-90S", + "atmos.cltcalipso.tavg-u-hxy-u.mon.GLB", + "atmos.cltisccp.tavg-u-hxy-u.day.GLB", + "atmos.cltisccp.tavg-u-hxy-u.mon.30S-90S", + "atmos.cltisccp.tavg-u-hxy-u.mon.GLB", + "atmos.cltmodis.tavg-u-hxy-u.mon.30S-90S", + "atmos.clw.tavg-al-hxy-u.mon.30S-90S", + "atmos.clwc.tavg-al-hxy-u.mon.30S-90S", + "atmos.clwc.tavg-al-hxy-u.mon.GLB", + "atmos.clws.tavg-al-hxy-u.mon.30S-90S", + "atmos.clws.tavg-al-hxy-u.mon.GLB", + "atmos.clwvi.tavg-u-hxy-u.day.GLB", + "atmos.clwvi.tavg-u-hxy-u.mon.30S-90S", + "atmos.clwvic.tavg-u-hxy-u.day.GLB", + "atmos.clwvimodis.tavg-u-hxy-u.mon.30S-90S", + "atmos.co2.tavg-al-hxy-u.mon.GLB", + "atmos.co2.tavg-h2m-hxy-u.mon.GLB", + "atmos.co2.tavg-p19-hxy-air.mon.GLB", + "atmos.co2.tclm-p19-hxy-air.mon.GLB", + "atmos.co2.tclm-u-hm-u.mon.GLB", + "atmos.co2mass.tavg-u-hm-u.mon.GLB", + "atmos.dmc.tavg-alh-hxy-u.mon.30S-90S", + "atmos.dmc.tavg-alh-hxy-u.mon.GLB", + "atmos.edt.tavg-al-hxy-u.mon.30S-90S", + "atmos.edt.tavg-al-hxy-u.mon.GLB", + "atmos.epfy.tavg-p39-hy-air.day.GLB", + "atmos.epfy.tavg-p39-hy-air.mon.GLB", + "atmos.epfz.tavg-p39-hy-air.day.GLB", + "atmos.epfz.tavg-p39-hy-air.mon.GLB", + "atmos.evspsbl.tavg-u-hxy-lnd.day.GLB", + "atmos.evu.tavg-al-hxy-u.mon.30S-90S", + "atmos.evu.tavg-al-hxy-u.mon.GLB", + "atmos.fco2antt.tavg-u-hxy-u.mon.GLB", + "atmos.fco2nat.tavg-u-hxy-u.mon.GLB", + "atmos.hfls.tavg-u-hxy-is.mon.GRL", + "atmos.hfls.tavg-u-hxy-u.day.GLB", + "atmos.hfls.tavg-u-hxy-u.mon.30S-90S", + "atmos.hfss.tavg-u-hxy-u.day.GLB", + "atmos.hfss.tavg-u-hxy-u.mon.30S-90S", + "atmos.hur.tavg-al-hxy-u.mon.30S-90S", + "atmos.hur.tavg-al-hxy-u.mon.GLB", + "atmos.hur.tavg-p19-hxy-air.mon.30S-90S", + "atmos.hurs.tavg-h2m-hxy-u.1hr.30S-90S", + "atmos.hurs.tavg-h2m-hxy-u.mon.30S-90S", + "atmos.hurs.tmax-h2m-hxy-u.day.GLB", + "atmos.hurs.tmin-h2m-hxy-u.day.GLB", + "atmos.hus.tavg-al-hxy-u.mon.30S-90S", + "atmos.hus.tavg-al-hxy-u.mon.GLB", + "atmos.hus.tavg-p19-hxy-u.mon.30S-90S", + "atmos.hus.tpt-p7h-hxy-air.6hr.GLB", + "atmos.huss.tavg-h2m-hxy-u.6hr.GLB", + "atmos.huss.tavg-h2m-hxy-u.mon.30S-90S", + "atmos.intuadse.tavg-u-hxy-u.day.GLB", + "atmos.intuadse.tavg-u-hxy-u.mon.GLB", + "atmos.intuaw.tavg-u-hxy-u.day.GLB", + "atmos.intuaw.tavg-u-hxy-u.mon.GLB", + "atmos.intuaw.tpt-u-hxy-u.6hr.GLB", + "atmos.intvadse.tavg-u-hxy-u.day.GLB", + "atmos.intvadse.tavg-u-hxy-u.mon.GLB", + "atmos.intvaw.tavg-u-hxy-u.day.GLB", + "atmos.intvaw.tavg-u-hxy-u.mon.GLB", + "atmos.intvaw.tpt-u-hxy-u.6hr.GLB", + "atmos.loadbc.tavg-u-hxy-u.day.GLB", + "atmos.loadoa.tavg-u-hxy-u.day.GLB", + "atmos.loadpoa.tavg-u-hxy-u.day.GLB", + "atmos.loadso4.tavg-u-hxy-u.mon.GLB", + "atmos.mc.tavg-alh-hxy-u.mon.GLB", + "atmos.mcd.tavg-alh-hxy-u.mon.30S-90S", + "atmos.mcd.tavg-alh-hxy-u.mon.GLB", + "atmos.mcu.tavg-alh-hxy-u.mon.30S-90S", + "atmos.mcu.tavg-alh-hxy-u.mon.GLB", + "atmos.pctisccp.tavg-u-hxy-cl.day.GLB", + "atmos.pctisccp.tavg-u-hxy-cl.mon.30S-90S", + "atmos.pctisccp.tavg-u-hxy-cl.mon.GLB", + "atmos.pfull.tavg-al-hxy-u.day.GLB", + "atmos.pfull.tavg-al-hxy-u.mon.GLB", + "atmos.pfull.tclm-al-hxy-u.mon.30S-90S", + "atmos.pfull.tclm-al-hxy-u.mon.GLB", + "atmos.phalf.tavg-alh-hxy-u.mon.GLB", + "atmos.phalf.tclm-alh-hxy-u.mon.GLB", + "atmos.pr.tavg-u-hxy-u.1hr.30S-90S", + "atmos.pr.tavg-u-hxy-u.mon.30S-90S", + "atmos.pr.tmax-u-hxy-u.day.GLB", + "atmos.pr.tmax-u-hxy-u.mon.GLB", + "atmos.pr.tpt-u-hxy-u.6hr.GLB", + "atmos.pr17O.tavg-u-hxy-u.mon.GLB", + "atmos.pr18O.tavg-u-hxy-u.mon.GLB", + "atmos.pr2h.tavg-u-hxy-u.mon.GLB", + "atmos.prc.tavg-u-hxy-u.day.GLB", + "atmos.prc.tavg-u-hxy-u.mon.30S-90S", + "atmos.prra.tavg-u-hxy-is.mon.GRL", + "atmos.prra.tavg-u-hxy-lnd.day.GLB", + "atmos.prra.tavg-u-hxy-u.6hr.GLB", + "atmos.prra.tavg-u-hxy-u.mon.30S-90S", + "atmos.prra.tavg-u-hxy-u.mon.GLB", + "atmos.prsn.tavg-u-hxy-is.mon.GRL", + "atmos.prsn.tavg-u-hxy-u.3hr.GLB", + "atmos.prsn.tavg-u-hxy-u.6hr.GLB", + "atmos.prsn.tavg-u-hxy-u.day.GLB", + "atmos.prsn.tavg-u-hxy-u.mon.30S-90S", + "atmos.prsn18O.tavg-u-hxy-u.mon.GLB", + "atmos.prsn2h.tavg-u-hxy-u.mon.GLB", + "atmos.prw.tavg-u-hxy-u.day.GLB", + "atmos.prw.tavg-u-hxy-u.mon.30S-90S", + "atmos.prw.tpt-u-hxy-u.6hr.GLB", + "atmos.ps.tavg-u-hxy-u.1hr.GLB", + "atmos.ps.tavg-u-hxy-u.6hr.GLB", + "atmos.ps.tavg-u-hxy-u.mon.30S-90S", + "atmos.ps.tpt-u-hxy-u.1hr.30S-90S", + "atmos.psl.tavg-u-hxy-u.mon.30S-90S", + "atmos.psl.tpt-u-hxy-u.1hr.GLB", + "atmos.psl.tpt-u-hxy-u.6hr.GLB", + "atmos.ptp.tavg-u-hxy-u.mon.GLB", + "atmos.reffcclwtop.tavg-u-hxy-ccl.mon.GLB", + "atmos.reffclic.tavg-al-hxy-ccl.mon.30S-90S", + "atmos.reffclic.tavg-al-hxy-ccl.mon.GLB", + "atmos.reffclis.tavg-al-hxy-scl.mon.30S-90S", + "atmos.reffclis.tavg-al-hxy-scl.mon.GLB", + "atmos.reffclwc.tavg-al-hxy-ccl.mon.30S-90S", + "atmos.reffclwc.tavg-al-hxy-ccl.mon.GLB", + "atmos.reffclws.tavg-al-hxy-scl.mon.30S-90S", + "atmos.reffclws.tavg-al-hxy-scl.mon.GLB", + "atmos.reffsclwtop.tavg-u-hxy-scl.mon.GLB", + "atmos.rld.tavg-alh-hxy-u.mon.GLB", + "atmos.rld4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rldcs.tavg-alh-hxy-u.mon.GLB", + "atmos.rldcs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rlds.tavg-u-hxy-u.1hr.30S-90S", + "atmos.rlds.tavg-u-hxy-u.6hr.GLB", + "atmos.rlds.tavg-u-hxy-u.day.GLB", + "atmos.rlds.tavg-u-hxy-u.mon.30S-90S", + "atmos.rldscs.tavg-u-hxy-u.day.GLB", + "atmos.rldscs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rls.tavg-u-hxy-u.mon.GLB", + "atmos.rlu.tavg-alh-hxy-u.mon.GLB", + "atmos.rlu4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rlucs.tavg-alh-hxy-u.mon.GLB", + "atmos.rlucs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rlus.tavg-u-hxy-u.day.GLB", + "atmos.rlus.tavg-u-hxy-u.mon.30S-90S", + "atmos.rluscs.tavg-u-hxy-u.day.GLB", + "atmos.rlut.tavg-u-hxy-u.day.GLB", + "atmos.rlut.tavg-u-hxy-u.mon.30S-90S", + "atmos.rlut4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rlutcs.tavg-u-hxy-u.day.GLB", + "atmos.rlutcs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rlutcs4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rsd.tavg-alh-hxy-u.mon.GLB", + "atmos.rsd4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsdcs.tavg-alh-hxy-u.mon.GLB", + "atmos.rsdcs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsds.tavg-u-hxy-u.1hr.30S-90S", + "atmos.rsds.tavg-u-hxy-u.6hr.GLB", + "atmos.rsds.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsdscs.tavg-u-hxy-u.day.GLB", + "atmos.rsdscs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsdt.tavg-u-hxy-u.day.GLB", + "atmos.rsdt.tavg-u-hxy-u.mon.30S-90S", + "atmos.rss.tavg-u-hxy-u.mon.GLB", + "atmos.rsu.tavg-alh-hxy-u.mon.GLB", + "atmos.rsu4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsucs.tavg-alh-hxy-u.mon.GLB", + "atmos.rsucs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsus.tavg-u-hxy-u.day.GLB", + "atmos.rsus.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsuscs.tavg-u-hxy-u.day.GLB", + "atmos.rsuscs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsut.tavg-u-hxy-u.day.GLB", + "atmos.rsut.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsut4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rsutcs.tavg-u-hxy-u.day.GLB", + "atmos.rsutcs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsutcs4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rtmt.tavg-u-hxy-u.mon.GLB", + "atmos.rv850.tpt-850hPa-hxy-air.6hr.GLB", + "atmos.sci.tavg-u-hxy-u.mon.GLB", + "atmos.scldncl.tavg-u-hxy-scl.mon.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.1hr.30S-90S", + "atmos.sfcWind.tavg-h10m-hxy-u.6hr.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.mon.30S-90S", + "atmos.sfcWind.tmax-h10m-hxy-u.day.GLB", + "atmos.sfcWind.tmaxavg-h10m-hxy-u.mon.GLB", + "atmos.smc.tavg-alh-hxy-u.mon.GLB", + "atmos.ta.tavg-700hPa-hxy-air.day.GLB", + "atmos.ta.tavg-850hPa-hxy-air.day.GLB", + "atmos.ta.tavg-al-hxy-u.mon.30S-90S", + "atmos.ta.tavg-al-hxy-u.mon.GLB", + "atmos.ta.tavg-p19-hxy-air.mon.30S-90S", + "atmos.ta.tavg-p39-hy-air.day.GLB", + "atmos.ta.tavg-p39-hy-air.mon.GLB", + "atmos.tas.tavg-h2m-hxy-u.1hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.6hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.mon.30S-90S", + "atmos.tas.tmaxavg-h2m-hxy-u.mon.30S-90S", + "atmos.tas.tminavg-h2m-hxy-u.mon.30S-90S", + "atmos.tauu.tavg-u-hxy-u.day.GLB", + "atmos.tauunoegw.tavg-p39-hy-air.day.GLB", + "atmos.tauunowgw.tavg-p39-hy-air.day.GLB", + "atmos.tauuogw.tavg-p39-hy-air.day.GLB", + "atmos.tauv.tavg-u-hxy-u.day.GLB", + "atmos.tauvnogw.tavg-p39-hy-air.day.GLB", + "atmos.tauvogw.tavg-p39-hy-air.day.GLB", + "atmos.tdps.tavg-h2m-hxy-u.mon.GLB", + "atmos.tnhus.tavg-al-hxy-u.mon.GLB", + "atmos.tnhusa.tavg-al-hxy-u.mon.GLB", + "atmos.tnhusc.tavg-al-hxy-u.mon.GLB", + "atmos.tnhusd.tavg-al-hxy-u.mon.GLB", + "atmos.tnhusmp.tavg-al-hxy-u.mon.GLB", + "atmos.tnhuspbl.tavg-al-hxy-u.mon.GLB", + "atmos.tnhusscp.tavg-al-hxy-u.mon.GLB", + "atmos.tnhusscpbl.tavg-al-hxy-u.mon.GLB", + "atmos.tnt.tavg-al-hxy-u.mon.GLB", + "atmos.tnta.tavg-al-hxy-u.mon.GLB", + "atmos.tntc.tavg-al-hxy-u.mon.GLB", + "atmos.tntd.tavg-al-hxy-u.mon.GLB", + "atmos.tntmp.tavg-al-hxy-u.mon.GLB", + "atmos.tntmp.tavg-p39-hy-air.day.GLB", + "atmos.tntmp.tavg-p39-hy-air.mon.GLB", + "atmos.tntpbl.tavg-al-hxy-u.mon.GLB", + "atmos.tntr.tavg-al-hxy-u.mon.GLB", + "atmos.tntrl.tavg-al-hxy-u.mon.GLB", + "atmos.tntrl.tavg-p39-hy-air.day.GLB", + "atmos.tntrl.tavg-p39-hy-air.mon.GLB", + "atmos.tntrlcs.tavg-al-hxy-u.mon.GLB", + "atmos.tntrs.tavg-al-hxy-u.mon.GLB", + "atmos.tntrs.tavg-p39-hy-air.day.GLB", + "atmos.tntrs.tavg-p39-hy-air.mon.GLB", + "atmos.tntrscs.tavg-al-hxy-u.mon.GLB", + "atmos.tntscp.tavg-al-hxy-u.mon.GLB", + "atmos.tntscpbl.tavg-al-hxy-u.mon.GLB", + "atmos.ts.tavg-u-hxy-u.6hr.GLB", + "atmos.ts.tavg-u-hxy-u.day.GLB", + "atmos.ts.tavg-u-hxy-u.mon.30S-90S", + "atmos.ua.tavg-al-hxy-u.mon.GLB", + "atmos.ua.tavg-p19-hxy-air.mon.30S-90S", + "atmos.ua.tavg-p39-hy-air.day.GLB", + "atmos.ua.tavg-p39-hy-air.mon.GLB", + "atmos.ua.tpt-h100m-hxy-u.1hr.GLB", + "atmos.uas.tavg-h10m-hxy-u.mon.30S-90S", + "atmos.uas.tpt-h10m-hxy-u.1hr.GLB", + "atmos.uas.tpt-h10m-hxy-u.6hr.GLB", + "atmos.utendepfd.tavg-p39-hy-air.day.GLB", + "atmos.utendepfd.tavg-p39-hy-air.mon.GLB", + "atmos.utendnogw.tavg-p39-hy-air.day.GLB", + "atmos.utendnogw.tavg-p39-hy-air.mon.GLB", + "atmos.utendogw.tavg-p39-hy-air.day.GLB", + "atmos.utendogw.tavg-p39-hy-air.mon.GLB", + "atmos.utendvtem.tavg-p39-hy-air.day.GLB", + "atmos.utendwtem.tavg-p39-hy-air.day.GLB", + "atmos.va.tavg-al-hxy-u.mon.GLB", + "atmos.va.tavg-p19-hxy-air.mon.30S-90S", + "atmos.va.tavg-p39-hy-air.mon.GLB", + "atmos.va.tpt-h100m-hxy-u.1hr.GLB", + "atmos.vas.tavg-h10m-hxy-u.mon.30S-90S", + "atmos.vas.tpt-h10m-hxy-u.1hr.GLB", + "atmos.vas.tpt-h10m-hxy-u.6hr.GLB", + "atmos.vtem.tavg-p39-hy-air.day.GLB", + "atmos.vtem.tavg-p39-hy-air.mon.GLB", + "atmos.wap.tavg-500hPa-hxy-air.day.GLB", + "atmos.wap.tavg-p19-hxy-air.mon.30S-90S", + "atmos.wtem.tavg-p39-hy-air.day.GLB", + "atmos.wtem.tavg-p39-hy-air.mon.GLB", + "atmos.zg.tavg-1000hPa-hxy-air.day.GLB", + "atmos.zg.tavg-500hPa-hxy-air.day.GLB", + "atmos.zg.tavg-al-hxy-u.mon.GLB", + "atmos.zg.tavg-p19-hxy-air.mon.30S-90S", + "atmos.zg.tavg-p39-hy-air.day.GLB", + "atmos.zg.tavg-p39-hy-air.mon.GLB", + "atmos.zg.tpt-500hPa-hxy-air.6hr.GLB", + "atmos.zg.tpt-p3-hxy-air.6hr.GLB", + "atmos.zg.tpt-p7h-hxy-air.6hr.GLB", + "atmos.ztp.tavg-u-hxy-u.mon.GLB", + "atmosChem.c2h4.tavg-al-hxy-u.mon.GLB", + "atmosChem.c2h5oh.tavg-al-hxy-u.mon.GLB", + "atmosChem.c4h10.tavg-al-hxy-u.mon.GLB", + "atmosChem.cfc11.tavg-u-hm-u.mon.GLB", + "atmosChem.cfc113.tavg-u-hm-u.mon.GLB", + "atmosChem.cfc12.tavg-u-hm-u.mon.GLB", + "atmosChem.ch3oh.tavg-al-hxy-u.mon.GLB", + "atmosChem.ch4.tavg-al-hxy-u.mon.GLB", + "atmosChem.ch4.tavg-p19-hxy-air.mon.GLB", + "atmosChem.ch4.tavg-p39-hy-air.mon.GLB", + "atmosChem.ch4.tavg-u-hm-u.mon.GLB", + "atmosChem.ch4.tclm-p19-hxy-air.mon.GLB", + "atmosChem.ch4.tclm-u-hm-u.mon.GLB", + "atmosChem.ch4losssoil.tavg-u-hxy-u.mon.GLB", + "atmosChem.ch4ref.ti-al-hxy-u.fx.GLB", + "atmosChem.chegph2oo1d.tavg-al-hxy-u.mon.GLB", + "atmosChem.chepnh4.tavg-al-hxy-u.mon.GLB", + "atmosChem.chepno3.tavg-al-hxy-u.mon.GLB", + "atmosChem.dms.tavg-al-hxy-u.mon.30S-90S", + "atmosChem.dms.tavg-al-hxy-u.mon.GLB", + "atmosChem.do3chm.tavg-al-hxy-u.mon.GLB", + "atmosChem.dryh2.tavg-u-hxy-u.mon.GLB", + "atmosChem.dryhno3.tavg-u-hxy-u.mon.GLB", + "atmosChem.drynh3.tavg-u-hxy-u.mon.GLB", + "atmosChem.drynh4.tavg-u-hxy-u.mon.GLB", + "atmosChem.drynoy.tavg-u-hxy-u.mon.GLB", + "atmosChem.e90inst.tpt-al-hxy-u.mon.GLB", + "atmosChem.emiach4.tavg-u-hxy-u.mon.GLB", + "atmosChem.emiavnox.tavg-al-hxy-u.mon.GLB", + "atmosChem.emic2h4.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic2h5oh.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic2h6.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic3h6.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic3h8.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic4h10.tavg-u-hxy-u.mon.GLB", + "atmosChem.emich3oh.tavg-u-hxy-u.mon.GLB", + "atmosChem.emich4.tavg-u-hxy-u.mon.GLB", + "atmosChem.emih2.tavg-u-hxy-u.mon.GLB", + "atmosChem.emilkch4.tavg-u-hxy-u.mon.GLB", + "atmosChem.h2.tavg-al-hxy-u.mon.GLB", + "atmosChem.h2loss.tavg-al-hxy-u.mon.GLB", + "atmosChem.h2prod.tavg-al-hxy-u.mon.GLB", + "atmosChem.hcfc22.tavg-u-hm-u.mon.GLB", + "atmosChem.meanage.tavg-al-hxy-u.mon.GLB", + "atmosChem.meanage.tavg-p39-hy-air.mon.GLB", + "atmosChem.n2o.tavg-al-hxy-u.mon.GLB", + "atmosChem.n2o.tavg-p19-hxy-air.mon.GLB", + "atmosChem.n2o.tavg-p39-hy-air.mon.GLB", + "atmosChem.n2o.tavg-u-hm-u.mon.GLB", + "atmosChem.n2o.tclm-p19-hxy-air.mon.GLB", + "atmosChem.n2o.tclm-u-hm-u.mon.GLB", + "atmosChem.o3.tavg-al-hxy-u.mon.GLB", + "atmosChem.o3.tavg-p19-hxy-air.mon.GLB", + "atmosChem.o3.tavg-p39-hy-air.mon.GLB", + "atmosChem.o3.tclm-p19-hxy-air.mon.GLB", + "atmosChem.o3.tpt-al-hxy-u.mon.GLB", + "atmosChem.o3ref.tclm-al-hxy-u.fx.GLB", + "atmosChem.o3ref.ti-al-hxy-u.fx.GLB", + "atmosChem.o3ste.tavg-al-hxy-u.mon.GLB", + "atmosChem.rlutch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rlutcsch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rlutcso3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rluto3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsutch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsutcsch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsutcso3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsuto3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.stratch4loss.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropch4loss.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropch4lossoh.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropdo3chm.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropo3ste.tavg-al-hxy-u.mon.GLB", + "atmosChem.wethno3.tavg-al-hxy-u.mon.GLB", + "atmosChem.wetnh3.tavg-u-hxy-u.mon.GLB", + "atmosChem.wetnh4.tavg-u-hxy-u.mon.GLB", + "atmosChem.wetno3.tavg-al-hxy-u.mon.GLB", + "atmosChem.wetnoy.tavg-u-hxy-u.mon.GLB", + "land.areacellr.ti-u-hxy-u.fx.GLB", + "land.baresoilFrac.tavg-u-hxy-u.mon.GLB", + "land.burntFractionAll.tavg-u-hxy-u.mon.GLB", + "land.cLand.tavg-u-hxy-lnd.mon.GLB", + "land.cLeaf.tavg-u-hxy-lnd.mon.GLB", + "land.cLitter.tavg-u-hxy-lnd.mon.GLB", + "land.cProduct.tavg-u-hxy-lnd.mon.GLB", + "land.cRoot.tavg-u-hxy-lnd.mon.GLB", + "land.cropFrac.tavg-u-hxy-u.mon.GLB", + "land.cSoil.tavg-d100cm-hxy-lnd.mon.GLB", + "land.cSoil.tavg-sl-hxy-lnd.mon.GLB", + "land.cSoil.tavg-u-hxy-lnd.mon.GLB", + "land.cStem.tavg-u-hxy-lnd.mon.GLB", + "land.cVeg.tavg-u-hxy-lnd.mon.GLB", + "land.dcw.tavg-u-hxy-lnd.day.GLB", + "land.depthl.ti-u-hxy-u.fx.GLB", + "land.depthsl.ti-u-hxy-u.fx.GLB", + "land.dslw.tavg-u-hxy-lnd.day.GLB", + "land.evspsblpot.tavg-u-hxy-lnd.day.GLB", + "land.evspsblpot.tavg-u-hxy-lnd.mon.GLB", + "land.evspsblsoi.tavg-u-hxy-u.day.GLB", + "land.evspsblveg.tavg-u-hxy-u.day.GLB", + "land.fBNF.tavg-u-hxy-lnd.mon.GLB", + "land.fFire.tavg-u-hxy-lnd.mon.GLB", + "land.fFireAll.tavg-u-hxy-lnd.mon.GLB", + "land.fFireNat.tavg-u-hxy-lnd.mon.GLB", + "land.fLuc.tavg-u-hxy-lnd.mon.GLB", + "land.fNgas.tavg-u-hxy-lnd.mon.GLB", + "land.fNgasFire.tavg-u-hxy-lnd.mon.GLB", + "land.fNLandToOcean.tavg-u-hxy-lnd.mon.GLB", + "land.fNleach.tavg-u-hxy-lnd.mon.GLB", + "land.fNLitterSoil.tavg-u-hxy-lnd.mon.GLB", + "land.fNloss.tavg-u-hxy-lnd.mon.GLB", + "land.fNup.tavg-u-hxy-lnd.mon.GLB", + "land.fNVegSoil.tavg-u-hxy-lnd.mon.GLB", + "land.gpp.tavg-u-hxy-lnd.mon.GLB", + "land.grassFrac.tavg-u-hxy-u.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.day.GLB", + "land.mrrob.tavg-u-hxy-lnd.day.GLB", + "land.mrros.tavg-u-hxy-lnd.day.GLB", + "land.mrsfl.tavg-sl-hxy-lnd.day.GLB", + "land.mrsfl.tavg-sl-hxy-lnd.mon.GLB", + "land.mrsll.tavg-sl-hxy-lnd.day.GLB", + "land.mrsll.tavg-sl-hxy-lnd.mon.GLB", + "land.mrso.tavg-u-hxy-lnd.day.GLB", + "land.mrsol.tavg-d10cm-hxy-lnd.day.GLB", + "land.mrsol.tavg-sl-hxy-lnd.day.GLB", + "land.mrsol.tavg-sl-hxy-lnd.mon.GLB", + "land.mrsow.tavg-u-hxy-lnd.day.GLB", + "land.mrtws.tavg-u-hxy-lnd.day.GLB", + "land.nbp.tavg-u-hxy-lnd.mon.GLB", + "land.nep.tavg-u-hxy-lnd.mon.GLB", + "land.nLand.tavg-u-hxy-lnd.mon.GLB", + "land.nLitter.tavg-u-hxy-lnd.mon.GLB", + "land.nMineral.tavg-u-hxy-lnd.mon.GLB", + "land.npp.tavg-u-hxy-lnd.mon.GLB", + "land.nProduct.tavg-u-hxy-lnd.mon.GLB", + "land.nSoil.tavg-u-hxy-lnd.mon.GLB", + "land.nVeg.tavg-u-hxy-lnd.mon.GLB", + "land.orog.ti-u-hxy-u.fx.30S-90S", + "land.ra.tavg-u-hxy-lnd.mon.GLB", + "land.rh.tavg-u-hxy-lnd.mon.GLB", + "land.rivi.tavg-u-hxy-lnd.day.GLB", + "land.rivo.tavg-u-hxy-lnd.day.GLB", + "land.rsds.tavg-u-hxy-lnd.mon.GLB", + "land.rsds.tavg-u-hxy-sn.mon.GLB", + "land.rsus.tavg-u-hxy-lnd.mon.GLB", + "land.rsus.tavg-u-hxy-sn.mon.GLB", + "land.sftgif.tavg-u-hxy-u.mon.GLB", + "land.sftlaf.ti-u-hxy-u.fx.GLB", + "land.shrubFrac.tavg-u-hxy-u.mon.GLB", + "land.tas.tavg-u-hxy-u.1hr.30S-90S", + "land.tran.tavg-u-hxy-lnd.mon.GLB", + "land.treeFrac.tavg-u-hxy-u.mon.GLB", + "land.tsl.tavg-sl-hxy-lnd.day.GLB", + "land.tsl.tavg-sl-hxy-lnd.mon.GLB", + "land.tslsi.tavg-u-hxy-u.day.GLB", + "land.vegFrac.tavg-u-hxy-u.mon.GLB", + "land.vegHeight.tavg-u-hxy-tree.mon.GLB", + "land.vegHeight.tavg-u-hxy-veg.mon.GLB", + "land.wetlandCH4.tavg-u-hxy-lnd.mon.GLB", + "land.wtd.tavg-u-hxy-lnd.day.GLB", + "landIce.acabf.tavg-u-hxy-is.mon.GLB", + "landIce.hfdsn.tavg-u-hxy-lnd.mon.GLB", + "landIce.hfgeoubed.ti-u-hxy-gis.fx.GRL", + "landIce.hfls.tavg-u-hxy-is.mon.GLB", + "landIce.hfss.tavg-u-hxy-is.mon.GLB", + "landIce.icem.tavg-u-hxy-is.mon.GLB", + "landIce.litemptop.tavg-u-hxy-is.mon.GLB", + "landIce.lithk.ti-u-hxy-is.fx.GRL", + "landIce.lithk.ti-u-hxy-u.fx.GLB", + "landIce.mrro.tavg-u-hxy-is.mon.GLB", + "landIce.orog.tavg-u-hxy-is.mon.GLB", + "landIce.pflw.tavg-u-hxy-lnd.mon.GLB", + "landIce.prra.tavg-u-hxy-is.mon.GLB", + "landIce.prsn.tavg-u-hxy-is.mon.GLB", + "landIce.rlds.tavg-u-hxy-is.mon.GLB", + "landIce.rlus.tavg-u-hxy-is.mon.GLB", + "landIce.rsds.tavg-u-hxy-is.mon.GLB", + "landIce.rsus.tavg-u-hxy-is.mon.GLB", + "landIce.sbl.tavg-u-hxy-is.mon.GLB", + "landIce.sbl.tavg-u-hxy-lnd.mon.GLB", + "landIce.sbl.tavg-u-hxy-u.mon.GLB", + "landIce.sftflf.tavg-u-hxy-u.mon.GLB", + "landIce.sftflf.ti-u-hxy-u.fx.GLB", + "landIce.sftgrf.tavg-u-hxy-u.mon.GLB", + "landIce.sftgrf.ti-u-hxy-u.fx.GLB", + "landIce.snc.tavg-u-hxy-is.mon.GLB", + "landIce.snc.tavg-u-hxy-lnd.day.GLB", + "landIce.snd.tavg-u-hxy-lnd.mon.GLB", + "landIce.snicem.tavg-u-hxy-is.mon.GLB", + "landIce.snicem.tavg-u-hxy-is.mon.GRL", + "landIce.snm.tavg-u-hxy-is.mon.GLB", + "landIce.snm.tavg-u-hxy-lnd.mon.GLB", + "landIce.snrefr.tavg-u-hxy-is.mon.GLB", + "landIce.snw.tavg-u-hxy-lnd.day.GLB", + "landIce.sootsn.tavg-u-hxy-lnd.mon.GLB", + "landIce.tas.tavg-u-hxy-is.mon.GLB", + "landIce.topg.ti-u-hxy-gis.fx.GRL", + "landIce.tpf.tavg-u-hxy-lnd.mon.GLB", + "landIce.ts.tavg-u-hxy-is.mon.GLB", + "landIce.tsn.tavg-u-hxy-is.mon.GLB", + "landIce.tsn.tavg-u-hxy-lnd.mon.GLB", + "ocean.absscint.tavg-op4-hxy-sea.mon.GLB", + "ocean.agessc.tavg-ol-hxy-sea.mon.GLB", + "ocean.bigthetao.tavg-ol-hm-sea.mon.GLB", + "ocean.bigthetao.tavg-ol-hxy-sea.dec.GLB", + "ocean.bigthetao.tavg-op20bar-hxy-sea.day.GLB", + "ocean.chcint.tavg-op4-hxy-sea.mon.GLB", + "ocean.ficeberg.tavg-ol-hxy-sea.3hr.GLB", + "ocean.ficeberg.tavg-u-hxy-sea.mon.GLB", + "ocean.flandice.tavg-u-hxy-sea.3hr.GLB", + "ocean.flandice.tavg-u-hxy-sea.mon.GLB", + "ocean.friver.tavg-u-hxy-sea.3hr.GLB", + "ocean.hfbasin.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpmadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpmdiff.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpsmadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfds.tavg-u-hxy-sea.3hr.GLB", + "ocean.hfds.tavg-u-hxy-sea.mon.30S-90S", + "ocean.hfgeou.tavg-u-hxy-sea.mon.GLB", + "ocean.hfrunoffds.tavg-ol-hxy-sea.3hr.GLB", + "ocean.hfx.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfx.tavg-u-hxy-sea.day.GLB", + "ocean.hfx.tavg-u-hxy-sea.mon.GLB", + "ocean.hfy.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfy.tavg-u-hxy-sea.day.GLB", + "ocean.hfy.tavg-u-hxy-sea.mon.GLB", + "ocean.htovgyre.tavg-u-hyb-sea.mon.GLB", + "ocean.htovovrt.tavg-u-hyb-sea.mon.GLB", + "ocean.masscello.tavg-ol-hxy-sea.dec.GLB", + "ocean.masso.tavg-u-hm-sea.dec.GLB", + "ocean.masso.tavg-u-hm-sea.mon.GLB", + "ocean.mlotst.tavg-u-hxy-sea.day.GLB", + "ocean.mlotst.tavg-u-hxy-sea.mon.30S-90S", + "ocean.mlotst.tmax-u-hxy-sea.mon.GLB", + "ocean.mlotst.tmin-u-hxy-sea.mon.GLB", + "ocean.mpw.tavg-u-hxy-sea.mon.GLB", + "ocean.mpw.tpt-u-hxy-sea.3hr.GLB", + "ocean.mpwswell.tavg-u-hxy-sea.mon.GLB", + "ocean.mpwswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.mpwwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.mpwwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.msftbarot.tavg-u-hxy-sea.mon.GLB", + "ocean.msftm.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftm.tavg-rho-hyb-sea.mon.GLB", + "ocean.msfty.tavg-ol-ht-sea.mon.GLB", + "ocean.msfty.tavg-rho-ht-sea.mon.GLB", + "ocean.obvfsq.tavg-ol-hxy-sea.mon.GLB", + "ocean.opottemptend.tavg-ol-hxy-sea.yr.GLB", + "ocean.pbo.tavg-u-hxy-sea.mon.GLB", + "ocean.pfscint.tavg-op4-hxy-sea.mon.GLB", + "ocean.phcint.tavg-op4-hxy-sea.mon.GLB", + "ocean.pso.tavg-u-hxy-sea.mon.GLB", + "ocean.rsds.tavg-u-hxy-ifs.mon.GLB", + "ocean.rsntds.tavg-u-hxy-sea.3hr.GLB", + "ocean.rsus.tavg-u-hxy-ifs.mon.GLB", + "ocean.scint.tavg-op4-hxy-sea.mon.GLB", + "ocean.sduo.tavg-u-hxy-sea.mon.GLB", + "ocean.sduo.tpt-u-hxy-sea.3hr.GLB", + "ocean.sdvo.tavg-u-hxy-sea.mon.GLB", + "ocean.sdvo.tpt-u-hxy-sea.3hr.GLB", + "ocean.sfdsi.tavg-u-hxy-sea.3hr.GLB", + "ocean.sfx.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfx.tavg-u-hxy-sea.mon.GLB", + "ocean.sfy.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfy.tavg-u-hxy-sea.mon.GLB", + "ocean.sltbasin.tavg-u-hyb-sea.mon.GLB", + "ocean.sltovgyre.tavg-u-hyb-sea.mon.GLB", + "ocean.sltovovrt.tavg-u-hyb-sea.mon.GLB", + "ocean.so.tavg-ol-hm-sea.mon.GLB", + "ocean.so.tavg-ol-hxy-sea.dec.GLB", + "ocean.so.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.sob.tavg-u-hxy-sea.mon.GLB", + "ocean.sos.tavg-u-hm-sea.mon.30S-90S", + "ocean.sos.tavg-u-hm-sea.mon.GLB", + "ocean.sw17O.tavg-ol-hxy-sea.mon.GLB", + "ocean.sw18O.tavg-ol-hxy-sea.mon.GLB", + "ocean.sw2H.tavg-ol-hxy-sea.mon.GLB", + "ocean.swh.tavg-u-hxy-sea.mon.GLB", + "ocean.swh.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhmax.tmax-u-hxy-sea.mon.GLB", + "ocean.swhmax.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhswell.tavg-u-hxy-sea.mon.GLB", + "ocean.swhswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.swhwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.t20d.tavg-u-hxy-sea.mon.GLB", + "ocean.tauuo.tavg-u-hxy-sea.3hr.GLB", + "ocean.tauuo.tavg-u-hxy-sea.dec.GLB", + "ocean.tauvo.tavg-u-hxy-sea.3hr.GLB", + "ocean.tauvo.tavg-u-hxy-sea.dec.GLB", + "ocean.thetao.tavg-d2000m-hxy-sea.mon.GLB", + "ocean.thetao.tavg-d300m-hxy-sea.mon.GLB", + "ocean.thetao.tavg-d700m-hxy-sea.mon.GLB", + "ocean.thetao.tavg-ol-hm-sea.mon.GLB", + "ocean.thetao.tavg-ol-hxy-sea.dec.GLB", + "ocean.thetao.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.thetao.tavg-op20bar-hxy-sea.day.GLB", + "ocean.thetaot.tavg-u-hxy-sea.mon.GLB", + "ocean.thkcello.tavg-ol-hxy-sea.dec.GLB", + "ocean.tob.tavg-u-hxy-sea.mon.GLB", + "ocean.tos.tavg-u-hm-sea.mon.GLB", + "ocean.tos.tavg-u-hxy-sea.mon.30S-90S", + "ocean.tos.tpt-u-hxy-sea.3hr.GLB", + "ocean.tossq.tavg-u-hxy-sea.day.GLB", + "ocean.umo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.uo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.uos.tavg-u-hxy-sea.day.GLB", + "ocean.vmo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.vo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.volcello.tavg-ol-hxy-sea.dec.GLB", + "ocean.volcello.tavg-ol-hxy-sea.mon.GLB", + "ocean.volcello.tavg-ol-hxy-sea.yr.GLB", + "ocean.volcello.ti-ol-hxy-sea.fx.GLB", + "ocean.volo.tavg-u-hm-sea.dec.GLB", + "ocean.volo.tavg-u-hm-sea.mon.GLB", + "ocean.vos.tavg-u-hxy-sea.day.GLB", + "ocean.vsf.tavg-u-hxy-sea.mon.GLB", + "ocean.wdir.tavg-u-hxy-sea.mon.GLB", + "ocean.wdir.tpt-u-hxy-sea.3hr.GLB", + "ocean.wdirswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wdirswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wdirwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wdirwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.wfcorr.tavg-u-hxy-sea.mon.GLB", + "ocean.wfo.tavg-u-hxy-sea.3hr.GLB", + "ocean.wfo.tavg-u-hxy-sea.mon.GLB", + "ocean.wmo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.wo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.wpdir.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdir.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpdirswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdirswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpdirwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdirwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpp.tavg-u-hxy-sea.mon.GLB", + "ocean.wpp.tpt-u-hxy-sea.3hr.GLB", + "ocean.wppswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wppswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wppwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wppwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.zfullo.tavg-ol-hxy-sea.yr.GLB", + "ocean.zos.tavg-u-hxy-sea.mon.30S-90S", + "ocean.zossq.tavg-u-hxy-sea.mon.GLB", + "ocean.zostoga.tavg-u-hm-sea.day.GLB", + "ocnBgchem.bacc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.calc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chl.tavg-d0m-hxy-sea.day.GLB", + "ocnBgchem.chl.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chl.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.chl.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chlcalc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chldiat.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chldiaz.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chlmisc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chlpico.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.detoc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dfe.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.dfe.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.dfe.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissic.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.dissic.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissoc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dmso.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.dmso.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.dpco2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.dpo2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.expc.tavg-d1000m-hxy-sea.mon.GLB", + "ocnBgchem.expc.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.expcalc.tavg-d1000m-hxy-sea.mon.GLB", + "ocnBgchem.expcalc.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.fgco2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fric.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.froc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.graz.tavg-ol-hxy-sea.mon.30S-90S", + "ocnBgchem.graz.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.intdic.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intdoc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intparag.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbfe.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbn.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbp.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbsi.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpcalcite.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpn2.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpoc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpp.tavg-u-hxy-sea.day.GLB", + "ocnBgchem.intpp.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpp.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppcalc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppdiat.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppdiaz.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppmisc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppnitrate.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpppico.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.nh4.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.nh4.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.no3.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.no3.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.o2.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.ph.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.ph.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phyc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phyc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phycalc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phycalc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phydiat.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phydiat.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phydiaz.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phymisc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phymisc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phypico.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phypico.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.po4.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.pp.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.si.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.spco2.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.spco2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.talk.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zmeso.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zmeso.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zmicro.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zmicro.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zmisc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zmisc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zooc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zooc.tavg-ol-hxy-sea.mon.GLB", + "seaIce.evspsbl.tavg-u-hxy-si.mon.GLB", + "seaIce.prra.tavg-u-hxy-si.mon.GLB", + "seaIce.prsn.tavg-u-hxy-si.mon.GLB", + "seaIce.rlds.tavg-u-hxy-si.day.GLB", + "seaIce.rlds.tavg-u-hxy-si.mon.GLB", + "seaIce.rlus.tavg-u-hxy-si.day.GLB", + "seaIce.rlus.tavg-u-hxy-si.mon.GLB", + "seaIce.rsds.tavg-u-hxy-si.day.GLB", + "seaIce.rsds.tavg-u-hxy-si.mon.GLB", + "seaIce.rsus.tavg-u-hxy-si.day.GLB", + "seaIce.rsus.tavg-u-hxy-si.mon.GLB", + "seaIce.sbl.tavg-u-hxy-si.mon.GLB", + "seaIce.siage.tavg-u-hxy-si.day.GLB", + "seaIce.siage.tavg-u-hxy-si.mon.30S-90S", + "seaIce.siarea.tavg-u-hm-u.mon.NH", + "seaIce.siarea.tavg-u-hm-u.mon.SH", + "seaIce.siareaacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.siconc.tavg-u-hxy-u.mon.30S-90S", + "seaIce.siconca.tavg-u-hxy-u.day.GLB", + "seaIce.siconca.tavg-u-hxy-u.mon.GLB", + "seaIce.sidconcdyn.tavg-u-hxy-sea.mon.GLB", + "seaIce.sidconcth.tavg-u-hxy-sea.mon.GLB", + "seaIce.sidmassdyn.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthsi.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthwat.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmeltbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmeltlat.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmelttop.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassth.tavg-u-hxy-si.mon.GLB", + "seaIce.sieqthick.tavg-u-hxy-si.mon.GLB", + "seaIce.siextent.tavg-u-hm-u.mon.NH", + "seaIce.siextent.tavg-u-hm-u.mon.SH", + "seaIce.siflcondbot.tavg-u-hxy-si.day.GLB", + "seaIce.siflcondbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflcondtop.tavg-u-hxy-si.day.GLB", + "seaIce.siflcondtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sifllattop.tavg-u-hxy-si.day.GLB", + "seaIce.sifllattop.tavg-u-hxy-si.mon.GLB", + "seaIce.siflsensbot.tavg-u-hxy-si.day.GLB", + "seaIce.siflsensbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflsenstop.tavg-u-hxy-si.day.GLB", + "seaIce.siflsenstop.tavg-u-hxy-si.mon.GLB", + "seaIce.siflswdbot.tavg-u-hxy-si.day.GLB", + "seaIce.siflswdbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sihc.tavg-u-hxy-sea.day.GLB", + "seaIce.sihc.tavg-u-hxy-sea.mon.GLB", + "seaIce.siitdconc.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdsnconc.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdsnthick.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdthick.tavg-u-hxy-si.mon.GLB", + "seaIce.simassacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.simpconc.tavg-u-hxy-si.mon.GLB", + "seaIce.sirdgconc.tavg-u-hxy-si.mon.GLB", + "seaIce.sisaltmass.tavg-u-hxy-si.mon.GLB", + "seaIce.sisndmassdyn.tavg-u-hxy-si.mon.GLB", + "seaIce.sisndmasssi.tavg-u-hxy-si.mon.GLB", + "seaIce.sisndmasswind.tavg-u-hxy-si.mon.GLB", + "seaIce.sisnhc.tavg-u-hxy-si.day.GLB", + "seaIce.sisnhc.tavg-u-hxy-si.mon.GLB", + "seaIce.sisnmass.tavg-u-hm-u.mon.NH", + "seaIce.sisnmass.tavg-u-hm-u.mon.SH", + "seaIce.sisnmassacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.sispeed.tavg-u-hxy-si.day.GLB", + "seaIce.sispeed.tavg-u-hxy-si.mon.GLB", + "seaIce.sistressave.tpt-u-hxy-si.mon.GLB", + "seaIce.sistressmax.tpt-u-hxy-si.mon.GLB", + "seaIce.sistrxdtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sistrxubot.tavg-u-hxy-si.mon.GLB", + "seaIce.sistrydtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sistryubot.tavg-u-hxy-si.mon.GLB", + "seaIce.sitempsnic.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-si.day.GLB", + "seaIce.sithick.tavg-u-hxy-si.mon.30S-90S", + "seaIce.sitimefrac.tavg-u-hxy-sea.day.GLB", + "seaIce.sitimefrac.tavg-u-hxy-sea.mon.30S-90S", + "seaIce.siu.tavg-u-hxy-si.day.GLB", + "seaIce.siu.tavg-u-hxy-si.mon.30S-90S", + "seaIce.siv.tavg-u-hxy-si.day.GLB", + "seaIce.siv.tavg-u-hxy-si.mon.30S-90S", + "seaIce.sivol.tavg-u-hm-u.mon.NH", + "seaIce.sivol.tavg-u-hm-u.mon.SH", + "seaIce.snc.tavg-u-hxy-si.mon.GLB", + "seaIce.snd.tavg-u-hxy-sn.day.GLB", + "seaIce.snd.tavg-u-hxy-sn.mon.30S-90S", + "seaIce.snm.tavg-u-hxy-si.mon.GLB", + "seaIce.snw.tavg-u-hxy-si.mon.GLB", + "seaIce.ts.tavg-u-hxy-si.day.GLB", + "seaIce.ts.tavg-u-hxy-si.mon.30S-90S" + ], + "Medium": [ + "atmos.hfdsnb.tavg-u-hxy-lnd.day.GLB", + "atmos.hfls.tavg-u-hxy-is.mon.ATA", + "atmos.hfss.tavg-u-hxy-is.mon.ATA", + "atmos.hfss.tavg-u-hxy-is.mon.GRL", + "atmos.hur.tavg-700hPa-hxy-air.day.GLB", + "atmos.hur.tpt-100hPa-hxy-u.6hr.GLB", + "atmos.hur.tpt-500hPa-hxy-air.6hr.GLB", + "atmos.hur.tpt-850hPa-hxy-air.6hr.GLB", + "atmos.hurs.tpt-h2m-hxy-u.3hr.GLB", + "atmos.noaahi2m.tavg-h2m-hxy-u.day.GLB", + "atmos.noaahi2m.tmax-h2m-hxy-u.day.GLB", + "atmos.pr.tavg-u-hxy-u.6hr.GLB", + "atmos.pr.tmax-u-hxy-u.6hr.GLB", + "atmos.prra.tavg-u-hxy-is.mon.ATA", + "atmos.prrsn.tavg-u-hxy-lnd.day.GLB", + "atmos.prsn.tavg-u-hxy-is.mon.ATA", + "atmos.prsnc.tavg-u-hxy-lnd.day.GLB", + "atmos.prsnsn.tavg-u-hxy-lnd.day.GLB", + "atmos.ps.tpt-u-hxy-u.3hr.GLB", + "atmos.psitem.tavg-p39-hy-air.day.GLB", + "atmos.psl.tavg-u-hxy-u.6hr.GLB", + "atmos.rlds.tavg-u-hxy-is.mon.ATA", + "atmos.rlds.tavg-u-hxy-is.mon.GRL", + "atmos.rlds.tavg-u-hxy-u.3hr.GLB", + "atmos.rls.tavg-u-hxy-u.day.GLB", + "atmos.rlus.tavg-u-hxy-is.mon.ATA", + "atmos.rlus.tavg-u-hxy-is.mon.GRL", + "atmos.rsds.tavg-u-hxy-is.mon.ATA", + "atmos.rsds.tavg-u-hxy-is.mon.GRL", + "atmos.rsds.tavg-u-hxy-u.3hr.GLB", + "atmos.rsdsdiff.tavg-u-hxy-u.day.GLB", + "atmos.rss.tavg-u-hxy-u.day.GLB", + "atmos.rsus.tavg-u-hxy-is.mon.ATA", + "atmos.rsus.tavg-u-hxy-is.mon.GRL", + "atmos.rv850.tavg-850hPa-hxy-air.6hr.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.3hr.GLB", + "atmos.snmsl.tavg-u-hxy-lnd.day.GLB", + "atmos.snrefr.tavg-u-hxy-lnd.day.GLB", + "atmos.snwc.tavg-u-hxy-lnd.day.GLB", + "atmos.tas.tavg-h2m-hm-is.mon.ATA", + "atmos.tas.tavg-h2m-hm-is.mon.GRL", + "atmos.tauunoegw.tavg-p19-hxy-air.mon.GLB", + "atmos.tauunowgw.tavg-p19-hxy-air.mon.GLB", + "atmos.tauuogw.tavg-p19-hxy-air.mon.GLB", + "atmos.tauupbl.tavg-u-hxy-u.day.GLB", + "atmos.tauvnogw.tavg-p19-hxy-air.mon.GLB", + "atmos.tauvogw.tavg-p19-hxy-air.mon.GLB", + "atmos.tauvpbl.tavg-u-hxy-u.day.GLB", + "atmos.tdps.tavg-h2m-hxy-u.day.GLB", + "atmos.tntc.tavg-p39-hy-air.mon.GLB", + "atmos.tntnogw.tavg-p39-hy-air.mon.GLB", + "atmos.tntogw.tavg-p39-hy-air.mon.GLB", + "atmos.tntrlcs.tavg-p39-hy-air.mon.GLB", + "atmos.tntrscs.tavg-p39-hy-air.mon.GLB", + "atmos.tntscp.tavg-p39-hy-air.mon.GLB", + "atmos.ts.tavg-u-hxy-is.mon.ATA", + "atmos.ts.tavg-u-hxy-is.mon.GRL", + "atmos.ts.tavg-u-hxy-sn.day.GLB", + "atmos.ua.tavg-h100m-hxy-u.3hr.GLB", + "atmos.ua.tpt-200hPa-hxy-u.6hr.GLB", + "atmos.uas.tavg-h10m-hxy-u.6hr.GLB", + "atmos.utendnogw.tavg-p19-hxy-air.day.GLB", + "atmos.utendnogw.tavg-p19-hxy-air.mon.GLB", + "atmos.utendogw.tavg-p19-hxy-air.day.GLB", + "atmos.utendogw.tavg-p19-hxy-air.mon.GLB", + "atmos.va.tavg-h100m-hxy-u.3hr.GLB", + "atmos.va.tpt-200hPa-hxy-u.6hr.GLB", + "atmos.vas.tavg-h10m-hxy-u.6hr.GLB", + "atmos.vtendnogw.tavg-p19-hxy-air.day.GLB", + "atmos.vtendnogw.tavg-p19-hxy-air.mon.GLB", + "atmos.vtendogw.tavg-p19-hxy-air.day.GLB", + "atmos.vtendogw.tavg-p19-hxy-air.mon.GLB", + "atmos.wbgt.tavg-h2m-hxy-u.day.GLB", + "atmos.wbgt.tmax-h2m-hxy-u.day.GLB", + "atmos.zg.tavg-1000hPa-hxy-air.6hr.GLB", + "atmos.zg.tpt-700hPa-hxy-u.6hr.GLB", + "atmos.zg.tpt-925hPa-hxy-u.6hr.GLB", + "atmosChem.flashrate.tavg-u-hxy-u.day.GLB", + "land.areacellg.ti-u-hxy-u.fx.ATA", + "land.areacellg.ti-u-hxy-u.fx.GRL", + "land.baresoilFrac.tavg-u-hxy-u.yr.GLB", + "land.cropFrac.tavg-u-hxy-u.yr.GLB", + "land.dgw.tavg-u-hxy-lnd.day.GLB", + "land.drivw.tavg-u-hxy-lnd.day.GLB", + "land.dsn.tavg-u-hxy-lnd.day.GLB", + "land.dsw.tavg-u-hxy-lnd.day.GLB", + "land.esn.tavg-u-hxy-sn.day.GLB", + "land.grassFrac.tavg-u-hxy-u.yr.GLB", + "land.irrDem.tavg-u-hxy-u.day.GLB", + "land.irrGw.tavg-u-hxy-u.day.GLB", + "land.irrLut.tavg-u-hxy-u.day.GLB", + "land.irrSurf.tavg-u-hxy-u.day.GLB", + "land.mrro.tavg-u-hxy-lnd.3hr.GLB", + "land.mrros.tavg-u-hxy-lnd.3hr.GLB", + "land.mrsol.tpt-d10cm-hxy-lnd.3hr.GLB", + "land.orog.tavg-u-hxy-is.mon.ATA", + "land.orog.tavg-u-hxy-is.mon.GRL", + "land.orog.tavg-u-hxy-is.yr.ATA", + "land.orog.tavg-u-hxy-is.yr.GRL", + "land.qgwr.tavg-u-hxy-lnd.day.GLB", + "land.residualFrac.tavg-u-hxy-u.yr.GLB", + "land.rzwc.tavg-u-hxy-lnd.day.GLB", + "land.sftgif.tavg-u-hxy-u.yr.ATA", + "land.sftgif.tavg-u-hxy-u.yr.GRL", + "land.shrubFrac.tavg-u-hxy-u.yr.GLB", + "land.sw.tavg-u-hxy-lnd.day.GLB", + "land.sweLut.tavg-u-hxy-multi.mon.GLB", + "land.treeFrac.tavg-u-hxy-u.yr.GLB", + "land.vegFrac.tavg-u-hxy-u.yr.GLB", + "landIce.acabf.tavg-u-hxy-is.mon.ATA", + "landIce.acabf.tavg-u-hxy-is.mon.GRL", + "landIce.acabf.tavg-u-hxy-is.yr.ATA", + "landIce.acabf.tavg-u-hxy-is.yr.GRL", + "landIce.agesno.tavg-u-hxy-lnd.mon.GLB", + "landIce.hfdsn.tavg-u-hxy-lnd.day.GLB", + "landIce.hfgeoubed.tavg-u-hxy-gis.yr.ATA", + "landIce.hfgeoubed.tavg-u-hxy-gis.yr.GRL", + "landIce.hfgeoubed.ti-u-hxy-gis.fx.ATA", + "landIce.iareafl.tavg-u-hm-fis.yr.ATA", + "landIce.iareafl.tavg-u-hm-fis.yr.GRL", + "landIce.iareagr.tavg-u-hm-gis.yr.ATA", + "landIce.iareagr.tavg-u-hm-gis.yr.GRL", + "landIce.icem.tavg-u-hxy-is.mon.ATA", + "landIce.icem.tavg-u-hxy-is.mon.GRL", + "landIce.libmassbf.tavg-u-hxy-fis.mon.ATA", + "landIce.libmassbf.tavg-u-hxy-fis.mon.GRL", + "landIce.libmassbf.tavg-u-hxy-fis.yr.ATA", + "landIce.libmassbf.tavg-u-hxy-fis.yr.GRL", + "landIce.libmassbf.tavg-u-hxy-gis.mon.ATA", + "landIce.libmassbf.tavg-u-hxy-gis.mon.GRL", + "landIce.libmassbf.tavg-u-hxy-gis.yr.ATA", + "landIce.libmassbf.tavg-u-hxy-gis.yr.GRL", + "landIce.licalvf.tavg-u-hxy-is.mon.ATA", + "landIce.licalvf.tavg-u-hxy-is.mon.GRL", + "landIce.licalvf.tavg-u-hxy-is.yr.ATA", + "landIce.licalvf.tavg-u-hxy-is.yr.GRL", + "landIce.lifmassbf.tavg-u-hxy-is.mon.ATA", + "landIce.lifmassbf.tavg-u-hxy-is.mon.GRL", + "landIce.lifmassbf.tavg-u-hxy-is.yr.ATA", + "landIce.lifmassbf.tavg-u-hxy-is.yr.GRL", + "landIce.lim.tavg-u-hm-is.yr.ATA", + "landIce.lim.tavg-u-hm-is.yr.GRL", + "landIce.limnsw.tavg-u-hm-is.yr.ATA", + "landIce.limnsw.tavg-u-hm-is.yr.GRL", + "landIce.litempbot.tavg-u-hxy-fis.mon.ATA", + "landIce.litempbot.tavg-u-hxy-fis.mon.GRL", + "landIce.litempbot.tavg-u-hxy-fis.yr.ATA", + "landIce.litempbot.tavg-u-hxy-fis.yr.GRL", + "landIce.litempbot.tavg-u-hxy-gis.mon.ATA", + "landIce.litempbot.tavg-u-hxy-gis.mon.GRL", + "landIce.litempbot.tavg-u-hxy-gis.yr.ATA", + "landIce.litempbot.tavg-u-hxy-gis.yr.GRL", + "landIce.litemptop.tavg-u-hxy-is.mon.ATA", + "landIce.litemptop.tavg-u-hxy-is.mon.GRL", + "landIce.litemptop.tavg-u-hxy-is.yr.ATA", + "landIce.litemptop.tavg-u-hxy-is.yr.GRL", + "landIce.lithk.tavg-u-hxy-is.yr.ATA", + "landIce.lithk.tavg-u-hxy-is.yr.GRL", + "landIce.lithk.ti-u-hxy-is.fx.ATA", + "landIce.lwsnl.tavg-u-hxy-lnd.day.GLB", + "landIce.lwsnl.tavg-u-hxy-lnd.mon.GLB", + "landIce.modelcellareai.tavg-u-hxy-u.yr.ATA", + "landIce.modelcellareai.tavg-u-hxy-u.yr.GRL", + "landIce.mrroLi.tavg-u-hxy-is.mon.ATA", + "landIce.mrroLi.tavg-u-hxy-is.mon.GRL", + "landIce.pflw.tavg-u-hxy-lnd.day.GLB", + "landIce.sbl.tavg-u-hxy-is.mon.ATA", + "landIce.sbl.tavg-u-hxy-is.mon.GRL", + "landIce.sbl.tavg-u-hxy-u.day.GLB", + "landIce.sftflf.tavg-u-hxy-u.yr.ATA", + "landIce.sftflf.tavg-u-hxy-u.yr.GRL", + "landIce.sftgrf.tavg-u-hxy-u.yr.ATA", + "landIce.sftgrf.tavg-u-hxy-u.yr.GRL", + "landIce.snc.tavg-u-hxy-is.mon.ATA", + "landIce.snc.tavg-u-hxy-is.mon.GRL", + "landIce.snc.tavg-u-hxy-is.yr.ATA", + "landIce.snc.tavg-u-hxy-is.yr.GRL", + "landIce.snd.tavg-u-hxy-lnd.day.GLB", + "landIce.snicem.tavg-u-hxy-is.mon.ATA", + "landIce.snm.tavg-u-hxy-is.mon.ATA", + "landIce.snm.tavg-u-hxy-is.mon.GRL", + "landIce.snm.tavg-u-hxy-lnd.day.GLB", + "landIce.snrefr.tavg-u-hxy-is.mon.ATA", + "landIce.snrefr.tavg-u-hxy-is.mon.GRL", + "landIce.strbasemag.tavg-u-hxy-is.yr.ATA", + "landIce.strbasemag.tavg-u-hxy-is.yr.GRL", + "landIce.tendacabf.tavg-u-hm-is.yr.ATA", + "landIce.tendacabf.tavg-u-hm-is.yr.GRL", + "landIce.tendlibmassbf.tavg-u-hm-is.yr.ATA", + "landIce.tendlibmassbf.tavg-u-hm-is.yr.GRL", + "landIce.tendlicalvf.tavg-u-hm-is.yr.ATA", + "landIce.tendlicalvf.tavg-u-hm-is.yr.GRL", + "landIce.topg.tavg-u-hxy-gis.yr.ATA", + "landIce.topg.tavg-u-hxy-gis.yr.GRL", + "landIce.topg.ti-u-hxy-gis.fx.ATA", + "landIce.tpf.tavg-u-hxy-lnd.day.GLB", + "landIce.tsn.tavg-u-hxy-is.mon.ATA", + "landIce.tsn.tavg-u-hxy-is.mon.GRL", + "landIce.tsn.tavg-u-hxy-lnd.day.GLB", + "landIce.xvelbase.tavg-u-hxy-is.yr.ATA", + "landIce.xvelbase.tavg-u-hxy-is.yr.GRL", + "landIce.xvelmean.tavg-u-hxy-is.yr.ATA", + "landIce.xvelmean.tavg-u-hxy-is.yr.GRL", + "landIce.xvelsurf.tavg-u-hxy-is.yr.ATA", + "landIce.xvelsurf.tavg-u-hxy-is.yr.GRL", + "landIce.yvelbase.tavg-u-hxy-is.yr.ATA", + "landIce.yvelbase.tavg-u-hxy-is.yr.GRL", + "landIce.yvelmean.tavg-u-hxy-is.yr.ATA", + "landIce.yvelmean.tavg-u-hxy-is.yr.GRL", + "landIce.yvelsurf.tavg-u-hxy-is.yr.ATA", + "landIce.yvelsurf.tavg-u-hxy-is.yr.GRL", + "landIce.zvelbase.tavg-u-hxy-is.yr.ATA", + "landIce.zvelbase.tavg-u-hxy-is.yr.GRL", + "landIce.zvelsurf.tavg-u-hxy-is.yr.ATA", + "landIce.zvelsurf.tavg-u-hxy-is.yr.GRL", + "ocean.evspsbl.tavg-u-hxy-ifs.mon.GLB", + "ocean.ficeberg.tavg-ol-hxy-sea.mon.GLB", + "ocean.friver.tavg-u-hxy-sea.mon.GLB", + "ocean.hfacrossline.tavg-u-ht-sea.mon.GLB", + "ocean.hfevapds.tavg-u-hxy-ifs.mon.GLB", + "ocean.hfibthermds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfibthermds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfrainds.tavg-u-hxy-ifs.mon.GLB", + "ocean.hfrunoffds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfrunoffds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfsnthermds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfsnthermds.tavg-u-hxy-sea.mon.GLB", + "ocean.mfo.tavg-u-ht-sea.mon.GLB", + "ocean.msftmmpa.tavg-ol-hyb-sea.mon.GLB", + "ocean.sfacrossline.tavg-u-ht-sea.mon.GLB", + "ocean.sfdsi.tavg-u-hxy-sea.mon.GLB", + "ocean.sfriver.tavg-u-hxy-sea.mon.GLB", + "ocean.siflfwbot.tavg-u-hxy-sea.mon.GLB", + "ocean.so.tavg-ol-hxy-sea.day.GLB", + "ocean.t17d.tavg-u-hxy-sea.mon.GLB", + "ocean.t20d.tavg-u-hxy-sea.day.GLB", + "ocean.tnkebto.tavg-u-hxy-sea.yr.GLB", + "ocean.vsfcorr.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfevap.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfpr.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfriver.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfsit.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.arag.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.arag.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.calc.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.calc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chl.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.co3.tavg-d0m-hxy-sea.day.GLB", + "ocnBgchem.co3.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.co3satarag.tavg-d0m-hxy-sea.day.GLB", + "ocnBgchem.co3satarag.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.detoc.tavg-ol-hxy-sea.day.GLB", + "ocnBgchem.dissoc.tavg-ol-hxy-sea.day.GLB", + "ocnBgchem.epsi.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.exparagob.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.expc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.expcalc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.expcalcob.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.expcob.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.expfeob.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.expnob.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.exppob.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.expsiob.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.frfe.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.frn.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppcalc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppdiat.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppdiaz.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppmisc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppnano.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intpppico.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limfecalc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limfediat.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limfediaz.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limfemisc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limfepico.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limirrcalc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limirrdiat.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limirrdiaz.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limirrmisc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limirrpico.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limncalc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limndiat.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limndiaz.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limnmisc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limnpico.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.no3.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.o2.tavg-d0m-hxy-sea.day.GLB", + "ocnBgchem.o2.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.o2.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.o2sat.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.ph.tavg-d0m-hxy-sea.day.GLB", + "ocnBgchem.ph.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.phyc.tavg-d0m-hxy-sea.day.GLB", + "ocnBgchem.phyc.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.phyc.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.pp.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.pp.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.si.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.sialgc.tavg-u-hxy-si.mon.GLB", + "ocnBgchem.sichl.tavg-u-hxy-si.mon.GLB", + "ocnBgchem.sigpp.tavg-u-hxy-si.mon.GLB", + "ocnBgchem.sino3.tavg-u-hxy-si.mon.GLB", + "ocnBgchem.sisi.tavg-u-hxy-si.mon.GLB", + "seaIce.sfdsi.tavg-u-hxy-si.mon.GLB", + "seaIce.siage.tavg-u-hxy-si.mon.GLB", + "seaIce.siarea.tavg-u-hm-u.day.NH", + "seaIce.siarea.tavg-u-hm-u.day.SH", + "seaIce.sicompstren.tavg-u-hxy-si.mon.GLB", + "seaIce.sidivvel.tpt-u-hxy-si.mon.GLB", + "seaIce.sidmasstranx.tavg-u-hxy-u.mon.GLB", + "seaIce.sidmasstrany.tavg-u-hxy-u.mon.GLB", + "seaIce.sidragbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidragtop.tavg-u-hxy-si.mon.GLB", + "seaIce.siextent.tavg-u-hm-u.day.NH", + "seaIce.siextent.tavg-u-hm-u.day.SH", + "seaIce.sifb.tavg-u-hxy-si.day.GLB", + "seaIce.sifb.tavg-u-hxy-si.mon.GLB", + "seaIce.siflfwbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflfwdrain.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcecoriolx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcecorioly.tavg-u-hxy-si.mon.GLB", + "seaIce.siforceintstrx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforceintstry.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcetiltx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcetilty.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdconc.tavg-u-hxy-si.day.GLB", + "seaIce.siitdsnconc.tavg-u-hxy-si.day.GLB", + "seaIce.siitdsnthick.tavg-u-hxy-si.day.GLB", + "seaIce.siitdthick.tavg-u-hxy-si.day.GLB", + "seaIce.simpconc.tavg-u-hxy-si.day.GLB", + "seaIce.simpeffconc.tavg-u-hxy-si.day.GLB", + "seaIce.simpeffconc.tavg-u-hxy-si.mon.GLB", + "seaIce.simprefrozen.tavg-u-hxy-simp.day.GLB", + "seaIce.simprefrozen.tavg-u-hxy-simp.mon.GLB", + "seaIce.simpthick.tavg-u-hxy-si.day.GLB", + "seaIce.simpthick.tavg-u-hxy-simp.mon.GLB", + "seaIce.sirdgconc.tavg-u-hxy-si.day.GLB", + "seaIce.sisali.tavg-u-hxy-si.day.GLB", + "seaIce.sisali.tavg-u-hxy-si.mon.GLB", + "seaIce.sisaltmass.tavg-u-hxy-si.day.GLB", + "seaIce.sishearvel.tpt-u-hxy-si.mon.GLB", + "seaIce.sisnmass.tavg-u-hm-u.day.NH", + "seaIce.sisnmass.tavg-u-hm-u.day.SH", + "seaIce.sitempbot.tavg-u-hxy-si.day.GLB", + "seaIce.sitempbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sitempsnic.tavg-u-hxy-si.day.GLB", + "seaIce.sithick.tavg-u-hxy-sir.day.GLB", + "seaIce.sithick.tavg-u-hxy-sir.mon.GLB", + "seaIce.sivol.tavg-u-hm-u.day.NH", + "seaIce.sivol.tavg-u-hm-u.day.SH" + ], + "Low": [ + "aerosol.ccldncl.tavg-u-hxy-ccl.day.GLB", + "aerosol.sfpm1.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.sfpm10.tavg-h2m-hxy-u.1hr.GLB", + "atmos.cldnci.tavg-u-hxy-cl.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.1hr.GLB", + "atmos.hurs.tmin-h2m-hxy-crp.day.GLB", + "atmos.loaddust.tavg-u-hxy-u.day.GLB", + "atmos.loadnh4.tavg-u-hxy-u.day.GLB", + "atmos.loadno3.tavg-u-hxy-u.day.GLB", + "atmos.loadso4.tavg-u-hxy-u.day.GLB", + "atmos.loadsoa.tavg-u-hxy-u.day.GLB", + "atmos.loadss.tavg-u-hxy-u.day.GLB", + "atmos.pr.tavg-u-hxy-crp.day.GLB", + "atmos.reffcclwtop.tavg-u-hxy-ccl.day.GLB", + "atmos.reffsclwtop.tavg-u-hxy-scl.day.GLB", + "atmos.rsds.tavg-u-hxy-u.1hr.GLB", + "atmos.rsdscsdiff.tavg-u-hxy-u.day.GLB", + "atmos.scldncl.tavg-u-hxy-scl.day.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.1hr.GLB", + "atmos.tas.tmax-h2m-hxy-crp.day.GLB", + "atmos.tas.tmin-h2m-hxy-crp.day.GLB", + "atmos.zfull.ti-al-hxy-u.fx.GLB", + "atmosChem.drynh3.tavg-u-hxy-u.day.GLB", + "atmosChem.drynh4.tavg-u-hxy-u.day.GLB", + "atmosChem.drynoy.tavg-u-hxy-u.day.GLB", + "atmosChem.wetnh3.tavg-u-hxy-u.day.GLB", + "atmosChem.wetnh4.tavg-u-hxy-u.day.GLB", + "atmosChem.wetnoy.tavg-u-hxy-u.day.GLB", + "land.c3PftFrac.tavg-u-hxy-u.mon.GLB", + "land.c4PftFrac.tavg-u-hxy-u.mon.GLB", + "land.cropFracC3.tavg-u-hxy-u.mon.GLB", + "land.cropFracC4.tavg-u-hxy-u.mon.GLB", + "land.fHarvestToAtmos.tavg-u-hxy-lnd.mon.GLB", + "land.irrLut.tavg-u-hxy-multi.mon.GLB", + "land.lai.tavg-u-hxy-lnd.day.GLB", + "land.pastureFrac.tavg-u-hxy-u.mon.GLB", + "land.pastureFracC3.tavg-u-hxy-u.mon.GLB", + "land.pastureFracC4.tavg-u-hxy-u.mon.GLB", + "land.prveg.tavg-u-hxy-lnd.mon.GLB", + "land.residualFrac.tavg-u-hxy-u.mon.GLB", + "land.tas.tavg-u-hxy-u.1hr.GLB", + "ocean.difmxybo.tavg-ol-hxy-sea.yr.GLB", + "ocean.difmxylo.tavg-ol-hxy-sea.yr.GLB", + "ocean.diftrblo.tavg-ol-hxy-sea.yr.GLB", + "ocean.diftrelo.tavg-ol-hxy-sea.yr.GLB", + "ocean.difvho.tavg-ol-hxy-sea.yr.GLB", + "ocean.difvso.tavg-ol-hxy-sea.yr.GLB", + "ocean.dispkexyfo.tavg-u-hxy-sea.yr.GLB", + "ocean.dxto.ti-u-hxy-u.fx.GLB", + "ocean.dxuo.ti-u-hxy-u.fx.GLB", + "ocean.dxvo.ti-u-hxy-u.fx.GLB", + "ocean.dyto.ti-u-hxy-u.fx.GLB", + "ocean.dyuo.ti-u-hxy-u.fx.GLB", + "ocean.dyvo.ti-u-hxy-u.fx.GLB", + "ocean.mlotstsq.tavg-u-hxy-sea.mon.GLB", + "ocean.msftmmpa.tavg-rho-hyb-sea.mon.GLB", + "ocean.msftmsmpa.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftypa.tavg-ol-ht-sea.mon.GLB", + "ocean.msftypa.tavg-rho-ht-sea.mon.GLB", + "ocean.ocontempdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontempmint.tavg-u-hxy-sea.yr.GLB", + "ocean.ocontemppadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemppmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemppsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemprmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemptend.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottempdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottempmint.tavg-u-hxy-sea.yr.GLB", + "ocean.opottemppadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemppmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemppsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemprmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemptend.tavg-ol-hxy-sea.dec.GLB", + "ocean.osaltdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpsmadvect.tavg-ol-hxy-sea.mon.GLB", + "ocean.osaltpsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltrmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osalttend.tavg-ol-hxy-sea.yr.GLB", + "ocean.rsdo.tavg-ol-hxy-sea.day.GLB", + "ocean.rsdoabsorb.tavg-ol-hxy-sea.yr.GLB", + "ocean.somint.tavg-u-hxy-sea.yr.GLB", + "ocean.sossq.tavg-u-hxy-sea.mon.GLB", + "ocean.thkcelluo.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcellvo.tavg-ol-hxy-sea.mon.GLB", + "ocean.tnpeo.tavg-u-hxy-sea.yr.GLB", + "ocean.tossq.tavg-u-hxy-sea.mon.GLB", + "ocean.wo.tavg-ol-hxy-sea.day.GLB", + "ocnBgchem.expcob.tavg-u-hxy-sea.day.GLB", + "ocnBgchem.intpoc.tavg-u-hxy-sea.day.GLB", + "ocnBgchem.o2min.tavg-u-hxy-sea.day.GLB", + "ocnBgchem.phycalc.tavg-ol-hxy-sea.day.GLB", + "ocnBgchem.phydiat.tavg-d0m-hxy-sea.day.GLB", + "ocnBgchem.phydiaz.tavg-d0m-hxy-sea.day.GLB", + "ocnBgchem.phymisc.tavg-d0m-hxy-sea.day.GLB", + "ocnBgchem.phynano.tavg-u-hxy-sea.day.GLB", + "ocnBgchem.phypico.tavg-ol-hxy-sea.day.GLB", + "ocnBgchem.zmeso.tavg-ol-hxy-sea.day.GLB", + "ocnBgchem.zmicro.tavg-ol-hxy-sea.day.GLB", + "ocnBgchem.zooc.tavg-ol-hxy-sea.day.GLB" + ] + }, + "scenariomip10": { + "Core": [ + "atmos.areacella.ti-u-hxy-u.fx.GLB", + "atmos.cl.tavg-al-hxy-u.mon.GLB", + "atmos.cli.tavg-al-hxy-u.mon.GLB", + "atmos.clivi.tavg-u-hxy-u.mon.GLB", + "atmos.clt.tavg-u-hxy-u.day.GLB", + "atmos.clt.tavg-u-hxy-u.mon.GLB", + "atmos.clw.tavg-al-hxy-u.mon.GLB", + "atmos.clwvi.tavg-u-hxy-u.mon.GLB", + "atmos.evspsbl.tavg-u-hxy-u.mon.GLB", + "atmos.hfls.tavg-u-hxy-u.mon.GLB", + "atmos.hfss.tavg-u-hxy-u.mon.GLB", + "atmos.hur.tavg-p19-hxy-air.mon.GLB", + "atmos.hur.tavg-p19-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.6hr.GLB", + "atmos.hurs.tavg-h2m-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.mon.GLB", + "atmos.hus.tavg-p19-hxy-u.day.GLB", + "atmos.hus.tavg-p19-hxy-u.mon.GLB", + "atmos.huss.tavg-h2m-hxy-u.day.GLB", + "atmos.huss.tavg-h2m-hxy-u.mon.GLB", + "atmos.huss.tpt-h2m-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.1hr.GLB", + "atmos.pr.tavg-u-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.day.GLB", + "atmos.pr.tavg-u-hxy-u.mon.GLB", + "atmos.prc.tavg-u-hxy-u.mon.GLB", + "atmos.prsn.tavg-u-hxy-u.mon.GLB", + "atmos.prw.tavg-u-hxy-u.mon.GLB", + "atmos.ps.tavg-u-hxy-u.day.GLB", + "atmos.ps.tavg-u-hxy-u.mon.GLB", + "atmos.psl.tavg-u-hxy-u.day.GLB", + "atmos.psl.tavg-u-hxy-u.mon.GLB", + "atmos.rlds.tavg-u-hxy-u.mon.GLB", + "atmos.rldscs.tavg-u-hxy-u.mon.GLB", + "atmos.rlus.tavg-u-hxy-u.mon.GLB", + "atmos.rluscs.tavg-u-hxy-u.mon.GLB", + "atmos.rlut.tavg-u-hxy-u.mon.GLB", + "atmos.rlutcs.tavg-u-hxy-u.mon.GLB", + "atmos.rsds.tavg-u-hxy-u.day.GLB", + "atmos.rsds.tavg-u-hxy-u.mon.GLB", + "atmos.rsdscs.tavg-u-hxy-u.mon.GLB", + "atmos.rsdt.tavg-u-hxy-u.mon.GLB", + "atmos.rsus.tavg-u-hxy-u.mon.GLB", + "atmos.rsuscs.tavg-u-hxy-u.mon.GLB", + "atmos.rsut.tavg-u-hxy-u.mon.GLB", + "atmos.rsutcs.tavg-u-hxy-u.mon.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.day.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.mon.GLB", + "atmos.sftlf.ti-u-hxy-u.fx.GLB", + "atmos.ta.tavg-p19-hxy-air.day.GLB", + "atmos.ta.tavg-p19-hxy-air.mon.GLB", + "atmos.ta.tpt-p3-hxy-air.6hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.day.GLB", + "atmos.tas.tavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tmax-h2m-hxy-u.day.GLB", + "atmos.tas.tmaxavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tmin-h2m-hxy-u.day.GLB", + "atmos.tas.tminavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tpt-h2m-hxy-u.3hr.GLB", + "atmos.tauu.tavg-u-hxy-u.mon.GLB", + "atmos.tauv.tavg-u-hxy-u.mon.GLB", + "atmos.ts.tavg-u-hxy-u.mon.GLB", + "atmos.ua.tavg-p19-hxy-air.day.GLB", + "atmos.ua.tavg-p19-hxy-air.mon.GLB", + "atmos.ua.tpt-p3-hxy-air.6hr.GLB", + "atmos.uas.tavg-h10m-hxy-u.day.GLB", + "atmos.uas.tavg-h10m-hxy-u.mon.GLB", + "atmos.uas.tpt-h10m-hxy-u.3hr.GLB", + "atmos.va.tavg-p19-hxy-air.day.GLB", + "atmos.va.tavg-p19-hxy-air.mon.GLB", + "atmos.va.tpt-p3-hxy-air.6hr.GLB", + "atmos.vas.tavg-h10m-hxy-u.day.GLB", + "atmos.vas.tavg-h10m-hxy-u.mon.GLB", + "atmos.vas.tpt-h10m-hxy-u.3hr.GLB", + "atmos.wap.tavg-p19-hxy-air.mon.GLB", + "atmos.wap.tavg-p19-hxy-u.day.GLB", + "atmos.zg.tavg-p19-hxy-air.day.GLB", + "atmos.zg.tavg-p19-hxy-air.mon.GLB", + "land.evspsblsoi.tavg-u-hxy-lnd.mon.GLB", + "land.evspsblveg.tavg-u-hxy-lnd.mon.GLB", + "land.lai.tavg-u-hxy-lnd.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.mon.GLB", + "land.mrros.tavg-u-hxy-lnd.mon.GLB", + "land.mrso.tavg-u-hxy-lnd.mon.GLB", + "land.mrsofc.ti-u-hxy-lnd.fx.GLB", + "land.mrsol.tavg-d10cm-hxy-lnd.mon.GLB", + "land.orog.ti-u-hxy-u.fx.GLB", + "land.rootd.ti-u-hxy-lnd.fx.GLB", + "land.sftgif.ti-u-hxy-u.fx.GLB", + "land.slthick.ti-sl-hxy-lnd.fx.GLB", + "landIce.mrfso.tavg-u-hxy-lnd.mon.GLB", + "landIce.snc.tavg-u-hxy-lnd.mon.GLB", + "landIce.snw.tavg-u-hxy-lnd.mon.GLB", + "ocean.areacello.ti-u-hxy-u.fx.GLB", + "ocean.basin.ti-u-hxy-u.fx.GLB", + "ocean.bigthetao.tavg-ol-hxy-sea.mon.GLB", + "ocean.deptho.ti-u-hxy-sea.fx.GLB", + "ocean.hfds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfgeou.ti-u-hxy-sea.fx.GLB", + "ocean.masscello.tavg-ol-hxy-sea.mon.GLB", + "ocean.masscello.ti-ol-hxy-sea.fx.GLB", + "ocean.mlotst.tavg-u-hxy-sea.mon.GLB", + "ocean.sftof.ti-u-hxy-u.fx.GLB", + "ocean.so.tavg-ol-hxy-sea.mon.GLB", + "ocean.sos.tavg-u-hxy-sea.day.GLB", + "ocean.sos.tavg-u-hxy-sea.mon.GLB", + "ocean.tauuo.tavg-u-hxy-sea.mon.GLB", + "ocean.tauvo.tavg-u-hxy-sea.mon.GLB", + "ocean.thetao.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcello.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcello.ti-ol-hxy-sea.fx.GLB", + "ocean.tos.tavg-u-hxy-sea.day.GLB", + "ocean.tos.tavg-u-hxy-sea.mon.GLB", + "ocean.umo.tavg-ol-hxy-sea.mon.GLB", + "ocean.uo.tavg-ol-hxy-sea.mon.GLB", + "ocean.vmo.tavg-ol-hxy-sea.mon.GLB", + "ocean.vo.tavg-ol-hxy-sea.mon.GLB", + "ocean.wmo.tavg-ol-hxy-sea.mon.GLB", + "ocean.wo.tavg-ol-hxy-sea.mon.GLB", + "ocean.zos.tavg-u-hxy-sea.day.GLB", + "ocean.zos.tavg-u-hxy-sea.mon.GLB", + "ocean.zostoga.tavg-u-hm-sea.mon.GLB", + "seaIce.siconc.tavg-u-hxy-u.day.GLB", + "seaIce.siconc.tavg-u-hxy-u.mon.GLB", + "seaIce.simass.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-si.mon.GLB", + "seaIce.sitimefrac.tavg-u-hxy-sea.mon.GLB", + "seaIce.siu.tavg-u-hxy-si.mon.GLB", + "seaIce.siv.tavg-u-hxy-si.mon.GLB", + "seaIce.snd.tavg-u-hxy-sn.mon.GLB", + "seaIce.ts.tavg-u-hxy-si.mon.GLB" + ], + "High": [ + "aerosol.abs550aer.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550bc.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550dust.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550no3.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550oa.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550so4.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550ss.tavg-u-hxy-u.mon.GLB", + "aerosol.airmass.tavg-al-hxy-u.mon.GLB", + "aerosol.aoanh.tavg-al-hxy-u.mon.NH", + "aerosol.bry.tavg-p39-hy-air.mon.GLB", + "aerosol.bs550aer.tpt-al-hxy-u.6hr.GLB", + "aerosol.c2h6.tavg-al-hxy-u.mon.GLB", + "aerosol.c3h6.tavg-al-hxy-u.mon.GLB", + "aerosol.c3h8.tavg-al-hxy-u.mon.GLB", + "aerosol.ccldncl.tavg-u-hxy-ccl.mon.GLB", + "aerosol.ccn.tavg-u-hxy-ccl.mon.30S-90S", + "aerosol.ccn.tavg-u-hxy-ccl.mon.GLB", + "aerosol.ccn1.tavg-al-hxy-u.mon.30S-90S", + "aerosol.ccn1.tavg-al-hxy-u.mon.GLB", + "aerosol.ccnp02.tavg-al-hxy-u.mon.30S-90S", + "aerosol.ccnp02.tavg-al-hxy-u.mon.GLB", + "aerosol.cdnc.tavg-al-hxy-u.mon.30S-90S", + "aerosol.cdnc.tavg-al-hxy-u.mon.GLB", + "aerosol.cfc114.tavg-al-hxy-u.mon.GLB", + "aerosol.ch3coch3.tavg-al-hxy-u.mon.GLB", + "aerosol.cheaqpso4.tavg-al-hxy-u.mon.GLB", + "aerosol.chegpso4.tavg-al-hxy-u.mon.GLB", + "aerosol.chepasoa.tavg-u-hxy-u.mon.GLB", + "aerosol.chepsoa.tavg-u-hxy-u.mon.GLB", + "aerosol.cly.tavg-p39-hy-air.mon.GLB", + "aerosol.co.tavg-al-hxy-u.mon.GLB", + "aerosol.co.tavg-h2m-hxy-u.day.GLB", + "aerosol.cod.tavg-u-hxy-u.day.GLB", + "aerosol.cod.tavg-u-hxy-u.mon.30S-90S", + "aerosol.cod.tavg-u-hxy-u.mon.GLB", + "aerosol.conccn.tavg-al-hxy-u.mon.GLB", + "aerosol.conccn.tpt-u-hs-u.3hr.GLB", + "aerosol.depdust.tavg-u-hxy-u.mon.GLB", + "aerosol.drybc.tavg-u-hxy-u.mon.GLB", + "aerosol.drydust.tavg-u-hxy-u.mon.GLB", + "aerosol.dryno3.tavg-u-hxy-u.mon.GLB", + "aerosol.dryo3.tavg-u-hxy-u.mon.GLB", + "aerosol.dryoa.tavg-u-hxy-u.mon.GLB", + "aerosol.dryso2.tavg-u-hxy-u.mon.GLB", + "aerosol.dryso4.tavg-u-hxy-u.mon.GLB", + "aerosol.dryss.tavg-u-hxy-u.mon.GLB", + "aerosol.ec550aer.tavg-al-hxy-u.mon.GLB", + "aerosol.ec550aer.tpt-u-hxy-u.6hr.GLB", + "aerosol.emiaco.tavg-u-hxy-u.mon.GLB", + "aerosol.emianox.tavg-u-hxy-u.mon.GLB", + "aerosol.emiaoa.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbbc.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbch4.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbco.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbdms.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbnh3.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbnox.tavg-u-hxy-u.mon.GLB", + "aerosol.emibboa.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbso2.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbvoc.tavg-u-hxy-u.mon.GLB", + "aerosol.emibc.tavg-u-hxy-u.mon.GLB", + "aerosol.emibvoc.tavg-u-hxy-u.mon.GLB", + "aerosol.emico.tavg-u-hxy-u.mon.GLB", + "aerosol.emidms.tavg-u-hxy-u.mon.30S-90S", + "aerosol.emidms.tavg-u-hxy-u.mon.GLB", + "aerosol.emidust.tavg-u-hxy-u.mon.GLB", + "aerosol.emiisop.tavg-u-hxy-u.mon.GLB", + "aerosol.emilnox.tavg-al-hxy-u.mon.GLB", + "aerosol.eminh3.tavg-u-hxy-u.mon.GLB", + "aerosol.eminox.tavg-u-hxy-u.mon.GLB", + "aerosol.emioa.tavg-u-hxy-u.mon.GLB", + "aerosol.emiso2.tavg-u-hxy-u.mon.GLB", + "aerosol.emiso4.tavg-u-hxy-u.mon.GLB", + "aerosol.emiss.tavg-u-hxy-u.mon.30S-90S", + "aerosol.emiss.tavg-u-hxy-u.mon.GLB", + "aerosol.emivoc.tavg-u-hxy-u.mon.GLB", + "aerosol.h2o.tavg-al-hxy-u.mon.GLB", + "aerosol.h2o.tavg-p39-hy-air.mon.GLB", + "aerosol.hcfc22.tavg-al-hxy-u.mon.GLB", + "aerosol.hcho.tavg-al-hxy-u.mon.GLB", + "aerosol.hcl.tavg-al-hxy-u.mon.GLB", + "aerosol.hcl.tavg-p39-hy-air.mon.GLB", + "aerosol.hfc125.tavg-al-hxy-u.mon.GLB", + "aerosol.hfc134a.tavg-al-hxy-u.mon.GLB", + "aerosol.hno3.tavg-al-hxy-u.mon.GLB", + "aerosol.hno3.tavg-p39-hy-air.mon.GLB", + "aerosol.ho2.tavg-p39-hy-air.mon.GLB", + "aerosol.isop.tavg-al-hxy-u.mon.GLB", + "aerosol.jno2.tavg-al-hxy-u.mon.GLB", + "aerosol.lossch4.tavg-al-hxy-u.mon.GLB", + "aerosol.lossco.tavg-al-hxy-u.mon.GLB", + "aerosol.lossn2o.tavg-al-hxy-u.mon.GLB", + "aerosol.lwp.tavg-u-hxy-u.mon.GLB", + "aerosol.mmraerh2o.tavg-al-hxy-u.mon.GLB", + "aerosol.mmraerh2o.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmraerh2o.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrbc.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrbc.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrbc.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrbc.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrdust.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrdust.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrdust.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrdust.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrnh4.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrnh4.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrnh4.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrnh4.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrno3.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrno3.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrno3.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrno3.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmroa.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmroa.tavg-al-hxy-u.mon.GLB", + "aerosol.mmroa.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmroa.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrpm1.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrpm1.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrpm2p5.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrpm2p5.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrso4.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrso4.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrso4.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrso4.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrsoa.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrsoa.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrsoa.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrss.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrss.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrss.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrss.tpt-h2m-hs-u.3hr.GLB", + "aerosol.nh50.tavg-al-hxy-u.mon.GLB", + "aerosol.no.tavg-al-hxy-u.mon.GLB", + "aerosol.no2.tavg-al-hxy-u.mon.GLB", + "aerosol.no2.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.noy.tavg-p39-hy-air.mon.GLB", + "aerosol.o3.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.o3.tmax-h2m-hxy-u.day.GLB", + "aerosol.o3loss.tavg-al-hxy-u.mon.GLB", + "aerosol.o3prod.tavg-al-hxy-u.mon.GLB", + "aerosol.od443aer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550aer.tavg-u-hxy-u.day.GLB", + "aerosol.od550aer.tavg-u-hxy-u.mon.30S-90S", + "aerosol.od550aer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550aerh2o.tavg-u-hxy-u.mon.GLB", + "aerosol.od550bb.tavg-u-hxy-u.mon.GLB", + "aerosol.od550bc.tavg-u-hxy-u.mon.GLB", + "aerosol.od550csaer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550dust.tavg-u-hxy-u.mon.GLB", + "aerosol.od550lt1aer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550no3.tavg-u-hxy-u.mon.GLB", + "aerosol.od550oa.tavg-u-hxy-u.mon.GLB", + "aerosol.od550so4.tavg-u-hxy-u.mon.GLB", + "aerosol.od550soa.tavg-u-hxy-u.mon.GLB", + "aerosol.od550ss.tavg-u-hxy-u.mon.GLB", + "aerosol.od865aer.tavg-u-hxy-u.mon.GLB", + "aerosol.oh.tavg-al-hxy-u.mon.GLB", + "aerosol.oh.tavg-p39-hy-air.mon.GLB", + "aerosol.pan.tavg-al-hxy-u.mon.GLB", + "aerosol.photo1d.tavg-al-hxy-u.mon.GLB", + "aerosol.pod0.tsum-u-hxy-u.mon.GLB", + "aerosol.reffccwctop.tavg-u-hxy-cl.mon.GLB", + "aerosol.reffclwtop.tavg-u-hxy-cl.mon.30S-90S", + "aerosol.reffclwtop.tavg-u-hxy-cl.mon.GLB", + "aerosol.rluscsaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rlutaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rlutcsaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rsutaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rsutcsaf.tavg-u-hxy-u.mon.GLB", + "aerosol.sfpm1.tavg-h2m-hxy-u.day.GLB", + "aerosol.sfpm10.tavg-al-hxy-u.mon.30S-90S", + "aerosol.sfpm10.tavg-al-hxy-u.mon.GLB", + "aerosol.sfpm10.tavg-h2m-hxy-u.day.GLB", + "aerosol.sfpm25.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.sfpm25.tavg-h2m-hxy-u.day.GLB", + "aerosol.so2.tavg-al-hxy-u.mon.30S-90S", + "aerosol.so2.tavg-al-hxy-u.mon.GLB", + "aerosol.so2.tavg-h2m-hxy-u.day.GLB", + "aerosol.so2.tpt-h2m-hs-u.3hr.GLB", + "aerosol.tatp.tavg-u-hxy-u.mon.GLB", + "aerosol.toz.tavg-u-hxy-u.day.GLB", + "aerosol.toz.tavg-u-hxy-u.mon.GLB", + "aerosol.tropoz.tavg-u-hxy-u.mon.GLB", + "aerosol.ttop.tavg-u-hxy-cl.mon.GLB", + "aerosol.ua.tavg-10hPa-hxy-air.day.GLB", + "aerosol.vt100.tavg-100hPa-hy-air.mon.GLB", + "aerosol.wa.tavg-al-hxy-u.mon.GLB", + "aerosol.wetbc.tavg-u-hxy-u.mon.GLB", + "aerosol.wetdust.tavg-u-hxy-u.mon.GLB", + "aerosol.wetoa.tavg-u-hxy-u.mon.GLB", + "aerosol.wetso2.tavg-u-hxy-u.mon.GLB", + "aerosol.wetso4.tavg-u-hxy-u.mon.GLB", + "aerosol.wetss.tavg-u-hxy-u.mon.GLB", + "aerosol.zg.tavg-10hPa-hxy-air.day.GLB", + "atmos.albisccp.tavg-u-hxy-cl.mon.30S-90S", + "atmos.bldep.tavg-u-hxy-u.mon.GLB", + "atmos.bldep.tmax-u-hxy-u.day.GLB", + "atmos.bldep.tmin-u-hxy-u.day.GLB", + "atmos.bldep.tpt-u-hxy-u.3hr.GLB", + "atmos.cl.tavg-al-hxy-u.day.GLB", + "atmos.cl.tavg-al-hxy-u.mon.30S-90S", + "atmos.clc.tavg-al-hxy-u.mon.30S-90S", + "atmos.clc.tavg-al-hxy-u.mon.GLB", + "atmos.clcalipso.tavg-220hPa-hxy-air.mon.30S-90S", + "atmos.clcalipso.tavg-220hPa-hxy-air.mon.GLB", + "atmos.clcalipso.tavg-560hPa-hxy-air.mon.30S-90S", + "atmos.clcalipso.tavg-560hPa-hxy-air.mon.GLB", + "atmos.clcalipso.tavg-840hPa-hxy-air.mon.30S-90S", + "atmos.clcalipso.tavg-840hPa-hxy-air.mon.GLB", + "atmos.clcalipso.tavg-h40-hxy-air.mon.30S-90S", + "atmos.clcalipso.tavg-h40-hxy-air.mon.GLB", + "atmos.cldnci.tavg-u-hxy-cl.mon.GLB", + "atmos.cldncl.tavg-u-hxy-cl.mon.GLB", + "atmos.cldnvi.tavg-u-hxy-u.day.GLB", + "atmos.cldnvi.tavg-u-hxy-u.mon.GLB", + "atmos.cli.tavg-al-hxy-u.day.GLB", + "atmos.cli.tavg-al-hxy-u.mon.30S-90S", + "atmos.clic.tavg-al-hxy-u.mon.30S-90S", + "atmos.clis.tavg-al-hxy-u.mon.30S-90S", + "atmos.clisccp.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clisccp.tavg-p7c-hxy-air.mon.GLB", + "atmos.clivi.tavg-u-hxy-u.3hr.GLB", + "atmos.clivi.tavg-u-hxy-u.day.GLB", + "atmos.clivi.tavg-u-hxy-u.mon.30S-90S", + "atmos.clivimodis.tavg-u-hxy-u.mon.30S-90S", + "atmos.clivimodis.tavg-u-hxy-u.mon.GLB", + "atmos.clmodis.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clmodis.tavg-p7c-hxy-air.mon.GLB", + "atmos.clmodisice.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clmodisice.tavg-p7c-hxy-air.mon.GLB", + "atmos.clmodisiceReff.tavg-u-hxy-u.mon.GLB", + "atmos.clmodisliquid.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clmodisliquid.tavg-p7c-hxy-air.mon.GLB", + "atmos.clmodisliquidReff.tavg-u-hxy-u.mon.GLB", + "atmos.cls.tavg-al-hxy-u.mon.30S-90S", + "atmos.clt.tavg-u-hxy-lnd.day.GLB", + "atmos.clt.tavg-u-hxy-u.1hr.30S-90S", + "atmos.clt.tavg-u-hxy-u.3hr.GLB", + "atmos.clt.tavg-u-hxy-u.mon.30S-90S", + "atmos.cltc.tavg-u-hxy-u.mon.GLB", + "atmos.cltcalipso.tavg-u-hxy-u.day.GLB", + "atmos.cltcalipso.tavg-u-hxy-u.mon.30S-90S", + "atmos.cltcalipso.tavg-u-hxy-u.mon.GLB", + "atmos.cltcalipso.tpt-u-hxy-u.3hr.GLB", + "atmos.cltisccp.tavg-u-hxy-u.day.GLB", + "atmos.cltisccp.tavg-u-hxy-u.mon.30S-90S", + "atmos.cltisccp.tavg-u-hxy-u.mon.GLB", + "atmos.cltmodis.tavg-u-hxy-u.mon.30S-90S", + "atmos.cltmodis.tavg-u-hxy-u.mon.GLB", + "atmos.clw.tavg-al-hxy-u.day.GLB", + "atmos.clw.tavg-al-hxy-u.mon.30S-90S", + "atmos.clwc.tavg-al-hxy-u.mon.30S-90S", + "atmos.clws.tavg-al-hxy-u.mon.30S-90S", + "atmos.clwvi.tavg-u-hxy-u.3hr.GLB", + "atmos.clwvi.tavg-u-hxy-u.day.GLB", + "atmos.clwvi.tavg-u-hxy-u.mon.30S-90S", + "atmos.clwvimodis.tavg-u-hxy-u.mon.30S-90S", + "atmos.clwvimodis.tavg-u-hxy-u.mon.GLB", + "atmos.co2.tavg-al-hxy-u.mon.GLB", + "atmos.co2.tavg-h2m-hxy-u.mon.GLB", + "atmos.co2.tavg-p19-hxy-air.mon.GLB", + "atmos.co2.tclm-p19-hxy-air.mon.GLB", + "atmos.co2.tclm-u-hm-u.mon.GLB", + "atmos.co23D.tavg-al-hxy-u.mon.GLB", + "atmos.co2mass.tavg-u-hm-u.mon.GLB", + "atmos.dmc.tavg-alh-hxy-u.mon.30S-90S", + "atmos.edt.tavg-al-hxy-u.mon.30S-90S", + "atmos.epfy.tavg-p39-hy-air.day.GLB", + "atmos.epfy.tavg-p39-hy-air.mon.GLB", + "atmos.epfz.tavg-p39-hy-air.day.GLB", + "atmos.epfz.tavg-p39-hy-air.mon.GLB", + "atmos.evspsbl.tavg-u-hxy-lnd.day.GLB", + "atmos.evu.tavg-al-hxy-u.mon.30S-90S", + "atmos.fco2antt.tavg-u-hxy-u.mon.GLB", + "atmos.fco2fos.tavg-u-hxy-u.mon.GLB", + "atmos.fco2nat.tavg-u-hxy-u.mon.GLB", + "atmos.hfls.tavg-u-hxy-is.mon.GRL", + "atmos.hfls.tavg-u-hxy-u.3hr.GLB", + "atmos.hfls.tavg-u-hxy-u.day.GLB", + "atmos.hfls.tavg-u-hxy-u.mon.30S-90S", + "atmos.hfss.tavg-u-hxy-u.3hr.GLB", + "atmos.hfss.tavg-u-hxy-u.day.GLB", + "atmos.hfss.tavg-u-hxy-u.mon.30S-90S", + "atmos.hur.tavg-al-hxy-u.mon.30S-90S", + "atmos.hur.tavg-al-hxy-u.mon.GLB", + "atmos.hur.tavg-p19-hxy-air.mon.30S-90S", + "atmos.hurs.tavg-h2m-hxy-u.1hr.30S-90S", + "atmos.hurs.tavg-h2m-hxy-u.mon.30S-90S", + "atmos.hurs.tmax-h2m-hxy-u.day.GLB", + "atmos.hurs.tmin-h2m-hxy-u.day.GLB", + "atmos.hurs.tpt-h2m-hxy-u.3hr.GLB", + "atmos.hus.tavg-al-hxy-u.mon.30S-90S", + "atmos.hus.tavg-al-hxy-u.mon.GLB", + "atmos.hus.tavg-p19-hxy-u.mon.30S-90S", + "atmos.hus.tpt-al-hxy-u.6hr.GLB", + "atmos.hus.tpt-p7h-hxy-air.6hr.GLB", + "atmos.huss.tavg-h2m-hxy-u.6hr.GLB", + "atmos.huss.tavg-h2m-hxy-u.mon.30S-90S", + "atmos.huss.tpt-h2m-hxy-u.1hr.GLB", + "atmos.intuadse.tavg-u-hxy-u.day.GLB", + "atmos.intuadse.tavg-u-hxy-u.mon.GLB", + "atmos.intuaw.tavg-u-hxy-u.day.GLB", + "atmos.intuaw.tavg-u-hxy-u.mon.GLB", + "atmos.intuaw.tpt-u-hxy-u.6hr.GLB", + "atmos.intvadse.tavg-u-hxy-u.day.GLB", + "atmos.intvadse.tavg-u-hxy-u.mon.GLB", + "atmos.intvaw.tavg-u-hxy-u.day.GLB", + "atmos.intvaw.tavg-u-hxy-u.mon.GLB", + "atmos.intvaw.tpt-u-hxy-u.6hr.GLB", + "atmos.loadbc.tavg-u-hxy-u.day.GLB", + "atmos.loadoa.tavg-u-hxy-u.day.GLB", + "atmos.loadpoa.tavg-u-hxy-u.day.GLB", + "atmos.mc.tavg-alh-hxy-u.mon.GLB", + "atmos.mcd.tavg-alh-hxy-u.mon.30S-90S", + "atmos.mcu.tavg-alh-hxy-u.mon.30S-90S", + "atmos.mcu.tavg-alh-hxy-u.mon.GLB", + "atmos.pctisccp.tavg-u-hxy-cl.day.GLB", + "atmos.pctisccp.tavg-u-hxy-cl.mon.30S-90S", + "atmos.pctisccp.tavg-u-hxy-cl.mon.GLB", + "atmos.pfull.tavg-al-hxy-u.day.GLB", + "atmos.pfull.tavg-al-hxy-u.mon.GLB", + "atmos.pfull.tclm-al-hxy-u.mon.30S-90S", + "atmos.phalf.tavg-alh-hxy-u.mon.GLB", + "atmos.pr.tavg-u-hxy-u.1hr.30S-90S", + "atmos.pr.tavg-u-hxy-u.mon.30S-90S", + "atmos.pr.tmax-u-hxy-u.day.GLB", + "atmos.pr.tpt-u-hxy-u.6hr.GLB", + "atmos.pr17O.tavg-u-hxy-u.mon.GLB", + "atmos.pr18O.tavg-u-hxy-u.mon.GLB", + "atmos.pr2h.tavg-u-hxy-u.mon.GLB", + "atmos.prc.tavg-u-hxy-u.day.GLB", + "atmos.prc.tavg-u-hxy-u.mon.30S-90S", + "atmos.prra.tavg-u-hxy-is.mon.GRL", + "atmos.prra.tavg-u-hxy-lnd.day.GLB", + "atmos.prra.tavg-u-hxy-u.6hr.GLB", + "atmos.prra.tavg-u-hxy-u.mon.30S-90S", + "atmos.prra.tavg-u-hxy-u.mon.GLB", + "atmos.prsn.tavg-u-hxy-is.mon.GRL", + "atmos.prsn.tavg-u-hxy-u.3hr.GLB", + "atmos.prsn.tavg-u-hxy-u.6hr.GLB", + "atmos.prsn.tavg-u-hxy-u.day.GLB", + "atmos.prsn.tavg-u-hxy-u.mon.30S-90S", + "atmos.prsn18O.tavg-u-hxy-u.mon.GLB", + "atmos.prsn2h.tavg-u-hxy-u.mon.GLB", + "atmos.prw.tavg-u-hxy-u.3hr.GLB", + "atmos.prw.tavg-u-hxy-u.day.GLB", + "atmos.prw.tavg-u-hxy-u.mon.30S-90S", + "atmos.prw.tpt-u-hxy-u.6hr.GLB", + "atmos.ps.tavg-u-hxy-u.1hr.GLB", + "atmos.ps.tavg-u-hxy-u.6hr.GLB", + "atmos.ps.tavg-u-hxy-u.mon.30S-90S", + "atmos.ps.tpt-u-hxy-u.1hr.30S-90S", + "atmos.ps.tpt-u-hxy-u.3hr.GLB", + "atmos.ps.tpt-u-hxy-u.6hr.GLB", + "atmos.psl.tavg-u-hxy-u.mon.30S-90S", + "atmos.psl.tpt-u-hxy-u.1hr.GLB", + "atmos.psl.tpt-u-hxy-u.6hr.GLB", + "atmos.ptp.tavg-u-hxy-u.mon.GLB", + "atmos.reffcclwtop.tavg-u-hxy-ccl.mon.GLB", + "atmos.reffclic.tavg-al-hxy-ccl.mon.30S-90S", + "atmos.reffclic.tavg-al-hxy-ccl.mon.GLB", + "atmos.reffclis.tavg-al-hxy-scl.mon.30S-90S", + "atmos.reffclis.tavg-al-hxy-scl.mon.GLB", + "atmos.reffclwc.tavg-al-hxy-ccl.mon.30S-90S", + "atmos.reffclwc.tavg-al-hxy-ccl.mon.GLB", + "atmos.reffclws.tavg-al-hxy-scl.mon.30S-90S", + "atmos.reffclws.tavg-al-hxy-scl.mon.GLB", + "atmos.reffsclwtop.tavg-u-hxy-scl.mon.GLB", + "atmos.rld.tavg-alh-hxy-u.mon.GLB", + "atmos.rld4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rldcs.tavg-alh-hxy-u.mon.GLB", + "atmos.rldcs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rlds.tavg-u-hxy-u.1hr.30S-90S", + "atmos.rlds.tavg-u-hxy-u.1hr.GLB", + "atmos.rlds.tavg-u-hxy-u.3hr.GLB", + "atmos.rlds.tavg-u-hxy-u.6hr.GLB", + "atmos.rlds.tavg-u-hxy-u.day.GLB", + "atmos.rlds.tavg-u-hxy-u.mon.30S-90S", + "atmos.rldscs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rls.tavg-u-hxy-u.mon.GLB", + "atmos.rlu.tavg-alh-hxy-u.mon.GLB", + "atmos.rlu4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rlucs.tavg-alh-hxy-u.mon.GLB", + "atmos.rlucs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rlus.tavg-u-hxy-u.3hr.GLB", + "atmos.rlus.tavg-u-hxy-u.day.GLB", + "atmos.rlus.tavg-u-hxy-u.mon.30S-90S", + "atmos.rlut.tavg-u-hxy-u.3hr.GLB", + "atmos.rlut.tavg-u-hxy-u.day.GLB", + "atmos.rlut.tavg-u-hxy-u.mon.30S-90S", + "atmos.rlut4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rlutcs.tavg-u-hxy-u.3hr.GLB", + "atmos.rlutcs.tavg-u-hxy-u.day.GLB", + "atmos.rlutcs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rlutcs4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rsd.tavg-alh-hxy-u.mon.GLB", + "atmos.rsd4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsdcs.tavg-alh-hxy-u.mon.GLB", + "atmos.rsdcs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsds.tavg-u-hxy-u.1hr.30S-90S", + "atmos.rsds.tavg-u-hxy-u.1hr.GLB", + "atmos.rsds.tavg-u-hxy-u.3hr.GLB", + "atmos.rsds.tavg-u-hxy-u.6hr.GLB", + "atmos.rsds.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsdscs.tavg-u-hxy-u.day.GLB", + "atmos.rsdscs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsdt.tavg-u-hxy-u.day.GLB", + "atmos.rsdt.tavg-u-hxy-u.mon.30S-90S", + "atmos.rss.tavg-u-hxy-u.mon.GLB", + "atmos.rsu.tavg-alh-hxy-u.mon.GLB", + "atmos.rsu4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsucs.tavg-alh-hxy-u.mon.GLB", + "atmos.rsucs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsus.tavg-u-hxy-u.3hr.GLB", + "atmos.rsus.tavg-u-hxy-u.day.GLB", + "atmos.rsus.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsuscs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsut.tavg-u-hxy-u.3hr.GLB", + "atmos.rsut.tavg-u-hxy-u.day.GLB", + "atmos.rsut.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsut4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rsutcs.tavg-u-hxy-u.3hr.GLB", + "atmos.rsutcs.tavg-u-hxy-u.day.GLB", + "atmos.rsutcs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsutcs4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rtmt.tavg-u-hxy-u.mon.GLB", + "atmos.rv850.tpt-850hPa-hxy-air.6hr.GLB", + "atmos.scldncl.tavg-u-hxy-scl.mon.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.1hr.30S-90S", + "atmos.sfcWind.tavg-h10m-hxy-u.6hr.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.mon.30S-90S", + "atmos.sfcWind.tmax-h10m-hxy-u.day.GLB", + "atmos.ta.tavg-700hPa-hxy-air.day.GLB", + "atmos.ta.tavg-al-hxy-u.mon.30S-90S", + "atmos.ta.tavg-al-hxy-u.mon.GLB", + "atmos.ta.tavg-p19-hxy-air.mon.30S-90S", + "atmos.ta.tavg-p39-hy-air.day.GLB", + "atmos.ta.tavg-p39-hy-air.mon.GLB", + "atmos.ta.tpt-al-hxy-u.6hr.GLB", + "atmos.ta.tpt-p5u-hxy-u.6hr.GLB", + "atmos.ta.tpt-p7h-hxy-air.6hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.1hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.6hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.mon.30S-90S", + "atmos.tas.tmaxavg-h2m-hxy-u.mon.30S-90S", + "atmos.tas.tminavg-h2m-hxy-u.mon.30S-90S", + "atmos.tauu.tavg-u-hxy-u.day.GLB", + "atmos.tauunoegw.tavg-p39-hy-air.day.GLB", + "atmos.tauunowgw.tavg-p39-hy-air.day.GLB", + "atmos.tauuogw.tavg-p39-hy-air.day.GLB", + "atmos.tauv.tavg-u-hxy-u.day.GLB", + "atmos.tauvnogw.tavg-p39-hy-air.day.GLB", + "atmos.tauvogw.tavg-p39-hy-air.day.GLB", + "atmos.tdps.tavg-h2m-hxy-u.mon.GLB", + "atmos.tnt.tavg-al-hxy-u.mon.GLB", + "atmos.tntmp.tavg-p39-hy-air.day.GLB", + "atmos.tntmp.tavg-p39-hy-air.mon.GLB", + "atmos.tntrl.tavg-al-hxy-u.mon.GLB", + "atmos.tntrl.tavg-p39-hy-air.day.GLB", + "atmos.tntrl.tavg-p39-hy-air.mon.GLB", + "atmos.tntrs.tavg-al-hxy-u.mon.GLB", + "atmos.tntrs.tavg-p39-hy-air.day.GLB", + "atmos.tntrs.tavg-p39-hy-air.mon.GLB", + "atmos.ts.tavg-u-hxy-u.6hr.GLB", + "atmos.ts.tavg-u-hxy-u.day.GLB", + "atmos.ts.tavg-u-hxy-u.mon.30S-90S", + "atmos.ts.tpt-u-hxy-u.3hr.GLB", + "atmos.ts.tpt-u-hxy-u.6hr.GLB", + "atmos.ua.tavg-al-hxy-u.mon.GLB", + "atmos.ua.tavg-p19-hxy-air.mon.30S-90S", + "atmos.ua.tavg-p39-hy-air.day.GLB", + "atmos.ua.tavg-p39-hy-air.mon.GLB", + "atmos.ua.tpt-al-hxy-u.6hr.GLB", + "atmos.ua.tpt-h100m-hxy-u.1hr.GLB", + "atmos.ua.tpt-p5u-hxy-air.6hr.GLB", + "atmos.ua.tpt-p7h-hxy-air.6hr.GLB", + "atmos.uas.tavg-h10m-hxy-u.mon.30S-90S", + "atmos.uas.tpt-h10m-hxy-u.1hr.GLB", + "atmos.uas.tpt-h10m-hxy-u.6hr.GLB", + "atmos.utendepfd.tavg-p39-hy-air.day.GLB", + "atmos.utendepfd.tavg-p39-hy-air.mon.GLB", + "atmos.utendnogw.tavg-p39-hy-air.day.GLB", + "atmos.utendnogw.tavg-p39-hy-air.mon.GLB", + "atmos.utendogw.tavg-p39-hy-air.day.GLB", + "atmos.utendogw.tavg-p39-hy-air.mon.GLB", + "atmos.utendvtem.tavg-p39-hy-air.day.GLB", + "atmos.utendwtem.tavg-p39-hy-air.day.GLB", + "atmos.va.tavg-al-hxy-u.mon.GLB", + "atmos.va.tavg-p19-hxy-air.mon.30S-90S", + "atmos.va.tavg-p39-hy-air.mon.GLB", + "atmos.va.tpt-al-hxy-u.6hr.GLB", + "atmos.va.tpt-h100m-hxy-u.1hr.GLB", + "atmos.va.tpt-p5u-hxy-air.6hr.GLB", + "atmos.va.tpt-p7h-hxy-air.6hr.GLB", + "atmos.vas.tavg-h10m-hxy-u.mon.30S-90S", + "atmos.vas.tpt-h10m-hxy-u.1hr.GLB", + "atmos.vas.tpt-h10m-hxy-u.6hr.GLB", + "atmos.vtem.tavg-p39-hy-air.day.GLB", + "atmos.vtem.tavg-p39-hy-air.mon.GLB", + "atmos.wap.tavg-p19-hxy-air.mon.30S-90S", + "atmos.wsg.tmax-h100m-hxy-u.1hr.GLB", + "atmos.wsg.tmax-h10m-hxy-u.1hr.GLB", + "atmos.wtem.tavg-p39-hy-air.day.GLB", + "atmos.wtem.tavg-p39-hy-air.mon.GLB", + "atmos.zg.tavg-1000hPa-hxy-air.day.GLB", + "atmos.zg.tavg-500hPa-hxy-air.day.GLB", + "atmos.zg.tavg-al-hxy-u.mon.GLB", + "atmos.zg.tavg-p19-hxy-air.mon.30S-90S", + "atmos.zg.tavg-p39-hy-air.day.GLB", + "atmos.zg.tavg-p39-hy-air.mon.GLB", + "atmos.zg.tpt-500hPa-hxy-air.6hr.GLB", + "atmos.zg.tpt-al-hxy-u.6hr.GLB", + "atmos.zg.tpt-p3-hxy-air.6hr.GLB", + "atmos.zg.tpt-p7h-hxy-air.6hr.GLB", + "atmos.ztp.tavg-u-hxy-u.mon.GLB", + "atmosChem.c2h4.tavg-al-hxy-u.mon.GLB", + "atmosChem.c2h5oh.tavg-al-hxy-u.mon.GLB", + "atmosChem.c4h10.tavg-al-hxy-u.mon.GLB", + "atmosChem.cfc11.tavg-u-hm-u.mon.GLB", + "atmosChem.cfc113.tavg-u-hm-u.mon.GLB", + "atmosChem.cfc12.tavg-u-hm-u.mon.GLB", + "atmosChem.ch3oh.tavg-al-hxy-u.mon.GLB", + "atmosChem.ch4.tavg-al-hxy-u.mon.GLB", + "atmosChem.ch4.tavg-p39-hy-air.mon.GLB", + "atmosChem.ch4losssoil.tavg-u-hxy-u.mon.GLB", + "atmosChem.ch4ref.ti-al-hxy-u.fx.GLB", + "atmosChem.chegph2oo1d.tavg-al-hxy-u.mon.GLB", + "atmosChem.chepnh4.tavg-al-hxy-u.mon.GLB", + "atmosChem.chepno3.tavg-al-hxy-u.mon.GLB", + "atmosChem.dms.tavg-al-hxy-u.mon.30S-90S", + "atmosChem.dms.tavg-al-hxy-u.mon.GLB", + "atmosChem.do3chm.tavg-al-hxy-u.mon.GLB", + "atmosChem.dryh2.tavg-u-hxy-u.mon.GLB", + "atmosChem.dryhno3.tavg-u-hxy-u.mon.GLB", + "atmosChem.drynh3.tavg-u-hxy-u.mon.GLB", + "atmosChem.drynh4.tavg-u-hxy-u.mon.GLB", + "atmosChem.drynoy.tavg-u-hxy-u.mon.GLB", + "atmosChem.e90inst.tpt-al-hxy-u.mon.GLB", + "atmosChem.emiach4.tavg-u-hxy-u.mon.GLB", + "atmosChem.emiavnox.tavg-al-hxy-u.mon.GLB", + "atmosChem.emic2h4.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic2h5oh.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic2h6.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic3h6.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic3h8.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic4h10.tavg-u-hxy-u.mon.GLB", + "atmosChem.emich3oh.tavg-u-hxy-u.mon.GLB", + "atmosChem.emich4.tavg-u-hxy-u.mon.GLB", + "atmosChem.emih2.tavg-u-hxy-u.mon.GLB", + "atmosChem.emilkch4.tavg-u-hxy-u.mon.GLB", + "atmosChem.h2.tavg-al-hxy-u.mon.GLB", + "atmosChem.h2loss.tavg-al-hxy-u.mon.GLB", + "atmosChem.h2prod.tavg-al-hxy-u.mon.GLB", + "atmosChem.hcfc22.tavg-u-hm-u.mon.GLB", + "atmosChem.meanage.tavg-al-hxy-u.mon.GLB", + "atmosChem.meanage.tavg-p39-hy-air.mon.GLB", + "atmosChem.n2o.tavg-al-hxy-u.mon.GLB", + "atmosChem.n2o.tavg-p39-hy-air.mon.GLB", + "atmosChem.o3.tavg-al-hxy-u.mon.GLB", + "atmosChem.o3.tavg-p19-hxy-air.mon.GLB", + "atmosChem.o3.tavg-p39-hy-air.mon.GLB", + "atmosChem.o3.tpt-al-hxy-u.mon.GLB", + "atmosChem.o3ref.tclm-al-hxy-u.fx.GLB", + "atmosChem.o3ref.ti-al-hxy-u.fx.GLB", + "atmosChem.o3ste.tavg-al-hxy-u.mon.GLB", + "atmosChem.rlutch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rlutcsch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rlutcso3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rluto3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsutch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsutcsch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsutcso3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsuto3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.stratch4loss.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropch4loss.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropch4lossoh.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropdo3chm.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropo3ste.tavg-al-hxy-u.mon.GLB", + "atmosChem.wethno3.tavg-al-hxy-u.mon.GLB", + "atmosChem.wetnh3.tavg-u-hxy-u.mon.GLB", + "atmosChem.wetnh4.tavg-u-hxy-u.mon.GLB", + "atmosChem.wetno3.tavg-al-hxy-u.mon.GLB", + "atmosChem.wetnoy.tavg-u-hxy-u.mon.GLB", + "land.albc.tavg-u-hxy-veg.mon.GLB", + "land.areacellr.ti-u-hxy-u.fx.GLB", + "land.baresoilFrac.tavg-u-hxy-u.mon.GLB", + "land.burntFractionAll.tavg-u-hxy-u.mon.GLB", + "land.cGeologicStorage.tavg-u-hxy-u.mon.GLB", + "land.cLand.tavg-u-hxy-lnd.mon.GLB", + "land.cLeaf.tavg-u-hxy-lnd.mon.GLB", + "land.cLitter.tavg-u-hxy-lnd.mon.GLB", + "land.cnc.tavg-u-hxy-u.mon.GLB", + "land.cProduct.tavg-u-hxy-lnd.mon.GLB", + "land.cRoot.tavg-u-hxy-lnd.mon.GLB", + "land.cropFrac.tavg-u-hxy-u.mon.GLB", + "land.cSoil.tavg-d100cm-hxy-lnd.mon.GLB", + "land.cSoil.tavg-sl-hxy-lnd.mon.GLB", + "land.cSoil.tavg-u-hxy-lnd.mon.GLB", + "land.cStem.tavg-u-hxy-lnd.mon.GLB", + "land.cVeg.tavg-u-hxy-lnd.mon.GLB", + "land.dcw.tavg-u-hxy-lnd.day.GLB", + "land.depthl.ti-u-hxy-u.fx.GLB", + "land.depthsl.ti-u-hxy-u.fx.GLB", + "land.dslw.tavg-u-hxy-lnd.day.GLB", + "land.evspsblpot.tavg-u-hxy-lnd.day.GLB", + "land.evspsblpot.tavg-u-hxy-lnd.mon.GLB", + "land.evspsblsoi.tavg-u-hxy-u.day.GLB", + "land.evspsblveg.tavg-u-hxy-u.day.GLB", + "land.fAnthDisturb.tavg-u-hxy-lnd.mon.GLB", + "land.fBNF.tavg-u-hxy-lnd.mon.GLB", + "land.fCLandToOcean.tavg-u-hxy-lnd.mon.GLB", + "land.fDeforestToAtmos.tavg-u-hxy-lnd.mon.GLB", + "land.fDeforestToProduct.tavg-u-hxy-lnd.mon.GLB", + "land.fFire.tavg-u-hxy-lnd.mon.GLB", + "land.fFireAll.tavg-u-hxy-lnd.mon.GLB", + "land.fFireNat.tavg-u-hxy-lnd.mon.GLB", + "land.fHarvestToAtmos.tavg-u-hxy-lnd.mon.GLB", + "land.fHarvestToGeologicStorage.tavg-u-hxy-lnd.mon.GLB", + "land.fHarvestToProduct.tavg-u-hxy-lnd.mon.GLB", + "land.fLitterSoil.tavg-u-hxy-lnd.mon.GLB", + "land.fLuc.tavg-u-hxy-lnd.mon.GLB", + "land.fN2O.tavg-u-hxy-lnd.mon.GLB", + "land.fNAnthDisturb.tavg-u-hxy-lnd.mon.GLB", + "land.fNdep.tavg-u-hxy-lnd.mon.GLB", + "land.fNfert.tavg-u-hxy-lnd.mon.GLB", + "land.fNgas.tavg-u-hxy-lnd.mon.GLB", + "land.fNgasFire.tavg-u-hxy-lnd.mon.GLB", + "land.fNLandToOcean.tavg-u-hxy-lnd.mon.GLB", + "land.fNleach.tavg-u-hxy-lnd.mon.GLB", + "land.fNLitterSoil.tavg-u-hxy-lnd.mon.GLB", + "land.fNloss.tavg-u-hxy-lnd.mon.GLB", + "land.fNnetmin.tavg-u-hxy-lnd.mon.GLB", + "land.fNOx.tavg-u-hxy-lnd.mon.GLB", + "land.fNProduct.tavg-u-hxy-lnd.mon.GLB", + "land.fNup.tavg-u-hxy-lnd.mon.GLB", + "land.fNVegLitter.tavg-u-hxy-lnd.mon.GLB", + "land.fNVegSoil.tavg-u-hxy-lnd.mon.GLB", + "land.fProductDecomp.tavg-u-hxy-lnd.mon.GLB", + "land.fVegLitter.tavg-u-hxy-lnd.mon.GLB", + "land.fVegSoil.tavg-u-hxy-lnd.mon.GLB", + "land.gpp.tavg-u-hxy-lnd.mon.GLB", + "land.gppVgt.tavg-u-hxy-multi.day.GLB", + "land.grassFrac.tavg-u-hxy-u.mon.GLB", + "land.laiVgt.tavg-u-hxy-multi.day.GLB", + "land.landCoverFrac.tavg-u-hxy-u.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.day.GLB", + "land.mrrob.tavg-u-hxy-lnd.day.GLB", + "land.mrros.tavg-u-hxy-lnd.day.GLB", + "land.mrsfl.tavg-sl-hxy-lnd.day.GLB", + "land.mrsfl.tavg-sl-hxy-lnd.mon.GLB", + "land.mrsll.tavg-sl-hxy-lnd.day.GLB", + "land.mrsll.tavg-sl-hxy-lnd.mon.GLB", + "land.mrso.tavg-u-hxy-lnd.day.GLB", + "land.mrsol.tavg-d10cm-hxy-lnd.day.GLB", + "land.mrsol.tavg-sl-hxy-lnd.day.GLB", + "land.mrsol.tavg-sl-hxy-lnd.mon.GLB", + "land.mrsol.tpt-d10cm-hxy-lnd.3hr.GLB", + "land.mrsow.tavg-u-hxy-lnd.day.GLB", + "land.mrtws.tavg-u-hxy-lnd.day.GLB", + "land.mrtws.tavg-u-hxy-lnd.mon.GLB", + "land.nbp.tavg-u-hxy-lnd.mon.GLB", + "land.nep.tavg-u-hxy-lnd.mon.GLB", + "land.nLand.tavg-u-hxy-lnd.mon.GLB", + "land.nLitter.tavg-u-hxy-lnd.mon.GLB", + "land.nMineral.tavg-u-hxy-lnd.mon.GLB", + "land.npp.tavg-u-hxy-lnd.mon.GLB", + "land.nProduct.tavg-u-hxy-lnd.mon.GLB", + "land.nSoil.tavg-u-hxy-lnd.mon.GLB", + "land.nVeg.tavg-u-hxy-lnd.mon.GLB", + "land.orog.ti-u-hxy-u.fx.30S-90S", + "land.pastureFrac.tavg-u-hxy-u.mon.GLB", + "land.prveg.tavg-u-hxy-lnd.mon.GLB", + "land.ra.tavg-u-hxy-lnd.mon.GLB", + "land.residualFrac.tavg-u-hxy-u.mon.GLB", + "land.rh.tavg-u-hxy-lnd.mon.GLB", + "land.rivi.tavg-u-hxy-lnd.day.GLB", + "land.rivo.tavg-u-hxy-lnd.day.GLB", + "land.rsds.tavg-u-hxy-lnd.mon.GLB", + "land.rsds.tavg-u-hxy-sn.mon.GLB", + "land.rsus.tavg-u-hxy-lnd.mon.GLB", + "land.rsus.tavg-u-hxy-sn.mon.GLB", + "land.sftgif.tavg-u-hxy-u.mon.GLB", + "land.sftlaf.ti-u-hxy-u.fx.GLB", + "land.shrubFrac.tavg-u-hxy-u.mon.GLB", + "land.srfrad.tavg-u-hxy-u.3hr.GLB", + "land.tas.tavg-u-hxy-u.1hr.30S-90S", + "land.tas.tavg-u-hxy-u.1hr.GLB", + "land.tran.tavg-u-hxy-lnd.mon.GLB", + "land.treeFrac.tavg-u-hxy-u.mon.GLB", + "land.tsl.tavg-sl-hxy-lnd.day.GLB", + "land.tsl.tavg-sl-hxy-lnd.mon.GLB", + "land.tslsi.tavg-u-hxy-u.day.GLB", + "land.tslsi.tpt-u-hxy-lsi.3hr.GLB", + "land.vegFrac.tavg-u-hxy-u.mon.GLB", + "land.vegHeight.tavg-u-hxy-tree.mon.GLB", + "land.vegHeight.tavg-u-hxy-veg.mon.GLB", + "land.wetlandCH4.tavg-u-hxy-lnd.mon.GLB", + "land.wtd.tavg-u-hxy-lnd.day.GLB", + "landIce.acabf.tavg-u-hxy-is.mon.GLB", + "landIce.hfdsn.tavg-u-hxy-lnd.mon.GLB", + "landIce.hfgeoubed.ti-u-hxy-gis.fx.GRL", + "landIce.hfls.tavg-u-hxy-is.mon.GLB", + "landIce.hfss.tavg-u-hxy-is.mon.GLB", + "landIce.icem.tavg-u-hxy-is.mon.GLB", + "landIce.litemptop.tavg-u-hxy-is.mon.GLB", + "landIce.lithk.ti-u-hxy-is.fx.GRL", + "landIce.lithk.ti-u-hxy-u.fx.GLB", + "landIce.mrro.tavg-u-hxy-is.mon.GLB", + "landIce.orog.tavg-u-hxy-is.mon.GLB", + "landIce.pflw.tavg-u-hxy-lnd.mon.GLB", + "landIce.prra.tavg-u-hxy-is.mon.GLB", + "landIce.prsn.tavg-u-hxy-is.mon.GLB", + "landIce.rlds.tavg-u-hxy-is.mon.GLB", + "landIce.rlus.tavg-u-hxy-is.mon.GLB", + "landIce.rsds.tavg-u-hxy-is.mon.GLB", + "landIce.rsus.tavg-u-hxy-is.mon.GLB", + "landIce.sbl.tavg-u-hxy-is.mon.GLB", + "landIce.sbl.tavg-u-hxy-lnd.mon.GLB", + "landIce.sbl.tavg-u-hxy-u.mon.GLB", + "landIce.sftflf.tavg-u-hxy-u.mon.GLB", + "landIce.sftflf.ti-u-hxy-u.fx.GLB", + "landIce.sftgrf.tavg-u-hxy-u.mon.GLB", + "landIce.sftgrf.ti-u-hxy-u.fx.GLB", + "landIce.snc.tavg-u-hxy-is.mon.GLB", + "landIce.snd.tavg-u-hxy-lnd.mon.GLB", + "landIce.snicem.tavg-u-hxy-is.mon.GLB", + "landIce.snicem.tavg-u-hxy-is.mon.GRL", + "landIce.snm.tavg-u-hxy-is.mon.GLB", + "landIce.snm.tavg-u-hxy-lnd.mon.GLB", + "landIce.snrefr.tavg-u-hxy-is.mon.GLB", + "landIce.snw.tavg-u-hxy-lnd.day.GLB", + "landIce.sootsn.tavg-u-hxy-lnd.mon.GLB", + "landIce.tas.tavg-u-hxy-is.mon.GLB", + "landIce.topg.ti-u-hxy-gis.fx.GRL", + "landIce.tpf.tavg-u-hxy-lnd.mon.GLB", + "landIce.ts.tavg-u-hxy-is.mon.GLB", + "landIce.tsn.tavg-u-hxy-is.mon.GLB", + "landIce.tsn.tavg-u-hxy-lnd.mon.GLB", + "ocean.absscint.tavg-op4-hxy-sea.mon.GLB", + "ocean.agessc.tavg-ol-hxy-sea.mon.GLB", + "ocean.bigthetao.tavg-ol-hm-sea.mon.GLB", + "ocean.bigthetao.tavg-ol-hxy-sea.dec.GLB", + "ocean.bigthetao.tavg-op20bar-hxy-sea.day.GLB", + "ocean.chcint.tavg-op4-hxy-sea.mon.GLB", + "ocean.ficeberg.tavg-ol-hxy-sea.3hr.GLB", + "ocean.ficeberg.tavg-ol-hxy-sea.mon.GLB", + "ocean.ficeberg.tavg-u-hxy-sea.mon.GLB", + "ocean.flandice.tavg-u-hxy-sea.3hr.GLB", + "ocean.flandice.tavg-u-hxy-sea.mon.GLB", + "ocean.friver.tavg-u-hxy-sea.3hr.GLB", + "ocean.friver.tavg-u-hxy-sea.mon.GLB", + "ocean.hfbasin.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpmadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpmdiff.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpsmadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfds.tavg-u-hxy-sea.3hr.GLB", + "ocean.hfds.tavg-u-hxy-sea.mon.30S-90S", + "ocean.hfgeou.tavg-u-hxy-sea.mon.GLB", + "ocean.hfrunoffds.tavg-ol-hxy-sea.3hr.GLB", + "ocean.hfx.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfx.tavg-u-hxy-sea.day.GLB", + "ocean.hfx.tavg-u-hxy-sea.mon.GLB", + "ocean.hfy.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfy.tavg-u-hxy-sea.day.GLB", + "ocean.hfy.tavg-u-hxy-sea.mon.GLB", + "ocean.htovgyre.tavg-u-hyb-sea.mon.GLB", + "ocean.htovovrt.tavg-u-hyb-sea.mon.GLB", + "ocean.masscello.tavg-ol-hxy-sea.dec.GLB", + "ocean.masso.tavg-u-hm-sea.dec.GLB", + "ocean.masso.tavg-u-hm-sea.mon.GLB", + "ocean.mlotst.tavg-u-hxy-sea.day.GLB", + "ocean.mlotst.tavg-u-hxy-sea.mon.30S-90S", + "ocean.mlotst.tmax-u-hxy-sea.mon.GLB", + "ocean.mlotst.tmin-u-hxy-sea.mon.GLB", + "ocean.mpw.tavg-u-hxy-sea.mon.GLB", + "ocean.mpw.tpt-u-hxy-sea.3hr.GLB", + "ocean.mpwswell.tavg-u-hxy-sea.mon.GLB", + "ocean.mpwswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.mpwwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.mpwwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.msftbarot.tavg-u-hxy-sea.mon.GLB", + "ocean.msftm.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftm.tavg-rho-hyb-sea.mon.GLB", + "ocean.msfty.tavg-ol-ht-sea.mon.GLB", + "ocean.msfty.tavg-rho-ht-sea.mon.GLB", + "ocean.obvfsq.tavg-ol-hxy-sea.mon.GLB", + "ocean.opottemptend.tavg-ol-hxy-sea.yr.GLB", + "ocean.pbo.tavg-u-hxy-sea.mon.GLB", + "ocean.pfscint.tavg-op4-hxy-sea.mon.GLB", + "ocean.phcint.tavg-op4-hxy-sea.mon.GLB", + "ocean.pso.tavg-u-hxy-sea.mon.GLB", + "ocean.rsds.tavg-u-hxy-ifs.mon.GLB", + "ocean.rsntds.tavg-u-hxy-sea.3hr.GLB", + "ocean.rsus.tavg-u-hxy-ifs.mon.GLB", + "ocean.scint.tavg-op4-hxy-sea.mon.GLB", + "ocean.sduo.tavg-u-hxy-sea.mon.GLB", + "ocean.sduo.tpt-u-hxy-sea.3hr.GLB", + "ocean.sdvo.tavg-u-hxy-sea.mon.GLB", + "ocean.sdvo.tpt-u-hxy-sea.3hr.GLB", + "ocean.sfdsi.tavg-u-hxy-sea.3hr.GLB", + "ocean.sfx.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfx.tavg-u-hxy-sea.mon.GLB", + "ocean.sfy.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfy.tavg-u-hxy-sea.mon.GLB", + "ocean.sltbasin.tavg-u-hyb-sea.mon.GLB", + "ocean.sltovgyre.tavg-u-hyb-sea.mon.GLB", + "ocean.sltovovrt.tavg-u-hyb-sea.mon.GLB", + "ocean.so.tavg-ol-hm-sea.mon.GLB", + "ocean.so.tavg-ol-hxy-sea.dec.GLB", + "ocean.so.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.sob.tavg-u-hxy-sea.mon.GLB", + "ocean.sos.tavg-u-hm-sea.mon.30S-90S", + "ocean.sos.tavg-u-hm-sea.mon.GLB", + "ocean.sw17O.tavg-ol-hxy-sea.mon.GLB", + "ocean.sw18O.tavg-ol-hxy-sea.mon.GLB", + "ocean.sw2H.tavg-ol-hxy-sea.mon.GLB", + "ocean.swh.tavg-u-hxy-sea.mon.GLB", + "ocean.swh.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhmax.tmax-u-hxy-sea.mon.GLB", + "ocean.swhmax.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhswell.tavg-u-hxy-sea.mon.GLB", + "ocean.swhswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.swhwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.tauuo.tavg-u-hxy-sea.3hr.GLB", + "ocean.tauuo.tavg-u-hxy-sea.dec.GLB", + "ocean.tauvo.tavg-u-hxy-sea.3hr.GLB", + "ocean.tauvo.tavg-u-hxy-sea.dec.GLB", + "ocean.thetao.tavg-ol-hm-sea.mon.GLB", + "ocean.thetao.tavg-ol-hxy-sea.dec.GLB", + "ocean.thetao.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.thetao.tavg-op20bar-hxy-sea.day.GLB", + "ocean.thkcello.tavg-ol-hxy-sea.dec.GLB", + "ocean.tob.tavg-u-hxy-sea.mon.GLB", + "ocean.tos.tavg-u-hm-sea.mon.GLB", + "ocean.tos.tavg-u-hxy-sea.mon.30S-90S", + "ocean.tos.tpt-u-hxy-sea.3hr.GLB", + "ocean.tossq.tavg-u-hxy-sea.day.GLB", + "ocean.umo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.uo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.uos.tavg-u-hxy-sea.day.GLB", + "ocean.vmo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.vo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.volcello.tavg-ol-hxy-sea.dec.GLB", + "ocean.volcello.tavg-ol-hxy-sea.mon.GLB", + "ocean.volcello.tavg-ol-hxy-sea.yr.GLB", + "ocean.volcello.ti-ol-hxy-sea.fx.GLB", + "ocean.volo.tavg-u-hm-sea.dec.GLB", + "ocean.volo.tavg-u-hm-sea.mon.GLB", + "ocean.vos.tavg-u-hxy-sea.day.GLB", + "ocean.wdir.tavg-u-hxy-sea.mon.GLB", + "ocean.wdir.tpt-u-hxy-sea.3hr.GLB", + "ocean.wdirswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wdirswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wdirwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wdirwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.wfcorr.tavg-u-hxy-sea.mon.GLB", + "ocean.wfo.tavg-u-hxy-sea.3hr.GLB", + "ocean.wfo.tavg-u-hxy-sea.mon.GLB", + "ocean.wmo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.wo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.wpdir.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdir.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpdirswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdirswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpdirwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdirwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpp.tavg-u-hxy-sea.mon.GLB", + "ocean.wpp.tpt-u-hxy-sea.3hr.GLB", + "ocean.wppswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wppswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wppwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wppwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.zos.tavg-u-hxy-sea.mon.30S-90S", + "ocean.zossq.tavg-u-hxy-sea.mon.GLB", + "ocean.zostoga.tavg-u-hm-sea.day.GLB", + "ocnBgchem.bacc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.calc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chl.tavg-d0m-hxy-sea.day.GLB", + "ocnBgchem.chl.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chl.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chlcalc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chldiat.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chldiat.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chldiaz.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chldiaz.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chlmisc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chlmisc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chlpico.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chlpico.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.detoc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dfe.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.dfe.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.dfe.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissic.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.dissic.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissoc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dmso.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.dmso.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.dpco2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.dpo2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.expc.tavg-d1000m-hxy-sea.mon.GLB", + "ocnBgchem.expc.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.expc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.expcalc.tavg-d1000m-hxy-sea.mon.GLB", + "ocnBgchem.expcalc.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.expcalc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.fgco2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fric.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.froc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fsfe.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fsn.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.graz.tavg-ol-hxy-sea.mon.30S-90S", + "ocnBgchem.graz.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.icfriver.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intdic.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intdoc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intparag.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbfe.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbn.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbp.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbsi.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpcalcite.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpn2.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpoc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpp.tavg-u-hxy-sea.day.GLB", + "ocnBgchem.intpp.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpp.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppcalc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppdiat.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppdiaz.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppmisc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppnitrate.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpppico.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.nh4.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.nh4.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.no3.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.no3.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.o2.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.ocfriver.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.ph.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.ph.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phyc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phyc.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.phyc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phycalc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phycalc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phydiat.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phydiat.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phydiaz.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phydiaz.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phymisc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phymisc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phypico.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phypico.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.po4.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.pp.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.si.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.spco2.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.spco2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.talk.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zmeso.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zmeso.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zmicro.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zmicro.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zmisc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zmisc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zooc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zooc.tavg-ol-hxy-sea.mon.GLB", + "seaIce.evspsbl.tavg-u-hxy-si.mon.GLB", + "seaIce.prra.tavg-u-hxy-si.mon.GLB", + "seaIce.prsn.tavg-u-hxy-si.mon.GLB", + "seaIce.rlds.tavg-u-hxy-si.day.GLB", + "seaIce.rlds.tavg-u-hxy-si.mon.GLB", + "seaIce.rlus.tavg-u-hxy-si.day.GLB", + "seaIce.rlus.tavg-u-hxy-si.mon.GLB", + "seaIce.rsds.tavg-u-hxy-si.day.GLB", + "seaIce.rsds.tavg-u-hxy-si.mon.GLB", + "seaIce.rsus.tavg-u-hxy-si.day.GLB", + "seaIce.rsus.tavg-u-hxy-si.mon.GLB", + "seaIce.sbl.tavg-u-hxy-si.mon.GLB", + "seaIce.siage.tavg-u-hxy-si.day.GLB", + "seaIce.siage.tavg-u-hxy-si.mon.30S-90S", + "seaIce.siarea.tavg-u-hm-u.mon.NH", + "seaIce.siarea.tavg-u-hm-u.mon.SH", + "seaIce.siareaacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.siconc.tavg-u-hxy-u.mon.30S-90S", + "seaIce.siconca.tavg-u-hxy-u.day.GLB", + "seaIce.siconca.tavg-u-hxy-u.mon.GLB", + "seaIce.sidconcdyn.tavg-u-hxy-sea.mon.GLB", + "seaIce.sidconcth.tavg-u-hxy-sea.mon.GLB", + "seaIce.sidmassdyn.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthsi.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthwat.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmeltbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmeltlat.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmelttop.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassth.tavg-u-hxy-si.mon.GLB", + "seaIce.sieqthick.tavg-u-hxy-si.mon.GLB", + "seaIce.siextent.tavg-u-hm-u.mon.NH", + "seaIce.siextent.tavg-u-hm-u.mon.SH", + "seaIce.siflcondbot.tavg-u-hxy-si.day.GLB", + "seaIce.siflcondbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflcondtop.tavg-u-hxy-si.day.GLB", + "seaIce.siflcondtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sifllattop.tavg-u-hxy-si.day.GLB", + "seaIce.sifllattop.tavg-u-hxy-si.mon.GLB", + "seaIce.siflsensbot.tavg-u-hxy-si.day.GLB", + "seaIce.siflsensbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflsenstop.tavg-u-hxy-si.day.GLB", + "seaIce.siflsenstop.tavg-u-hxy-si.mon.GLB", + "seaIce.siflswdbot.tavg-u-hxy-si.day.GLB", + "seaIce.siflswdbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sihc.tavg-u-hxy-sea.day.GLB", + "seaIce.sihc.tavg-u-hxy-sea.mon.GLB", + "seaIce.siitdconc.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdsnconc.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdsnthick.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdthick.tavg-u-hxy-si.mon.GLB", + "seaIce.simassacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.simpconc.tavg-u-hxy-si.mon.GLB", + "seaIce.sirdgconc.tavg-u-hxy-si.mon.GLB", + "seaIce.sisaltmass.tavg-u-hxy-si.mon.GLB", + "seaIce.sisndmassdyn.tavg-u-hxy-si.mon.GLB", + "seaIce.sisndmasssi.tavg-u-hxy-si.mon.GLB", + "seaIce.sisndmasswind.tavg-u-hxy-si.mon.GLB", + "seaIce.sisnhc.tavg-u-hxy-si.day.GLB", + "seaIce.sisnhc.tavg-u-hxy-si.mon.GLB", + "seaIce.sisnmass.tavg-u-hm-u.mon.NH", + "seaIce.sisnmass.tavg-u-hm-u.mon.SH", + "seaIce.sisnmassacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.sispeed.tavg-u-hxy-si.day.GLB", + "seaIce.sispeed.tavg-u-hxy-si.mon.GLB", + "seaIce.sistressave.tpt-u-hxy-si.mon.GLB", + "seaIce.sistressmax.tpt-u-hxy-si.mon.GLB", + "seaIce.sistrxdtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sistrxubot.tavg-u-hxy-si.mon.GLB", + "seaIce.sistrydtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sistryubot.tavg-u-hxy-si.mon.GLB", + "seaIce.sitempsnic.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-si.day.GLB", + "seaIce.sithick.tavg-u-hxy-si.mon.30S-90S", + "seaIce.sitimefrac.tavg-u-hxy-sea.day.GLB", + "seaIce.sitimefrac.tavg-u-hxy-sea.mon.30S-90S", + "seaIce.siu.tavg-u-hxy-si.day.GLB", + "seaIce.siu.tavg-u-hxy-si.mon.30S-90S", + "seaIce.siv.tavg-u-hxy-si.day.GLB", + "seaIce.siv.tavg-u-hxy-si.mon.30S-90S", + "seaIce.sivol.tavg-u-hm-u.mon.NH", + "seaIce.sivol.tavg-u-hm-u.mon.SH", + "seaIce.snc.tavg-u-hxy-si.mon.GLB", + "seaIce.snd.tavg-u-hxy-sn.day.GLB", + "seaIce.snd.tavg-u-hxy-sn.mon.30S-90S", + "seaIce.snm.tavg-u-hxy-si.mon.GLB", + "seaIce.snw.tavg-u-hxy-si.mon.GLB", + "seaIce.ts.tavg-u-hxy-si.day.GLB", + "seaIce.ts.tavg-u-hxy-si.mon.30S-90S" + ], + "Medium": [ + "atmos.bldep.tavg-u-hxy-u.1hr.GLB", + "atmos.clic.tpt-al-hxy-u.3hr.GLB", + "atmos.clis.tpt-al-hxy-u.3hr.GLB", + "atmos.clivi.tpt-u-hxy-u.3hr.GLB", + "atmos.clt.tpt-u-hxy-u.3hr.GLB", + "atmos.clwc.tpt-al-hxy-u.3hr.GLB", + "atmos.clws.tpt-al-hxy-u.3hr.GLB", + "atmos.clwvi.tpt-u-hxy-u.3hr.GLB", + "atmos.dtauc.tpt-al-hxy-ccl.3hr.GLB", + "atmos.dtaus.tpt-al-hxy-scl.3hr.GLB", + "atmos.hfdsnb.tavg-u-hxy-lnd.day.GLB", + "atmos.hfls.tavg-u-hxy-is.mon.ATA", + "atmos.hfls.tavg-u-hxy-u.1hr.GLB", + "atmos.hfss.tavg-u-hxy-is.mon.ATA", + "atmos.hfss.tavg-u-hxy-is.mon.GRL", + "atmos.hfss.tavg-u-hxy-u.1hr.GLB", + "atmos.hur.tavg-700hPa-hxy-air.day.GLB", + "atmos.hur.tpt-100hPa-hxy-u.6hr.GLB", + "atmos.hur.tpt-500hPa-hxy-air.6hr.GLB", + "atmos.hur.tpt-850hPa-hxy-air.6hr.GLB", + "atmos.hurs.tavg-h2m-hxy-u.1hr.GLB", + "atmos.hus.tpt-al-hxy-u.3hr.GLB", + "atmos.hus.tpt-p6-hxy-air.3hr.GLB", + "atmos.noaahi2m.tavg-h2m-hxy-u.day.GLB", + "atmos.noaahi2m.tmax-h2m-hxy-u.day.GLB", + "atmos.pfull.tpt-al-hxy-u.3hr.GLB", + "atmos.pr.tpt-u-hxy-u.3hr.GLB", + "atmos.prra.tavg-u-hxy-is.mon.ATA", + "atmos.prrsn.tavg-u-hxy-lnd.day.GLB", + "atmos.prsn.tavg-u-hxy-is.mon.ATA", + "atmos.prsnc.tavg-u-hxy-lnd.day.GLB", + "atmos.prsnsn.tavg-u-hxy-lnd.day.GLB", + "atmos.prw.tpt-u-hxy-u.3hr.GLB", + "atmos.ps.tpt-u-hxy-u.1hr.GLB", + "atmos.psitem.tavg-p39-hy-air.day.GLB", + "atmos.reffclic.tpt-al-hxy-ccl.3hr.GLB", + "atmos.reffclis.tpt-al-hxy-scl.3hr.GLB", + "atmos.reffclwc.tpt-al-hxy-ccl.3hr.GLB", + "atmos.reffclws.tpt-al-hxy-scl.3hr.GLB", + "atmos.rlds.tavg-u-hxy-is.mon.ATA", + "atmos.rlds.tavg-u-hxy-is.mon.GRL", + "atmos.rlds.tpt-u-hxy-u.3hr.GLB", + "atmos.rldscs.tavg-u-hxy-u.day.GLB", + "atmos.rldscs.tpt-u-hxy-u.3hr.GLB", + "atmos.rls.tavg-u-hxy-u.day.GLB", + "atmos.rlus.tavg-u-hxy-is.mon.ATA", + "atmos.rlus.tavg-u-hxy-is.mon.GRL", + "atmos.rlus.tavg-u-hxy-u.1hr.GLB", + "atmos.rlut.tpt-u-hxy-u.3hr.GLB", + "atmos.rlutcs.tpt-u-hxy-u.3hr.GLB", + "atmos.rsds.tavg-u-hxy-is.mon.ATA", + "atmos.rsds.tavg-u-hxy-is.mon.GRL", + "atmos.rsds.tpt-u-hxy-u.3hr.GLB", + "atmos.rsdscs.tpt-u-hxy-u.3hr.GLB", + "atmos.rsdsdiff.tavg-u-hxy-u.1hr.GLB", + "atmos.rsdsdiff.tavg-u-hxy-u.day.GLB", + "atmos.rss.tavg-u-hxy-u.day.GLB", + "atmos.rsus.tavg-u-hxy-is.mon.ATA", + "atmos.rsus.tavg-u-hxy-is.mon.GRL", + "atmos.rsus.tavg-u-hxy-u.1hr.GLB", + "atmos.rsut.tpt-u-hxy-u.3hr.GLB", + "atmos.rsutcs.tpt-u-hxy-u.3hr.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.1hr.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.3hr.GLB", + "atmos.snmsl.tavg-u-hxy-lnd.day.GLB", + "atmos.snrefr.tavg-u-hxy-lnd.day.GLB", + "atmos.snwc.tavg-u-hxy-lnd.day.GLB", + "atmos.ta.tpt-al-hxy-u.3hr.GLB", + "atmos.ta.tpt-p6-hxy-air.3hr.GLB", + "atmos.tas.tavg-h2m-hm-is.mon.ATA", + "atmos.tas.tavg-h2m-hm-is.mon.GRL", + "atmos.tauunoegw.tavg-p19-hxy-air.mon.GLB", + "atmos.tauunowgw.tavg-p19-hxy-air.mon.GLB", + "atmos.tauuogw.tavg-p19-hxy-air.mon.GLB", + "atmos.tauupbl.tavg-u-hxy-u.day.GLB", + "atmos.tauvnogw.tavg-p19-hxy-air.mon.GLB", + "atmos.tauvogw.tavg-p19-hxy-air.mon.GLB", + "atmos.tauvpbl.tavg-u-hxy-u.day.GLB", + "atmos.tntc.tavg-p39-hy-air.mon.GLB", + "atmos.tntnogw.tavg-p39-hy-air.mon.GLB", + "atmos.tntogw.tavg-p39-hy-air.mon.GLB", + "atmos.tntrlcs.tavg-p39-hy-air.mon.GLB", + "atmos.tntrscs.tavg-p39-hy-air.mon.GLB", + "atmos.tntscp.tavg-p39-hy-air.mon.GLB", + "atmos.ts.tavg-u-hxy-is.mon.ATA", + "atmos.ts.tavg-u-hxy-is.mon.GRL", + "atmos.ts.tavg-u-hxy-sn.day.GLB", + "atmos.ts.tavg-u-hxy-u.1hr.GLB", + "atmos.ua.tavg-h100m-hxy-u.3hr.GLB", + "atmos.ua.tpt-200hPa-hxy-u.6hr.GLB", + "atmos.ua.tpt-p6-hxy-air.3hr.GLB", + "atmos.utendnogw.tavg-p19-hxy-air.day.GLB", + "atmos.utendnogw.tavg-p19-hxy-air.mon.GLB", + "atmos.utendogw.tavg-p19-hxy-air.day.GLB", + "atmos.utendogw.tavg-p19-hxy-air.mon.GLB", + "atmos.va.tavg-h100m-hxy-u.3hr.GLB", + "atmos.va.tpt-200hPa-hxy-u.6hr.GLB", + "atmos.va.tpt-p6-hxy-air.3hr.GLB", + "atmos.vtendnogw.tavg-p19-hxy-air.day.GLB", + "atmos.vtendnogw.tavg-p19-hxy-air.mon.GLB", + "atmos.vtendogw.tavg-p19-hxy-air.day.GLB", + "atmos.vtendogw.tavg-p19-hxy-air.mon.GLB", + "atmos.wap.tpt-p6-hxy-air.3hr.GLB", + "atmos.wbgt.tavg-h2m-hxy-u.day.GLB", + "atmos.wbgt.tmax-h2m-hxy-u.day.GLB", + "atmos.wsg.tmax-h100m-hxy-u.mon.GLB", + "atmos.wsg.tmax-h10m-hxy-u.mon.GLB", + "atmos.zg.tpt-700hPa-hxy-u.6hr.GLB", + "atmos.zg.tpt-925hPa-hxy-u.6hr.GLB", + "atmosChem.flashrate.tavg-u-hxy-u.day.GLB", + "land.areacellg.ti-u-hxy-u.fx.ATA", + "land.areacellg.ti-u-hxy-u.fx.GRL", + "land.baresoilFrac.tavg-u-hxy-u.yr.GLB", + "land.cLitterCwd.tavg-u-hxy-lnd.mon.GLB", + "land.cLitterLut.tpt-u-hxy-multi.yr.GLB", + "land.cLitterSubSurf.tavg-u-hxy-lnd.mon.GLB", + "land.cLitterSurf.tavg-u-hxy-lnd.mon.GLB", + "land.cOther.tavg-u-hxy-lnd.mon.GLB", + "land.cProductLut.tpt-u-hxy-multi.yr.GLB", + "land.cropFrac.tavg-u-hxy-u.yr.GLB", + "land.cropFracC3.tavg-u-hxy-u.mon.GLB", + "land.cropFracC4.tavg-u-hxy-u.mon.GLB", + "land.cSoilLut.tpt-u-hxy-multi.yr.GLB", + "land.cSoilPools.tavg-u-hxy-lnd.mon.GLB", + "land.cVeg.tavg-u-hxy-ng.mon.GLB", + "land.cVeg.tavg-u-hxy-shb.mon.GLB", + "land.cVeg.tavg-u-hxy-tree.mon.GLB", + "land.cVegLut.tpt-u-hxy-multi.yr.GLB", + "land.dgw.tavg-u-hxy-lnd.day.GLB", + "land.drivw.tavg-u-hxy-lnd.day.GLB", + "land.dsn.tavg-u-hxy-lnd.day.GLB", + "land.dsw.tavg-u-hxy-lnd.day.GLB", + "land.esn.tavg-u-hxy-sn.day.GLB", + "land.evspsblsoi.tavg-u-hxy-u.3hr.GLB", + "land.evspsblveg.tavg-u-hxy-u.3hr.GLB", + "land.fLitterFire.tavg-u-hxy-lnd.mon.GLB", + "land.fLulccAtmLut.tavg-u-hxy-multi.mon.GLB", + "land.fNgasNonFire.tavg-u-hxy-lnd.mon.GLB", + "land.fracInLut.tsum-u-hxy-lnd.yr.GLB", + "land.fracLut.tpt-u-hxy-u.mon.GLB", + "land.fracLut.tpt-u-hxy-u.yr.GLB", + "land.fracOutLut.tsum-u-hxy-lnd.yr.GLB", + "land.fVegFire.tavg-u-hxy-lnd.mon.GLB", + "land.fVegLitterMortality.tavg-u-hxy-lnd.mon.GLB", + "land.fVegLitterSenescence.tavg-u-hxy-lnd.mon.GLB", + "land.fVegSoilMortality.tavg-u-hxy-lnd.mon.GLB", + "land.fVegSoilSenescence.tavg-u-hxy-lnd.mon.GLB", + "land.gpp.tavg-u-hxy-ng.mon.GLB", + "land.gpp.tavg-u-hxy-shb.mon.GLB", + "land.gpp.tavg-u-hxy-tree.mon.GLB", + "land.gppLut.tavg-u-hxy-multi.mon.GLB", + "land.grassFrac.tavg-u-hxy-u.yr.GLB", + "land.grassFracC3.tavg-u-hxy-u.mon.GLB", + "land.grassFracC4.tavg-u-hxy-u.mon.GLB", + "land.hfdsl.tavg-u-hxy-lnd.3hr.GLB", + "land.hflsLut.tavg-u-hxy-multi.mon.GLB", + "land.hfssLut.tavg-u-hxy-multi.mon.GLB", + "land.irrDem.tavg-u-hxy-u.day.GLB", + "land.irrGw.tavg-u-hxy-u.day.GLB", + "land.irrLut.tavg-u-hxy-multi.mon.GLB", + "land.irrLut.tavg-u-hxy-u.day.GLB", + "land.irrSurf.tavg-u-hxy-u.day.GLB", + "land.laiLut.tavg-u-hxy-multi.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.3hr.GLB", + "land.mrros.tavg-u-hxy-lnd.3hr.GLB", + "land.mrsol.tavg-d100cm-hxy-lnd.3hr.GLB", + "land.mrsolLut.tavg-d10cm-hxy-multi.mon.GLB", + "land.nbpLut.tavg-u-hxy-multi.mon.GLB", + "land.nLeaf.tavg-u-hxy-lnd.mon.GLB", + "land.nLitterCwd.tavg-u-hxy-lnd.mon.GLB", + "land.nLitterSubSurf.tavg-u-hxy-lnd.mon.GLB", + "land.nLitterSurf.tavg-u-hxy-lnd.mon.GLB", + "land.nMineralNH4.tavg-u-hxy-lnd.mon.GLB", + "land.nMineralNO3.tavg-u-hxy-lnd.mon.GLB", + "land.nOther.tavg-u-hxy-lnd.mon.GLB", + "land.npp.tavg-u-hxy-ng.mon.GLB", + "land.npp.tavg-u-hxy-shb.mon.GLB", + "land.npp.tavg-u-hxy-tree.mon.GLB", + "land.nppLeaf.tavg-u-hxy-lnd.mon.GLB", + "land.nppLut.tavg-u-hxy-multi.mon.GLB", + "land.nppOther.tavg-u-hxy-lnd.mon.GLB", + "land.nppRoot.tavg-u-hxy-lnd.mon.GLB", + "land.nppStem.tavg-u-hxy-lnd.mon.GLB", + "land.nppVgt.tavg-u-hxy-multi.day.GLB", + "land.nRoot.tavg-u-hxy-lnd.mon.GLB", + "land.nStem.tavg-u-hxy-lnd.mon.GLB", + "land.orog.tavg-u-hxy-is.mon.ATA", + "land.orog.tavg-u-hxy-is.mon.GRL", + "land.orog.tavg-u-hxy-is.yr.ATA", + "land.orog.tavg-u-hxy-is.yr.GRL", + "land.pastureFracC3.tavg-u-hxy-u.mon.GLB", + "land.pastureFracC4.tavg-u-hxy-u.mon.GLB", + "land.qgwr.tavg-u-hxy-lnd.day.GLB", + "land.ra.tavg-u-hxy-ng.mon.GLB", + "land.ra.tavg-u-hxy-shb.mon.GLB", + "land.ra.tavg-u-hxy-tree.mon.GLB", + "land.raLeaf.tavg-u-hxy-lnd.mon.GLB", + "land.raLut.tavg-u-hxy-multi.mon.GLB", + "land.raOther.tavg-u-hxy-lnd.mon.GLB", + "land.raRoot.tavg-u-hxy-lnd.mon.GLB", + "land.raStem.tavg-u-hxy-lnd.mon.GLB", + "land.raVgt.tavg-u-hxy-multi.day.GLB", + "land.rh.tavg-u-hxy-ng.mon.GLB", + "land.rh.tavg-u-hxy-shb.mon.GLB", + "land.rh.tavg-u-hxy-tree.mon.GLB", + "land.rhLitter.tavg-u-hxy-lnd.mon.GLB", + "land.rhLut.tavg-u-hxy-multi.mon.GLB", + "land.rhSoil.tavg-u-hxy-lnd.mon.GLB", + "land.rhVgt.tavg-u-hxy-multi.day.GLB", + "land.rzwc.tavg-u-hxy-lnd.day.GLB", + "land.sftgif.tavg-u-hxy-u.yr.ATA", + "land.sftgif.tavg-u-hxy-u.yr.GRL", + "land.shrubFrac.tavg-u-hxy-u.yr.GLB", + "land.sw.tavg-u-hxy-lnd.day.GLB", + "land.sweLut.tavg-u-hxy-multi.mon.GLB", + "land.tasLut.tavg-h2m-hxy-multi.mon.GLB", + "land.tran.tavg-u-hxy-u.3hr.GLB", + "land.treeFrac.tavg-u-hxy-u.yr.GLB", + "land.treeFracBdlDcd.tavg-u-hxy-u.mon.GLB", + "land.treeFracBdlEvg.tavg-u-hxy-u.mon.GLB", + "land.treeFracNdlDcd.tavg-u-hxy-u.mon.GLB", + "land.treeFracNdlEvg.tavg-u-hxy-u.mon.GLB", + "land.tsLut.tavg-u-hxy-multi.mon.GLB", + "land.vegHeight.tavg-u-hxy-ng.mon.GLB", + "land.vegHeight.tavg-u-hxy-shb.mon.GLB", + "land.wetlandCH4cons.tavg-u-hxy-lnd.mon.GLB", + "land.wetlandCH4prod.tavg-u-hxy-lnd.mon.GLB", + "land.wetlandFrac.tavg-u-hxy-u.mon.GLB", + "landIce.acabf.tavg-u-hxy-is.mon.ATA", + "landIce.acabf.tavg-u-hxy-is.mon.GRL", + "landIce.acabf.tavg-u-hxy-is.yr.ATA", + "landIce.acabf.tavg-u-hxy-is.yr.GRL", + "landIce.agesno.tavg-u-hxy-lnd.mon.GLB", + "landIce.hfdsn.tavg-u-hxy-lnd.day.GLB", + "landIce.hfgeoubed.tavg-u-hxy-gis.yr.ATA", + "landIce.hfgeoubed.tavg-u-hxy-gis.yr.GRL", + "landIce.hfgeoubed.ti-u-hxy-gis.fx.ATA", + "landIce.iareafl.tavg-u-hm-fis.yr.ATA", + "landIce.iareafl.tavg-u-hm-fis.yr.GRL", + "landIce.iareagr.tavg-u-hm-gis.yr.ATA", + "landIce.iareagr.tavg-u-hm-gis.yr.GRL", + "landIce.icem.tavg-u-hxy-is.mon.ATA", + "landIce.icem.tavg-u-hxy-is.mon.GRL", + "landIce.libmassbf.tavg-u-hxy-fis.mon.ATA", + "landIce.libmassbf.tavg-u-hxy-fis.mon.GRL", + "landIce.libmassbf.tavg-u-hxy-fis.yr.ATA", + "landIce.libmassbf.tavg-u-hxy-fis.yr.GRL", + "landIce.libmassbf.tavg-u-hxy-gis.mon.ATA", + "landIce.libmassbf.tavg-u-hxy-gis.mon.GRL", + "landIce.libmassbf.tavg-u-hxy-gis.yr.ATA", + "landIce.libmassbf.tavg-u-hxy-gis.yr.GRL", + "landIce.licalvf.tavg-u-hxy-is.mon.ATA", + "landIce.licalvf.tavg-u-hxy-is.mon.GRL", + "landIce.licalvf.tavg-u-hxy-is.yr.ATA", + "landIce.licalvf.tavg-u-hxy-is.yr.GRL", + "landIce.lifmassbf.tavg-u-hxy-is.mon.ATA", + "landIce.lifmassbf.tavg-u-hxy-is.mon.GRL", + "landIce.lifmassbf.tavg-u-hxy-is.yr.ATA", + "landIce.lifmassbf.tavg-u-hxy-is.yr.GRL", + "landIce.lim.tavg-u-hm-is.yr.ATA", + "landIce.lim.tavg-u-hm-is.yr.GRL", + "landIce.limnsw.tavg-u-hm-is.yr.ATA", + "landIce.limnsw.tavg-u-hm-is.yr.GRL", + "landIce.litempbot.tavg-u-hxy-fis.mon.ATA", + "landIce.litempbot.tavg-u-hxy-fis.mon.GRL", + "landIce.litempbot.tavg-u-hxy-fis.yr.ATA", + "landIce.litempbot.tavg-u-hxy-fis.yr.GRL", + "landIce.litempbot.tavg-u-hxy-gis.mon.ATA", + "landIce.litempbot.tavg-u-hxy-gis.mon.GRL", + "landIce.litempbot.tavg-u-hxy-gis.yr.ATA", + "landIce.litempbot.tavg-u-hxy-gis.yr.GRL", + "landIce.litemptop.tavg-u-hxy-is.mon.ATA", + "landIce.litemptop.tavg-u-hxy-is.mon.GRL", + "landIce.litemptop.tavg-u-hxy-is.yr.ATA", + "landIce.litemptop.tavg-u-hxy-is.yr.GRL", + "landIce.lithk.tavg-u-hxy-is.yr.ATA", + "landIce.lithk.tavg-u-hxy-is.yr.GRL", + "landIce.lithk.ti-u-hxy-is.fx.ATA", + "landIce.lwsnl.tavg-u-hxy-lnd.day.GLB", + "landIce.lwsnl.tavg-u-hxy-lnd.mon.GLB", + "landIce.modelcellareai.tavg-u-hxy-u.yr.ATA", + "landIce.modelcellareai.tavg-u-hxy-u.yr.GRL", + "landIce.mrroLi.tavg-u-hxy-is.mon.ATA", + "landIce.mrroLi.tavg-u-hxy-is.mon.GRL", + "landIce.pflw.tavg-u-hxy-lnd.day.GLB", + "landIce.sbl.tavg-u-hxy-is.mon.ATA", + "landIce.sbl.tavg-u-hxy-is.mon.GRL", + "landIce.sbl.tavg-u-hxy-u.day.GLB", + "landIce.sftflf.tavg-u-hxy-u.yr.ATA", + "landIce.sftflf.tavg-u-hxy-u.yr.GRL", + "landIce.sftgrf.tavg-u-hxy-u.yr.ATA", + "landIce.sftgrf.tavg-u-hxy-u.yr.GRL", + "landIce.snc.tavg-u-hxy-is.mon.ATA", + "landIce.snc.tavg-u-hxy-is.mon.GRL", + "landIce.snc.tavg-u-hxy-is.yr.ATA", + "landIce.snc.tavg-u-hxy-is.yr.GRL", + "landIce.snc.tavg-u-hxy-lnd.day.GLB", + "landIce.snd.tavg-u-hxy-lnd.day.GLB", + "landIce.snicem.tavg-u-hxy-is.mon.ATA", + "landIce.snm.tavg-u-hxy-is.mon.ATA", + "landIce.snm.tavg-u-hxy-is.mon.GRL", + "landIce.snm.tavg-u-hxy-lnd.day.GLB", + "landIce.snrefr.tavg-u-hxy-is.mon.ATA", + "landIce.snrefr.tavg-u-hxy-is.mon.GRL", + "landIce.strbasemag.tavg-u-hxy-is.yr.ATA", + "landIce.strbasemag.tavg-u-hxy-is.yr.GRL", + "landIce.tendacabf.tavg-u-hm-is.yr.ATA", + "landIce.tendacabf.tavg-u-hm-is.yr.GRL", + "landIce.tendlibmassbf.tavg-u-hm-is.yr.ATA", + "landIce.tendlibmassbf.tavg-u-hm-is.yr.GRL", + "landIce.tendlicalvf.tavg-u-hm-is.yr.ATA", + "landIce.tendlicalvf.tavg-u-hm-is.yr.GRL", + "landIce.topg.tavg-u-hxy-gis.yr.ATA", + "landIce.topg.tavg-u-hxy-gis.yr.GRL", + "landIce.topg.ti-u-hxy-gis.fx.ATA", + "landIce.tpf.tavg-u-hxy-lnd.day.GLB", + "landIce.tsn.tavg-u-hxy-is.mon.ATA", + "landIce.tsn.tavg-u-hxy-is.mon.GRL", + "landIce.tsn.tavg-u-hxy-lnd.day.GLB", + "landIce.xvelbase.tavg-u-hxy-is.yr.ATA", + "landIce.xvelbase.tavg-u-hxy-is.yr.GRL", + "landIce.xvelmean.tavg-u-hxy-is.yr.ATA", + "landIce.xvelmean.tavg-u-hxy-is.yr.GRL", + "landIce.xvelsurf.tavg-u-hxy-is.yr.ATA", + "landIce.xvelsurf.tavg-u-hxy-is.yr.GRL", + "landIce.yvelbase.tavg-u-hxy-is.yr.ATA", + "landIce.yvelbase.tavg-u-hxy-is.yr.GRL", + "landIce.yvelmean.tavg-u-hxy-is.yr.ATA", + "landIce.yvelmean.tavg-u-hxy-is.yr.GRL", + "landIce.yvelsurf.tavg-u-hxy-is.yr.ATA", + "landIce.yvelsurf.tavg-u-hxy-is.yr.GRL", + "landIce.zvelbase.tavg-u-hxy-is.yr.ATA", + "landIce.zvelbase.tavg-u-hxy-is.yr.GRL", + "landIce.zvelsurf.tavg-u-hxy-is.yr.ATA", + "landIce.zvelsurf.tavg-u-hxy-is.yr.GRL", + "ocean.evspsbl.tavg-u-hxy-ifs.mon.GLB", + "ocean.hfacrossline.tavg-u-ht-sea.mon.GLB", + "ocean.hfevapds.tavg-u-hxy-ifs.mon.GLB", + "ocean.hfibthermds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfibthermds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfrainds.tavg-u-hxy-ifs.mon.GLB", + "ocean.hfrunoffds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfrunoffds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfsnthermds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfsnthermds.tavg-u-hxy-sea.mon.GLB", + "ocean.mfo.tavg-u-ht-sea.mon.GLB", + "ocean.sf6.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfacrossline.tavg-u-ht-sea.mon.GLB", + "ocean.sfdsi.tavg-u-hxy-sea.mon.GLB", + "ocean.sfriver.tavg-u-hxy-sea.mon.GLB", + "ocean.siflfwbot.tavg-u-hxy-sea.mon.GLB", + "ocean.so.tavg-ol-hxy-sea.day.GLB", + "ocean.t17d.tavg-u-hxy-sea.mon.GLB", + "ocean.t20d.tavg-u-hxy-sea.mon.GLB", + "ocean.tnkebto.tavg-u-hxy-sea.yr.GLB", + "ocean.vsf.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfcorr.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfevap.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfpr.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfriver.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfsit.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.arag.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.arag.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.calc.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.calc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chl.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.chlcalc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.detoc.tavg-ol-hxy-sea.day.GLB", + "ocnBgchem.dissoc.tavg-ol-hxy-sea.day.GLB", + "ocnBgchem.dmso.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.epn.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.epp.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.exparagob.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.expcalcob.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.expcob.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.expfeob.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.expnob.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.exppob.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.expsiob.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fgdms.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.frfe.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.frn.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppcalc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppdiat.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppdiaz.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppmisc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppnano.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppnitrate.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intpppico.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limfecalc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limfediat.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limfediaz.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limfemisc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limfepico.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limirrcalc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limirrdiat.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limirrdiaz.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limirrmisc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limirrpico.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limncalc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limndiat.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limndiaz.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limnmisc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limnpico.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.o2.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.o2sat.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.ph.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.pp.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.sialgc.tavg-u-hxy-si.mon.GLB", + "ocnBgchem.sichl.tavg-u-hxy-si.mon.GLB", + "ocnBgchem.sigpp.tavg-u-hxy-si.mon.GLB", + "ocnBgchem.sino3.tavg-u-hxy-si.mon.GLB", + "ocnBgchem.sisi.tavg-u-hxy-si.mon.GLB", + "seaIce.sfdsi.tavg-u-hxy-si.mon.GLB", + "seaIce.siage.tavg-u-hxy-si.mon.GLB", + "seaIce.siarea.tavg-u-hm-u.day.NH", + "seaIce.siarea.tavg-u-hm-u.day.SH", + "seaIce.sicompstren.tavg-u-hxy-si.mon.GLB", + "seaIce.sidivvel.tpt-u-hxy-si.mon.GLB", + "seaIce.sidmasstranx.tavg-u-hxy-u.mon.GLB", + "seaIce.sidmasstrany.tavg-u-hxy-u.mon.GLB", + "seaIce.sidragbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidragtop.tavg-u-hxy-si.mon.GLB", + "seaIce.siextent.tavg-u-hm-u.day.NH", + "seaIce.siextent.tavg-u-hm-u.day.SH", + "seaIce.sifb.tavg-u-hxy-si.day.GLB", + "seaIce.sifb.tavg-u-hxy-si.mon.GLB", + "seaIce.siflfwbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflfwdrain.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcecoriolx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcecorioly.tavg-u-hxy-si.mon.GLB", + "seaIce.siforceintstrx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforceintstry.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcetiltx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcetilty.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdconc.tavg-u-hxy-si.day.GLB", + "seaIce.siitdsnconc.tavg-u-hxy-si.day.GLB", + "seaIce.siitdsnthick.tavg-u-hxy-si.day.GLB", + "seaIce.siitdthick.tavg-u-hxy-si.day.GLB", + "seaIce.simpconc.tavg-u-hxy-si.day.GLB", + "seaIce.simpeffconc.tavg-u-hxy-si.day.GLB", + "seaIce.simpeffconc.tavg-u-hxy-si.mon.GLB", + "seaIce.simprefrozen.tavg-u-hxy-simp.day.GLB", + "seaIce.simprefrozen.tavg-u-hxy-simp.mon.GLB", + "seaIce.simpthick.tavg-u-hxy-si.day.GLB", + "seaIce.simpthick.tavg-u-hxy-simp.mon.GLB", + "seaIce.sirdgconc.tavg-u-hxy-si.day.GLB", + "seaIce.sisali.tavg-u-hxy-si.day.GLB", + "seaIce.sisali.tavg-u-hxy-si.mon.GLB", + "seaIce.sisaltmass.tavg-u-hxy-si.day.GLB", + "seaIce.sishearvel.tpt-u-hxy-si.mon.GLB", + "seaIce.sisnmass.tavg-u-hm-u.day.NH", + "seaIce.sisnmass.tavg-u-hm-u.day.SH", + "seaIce.sitempbot.tavg-u-hxy-si.day.GLB", + "seaIce.sitempbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sitempsnic.tavg-u-hxy-si.day.GLB", + "seaIce.sithick.tavg-u-hxy-sir.day.GLB", + "seaIce.sithick.tavg-u-hxy-sir.mon.GLB", + "seaIce.sivol.tavg-u-hm-u.day.NH", + "seaIce.sivol.tavg-u-hm-u.day.SH" + ], + "Low": [ + "aerosol.sfpm1.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.sfpm10.tavg-h2m-hxy-u.1hr.GLB", + "atmos.hurs.tmin-h2m-hxy-crp.day.GLB", + "atmos.pr.tavg-u-hxy-crp.day.GLB", + "atmos.tas.tmax-h2m-hxy-crp.day.GLB", + "atmos.tas.tmin-h2m-hxy-crp.day.GLB", + "atmosChem.drynh3.tavg-u-hxy-u.day.GLB", + "atmosChem.drynh4.tavg-u-hxy-u.day.GLB", + "atmosChem.drynoy.tavg-u-hxy-u.day.GLB", + "atmosChem.flashrate.tavg-u-hxy-u.mon.GLB", + "atmosChem.wetnh3.tavg-u-hxy-u.day.GLB", + "atmosChem.wetnh4.tavg-u-hxy-u.day.GLB", + "atmosChem.wetnoy.tavg-u-hxy-u.day.GLB", + "land.c13Land.tavg-u-hxy-lnd.mon.GLB", + "land.c13Litter.tavg-u-hxy-lnd.mon.GLB", + "land.c13Soil.tavg-u-hxy-lnd.mon.GLB", + "land.c13Veg.tavg-u-hxy-lnd.mon.GLB", + "land.c14Land.tavg-u-hxy-lnd.mon.GLB", + "land.c14Litter.tavg-u-hxy-lnd.mon.GLB", + "land.c14Soil.tavg-u-hxy-lnd.mon.GLB", + "land.c14Veg.tavg-u-hxy-lnd.mon.GLB", + "land.c3PftFrac.tavg-u-hxy-u.mon.GLB", + "land.c4PftFrac.tavg-u-hxy-u.mon.GLB", + "land.gppc13.tavg-u-hxy-lnd.mon.GLB", + "land.gppc14.tavg-u-hxy-lnd.mon.GLB", + "land.lai.tavg-u-hxy-lnd.day.GLB", + "land.netAtmosLandC13Flux.tavg-u-hxy-lnd.mon.GLB", + "land.netAtmosLandC14Flux.tavg-u-hxy-lnd.mon.GLB", + "land.rac13.tavg-u-hxy-lnd.mon.GLB", + "land.rac14.tavg-u-hxy-lnd.mon.GLB", + "land.rhc13.tavg-u-hxy-lnd.mon.GLB", + "land.rhc14.tavg-u-hxy-lnd.mon.GLB", + "ocean.difmxybo.tavg-ol-hxy-sea.yr.GLB", + "ocean.difmxylo.tavg-ol-hxy-sea.yr.GLB", + "ocean.diftrblo.tavg-ol-hxy-sea.yr.GLB", + "ocean.diftrelo.tavg-ol-hxy-sea.yr.GLB", + "ocean.difvho.tavg-ol-hxy-sea.yr.GLB", + "ocean.difvso.tavg-ol-hxy-sea.yr.GLB", + "ocean.dispkexyfo.tavg-u-hxy-sea.yr.GLB", + "ocean.dxto.ti-u-hxy-u.fx.GLB", + "ocean.dxuo.ti-u-hxy-u.fx.GLB", + "ocean.dxvo.ti-u-hxy-u.fx.GLB", + "ocean.dyto.ti-u-hxy-u.fx.GLB", + "ocean.dyuo.ti-u-hxy-u.fx.GLB", + "ocean.dyvo.ti-u-hxy-u.fx.GLB", + "ocean.mlotstsq.tavg-u-hxy-sea.mon.GLB", + "ocean.msftmmpa.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftmmpa.tavg-rho-hyb-sea.mon.GLB", + "ocean.msftmsmpa.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftypa.tavg-ol-ht-sea.mon.GLB", + "ocean.msftypa.tavg-rho-ht-sea.mon.GLB", + "ocean.ocontempdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontempmint.tavg-u-hxy-sea.yr.GLB", + "ocean.ocontemppadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemppmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemppsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemprmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemptend.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottempdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottempmint.tavg-u-hxy-sea.yr.GLB", + "ocean.opottemppadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemppmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemppsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemprmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemptend.tavg-ol-hxy-sea.dec.GLB", + "ocean.osaltdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpsmadvect.tavg-ol-hxy-sea.mon.GLB", + "ocean.osaltpsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltrmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osalttend.tavg-ol-hxy-sea.yr.GLB", + "ocean.rsdo.tavg-ol-hxy-sea.day.GLB", + "ocean.rsdoabsorb.tavg-ol-hxy-sea.yr.GLB", + "ocean.somint.tavg-u-hxy-sea.yr.GLB", + "ocean.sossq.tavg-u-hxy-sea.mon.GLB", + "ocean.thkcelluo.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcellvo.tavg-ol-hxy-sea.mon.GLB", + "ocean.tnpeo.tavg-u-hxy-sea.yr.GLB", + "ocean.tossq.tavg-u-hxy-sea.mon.GLB", + "ocean.wo.tavg-ol-hxy-sea.day.GLB", + "ocnBgchem.dissi13c.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.dissi13c.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissi14c.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissi14cabio.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.dissi14cabio.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.expcob.tavg-u-hxy-sea.day.GLB", + "ocnBgchem.fg13co2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fg14co2abio.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intpoc.tavg-u-hxy-sea.day.GLB", + "ocnBgchem.o2.tavg-d0m-hxy-sea.day.GLB", + "ocnBgchem.o2min.tavg-u-hxy-sea.day.GLB", + "ocnBgchem.phyc.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.phycalc.tavg-ol-hxy-sea.day.GLB", + "ocnBgchem.phydiat.tavg-d0m-hxy-sea.day.GLB", + "ocnBgchem.phydiaz.tavg-d0m-hxy-sea.day.GLB", + "ocnBgchem.phymisc.tavg-d0m-hxy-sea.day.GLB", + "ocnBgchem.phynano.tavg-u-hxy-sea.day.GLB", + "ocnBgchem.phypico.tavg-ol-hxy-sea.day.GLB", + "ocnBgchem.zmeso.tavg-ol-hxy-sea.day.GLB", + "ocnBgchem.zmicro.tavg-ol-hxy-sea.day.GLB", + "ocnBgchem.zooc.tavg-ol-hxy-sea.day.GLB" + ] + }, + "scenariomip11": { + "Core": [ + "atmos.areacella.ti-u-hxy-u.fx.GLB", + "atmos.cl.tavg-al-hxy-u.mon.GLB", + "atmos.cli.tavg-al-hxy-u.mon.GLB", + "atmos.clivi.tavg-u-hxy-u.mon.GLB", + "atmos.clt.tavg-u-hxy-u.day.GLB", + "atmos.clt.tavg-u-hxy-u.mon.GLB", + "atmos.clw.tavg-al-hxy-u.mon.GLB", + "atmos.clwvi.tavg-u-hxy-u.mon.GLB", + "atmos.evspsbl.tavg-u-hxy-u.mon.GLB", + "atmos.hfls.tavg-u-hxy-u.mon.GLB", + "atmos.hfss.tavg-u-hxy-u.mon.GLB", + "atmos.hur.tavg-p19-hxy-air.mon.GLB", + "atmos.hur.tavg-p19-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.6hr.GLB", + "atmos.hurs.tavg-h2m-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.mon.GLB", + "atmos.hus.tavg-p19-hxy-u.day.GLB", + "atmos.hus.tavg-p19-hxy-u.mon.GLB", + "atmos.huss.tavg-h2m-hxy-u.day.GLB", + "atmos.huss.tavg-h2m-hxy-u.mon.GLB", + "atmos.huss.tpt-h2m-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.1hr.GLB", + "atmos.pr.tavg-u-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.day.GLB", + "atmos.pr.tavg-u-hxy-u.mon.GLB", + "atmos.prc.tavg-u-hxy-u.mon.GLB", + "atmos.prsn.tavg-u-hxy-u.mon.GLB", + "atmos.prw.tavg-u-hxy-u.mon.GLB", + "atmos.ps.tavg-u-hxy-u.day.GLB", + "atmos.ps.tavg-u-hxy-u.mon.GLB", + "atmos.psl.tavg-u-hxy-u.day.GLB", + "atmos.psl.tavg-u-hxy-u.mon.GLB", + "atmos.rlds.tavg-u-hxy-u.mon.GLB", + "atmos.rldscs.tavg-u-hxy-u.mon.GLB", + "atmos.rlus.tavg-u-hxy-u.mon.GLB", + "atmos.rluscs.tavg-u-hxy-u.mon.GLB", + "atmos.rlut.tavg-u-hxy-u.mon.GLB", + "atmos.rlutcs.tavg-u-hxy-u.mon.GLB", + "atmos.rsds.tavg-u-hxy-u.day.GLB", + "atmos.rsds.tavg-u-hxy-u.mon.GLB", + "atmos.rsdscs.tavg-u-hxy-u.mon.GLB", + "atmos.rsdt.tavg-u-hxy-u.mon.GLB", + "atmos.rsus.tavg-u-hxy-u.mon.GLB", + "atmos.rsuscs.tavg-u-hxy-u.mon.GLB", + "atmos.rsut.tavg-u-hxy-u.mon.GLB", + "atmos.rsutcs.tavg-u-hxy-u.mon.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.day.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.mon.GLB", + "atmos.sftlf.ti-u-hxy-u.fx.GLB", + "atmos.ta.tavg-p19-hxy-air.day.GLB", + "atmos.ta.tavg-p19-hxy-air.mon.GLB", + "atmos.ta.tpt-p3-hxy-air.6hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.day.GLB", + "atmos.tas.tavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tmax-h2m-hxy-u.day.GLB", + "atmos.tas.tmaxavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tmin-h2m-hxy-u.day.GLB", + "atmos.tas.tminavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tpt-h2m-hxy-u.3hr.GLB", + "atmos.tauu.tavg-u-hxy-u.mon.GLB", + "atmos.tauv.tavg-u-hxy-u.mon.GLB", + "atmos.ts.tavg-u-hxy-u.mon.GLB", + "atmos.ua.tavg-p19-hxy-air.day.GLB", + "atmos.ua.tavg-p19-hxy-air.mon.GLB", + "atmos.ua.tpt-p3-hxy-air.6hr.GLB", + "atmos.uas.tavg-h10m-hxy-u.day.GLB", + "atmos.uas.tavg-h10m-hxy-u.mon.GLB", + "atmos.uas.tpt-h10m-hxy-u.3hr.GLB", + "atmos.va.tavg-p19-hxy-air.day.GLB", + "atmos.va.tavg-p19-hxy-air.mon.GLB", + "atmos.va.tpt-p3-hxy-air.6hr.GLB", + "atmos.vas.tavg-h10m-hxy-u.day.GLB", + "atmos.vas.tavg-h10m-hxy-u.mon.GLB", + "atmos.vas.tpt-h10m-hxy-u.3hr.GLB", + "atmos.wap.tavg-p19-hxy-air.mon.GLB", + "atmos.wap.tavg-p19-hxy-u.day.GLB", + "atmos.zg.tavg-p19-hxy-air.day.GLB", + "atmos.zg.tavg-p19-hxy-air.mon.GLB", + "land.evspsblsoi.tavg-u-hxy-lnd.mon.GLB", + "land.evspsblveg.tavg-u-hxy-lnd.mon.GLB", + "land.lai.tavg-u-hxy-lnd.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.mon.GLB", + "land.mrros.tavg-u-hxy-lnd.mon.GLB", + "land.mrso.tavg-u-hxy-lnd.mon.GLB", + "land.mrsofc.ti-u-hxy-lnd.fx.GLB", + "land.mrsol.tavg-d10cm-hxy-lnd.mon.GLB", + "land.orog.ti-u-hxy-u.fx.GLB", + "land.rootd.ti-u-hxy-lnd.fx.GLB", + "land.sftgif.ti-u-hxy-u.fx.GLB", + "land.slthick.ti-sl-hxy-lnd.fx.GLB", + "landIce.mrfso.tavg-u-hxy-lnd.mon.GLB", + "landIce.snc.tavg-u-hxy-lnd.mon.GLB", + "landIce.snw.tavg-u-hxy-lnd.mon.GLB", + "ocean.areacello.ti-u-hxy-u.fx.GLB", + "ocean.basin.ti-u-hxy-u.fx.GLB", + "ocean.bigthetao.tavg-ol-hxy-sea.mon.GLB", + "ocean.deptho.ti-u-hxy-sea.fx.GLB", + "ocean.hfds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfgeou.ti-u-hxy-sea.fx.GLB", + "ocean.masscello.tavg-ol-hxy-sea.mon.GLB", + "ocean.masscello.ti-ol-hxy-sea.fx.GLB", + "ocean.mlotst.tavg-u-hxy-sea.mon.GLB", + "ocean.sftof.ti-u-hxy-u.fx.GLB", + "ocean.so.tavg-ol-hxy-sea.mon.GLB", + "ocean.sos.tavg-u-hxy-sea.day.GLB", + "ocean.sos.tavg-u-hxy-sea.mon.GLB", + "ocean.tauuo.tavg-u-hxy-sea.mon.GLB", + "ocean.tauvo.tavg-u-hxy-sea.mon.GLB", + "ocean.thetao.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcello.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcello.ti-ol-hxy-sea.fx.GLB", + "ocean.tos.tavg-u-hxy-sea.day.GLB", + "ocean.tos.tavg-u-hxy-sea.mon.GLB", + "ocean.umo.tavg-ol-hxy-sea.mon.GLB", + "ocean.uo.tavg-ol-hxy-sea.mon.GLB", + "ocean.vmo.tavg-ol-hxy-sea.mon.GLB", + "ocean.vo.tavg-ol-hxy-sea.mon.GLB", + "ocean.wmo.tavg-ol-hxy-sea.mon.GLB", + "ocean.wo.tavg-ol-hxy-sea.mon.GLB", + "ocean.zos.tavg-u-hxy-sea.day.GLB", + "ocean.zos.tavg-u-hxy-sea.mon.GLB", + "ocean.zostoga.tavg-u-hm-sea.mon.GLB", + "seaIce.siconc.tavg-u-hxy-u.day.GLB", + "seaIce.siconc.tavg-u-hxy-u.mon.GLB", + "seaIce.simass.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-si.mon.GLB", + "seaIce.sitimefrac.tavg-u-hxy-sea.mon.GLB", + "seaIce.siu.tavg-u-hxy-si.mon.GLB", + "seaIce.siv.tavg-u-hxy-si.mon.GLB", + "seaIce.snd.tavg-u-hxy-sn.mon.GLB", + "seaIce.ts.tavg-u-hxy-si.mon.GLB" + ], + "High": [ + "aerosol.abs550aer.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550bc.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550dust.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550no3.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550oa.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550so4.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550ss.tavg-u-hxy-u.mon.GLB", + "aerosol.airmass.tavg-al-hxy-u.mon.GLB", + "aerosol.aoanh.tavg-al-hxy-u.mon.NH", + "aerosol.bry.tavg-p39-hy-air.mon.GLB", + "aerosol.bs550aer.tpt-al-hxy-u.6hr.GLB", + "aerosol.c2h6.tavg-al-hxy-u.mon.GLB", + "aerosol.c3h6.tavg-al-hxy-u.mon.GLB", + "aerosol.c3h8.tavg-al-hxy-u.mon.GLB", + "aerosol.ccldncl.tavg-u-hxy-ccl.mon.GLB", + "aerosol.ccn.tavg-u-hxy-ccl.mon.30S-90S", + "aerosol.ccn.tavg-u-hxy-ccl.mon.GLB", + "aerosol.ccn1.tavg-al-hxy-u.mon.30S-90S", + "aerosol.ccn1.tavg-al-hxy-u.mon.GLB", + "aerosol.ccnp02.tavg-al-hxy-u.mon.30S-90S", + "aerosol.ccnp02.tavg-al-hxy-u.mon.GLB", + "aerosol.cdnc.tavg-al-hxy-u.mon.30S-90S", + "aerosol.cdnc.tavg-al-hxy-u.mon.GLB", + "aerosol.cfc114.tavg-al-hxy-u.mon.GLB", + "aerosol.ch3coch3.tavg-al-hxy-u.mon.GLB", + "aerosol.cheaqpso4.tavg-al-hxy-u.mon.GLB", + "aerosol.chegpso4.tavg-al-hxy-u.mon.GLB", + "aerosol.chepasoa.tavg-u-hxy-u.mon.GLB", + "aerosol.chepsoa.tavg-u-hxy-u.mon.GLB", + "aerosol.cly.tavg-p39-hy-air.mon.GLB", + "aerosol.co.tavg-al-hxy-u.mon.GLB", + "aerosol.co.tavg-h2m-hxy-u.day.GLB", + "aerosol.cod.tavg-u-hxy-u.day.GLB", + "aerosol.cod.tavg-u-hxy-u.mon.30S-90S", + "aerosol.cod.tavg-u-hxy-u.mon.GLB", + "aerosol.conccn.tavg-al-hxy-u.mon.GLB", + "aerosol.conccn.tpt-u-hs-u.3hr.GLB", + "aerosol.depdust.tavg-u-hxy-u.mon.GLB", + "aerosol.drybc.tavg-u-hxy-u.mon.GLB", + "aerosol.drydust.tavg-u-hxy-u.mon.GLB", + "aerosol.dryno3.tavg-u-hxy-u.mon.GLB", + "aerosol.dryo3.tavg-u-hxy-u.mon.GLB", + "aerosol.dryoa.tavg-u-hxy-u.mon.GLB", + "aerosol.dryso2.tavg-u-hxy-u.mon.GLB", + "aerosol.dryso4.tavg-u-hxy-u.mon.GLB", + "aerosol.dryss.tavg-u-hxy-u.mon.GLB", + "aerosol.ec550aer.tavg-al-hxy-u.mon.GLB", + "aerosol.ec550aer.tpt-u-hxy-u.6hr.GLB", + "aerosol.emiaco.tavg-u-hxy-u.mon.GLB", + "aerosol.emianox.tavg-u-hxy-u.mon.GLB", + "aerosol.emiaoa.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbbc.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbch4.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbco.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbdms.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbnh3.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbnox.tavg-u-hxy-u.mon.GLB", + "aerosol.emibboa.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbso2.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbvoc.tavg-u-hxy-u.mon.GLB", + "aerosol.emibc.tavg-u-hxy-u.mon.GLB", + "aerosol.emibvoc.tavg-u-hxy-u.mon.GLB", + "aerosol.emico.tavg-u-hxy-u.mon.GLB", + "aerosol.emidms.tavg-u-hxy-u.mon.30S-90S", + "aerosol.emidms.tavg-u-hxy-u.mon.GLB", + "aerosol.emidust.tavg-u-hxy-u.mon.GLB", + "aerosol.emiisop.tavg-u-hxy-u.mon.GLB", + "aerosol.emilnox.tavg-al-hxy-u.mon.GLB", + "aerosol.eminh3.tavg-u-hxy-u.mon.GLB", + "aerosol.eminox.tavg-u-hxy-u.mon.GLB", + "aerosol.emioa.tavg-u-hxy-u.mon.GLB", + "aerosol.emiso2.tavg-u-hxy-u.mon.GLB", + "aerosol.emiso4.tavg-u-hxy-u.mon.GLB", + "aerosol.emiss.tavg-u-hxy-u.mon.30S-90S", + "aerosol.emiss.tavg-u-hxy-u.mon.GLB", + "aerosol.emivoc.tavg-u-hxy-u.mon.GLB", + "aerosol.h2o.tavg-al-hxy-u.mon.GLB", + "aerosol.h2o.tavg-p39-hy-air.mon.GLB", + "aerosol.hcfc22.tavg-al-hxy-u.mon.GLB", + "aerosol.hcho.tavg-al-hxy-u.mon.GLB", + "aerosol.hcl.tavg-al-hxy-u.mon.GLB", + "aerosol.hcl.tavg-p39-hy-air.mon.GLB", + "aerosol.hfc125.tavg-al-hxy-u.mon.GLB", + "aerosol.hfc134a.tavg-al-hxy-u.mon.GLB", + "aerosol.hno3.tavg-al-hxy-u.mon.GLB", + "aerosol.hno3.tavg-p39-hy-air.mon.GLB", + "aerosol.ho2.tavg-p39-hy-air.mon.GLB", + "aerosol.isop.tavg-al-hxy-u.mon.GLB", + "aerosol.jno2.tavg-al-hxy-u.mon.GLB", + "aerosol.lossch4.tavg-al-hxy-u.mon.GLB", + "aerosol.lossco.tavg-al-hxy-u.mon.GLB", + "aerosol.lossn2o.tavg-al-hxy-u.mon.GLB", + "aerosol.lwp.tavg-u-hxy-u.mon.GLB", + "aerosol.mmraerh2o.tavg-al-hxy-u.mon.GLB", + "aerosol.mmraerh2o.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmraerh2o.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrbc.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrbc.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrbc.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrbc.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrdust.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrdust.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrdust.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrdust.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrnh4.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrnh4.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrnh4.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrnh4.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrno3.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrno3.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrno3.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrno3.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmroa.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmroa.tavg-al-hxy-u.mon.GLB", + "aerosol.mmroa.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmroa.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrpm1.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrpm1.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrpm2p5.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrpm2p5.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrso4.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrso4.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrso4.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrso4.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrsoa.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrsoa.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrsoa.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrss.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrss.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrss.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrss.tpt-h2m-hs-u.3hr.GLB", + "aerosol.nh50.tavg-al-hxy-u.mon.GLB", + "aerosol.no.tavg-al-hxy-u.mon.GLB", + "aerosol.no2.tavg-al-hxy-u.mon.GLB", + "aerosol.no2.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.noy.tavg-p39-hy-air.mon.GLB", + "aerosol.o3.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.o3.tmax-h2m-hxy-u.day.GLB", + "aerosol.o3loss.tavg-al-hxy-u.mon.GLB", + "aerosol.o3prod.tavg-al-hxy-u.mon.GLB", + "aerosol.od443aer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550aer.tavg-u-hxy-u.day.GLB", + "aerosol.od550aer.tavg-u-hxy-u.mon.30S-90S", + "aerosol.od550aer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550aerh2o.tavg-u-hxy-u.mon.GLB", + "aerosol.od550bb.tavg-u-hxy-u.mon.GLB", + "aerosol.od550bc.tavg-u-hxy-u.mon.GLB", + "aerosol.od550csaer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550dust.tavg-u-hxy-u.mon.GLB", + "aerosol.od550lt1aer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550no3.tavg-u-hxy-u.mon.GLB", + "aerosol.od550oa.tavg-u-hxy-u.mon.GLB", + "aerosol.od550so4.tavg-u-hxy-u.mon.GLB", + "aerosol.od550soa.tavg-u-hxy-u.mon.GLB", + "aerosol.od550ss.tavg-u-hxy-u.mon.GLB", + "aerosol.od865aer.tavg-u-hxy-u.mon.GLB", + "aerosol.oh.tavg-al-hxy-u.mon.GLB", + "aerosol.oh.tavg-p39-hy-air.mon.GLB", + "aerosol.pan.tavg-al-hxy-u.mon.GLB", + "aerosol.photo1d.tavg-al-hxy-u.mon.GLB", + "aerosol.pod0.tsum-u-hxy-u.mon.GLB", + "aerosol.reffccwctop.tavg-u-hxy-cl.mon.GLB", + "aerosol.reffclwtop.tavg-u-hxy-cl.mon.30S-90S", + "aerosol.reffclwtop.tavg-u-hxy-cl.mon.GLB", + "aerosol.rluscsaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rlutaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rlutcsaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rsutaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rsutcsaf.tavg-u-hxy-u.mon.GLB", + "aerosol.sfpm1.tavg-h2m-hxy-u.day.GLB", + "aerosol.sfpm10.tavg-al-hxy-u.mon.30S-90S", + "aerosol.sfpm10.tavg-al-hxy-u.mon.GLB", + "aerosol.sfpm10.tavg-h2m-hxy-u.day.GLB", + "aerosol.sfpm25.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.sfpm25.tavg-h2m-hxy-u.day.GLB", + "aerosol.so2.tavg-al-hxy-u.mon.30S-90S", + "aerosol.so2.tavg-al-hxy-u.mon.GLB", + "aerosol.so2.tavg-h2m-hxy-u.day.GLB", + "aerosol.so2.tpt-h2m-hs-u.3hr.GLB", + "aerosol.tatp.tavg-u-hxy-u.mon.GLB", + "aerosol.toz.tavg-u-hxy-u.day.GLB", + "aerosol.toz.tavg-u-hxy-u.mon.GLB", + "aerosol.tropoz.tavg-u-hxy-u.mon.GLB", + "aerosol.ttop.tavg-u-hxy-cl.mon.GLB", + "aerosol.ua.tavg-10hPa-hxy-air.day.GLB", + "aerosol.vt100.tavg-100hPa-hy-air.mon.GLB", + "aerosol.wa.tavg-al-hxy-u.mon.GLB", + "aerosol.wetbc.tavg-u-hxy-u.mon.GLB", + "aerosol.wetdust.tavg-u-hxy-u.mon.GLB", + "aerosol.wetoa.tavg-u-hxy-u.mon.GLB", + "aerosol.wetso2.tavg-u-hxy-u.mon.GLB", + "aerosol.wetso4.tavg-u-hxy-u.mon.GLB", + "aerosol.wetss.tavg-u-hxy-u.mon.GLB", + "aerosol.zg.tavg-10hPa-hxy-air.day.GLB", + "atmos.albisccp.tavg-u-hxy-cl.mon.30S-90S", + "atmos.bldep.tavg-u-hxy-u.mon.GLB", + "atmos.bldep.tmax-u-hxy-u.day.GLB", + "atmos.bldep.tmin-u-hxy-u.day.GLB", + "atmos.bldep.tpt-u-hxy-u.3hr.GLB", + "atmos.cl.tavg-al-hxy-u.day.GLB", + "atmos.cl.tavg-al-hxy-u.mon.30S-90S", + "atmos.clc.tavg-al-hxy-u.mon.30S-90S", + "atmos.clc.tavg-al-hxy-u.mon.GLB", + "atmos.clcalipso.tavg-220hPa-hxy-air.mon.30S-90S", + "atmos.clcalipso.tavg-220hPa-hxy-air.mon.GLB", + "atmos.clcalipso.tavg-560hPa-hxy-air.mon.30S-90S", + "atmos.clcalipso.tavg-560hPa-hxy-air.mon.GLB", + "atmos.clcalipso.tavg-840hPa-hxy-air.mon.30S-90S", + "atmos.clcalipso.tavg-840hPa-hxy-air.mon.GLB", + "atmos.clcalipso.tavg-h40-hxy-air.mon.30S-90S", + "atmos.clcalipso.tavg-h40-hxy-air.mon.GLB", + "atmos.cldnci.tavg-u-hxy-cl.mon.GLB", + "atmos.cldncl.tavg-u-hxy-cl.mon.GLB", + "atmos.cldnvi.tavg-u-hxy-u.day.GLB", + "atmos.cldnvi.tavg-u-hxy-u.mon.GLB", + "atmos.cli.tavg-al-hxy-u.day.GLB", + "atmos.cli.tavg-al-hxy-u.mon.30S-90S", + "atmos.clic.tavg-al-hxy-u.mon.30S-90S", + "atmos.clis.tavg-al-hxy-u.mon.30S-90S", + "atmos.clisccp.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clisccp.tavg-p7c-hxy-air.mon.GLB", + "atmos.clivi.tavg-u-hxy-u.3hr.GLB", + "atmos.clivi.tavg-u-hxy-u.day.GLB", + "atmos.clivi.tavg-u-hxy-u.mon.30S-90S", + "atmos.clivimodis.tavg-u-hxy-u.mon.30S-90S", + "atmos.clivimodis.tavg-u-hxy-u.mon.GLB", + "atmos.clmodis.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clmodis.tavg-p7c-hxy-air.mon.GLB", + "atmos.clmodisice.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clmodisice.tavg-p7c-hxy-air.mon.GLB", + "atmos.clmodisiceReff.tavg-u-hxy-u.mon.GLB", + "atmos.clmodisliquid.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clmodisliquid.tavg-p7c-hxy-air.mon.GLB", + "atmos.clmodisliquidReff.tavg-u-hxy-u.mon.GLB", + "atmos.cls.tavg-al-hxy-u.mon.30S-90S", + "atmos.clt.tavg-u-hxy-lnd.day.GLB", + "atmos.clt.tavg-u-hxy-u.1hr.30S-90S", + "atmos.clt.tavg-u-hxy-u.3hr.GLB", + "atmos.clt.tavg-u-hxy-u.mon.30S-90S", + "atmos.cltc.tavg-u-hxy-u.mon.GLB", + "atmos.cltcalipso.tavg-u-hxy-u.day.GLB", + "atmos.cltcalipso.tavg-u-hxy-u.mon.30S-90S", + "atmos.cltcalipso.tavg-u-hxy-u.mon.GLB", + "atmos.cltcalipso.tpt-u-hxy-u.3hr.GLB", + "atmos.cltisccp.tavg-u-hxy-u.day.GLB", + "atmos.cltisccp.tavg-u-hxy-u.mon.30S-90S", + "atmos.cltisccp.tavg-u-hxy-u.mon.GLB", + "atmos.cltmodis.tavg-u-hxy-u.mon.30S-90S", + "atmos.cltmodis.tavg-u-hxy-u.mon.GLB", + "atmos.clw.tavg-al-hxy-u.day.GLB", + "atmos.clw.tavg-al-hxy-u.mon.30S-90S", + "atmos.clwc.tavg-al-hxy-u.mon.30S-90S", + "atmos.clws.tavg-al-hxy-u.mon.30S-90S", + "atmos.clwvi.tavg-u-hxy-u.3hr.GLB", + "atmos.clwvi.tavg-u-hxy-u.day.GLB", + "atmos.clwvi.tavg-u-hxy-u.mon.30S-90S", + "atmos.clwvimodis.tavg-u-hxy-u.mon.30S-90S", + "atmos.clwvimodis.tavg-u-hxy-u.mon.GLB", + "atmos.co2.tavg-al-hxy-u.mon.GLB", + "atmos.co2.tavg-h2m-hxy-u.mon.GLB", + "atmos.co2.tavg-p19-hxy-air.mon.GLB", + "atmos.co2.tclm-p19-hxy-air.mon.GLB", + "atmos.co2.tclm-u-hm-u.mon.GLB", + "atmos.co23D.tavg-al-hxy-u.mon.GLB", + "atmos.co2mass.tavg-u-hm-u.mon.GLB", + "atmos.dmc.tavg-alh-hxy-u.mon.30S-90S", + "atmos.edt.tavg-al-hxy-u.mon.30S-90S", + "atmos.epfy.tavg-p39-hy-air.day.GLB", + "atmos.epfy.tavg-p39-hy-air.mon.GLB", + "atmos.epfz.tavg-p39-hy-air.day.GLB", + "atmos.epfz.tavg-p39-hy-air.mon.GLB", + "atmos.evspsbl.tavg-u-hxy-lnd.day.GLB", + "atmos.evu.tavg-al-hxy-u.mon.30S-90S", + "atmos.fco2antt.tavg-u-hxy-u.mon.GLB", + "atmos.fco2fos.tavg-u-hxy-u.mon.GLB", + "atmos.fco2nat.tavg-u-hxy-u.mon.GLB", + "atmos.hfls.tavg-u-hxy-is.mon.GRL", + "atmos.hfls.tavg-u-hxy-u.3hr.GLB", + "atmos.hfls.tavg-u-hxy-u.day.GLB", + "atmos.hfls.tavg-u-hxy-u.mon.30S-90S", + "atmos.hfss.tavg-u-hxy-u.3hr.GLB", + "atmos.hfss.tavg-u-hxy-u.day.GLB", + "atmos.hfss.tavg-u-hxy-u.mon.30S-90S", + "atmos.hur.tavg-al-hxy-u.mon.30S-90S", + "atmos.hur.tavg-al-hxy-u.mon.GLB", + "atmos.hur.tavg-p19-hxy-air.mon.30S-90S", + "atmos.hurs.tavg-h2m-hxy-u.1hr.30S-90S", + "atmos.hurs.tavg-h2m-hxy-u.mon.30S-90S", + "atmos.hurs.tmax-h2m-hxy-u.day.GLB", + "atmos.hurs.tmin-h2m-hxy-u.day.GLB", + "atmos.hurs.tpt-h2m-hxy-u.3hr.GLB", + "atmos.hus.tavg-al-hxy-u.mon.30S-90S", + "atmos.hus.tavg-al-hxy-u.mon.GLB", + "atmos.hus.tavg-p19-hxy-u.mon.30S-90S", + "atmos.hus.tpt-al-hxy-u.6hr.GLB", + "atmos.hus.tpt-p7h-hxy-air.6hr.GLB", + "atmos.huss.tavg-h2m-hxy-u.6hr.GLB", + "atmos.huss.tavg-h2m-hxy-u.mon.30S-90S", + "atmos.huss.tpt-h2m-hxy-u.1hr.GLB", + "atmos.intuadse.tavg-u-hxy-u.day.GLB", + "atmos.intuadse.tavg-u-hxy-u.mon.GLB", + "atmos.intuaw.tavg-u-hxy-u.day.GLB", + "atmos.intuaw.tavg-u-hxy-u.mon.GLB", + "atmos.intuaw.tpt-u-hxy-u.6hr.GLB", + "atmos.intvadse.tavg-u-hxy-u.day.GLB", + "atmos.intvadse.tavg-u-hxy-u.mon.GLB", + "atmos.intvaw.tavg-u-hxy-u.day.GLB", + "atmos.intvaw.tavg-u-hxy-u.mon.GLB", + "atmos.intvaw.tpt-u-hxy-u.6hr.GLB", + "atmos.loadbc.tavg-u-hxy-u.day.GLB", + "atmos.loadoa.tavg-u-hxy-u.day.GLB", + "atmos.loadpoa.tavg-u-hxy-u.day.GLB", + "atmos.mc.tavg-alh-hxy-u.mon.GLB", + "atmos.mcd.tavg-alh-hxy-u.mon.30S-90S", + "atmos.mcu.tavg-alh-hxy-u.mon.30S-90S", + "atmos.mcu.tavg-alh-hxy-u.mon.GLB", + "atmos.pctisccp.tavg-u-hxy-cl.day.GLB", + "atmos.pctisccp.tavg-u-hxy-cl.mon.30S-90S", + "atmos.pctisccp.tavg-u-hxy-cl.mon.GLB", + "atmos.pfull.tavg-al-hxy-u.day.GLB", + "atmos.pfull.tavg-al-hxy-u.mon.GLB", + "atmos.pfull.tclm-al-hxy-u.mon.30S-90S", + "atmos.phalf.tavg-alh-hxy-u.mon.GLB", + "atmos.pr.tavg-u-hxy-u.1hr.30S-90S", + "atmos.pr.tavg-u-hxy-u.mon.30S-90S", + "atmos.pr.tmax-u-hxy-u.day.GLB", + "atmos.pr.tpt-u-hxy-u.6hr.GLB", + "atmos.pr17O.tavg-u-hxy-u.mon.GLB", + "atmos.pr18O.tavg-u-hxy-u.mon.GLB", + "atmos.pr2h.tavg-u-hxy-u.mon.GLB", + "atmos.prc.tavg-u-hxy-u.day.GLB", + "atmos.prc.tavg-u-hxy-u.mon.30S-90S", + "atmos.prra.tavg-u-hxy-is.mon.GRL", + "atmos.prra.tavg-u-hxy-lnd.day.GLB", + "atmos.prra.tavg-u-hxy-u.6hr.GLB", + "atmos.prra.tavg-u-hxy-u.mon.30S-90S", + "atmos.prra.tavg-u-hxy-u.mon.GLB", + "atmos.prsn.tavg-u-hxy-is.mon.GRL", + "atmos.prsn.tavg-u-hxy-u.3hr.GLB", + "atmos.prsn.tavg-u-hxy-u.6hr.GLB", + "atmos.prsn.tavg-u-hxy-u.day.GLB", + "atmos.prsn.tavg-u-hxy-u.mon.30S-90S", + "atmos.prsn18O.tavg-u-hxy-u.mon.GLB", + "atmos.prsn2h.tavg-u-hxy-u.mon.GLB", + "atmos.prw.tavg-u-hxy-u.3hr.GLB", + "atmos.prw.tavg-u-hxy-u.day.GLB", + "atmos.prw.tavg-u-hxy-u.mon.30S-90S", + "atmos.prw.tpt-u-hxy-u.6hr.GLB", + "atmos.ps.tavg-u-hxy-u.1hr.GLB", + "atmos.ps.tavg-u-hxy-u.6hr.GLB", + "atmos.ps.tavg-u-hxy-u.mon.30S-90S", + "atmos.ps.tpt-u-hxy-u.1hr.30S-90S", + "atmos.ps.tpt-u-hxy-u.3hr.GLB", + "atmos.ps.tpt-u-hxy-u.6hr.GLB", + "atmos.psl.tavg-u-hxy-u.mon.30S-90S", + "atmos.psl.tpt-u-hxy-u.1hr.GLB", + "atmos.psl.tpt-u-hxy-u.6hr.GLB", + "atmos.ptp.tavg-u-hxy-u.mon.GLB", + "atmos.reffcclwtop.tavg-u-hxy-ccl.mon.GLB", + "atmos.reffclic.tavg-al-hxy-ccl.mon.30S-90S", + "atmos.reffclic.tavg-al-hxy-ccl.mon.GLB", + "atmos.reffclis.tavg-al-hxy-scl.mon.30S-90S", + "atmos.reffclis.tavg-al-hxy-scl.mon.GLB", + "atmos.reffclwc.tavg-al-hxy-ccl.mon.30S-90S", + "atmos.reffclwc.tavg-al-hxy-ccl.mon.GLB", + "atmos.reffclws.tavg-al-hxy-scl.mon.30S-90S", + "atmos.reffclws.tavg-al-hxy-scl.mon.GLB", + "atmos.reffsclwtop.tavg-u-hxy-scl.mon.GLB", + "atmos.rld.tavg-alh-hxy-u.mon.GLB", + "atmos.rld4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rldcs.tavg-alh-hxy-u.mon.GLB", + "atmos.rldcs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rlds.tavg-u-hxy-u.1hr.30S-90S", + "atmos.rlds.tavg-u-hxy-u.1hr.GLB", + "atmos.rlds.tavg-u-hxy-u.3hr.GLB", + "atmos.rlds.tavg-u-hxy-u.6hr.GLB", + "atmos.rlds.tavg-u-hxy-u.day.GLB", + "atmos.rlds.tavg-u-hxy-u.mon.30S-90S", + "atmos.rldscs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rls.tavg-u-hxy-u.mon.GLB", + "atmos.rlu.tavg-alh-hxy-u.mon.GLB", + "atmos.rlu4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rlucs.tavg-alh-hxy-u.mon.GLB", + "atmos.rlucs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rlus.tavg-u-hxy-u.3hr.GLB", + "atmos.rlus.tavg-u-hxy-u.day.GLB", + "atmos.rlus.tavg-u-hxy-u.mon.30S-90S", + "atmos.rlut.tavg-u-hxy-u.3hr.GLB", + "atmos.rlut.tavg-u-hxy-u.day.GLB", + "atmos.rlut.tavg-u-hxy-u.mon.30S-90S", + "atmos.rlut4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rlutcs.tavg-u-hxy-u.3hr.GLB", + "atmos.rlutcs.tavg-u-hxy-u.day.GLB", + "atmos.rlutcs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rlutcs4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rsd.tavg-alh-hxy-u.mon.GLB", + "atmos.rsd4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsdcs.tavg-alh-hxy-u.mon.GLB", + "atmos.rsdcs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsds.tavg-u-hxy-u.1hr.30S-90S", + "atmos.rsds.tavg-u-hxy-u.1hr.GLB", + "atmos.rsds.tavg-u-hxy-u.3hr.GLB", + "atmos.rsds.tavg-u-hxy-u.6hr.GLB", + "atmos.rsds.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsdscs.tavg-u-hxy-u.day.GLB", + "atmos.rsdscs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsdt.tavg-u-hxy-u.day.GLB", + "atmos.rsdt.tavg-u-hxy-u.mon.30S-90S", + "atmos.rss.tavg-u-hxy-u.mon.GLB", + "atmos.rsu.tavg-alh-hxy-u.mon.GLB", + "atmos.rsu4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsucs.tavg-alh-hxy-u.mon.GLB", + "atmos.rsucs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsus.tavg-u-hxy-u.3hr.GLB", + "atmos.rsus.tavg-u-hxy-u.day.GLB", + "atmos.rsus.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsuscs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsut.tavg-u-hxy-u.3hr.GLB", + "atmos.rsut.tavg-u-hxy-u.day.GLB", + "atmos.rsut.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsut4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rsutcs.tavg-u-hxy-u.3hr.GLB", + "atmos.rsutcs.tavg-u-hxy-u.day.GLB", + "atmos.rsutcs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsutcs4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rtmt.tavg-u-hxy-u.mon.GLB", + "atmos.rv850.tpt-850hPa-hxy-air.6hr.GLB", + "atmos.scldncl.tavg-u-hxy-scl.mon.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.1hr.30S-90S", + "atmos.sfcWind.tavg-h10m-hxy-u.6hr.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.mon.30S-90S", + "atmos.sfcWind.tmax-h10m-hxy-u.day.GLB", + "atmos.ta.tavg-700hPa-hxy-air.day.GLB", + "atmos.ta.tavg-al-hxy-u.mon.30S-90S", + "atmos.ta.tavg-al-hxy-u.mon.GLB", + "atmos.ta.tavg-p19-hxy-air.mon.30S-90S", + "atmos.ta.tavg-p39-hy-air.day.GLB", + "atmos.ta.tavg-p39-hy-air.mon.GLB", + "atmos.ta.tpt-al-hxy-u.6hr.GLB", + "atmos.ta.tpt-p5u-hxy-u.6hr.GLB", + "atmos.ta.tpt-p7h-hxy-air.6hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.1hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.6hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.mon.30S-90S", + "atmos.tas.tmaxavg-h2m-hxy-u.mon.30S-90S", + "atmos.tas.tminavg-h2m-hxy-u.mon.30S-90S", + "atmos.tauu.tavg-u-hxy-u.day.GLB", + "atmos.tauunoegw.tavg-p39-hy-air.day.GLB", + "atmos.tauunowgw.tavg-p39-hy-air.day.GLB", + "atmos.tauuogw.tavg-p39-hy-air.day.GLB", + "atmos.tauv.tavg-u-hxy-u.day.GLB", + "atmos.tauvnogw.tavg-p39-hy-air.day.GLB", + "atmos.tauvogw.tavg-p39-hy-air.day.GLB", + "atmos.tdps.tavg-h2m-hxy-u.mon.GLB", + "atmos.tnt.tavg-al-hxy-u.mon.GLB", + "atmos.tntmp.tavg-p39-hy-air.day.GLB", + "atmos.tntmp.tavg-p39-hy-air.mon.GLB", + "atmos.tntrl.tavg-al-hxy-u.mon.GLB", + "atmos.tntrl.tavg-p39-hy-air.day.GLB", + "atmos.tntrl.tavg-p39-hy-air.mon.GLB", + "atmos.tntrs.tavg-al-hxy-u.mon.GLB", + "atmos.tntrs.tavg-p39-hy-air.day.GLB", + "atmos.tntrs.tavg-p39-hy-air.mon.GLB", + "atmos.ts.tavg-u-hxy-u.6hr.GLB", + "atmos.ts.tavg-u-hxy-u.day.GLB", + "atmos.ts.tavg-u-hxy-u.mon.30S-90S", + "atmos.ts.tpt-u-hxy-u.3hr.GLB", + "atmos.ts.tpt-u-hxy-u.6hr.GLB", + "atmos.ua.tavg-al-hxy-u.mon.GLB", + "atmos.ua.tavg-p19-hxy-air.mon.30S-90S", + "atmos.ua.tavg-p39-hy-air.day.GLB", + "atmos.ua.tavg-p39-hy-air.mon.GLB", + "atmos.ua.tpt-al-hxy-u.6hr.GLB", + "atmos.ua.tpt-h100m-hxy-u.1hr.GLB", + "atmos.ua.tpt-p5u-hxy-air.6hr.GLB", + "atmos.ua.tpt-p7h-hxy-air.6hr.GLB", + "atmos.uas.tavg-h10m-hxy-u.mon.30S-90S", + "atmos.uas.tpt-h10m-hxy-u.1hr.GLB", + "atmos.uas.tpt-h10m-hxy-u.6hr.GLB", + "atmos.utendepfd.tavg-p39-hy-air.day.GLB", + "atmos.utendepfd.tavg-p39-hy-air.mon.GLB", + "atmos.utendnogw.tavg-p39-hy-air.day.GLB", + "atmos.utendnogw.tavg-p39-hy-air.mon.GLB", + "atmos.utendogw.tavg-p39-hy-air.day.GLB", + "atmos.utendogw.tavg-p39-hy-air.mon.GLB", + "atmos.utendvtem.tavg-p39-hy-air.day.GLB", + "atmos.utendwtem.tavg-p39-hy-air.day.GLB", + "atmos.va.tavg-al-hxy-u.mon.GLB", + "atmos.va.tavg-p19-hxy-air.mon.30S-90S", + "atmos.va.tavg-p39-hy-air.mon.GLB", + "atmos.va.tpt-al-hxy-u.6hr.GLB", + "atmos.va.tpt-h100m-hxy-u.1hr.GLB", + "atmos.va.tpt-p5u-hxy-air.6hr.GLB", + "atmos.va.tpt-p7h-hxy-air.6hr.GLB", + "atmos.vas.tavg-h10m-hxy-u.mon.30S-90S", + "atmos.vas.tpt-h10m-hxy-u.1hr.GLB", + "atmos.vas.tpt-h10m-hxy-u.6hr.GLB", + "atmos.vtem.tavg-p39-hy-air.day.GLB", + "atmos.vtem.tavg-p39-hy-air.mon.GLB", + "atmos.wap.tavg-p19-hxy-air.mon.30S-90S", + "atmos.wsg.tmax-h100m-hxy-u.1hr.GLB", + "atmos.wsg.tmax-h10m-hxy-u.1hr.GLB", + "atmos.wtem.tavg-p39-hy-air.day.GLB", + "atmos.wtem.tavg-p39-hy-air.mon.GLB", + "atmos.zg.tavg-1000hPa-hxy-air.day.GLB", + "atmos.zg.tavg-500hPa-hxy-air.day.GLB", + "atmos.zg.tavg-al-hxy-u.mon.GLB", + "atmos.zg.tavg-p19-hxy-air.mon.30S-90S", + "atmos.zg.tavg-p39-hy-air.day.GLB", + "atmos.zg.tavg-p39-hy-air.mon.GLB", + "atmos.zg.tpt-500hPa-hxy-air.6hr.GLB", + "atmos.zg.tpt-al-hxy-u.6hr.GLB", + "atmos.zg.tpt-p3-hxy-air.6hr.GLB", + "atmos.zg.tpt-p7h-hxy-air.6hr.GLB", + "atmos.ztp.tavg-u-hxy-u.mon.GLB", + "atmosChem.c2h4.tavg-al-hxy-u.mon.GLB", + "atmosChem.c2h5oh.tavg-al-hxy-u.mon.GLB", + "atmosChem.c4h10.tavg-al-hxy-u.mon.GLB", + "atmosChem.cfc11.tavg-u-hm-u.mon.GLB", + "atmosChem.cfc113.tavg-u-hm-u.mon.GLB", + "atmosChem.cfc12.tavg-u-hm-u.mon.GLB", + "atmosChem.ch3oh.tavg-al-hxy-u.mon.GLB", + "atmosChem.ch4.tavg-al-hxy-u.mon.GLB", + "atmosChem.ch4.tavg-p39-hy-air.mon.GLB", + "atmosChem.ch4losssoil.tavg-u-hxy-u.mon.GLB", + "atmosChem.ch4ref.ti-al-hxy-u.fx.GLB", + "atmosChem.chegph2oo1d.tavg-al-hxy-u.mon.GLB", + "atmosChem.chepnh4.tavg-al-hxy-u.mon.GLB", + "atmosChem.chepno3.tavg-al-hxy-u.mon.GLB", + "atmosChem.dms.tavg-al-hxy-u.mon.30S-90S", + "atmosChem.dms.tavg-al-hxy-u.mon.GLB", + "atmosChem.do3chm.tavg-al-hxy-u.mon.GLB", + "atmosChem.dryh2.tavg-u-hxy-u.mon.GLB", + "atmosChem.dryhno3.tavg-u-hxy-u.mon.GLB", + "atmosChem.drynh3.tavg-u-hxy-u.mon.GLB", + "atmosChem.drynh4.tavg-u-hxy-u.mon.GLB", + "atmosChem.drynoy.tavg-u-hxy-u.mon.GLB", + "atmosChem.e90inst.tpt-al-hxy-u.mon.GLB", + "atmosChem.emiach4.tavg-u-hxy-u.mon.GLB", + "atmosChem.emiavnox.tavg-al-hxy-u.mon.GLB", + "atmosChem.emic2h4.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic2h5oh.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic2h6.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic3h6.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic3h8.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic4h10.tavg-u-hxy-u.mon.GLB", + "atmosChem.emich3oh.tavg-u-hxy-u.mon.GLB", + "atmosChem.emich4.tavg-u-hxy-u.mon.GLB", + "atmosChem.emih2.tavg-u-hxy-u.mon.GLB", + "atmosChem.emilkch4.tavg-u-hxy-u.mon.GLB", + "atmosChem.h2.tavg-al-hxy-u.mon.GLB", + "atmosChem.h2loss.tavg-al-hxy-u.mon.GLB", + "atmosChem.h2prod.tavg-al-hxy-u.mon.GLB", + "atmosChem.hcfc22.tavg-u-hm-u.mon.GLB", + "atmosChem.meanage.tavg-al-hxy-u.mon.GLB", + "atmosChem.meanage.tavg-p39-hy-air.mon.GLB", + "atmosChem.n2o.tavg-al-hxy-u.mon.GLB", + "atmosChem.n2o.tavg-p39-hy-air.mon.GLB", + "atmosChem.o3.tavg-al-hxy-u.mon.GLB", + "atmosChem.o3.tavg-p19-hxy-air.mon.GLB", + "atmosChem.o3.tavg-p39-hy-air.mon.GLB", + "atmosChem.o3.tpt-al-hxy-u.mon.GLB", + "atmosChem.o3ref.tclm-al-hxy-u.fx.GLB", + "atmosChem.o3ref.ti-al-hxy-u.fx.GLB", + "atmosChem.o3ste.tavg-al-hxy-u.mon.GLB", + "atmosChem.rlutch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rlutcsch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rlutcso3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rluto3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsutch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsutcsch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsutcso3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsuto3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.stratch4loss.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropch4loss.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropch4lossoh.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropdo3chm.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropo3ste.tavg-al-hxy-u.mon.GLB", + "atmosChem.wethno3.tavg-al-hxy-u.mon.GLB", + "atmosChem.wetnh3.tavg-u-hxy-u.mon.GLB", + "atmosChem.wetnh4.tavg-u-hxy-u.mon.GLB", + "atmosChem.wetno3.tavg-al-hxy-u.mon.GLB", + "atmosChem.wetnoy.tavg-u-hxy-u.mon.GLB", + "land.albc.tavg-u-hxy-veg.mon.GLB", + "land.areacellr.ti-u-hxy-u.fx.GLB", + "land.baresoilFrac.tavg-u-hxy-u.mon.GLB", + "land.burntFractionAll.tavg-u-hxy-u.mon.GLB", + "land.cGeologicStorage.tavg-u-hxy-u.mon.GLB", + "land.cLand.tavg-u-hxy-lnd.mon.GLB", + "land.cLeaf.tavg-u-hxy-lnd.mon.GLB", + "land.cLitter.tavg-u-hxy-lnd.mon.GLB", + "land.cnc.tavg-u-hxy-u.mon.GLB", + "land.cProduct.tavg-u-hxy-lnd.mon.GLB", + "land.cRoot.tavg-u-hxy-lnd.mon.GLB", + "land.cropFrac.tavg-u-hxy-u.mon.GLB", + "land.cSoil.tavg-d100cm-hxy-lnd.mon.GLB", + "land.cSoil.tavg-sl-hxy-lnd.mon.GLB", + "land.cSoil.tavg-u-hxy-lnd.mon.GLB", + "land.cStem.tavg-u-hxy-lnd.mon.GLB", + "land.cVeg.tavg-u-hxy-lnd.mon.GLB", + "land.dcw.tavg-u-hxy-lnd.day.GLB", + "land.depthl.ti-u-hxy-u.fx.GLB", + "land.depthsl.ti-u-hxy-u.fx.GLB", + "land.dslw.tavg-u-hxy-lnd.day.GLB", + "land.evspsblpot.tavg-u-hxy-lnd.day.GLB", + "land.evspsblpot.tavg-u-hxy-lnd.mon.GLB", + "land.evspsblsoi.tavg-u-hxy-u.day.GLB", + "land.evspsblveg.tavg-u-hxy-u.day.GLB", + "land.fAnthDisturb.tavg-u-hxy-lnd.mon.GLB", + "land.fBNF.tavg-u-hxy-lnd.mon.GLB", + "land.fCLandToOcean.tavg-u-hxy-lnd.mon.GLB", + "land.fDeforestToAtmos.tavg-u-hxy-lnd.mon.GLB", + "land.fDeforestToProduct.tavg-u-hxy-lnd.mon.GLB", + "land.fFire.tavg-u-hxy-lnd.mon.GLB", + "land.fFireAll.tavg-u-hxy-lnd.mon.GLB", + "land.fFireNat.tavg-u-hxy-lnd.mon.GLB", + "land.fHarvestToAtmos.tavg-u-hxy-lnd.mon.GLB", + "land.fHarvestToGeologicStorage.tavg-u-hxy-lnd.mon.GLB", + "land.fHarvestToProduct.tavg-u-hxy-lnd.mon.GLB", + "land.fLitterSoil.tavg-u-hxy-lnd.mon.GLB", + "land.fLuc.tavg-u-hxy-lnd.mon.GLB", + "land.fN2O.tavg-u-hxy-lnd.mon.GLB", + "land.fNAnthDisturb.tavg-u-hxy-lnd.mon.GLB", + "land.fNdep.tavg-u-hxy-lnd.mon.GLB", + "land.fNfert.tavg-u-hxy-lnd.mon.GLB", + "land.fNgas.tavg-u-hxy-lnd.mon.GLB", + "land.fNgasFire.tavg-u-hxy-lnd.mon.GLB", + "land.fNLandToOcean.tavg-u-hxy-lnd.mon.GLB", + "land.fNleach.tavg-u-hxy-lnd.mon.GLB", + "land.fNLitterSoil.tavg-u-hxy-lnd.mon.GLB", + "land.fNloss.tavg-u-hxy-lnd.mon.GLB", + "land.fNnetmin.tavg-u-hxy-lnd.mon.GLB", + "land.fNOx.tavg-u-hxy-lnd.mon.GLB", + "land.fNProduct.tavg-u-hxy-lnd.mon.GLB", + "land.fNup.tavg-u-hxy-lnd.mon.GLB", + "land.fNVegLitter.tavg-u-hxy-lnd.mon.GLB", + "land.fNVegSoil.tavg-u-hxy-lnd.mon.GLB", + "land.fProductDecomp.tavg-u-hxy-lnd.mon.GLB", + "land.fVegLitter.tavg-u-hxy-lnd.mon.GLB", + "land.fVegSoil.tavg-u-hxy-lnd.mon.GLB", + "land.gpp.tavg-u-hxy-lnd.mon.GLB", + "land.gppVgt.tavg-u-hxy-multi.day.GLB", + "land.grassFrac.tavg-u-hxy-u.mon.GLB", + "land.laiVgt.tavg-u-hxy-multi.day.GLB", + "land.landCoverFrac.tavg-u-hxy-u.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.day.GLB", + "land.mrrob.tavg-u-hxy-lnd.day.GLB", + "land.mrros.tavg-u-hxy-lnd.day.GLB", + "land.mrsfl.tavg-sl-hxy-lnd.day.GLB", + "land.mrsfl.tavg-sl-hxy-lnd.mon.GLB", + "land.mrsll.tavg-sl-hxy-lnd.day.GLB", + "land.mrsll.tavg-sl-hxy-lnd.mon.GLB", + "land.mrso.tavg-u-hxy-lnd.day.GLB", + "land.mrsol.tavg-d10cm-hxy-lnd.day.GLB", + "land.mrsol.tavg-sl-hxy-lnd.day.GLB", + "land.mrsol.tavg-sl-hxy-lnd.mon.GLB", + "land.mrsol.tpt-d10cm-hxy-lnd.3hr.GLB", + "land.mrsow.tavg-u-hxy-lnd.day.GLB", + "land.mrtws.tavg-u-hxy-lnd.day.GLB", + "land.mrtws.tavg-u-hxy-lnd.mon.GLB", + "land.nbp.tavg-u-hxy-lnd.mon.GLB", + "land.nep.tavg-u-hxy-lnd.mon.GLB", + "land.nLand.tavg-u-hxy-lnd.mon.GLB", + "land.nLitter.tavg-u-hxy-lnd.mon.GLB", + "land.nMineral.tavg-u-hxy-lnd.mon.GLB", + "land.npp.tavg-u-hxy-lnd.mon.GLB", + "land.nProduct.tavg-u-hxy-lnd.mon.GLB", + "land.nSoil.tavg-u-hxy-lnd.mon.GLB", + "land.nVeg.tavg-u-hxy-lnd.mon.GLB", + "land.orog.ti-u-hxy-u.fx.30S-90S", + "land.pastureFrac.tavg-u-hxy-u.mon.GLB", + "land.prveg.tavg-u-hxy-lnd.mon.GLB", + "land.ra.tavg-u-hxy-lnd.mon.GLB", + "land.residualFrac.tavg-u-hxy-u.mon.GLB", + "land.rh.tavg-u-hxy-lnd.mon.GLB", + "land.rivi.tavg-u-hxy-lnd.day.GLB", + "land.rivo.tavg-u-hxy-lnd.day.GLB", + "land.rsds.tavg-u-hxy-lnd.mon.GLB", + "land.rsds.tavg-u-hxy-sn.mon.GLB", + "land.rsus.tavg-u-hxy-lnd.mon.GLB", + "land.rsus.tavg-u-hxy-sn.mon.GLB", + "land.sftgif.tavg-u-hxy-u.mon.GLB", + "land.sftlaf.ti-u-hxy-u.fx.GLB", + "land.shrubFrac.tavg-u-hxy-u.mon.GLB", + "land.srfrad.tavg-u-hxy-u.3hr.GLB", + "land.tas.tavg-u-hxy-u.1hr.30S-90S", + "land.tas.tavg-u-hxy-u.1hr.GLB", + "land.tran.tavg-u-hxy-lnd.mon.GLB", + "land.treeFrac.tavg-u-hxy-u.mon.GLB", + "land.tsl.tavg-sl-hxy-lnd.day.GLB", + "land.tsl.tavg-sl-hxy-lnd.mon.GLB", + "land.tslsi.tavg-u-hxy-u.day.GLB", + "land.tslsi.tpt-u-hxy-lsi.3hr.GLB", + "land.vegFrac.tavg-u-hxy-u.mon.GLB", + "land.vegHeight.tavg-u-hxy-tree.mon.GLB", + "land.vegHeight.tavg-u-hxy-veg.mon.GLB", + "land.wetlandCH4.tavg-u-hxy-lnd.mon.GLB", + "land.wtd.tavg-u-hxy-lnd.day.GLB", + "landIce.acabf.tavg-u-hxy-is.mon.GLB", + "landIce.hfdsn.tavg-u-hxy-lnd.mon.GLB", + "landIce.hfgeoubed.ti-u-hxy-gis.fx.GRL", + "landIce.hfls.tavg-u-hxy-is.mon.GLB", + "landIce.hfss.tavg-u-hxy-is.mon.GLB", + "landIce.icem.tavg-u-hxy-is.mon.GLB", + "landIce.litemptop.tavg-u-hxy-is.mon.GLB", + "landIce.lithk.ti-u-hxy-is.fx.GRL", + "landIce.lithk.ti-u-hxy-u.fx.GLB", + "landIce.mrro.tavg-u-hxy-is.mon.GLB", + "landIce.orog.tavg-u-hxy-is.mon.GLB", + "landIce.pflw.tavg-u-hxy-lnd.mon.GLB", + "landIce.prra.tavg-u-hxy-is.mon.GLB", + "landIce.prsn.tavg-u-hxy-is.mon.GLB", + "landIce.rlds.tavg-u-hxy-is.mon.GLB", + "landIce.rlus.tavg-u-hxy-is.mon.GLB", + "landIce.rsds.tavg-u-hxy-is.mon.GLB", + "landIce.rsus.tavg-u-hxy-is.mon.GLB", + "landIce.sbl.tavg-u-hxy-is.mon.GLB", + "landIce.sbl.tavg-u-hxy-lnd.mon.GLB", + "landIce.sbl.tavg-u-hxy-u.mon.GLB", + "landIce.sftflf.tavg-u-hxy-u.mon.GLB", + "landIce.sftflf.ti-u-hxy-u.fx.GLB", + "landIce.sftgrf.tavg-u-hxy-u.mon.GLB", + "landIce.sftgrf.ti-u-hxy-u.fx.GLB", + "landIce.snc.tavg-u-hxy-is.mon.GLB", + "landIce.snd.tavg-u-hxy-lnd.mon.GLB", + "landIce.snicem.tavg-u-hxy-is.mon.GLB", + "landIce.snicem.tavg-u-hxy-is.mon.GRL", + "landIce.snm.tavg-u-hxy-is.mon.GLB", + "landIce.snm.tavg-u-hxy-lnd.mon.GLB", + "landIce.snrefr.tavg-u-hxy-is.mon.GLB", + "landIce.snw.tavg-u-hxy-lnd.day.GLB", + "landIce.sootsn.tavg-u-hxy-lnd.mon.GLB", + "landIce.tas.tavg-u-hxy-is.mon.GLB", + "landIce.topg.ti-u-hxy-gis.fx.GRL", + "landIce.tpf.tavg-u-hxy-lnd.mon.GLB", + "landIce.ts.tavg-u-hxy-is.mon.GLB", + "landIce.tsn.tavg-u-hxy-is.mon.GLB", + "landIce.tsn.tavg-u-hxy-lnd.mon.GLB", + "ocean.absscint.tavg-op4-hxy-sea.mon.GLB", + "ocean.agessc.tavg-ol-hxy-sea.mon.GLB", + "ocean.bigthetao.tavg-ol-hm-sea.mon.GLB", + "ocean.bigthetao.tavg-ol-hxy-sea.dec.GLB", + "ocean.bigthetao.tavg-op20bar-hxy-sea.day.GLB", + "ocean.chcint.tavg-op4-hxy-sea.mon.GLB", + "ocean.ficeberg.tavg-ol-hxy-sea.3hr.GLB", + "ocean.ficeberg.tavg-ol-hxy-sea.mon.GLB", + "ocean.ficeberg.tavg-u-hxy-sea.mon.GLB", + "ocean.flandice.tavg-u-hxy-sea.3hr.GLB", + "ocean.flandice.tavg-u-hxy-sea.mon.GLB", + "ocean.friver.tavg-u-hxy-sea.3hr.GLB", + "ocean.friver.tavg-u-hxy-sea.mon.GLB", + "ocean.hfbasin.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpmadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpmdiff.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpsmadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfds.tavg-u-hxy-sea.3hr.GLB", + "ocean.hfds.tavg-u-hxy-sea.mon.30S-90S", + "ocean.hfgeou.tavg-u-hxy-sea.mon.GLB", + "ocean.hfrunoffds.tavg-ol-hxy-sea.3hr.GLB", + "ocean.hfx.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfx.tavg-u-hxy-sea.day.GLB", + "ocean.hfx.tavg-u-hxy-sea.mon.GLB", + "ocean.hfy.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfy.tavg-u-hxy-sea.day.GLB", + "ocean.hfy.tavg-u-hxy-sea.mon.GLB", + "ocean.htovgyre.tavg-u-hyb-sea.mon.GLB", + "ocean.htovovrt.tavg-u-hyb-sea.mon.GLB", + "ocean.masscello.tavg-ol-hxy-sea.dec.GLB", + "ocean.masso.tavg-u-hm-sea.dec.GLB", + "ocean.masso.tavg-u-hm-sea.mon.GLB", + "ocean.mlotst.tavg-u-hxy-sea.day.GLB", + "ocean.mlotst.tavg-u-hxy-sea.mon.30S-90S", + "ocean.mlotst.tmax-u-hxy-sea.mon.GLB", + "ocean.mlotst.tmin-u-hxy-sea.mon.GLB", + "ocean.mpw.tavg-u-hxy-sea.mon.GLB", + "ocean.mpw.tpt-u-hxy-sea.3hr.GLB", + "ocean.mpwswell.tavg-u-hxy-sea.mon.GLB", + "ocean.mpwswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.mpwwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.mpwwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.msftbarot.tavg-u-hxy-sea.mon.GLB", + "ocean.msftm.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftm.tavg-rho-hyb-sea.mon.GLB", + "ocean.msfty.tavg-ol-ht-sea.mon.GLB", + "ocean.msfty.tavg-rho-ht-sea.mon.GLB", + "ocean.obvfsq.tavg-ol-hxy-sea.mon.GLB", + "ocean.opottemptend.tavg-ol-hxy-sea.yr.GLB", + "ocean.pbo.tavg-u-hxy-sea.mon.GLB", + "ocean.pfscint.tavg-op4-hxy-sea.mon.GLB", + "ocean.phcint.tavg-op4-hxy-sea.mon.GLB", + "ocean.pso.tavg-u-hxy-sea.mon.GLB", + "ocean.rsds.tavg-u-hxy-ifs.mon.GLB", + "ocean.rsntds.tavg-u-hxy-sea.3hr.GLB", + "ocean.rsus.tavg-u-hxy-ifs.mon.GLB", + "ocean.scint.tavg-op4-hxy-sea.mon.GLB", + "ocean.sduo.tavg-u-hxy-sea.mon.GLB", + "ocean.sduo.tpt-u-hxy-sea.3hr.GLB", + "ocean.sdvo.tavg-u-hxy-sea.mon.GLB", + "ocean.sdvo.tpt-u-hxy-sea.3hr.GLB", + "ocean.sfdsi.tavg-u-hxy-sea.3hr.GLB", + "ocean.sfx.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfx.tavg-u-hxy-sea.mon.GLB", + "ocean.sfy.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfy.tavg-u-hxy-sea.mon.GLB", + "ocean.sltbasin.tavg-u-hyb-sea.mon.GLB", + "ocean.sltovgyre.tavg-u-hyb-sea.mon.GLB", + "ocean.sltovovrt.tavg-u-hyb-sea.mon.GLB", + "ocean.so.tavg-ol-hm-sea.mon.GLB", + "ocean.so.tavg-ol-hxy-sea.dec.GLB", + "ocean.so.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.sob.tavg-u-hxy-sea.mon.GLB", + "ocean.sos.tavg-u-hm-sea.mon.30S-90S", + "ocean.sos.tavg-u-hm-sea.mon.GLB", + "ocean.sw17O.tavg-ol-hxy-sea.mon.GLB", + "ocean.sw18O.tavg-ol-hxy-sea.mon.GLB", + "ocean.sw2H.tavg-ol-hxy-sea.mon.GLB", + "ocean.swh.tavg-u-hxy-sea.mon.GLB", + "ocean.swh.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhmax.tmax-u-hxy-sea.mon.GLB", + "ocean.swhmax.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhswell.tavg-u-hxy-sea.mon.GLB", + "ocean.swhswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.swhwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.tauuo.tavg-u-hxy-sea.3hr.GLB", + "ocean.tauuo.tavg-u-hxy-sea.dec.GLB", + "ocean.tauvo.tavg-u-hxy-sea.3hr.GLB", + "ocean.tauvo.tavg-u-hxy-sea.dec.GLB", + "ocean.thetao.tavg-ol-hm-sea.mon.GLB", + "ocean.thetao.tavg-ol-hxy-sea.dec.GLB", + "ocean.thetao.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.thetao.tavg-op20bar-hxy-sea.day.GLB", + "ocean.thkcello.tavg-ol-hxy-sea.dec.GLB", + "ocean.tob.tavg-u-hxy-sea.mon.GLB", + "ocean.tos.tavg-u-hm-sea.mon.GLB", + "ocean.tos.tavg-u-hxy-sea.mon.30S-90S", + "ocean.tos.tpt-u-hxy-sea.3hr.GLB", + "ocean.tossq.tavg-u-hxy-sea.day.GLB", + "ocean.umo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.uo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.uos.tavg-u-hxy-sea.day.GLB", + "ocean.vmo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.vo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.volcello.tavg-ol-hxy-sea.dec.GLB", + "ocean.volcello.tavg-ol-hxy-sea.mon.GLB", + "ocean.volcello.tavg-ol-hxy-sea.yr.GLB", + "ocean.volcello.ti-ol-hxy-sea.fx.GLB", + "ocean.volo.tavg-u-hm-sea.dec.GLB", + "ocean.volo.tavg-u-hm-sea.mon.GLB", + "ocean.vos.tavg-u-hxy-sea.day.GLB", + "ocean.wdir.tavg-u-hxy-sea.mon.GLB", + "ocean.wdir.tpt-u-hxy-sea.3hr.GLB", + "ocean.wdirswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wdirswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wdirwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wdirwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.wfcorr.tavg-u-hxy-sea.mon.GLB", + "ocean.wfo.tavg-u-hxy-sea.3hr.GLB", + "ocean.wfo.tavg-u-hxy-sea.mon.GLB", + "ocean.wmo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.wo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.wpdir.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdir.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpdirswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdirswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpdirwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdirwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpp.tavg-u-hxy-sea.mon.GLB", + "ocean.wpp.tpt-u-hxy-sea.3hr.GLB", + "ocean.wppswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wppswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wppwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wppwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.zos.tavg-u-hxy-sea.mon.30S-90S", + "ocean.zossq.tavg-u-hxy-sea.mon.GLB", + "ocean.zostoga.tavg-u-hm-sea.day.GLB", + "ocnBgchem.bacc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.calc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chl.tavg-d0m-hxy-sea.day.GLB", + "ocnBgchem.chl.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chl.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chlcalc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chldiat.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chldiat.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chldiaz.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chldiaz.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chlmisc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chlmisc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chlpico.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chlpico.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.detoc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dfe.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.dfe.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.dfe.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissic.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.dissic.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissoc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dmso.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.dmso.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.dpco2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.dpo2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.expc.tavg-d1000m-hxy-sea.mon.GLB", + "ocnBgchem.expc.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.expc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.expcalc.tavg-d1000m-hxy-sea.mon.GLB", + "ocnBgchem.expcalc.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.expcalc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.fgco2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fric.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.froc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fsfe.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fsn.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.graz.tavg-ol-hxy-sea.mon.30S-90S", + "ocnBgchem.graz.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.icfriver.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intdic.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intdoc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intparag.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbfe.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbn.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbp.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbsi.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpcalcite.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpn2.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpoc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpp.tavg-u-hxy-sea.day.GLB", + "ocnBgchem.intpp.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpp.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppcalc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppdiat.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppdiaz.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppmisc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppnitrate.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpppico.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.nh4.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.nh4.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.no3.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.no3.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.o2.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.ocfriver.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.ph.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.ph.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phyc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phyc.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.phyc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phycalc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phycalc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phydiat.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phydiat.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phydiaz.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phydiaz.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phymisc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phymisc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phypico.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phypico.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.po4.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.pp.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.si.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.spco2.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.spco2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.talk.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zmeso.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zmeso.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zmicro.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zmicro.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zmisc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zmisc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zooc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zooc.tavg-ol-hxy-sea.mon.GLB", + "seaIce.evspsbl.tavg-u-hxy-si.mon.GLB", + "seaIce.prra.tavg-u-hxy-si.mon.GLB", + "seaIce.prsn.tavg-u-hxy-si.mon.GLB", + "seaIce.rlds.tavg-u-hxy-si.day.GLB", + "seaIce.rlds.tavg-u-hxy-si.mon.GLB", + "seaIce.rlus.tavg-u-hxy-si.day.GLB", + "seaIce.rlus.tavg-u-hxy-si.mon.GLB", + "seaIce.rsds.tavg-u-hxy-si.day.GLB", + "seaIce.rsds.tavg-u-hxy-si.mon.GLB", + "seaIce.rsus.tavg-u-hxy-si.day.GLB", + "seaIce.rsus.tavg-u-hxy-si.mon.GLB", + "seaIce.sbl.tavg-u-hxy-si.mon.GLB", + "seaIce.siage.tavg-u-hxy-si.day.GLB", + "seaIce.siage.tavg-u-hxy-si.mon.30S-90S", + "seaIce.siarea.tavg-u-hm-u.mon.NH", + "seaIce.siarea.tavg-u-hm-u.mon.SH", + "seaIce.siareaacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.siconc.tavg-u-hxy-u.mon.30S-90S", + "seaIce.siconca.tavg-u-hxy-u.day.GLB", + "seaIce.siconca.tavg-u-hxy-u.mon.GLB", + "seaIce.sidconcdyn.tavg-u-hxy-sea.mon.GLB", + "seaIce.sidconcth.tavg-u-hxy-sea.mon.GLB", + "seaIce.sidmassdyn.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthsi.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthwat.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmeltbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmeltlat.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmelttop.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassth.tavg-u-hxy-si.mon.GLB", + "seaIce.sieqthick.tavg-u-hxy-si.mon.GLB", + "seaIce.siextent.tavg-u-hm-u.mon.NH", + "seaIce.siextent.tavg-u-hm-u.mon.SH", + "seaIce.siflcondbot.tavg-u-hxy-si.day.GLB", + "seaIce.siflcondbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflcondtop.tavg-u-hxy-si.day.GLB", + "seaIce.siflcondtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sifllattop.tavg-u-hxy-si.day.GLB", + "seaIce.sifllattop.tavg-u-hxy-si.mon.GLB", + "seaIce.siflsensbot.tavg-u-hxy-si.day.GLB", + "seaIce.siflsensbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflsenstop.tavg-u-hxy-si.day.GLB", + "seaIce.siflsenstop.tavg-u-hxy-si.mon.GLB", + "seaIce.siflswdbot.tavg-u-hxy-si.day.GLB", + "seaIce.siflswdbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sihc.tavg-u-hxy-sea.day.GLB", + "seaIce.sihc.tavg-u-hxy-sea.mon.GLB", + "seaIce.siitdconc.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdsnconc.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdsnthick.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdthick.tavg-u-hxy-si.mon.GLB", + "seaIce.simassacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.simpconc.tavg-u-hxy-si.mon.GLB", + "seaIce.sirdgconc.tavg-u-hxy-si.mon.GLB", + "seaIce.sisaltmass.tavg-u-hxy-si.mon.GLB", + "seaIce.sisndmassdyn.tavg-u-hxy-si.mon.GLB", + "seaIce.sisndmasssi.tavg-u-hxy-si.mon.GLB", + "seaIce.sisndmasswind.tavg-u-hxy-si.mon.GLB", + "seaIce.sisnhc.tavg-u-hxy-si.day.GLB", + "seaIce.sisnhc.tavg-u-hxy-si.mon.GLB", + "seaIce.sisnmass.tavg-u-hm-u.mon.NH", + "seaIce.sisnmass.tavg-u-hm-u.mon.SH", + "seaIce.sisnmassacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.sispeed.tavg-u-hxy-si.day.GLB", + "seaIce.sispeed.tavg-u-hxy-si.mon.GLB", + "seaIce.sistressave.tpt-u-hxy-si.mon.GLB", + "seaIce.sistressmax.tpt-u-hxy-si.mon.GLB", + "seaIce.sistrxdtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sistrxubot.tavg-u-hxy-si.mon.GLB", + "seaIce.sistrydtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sistryubot.tavg-u-hxy-si.mon.GLB", + "seaIce.sitempsnic.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-si.day.GLB", + "seaIce.sithick.tavg-u-hxy-si.mon.30S-90S", + "seaIce.sitimefrac.tavg-u-hxy-sea.day.GLB", + "seaIce.sitimefrac.tavg-u-hxy-sea.mon.30S-90S", + "seaIce.siu.tavg-u-hxy-si.day.GLB", + "seaIce.siu.tavg-u-hxy-si.mon.30S-90S", + "seaIce.siv.tavg-u-hxy-si.day.GLB", + "seaIce.siv.tavg-u-hxy-si.mon.30S-90S", + "seaIce.sivol.tavg-u-hm-u.mon.NH", + "seaIce.sivol.tavg-u-hm-u.mon.SH", + "seaIce.snc.tavg-u-hxy-si.mon.GLB", + "seaIce.snd.tavg-u-hxy-sn.day.GLB", + "seaIce.snd.tavg-u-hxy-sn.mon.30S-90S", + "seaIce.snm.tavg-u-hxy-si.mon.GLB", + "seaIce.snw.tavg-u-hxy-si.mon.GLB", + "seaIce.ts.tavg-u-hxy-si.day.GLB", + "seaIce.ts.tavg-u-hxy-si.mon.30S-90S" + ], + "Medium": [ + "atmos.bldep.tavg-u-hxy-u.1hr.GLB", + "atmos.clic.tpt-al-hxy-u.3hr.GLB", + "atmos.clis.tpt-al-hxy-u.3hr.GLB", + "atmos.clivi.tpt-u-hxy-u.3hr.GLB", + "atmos.clt.tpt-u-hxy-u.3hr.GLB", + "atmos.clwc.tpt-al-hxy-u.3hr.GLB", + "atmos.clws.tpt-al-hxy-u.3hr.GLB", + "atmos.clwvi.tpt-u-hxy-u.3hr.GLB", + "atmos.dtauc.tpt-al-hxy-ccl.3hr.GLB", + "atmos.dtaus.tpt-al-hxy-scl.3hr.GLB", + "atmos.hfdsnb.tavg-u-hxy-lnd.day.GLB", + "atmos.hfls.tavg-u-hxy-is.mon.ATA", + "atmos.hfls.tavg-u-hxy-u.1hr.GLB", + "atmos.hfss.tavg-u-hxy-is.mon.ATA", + "atmos.hfss.tavg-u-hxy-is.mon.GRL", + "atmos.hfss.tavg-u-hxy-u.1hr.GLB", + "atmos.hur.tavg-700hPa-hxy-air.day.GLB", + "atmos.hur.tpt-100hPa-hxy-u.6hr.GLB", + "atmos.hur.tpt-500hPa-hxy-air.6hr.GLB", + "atmos.hur.tpt-850hPa-hxy-air.6hr.GLB", + "atmos.hurs.tavg-h2m-hxy-u.1hr.GLB", + "atmos.hus.tpt-al-hxy-u.3hr.GLB", + "atmos.hus.tpt-p6-hxy-air.3hr.GLB", + "atmos.noaahi2m.tavg-h2m-hxy-u.day.GLB", + "atmos.noaahi2m.tmax-h2m-hxy-u.day.GLB", + "atmos.pfull.tpt-al-hxy-u.3hr.GLB", + "atmos.pr.tpt-u-hxy-u.3hr.GLB", + "atmos.prra.tavg-u-hxy-is.mon.ATA", + "atmos.prrsn.tavg-u-hxy-lnd.day.GLB", + "atmos.prsn.tavg-u-hxy-is.mon.ATA", + "atmos.prsnc.tavg-u-hxy-lnd.day.GLB", + "atmos.prsnsn.tavg-u-hxy-lnd.day.GLB", + "atmos.prw.tpt-u-hxy-u.3hr.GLB", + "atmos.ps.tpt-u-hxy-u.1hr.GLB", + "atmos.psitem.tavg-p39-hy-air.day.GLB", + "atmos.reffclic.tpt-al-hxy-ccl.3hr.GLB", + "atmos.reffclis.tpt-al-hxy-scl.3hr.GLB", + "atmos.reffclwc.tpt-al-hxy-ccl.3hr.GLB", + "atmos.reffclws.tpt-al-hxy-scl.3hr.GLB", + "atmos.rlds.tavg-u-hxy-is.mon.ATA", + "atmos.rlds.tavg-u-hxy-is.mon.GRL", + "atmos.rlds.tpt-u-hxy-u.3hr.GLB", + "atmos.rldscs.tavg-u-hxy-u.day.GLB", + "atmos.rldscs.tpt-u-hxy-u.3hr.GLB", + "atmos.rls.tavg-u-hxy-u.day.GLB", + "atmos.rlus.tavg-u-hxy-is.mon.ATA", + "atmos.rlus.tavg-u-hxy-is.mon.GRL", + "atmos.rlus.tavg-u-hxy-u.1hr.GLB", + "atmos.rlut.tpt-u-hxy-u.3hr.GLB", + "atmos.rlutcs.tpt-u-hxy-u.3hr.GLB", + "atmos.rsds.tavg-u-hxy-is.mon.ATA", + "atmos.rsds.tavg-u-hxy-is.mon.GRL", + "atmos.rsds.tpt-u-hxy-u.3hr.GLB", + "atmos.rsdscs.tpt-u-hxy-u.3hr.GLB", + "atmos.rsdsdiff.tavg-u-hxy-u.1hr.GLB", + "atmos.rsdsdiff.tavg-u-hxy-u.day.GLB", + "atmos.rss.tavg-u-hxy-u.day.GLB", + "atmos.rsus.tavg-u-hxy-is.mon.ATA", + "atmos.rsus.tavg-u-hxy-is.mon.GRL", + "atmos.rsus.tavg-u-hxy-u.1hr.GLB", + "atmos.rsut.tpt-u-hxy-u.3hr.GLB", + "atmos.rsutcs.tpt-u-hxy-u.3hr.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.1hr.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.3hr.GLB", + "atmos.snmsl.tavg-u-hxy-lnd.day.GLB", + "atmos.snrefr.tavg-u-hxy-lnd.day.GLB", + "atmos.snwc.tavg-u-hxy-lnd.day.GLB", + "atmos.ta.tpt-al-hxy-u.3hr.GLB", + "atmos.ta.tpt-p6-hxy-air.3hr.GLB", + "atmos.tas.tavg-h2m-hm-is.mon.ATA", + "atmos.tas.tavg-h2m-hm-is.mon.GRL", + "atmos.tauunoegw.tavg-p19-hxy-air.mon.GLB", + "atmos.tauunowgw.tavg-p19-hxy-air.mon.GLB", + "atmos.tauuogw.tavg-p19-hxy-air.mon.GLB", + "atmos.tauupbl.tavg-u-hxy-u.day.GLB", + "atmos.tauvnogw.tavg-p19-hxy-air.mon.GLB", + "atmos.tauvogw.tavg-p19-hxy-air.mon.GLB", + "atmos.tauvpbl.tavg-u-hxy-u.day.GLB", + "atmos.tntc.tavg-p39-hy-air.mon.GLB", + "atmos.tntnogw.tavg-p39-hy-air.mon.GLB", + "atmos.tntogw.tavg-p39-hy-air.mon.GLB", + "atmos.tntrlcs.tavg-p39-hy-air.mon.GLB", + "atmos.tntrscs.tavg-p39-hy-air.mon.GLB", + "atmos.tntscp.tavg-p39-hy-air.mon.GLB", + "atmos.ts.tavg-u-hxy-is.mon.ATA", + "atmos.ts.tavg-u-hxy-is.mon.GRL", + "atmos.ts.tavg-u-hxy-sn.day.GLB", + "atmos.ts.tavg-u-hxy-u.1hr.GLB", + "atmos.ua.tavg-h100m-hxy-u.3hr.GLB", + "atmos.ua.tpt-200hPa-hxy-u.6hr.GLB", + "atmos.ua.tpt-p6-hxy-air.3hr.GLB", + "atmos.utendnogw.tavg-p19-hxy-air.day.GLB", + "atmos.utendnogw.tavg-p19-hxy-air.mon.GLB", + "atmos.utendogw.tavg-p19-hxy-air.day.GLB", + "atmos.utendogw.tavg-p19-hxy-air.mon.GLB", + "atmos.va.tavg-h100m-hxy-u.3hr.GLB", + "atmos.va.tpt-200hPa-hxy-u.6hr.GLB", + "atmos.va.tpt-p6-hxy-air.3hr.GLB", + "atmos.vtendnogw.tavg-p19-hxy-air.day.GLB", + "atmos.vtendnogw.tavg-p19-hxy-air.mon.GLB", + "atmos.vtendogw.tavg-p19-hxy-air.day.GLB", + "atmos.vtendogw.tavg-p19-hxy-air.mon.GLB", + "atmos.wap.tpt-p6-hxy-air.3hr.GLB", + "atmos.wbgt.tavg-h2m-hxy-u.day.GLB", + "atmos.wbgt.tmax-h2m-hxy-u.day.GLB", + "atmos.wsg.tmax-h100m-hxy-u.mon.GLB", + "atmos.wsg.tmax-h10m-hxy-u.mon.GLB", + "atmos.zg.tpt-700hPa-hxy-u.6hr.GLB", + "atmos.zg.tpt-925hPa-hxy-u.6hr.GLB", + "atmosChem.flashrate.tavg-u-hxy-u.day.GLB", + "land.areacellg.ti-u-hxy-u.fx.ATA", + "land.areacellg.ti-u-hxy-u.fx.GRL", + "land.baresoilFrac.tavg-u-hxy-u.yr.GLB", + "land.cLitterCwd.tavg-u-hxy-lnd.mon.GLB", + "land.cLitterLut.tpt-u-hxy-multi.yr.GLB", + "land.cLitterSubSurf.tavg-u-hxy-lnd.mon.GLB", + "land.cLitterSurf.tavg-u-hxy-lnd.mon.GLB", + "land.cOther.tavg-u-hxy-lnd.mon.GLB", + "land.cProductLut.tpt-u-hxy-multi.yr.GLB", + "land.cropFrac.tavg-u-hxy-u.yr.GLB", + "land.cropFracC3.tavg-u-hxy-u.mon.GLB", + "land.cropFracC4.tavg-u-hxy-u.mon.GLB", + "land.cSoilLut.tpt-u-hxy-multi.yr.GLB", + "land.cSoilPools.tavg-u-hxy-lnd.mon.GLB", + "land.cVeg.tavg-u-hxy-ng.mon.GLB", + "land.cVeg.tavg-u-hxy-shb.mon.GLB", + "land.cVeg.tavg-u-hxy-tree.mon.GLB", + "land.cVegLut.tpt-u-hxy-multi.yr.GLB", + "land.dgw.tavg-u-hxy-lnd.day.GLB", + "land.drivw.tavg-u-hxy-lnd.day.GLB", + "land.dsn.tavg-u-hxy-lnd.day.GLB", + "land.dsw.tavg-u-hxy-lnd.day.GLB", + "land.esn.tavg-u-hxy-sn.day.GLB", + "land.evspsblsoi.tavg-u-hxy-u.3hr.GLB", + "land.evspsblveg.tavg-u-hxy-u.3hr.GLB", + "land.fLitterFire.tavg-u-hxy-lnd.mon.GLB", + "land.fLulccAtmLut.tavg-u-hxy-multi.mon.GLB", + "land.fNgasNonFire.tavg-u-hxy-lnd.mon.GLB", + "land.fracInLut.tsum-u-hxy-lnd.yr.GLB", + "land.fracLut.tpt-u-hxy-u.mon.GLB", + "land.fracLut.tpt-u-hxy-u.yr.GLB", + "land.fracOutLut.tsum-u-hxy-lnd.yr.GLB", + "land.fVegFire.tavg-u-hxy-lnd.mon.GLB", + "land.fVegLitterMortality.tavg-u-hxy-lnd.mon.GLB", + "land.fVegLitterSenescence.tavg-u-hxy-lnd.mon.GLB", + "land.fVegSoilMortality.tavg-u-hxy-lnd.mon.GLB", + "land.fVegSoilSenescence.tavg-u-hxy-lnd.mon.GLB", + "land.gpp.tavg-u-hxy-ng.mon.GLB", + "land.gpp.tavg-u-hxy-shb.mon.GLB", + "land.gpp.tavg-u-hxy-tree.mon.GLB", + "land.gppLut.tavg-u-hxy-multi.mon.GLB", + "land.grassFrac.tavg-u-hxy-u.yr.GLB", + "land.grassFracC3.tavg-u-hxy-u.mon.GLB", + "land.grassFracC4.tavg-u-hxy-u.mon.GLB", + "land.hfdsl.tavg-u-hxy-lnd.3hr.GLB", + "land.hflsLut.tavg-u-hxy-multi.mon.GLB", + "land.hfssLut.tavg-u-hxy-multi.mon.GLB", + "land.irrDem.tavg-u-hxy-u.day.GLB", + "land.irrGw.tavg-u-hxy-u.day.GLB", + "land.irrLut.tavg-u-hxy-multi.mon.GLB", + "land.irrLut.tavg-u-hxy-u.day.GLB", + "land.irrSurf.tavg-u-hxy-u.day.GLB", + "land.laiLut.tavg-u-hxy-multi.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.3hr.GLB", + "land.mrros.tavg-u-hxy-lnd.3hr.GLB", + "land.mrsol.tavg-d100cm-hxy-lnd.3hr.GLB", + "land.mrsolLut.tavg-d10cm-hxy-multi.mon.GLB", + "land.nbpLut.tavg-u-hxy-multi.mon.GLB", + "land.nLeaf.tavg-u-hxy-lnd.mon.GLB", + "land.nLitterCwd.tavg-u-hxy-lnd.mon.GLB", + "land.nLitterSubSurf.tavg-u-hxy-lnd.mon.GLB", + "land.nLitterSurf.tavg-u-hxy-lnd.mon.GLB", + "land.nMineralNH4.tavg-u-hxy-lnd.mon.GLB", + "land.nMineralNO3.tavg-u-hxy-lnd.mon.GLB", + "land.nOther.tavg-u-hxy-lnd.mon.GLB", + "land.npp.tavg-u-hxy-ng.mon.GLB", + "land.npp.tavg-u-hxy-shb.mon.GLB", + "land.npp.tavg-u-hxy-tree.mon.GLB", + "land.nppLeaf.tavg-u-hxy-lnd.mon.GLB", + "land.nppLut.tavg-u-hxy-multi.mon.GLB", + "land.nppOther.tavg-u-hxy-lnd.mon.GLB", + "land.nppRoot.tavg-u-hxy-lnd.mon.GLB", + "land.nppStem.tavg-u-hxy-lnd.mon.GLB", + "land.nppVgt.tavg-u-hxy-multi.day.GLB", + "land.nRoot.tavg-u-hxy-lnd.mon.GLB", + "land.nStem.tavg-u-hxy-lnd.mon.GLB", + "land.orog.tavg-u-hxy-is.mon.ATA", + "land.orog.tavg-u-hxy-is.mon.GRL", + "land.orog.tavg-u-hxy-is.yr.ATA", + "land.orog.tavg-u-hxy-is.yr.GRL", + "land.pastureFracC3.tavg-u-hxy-u.mon.GLB", + "land.pastureFracC4.tavg-u-hxy-u.mon.GLB", + "land.qgwr.tavg-u-hxy-lnd.day.GLB", + "land.ra.tavg-u-hxy-ng.mon.GLB", + "land.ra.tavg-u-hxy-shb.mon.GLB", + "land.ra.tavg-u-hxy-tree.mon.GLB", + "land.raLeaf.tavg-u-hxy-lnd.mon.GLB", + "land.raLut.tavg-u-hxy-multi.mon.GLB", + "land.raOther.tavg-u-hxy-lnd.mon.GLB", + "land.raRoot.tavg-u-hxy-lnd.mon.GLB", + "land.raStem.tavg-u-hxy-lnd.mon.GLB", + "land.raVgt.tavg-u-hxy-multi.day.GLB", + "land.rh.tavg-u-hxy-ng.mon.GLB", + "land.rh.tavg-u-hxy-shb.mon.GLB", + "land.rh.tavg-u-hxy-tree.mon.GLB", + "land.rhLitter.tavg-u-hxy-lnd.mon.GLB", + "land.rhLut.tavg-u-hxy-multi.mon.GLB", + "land.rhSoil.tavg-u-hxy-lnd.mon.GLB", + "land.rhVgt.tavg-u-hxy-multi.day.GLB", + "land.rzwc.tavg-u-hxy-lnd.day.GLB", + "land.sftgif.tavg-u-hxy-u.yr.ATA", + "land.sftgif.tavg-u-hxy-u.yr.GRL", + "land.shrubFrac.tavg-u-hxy-u.yr.GLB", + "land.sw.tavg-u-hxy-lnd.day.GLB", + "land.sweLut.tavg-u-hxy-multi.mon.GLB", + "land.tasLut.tavg-h2m-hxy-multi.mon.GLB", + "land.tran.tavg-u-hxy-u.3hr.GLB", + "land.treeFrac.tavg-u-hxy-u.yr.GLB", + "land.treeFracBdlDcd.tavg-u-hxy-u.mon.GLB", + "land.treeFracBdlEvg.tavg-u-hxy-u.mon.GLB", + "land.treeFracNdlDcd.tavg-u-hxy-u.mon.GLB", + "land.treeFracNdlEvg.tavg-u-hxy-u.mon.GLB", + "land.tsLut.tavg-u-hxy-multi.mon.GLB", + "land.vegHeight.tavg-u-hxy-ng.mon.GLB", + "land.vegHeight.tavg-u-hxy-shb.mon.GLB", + "land.wetlandCH4cons.tavg-u-hxy-lnd.mon.GLB", + "land.wetlandCH4prod.tavg-u-hxy-lnd.mon.GLB", + "land.wetlandFrac.tavg-u-hxy-u.mon.GLB", + "landIce.acabf.tavg-u-hxy-is.mon.ATA", + "landIce.acabf.tavg-u-hxy-is.mon.GRL", + "landIce.acabf.tavg-u-hxy-is.yr.ATA", + "landIce.acabf.tavg-u-hxy-is.yr.GRL", + "landIce.agesno.tavg-u-hxy-lnd.mon.GLB", + "landIce.hfdsn.tavg-u-hxy-lnd.day.GLB", + "landIce.hfgeoubed.tavg-u-hxy-gis.yr.ATA", + "landIce.hfgeoubed.tavg-u-hxy-gis.yr.GRL", + "landIce.hfgeoubed.ti-u-hxy-gis.fx.ATA", + "landIce.iareafl.tavg-u-hm-fis.yr.ATA", + "landIce.iareafl.tavg-u-hm-fis.yr.GRL", + "landIce.iareagr.tavg-u-hm-gis.yr.ATA", + "landIce.iareagr.tavg-u-hm-gis.yr.GRL", + "landIce.icem.tavg-u-hxy-is.mon.ATA", + "landIce.icem.tavg-u-hxy-is.mon.GRL", + "landIce.libmassbf.tavg-u-hxy-fis.mon.ATA", + "landIce.libmassbf.tavg-u-hxy-fis.mon.GRL", + "landIce.libmassbf.tavg-u-hxy-fis.yr.ATA", + "landIce.libmassbf.tavg-u-hxy-fis.yr.GRL", + "landIce.libmassbf.tavg-u-hxy-gis.mon.ATA", + "landIce.libmassbf.tavg-u-hxy-gis.mon.GRL", + "landIce.libmassbf.tavg-u-hxy-gis.yr.ATA", + "landIce.libmassbf.tavg-u-hxy-gis.yr.GRL", + "landIce.licalvf.tavg-u-hxy-is.mon.ATA", + "landIce.licalvf.tavg-u-hxy-is.mon.GRL", + "landIce.licalvf.tavg-u-hxy-is.yr.ATA", + "landIce.licalvf.tavg-u-hxy-is.yr.GRL", + "landIce.lifmassbf.tavg-u-hxy-is.mon.ATA", + "landIce.lifmassbf.tavg-u-hxy-is.mon.GRL", + "landIce.lifmassbf.tavg-u-hxy-is.yr.ATA", + "landIce.lifmassbf.tavg-u-hxy-is.yr.GRL", + "landIce.lim.tavg-u-hm-is.yr.ATA", + "landIce.lim.tavg-u-hm-is.yr.GRL", + "landIce.limnsw.tavg-u-hm-is.yr.ATA", + "landIce.limnsw.tavg-u-hm-is.yr.GRL", + "landIce.litempbot.tavg-u-hxy-fis.mon.ATA", + "landIce.litempbot.tavg-u-hxy-fis.mon.GRL", + "landIce.litempbot.tavg-u-hxy-fis.yr.ATA", + "landIce.litempbot.tavg-u-hxy-fis.yr.GRL", + "landIce.litempbot.tavg-u-hxy-gis.mon.ATA", + "landIce.litempbot.tavg-u-hxy-gis.mon.GRL", + "landIce.litempbot.tavg-u-hxy-gis.yr.ATA", + "landIce.litempbot.tavg-u-hxy-gis.yr.GRL", + "landIce.litemptop.tavg-u-hxy-is.mon.ATA", + "landIce.litemptop.tavg-u-hxy-is.mon.GRL", + "landIce.litemptop.tavg-u-hxy-is.yr.ATA", + "landIce.litemptop.tavg-u-hxy-is.yr.GRL", + "landIce.lithk.tavg-u-hxy-is.yr.ATA", + "landIce.lithk.tavg-u-hxy-is.yr.GRL", + "landIce.lithk.ti-u-hxy-is.fx.ATA", + "landIce.lwsnl.tavg-u-hxy-lnd.day.GLB", + "landIce.lwsnl.tavg-u-hxy-lnd.mon.GLB", + "landIce.modelcellareai.tavg-u-hxy-u.yr.ATA", + "landIce.modelcellareai.tavg-u-hxy-u.yr.GRL", + "landIce.mrroLi.tavg-u-hxy-is.mon.ATA", + "landIce.mrroLi.tavg-u-hxy-is.mon.GRL", + "landIce.pflw.tavg-u-hxy-lnd.day.GLB", + "landIce.sbl.tavg-u-hxy-is.mon.ATA", + "landIce.sbl.tavg-u-hxy-is.mon.GRL", + "landIce.sbl.tavg-u-hxy-u.day.GLB", + "landIce.sftflf.tavg-u-hxy-u.yr.ATA", + "landIce.sftflf.tavg-u-hxy-u.yr.GRL", + "landIce.sftgrf.tavg-u-hxy-u.yr.ATA", + "landIce.sftgrf.tavg-u-hxy-u.yr.GRL", + "landIce.snc.tavg-u-hxy-is.mon.ATA", + "landIce.snc.tavg-u-hxy-is.mon.GRL", + "landIce.snc.tavg-u-hxy-is.yr.ATA", + "landIce.snc.tavg-u-hxy-is.yr.GRL", + "landIce.snc.tavg-u-hxy-lnd.day.GLB", + "landIce.snd.tavg-u-hxy-lnd.day.GLB", + "landIce.snicem.tavg-u-hxy-is.mon.ATA", + "landIce.snm.tavg-u-hxy-is.mon.ATA", + "landIce.snm.tavg-u-hxy-is.mon.GRL", + "landIce.snm.tavg-u-hxy-lnd.day.GLB", + "landIce.snrefr.tavg-u-hxy-is.mon.ATA", + "landIce.snrefr.tavg-u-hxy-is.mon.GRL", + "landIce.strbasemag.tavg-u-hxy-is.yr.ATA", + "landIce.strbasemag.tavg-u-hxy-is.yr.GRL", + "landIce.tendacabf.tavg-u-hm-is.yr.ATA", + "landIce.tendacabf.tavg-u-hm-is.yr.GRL", + "landIce.tendlibmassbf.tavg-u-hm-is.yr.ATA", + "landIce.tendlibmassbf.tavg-u-hm-is.yr.GRL", + "landIce.tendlicalvf.tavg-u-hm-is.yr.ATA", + "landIce.tendlicalvf.tavg-u-hm-is.yr.GRL", + "landIce.topg.tavg-u-hxy-gis.yr.ATA", + "landIce.topg.tavg-u-hxy-gis.yr.GRL", + "landIce.topg.ti-u-hxy-gis.fx.ATA", + "landIce.tpf.tavg-u-hxy-lnd.day.GLB", + "landIce.tsn.tavg-u-hxy-is.mon.ATA", + "landIce.tsn.tavg-u-hxy-is.mon.GRL", + "landIce.tsn.tavg-u-hxy-lnd.day.GLB", + "landIce.xvelbase.tavg-u-hxy-is.yr.ATA", + "landIce.xvelbase.tavg-u-hxy-is.yr.GRL", + "landIce.xvelmean.tavg-u-hxy-is.yr.ATA", + "landIce.xvelmean.tavg-u-hxy-is.yr.GRL", + "landIce.xvelsurf.tavg-u-hxy-is.yr.ATA", + "landIce.xvelsurf.tavg-u-hxy-is.yr.GRL", + "landIce.yvelbase.tavg-u-hxy-is.yr.ATA", + "landIce.yvelbase.tavg-u-hxy-is.yr.GRL", + "landIce.yvelmean.tavg-u-hxy-is.yr.ATA", + "landIce.yvelmean.tavg-u-hxy-is.yr.GRL", + "landIce.yvelsurf.tavg-u-hxy-is.yr.ATA", + "landIce.yvelsurf.tavg-u-hxy-is.yr.GRL", + "landIce.zvelbase.tavg-u-hxy-is.yr.ATA", + "landIce.zvelbase.tavg-u-hxy-is.yr.GRL", + "landIce.zvelsurf.tavg-u-hxy-is.yr.ATA", + "landIce.zvelsurf.tavg-u-hxy-is.yr.GRL", + "ocean.evspsbl.tavg-u-hxy-ifs.mon.GLB", + "ocean.hfacrossline.tavg-u-ht-sea.mon.GLB", + "ocean.hfevapds.tavg-u-hxy-ifs.mon.GLB", + "ocean.hfibthermds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfibthermds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfrainds.tavg-u-hxy-ifs.mon.GLB", + "ocean.hfrunoffds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfrunoffds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfsnthermds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfsnthermds.tavg-u-hxy-sea.mon.GLB", + "ocean.mfo.tavg-u-ht-sea.mon.GLB", + "ocean.sf6.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfacrossline.tavg-u-ht-sea.mon.GLB", + "ocean.sfdsi.tavg-u-hxy-sea.mon.GLB", + "ocean.sfriver.tavg-u-hxy-sea.mon.GLB", + "ocean.siflfwbot.tavg-u-hxy-sea.mon.GLB", + "ocean.so.tavg-ol-hxy-sea.day.GLB", + "ocean.t17d.tavg-u-hxy-sea.mon.GLB", + "ocean.t20d.tavg-u-hxy-sea.mon.GLB", + "ocean.tnkebto.tavg-u-hxy-sea.yr.GLB", + "ocean.vsf.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfcorr.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfevap.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfpr.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfriver.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfsit.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.arag.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.arag.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.calc.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.calc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chl.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.chlcalc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.detoc.tavg-ol-hxy-sea.day.GLB", + "ocnBgchem.dissoc.tavg-ol-hxy-sea.day.GLB", + "ocnBgchem.dmso.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.epn.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.epp.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.exparagob.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.expcalcob.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.expcob.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.expfeob.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.expnob.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.exppob.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.expsiob.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fgdms.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.frfe.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.frn.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppcalc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppdiat.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppdiaz.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppmisc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppnano.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppnitrate.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intpppico.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limfecalc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limfediat.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limfediaz.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limfemisc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limfepico.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limirrcalc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limirrdiat.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limirrdiaz.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limirrmisc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limirrpico.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limncalc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limndiat.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limndiaz.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limnmisc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limnpico.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.o2.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.o2sat.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.ph.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.pp.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.sialgc.tavg-u-hxy-si.mon.GLB", + "ocnBgchem.sichl.tavg-u-hxy-si.mon.GLB", + "ocnBgchem.sigpp.tavg-u-hxy-si.mon.GLB", + "ocnBgchem.sino3.tavg-u-hxy-si.mon.GLB", + "ocnBgchem.sisi.tavg-u-hxy-si.mon.GLB", + "seaIce.sfdsi.tavg-u-hxy-si.mon.GLB", + "seaIce.siage.tavg-u-hxy-si.mon.GLB", + "seaIce.siarea.tavg-u-hm-u.day.NH", + "seaIce.siarea.tavg-u-hm-u.day.SH", + "seaIce.sicompstren.tavg-u-hxy-si.mon.GLB", + "seaIce.sidivvel.tpt-u-hxy-si.mon.GLB", + "seaIce.sidmasstranx.tavg-u-hxy-u.mon.GLB", + "seaIce.sidmasstrany.tavg-u-hxy-u.mon.GLB", + "seaIce.sidragbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidragtop.tavg-u-hxy-si.mon.GLB", + "seaIce.siextent.tavg-u-hm-u.day.NH", + "seaIce.siextent.tavg-u-hm-u.day.SH", + "seaIce.sifb.tavg-u-hxy-si.day.GLB", + "seaIce.sifb.tavg-u-hxy-si.mon.GLB", + "seaIce.siflfwbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflfwdrain.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcecoriolx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcecorioly.tavg-u-hxy-si.mon.GLB", + "seaIce.siforceintstrx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforceintstry.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcetiltx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcetilty.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdconc.tavg-u-hxy-si.day.GLB", + "seaIce.siitdsnconc.tavg-u-hxy-si.day.GLB", + "seaIce.siitdsnthick.tavg-u-hxy-si.day.GLB", + "seaIce.siitdthick.tavg-u-hxy-si.day.GLB", + "seaIce.simpconc.tavg-u-hxy-si.day.GLB", + "seaIce.simpeffconc.tavg-u-hxy-si.day.GLB", + "seaIce.simpeffconc.tavg-u-hxy-si.mon.GLB", + "seaIce.simprefrozen.tavg-u-hxy-simp.day.GLB", + "seaIce.simprefrozen.tavg-u-hxy-simp.mon.GLB", + "seaIce.simpthick.tavg-u-hxy-si.day.GLB", + "seaIce.simpthick.tavg-u-hxy-simp.mon.GLB", + "seaIce.sirdgconc.tavg-u-hxy-si.day.GLB", + "seaIce.sisali.tavg-u-hxy-si.day.GLB", + "seaIce.sisali.tavg-u-hxy-si.mon.GLB", + "seaIce.sisaltmass.tavg-u-hxy-si.day.GLB", + "seaIce.sishearvel.tpt-u-hxy-si.mon.GLB", + "seaIce.sisnmass.tavg-u-hm-u.day.NH", + "seaIce.sisnmass.tavg-u-hm-u.day.SH", + "seaIce.sitempbot.tavg-u-hxy-si.day.GLB", + "seaIce.sitempbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sitempsnic.tavg-u-hxy-si.day.GLB", + "seaIce.sithick.tavg-u-hxy-sir.day.GLB", + "seaIce.sithick.tavg-u-hxy-sir.mon.GLB", + "seaIce.sivol.tavg-u-hm-u.day.NH", + "seaIce.sivol.tavg-u-hm-u.day.SH" + ], + "Low": [ + "aerosol.sfpm1.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.sfpm10.tavg-h2m-hxy-u.1hr.GLB", + "atmos.hurs.tmin-h2m-hxy-crp.day.GLB", + "atmos.pr.tavg-u-hxy-crp.day.GLB", + "atmos.tas.tmax-h2m-hxy-crp.day.GLB", + "atmos.tas.tmin-h2m-hxy-crp.day.GLB", + "atmosChem.drynh3.tavg-u-hxy-u.day.GLB", + "atmosChem.drynh4.tavg-u-hxy-u.day.GLB", + "atmosChem.drynoy.tavg-u-hxy-u.day.GLB", + "atmosChem.flashrate.tavg-u-hxy-u.mon.GLB", + "atmosChem.wetnh3.tavg-u-hxy-u.day.GLB", + "atmosChem.wetnh4.tavg-u-hxy-u.day.GLB", + "atmosChem.wetnoy.tavg-u-hxy-u.day.GLB", + "land.c13Land.tavg-u-hxy-lnd.mon.GLB", + "land.c13Litter.tavg-u-hxy-lnd.mon.GLB", + "land.c13Soil.tavg-u-hxy-lnd.mon.GLB", + "land.c13Veg.tavg-u-hxy-lnd.mon.GLB", + "land.c14Land.tavg-u-hxy-lnd.mon.GLB", + "land.c14Litter.tavg-u-hxy-lnd.mon.GLB", + "land.c14Soil.tavg-u-hxy-lnd.mon.GLB", + "land.c14Veg.tavg-u-hxy-lnd.mon.GLB", + "land.c3PftFrac.tavg-u-hxy-u.mon.GLB", + "land.c4PftFrac.tavg-u-hxy-u.mon.GLB", + "land.gppc13.tavg-u-hxy-lnd.mon.GLB", + "land.gppc14.tavg-u-hxy-lnd.mon.GLB", + "land.lai.tavg-u-hxy-lnd.day.GLB", + "land.netAtmosLandC13Flux.tavg-u-hxy-lnd.mon.GLB", + "land.netAtmosLandC14Flux.tavg-u-hxy-lnd.mon.GLB", + "land.rac13.tavg-u-hxy-lnd.mon.GLB", + "land.rac14.tavg-u-hxy-lnd.mon.GLB", + "land.rhc13.tavg-u-hxy-lnd.mon.GLB", + "land.rhc14.tavg-u-hxy-lnd.mon.GLB", + "ocean.difmxybo.tavg-ol-hxy-sea.yr.GLB", + "ocean.difmxylo.tavg-ol-hxy-sea.yr.GLB", + "ocean.diftrblo.tavg-ol-hxy-sea.yr.GLB", + "ocean.diftrelo.tavg-ol-hxy-sea.yr.GLB", + "ocean.difvho.tavg-ol-hxy-sea.yr.GLB", + "ocean.difvso.tavg-ol-hxy-sea.yr.GLB", + "ocean.dispkexyfo.tavg-u-hxy-sea.yr.GLB", + "ocean.dxto.ti-u-hxy-u.fx.GLB", + "ocean.dxuo.ti-u-hxy-u.fx.GLB", + "ocean.dxvo.ti-u-hxy-u.fx.GLB", + "ocean.dyto.ti-u-hxy-u.fx.GLB", + "ocean.dyuo.ti-u-hxy-u.fx.GLB", + "ocean.dyvo.ti-u-hxy-u.fx.GLB", + "ocean.mlotstsq.tavg-u-hxy-sea.mon.GLB", + "ocean.msftmmpa.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftmmpa.tavg-rho-hyb-sea.mon.GLB", + "ocean.msftmsmpa.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftypa.tavg-ol-ht-sea.mon.GLB", + "ocean.msftypa.tavg-rho-ht-sea.mon.GLB", + "ocean.ocontempdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontempmint.tavg-u-hxy-sea.yr.GLB", + "ocean.ocontemppadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemppmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemppsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemprmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemptend.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottempdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottempmint.tavg-u-hxy-sea.yr.GLB", + "ocean.opottemppadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemppmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemppsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemprmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemptend.tavg-ol-hxy-sea.dec.GLB", + "ocean.osaltdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpsmadvect.tavg-ol-hxy-sea.mon.GLB", + "ocean.osaltpsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltrmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osalttend.tavg-ol-hxy-sea.yr.GLB", + "ocean.rsdo.tavg-ol-hxy-sea.day.GLB", + "ocean.rsdoabsorb.tavg-ol-hxy-sea.yr.GLB", + "ocean.somint.tavg-u-hxy-sea.yr.GLB", + "ocean.sossq.tavg-u-hxy-sea.mon.GLB", + "ocean.thkcelluo.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcellvo.tavg-ol-hxy-sea.mon.GLB", + "ocean.tnpeo.tavg-u-hxy-sea.yr.GLB", + "ocean.tossq.tavg-u-hxy-sea.mon.GLB", + "ocean.wo.tavg-ol-hxy-sea.day.GLB", + "ocnBgchem.dissi13c.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.dissi13c.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissi14c.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissi14cabio.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.dissi14cabio.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.expcob.tavg-u-hxy-sea.day.GLB", + "ocnBgchem.fg13co2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fg14co2abio.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intpoc.tavg-u-hxy-sea.day.GLB", + "ocnBgchem.o2.tavg-d0m-hxy-sea.day.GLB", + "ocnBgchem.o2min.tavg-u-hxy-sea.day.GLB", + "ocnBgchem.phyc.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.phycalc.tavg-ol-hxy-sea.day.GLB", + "ocnBgchem.phydiat.tavg-d0m-hxy-sea.day.GLB", + "ocnBgchem.phydiaz.tavg-d0m-hxy-sea.day.GLB", + "ocnBgchem.phymisc.tavg-d0m-hxy-sea.day.GLB", + "ocnBgchem.phynano.tavg-u-hxy-sea.day.GLB", + "ocnBgchem.phypico.tavg-ol-hxy-sea.day.GLB", + "ocnBgchem.zmeso.tavg-ol-hxy-sea.day.GLB", + "ocnBgchem.zmicro.tavg-ol-hxy-sea.day.GLB", + "ocnBgchem.zooc.tavg-ol-hxy-sea.day.GLB" + ] + }, + "scenariomip12": { + "Core": [ + "atmos.areacella.ti-u-hxy-u.fx.GLB", + "atmos.cl.tavg-al-hxy-u.mon.GLB", + "atmos.cli.tavg-al-hxy-u.mon.GLB", + "atmos.clivi.tavg-u-hxy-u.mon.GLB", + "atmos.clt.tavg-u-hxy-u.day.GLB", + "atmos.clt.tavg-u-hxy-u.mon.GLB", + "atmos.clw.tavg-al-hxy-u.mon.GLB", + "atmos.clwvi.tavg-u-hxy-u.mon.GLB", + "atmos.evspsbl.tavg-u-hxy-u.mon.GLB", + "atmos.hfls.tavg-u-hxy-u.mon.GLB", + "atmos.hfss.tavg-u-hxy-u.mon.GLB", + "atmos.hur.tavg-p19-hxy-air.mon.GLB", + "atmos.hur.tavg-p19-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.6hr.GLB", + "atmos.hurs.tavg-h2m-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.mon.GLB", + "atmos.hus.tavg-p19-hxy-u.day.GLB", + "atmos.hus.tavg-p19-hxy-u.mon.GLB", + "atmos.huss.tavg-h2m-hxy-u.day.GLB", + "atmos.huss.tavg-h2m-hxy-u.mon.GLB", + "atmos.huss.tpt-h2m-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.1hr.GLB", + "atmos.pr.tavg-u-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.day.GLB", + "atmos.pr.tavg-u-hxy-u.mon.GLB", + "atmos.prc.tavg-u-hxy-u.mon.GLB", + "atmos.prsn.tavg-u-hxy-u.mon.GLB", + "atmos.prw.tavg-u-hxy-u.mon.GLB", + "atmos.ps.tavg-u-hxy-u.day.GLB", + "atmos.ps.tavg-u-hxy-u.mon.GLB", + "atmos.psl.tavg-u-hxy-u.day.GLB", + "atmos.psl.tavg-u-hxy-u.mon.GLB", + "atmos.rlds.tavg-u-hxy-u.mon.GLB", + "atmos.rldscs.tavg-u-hxy-u.mon.GLB", + "atmos.rlus.tavg-u-hxy-u.mon.GLB", + "atmos.rluscs.tavg-u-hxy-u.mon.GLB", + "atmos.rlut.tavg-u-hxy-u.mon.GLB", + "atmos.rlutcs.tavg-u-hxy-u.mon.GLB", + "atmos.rsds.tavg-u-hxy-u.day.GLB", + "atmos.rsds.tavg-u-hxy-u.mon.GLB", + "atmos.rsdscs.tavg-u-hxy-u.mon.GLB", + "atmos.rsdt.tavg-u-hxy-u.mon.GLB", + "atmos.rsus.tavg-u-hxy-u.mon.GLB", + "atmos.rsuscs.tavg-u-hxy-u.mon.GLB", + "atmos.rsut.tavg-u-hxy-u.mon.GLB", + "atmos.rsutcs.tavg-u-hxy-u.mon.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.day.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.mon.GLB", + "atmos.sftlf.ti-u-hxy-u.fx.GLB", + "atmos.ta.tavg-p19-hxy-air.day.GLB", + "atmos.ta.tavg-p19-hxy-air.mon.GLB", + "atmos.ta.tpt-p3-hxy-air.6hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.day.GLB", + "atmos.tas.tavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tmax-h2m-hxy-u.day.GLB", + "atmos.tas.tmaxavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tmin-h2m-hxy-u.day.GLB", + "atmos.tas.tminavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tpt-h2m-hxy-u.3hr.GLB", + "atmos.tauu.tavg-u-hxy-u.mon.GLB", + "atmos.tauv.tavg-u-hxy-u.mon.GLB", + "atmos.ts.tavg-u-hxy-u.mon.GLB", + "atmos.ua.tavg-p19-hxy-air.day.GLB", + "atmos.ua.tavg-p19-hxy-air.mon.GLB", + "atmos.ua.tpt-p3-hxy-air.6hr.GLB", + "atmos.uas.tavg-h10m-hxy-u.day.GLB", + "atmos.uas.tavg-h10m-hxy-u.mon.GLB", + "atmos.uas.tpt-h10m-hxy-u.3hr.GLB", + "atmos.va.tavg-p19-hxy-air.day.GLB", + "atmos.va.tavg-p19-hxy-air.mon.GLB", + "atmos.va.tpt-p3-hxy-air.6hr.GLB", + "atmos.vas.tavg-h10m-hxy-u.day.GLB", + "atmos.vas.tavg-h10m-hxy-u.mon.GLB", + "atmos.vas.tpt-h10m-hxy-u.3hr.GLB", + "atmos.wap.tavg-p19-hxy-air.mon.GLB", + "atmos.wap.tavg-p19-hxy-u.day.GLB", + "atmos.zg.tavg-p19-hxy-air.day.GLB", + "atmos.zg.tavg-p19-hxy-air.mon.GLB", + "land.evspsblsoi.tavg-u-hxy-lnd.mon.GLB", + "land.evspsblveg.tavg-u-hxy-lnd.mon.GLB", + "land.lai.tavg-u-hxy-lnd.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.mon.GLB", + "land.mrros.tavg-u-hxy-lnd.mon.GLB", + "land.mrso.tavg-u-hxy-lnd.mon.GLB", + "land.mrsofc.ti-u-hxy-lnd.fx.GLB", + "land.mrsol.tavg-d10cm-hxy-lnd.mon.GLB", + "land.orog.ti-u-hxy-u.fx.GLB", + "land.rootd.ti-u-hxy-lnd.fx.GLB", + "land.sftgif.ti-u-hxy-u.fx.GLB", + "land.slthick.ti-sl-hxy-lnd.fx.GLB", + "landIce.mrfso.tavg-u-hxy-lnd.mon.GLB", + "landIce.snc.tavg-u-hxy-lnd.mon.GLB", + "landIce.snw.tavg-u-hxy-lnd.mon.GLB", + "ocean.areacello.ti-u-hxy-u.fx.GLB", + "ocean.basin.ti-u-hxy-u.fx.GLB", + "ocean.bigthetao.tavg-ol-hxy-sea.mon.GLB", + "ocean.deptho.ti-u-hxy-sea.fx.GLB", + "ocean.hfds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfgeou.ti-u-hxy-sea.fx.GLB", + "ocean.masscello.tavg-ol-hxy-sea.mon.GLB", + "ocean.masscello.ti-ol-hxy-sea.fx.GLB", + "ocean.mlotst.tavg-u-hxy-sea.mon.GLB", + "ocean.sftof.ti-u-hxy-u.fx.GLB", + "ocean.so.tavg-ol-hxy-sea.mon.GLB", + "ocean.sos.tavg-u-hxy-sea.day.GLB", + "ocean.sos.tavg-u-hxy-sea.mon.GLB", + "ocean.tauuo.tavg-u-hxy-sea.mon.GLB", + "ocean.tauvo.tavg-u-hxy-sea.mon.GLB", + "ocean.thetao.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcello.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcello.ti-ol-hxy-sea.fx.GLB", + "ocean.tos.tavg-u-hxy-sea.day.GLB", + "ocean.tos.tavg-u-hxy-sea.mon.GLB", + "ocean.umo.tavg-ol-hxy-sea.mon.GLB", + "ocean.uo.tavg-ol-hxy-sea.mon.GLB", + "ocean.vmo.tavg-ol-hxy-sea.mon.GLB", + "ocean.vo.tavg-ol-hxy-sea.mon.GLB", + "ocean.wmo.tavg-ol-hxy-sea.mon.GLB", + "ocean.wo.tavg-ol-hxy-sea.mon.GLB", + "ocean.zos.tavg-u-hxy-sea.day.GLB", + "ocean.zos.tavg-u-hxy-sea.mon.GLB", + "ocean.zostoga.tavg-u-hm-sea.mon.GLB", + "seaIce.siconc.tavg-u-hxy-u.day.GLB", + "seaIce.siconc.tavg-u-hxy-u.mon.GLB", + "seaIce.simass.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-si.mon.GLB", + "seaIce.sitimefrac.tavg-u-hxy-sea.mon.GLB", + "seaIce.siu.tavg-u-hxy-si.mon.GLB", + "seaIce.siv.tavg-u-hxy-si.mon.GLB", + "seaIce.snd.tavg-u-hxy-sn.mon.GLB", + "seaIce.ts.tavg-u-hxy-si.mon.GLB" + ], + "High": [ + "aerosol.abs550aer.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550bc.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550dust.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550no3.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550oa.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550so4.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550ss.tavg-u-hxy-u.mon.GLB", + "aerosol.airmass.tavg-al-hxy-u.mon.GLB", + "aerosol.aoanh.tavg-al-hxy-u.mon.NH", + "aerosol.bry.tavg-p39-hy-air.mon.GLB", + "aerosol.bs550aer.tpt-al-hxy-u.6hr.GLB", + "aerosol.c2h6.tavg-al-hxy-u.mon.GLB", + "aerosol.c3h6.tavg-al-hxy-u.mon.GLB", + "aerosol.c3h8.tavg-al-hxy-u.mon.GLB", + "aerosol.ccldncl.tavg-u-hxy-ccl.mon.GLB", + "aerosol.ccn.tavg-u-hxy-ccl.mon.30S-90S", + "aerosol.ccn.tavg-u-hxy-ccl.mon.GLB", + "aerosol.ccn1.tavg-al-hxy-u.mon.30S-90S", + "aerosol.ccn1.tavg-al-hxy-u.mon.GLB", + "aerosol.ccnp02.tavg-al-hxy-u.mon.30S-90S", + "aerosol.ccnp02.tavg-al-hxy-u.mon.GLB", + "aerosol.cdnc.tavg-al-hxy-u.mon.30S-90S", + "aerosol.cdnc.tavg-al-hxy-u.mon.GLB", + "aerosol.cfc114.tavg-al-hxy-u.mon.GLB", + "aerosol.ch3coch3.tavg-al-hxy-u.mon.GLB", + "aerosol.cheaqpso4.tavg-al-hxy-u.mon.GLB", + "aerosol.chegpso4.tavg-al-hxy-u.mon.GLB", + "aerosol.chepasoa.tavg-u-hxy-u.mon.GLB", + "aerosol.chepsoa.tavg-u-hxy-u.mon.GLB", + "aerosol.cly.tavg-p39-hy-air.mon.GLB", + "aerosol.co.tavg-al-hxy-u.mon.GLB", + "aerosol.co.tavg-h2m-hxy-u.day.GLB", + "aerosol.cod.tavg-u-hxy-u.day.GLB", + "aerosol.cod.tavg-u-hxy-u.mon.30S-90S", + "aerosol.cod.tavg-u-hxy-u.mon.GLB", + "aerosol.conccn.tavg-al-hxy-u.mon.GLB", + "aerosol.conccn.tpt-u-hs-u.3hr.GLB", + "aerosol.depdust.tavg-u-hxy-u.mon.GLB", + "aerosol.drybc.tavg-u-hxy-u.mon.GLB", + "aerosol.drydust.tavg-u-hxy-u.mon.GLB", + "aerosol.dryno3.tavg-u-hxy-u.mon.GLB", + "aerosol.dryo3.tavg-u-hxy-u.mon.GLB", + "aerosol.dryoa.tavg-u-hxy-u.mon.GLB", + "aerosol.dryso2.tavg-u-hxy-u.mon.GLB", + "aerosol.dryso4.tavg-u-hxy-u.mon.GLB", + "aerosol.dryss.tavg-u-hxy-u.mon.GLB", + "aerosol.ec550aer.tavg-al-hxy-u.mon.GLB", + "aerosol.ec550aer.tpt-u-hxy-u.6hr.GLB", + "aerosol.emiaco.tavg-u-hxy-u.mon.GLB", + "aerosol.emianox.tavg-u-hxy-u.mon.GLB", + "aerosol.emiaoa.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbbc.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbch4.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbco.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbdms.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbnh3.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbnox.tavg-u-hxy-u.mon.GLB", + "aerosol.emibboa.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbso2.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbvoc.tavg-u-hxy-u.mon.GLB", + "aerosol.emibc.tavg-u-hxy-u.mon.GLB", + "aerosol.emibvoc.tavg-u-hxy-u.mon.GLB", + "aerosol.emico.tavg-u-hxy-u.mon.GLB", + "aerosol.emidms.tavg-u-hxy-u.mon.30S-90S", + "aerosol.emidms.tavg-u-hxy-u.mon.GLB", + "aerosol.emidust.tavg-u-hxy-u.mon.GLB", + "aerosol.emiisop.tavg-u-hxy-u.mon.GLB", + "aerosol.emilnox.tavg-al-hxy-u.mon.GLB", + "aerosol.eminh3.tavg-u-hxy-u.mon.GLB", + "aerosol.eminox.tavg-u-hxy-u.mon.GLB", + "aerosol.emioa.tavg-u-hxy-u.mon.GLB", + "aerosol.emiso2.tavg-u-hxy-u.mon.GLB", + "aerosol.emiso4.tavg-u-hxy-u.mon.GLB", + "aerosol.emiss.tavg-u-hxy-u.mon.30S-90S", + "aerosol.emiss.tavg-u-hxy-u.mon.GLB", + "aerosol.emivoc.tavg-u-hxy-u.mon.GLB", + "aerosol.h2o.tavg-al-hxy-u.mon.GLB", + "aerosol.h2o.tavg-p39-hy-air.mon.GLB", + "aerosol.hcfc22.tavg-al-hxy-u.mon.GLB", + "aerosol.hcho.tavg-al-hxy-u.mon.GLB", + "aerosol.hcl.tavg-al-hxy-u.mon.GLB", + "aerosol.hcl.tavg-p39-hy-air.mon.GLB", + "aerosol.hfc125.tavg-al-hxy-u.mon.GLB", + "aerosol.hfc134a.tavg-al-hxy-u.mon.GLB", + "aerosol.hno3.tavg-al-hxy-u.mon.GLB", + "aerosol.hno3.tavg-p39-hy-air.mon.GLB", + "aerosol.ho2.tavg-p39-hy-air.mon.GLB", + "aerosol.isop.tavg-al-hxy-u.mon.GLB", + "aerosol.jno2.tavg-al-hxy-u.mon.GLB", + "aerosol.lossch4.tavg-al-hxy-u.mon.GLB", + "aerosol.lossco.tavg-al-hxy-u.mon.GLB", + "aerosol.lossn2o.tavg-al-hxy-u.mon.GLB", + "aerosol.lwp.tavg-u-hxy-u.mon.GLB", + "aerosol.mmraerh2o.tavg-al-hxy-u.mon.GLB", + "aerosol.mmraerh2o.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmraerh2o.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrbc.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrbc.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrbc.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrbc.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrdust.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrdust.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrdust.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrdust.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrnh4.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrnh4.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrnh4.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrnh4.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrno3.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrno3.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrno3.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrno3.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmroa.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmroa.tavg-al-hxy-u.mon.GLB", + "aerosol.mmroa.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmroa.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrpm1.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrpm1.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrpm2p5.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrpm2p5.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrso4.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrso4.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrso4.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrso4.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrsoa.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrsoa.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrsoa.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrss.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrss.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrss.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrss.tpt-h2m-hs-u.3hr.GLB", + "aerosol.nh50.tavg-al-hxy-u.mon.GLB", + "aerosol.no.tavg-al-hxy-u.mon.GLB", + "aerosol.no2.tavg-al-hxy-u.mon.GLB", + "aerosol.no2.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.noy.tavg-p39-hy-air.mon.GLB", + "aerosol.o3.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.o3.tmax-h2m-hxy-u.day.GLB", + "aerosol.o3loss.tavg-al-hxy-u.mon.GLB", + "aerosol.o3prod.tavg-al-hxy-u.mon.GLB", + "aerosol.od443aer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550aer.tavg-u-hxy-u.day.GLB", + "aerosol.od550aer.tavg-u-hxy-u.mon.30S-90S", + "aerosol.od550aer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550aerh2o.tavg-u-hxy-u.mon.GLB", + "aerosol.od550bb.tavg-u-hxy-u.mon.GLB", + "aerosol.od550bc.tavg-u-hxy-u.mon.GLB", + "aerosol.od550csaer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550dust.tavg-u-hxy-u.mon.GLB", + "aerosol.od550lt1aer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550no3.tavg-u-hxy-u.mon.GLB", + "aerosol.od550oa.tavg-u-hxy-u.mon.GLB", + "aerosol.od550so4.tavg-u-hxy-u.mon.GLB", + "aerosol.od550soa.tavg-u-hxy-u.mon.GLB", + "aerosol.od550ss.tavg-u-hxy-u.mon.GLB", + "aerosol.od865aer.tavg-u-hxy-u.mon.GLB", + "aerosol.oh.tavg-al-hxy-u.mon.GLB", + "aerosol.oh.tavg-p39-hy-air.mon.GLB", + "aerosol.pan.tavg-al-hxy-u.mon.GLB", + "aerosol.photo1d.tavg-al-hxy-u.mon.GLB", + "aerosol.pod0.tsum-u-hxy-u.mon.GLB", + "aerosol.reffccwctop.tavg-u-hxy-cl.mon.GLB", + "aerosol.reffclwtop.tavg-u-hxy-cl.mon.30S-90S", + "aerosol.reffclwtop.tavg-u-hxy-cl.mon.GLB", + "aerosol.rluscsaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rlutaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rlutcsaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rsutaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rsutcsaf.tavg-u-hxy-u.mon.GLB", + "aerosol.sfpm1.tavg-h2m-hxy-u.day.GLB", + "aerosol.sfpm10.tavg-al-hxy-u.mon.30S-90S", + "aerosol.sfpm10.tavg-al-hxy-u.mon.GLB", + "aerosol.sfpm10.tavg-h2m-hxy-u.day.GLB", + "aerosol.sfpm25.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.sfpm25.tavg-h2m-hxy-u.day.GLB", + "aerosol.so2.tavg-al-hxy-u.mon.30S-90S", + "aerosol.so2.tavg-al-hxy-u.mon.GLB", + "aerosol.so2.tavg-h2m-hxy-u.day.GLB", + "aerosol.so2.tpt-h2m-hs-u.3hr.GLB", + "aerosol.tatp.tavg-u-hxy-u.mon.GLB", + "aerosol.toz.tavg-u-hxy-u.day.GLB", + "aerosol.toz.tavg-u-hxy-u.mon.GLB", + "aerosol.tropoz.tavg-u-hxy-u.mon.GLB", + "aerosol.ttop.tavg-u-hxy-cl.mon.GLB", + "aerosol.ua.tavg-10hPa-hxy-air.day.GLB", + "aerosol.vt100.tavg-100hPa-hy-air.mon.GLB", + "aerosol.wa.tavg-al-hxy-u.mon.GLB", + "aerosol.wetbc.tavg-u-hxy-u.mon.GLB", + "aerosol.wetdust.tavg-u-hxy-u.mon.GLB", + "aerosol.wetoa.tavg-u-hxy-u.mon.GLB", + "aerosol.wetso2.tavg-u-hxy-u.mon.GLB", + "aerosol.wetso4.tavg-u-hxy-u.mon.GLB", + "aerosol.wetss.tavg-u-hxy-u.mon.GLB", + "aerosol.zg.tavg-10hPa-hxy-air.day.GLB", + "atmos.albisccp.tavg-u-hxy-cl.mon.30S-90S", + "atmos.bldep.tavg-u-hxy-u.mon.GLB", + "atmos.bldep.tmax-u-hxy-u.day.GLB", + "atmos.bldep.tmin-u-hxy-u.day.GLB", + "atmos.bldep.tpt-u-hxy-u.3hr.GLB", + "atmos.cl.tavg-al-hxy-u.day.GLB", + "atmos.cl.tavg-al-hxy-u.mon.30S-90S", + "atmos.clc.tavg-al-hxy-u.mon.30S-90S", + "atmos.clc.tavg-al-hxy-u.mon.GLB", + "atmos.clcalipso.tavg-220hPa-hxy-air.mon.30S-90S", + "atmos.clcalipso.tavg-220hPa-hxy-air.mon.GLB", + "atmos.clcalipso.tavg-560hPa-hxy-air.mon.30S-90S", + "atmos.clcalipso.tavg-560hPa-hxy-air.mon.GLB", + "atmos.clcalipso.tavg-840hPa-hxy-air.mon.30S-90S", + "atmos.clcalipso.tavg-840hPa-hxy-air.mon.GLB", + "atmos.clcalipso.tavg-h40-hxy-air.mon.30S-90S", + "atmos.clcalipso.tavg-h40-hxy-air.mon.GLB", + "atmos.cldnci.tavg-u-hxy-cl.mon.GLB", + "atmos.cldncl.tavg-u-hxy-cl.mon.GLB", + "atmos.cldnvi.tavg-u-hxy-u.day.GLB", + "atmos.cldnvi.tavg-u-hxy-u.mon.GLB", + "atmos.cli.tavg-al-hxy-u.day.GLB", + "atmos.cli.tavg-al-hxy-u.mon.30S-90S", + "atmos.clic.tavg-al-hxy-u.mon.30S-90S", + "atmos.clis.tavg-al-hxy-u.mon.30S-90S", + "atmos.clisccp.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clisccp.tavg-p7c-hxy-air.mon.GLB", + "atmos.clivi.tavg-u-hxy-u.3hr.GLB", + "atmos.clivi.tavg-u-hxy-u.day.GLB", + "atmos.clivi.tavg-u-hxy-u.mon.30S-90S", + "atmos.clivimodis.tavg-u-hxy-u.mon.30S-90S", + "atmos.clivimodis.tavg-u-hxy-u.mon.GLB", + "atmos.clmodis.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clmodis.tavg-p7c-hxy-air.mon.GLB", + "atmos.clmodisice.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clmodisice.tavg-p7c-hxy-air.mon.GLB", + "atmos.clmodisiceReff.tavg-u-hxy-u.mon.GLB", + "atmos.clmodisliquid.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clmodisliquid.tavg-p7c-hxy-air.mon.GLB", + "atmos.clmodisliquidReff.tavg-u-hxy-u.mon.GLB", + "atmos.cls.tavg-al-hxy-u.mon.30S-90S", + "atmos.clt.tavg-u-hxy-lnd.day.GLB", + "atmos.clt.tavg-u-hxy-u.1hr.30S-90S", + "atmos.clt.tavg-u-hxy-u.3hr.GLB", + "atmos.clt.tavg-u-hxy-u.mon.30S-90S", + "atmos.cltc.tavg-u-hxy-u.mon.GLB", + "atmos.cltcalipso.tavg-u-hxy-u.day.GLB", + "atmos.cltcalipso.tavg-u-hxy-u.mon.30S-90S", + "atmos.cltcalipso.tavg-u-hxy-u.mon.GLB", + "atmos.cltcalipso.tpt-u-hxy-u.3hr.GLB", + "atmos.cltisccp.tavg-u-hxy-u.day.GLB", + "atmos.cltisccp.tavg-u-hxy-u.mon.30S-90S", + "atmos.cltisccp.tavg-u-hxy-u.mon.GLB", + "atmos.cltmodis.tavg-u-hxy-u.mon.30S-90S", + "atmos.cltmodis.tavg-u-hxy-u.mon.GLB", + "atmos.clw.tavg-al-hxy-u.day.GLB", + "atmos.clw.tavg-al-hxy-u.mon.30S-90S", + "atmos.clwc.tavg-al-hxy-u.mon.30S-90S", + "atmos.clws.tavg-al-hxy-u.mon.30S-90S", + "atmos.clwvi.tavg-u-hxy-u.3hr.GLB", + "atmos.clwvi.tavg-u-hxy-u.day.GLB", + "atmos.clwvi.tavg-u-hxy-u.mon.30S-90S", + "atmos.clwvimodis.tavg-u-hxy-u.mon.30S-90S", + "atmos.clwvimodis.tavg-u-hxy-u.mon.GLB", + "atmos.co2.tavg-al-hxy-u.mon.GLB", + "atmos.co2.tavg-h2m-hxy-u.mon.GLB", + "atmos.co2.tavg-p19-hxy-air.mon.GLB", + "atmos.co2.tclm-p19-hxy-air.mon.GLB", + "atmos.co2.tclm-u-hm-u.mon.GLB", + "atmos.co23D.tavg-al-hxy-u.mon.GLB", + "atmos.co2mass.tavg-u-hm-u.mon.GLB", + "atmos.dmc.tavg-alh-hxy-u.mon.30S-90S", + "atmos.edt.tavg-al-hxy-u.mon.30S-90S", + "atmos.evspsbl.tavg-u-hxy-lnd.day.GLB", + "atmos.evu.tavg-al-hxy-u.mon.30S-90S", + "atmos.fco2antt.tavg-u-hxy-u.mon.GLB", + "atmos.fco2fos.tavg-u-hxy-u.mon.GLB", + "atmos.fco2nat.tavg-u-hxy-u.mon.GLB", + "atmos.hfls.tavg-u-hxy-is.mon.GRL", + "atmos.hfls.tavg-u-hxy-u.3hr.GLB", + "atmos.hfls.tavg-u-hxy-u.day.GLB", + "atmos.hfls.tavg-u-hxy-u.mon.30S-90S", + "atmos.hfss.tavg-u-hxy-u.3hr.GLB", + "atmos.hfss.tavg-u-hxy-u.day.GLB", + "atmos.hfss.tavg-u-hxy-u.mon.30S-90S", + "atmos.hur.tavg-al-hxy-u.mon.30S-90S", + "atmos.hur.tavg-al-hxy-u.mon.GLB", + "atmos.hur.tavg-p19-hxy-air.mon.30S-90S", + "atmos.hurs.tavg-h2m-hxy-u.1hr.30S-90S", + "atmos.hurs.tavg-h2m-hxy-u.mon.30S-90S", + "atmos.hurs.tmax-h2m-hxy-u.day.GLB", + "atmos.hurs.tmin-h2m-hxy-u.day.GLB", + "atmos.hurs.tpt-h2m-hxy-u.3hr.GLB", + "atmos.hus.tavg-al-hxy-u.mon.30S-90S", + "atmos.hus.tavg-al-hxy-u.mon.GLB", + "atmos.hus.tavg-p19-hxy-u.mon.30S-90S", + "atmos.hus.tpt-al-hxy-u.6hr.GLB", + "atmos.hus.tpt-p7h-hxy-air.6hr.GLB", + "atmos.huss.tavg-h2m-hxy-u.6hr.GLB", + "atmos.huss.tavg-h2m-hxy-u.mon.30S-90S", + "atmos.huss.tpt-h2m-hxy-u.1hr.GLB", + "atmos.intuadse.tavg-u-hxy-u.day.GLB", + "atmos.intuadse.tavg-u-hxy-u.mon.GLB", + "atmos.intuaw.tavg-u-hxy-u.day.GLB", + "atmos.intuaw.tavg-u-hxy-u.mon.GLB", + "atmos.intuaw.tpt-u-hxy-u.6hr.GLB", + "atmos.intvadse.tavg-u-hxy-u.day.GLB", + "atmos.intvadse.tavg-u-hxy-u.mon.GLB", + "atmos.intvaw.tavg-u-hxy-u.day.GLB", + "atmos.intvaw.tavg-u-hxy-u.mon.GLB", + "atmos.intvaw.tpt-u-hxy-u.6hr.GLB", + "atmos.loadbc.tavg-u-hxy-u.day.GLB", + "atmos.loadoa.tavg-u-hxy-u.day.GLB", + "atmos.loadpoa.tavg-u-hxy-u.day.GLB", + "atmos.mc.tavg-alh-hxy-u.mon.GLB", + "atmos.mcd.tavg-alh-hxy-u.mon.30S-90S", + "atmos.mcu.tavg-alh-hxy-u.mon.30S-90S", + "atmos.mcu.tavg-alh-hxy-u.mon.GLB", + "atmos.pctisccp.tavg-u-hxy-cl.day.GLB", + "atmos.pctisccp.tavg-u-hxy-cl.mon.30S-90S", + "atmos.pctisccp.tavg-u-hxy-cl.mon.GLB", + "atmos.pfull.tavg-al-hxy-u.day.GLB", + "atmos.pfull.tavg-al-hxy-u.mon.GLB", + "atmos.pfull.tclm-al-hxy-u.mon.30S-90S", + "atmos.phalf.tavg-alh-hxy-u.mon.GLB", + "atmos.pr.tavg-u-hxy-u.1hr.30S-90S", + "atmos.pr.tavg-u-hxy-u.mon.30S-90S", + "atmos.pr.tmax-u-hxy-u.day.GLB", + "atmos.pr.tpt-u-hxy-u.6hr.GLB", + "atmos.pr17O.tavg-u-hxy-u.mon.GLB", + "atmos.pr18O.tavg-u-hxy-u.mon.GLB", + "atmos.pr2h.tavg-u-hxy-u.mon.GLB", + "atmos.prc.tavg-u-hxy-u.day.GLB", + "atmos.prc.tavg-u-hxy-u.mon.30S-90S", + "atmos.prra.tavg-u-hxy-is.mon.GRL", + "atmos.prra.tavg-u-hxy-lnd.day.GLB", + "atmos.prra.tavg-u-hxy-u.6hr.GLB", + "atmos.prra.tavg-u-hxy-u.mon.30S-90S", + "atmos.prra.tavg-u-hxy-u.mon.GLB", + "atmos.prsn.tavg-u-hxy-is.mon.GRL", + "atmos.prsn.tavg-u-hxy-u.3hr.GLB", + "atmos.prsn.tavg-u-hxy-u.6hr.GLB", + "atmos.prsn.tavg-u-hxy-u.day.GLB", + "atmos.prsn.tavg-u-hxy-u.mon.30S-90S", + "atmos.prsn18O.tavg-u-hxy-u.mon.GLB", + "atmos.prsn2h.tavg-u-hxy-u.mon.GLB", + "atmos.prw.tavg-u-hxy-u.3hr.GLB", + "atmos.prw.tavg-u-hxy-u.day.GLB", + "atmos.prw.tavg-u-hxy-u.mon.30S-90S", + "atmos.prw.tpt-u-hxy-u.6hr.GLB", + "atmos.ps.tavg-u-hxy-u.1hr.GLB", + "atmos.ps.tavg-u-hxy-u.6hr.GLB", + "atmos.ps.tavg-u-hxy-u.mon.30S-90S", + "atmos.ps.tpt-u-hxy-u.1hr.30S-90S", + "atmos.ps.tpt-u-hxy-u.3hr.GLB", + "atmos.ps.tpt-u-hxy-u.6hr.GLB", + "atmos.psl.tavg-u-hxy-u.mon.30S-90S", + "atmos.psl.tpt-u-hxy-u.1hr.GLB", + "atmos.psl.tpt-u-hxy-u.6hr.GLB", + "atmos.ptp.tavg-u-hxy-u.mon.GLB", + "atmos.reffcclwtop.tavg-u-hxy-ccl.mon.GLB", + "atmos.reffclic.tavg-al-hxy-ccl.mon.30S-90S", + "atmos.reffclic.tavg-al-hxy-ccl.mon.GLB", + "atmos.reffclis.tavg-al-hxy-scl.mon.30S-90S", + "atmos.reffclis.tavg-al-hxy-scl.mon.GLB", + "atmos.reffclwc.tavg-al-hxy-ccl.mon.30S-90S", + "atmos.reffclwc.tavg-al-hxy-ccl.mon.GLB", + "atmos.reffclws.tavg-al-hxy-scl.mon.30S-90S", + "atmos.reffclws.tavg-al-hxy-scl.mon.GLB", + "atmos.reffsclwtop.tavg-u-hxy-scl.mon.GLB", + "atmos.rld.tavg-alh-hxy-u.mon.GLB", + "atmos.rld4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rldcs.tavg-alh-hxy-u.mon.GLB", + "atmos.rldcs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rlds.tavg-u-hxy-u.1hr.30S-90S", + "atmos.rlds.tavg-u-hxy-u.1hr.GLB", + "atmos.rlds.tavg-u-hxy-u.3hr.GLB", + "atmos.rlds.tavg-u-hxy-u.6hr.GLB", + "atmos.rlds.tavg-u-hxy-u.day.GLB", + "atmos.rlds.tavg-u-hxy-u.mon.30S-90S", + "atmos.rldscs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rls.tavg-u-hxy-u.mon.GLB", + "atmos.rlu.tavg-alh-hxy-u.mon.GLB", + "atmos.rlu4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rlucs.tavg-alh-hxy-u.mon.GLB", + "atmos.rlucs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rlus.tavg-u-hxy-u.3hr.GLB", + "atmos.rlus.tavg-u-hxy-u.day.GLB", + "atmos.rlus.tavg-u-hxy-u.mon.30S-90S", + "atmos.rlut.tavg-u-hxy-u.3hr.GLB", + "atmos.rlut.tavg-u-hxy-u.day.GLB", + "atmos.rlut.tavg-u-hxy-u.mon.30S-90S", + "atmos.rlut4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rlutcs.tavg-u-hxy-u.3hr.GLB", + "atmos.rlutcs.tavg-u-hxy-u.day.GLB", + "atmos.rlutcs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rlutcs4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rsd.tavg-alh-hxy-u.mon.GLB", + "atmos.rsd4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsdcs.tavg-alh-hxy-u.mon.GLB", + "atmos.rsdcs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsds.tavg-u-hxy-u.1hr.30S-90S", + "atmos.rsds.tavg-u-hxy-u.1hr.GLB", + "atmos.rsds.tavg-u-hxy-u.3hr.GLB", + "atmos.rsds.tavg-u-hxy-u.6hr.GLB", + "atmos.rsds.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsdscs.tavg-u-hxy-u.day.GLB", + "atmos.rsdscs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsdt.tavg-u-hxy-u.day.GLB", + "atmos.rsdt.tavg-u-hxy-u.mon.30S-90S", + "atmos.rss.tavg-u-hxy-u.mon.GLB", + "atmos.rsu.tavg-alh-hxy-u.mon.GLB", + "atmos.rsu4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsucs.tavg-alh-hxy-u.mon.GLB", + "atmos.rsucs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsus.tavg-u-hxy-u.3hr.GLB", + "atmos.rsus.tavg-u-hxy-u.day.GLB", + "atmos.rsus.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsuscs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsut.tavg-u-hxy-u.3hr.GLB", + "atmos.rsut.tavg-u-hxy-u.day.GLB", + "atmos.rsut.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsut4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rsutcs.tavg-u-hxy-u.3hr.GLB", + "atmos.rsutcs.tavg-u-hxy-u.day.GLB", + "atmos.rsutcs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsutcs4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rtmt.tavg-u-hxy-u.mon.GLB", + "atmos.rv850.tpt-850hPa-hxy-air.6hr.GLB", + "atmos.scldncl.tavg-u-hxy-scl.mon.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.1hr.30S-90S", + "atmos.sfcWind.tavg-h10m-hxy-u.6hr.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.mon.30S-90S", + "atmos.sfcWind.tmax-h10m-hxy-u.day.GLB", + "atmos.ta.tavg-700hPa-hxy-air.day.GLB", + "atmos.ta.tavg-al-hxy-u.mon.30S-90S", + "atmos.ta.tavg-al-hxy-u.mon.GLB", + "atmos.ta.tavg-p19-hxy-air.mon.30S-90S", + "atmos.ta.tavg-p39-hy-air.mon.GLB", + "atmos.ta.tpt-al-hxy-u.6hr.GLB", + "atmos.ta.tpt-p5u-hxy-u.6hr.GLB", + "atmos.ta.tpt-p7h-hxy-air.6hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.1hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.6hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.mon.30S-90S", + "atmos.tas.tmaxavg-h2m-hxy-u.mon.30S-90S", + "atmos.tas.tminavg-h2m-hxy-u.mon.30S-90S", + "atmos.tdps.tavg-h2m-hxy-u.mon.GLB", + "atmos.tnt.tavg-al-hxy-u.mon.GLB", + "atmos.tntrl.tavg-al-hxy-u.mon.GLB", + "atmos.tntrs.tavg-al-hxy-u.mon.GLB", + "atmos.ts.tavg-u-hxy-u.6hr.GLB", + "atmos.ts.tavg-u-hxy-u.day.GLB", + "atmos.ts.tavg-u-hxy-u.mon.30S-90S", + "atmos.ts.tpt-u-hxy-u.3hr.GLB", + "atmos.ts.tpt-u-hxy-u.6hr.GLB", + "atmos.ua.tavg-al-hxy-u.mon.GLB", + "atmos.ua.tavg-p19-hxy-air.mon.30S-90S", + "atmos.ua.tavg-p39-hy-air.mon.GLB", + "atmos.ua.tpt-al-hxy-u.6hr.GLB", + "atmos.ua.tpt-h100m-hxy-u.1hr.GLB", + "atmos.ua.tpt-p5u-hxy-air.6hr.GLB", + "atmos.ua.tpt-p7h-hxy-air.6hr.GLB", + "atmos.uas.tavg-h10m-hxy-u.mon.30S-90S", + "atmos.uas.tpt-h10m-hxy-u.1hr.GLB", + "atmos.uas.tpt-h10m-hxy-u.6hr.GLB", + "atmos.va.tavg-al-hxy-u.mon.GLB", + "atmos.va.tavg-p19-hxy-air.mon.30S-90S", + "atmos.va.tavg-p39-hy-air.mon.GLB", + "atmos.va.tpt-al-hxy-u.6hr.GLB", + "atmos.va.tpt-h100m-hxy-u.1hr.GLB", + "atmos.va.tpt-p5u-hxy-air.6hr.GLB", + "atmos.va.tpt-p7h-hxy-air.6hr.GLB", + "atmos.vas.tavg-h10m-hxy-u.mon.30S-90S", + "atmos.vas.tpt-h10m-hxy-u.1hr.GLB", + "atmos.vas.tpt-h10m-hxy-u.6hr.GLB", + "atmos.wap.tavg-p19-hxy-air.mon.30S-90S", + "atmos.wsg.tmax-h100m-hxy-u.1hr.GLB", + "atmos.wsg.tmax-h10m-hxy-u.1hr.GLB", + "atmos.zg.tavg-1000hPa-hxy-air.day.GLB", + "atmos.zg.tavg-500hPa-hxy-air.day.GLB", + "atmos.zg.tavg-al-hxy-u.mon.GLB", + "atmos.zg.tavg-p19-hxy-air.mon.30S-90S", + "atmos.zg.tavg-p39-hy-air.mon.GLB", + "atmos.zg.tpt-500hPa-hxy-air.6hr.GLB", + "atmos.zg.tpt-al-hxy-u.6hr.GLB", + "atmos.zg.tpt-p3-hxy-air.6hr.GLB", + "atmos.zg.tpt-p7h-hxy-air.6hr.GLB", + "atmos.ztp.tavg-u-hxy-u.mon.GLB", + "atmosChem.c2h4.tavg-al-hxy-u.mon.GLB", + "atmosChem.c2h5oh.tavg-al-hxy-u.mon.GLB", + "atmosChem.c4h10.tavg-al-hxy-u.mon.GLB", + "atmosChem.cfc11.tavg-u-hm-u.mon.GLB", + "atmosChem.cfc113.tavg-u-hm-u.mon.GLB", + "atmosChem.cfc12.tavg-u-hm-u.mon.GLB", + "atmosChem.ch3oh.tavg-al-hxy-u.mon.GLB", + "atmosChem.ch4.tavg-al-hxy-u.mon.GLB", + "atmosChem.ch4.tavg-p39-hy-air.mon.GLB", + "atmosChem.ch4losssoil.tavg-u-hxy-u.mon.GLB", + "atmosChem.ch4ref.ti-al-hxy-u.fx.GLB", + "atmosChem.chegph2oo1d.tavg-al-hxy-u.mon.GLB", + "atmosChem.chepnh4.tavg-al-hxy-u.mon.GLB", + "atmosChem.chepno3.tavg-al-hxy-u.mon.GLB", + "atmosChem.dms.tavg-al-hxy-u.mon.30S-90S", + "atmosChem.dms.tavg-al-hxy-u.mon.GLB", + "atmosChem.do3chm.tavg-al-hxy-u.mon.GLB", + "atmosChem.dryh2.tavg-u-hxy-u.mon.GLB", + "atmosChem.dryhno3.tavg-u-hxy-u.mon.GLB", + "atmosChem.drynh3.tavg-u-hxy-u.mon.GLB", + "atmosChem.drynh4.tavg-u-hxy-u.mon.GLB", + "atmosChem.drynoy.tavg-u-hxy-u.mon.GLB", + "atmosChem.e90inst.tpt-al-hxy-u.mon.GLB", + "atmosChem.emiach4.tavg-u-hxy-u.mon.GLB", + "atmosChem.emiavnox.tavg-al-hxy-u.mon.GLB", + "atmosChem.emic2h4.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic2h5oh.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic2h6.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic3h6.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic3h8.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic4h10.tavg-u-hxy-u.mon.GLB", + "atmosChem.emich3oh.tavg-u-hxy-u.mon.GLB", + "atmosChem.emich4.tavg-u-hxy-u.mon.GLB", + "atmosChem.emih2.tavg-u-hxy-u.mon.GLB", + "atmosChem.emilkch4.tavg-u-hxy-u.mon.GLB", + "atmosChem.h2.tavg-al-hxy-u.mon.GLB", + "atmosChem.h2loss.tavg-al-hxy-u.mon.GLB", + "atmosChem.h2prod.tavg-al-hxy-u.mon.GLB", + "atmosChem.hcfc22.tavg-u-hm-u.mon.GLB", + "atmosChem.meanage.tavg-al-hxy-u.mon.GLB", + "atmosChem.meanage.tavg-p39-hy-air.mon.GLB", + "atmosChem.n2o.tavg-al-hxy-u.mon.GLB", + "atmosChem.n2o.tavg-p39-hy-air.mon.GLB", + "atmosChem.o3.tavg-al-hxy-u.mon.GLB", + "atmosChem.o3.tavg-p19-hxy-air.mon.GLB", + "atmosChem.o3.tavg-p39-hy-air.mon.GLB", + "atmosChem.o3.tpt-al-hxy-u.mon.GLB", + "atmosChem.o3ref.tclm-al-hxy-u.fx.GLB", + "atmosChem.o3ref.ti-al-hxy-u.fx.GLB", + "atmosChem.o3ste.tavg-al-hxy-u.mon.GLB", + "atmosChem.rlutch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rlutcsch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rlutcso3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rluto3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsutch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsutcsch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsutcso3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsuto3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.stratch4loss.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropch4loss.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropch4lossoh.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropdo3chm.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropo3ste.tavg-al-hxy-u.mon.GLB", + "atmosChem.wethno3.tavg-al-hxy-u.mon.GLB", + "atmosChem.wetnh3.tavg-u-hxy-u.mon.GLB", + "atmosChem.wetnh4.tavg-u-hxy-u.mon.GLB", + "atmosChem.wetno3.tavg-al-hxy-u.mon.GLB", + "atmosChem.wetnoy.tavg-u-hxy-u.mon.GLB", + "land.albc.tavg-u-hxy-veg.mon.GLB", + "land.areacellr.ti-u-hxy-u.fx.GLB", + "land.baresoilFrac.tavg-u-hxy-u.mon.GLB", + "land.burntFractionAll.tavg-u-hxy-u.mon.GLB", + "land.cGeologicStorage.tavg-u-hxy-u.mon.GLB", + "land.cLand.tavg-u-hxy-lnd.mon.GLB", + "land.cLeaf.tavg-u-hxy-lnd.mon.GLB", + "land.cLitter.tavg-u-hxy-lnd.mon.GLB", + "land.cnc.tavg-u-hxy-u.mon.GLB", + "land.cProduct.tavg-u-hxy-lnd.mon.GLB", + "land.cRoot.tavg-u-hxy-lnd.mon.GLB", + "land.cropFrac.tavg-u-hxy-u.mon.GLB", + "land.cSoil.tavg-d100cm-hxy-lnd.mon.GLB", + "land.cSoil.tavg-sl-hxy-lnd.mon.GLB", + "land.cSoil.tavg-u-hxy-lnd.mon.GLB", + "land.cStem.tavg-u-hxy-lnd.mon.GLB", + "land.cVeg.tavg-u-hxy-lnd.mon.GLB", + "land.dcw.tavg-u-hxy-lnd.day.GLB", + "land.depthl.ti-u-hxy-u.fx.GLB", + "land.depthsl.ti-u-hxy-u.fx.GLB", + "land.dslw.tavg-u-hxy-lnd.day.GLB", + "land.evspsblpot.tavg-u-hxy-lnd.day.GLB", + "land.evspsblpot.tavg-u-hxy-lnd.mon.GLB", + "land.evspsblsoi.tavg-u-hxy-u.day.GLB", + "land.evspsblveg.tavg-u-hxy-u.day.GLB", + "land.fAnthDisturb.tavg-u-hxy-lnd.mon.GLB", + "land.fBNF.tavg-u-hxy-lnd.mon.GLB", + "land.fCLandToOcean.tavg-u-hxy-lnd.mon.GLB", + "land.fDeforestToAtmos.tavg-u-hxy-lnd.mon.GLB", + "land.fDeforestToProduct.tavg-u-hxy-lnd.mon.GLB", + "land.fFire.tavg-u-hxy-lnd.mon.GLB", + "land.fFireAll.tavg-u-hxy-lnd.mon.GLB", + "land.fFireNat.tavg-u-hxy-lnd.mon.GLB", + "land.fHarvestToAtmos.tavg-u-hxy-lnd.mon.GLB", + "land.fHarvestToGeologicStorage.tavg-u-hxy-lnd.mon.GLB", + "land.fHarvestToProduct.tavg-u-hxy-lnd.mon.GLB", + "land.fLitterSoil.tavg-u-hxy-lnd.mon.GLB", + "land.fLuc.tavg-u-hxy-lnd.mon.GLB", + "land.fN2O.tavg-u-hxy-lnd.mon.GLB", + "land.fNAnthDisturb.tavg-u-hxy-lnd.mon.GLB", + "land.fNdep.tavg-u-hxy-lnd.mon.GLB", + "land.fNfert.tavg-u-hxy-lnd.mon.GLB", + "land.fNgas.tavg-u-hxy-lnd.mon.GLB", + "land.fNgasFire.tavg-u-hxy-lnd.mon.GLB", + "land.fNLandToOcean.tavg-u-hxy-lnd.mon.GLB", + "land.fNleach.tavg-u-hxy-lnd.mon.GLB", + "land.fNLitterSoil.tavg-u-hxy-lnd.mon.GLB", + "land.fNloss.tavg-u-hxy-lnd.mon.GLB", + "land.fNnetmin.tavg-u-hxy-lnd.mon.GLB", + "land.fNOx.tavg-u-hxy-lnd.mon.GLB", + "land.fNProduct.tavg-u-hxy-lnd.mon.GLB", + "land.fNup.tavg-u-hxy-lnd.mon.GLB", + "land.fNVegLitter.tavg-u-hxy-lnd.mon.GLB", + "land.fNVegSoil.tavg-u-hxy-lnd.mon.GLB", + "land.fProductDecomp.tavg-u-hxy-lnd.mon.GLB", + "land.fVegLitter.tavg-u-hxy-lnd.mon.GLB", + "land.fVegSoil.tavg-u-hxy-lnd.mon.GLB", + "land.gpp.tavg-u-hxy-lnd.mon.GLB", + "land.gppVgt.tavg-u-hxy-multi.day.GLB", + "land.grassFrac.tavg-u-hxy-u.mon.GLB", + "land.laiVgt.tavg-u-hxy-multi.day.GLB", + "land.landCoverFrac.tavg-u-hxy-u.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.day.GLB", + "land.mrrob.tavg-u-hxy-lnd.day.GLB", + "land.mrros.tavg-u-hxy-lnd.day.GLB", + "land.mrsfl.tavg-sl-hxy-lnd.day.GLB", + "land.mrsfl.tavg-sl-hxy-lnd.mon.GLB", + "land.mrsll.tavg-sl-hxy-lnd.day.GLB", + "land.mrsll.tavg-sl-hxy-lnd.mon.GLB", + "land.mrso.tavg-u-hxy-lnd.day.GLB", + "land.mrsol.tavg-d10cm-hxy-lnd.day.GLB", + "land.mrsol.tavg-sl-hxy-lnd.day.GLB", + "land.mrsol.tavg-sl-hxy-lnd.mon.GLB", + "land.mrsol.tpt-d10cm-hxy-lnd.3hr.GLB", + "land.mrsow.tavg-u-hxy-lnd.day.GLB", + "land.mrtws.tavg-u-hxy-lnd.day.GLB", + "land.mrtws.tavg-u-hxy-lnd.mon.GLB", + "land.nbp.tavg-u-hxy-lnd.mon.GLB", + "land.nep.tavg-u-hxy-lnd.mon.GLB", + "land.nLand.tavg-u-hxy-lnd.mon.GLB", + "land.nLitter.tavg-u-hxy-lnd.mon.GLB", + "land.nMineral.tavg-u-hxy-lnd.mon.GLB", + "land.npp.tavg-u-hxy-lnd.mon.GLB", + "land.nProduct.tavg-u-hxy-lnd.mon.GLB", + "land.nSoil.tavg-u-hxy-lnd.mon.GLB", + "land.nVeg.tavg-u-hxy-lnd.mon.GLB", + "land.orog.ti-u-hxy-u.fx.30S-90S", + "land.pastureFrac.tavg-u-hxy-u.mon.GLB", + "land.prveg.tavg-u-hxy-lnd.mon.GLB", + "land.ra.tavg-u-hxy-lnd.mon.GLB", + "land.residualFrac.tavg-u-hxy-u.mon.GLB", + "land.rh.tavg-u-hxy-lnd.mon.GLB", + "land.rivi.tavg-u-hxy-lnd.day.GLB", + "land.rivo.tavg-u-hxy-lnd.day.GLB", + "land.rsds.tavg-u-hxy-lnd.mon.GLB", + "land.rsds.tavg-u-hxy-sn.mon.GLB", + "land.rsus.tavg-u-hxy-lnd.mon.GLB", + "land.rsus.tavg-u-hxy-sn.mon.GLB", + "land.sftgif.tavg-u-hxy-u.mon.GLB", + "land.sftlaf.ti-u-hxy-u.fx.GLB", + "land.shrubFrac.tavg-u-hxy-u.mon.GLB", + "land.srfrad.tavg-u-hxy-u.3hr.GLB", + "land.tas.tavg-u-hxy-u.1hr.30S-90S", + "land.tas.tavg-u-hxy-u.1hr.GLB", + "land.tran.tavg-u-hxy-lnd.mon.GLB", + "land.treeFrac.tavg-u-hxy-u.mon.GLB", + "land.tsl.tavg-sl-hxy-lnd.day.GLB", + "land.tsl.tavg-sl-hxy-lnd.mon.GLB", + "land.tslsi.tavg-u-hxy-u.day.GLB", + "land.tslsi.tpt-u-hxy-lsi.3hr.GLB", + "land.vegFrac.tavg-u-hxy-u.mon.GLB", + "land.vegHeight.tavg-u-hxy-tree.mon.GLB", + "land.vegHeight.tavg-u-hxy-veg.mon.GLB", + "land.wetlandCH4.tavg-u-hxy-lnd.mon.GLB", + "land.wtd.tavg-u-hxy-lnd.day.GLB", + "landIce.acabf.tavg-u-hxy-is.mon.GLB", + "landIce.hfdsn.tavg-u-hxy-lnd.mon.GLB", + "landIce.hfgeoubed.ti-u-hxy-gis.fx.GRL", + "landIce.hfls.tavg-u-hxy-is.mon.GLB", + "landIce.hfss.tavg-u-hxy-is.mon.GLB", + "landIce.icem.tavg-u-hxy-is.mon.GLB", + "landIce.litemptop.tavg-u-hxy-is.mon.GLB", + "landIce.lithk.ti-u-hxy-is.fx.GRL", + "landIce.lithk.ti-u-hxy-u.fx.GLB", + "landIce.mrro.tavg-u-hxy-is.mon.GLB", + "landIce.orog.tavg-u-hxy-is.mon.GLB", + "landIce.pflw.tavg-u-hxy-lnd.mon.GLB", + "landIce.prra.tavg-u-hxy-is.mon.GLB", + "landIce.prsn.tavg-u-hxy-is.mon.GLB", + "landIce.rlds.tavg-u-hxy-is.mon.GLB", + "landIce.rlus.tavg-u-hxy-is.mon.GLB", + "landIce.rsds.tavg-u-hxy-is.mon.GLB", + "landIce.rsus.tavg-u-hxy-is.mon.GLB", + "landIce.sbl.tavg-u-hxy-is.mon.GLB", + "landIce.sbl.tavg-u-hxy-lnd.mon.GLB", + "landIce.sbl.tavg-u-hxy-u.mon.GLB", + "landIce.sftflf.tavg-u-hxy-u.mon.GLB", + "landIce.sftflf.ti-u-hxy-u.fx.GLB", + "landIce.sftgrf.tavg-u-hxy-u.mon.GLB", + "landIce.sftgrf.ti-u-hxy-u.fx.GLB", + "landIce.snc.tavg-u-hxy-is.mon.GLB", + "landIce.snd.tavg-u-hxy-lnd.mon.GLB", + "landIce.snicem.tavg-u-hxy-is.mon.GLB", + "landIce.snicem.tavg-u-hxy-is.mon.GRL", + "landIce.snm.tavg-u-hxy-is.mon.GLB", + "landIce.snm.tavg-u-hxy-lnd.mon.GLB", + "landIce.snrefr.tavg-u-hxy-is.mon.GLB", + "landIce.snw.tavg-u-hxy-lnd.day.GLB", + "landIce.sootsn.tavg-u-hxy-lnd.mon.GLB", + "landIce.tas.tavg-u-hxy-is.mon.GLB", + "landIce.topg.ti-u-hxy-gis.fx.GRL", + "landIce.tpf.tavg-u-hxy-lnd.mon.GLB", + "landIce.ts.tavg-u-hxy-is.mon.GLB", + "landIce.tsn.tavg-u-hxy-is.mon.GLB", + "landIce.tsn.tavg-u-hxy-lnd.mon.GLB", + "ocean.absscint.tavg-op4-hxy-sea.mon.GLB", + "ocean.agessc.tavg-ol-hxy-sea.mon.GLB", + "ocean.bigthetao.tavg-ol-hm-sea.mon.GLB", + "ocean.bigthetao.tavg-ol-hxy-sea.dec.GLB", + "ocean.bigthetao.tavg-op20bar-hxy-sea.day.GLB", + "ocean.chcint.tavg-op4-hxy-sea.mon.GLB", + "ocean.ficeberg.tavg-ol-hxy-sea.3hr.GLB", + "ocean.ficeberg.tavg-ol-hxy-sea.mon.GLB", + "ocean.ficeberg.tavg-u-hxy-sea.mon.GLB", + "ocean.flandice.tavg-u-hxy-sea.3hr.GLB", + "ocean.flandice.tavg-u-hxy-sea.mon.GLB", + "ocean.friver.tavg-u-hxy-sea.3hr.GLB", + "ocean.friver.tavg-u-hxy-sea.mon.GLB", + "ocean.hfbasin.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpmadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpmdiff.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpsmadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfds.tavg-u-hxy-sea.3hr.GLB", + "ocean.hfds.tavg-u-hxy-sea.mon.30S-90S", + "ocean.hfgeou.tavg-u-hxy-sea.mon.GLB", + "ocean.hfrunoffds.tavg-ol-hxy-sea.3hr.GLB", + "ocean.hfx.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfx.tavg-u-hxy-sea.day.GLB", + "ocean.hfx.tavg-u-hxy-sea.mon.GLB", + "ocean.hfy.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfy.tavg-u-hxy-sea.day.GLB", + "ocean.hfy.tavg-u-hxy-sea.mon.GLB", + "ocean.htovgyre.tavg-u-hyb-sea.mon.GLB", + "ocean.htovovrt.tavg-u-hyb-sea.mon.GLB", + "ocean.masscello.tavg-ol-hxy-sea.dec.GLB", + "ocean.masso.tavg-u-hm-sea.dec.GLB", + "ocean.masso.tavg-u-hm-sea.mon.GLB", + "ocean.mlotst.tavg-u-hxy-sea.day.GLB", + "ocean.mlotst.tavg-u-hxy-sea.mon.30S-90S", + "ocean.mlotst.tmax-u-hxy-sea.mon.GLB", + "ocean.mlotst.tmin-u-hxy-sea.mon.GLB", + "ocean.mpw.tavg-u-hxy-sea.mon.GLB", + "ocean.mpw.tpt-u-hxy-sea.3hr.GLB", + "ocean.mpwswell.tavg-u-hxy-sea.mon.GLB", + "ocean.mpwswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.mpwwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.mpwwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.msftbarot.tavg-u-hxy-sea.mon.GLB", + "ocean.msftm.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftm.tavg-rho-hyb-sea.mon.GLB", + "ocean.msfty.tavg-ol-ht-sea.mon.GLB", + "ocean.msfty.tavg-rho-ht-sea.mon.GLB", + "ocean.obvfsq.tavg-ol-hxy-sea.mon.GLB", + "ocean.opottemptend.tavg-ol-hxy-sea.yr.GLB", + "ocean.pbo.tavg-u-hxy-sea.mon.GLB", + "ocean.pfscint.tavg-op4-hxy-sea.mon.GLB", + "ocean.phcint.tavg-op4-hxy-sea.mon.GLB", + "ocean.pso.tavg-u-hxy-sea.mon.GLB", + "ocean.rsds.tavg-u-hxy-ifs.mon.GLB", + "ocean.rsntds.tavg-u-hxy-sea.3hr.GLB", + "ocean.rsus.tavg-u-hxy-ifs.mon.GLB", + "ocean.scint.tavg-op4-hxy-sea.mon.GLB", + "ocean.sduo.tavg-u-hxy-sea.mon.GLB", + "ocean.sduo.tpt-u-hxy-sea.3hr.GLB", + "ocean.sdvo.tavg-u-hxy-sea.mon.GLB", + "ocean.sdvo.tpt-u-hxy-sea.3hr.GLB", + "ocean.sfdsi.tavg-u-hxy-sea.3hr.GLB", + "ocean.sfx.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfx.tavg-u-hxy-sea.mon.GLB", + "ocean.sfy.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfy.tavg-u-hxy-sea.mon.GLB", + "ocean.sltbasin.tavg-u-hyb-sea.mon.GLB", + "ocean.sltovgyre.tavg-u-hyb-sea.mon.GLB", + "ocean.sltovovrt.tavg-u-hyb-sea.mon.GLB", + "ocean.so.tavg-ol-hm-sea.mon.GLB", + "ocean.so.tavg-ol-hxy-sea.dec.GLB", + "ocean.so.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.sob.tavg-u-hxy-sea.mon.GLB", + "ocean.sos.tavg-u-hm-sea.mon.30S-90S", + "ocean.sos.tavg-u-hm-sea.mon.GLB", + "ocean.sw17O.tavg-ol-hxy-sea.mon.GLB", + "ocean.sw18O.tavg-ol-hxy-sea.mon.GLB", + "ocean.sw2H.tavg-ol-hxy-sea.mon.GLB", + "ocean.swh.tavg-u-hxy-sea.mon.GLB", + "ocean.swh.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhmax.tmax-u-hxy-sea.mon.GLB", + "ocean.swhmax.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhswell.tavg-u-hxy-sea.mon.GLB", + "ocean.swhswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.swhwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.tauuo.tavg-u-hxy-sea.3hr.GLB", + "ocean.tauuo.tavg-u-hxy-sea.dec.GLB", + "ocean.tauvo.tavg-u-hxy-sea.3hr.GLB", + "ocean.tauvo.tavg-u-hxy-sea.dec.GLB", + "ocean.thetao.tavg-ol-hm-sea.mon.GLB", + "ocean.thetao.tavg-ol-hxy-sea.dec.GLB", + "ocean.thetao.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.thetao.tavg-op20bar-hxy-sea.day.GLB", + "ocean.thkcello.tavg-ol-hxy-sea.dec.GLB", + "ocean.tob.tavg-u-hxy-sea.mon.GLB", + "ocean.tos.tavg-u-hm-sea.mon.GLB", + "ocean.tos.tavg-u-hxy-sea.mon.30S-90S", + "ocean.tos.tpt-u-hxy-sea.3hr.GLB", + "ocean.tossq.tavg-u-hxy-sea.day.GLB", + "ocean.umo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.uo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.uos.tavg-u-hxy-sea.day.GLB", + "ocean.vmo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.vo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.volcello.tavg-ol-hxy-sea.dec.GLB", + "ocean.volcello.tavg-ol-hxy-sea.mon.GLB", + "ocean.volcello.tavg-ol-hxy-sea.yr.GLB", + "ocean.volcello.ti-ol-hxy-sea.fx.GLB", + "ocean.volo.tavg-u-hm-sea.dec.GLB", + "ocean.volo.tavg-u-hm-sea.mon.GLB", + "ocean.vos.tavg-u-hxy-sea.day.GLB", + "ocean.wdir.tavg-u-hxy-sea.mon.GLB", + "ocean.wdir.tpt-u-hxy-sea.3hr.GLB", + "ocean.wdirswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wdirswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wdirwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wdirwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.wfcorr.tavg-u-hxy-sea.mon.GLB", + "ocean.wfo.tavg-u-hxy-sea.3hr.GLB", + "ocean.wfo.tavg-u-hxy-sea.mon.GLB", + "ocean.wmo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.wo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.wpdir.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdir.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpdirswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdirswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpdirwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdirwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpp.tavg-u-hxy-sea.mon.GLB", + "ocean.wpp.tpt-u-hxy-sea.3hr.GLB", + "ocean.wppswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wppswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wppwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wppwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.zos.tavg-u-hxy-sea.mon.30S-90S", + "ocean.zossq.tavg-u-hxy-sea.mon.GLB", + "ocean.zostoga.tavg-u-hm-sea.day.GLB", + "ocnBgchem.bacc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.calc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chl.tavg-d0m-hxy-sea.day.GLB", + "ocnBgchem.chl.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chl.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chlcalc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chldiat.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chldiat.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chldiaz.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chldiaz.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chlmisc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chlmisc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chlpico.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chlpico.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.detoc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dfe.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.dfe.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.dfe.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissic.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.dissic.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissoc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dmso.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.dmso.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.dpco2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.dpo2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.expc.tavg-d1000m-hxy-sea.mon.GLB", + "ocnBgchem.expc.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.expc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.expcalc.tavg-d1000m-hxy-sea.mon.GLB", + "ocnBgchem.expcalc.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.expcalc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.fgco2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fric.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.froc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fsfe.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fsn.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.graz.tavg-ol-hxy-sea.mon.30S-90S", + "ocnBgchem.graz.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.icfriver.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intdic.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intdoc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intparag.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbfe.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbn.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbp.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbsi.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpcalcite.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpn2.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpoc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpp.tavg-u-hxy-sea.day.GLB", + "ocnBgchem.intpp.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpp.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppcalc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppdiat.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppdiaz.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppmisc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppnitrate.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpppico.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.nh4.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.nh4.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.no3.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.no3.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.o2.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.ocfriver.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.ph.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.ph.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phyc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phyc.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.phyc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phycalc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phycalc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phydiat.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phydiat.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phydiaz.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phydiaz.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phymisc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phymisc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phypico.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phypico.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.po4.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.pp.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.si.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.spco2.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.spco2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.talk.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zmeso.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zmeso.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zmicro.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zmicro.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zmisc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zmisc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zooc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zooc.tavg-ol-hxy-sea.mon.GLB", + "seaIce.evspsbl.tavg-u-hxy-si.mon.GLB", + "seaIce.prra.tavg-u-hxy-si.mon.GLB", + "seaIce.prsn.tavg-u-hxy-si.mon.GLB", + "seaIce.rlds.tavg-u-hxy-si.day.GLB", + "seaIce.rlds.tavg-u-hxy-si.mon.GLB", + "seaIce.rlus.tavg-u-hxy-si.day.GLB", + "seaIce.rlus.tavg-u-hxy-si.mon.GLB", + "seaIce.rsds.tavg-u-hxy-si.day.GLB", + "seaIce.rsds.tavg-u-hxy-si.mon.GLB", + "seaIce.rsus.tavg-u-hxy-si.day.GLB", + "seaIce.rsus.tavg-u-hxy-si.mon.GLB", + "seaIce.sbl.tavg-u-hxy-si.mon.GLB", + "seaIce.siage.tavg-u-hxy-si.day.GLB", + "seaIce.siage.tavg-u-hxy-si.mon.30S-90S", + "seaIce.siarea.tavg-u-hm-u.mon.NH", + "seaIce.siarea.tavg-u-hm-u.mon.SH", + "seaIce.siareaacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.siconc.tavg-u-hxy-u.mon.30S-90S", + "seaIce.siconca.tavg-u-hxy-u.day.GLB", + "seaIce.siconca.tavg-u-hxy-u.mon.GLB", + "seaIce.sidconcdyn.tavg-u-hxy-sea.mon.GLB", + "seaIce.sidconcth.tavg-u-hxy-sea.mon.GLB", + "seaIce.sidmassdyn.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthsi.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthwat.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmeltbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmeltlat.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmelttop.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassth.tavg-u-hxy-si.mon.GLB", + "seaIce.sieqthick.tavg-u-hxy-si.mon.GLB", + "seaIce.siextent.tavg-u-hm-u.mon.NH", + "seaIce.siextent.tavg-u-hm-u.mon.SH", + "seaIce.siflcondbot.tavg-u-hxy-si.day.GLB", + "seaIce.siflcondbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflcondtop.tavg-u-hxy-si.day.GLB", + "seaIce.siflcondtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sifllattop.tavg-u-hxy-si.day.GLB", + "seaIce.sifllattop.tavg-u-hxy-si.mon.GLB", + "seaIce.siflsensbot.tavg-u-hxy-si.day.GLB", + "seaIce.siflsensbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflsenstop.tavg-u-hxy-si.day.GLB", + "seaIce.siflsenstop.tavg-u-hxy-si.mon.GLB", + "seaIce.siflswdbot.tavg-u-hxy-si.day.GLB", + "seaIce.siflswdbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sihc.tavg-u-hxy-sea.day.GLB", + "seaIce.sihc.tavg-u-hxy-sea.mon.GLB", + "seaIce.siitdconc.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdsnconc.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdsnthick.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdthick.tavg-u-hxy-si.mon.GLB", + "seaIce.simassacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.simpconc.tavg-u-hxy-si.mon.GLB", + "seaIce.sirdgconc.tavg-u-hxy-si.mon.GLB", + "seaIce.sisaltmass.tavg-u-hxy-si.mon.GLB", + "seaIce.sisndmassdyn.tavg-u-hxy-si.mon.GLB", + "seaIce.sisndmasssi.tavg-u-hxy-si.mon.GLB", + "seaIce.sisndmasswind.tavg-u-hxy-si.mon.GLB", + "seaIce.sisnhc.tavg-u-hxy-si.day.GLB", + "seaIce.sisnhc.tavg-u-hxy-si.mon.GLB", + "seaIce.sisnmass.tavg-u-hm-u.mon.NH", + "seaIce.sisnmass.tavg-u-hm-u.mon.SH", + "seaIce.sisnmassacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.sispeed.tavg-u-hxy-si.day.GLB", + "seaIce.sispeed.tavg-u-hxy-si.mon.GLB", + "seaIce.sistressave.tpt-u-hxy-si.mon.GLB", + "seaIce.sistressmax.tpt-u-hxy-si.mon.GLB", + "seaIce.sistrxdtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sistrxubot.tavg-u-hxy-si.mon.GLB", + "seaIce.sistrydtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sistryubot.tavg-u-hxy-si.mon.GLB", + "seaIce.sitempsnic.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-si.day.GLB", + "seaIce.sithick.tavg-u-hxy-si.mon.30S-90S", + "seaIce.sitimefrac.tavg-u-hxy-sea.day.GLB", + "seaIce.sitimefrac.tavg-u-hxy-sea.mon.30S-90S", + "seaIce.siu.tavg-u-hxy-si.day.GLB", + "seaIce.siu.tavg-u-hxy-si.mon.30S-90S", + "seaIce.siv.tavg-u-hxy-si.day.GLB", + "seaIce.siv.tavg-u-hxy-si.mon.30S-90S", + "seaIce.sivol.tavg-u-hm-u.mon.NH", + "seaIce.sivol.tavg-u-hm-u.mon.SH", + "seaIce.snc.tavg-u-hxy-si.mon.GLB", + "seaIce.snd.tavg-u-hxy-sn.day.GLB", + "seaIce.snd.tavg-u-hxy-sn.mon.30S-90S", + "seaIce.snm.tavg-u-hxy-si.mon.GLB", + "seaIce.snw.tavg-u-hxy-si.mon.GLB", + "seaIce.ts.tavg-u-hxy-si.day.GLB", + "seaIce.ts.tavg-u-hxy-si.mon.30S-90S" + ], + "Medium": [ + "atmos.bldep.tavg-u-hxy-u.1hr.GLB", + "atmos.clic.tpt-al-hxy-u.3hr.GLB", + "atmos.clis.tpt-al-hxy-u.3hr.GLB", + "atmos.clivi.tpt-u-hxy-u.3hr.GLB", + "atmos.clt.tpt-u-hxy-u.3hr.GLB", + "atmos.clwc.tpt-al-hxy-u.3hr.GLB", + "atmos.clws.tpt-al-hxy-u.3hr.GLB", + "atmos.clwvi.tpt-u-hxy-u.3hr.GLB", + "atmos.dtauc.tpt-al-hxy-ccl.3hr.GLB", + "atmos.dtaus.tpt-al-hxy-scl.3hr.GLB", + "atmos.hfdsnb.tavg-u-hxy-lnd.day.GLB", + "atmos.hfls.tavg-u-hxy-is.mon.ATA", + "atmos.hfls.tavg-u-hxy-u.1hr.GLB", + "atmos.hfss.tavg-u-hxy-is.mon.ATA", + "atmos.hfss.tavg-u-hxy-is.mon.GRL", + "atmos.hfss.tavg-u-hxy-u.1hr.GLB", + "atmos.hur.tavg-700hPa-hxy-air.day.GLB", + "atmos.hur.tpt-100hPa-hxy-u.6hr.GLB", + "atmos.hur.tpt-500hPa-hxy-air.6hr.GLB", + "atmos.hur.tpt-850hPa-hxy-air.6hr.GLB", + "atmos.hurs.tavg-h2m-hxy-u.1hr.GLB", + "atmos.hus.tpt-al-hxy-u.3hr.GLB", + "atmos.hus.tpt-p6-hxy-air.3hr.GLB", + "atmos.noaahi2m.tavg-h2m-hxy-u.day.GLB", + "atmos.noaahi2m.tmax-h2m-hxy-u.day.GLB", + "atmos.pfull.tpt-al-hxy-u.3hr.GLB", + "atmos.pr.tpt-u-hxy-u.3hr.GLB", + "atmos.prra.tavg-u-hxy-is.mon.ATA", + "atmos.prrsn.tavg-u-hxy-lnd.day.GLB", + "atmos.prsn.tavg-u-hxy-is.mon.ATA", + "atmos.prsnc.tavg-u-hxy-lnd.day.GLB", + "atmos.prsnsn.tavg-u-hxy-lnd.day.GLB", + "atmos.prw.tpt-u-hxy-u.3hr.GLB", + "atmos.ps.tpt-u-hxy-u.1hr.GLB", + "atmos.reffclic.tpt-al-hxy-ccl.3hr.GLB", + "atmos.reffclis.tpt-al-hxy-scl.3hr.GLB", + "atmos.reffclwc.tpt-al-hxy-ccl.3hr.GLB", + "atmos.reffclws.tpt-al-hxy-scl.3hr.GLB", + "atmos.rlds.tavg-u-hxy-is.mon.ATA", + "atmos.rlds.tavg-u-hxy-is.mon.GRL", + "atmos.rlds.tpt-u-hxy-u.3hr.GLB", + "atmos.rldscs.tavg-u-hxy-u.day.GLB", + "atmos.rldscs.tpt-u-hxy-u.3hr.GLB", + "atmos.rls.tavg-u-hxy-u.day.GLB", + "atmos.rlus.tavg-u-hxy-is.mon.ATA", + "atmos.rlus.tavg-u-hxy-is.mon.GRL", + "atmos.rlus.tavg-u-hxy-u.1hr.GLB", + "atmos.rlut.tpt-u-hxy-u.3hr.GLB", + "atmos.rlutcs.tpt-u-hxy-u.3hr.GLB", + "atmos.rsds.tavg-u-hxy-is.mon.ATA", + "atmos.rsds.tavg-u-hxy-is.mon.GRL", + "atmos.rsds.tpt-u-hxy-u.3hr.GLB", + "atmos.rsdscs.tpt-u-hxy-u.3hr.GLB", + "atmos.rsdsdiff.tavg-u-hxy-u.1hr.GLB", + "atmos.rsdsdiff.tavg-u-hxy-u.day.GLB", + "atmos.rss.tavg-u-hxy-u.day.GLB", + "atmos.rsus.tavg-u-hxy-is.mon.ATA", + "atmos.rsus.tavg-u-hxy-is.mon.GRL", + "atmos.rsus.tavg-u-hxy-u.1hr.GLB", + "atmos.rsut.tpt-u-hxy-u.3hr.GLB", + "atmos.rsutcs.tpt-u-hxy-u.3hr.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.1hr.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.3hr.GLB", + "atmos.snmsl.tavg-u-hxy-lnd.day.GLB", + "atmos.snrefr.tavg-u-hxy-lnd.day.GLB", + "atmos.snwc.tavg-u-hxy-lnd.day.GLB", + "atmos.ta.tpt-al-hxy-u.3hr.GLB", + "atmos.ta.tpt-p6-hxy-air.3hr.GLB", + "atmos.tas.tavg-h2m-hm-is.mon.ATA", + "atmos.tas.tavg-h2m-hm-is.mon.GRL", + "atmos.ts.tavg-u-hxy-is.mon.ATA", + "atmos.ts.tavg-u-hxy-is.mon.GRL", + "atmos.ts.tavg-u-hxy-sn.day.GLB", + "atmos.ts.tavg-u-hxy-u.1hr.GLB", + "atmos.ua.tavg-h100m-hxy-u.3hr.GLB", + "atmos.ua.tpt-200hPa-hxy-u.6hr.GLB", + "atmos.ua.tpt-p6-hxy-air.3hr.GLB", + "atmos.va.tavg-h100m-hxy-u.3hr.GLB", + "atmos.va.tpt-200hPa-hxy-u.6hr.GLB", + "atmos.va.tpt-p6-hxy-air.3hr.GLB", + "atmos.wap.tpt-p6-hxy-air.3hr.GLB", + "atmos.wbgt.tavg-h2m-hxy-u.day.GLB", + "atmos.wbgt.tmax-h2m-hxy-u.day.GLB", + "atmos.wsg.tmax-h100m-hxy-u.mon.GLB", + "atmos.wsg.tmax-h10m-hxy-u.mon.GLB", + "atmos.zg.tpt-700hPa-hxy-u.6hr.GLB", + "atmos.zg.tpt-925hPa-hxy-u.6hr.GLB", + "atmosChem.flashrate.tavg-u-hxy-u.day.GLB", + "land.areacellg.ti-u-hxy-u.fx.ATA", + "land.areacellg.ti-u-hxy-u.fx.GRL", + "land.baresoilFrac.tavg-u-hxy-u.yr.GLB", + "land.cLitterCwd.tavg-u-hxy-lnd.mon.GLB", + "land.cLitterLut.tpt-u-hxy-multi.yr.GLB", + "land.cLitterSubSurf.tavg-u-hxy-lnd.mon.GLB", + "land.cLitterSurf.tavg-u-hxy-lnd.mon.GLB", + "land.cOther.tavg-u-hxy-lnd.mon.GLB", + "land.cProductLut.tpt-u-hxy-multi.yr.GLB", + "land.cropFrac.tavg-u-hxy-u.yr.GLB", + "land.cropFracC3.tavg-u-hxy-u.mon.GLB", + "land.cropFracC4.tavg-u-hxy-u.mon.GLB", + "land.cSoilLut.tpt-u-hxy-multi.yr.GLB", + "land.cSoilPools.tavg-u-hxy-lnd.mon.GLB", + "land.cVeg.tavg-u-hxy-ng.mon.GLB", + "land.cVeg.tavg-u-hxy-shb.mon.GLB", + "land.cVeg.tavg-u-hxy-tree.mon.GLB", + "land.cVegLut.tpt-u-hxy-multi.yr.GLB", + "land.dgw.tavg-u-hxy-lnd.day.GLB", + "land.drivw.tavg-u-hxy-lnd.day.GLB", + "land.dsn.tavg-u-hxy-lnd.day.GLB", + "land.dsw.tavg-u-hxy-lnd.day.GLB", + "land.esn.tavg-u-hxy-sn.day.GLB", + "land.evspsblsoi.tavg-u-hxy-u.3hr.GLB", + "land.evspsblveg.tavg-u-hxy-u.3hr.GLB", + "land.fLitterFire.tavg-u-hxy-lnd.mon.GLB", + "land.fLulccAtmLut.tavg-u-hxy-multi.mon.GLB", + "land.fNgasNonFire.tavg-u-hxy-lnd.mon.GLB", + "land.fracInLut.tsum-u-hxy-lnd.yr.GLB", + "land.fracLut.tpt-u-hxy-u.mon.GLB", + "land.fracLut.tpt-u-hxy-u.yr.GLB", + "land.fracOutLut.tsum-u-hxy-lnd.yr.GLB", + "land.fVegFire.tavg-u-hxy-lnd.mon.GLB", + "land.fVegLitterMortality.tavg-u-hxy-lnd.mon.GLB", + "land.fVegLitterSenescence.tavg-u-hxy-lnd.mon.GLB", + "land.fVegSoilMortality.tavg-u-hxy-lnd.mon.GLB", + "land.fVegSoilSenescence.tavg-u-hxy-lnd.mon.GLB", + "land.gpp.tavg-u-hxy-ng.mon.GLB", + "land.gpp.tavg-u-hxy-shb.mon.GLB", + "land.gpp.tavg-u-hxy-tree.mon.GLB", + "land.gppLut.tavg-u-hxy-multi.mon.GLB", + "land.grassFrac.tavg-u-hxy-u.yr.GLB", + "land.grassFracC3.tavg-u-hxy-u.mon.GLB", + "land.grassFracC4.tavg-u-hxy-u.mon.GLB", + "land.hfdsl.tavg-u-hxy-lnd.3hr.GLB", + "land.hflsLut.tavg-u-hxy-multi.mon.GLB", + "land.hfssLut.tavg-u-hxy-multi.mon.GLB", + "land.irrDem.tavg-u-hxy-u.day.GLB", + "land.irrGw.tavg-u-hxy-u.day.GLB", + "land.irrLut.tavg-u-hxy-multi.mon.GLB", + "land.irrLut.tavg-u-hxy-u.day.GLB", + "land.irrSurf.tavg-u-hxy-u.day.GLB", + "land.laiLut.tavg-u-hxy-multi.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.3hr.GLB", + "land.mrros.tavg-u-hxy-lnd.3hr.GLB", + "land.mrsol.tavg-d100cm-hxy-lnd.3hr.GLB", + "land.mrsolLut.tavg-d10cm-hxy-multi.mon.GLB", + "land.nbpLut.tavg-u-hxy-multi.mon.GLB", + "land.nLeaf.tavg-u-hxy-lnd.mon.GLB", + "land.nLitterCwd.tavg-u-hxy-lnd.mon.GLB", + "land.nLitterSubSurf.tavg-u-hxy-lnd.mon.GLB", + "land.nLitterSurf.tavg-u-hxy-lnd.mon.GLB", + "land.nMineralNH4.tavg-u-hxy-lnd.mon.GLB", + "land.nMineralNO3.tavg-u-hxy-lnd.mon.GLB", + "land.nOther.tavg-u-hxy-lnd.mon.GLB", + "land.npp.tavg-u-hxy-ng.mon.GLB", + "land.npp.tavg-u-hxy-shb.mon.GLB", + "land.npp.tavg-u-hxy-tree.mon.GLB", + "land.nppLeaf.tavg-u-hxy-lnd.mon.GLB", + "land.nppLut.tavg-u-hxy-multi.mon.GLB", + "land.nppOther.tavg-u-hxy-lnd.mon.GLB", + "land.nppRoot.tavg-u-hxy-lnd.mon.GLB", + "land.nppStem.tavg-u-hxy-lnd.mon.GLB", + "land.nppVgt.tavg-u-hxy-multi.day.GLB", + "land.nRoot.tavg-u-hxy-lnd.mon.GLB", + "land.nStem.tavg-u-hxy-lnd.mon.GLB", + "land.orog.tavg-u-hxy-is.mon.ATA", + "land.orog.tavg-u-hxy-is.mon.GRL", + "land.orog.tavg-u-hxy-is.yr.ATA", + "land.orog.tavg-u-hxy-is.yr.GRL", + "land.pastureFracC3.tavg-u-hxy-u.mon.GLB", + "land.pastureFracC4.tavg-u-hxy-u.mon.GLB", + "land.qgwr.tavg-u-hxy-lnd.day.GLB", + "land.ra.tavg-u-hxy-ng.mon.GLB", + "land.ra.tavg-u-hxy-shb.mon.GLB", + "land.ra.tavg-u-hxy-tree.mon.GLB", + "land.raLeaf.tavg-u-hxy-lnd.mon.GLB", + "land.raLut.tavg-u-hxy-multi.mon.GLB", + "land.raOther.tavg-u-hxy-lnd.mon.GLB", + "land.raRoot.tavg-u-hxy-lnd.mon.GLB", + "land.raStem.tavg-u-hxy-lnd.mon.GLB", + "land.raVgt.tavg-u-hxy-multi.day.GLB", + "land.rh.tavg-u-hxy-ng.mon.GLB", + "land.rh.tavg-u-hxy-shb.mon.GLB", + "land.rh.tavg-u-hxy-tree.mon.GLB", + "land.rhLitter.tavg-u-hxy-lnd.mon.GLB", + "land.rhLut.tavg-u-hxy-multi.mon.GLB", + "land.rhSoil.tavg-u-hxy-lnd.mon.GLB", + "land.rhVgt.tavg-u-hxy-multi.day.GLB", + "land.rzwc.tavg-u-hxy-lnd.day.GLB", + "land.sftgif.tavg-u-hxy-u.yr.ATA", + "land.sftgif.tavg-u-hxy-u.yr.GRL", + "land.shrubFrac.tavg-u-hxy-u.yr.GLB", + "land.sw.tavg-u-hxy-lnd.day.GLB", + "land.sweLut.tavg-u-hxy-multi.mon.GLB", + "land.tasLut.tavg-h2m-hxy-multi.mon.GLB", + "land.tran.tavg-u-hxy-u.3hr.GLB", + "land.treeFrac.tavg-u-hxy-u.yr.GLB", + "land.treeFracBdlDcd.tavg-u-hxy-u.mon.GLB", + "land.treeFracBdlEvg.tavg-u-hxy-u.mon.GLB", + "land.treeFracNdlDcd.tavg-u-hxy-u.mon.GLB", + "land.treeFracNdlEvg.tavg-u-hxy-u.mon.GLB", + "land.tsLut.tavg-u-hxy-multi.mon.GLB", + "land.vegHeight.tavg-u-hxy-ng.mon.GLB", + "land.vegHeight.tavg-u-hxy-shb.mon.GLB", + "land.wetlandCH4cons.tavg-u-hxy-lnd.mon.GLB", + "land.wetlandCH4prod.tavg-u-hxy-lnd.mon.GLB", + "land.wetlandFrac.tavg-u-hxy-u.mon.GLB", + "landIce.acabf.tavg-u-hxy-is.mon.ATA", + "landIce.acabf.tavg-u-hxy-is.mon.GRL", + "landIce.acabf.tavg-u-hxy-is.yr.ATA", + "landIce.acabf.tavg-u-hxy-is.yr.GRL", + "landIce.agesno.tavg-u-hxy-lnd.mon.GLB", + "landIce.hfdsn.tavg-u-hxy-lnd.day.GLB", + "landIce.hfgeoubed.tavg-u-hxy-gis.yr.ATA", + "landIce.hfgeoubed.tavg-u-hxy-gis.yr.GRL", + "landIce.hfgeoubed.ti-u-hxy-gis.fx.ATA", + "landIce.iareafl.tavg-u-hm-fis.yr.ATA", + "landIce.iareafl.tavg-u-hm-fis.yr.GRL", + "landIce.iareagr.tavg-u-hm-gis.yr.ATA", + "landIce.iareagr.tavg-u-hm-gis.yr.GRL", + "landIce.icem.tavg-u-hxy-is.mon.ATA", + "landIce.icem.tavg-u-hxy-is.mon.GRL", + "landIce.libmassbf.tavg-u-hxy-fis.mon.ATA", + "landIce.libmassbf.tavg-u-hxy-fis.mon.GRL", + "landIce.libmassbf.tavg-u-hxy-fis.yr.ATA", + "landIce.libmassbf.tavg-u-hxy-fis.yr.GRL", + "landIce.libmassbf.tavg-u-hxy-gis.mon.ATA", + "landIce.libmassbf.tavg-u-hxy-gis.mon.GRL", + "landIce.libmassbf.tavg-u-hxy-gis.yr.ATA", + "landIce.libmassbf.tavg-u-hxy-gis.yr.GRL", + "landIce.licalvf.tavg-u-hxy-is.mon.ATA", + "landIce.licalvf.tavg-u-hxy-is.mon.GRL", + "landIce.licalvf.tavg-u-hxy-is.yr.ATA", + "landIce.licalvf.tavg-u-hxy-is.yr.GRL", + "landIce.lifmassbf.tavg-u-hxy-is.mon.ATA", + "landIce.lifmassbf.tavg-u-hxy-is.mon.GRL", + "landIce.lifmassbf.tavg-u-hxy-is.yr.ATA", + "landIce.lifmassbf.tavg-u-hxy-is.yr.GRL", + "landIce.lim.tavg-u-hm-is.yr.ATA", + "landIce.lim.tavg-u-hm-is.yr.GRL", + "landIce.limnsw.tavg-u-hm-is.yr.ATA", + "landIce.limnsw.tavg-u-hm-is.yr.GRL", + "landIce.litempbot.tavg-u-hxy-fis.mon.ATA", + "landIce.litempbot.tavg-u-hxy-fis.mon.GRL", + "landIce.litempbot.tavg-u-hxy-fis.yr.ATA", + "landIce.litempbot.tavg-u-hxy-fis.yr.GRL", + "landIce.litempbot.tavg-u-hxy-gis.mon.ATA", + "landIce.litempbot.tavg-u-hxy-gis.mon.GRL", + "landIce.litempbot.tavg-u-hxy-gis.yr.ATA", + "landIce.litempbot.tavg-u-hxy-gis.yr.GRL", + "landIce.litemptop.tavg-u-hxy-is.mon.ATA", + "landIce.litemptop.tavg-u-hxy-is.mon.GRL", + "landIce.litemptop.tavg-u-hxy-is.yr.ATA", + "landIce.litemptop.tavg-u-hxy-is.yr.GRL", + "landIce.lithk.tavg-u-hxy-is.yr.ATA", + "landIce.lithk.tavg-u-hxy-is.yr.GRL", + "landIce.lithk.ti-u-hxy-is.fx.ATA", + "landIce.lwsnl.tavg-u-hxy-lnd.day.GLB", + "landIce.lwsnl.tavg-u-hxy-lnd.mon.GLB", + "landIce.modelcellareai.tavg-u-hxy-u.yr.ATA", + "landIce.modelcellareai.tavg-u-hxy-u.yr.GRL", + "landIce.mrroLi.tavg-u-hxy-is.mon.ATA", + "landIce.mrroLi.tavg-u-hxy-is.mon.GRL", + "landIce.pflw.tavg-u-hxy-lnd.day.GLB", + "landIce.sbl.tavg-u-hxy-is.mon.ATA", + "landIce.sbl.tavg-u-hxy-is.mon.GRL", + "landIce.sbl.tavg-u-hxy-u.day.GLB", + "landIce.sftflf.tavg-u-hxy-u.yr.ATA", + "landIce.sftflf.tavg-u-hxy-u.yr.GRL", + "landIce.sftgrf.tavg-u-hxy-u.yr.ATA", + "landIce.sftgrf.tavg-u-hxy-u.yr.GRL", + "landIce.snc.tavg-u-hxy-is.mon.ATA", + "landIce.snc.tavg-u-hxy-is.mon.GRL", + "landIce.snc.tavg-u-hxy-is.yr.ATA", + "landIce.snc.tavg-u-hxy-is.yr.GRL", + "landIce.snc.tavg-u-hxy-lnd.day.GLB", + "landIce.snd.tavg-u-hxy-lnd.day.GLB", + "landIce.snicem.tavg-u-hxy-is.mon.ATA", + "landIce.snm.tavg-u-hxy-is.mon.ATA", + "landIce.snm.tavg-u-hxy-is.mon.GRL", + "landIce.snm.tavg-u-hxy-lnd.day.GLB", + "landIce.snrefr.tavg-u-hxy-is.mon.ATA", + "landIce.snrefr.tavg-u-hxy-is.mon.GRL", + "landIce.strbasemag.tavg-u-hxy-is.yr.ATA", + "landIce.strbasemag.tavg-u-hxy-is.yr.GRL", + "landIce.tendacabf.tavg-u-hm-is.yr.ATA", + "landIce.tendacabf.tavg-u-hm-is.yr.GRL", + "landIce.tendlibmassbf.tavg-u-hm-is.yr.ATA", + "landIce.tendlibmassbf.tavg-u-hm-is.yr.GRL", + "landIce.tendlicalvf.tavg-u-hm-is.yr.ATA", + "landIce.tendlicalvf.tavg-u-hm-is.yr.GRL", + "landIce.topg.tavg-u-hxy-gis.yr.ATA", + "landIce.topg.tavg-u-hxy-gis.yr.GRL", + "landIce.topg.ti-u-hxy-gis.fx.ATA", + "landIce.tpf.tavg-u-hxy-lnd.day.GLB", + "landIce.tsn.tavg-u-hxy-is.mon.ATA", + "landIce.tsn.tavg-u-hxy-is.mon.GRL", + "landIce.tsn.tavg-u-hxy-lnd.day.GLB", + "landIce.xvelbase.tavg-u-hxy-is.yr.ATA", + "landIce.xvelbase.tavg-u-hxy-is.yr.GRL", + "landIce.xvelmean.tavg-u-hxy-is.yr.ATA", + "landIce.xvelmean.tavg-u-hxy-is.yr.GRL", + "landIce.xvelsurf.tavg-u-hxy-is.yr.ATA", + "landIce.xvelsurf.tavg-u-hxy-is.yr.GRL", + "landIce.yvelbase.tavg-u-hxy-is.yr.ATA", + "landIce.yvelbase.tavg-u-hxy-is.yr.GRL", + "landIce.yvelmean.tavg-u-hxy-is.yr.ATA", + "landIce.yvelmean.tavg-u-hxy-is.yr.GRL", + "landIce.yvelsurf.tavg-u-hxy-is.yr.ATA", + "landIce.yvelsurf.tavg-u-hxy-is.yr.GRL", + "landIce.zvelbase.tavg-u-hxy-is.yr.ATA", + "landIce.zvelbase.tavg-u-hxy-is.yr.GRL", + "landIce.zvelsurf.tavg-u-hxy-is.yr.ATA", + "landIce.zvelsurf.tavg-u-hxy-is.yr.GRL", + "ocean.evspsbl.tavg-u-hxy-ifs.mon.GLB", + "ocean.hfacrossline.tavg-u-ht-sea.mon.GLB", + "ocean.hfevapds.tavg-u-hxy-ifs.mon.GLB", + "ocean.hfibthermds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfibthermds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfrainds.tavg-u-hxy-ifs.mon.GLB", + "ocean.hfrunoffds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfrunoffds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfsnthermds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfsnthermds.tavg-u-hxy-sea.mon.GLB", + "ocean.mfo.tavg-u-ht-sea.mon.GLB", + "ocean.sf6.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfacrossline.tavg-u-ht-sea.mon.GLB", + "ocean.sfdsi.tavg-u-hxy-sea.mon.GLB", + "ocean.sfriver.tavg-u-hxy-sea.mon.GLB", + "ocean.siflfwbot.tavg-u-hxy-sea.mon.GLB", + "ocean.so.tavg-ol-hxy-sea.day.GLB", + "ocean.t17d.tavg-u-hxy-sea.mon.GLB", + "ocean.t20d.tavg-u-hxy-sea.mon.GLB", + "ocean.tnkebto.tavg-u-hxy-sea.yr.GLB", + "ocean.vsf.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfcorr.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfevap.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfpr.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfriver.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfsit.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.arag.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.arag.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.calc.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.calc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chl.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.chlcalc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.detoc.tavg-ol-hxy-sea.day.GLB", + "ocnBgchem.dissoc.tavg-ol-hxy-sea.day.GLB", + "ocnBgchem.dmso.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.epn.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.epp.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.exparagob.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.expcalcob.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.expcob.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.expfeob.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.expnob.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.exppob.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.expsiob.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fgdms.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.frfe.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.frn.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppcalc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppdiat.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppdiaz.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppmisc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppnano.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppnitrate.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intpppico.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limfecalc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limfediat.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limfediaz.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limfemisc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limfepico.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limirrcalc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limirrdiat.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limirrdiaz.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limirrmisc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limirrpico.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limncalc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limndiat.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limndiaz.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limnmisc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limnpico.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.o2.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.o2sat.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.ph.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.pp.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.sialgc.tavg-u-hxy-si.mon.GLB", + "ocnBgchem.sichl.tavg-u-hxy-si.mon.GLB", + "ocnBgchem.sigpp.tavg-u-hxy-si.mon.GLB", + "ocnBgchem.sino3.tavg-u-hxy-si.mon.GLB", + "ocnBgchem.sisi.tavg-u-hxy-si.mon.GLB", + "seaIce.sfdsi.tavg-u-hxy-si.mon.GLB", + "seaIce.siage.tavg-u-hxy-si.mon.GLB", + "seaIce.siarea.tavg-u-hm-u.day.NH", + "seaIce.siarea.tavg-u-hm-u.day.SH", + "seaIce.sicompstren.tavg-u-hxy-si.mon.GLB", + "seaIce.sidivvel.tpt-u-hxy-si.mon.GLB", + "seaIce.sidmasstranx.tavg-u-hxy-u.mon.GLB", + "seaIce.sidmasstrany.tavg-u-hxy-u.mon.GLB", + "seaIce.sidragbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidragtop.tavg-u-hxy-si.mon.GLB", + "seaIce.siextent.tavg-u-hm-u.day.NH", + "seaIce.siextent.tavg-u-hm-u.day.SH", + "seaIce.sifb.tavg-u-hxy-si.day.GLB", + "seaIce.sifb.tavg-u-hxy-si.mon.GLB", + "seaIce.siflfwbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflfwdrain.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcecoriolx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcecorioly.tavg-u-hxy-si.mon.GLB", + "seaIce.siforceintstrx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforceintstry.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcetiltx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcetilty.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdconc.tavg-u-hxy-si.day.GLB", + "seaIce.siitdsnconc.tavg-u-hxy-si.day.GLB", + "seaIce.siitdsnthick.tavg-u-hxy-si.day.GLB", + "seaIce.siitdthick.tavg-u-hxy-si.day.GLB", + "seaIce.simpconc.tavg-u-hxy-si.day.GLB", + "seaIce.simpeffconc.tavg-u-hxy-si.day.GLB", + "seaIce.simpeffconc.tavg-u-hxy-si.mon.GLB", + "seaIce.simprefrozen.tavg-u-hxy-simp.day.GLB", + "seaIce.simprefrozen.tavg-u-hxy-simp.mon.GLB", + "seaIce.simpthick.tavg-u-hxy-si.day.GLB", + "seaIce.simpthick.tavg-u-hxy-simp.mon.GLB", + "seaIce.sirdgconc.tavg-u-hxy-si.day.GLB", + "seaIce.sisali.tavg-u-hxy-si.day.GLB", + "seaIce.sisali.tavg-u-hxy-si.mon.GLB", + "seaIce.sisaltmass.tavg-u-hxy-si.day.GLB", + "seaIce.sishearvel.tpt-u-hxy-si.mon.GLB", + "seaIce.sisnmass.tavg-u-hm-u.day.NH", + "seaIce.sisnmass.tavg-u-hm-u.day.SH", + "seaIce.sitempbot.tavg-u-hxy-si.day.GLB", + "seaIce.sitempbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sitempsnic.tavg-u-hxy-si.day.GLB", + "seaIce.sithick.tavg-u-hxy-sir.day.GLB", + "seaIce.sithick.tavg-u-hxy-sir.mon.GLB", + "seaIce.sivol.tavg-u-hm-u.day.NH", + "seaIce.sivol.tavg-u-hm-u.day.SH" + ], + "Low": [ + "aerosol.sfpm1.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.sfpm10.tavg-h2m-hxy-u.1hr.GLB", + "atmos.hurs.tmin-h2m-hxy-crp.day.GLB", + "atmos.pr.tavg-u-hxy-crp.day.GLB", + "atmos.tas.tmax-h2m-hxy-crp.day.GLB", + "atmos.tas.tmin-h2m-hxy-crp.day.GLB", + "atmosChem.drynh3.tavg-u-hxy-u.day.GLB", + "atmosChem.drynh4.tavg-u-hxy-u.day.GLB", + "atmosChem.drynoy.tavg-u-hxy-u.day.GLB", + "atmosChem.flashrate.tavg-u-hxy-u.mon.GLB", + "atmosChem.wetnh3.tavg-u-hxy-u.day.GLB", + "atmosChem.wetnh4.tavg-u-hxy-u.day.GLB", + "atmosChem.wetnoy.tavg-u-hxy-u.day.GLB", + "land.c13Land.tavg-u-hxy-lnd.mon.GLB", + "land.c13Litter.tavg-u-hxy-lnd.mon.GLB", + "land.c13Soil.tavg-u-hxy-lnd.mon.GLB", + "land.c13Veg.tavg-u-hxy-lnd.mon.GLB", + "land.c14Land.tavg-u-hxy-lnd.mon.GLB", + "land.c14Litter.tavg-u-hxy-lnd.mon.GLB", + "land.c14Soil.tavg-u-hxy-lnd.mon.GLB", + "land.c14Veg.tavg-u-hxy-lnd.mon.GLB", + "land.c3PftFrac.tavg-u-hxy-u.mon.GLB", + "land.c4PftFrac.tavg-u-hxy-u.mon.GLB", + "land.gppc13.tavg-u-hxy-lnd.mon.GLB", + "land.gppc14.tavg-u-hxy-lnd.mon.GLB", + "land.lai.tavg-u-hxy-lnd.day.GLB", + "land.netAtmosLandC13Flux.tavg-u-hxy-lnd.mon.GLB", + "land.netAtmosLandC14Flux.tavg-u-hxy-lnd.mon.GLB", + "land.rac13.tavg-u-hxy-lnd.mon.GLB", + "land.rac14.tavg-u-hxy-lnd.mon.GLB", + "land.rhc13.tavg-u-hxy-lnd.mon.GLB", + "land.rhc14.tavg-u-hxy-lnd.mon.GLB", + "ocean.difmxybo.tavg-ol-hxy-sea.yr.GLB", + "ocean.difmxylo.tavg-ol-hxy-sea.yr.GLB", + "ocean.diftrblo.tavg-ol-hxy-sea.yr.GLB", + "ocean.diftrelo.tavg-ol-hxy-sea.yr.GLB", + "ocean.difvho.tavg-ol-hxy-sea.yr.GLB", + "ocean.difvso.tavg-ol-hxy-sea.yr.GLB", + "ocean.dispkexyfo.tavg-u-hxy-sea.yr.GLB", + "ocean.dxto.ti-u-hxy-u.fx.GLB", + "ocean.dxuo.ti-u-hxy-u.fx.GLB", + "ocean.dxvo.ti-u-hxy-u.fx.GLB", + "ocean.dyto.ti-u-hxy-u.fx.GLB", + "ocean.dyuo.ti-u-hxy-u.fx.GLB", + "ocean.dyvo.ti-u-hxy-u.fx.GLB", + "ocean.mlotstsq.tavg-u-hxy-sea.mon.GLB", + "ocean.msftmmpa.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftmmpa.tavg-rho-hyb-sea.mon.GLB", + "ocean.msftmsmpa.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftypa.tavg-ol-ht-sea.mon.GLB", + "ocean.msftypa.tavg-rho-ht-sea.mon.GLB", + "ocean.ocontempdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontempmint.tavg-u-hxy-sea.yr.GLB", + "ocean.ocontemppadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemppmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemppsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemprmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemptend.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottempdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottempmint.tavg-u-hxy-sea.yr.GLB", + "ocean.opottemppadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemppmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemppsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemprmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemptend.tavg-ol-hxy-sea.dec.GLB", + "ocean.osaltdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpsmadvect.tavg-ol-hxy-sea.mon.GLB", + "ocean.osaltpsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltrmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osalttend.tavg-ol-hxy-sea.yr.GLB", + "ocean.rsdo.tavg-ol-hxy-sea.day.GLB", + "ocean.rsdoabsorb.tavg-ol-hxy-sea.yr.GLB", + "ocean.somint.tavg-u-hxy-sea.yr.GLB", + "ocean.sossq.tavg-u-hxy-sea.mon.GLB", + "ocean.thkcelluo.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcellvo.tavg-ol-hxy-sea.mon.GLB", + "ocean.tnpeo.tavg-u-hxy-sea.yr.GLB", + "ocean.tossq.tavg-u-hxy-sea.mon.GLB", + "ocean.wo.tavg-ol-hxy-sea.day.GLB", + "ocnBgchem.dissi13c.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.dissi13c.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissi14c.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissi14cabio.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.dissi14cabio.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.expcob.tavg-u-hxy-sea.day.GLB", + "ocnBgchem.fg13co2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fg14co2abio.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intpoc.tavg-u-hxy-sea.day.GLB", + "ocnBgchem.o2.tavg-d0m-hxy-sea.day.GLB", + "ocnBgchem.o2min.tavg-u-hxy-sea.day.GLB", + "ocnBgchem.phyc.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.phycalc.tavg-ol-hxy-sea.day.GLB", + "ocnBgchem.phydiat.tavg-d0m-hxy-sea.day.GLB", + "ocnBgchem.phydiaz.tavg-d0m-hxy-sea.day.GLB", + "ocnBgchem.phymisc.tavg-d0m-hxy-sea.day.GLB", + "ocnBgchem.phynano.tavg-u-hxy-sea.day.GLB", + "ocnBgchem.phypico.tavg-ol-hxy-sea.day.GLB", + "ocnBgchem.zmeso.tavg-ol-hxy-sea.day.GLB", + "ocnBgchem.zmicro.tavg-ol-hxy-sea.day.GLB", + "ocnBgchem.zooc.tavg-ol-hxy-sea.day.GLB" + ] + }, + "scenariomip13": { + "Core": [ + "atmos.areacella.ti-u-hxy-u.fx.GLB", + "atmos.cl.tavg-al-hxy-u.mon.GLB", + "atmos.cli.tavg-al-hxy-u.mon.GLB", + "atmos.clivi.tavg-u-hxy-u.mon.GLB", + "atmos.clt.tavg-u-hxy-u.day.GLB", + "atmos.clt.tavg-u-hxy-u.mon.GLB", + "atmos.clw.tavg-al-hxy-u.mon.GLB", + "atmos.clwvi.tavg-u-hxy-u.mon.GLB", + "atmos.evspsbl.tavg-u-hxy-u.mon.GLB", + "atmos.hfls.tavg-u-hxy-u.mon.GLB", + "atmos.hfss.tavg-u-hxy-u.mon.GLB", + "atmos.hur.tavg-p19-hxy-air.mon.GLB", + "atmos.hur.tavg-p19-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.6hr.GLB", + "atmos.hurs.tavg-h2m-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.mon.GLB", + "atmos.hus.tavg-p19-hxy-u.day.GLB", + "atmos.hus.tavg-p19-hxy-u.mon.GLB", + "atmos.huss.tavg-h2m-hxy-u.day.GLB", + "atmos.huss.tavg-h2m-hxy-u.mon.GLB", + "atmos.huss.tpt-h2m-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.1hr.GLB", + "atmos.pr.tavg-u-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.day.GLB", + "atmos.pr.tavg-u-hxy-u.mon.GLB", + "atmos.prc.tavg-u-hxy-u.mon.GLB", + "atmos.prsn.tavg-u-hxy-u.mon.GLB", + "atmos.prw.tavg-u-hxy-u.mon.GLB", + "atmos.ps.tavg-u-hxy-u.day.GLB", + "atmos.ps.tavg-u-hxy-u.mon.GLB", + "atmos.psl.tavg-u-hxy-u.day.GLB", + "atmos.psl.tavg-u-hxy-u.mon.GLB", + "atmos.rlds.tavg-u-hxy-u.mon.GLB", + "atmos.rldscs.tavg-u-hxy-u.mon.GLB", + "atmos.rlus.tavg-u-hxy-u.mon.GLB", + "atmos.rluscs.tavg-u-hxy-u.mon.GLB", + "atmos.rlut.tavg-u-hxy-u.mon.GLB", + "atmos.rlutcs.tavg-u-hxy-u.mon.GLB", + "atmos.rsds.tavg-u-hxy-u.day.GLB", + "atmos.rsds.tavg-u-hxy-u.mon.GLB", + "atmos.rsdscs.tavg-u-hxy-u.mon.GLB", + "atmos.rsdt.tavg-u-hxy-u.mon.GLB", + "atmos.rsus.tavg-u-hxy-u.mon.GLB", + "atmos.rsuscs.tavg-u-hxy-u.mon.GLB", + "atmos.rsut.tavg-u-hxy-u.mon.GLB", + "atmos.rsutcs.tavg-u-hxy-u.mon.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.day.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.mon.GLB", + "atmos.sftlf.ti-u-hxy-u.fx.GLB", + "atmos.ta.tavg-p19-hxy-air.day.GLB", + "atmos.ta.tavg-p19-hxy-air.mon.GLB", + "atmos.ta.tpt-p3-hxy-air.6hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.day.GLB", + "atmos.tas.tavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tmax-h2m-hxy-u.day.GLB", + "atmos.tas.tmaxavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tmin-h2m-hxy-u.day.GLB", + "atmos.tas.tminavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tpt-h2m-hxy-u.3hr.GLB", + "atmos.tauu.tavg-u-hxy-u.mon.GLB", + "atmos.tauv.tavg-u-hxy-u.mon.GLB", + "atmos.ts.tavg-u-hxy-u.mon.GLB", + "atmos.ua.tavg-p19-hxy-air.day.GLB", + "atmos.ua.tavg-p19-hxy-air.mon.GLB", + "atmos.ua.tpt-p3-hxy-air.6hr.GLB", + "atmos.uas.tavg-h10m-hxy-u.day.GLB", + "atmos.uas.tavg-h10m-hxy-u.mon.GLB", + "atmos.uas.tpt-h10m-hxy-u.3hr.GLB", + "atmos.va.tavg-p19-hxy-air.day.GLB", + "atmos.va.tavg-p19-hxy-air.mon.GLB", + "atmos.va.tpt-p3-hxy-air.6hr.GLB", + "atmos.vas.tavg-h10m-hxy-u.day.GLB", + "atmos.vas.tavg-h10m-hxy-u.mon.GLB", + "atmos.vas.tpt-h10m-hxy-u.3hr.GLB", + "atmos.wap.tavg-p19-hxy-air.mon.GLB", + "atmos.wap.tavg-p19-hxy-u.day.GLB", + "atmos.zg.tavg-p19-hxy-air.day.GLB", + "atmos.zg.tavg-p19-hxy-air.mon.GLB", + "land.evspsblsoi.tavg-u-hxy-lnd.mon.GLB", + "land.evspsblveg.tavg-u-hxy-lnd.mon.GLB", + "land.lai.tavg-u-hxy-lnd.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.mon.GLB", + "land.mrros.tavg-u-hxy-lnd.mon.GLB", + "land.mrso.tavg-u-hxy-lnd.mon.GLB", + "land.mrsofc.ti-u-hxy-lnd.fx.GLB", + "land.mrsol.tavg-d10cm-hxy-lnd.mon.GLB", + "land.orog.ti-u-hxy-u.fx.GLB", + "land.rootd.ti-u-hxy-lnd.fx.GLB", + "land.sftgif.ti-u-hxy-u.fx.GLB", + "land.slthick.ti-sl-hxy-lnd.fx.GLB", + "landIce.mrfso.tavg-u-hxy-lnd.mon.GLB", + "landIce.snc.tavg-u-hxy-lnd.mon.GLB", + "landIce.snw.tavg-u-hxy-lnd.mon.GLB", + "ocean.areacello.ti-u-hxy-u.fx.GLB", + "ocean.basin.ti-u-hxy-u.fx.GLB", + "ocean.bigthetao.tavg-ol-hxy-sea.mon.GLB", + "ocean.deptho.ti-u-hxy-sea.fx.GLB", + "ocean.hfds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfgeou.ti-u-hxy-sea.fx.GLB", + "ocean.masscello.tavg-ol-hxy-sea.mon.GLB", + "ocean.masscello.ti-ol-hxy-sea.fx.GLB", + "ocean.mlotst.tavg-u-hxy-sea.mon.GLB", + "ocean.sftof.ti-u-hxy-u.fx.GLB", + "ocean.so.tavg-ol-hxy-sea.mon.GLB", + "ocean.sos.tavg-u-hxy-sea.day.GLB", + "ocean.sos.tavg-u-hxy-sea.mon.GLB", + "ocean.tauuo.tavg-u-hxy-sea.mon.GLB", + "ocean.tauvo.tavg-u-hxy-sea.mon.GLB", + "ocean.thetao.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcello.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcello.ti-ol-hxy-sea.fx.GLB", + "ocean.tos.tavg-u-hxy-sea.day.GLB", + "ocean.tos.tavg-u-hxy-sea.mon.GLB", + "ocean.umo.tavg-ol-hxy-sea.mon.GLB", + "ocean.uo.tavg-ol-hxy-sea.mon.GLB", + "ocean.vmo.tavg-ol-hxy-sea.mon.GLB", + "ocean.vo.tavg-ol-hxy-sea.mon.GLB", + "ocean.wmo.tavg-ol-hxy-sea.mon.GLB", + "ocean.wo.tavg-ol-hxy-sea.mon.GLB", + "ocean.zos.tavg-u-hxy-sea.day.GLB", + "ocean.zos.tavg-u-hxy-sea.mon.GLB", + "ocean.zostoga.tavg-u-hm-sea.mon.GLB", + "seaIce.siconc.tavg-u-hxy-u.day.GLB", + "seaIce.siconc.tavg-u-hxy-u.mon.GLB", + "seaIce.simass.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-si.mon.GLB", + "seaIce.sitimefrac.tavg-u-hxy-sea.mon.GLB", + "seaIce.siu.tavg-u-hxy-si.mon.GLB", + "seaIce.siv.tavg-u-hxy-si.mon.GLB", + "seaIce.snd.tavg-u-hxy-sn.mon.GLB", + "seaIce.ts.tavg-u-hxy-si.mon.GLB" + ], + "High": [ + "aerosol.abs550aer.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550bc.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550dust.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550no3.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550oa.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550so4.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550ss.tavg-u-hxy-u.mon.GLB", + "aerosol.airmass.tavg-al-hxy-u.mon.GLB", + "aerosol.aoanh.tavg-al-hxy-u.mon.NH", + "aerosol.bry.tavg-p39-hy-air.mon.GLB", + "aerosol.bs550aer.tpt-al-hxy-u.6hr.GLB", + "aerosol.c2h6.tavg-al-hxy-u.mon.GLB", + "aerosol.c3h6.tavg-al-hxy-u.mon.GLB", + "aerosol.c3h8.tavg-al-hxy-u.mon.GLB", + "aerosol.ccldncl.tavg-u-hxy-ccl.mon.GLB", + "aerosol.ccn.tavg-u-hxy-ccl.mon.30S-90S", + "aerosol.ccn.tavg-u-hxy-ccl.mon.GLB", + "aerosol.ccn1.tavg-al-hxy-u.mon.30S-90S", + "aerosol.ccn1.tavg-al-hxy-u.mon.GLB", + "aerosol.ccnp02.tavg-al-hxy-u.mon.30S-90S", + "aerosol.ccnp02.tavg-al-hxy-u.mon.GLB", + "aerosol.cdnc.tavg-al-hxy-u.mon.30S-90S", + "aerosol.cdnc.tavg-al-hxy-u.mon.GLB", + "aerosol.cfc114.tavg-al-hxy-u.mon.GLB", + "aerosol.ch3coch3.tavg-al-hxy-u.mon.GLB", + "aerosol.cheaqpso4.tavg-al-hxy-u.mon.GLB", + "aerosol.chegpso4.tavg-al-hxy-u.mon.GLB", + "aerosol.chepasoa.tavg-u-hxy-u.mon.GLB", + "aerosol.chepsoa.tavg-u-hxy-u.mon.GLB", + "aerosol.cly.tavg-p39-hy-air.mon.GLB", + "aerosol.co.tavg-al-hxy-u.mon.GLB", + "aerosol.co.tavg-h2m-hxy-u.day.GLB", + "aerosol.cod.tavg-u-hxy-u.day.GLB", + "aerosol.cod.tavg-u-hxy-u.mon.30S-90S", + "aerosol.cod.tavg-u-hxy-u.mon.GLB", + "aerosol.conccn.tavg-al-hxy-u.mon.GLB", + "aerosol.conccn.tpt-u-hs-u.3hr.GLB", + "aerosol.depdust.tavg-u-hxy-u.mon.GLB", + "aerosol.drybc.tavg-u-hxy-u.mon.GLB", + "aerosol.drydust.tavg-u-hxy-u.mon.GLB", + "aerosol.dryno3.tavg-u-hxy-u.mon.GLB", + "aerosol.dryo3.tavg-u-hxy-u.mon.GLB", + "aerosol.dryoa.tavg-u-hxy-u.mon.GLB", + "aerosol.dryso2.tavg-u-hxy-u.mon.GLB", + "aerosol.dryso4.tavg-u-hxy-u.mon.GLB", + "aerosol.dryss.tavg-u-hxy-u.mon.GLB", + "aerosol.ec550aer.tavg-al-hxy-u.mon.GLB", + "aerosol.ec550aer.tpt-u-hxy-u.6hr.GLB", + "aerosol.emiaco.tavg-u-hxy-u.mon.GLB", + "aerosol.emianox.tavg-u-hxy-u.mon.GLB", + "aerosol.emiaoa.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbbc.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbch4.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbco.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbdms.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbnh3.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbnox.tavg-u-hxy-u.mon.GLB", + "aerosol.emibboa.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbso2.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbvoc.tavg-u-hxy-u.mon.GLB", + "aerosol.emibc.tavg-u-hxy-u.mon.GLB", + "aerosol.emibvoc.tavg-u-hxy-u.mon.GLB", + "aerosol.emico.tavg-u-hxy-u.mon.GLB", + "aerosol.emidms.tavg-u-hxy-u.mon.30S-90S", + "aerosol.emidms.tavg-u-hxy-u.mon.GLB", + "aerosol.emidust.tavg-u-hxy-u.mon.GLB", + "aerosol.emiisop.tavg-u-hxy-u.mon.GLB", + "aerosol.emilnox.tavg-al-hxy-u.mon.GLB", + "aerosol.eminh3.tavg-u-hxy-u.mon.GLB", + "aerosol.eminox.tavg-u-hxy-u.mon.GLB", + "aerosol.emioa.tavg-u-hxy-u.mon.GLB", + "aerosol.emiso2.tavg-u-hxy-u.mon.GLB", + "aerosol.emiso4.tavg-u-hxy-u.mon.GLB", + "aerosol.emiss.tavg-u-hxy-u.mon.30S-90S", + "aerosol.emiss.tavg-u-hxy-u.mon.GLB", + "aerosol.emivoc.tavg-u-hxy-u.mon.GLB", + "aerosol.h2o.tavg-al-hxy-u.mon.GLB", + "aerosol.h2o.tavg-p39-hy-air.mon.GLB", + "aerosol.hcfc22.tavg-al-hxy-u.mon.GLB", + "aerosol.hcho.tavg-al-hxy-u.mon.GLB", + "aerosol.hcl.tavg-al-hxy-u.mon.GLB", + "aerosol.hcl.tavg-p39-hy-air.mon.GLB", + "aerosol.hfc125.tavg-al-hxy-u.mon.GLB", + "aerosol.hfc134a.tavg-al-hxy-u.mon.GLB", + "aerosol.hno3.tavg-al-hxy-u.mon.GLB", + "aerosol.hno3.tavg-p39-hy-air.mon.GLB", + "aerosol.ho2.tavg-p39-hy-air.mon.GLB", + "aerosol.isop.tavg-al-hxy-u.mon.GLB", + "aerosol.jno2.tavg-al-hxy-u.mon.GLB", + "aerosol.lossch4.tavg-al-hxy-u.mon.GLB", + "aerosol.lossco.tavg-al-hxy-u.mon.GLB", + "aerosol.lossn2o.tavg-al-hxy-u.mon.GLB", + "aerosol.lwp.tavg-u-hxy-u.mon.GLB", + "aerosol.mmraerh2o.tavg-al-hxy-u.mon.GLB", + "aerosol.mmraerh2o.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmraerh2o.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrbc.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrbc.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrbc.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrbc.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrdust.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrdust.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrdust.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrdust.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrnh4.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrnh4.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrnh4.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrnh4.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrno3.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrno3.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrno3.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrno3.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmroa.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmroa.tavg-al-hxy-u.mon.GLB", + "aerosol.mmroa.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmroa.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrpm1.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrpm1.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrpm2p5.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrpm2p5.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrso4.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrso4.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrso4.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrso4.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrsoa.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrsoa.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrsoa.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrss.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrss.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrss.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrss.tpt-h2m-hs-u.3hr.GLB", + "aerosol.nh50.tavg-al-hxy-u.mon.GLB", + "aerosol.no.tavg-al-hxy-u.mon.GLB", + "aerosol.no2.tavg-al-hxy-u.mon.GLB", + "aerosol.no2.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.noy.tavg-p39-hy-air.mon.GLB", + "aerosol.o3.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.o3.tmax-h2m-hxy-u.day.GLB", + "aerosol.o3loss.tavg-al-hxy-u.mon.GLB", + "aerosol.o3prod.tavg-al-hxy-u.mon.GLB", + "aerosol.od443aer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550aer.tavg-u-hxy-u.day.GLB", + "aerosol.od550aer.tavg-u-hxy-u.mon.30S-90S", + "aerosol.od550aer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550aerh2o.tavg-u-hxy-u.mon.GLB", + "aerosol.od550bb.tavg-u-hxy-u.mon.GLB", + "aerosol.od550bc.tavg-u-hxy-u.mon.GLB", + "aerosol.od550csaer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550dust.tavg-u-hxy-u.mon.GLB", + "aerosol.od550lt1aer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550no3.tavg-u-hxy-u.mon.GLB", + "aerosol.od550oa.tavg-u-hxy-u.mon.GLB", + "aerosol.od550so4.tavg-u-hxy-u.mon.GLB", + "aerosol.od550soa.tavg-u-hxy-u.mon.GLB", + "aerosol.od550ss.tavg-u-hxy-u.mon.GLB", + "aerosol.od865aer.tavg-u-hxy-u.mon.GLB", + "aerosol.oh.tavg-al-hxy-u.mon.GLB", + "aerosol.oh.tavg-p39-hy-air.mon.GLB", + "aerosol.pan.tavg-al-hxy-u.mon.GLB", + "aerosol.photo1d.tavg-al-hxy-u.mon.GLB", + "aerosol.pod0.tsum-u-hxy-u.mon.GLB", + "aerosol.reffccwctop.tavg-u-hxy-cl.mon.GLB", + "aerosol.reffclwtop.tavg-u-hxy-cl.mon.30S-90S", + "aerosol.reffclwtop.tavg-u-hxy-cl.mon.GLB", + "aerosol.rluscsaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rlutaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rlutcsaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rsutaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rsutcsaf.tavg-u-hxy-u.mon.GLB", + "aerosol.sfpm1.tavg-h2m-hxy-u.day.GLB", + "aerosol.sfpm10.tavg-al-hxy-u.mon.30S-90S", + "aerosol.sfpm10.tavg-al-hxy-u.mon.GLB", + "aerosol.sfpm10.tavg-h2m-hxy-u.day.GLB", + "aerosol.sfpm25.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.sfpm25.tavg-h2m-hxy-u.day.GLB", + "aerosol.so2.tavg-al-hxy-u.mon.30S-90S", + "aerosol.so2.tavg-al-hxy-u.mon.GLB", + "aerosol.so2.tavg-h2m-hxy-u.day.GLB", + "aerosol.so2.tpt-h2m-hs-u.3hr.GLB", + "aerosol.tatp.tavg-u-hxy-u.mon.GLB", + "aerosol.toz.tavg-u-hxy-u.day.GLB", + "aerosol.toz.tavg-u-hxy-u.mon.GLB", + "aerosol.tropoz.tavg-u-hxy-u.mon.GLB", + "aerosol.ttop.tavg-u-hxy-cl.mon.GLB", + "aerosol.ua.tavg-10hPa-hxy-air.day.GLB", + "aerosol.vt100.tavg-100hPa-hy-air.mon.GLB", + "aerosol.wa.tavg-al-hxy-u.mon.GLB", + "aerosol.wetbc.tavg-u-hxy-u.mon.GLB", + "aerosol.wetdust.tavg-u-hxy-u.mon.GLB", + "aerosol.wetoa.tavg-u-hxy-u.mon.GLB", + "aerosol.wetso2.tavg-u-hxy-u.mon.GLB", + "aerosol.wetso4.tavg-u-hxy-u.mon.GLB", + "aerosol.wetss.tavg-u-hxy-u.mon.GLB", + "aerosol.zg.tavg-10hPa-hxy-air.day.GLB", + "atmos.albisccp.tavg-u-hxy-cl.mon.30S-90S", + "atmos.bldep.tavg-u-hxy-u.mon.GLB", + "atmos.bldep.tmax-u-hxy-u.day.GLB", + "atmos.bldep.tmin-u-hxy-u.day.GLB", + "atmos.bldep.tpt-u-hxy-u.3hr.GLB", + "atmos.cl.tavg-al-hxy-u.day.GLB", + "atmos.cl.tavg-al-hxy-u.mon.30S-90S", + "atmos.clc.tavg-al-hxy-u.mon.30S-90S", + "atmos.clc.tavg-al-hxy-u.mon.GLB", + "atmos.clcalipso.tavg-220hPa-hxy-air.mon.30S-90S", + "atmos.clcalipso.tavg-220hPa-hxy-air.mon.GLB", + "atmos.clcalipso.tavg-560hPa-hxy-air.mon.30S-90S", + "atmos.clcalipso.tavg-560hPa-hxy-air.mon.GLB", + "atmos.clcalipso.tavg-840hPa-hxy-air.mon.30S-90S", + "atmos.clcalipso.tavg-840hPa-hxy-air.mon.GLB", + "atmos.clcalipso.tavg-h40-hxy-air.mon.30S-90S", + "atmos.clcalipso.tavg-h40-hxy-air.mon.GLB", + "atmos.cldnci.tavg-u-hxy-cl.mon.GLB", + "atmos.cldncl.tavg-u-hxy-cl.mon.GLB", + "atmos.cldnvi.tavg-u-hxy-u.day.GLB", + "atmos.cldnvi.tavg-u-hxy-u.mon.GLB", + "atmos.cli.tavg-al-hxy-u.day.GLB", + "atmos.cli.tavg-al-hxy-u.mon.30S-90S", + "atmos.clic.tavg-al-hxy-u.mon.30S-90S", + "atmos.clis.tavg-al-hxy-u.mon.30S-90S", + "atmos.clisccp.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clisccp.tavg-p7c-hxy-air.mon.GLB", + "atmos.clivi.tavg-u-hxy-u.3hr.GLB", + "atmos.clivi.tavg-u-hxy-u.day.GLB", + "atmos.clivi.tavg-u-hxy-u.mon.30S-90S", + "atmos.clivimodis.tavg-u-hxy-u.mon.30S-90S", + "atmos.clivimodis.tavg-u-hxy-u.mon.GLB", + "atmos.clmodis.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clmodis.tavg-p7c-hxy-air.mon.GLB", + "atmos.clmodisice.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clmodisice.tavg-p7c-hxy-air.mon.GLB", + "atmos.clmodisiceReff.tavg-u-hxy-u.mon.GLB", + "atmos.clmodisliquid.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clmodisliquid.tavg-p7c-hxy-air.mon.GLB", + "atmos.clmodisliquidReff.tavg-u-hxy-u.mon.GLB", + "atmos.cls.tavg-al-hxy-u.mon.30S-90S", + "atmos.clt.tavg-u-hxy-lnd.day.GLB", + "atmos.clt.tavg-u-hxy-u.1hr.30S-90S", + "atmos.clt.tavg-u-hxy-u.3hr.GLB", + "atmos.clt.tavg-u-hxy-u.mon.30S-90S", + "atmos.cltc.tavg-u-hxy-u.mon.GLB", + "atmos.cltcalipso.tavg-u-hxy-u.day.GLB", + "atmos.cltcalipso.tavg-u-hxy-u.mon.30S-90S", + "atmos.cltcalipso.tavg-u-hxy-u.mon.GLB", + "atmos.cltcalipso.tpt-u-hxy-u.3hr.GLB", + "atmos.cltisccp.tavg-u-hxy-u.day.GLB", + "atmos.cltisccp.tavg-u-hxy-u.mon.30S-90S", + "atmos.cltisccp.tavg-u-hxy-u.mon.GLB", + "atmos.cltmodis.tavg-u-hxy-u.mon.30S-90S", + "atmos.cltmodis.tavg-u-hxy-u.mon.GLB", + "atmos.clw.tavg-al-hxy-u.day.GLB", + "atmos.clw.tavg-al-hxy-u.mon.30S-90S", + "atmos.clwc.tavg-al-hxy-u.mon.30S-90S", + "atmos.clws.tavg-al-hxy-u.mon.30S-90S", + "atmos.clwvi.tavg-u-hxy-u.3hr.GLB", + "atmos.clwvi.tavg-u-hxy-u.day.GLB", + "atmos.clwvi.tavg-u-hxy-u.mon.30S-90S", + "atmos.clwvimodis.tavg-u-hxy-u.mon.30S-90S", + "atmos.clwvimodis.tavg-u-hxy-u.mon.GLB", + "atmos.co2.tavg-al-hxy-u.mon.GLB", + "atmos.co2.tavg-h2m-hxy-u.mon.GLB", + "atmos.co2.tavg-p19-hxy-air.mon.GLB", + "atmos.co2.tclm-p19-hxy-air.mon.GLB", + "atmos.co2.tclm-u-hm-u.mon.GLB", + "atmos.co23D.tavg-al-hxy-u.mon.GLB", + "atmos.co2mass.tavg-u-hm-u.mon.GLB", + "atmos.dmc.tavg-alh-hxy-u.mon.30S-90S", + "atmos.edt.tavg-al-hxy-u.mon.30S-90S", + "atmos.epfy.tavg-p39-hy-air.day.GLB", + "atmos.epfy.tavg-p39-hy-air.mon.GLB", + "atmos.epfz.tavg-p39-hy-air.day.GLB", + "atmos.epfz.tavg-p39-hy-air.mon.GLB", + "atmos.evspsbl.tavg-u-hxy-lnd.day.GLB", + "atmos.evu.tavg-al-hxy-u.mon.30S-90S", + "atmos.fco2antt.tavg-u-hxy-u.mon.GLB", + "atmos.fco2fos.tavg-u-hxy-u.mon.GLB", + "atmos.fco2nat.tavg-u-hxy-u.mon.GLB", + "atmos.hfls.tavg-u-hxy-is.mon.GRL", + "atmos.hfls.tavg-u-hxy-u.3hr.GLB", + "atmos.hfls.tavg-u-hxy-u.day.GLB", + "atmos.hfls.tavg-u-hxy-u.mon.30S-90S", + "atmos.hfss.tavg-u-hxy-u.3hr.GLB", + "atmos.hfss.tavg-u-hxy-u.day.GLB", + "atmos.hfss.tavg-u-hxy-u.mon.30S-90S", + "atmos.hur.tavg-al-hxy-u.mon.30S-90S", + "atmos.hur.tavg-al-hxy-u.mon.GLB", + "atmos.hur.tavg-p19-hxy-air.mon.30S-90S", + "atmos.hurs.tavg-h2m-hxy-u.1hr.30S-90S", + "atmos.hurs.tavg-h2m-hxy-u.mon.30S-90S", + "atmos.hurs.tmax-h2m-hxy-u.day.GLB", + "atmos.hurs.tmin-h2m-hxy-u.day.GLB", + "atmos.hurs.tpt-h2m-hxy-u.3hr.GLB", + "atmos.hus.tavg-al-hxy-u.mon.30S-90S", + "atmos.hus.tavg-al-hxy-u.mon.GLB", + "atmos.hus.tavg-p19-hxy-u.mon.30S-90S", + "atmos.hus.tpt-al-hxy-u.6hr.GLB", + "atmos.hus.tpt-p7h-hxy-air.6hr.GLB", + "atmos.huss.tavg-h2m-hxy-u.6hr.GLB", + "atmos.huss.tavg-h2m-hxy-u.mon.30S-90S", + "atmos.huss.tpt-h2m-hxy-u.1hr.GLB", + "atmos.intuadse.tavg-u-hxy-u.day.GLB", + "atmos.intuadse.tavg-u-hxy-u.mon.GLB", + "atmos.intuaw.tavg-u-hxy-u.day.GLB", + "atmos.intuaw.tavg-u-hxy-u.mon.GLB", + "atmos.intuaw.tpt-u-hxy-u.6hr.GLB", + "atmos.intvadse.tavg-u-hxy-u.day.GLB", + "atmos.intvadse.tavg-u-hxy-u.mon.GLB", + "atmos.intvaw.tavg-u-hxy-u.day.GLB", + "atmos.intvaw.tavg-u-hxy-u.mon.GLB", + "atmos.intvaw.tpt-u-hxy-u.6hr.GLB", + "atmos.loadbc.tavg-u-hxy-u.day.GLB", + "atmos.loadoa.tavg-u-hxy-u.day.GLB", + "atmos.loadpoa.tavg-u-hxy-u.day.GLB", + "atmos.mc.tavg-alh-hxy-u.mon.GLB", + "atmos.mcd.tavg-alh-hxy-u.mon.30S-90S", + "atmos.mcu.tavg-alh-hxy-u.mon.30S-90S", + "atmos.mcu.tavg-alh-hxy-u.mon.GLB", + "atmos.pctisccp.tavg-u-hxy-cl.day.GLB", + "atmos.pctisccp.tavg-u-hxy-cl.mon.30S-90S", + "atmos.pctisccp.tavg-u-hxy-cl.mon.GLB", + "atmos.pfull.tavg-al-hxy-u.day.GLB", + "atmos.pfull.tavg-al-hxy-u.mon.GLB", + "atmos.pfull.tclm-al-hxy-u.mon.30S-90S", + "atmos.phalf.tavg-alh-hxy-u.mon.GLB", + "atmos.pr.tavg-u-hxy-u.1hr.30S-90S", + "atmos.pr.tavg-u-hxy-u.mon.30S-90S", + "atmos.pr.tmax-u-hxy-u.day.GLB", + "atmos.pr.tpt-u-hxy-u.6hr.GLB", + "atmos.pr17O.tavg-u-hxy-u.mon.GLB", + "atmos.pr18O.tavg-u-hxy-u.mon.GLB", + "atmos.pr2h.tavg-u-hxy-u.mon.GLB", + "atmos.prc.tavg-u-hxy-u.day.GLB", + "atmos.prc.tavg-u-hxy-u.mon.30S-90S", + "atmos.prra.tavg-u-hxy-is.mon.GRL", + "atmos.prra.tavg-u-hxy-lnd.day.GLB", + "atmos.prra.tavg-u-hxy-u.6hr.GLB", + "atmos.prra.tavg-u-hxy-u.mon.30S-90S", + "atmos.prra.tavg-u-hxy-u.mon.GLB", + "atmos.prsn.tavg-u-hxy-is.mon.GRL", + "atmos.prsn.tavg-u-hxy-u.3hr.GLB", + "atmos.prsn.tavg-u-hxy-u.6hr.GLB", + "atmos.prsn.tavg-u-hxy-u.day.GLB", + "atmos.prsn.tavg-u-hxy-u.mon.30S-90S", + "atmos.prsn18O.tavg-u-hxy-u.mon.GLB", + "atmos.prsn2h.tavg-u-hxy-u.mon.GLB", + "atmos.prw.tavg-u-hxy-u.3hr.GLB", + "atmos.prw.tavg-u-hxy-u.day.GLB", + "atmos.prw.tavg-u-hxy-u.mon.30S-90S", + "atmos.prw.tpt-u-hxy-u.6hr.GLB", + "atmos.ps.tavg-u-hxy-u.1hr.GLB", + "atmos.ps.tavg-u-hxy-u.6hr.GLB", + "atmos.ps.tavg-u-hxy-u.mon.30S-90S", + "atmos.ps.tpt-u-hxy-u.1hr.30S-90S", + "atmos.ps.tpt-u-hxy-u.3hr.GLB", + "atmos.ps.tpt-u-hxy-u.6hr.GLB", + "atmos.psl.tavg-u-hxy-u.mon.30S-90S", + "atmos.psl.tpt-u-hxy-u.1hr.GLB", + "atmos.psl.tpt-u-hxy-u.6hr.GLB", + "atmos.ptp.tavg-u-hxy-u.mon.GLB", + "atmos.reffcclwtop.tavg-u-hxy-ccl.mon.GLB", + "atmos.reffclic.tavg-al-hxy-ccl.mon.30S-90S", + "atmos.reffclic.tavg-al-hxy-ccl.mon.GLB", + "atmos.reffclis.tavg-al-hxy-scl.mon.30S-90S", + "atmos.reffclis.tavg-al-hxy-scl.mon.GLB", + "atmos.reffclwc.tavg-al-hxy-ccl.mon.30S-90S", + "atmos.reffclwc.tavg-al-hxy-ccl.mon.GLB", + "atmos.reffclws.tavg-al-hxy-scl.mon.30S-90S", + "atmos.reffclws.tavg-al-hxy-scl.mon.GLB", + "atmos.reffsclwtop.tavg-u-hxy-scl.mon.GLB", + "atmos.rld.tavg-alh-hxy-u.mon.GLB", + "atmos.rld4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rldcs.tavg-alh-hxy-u.mon.GLB", + "atmos.rldcs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rlds.tavg-u-hxy-u.1hr.30S-90S", + "atmos.rlds.tavg-u-hxy-u.1hr.GLB", + "atmos.rlds.tavg-u-hxy-u.3hr.GLB", + "atmos.rlds.tavg-u-hxy-u.6hr.GLB", + "atmos.rlds.tavg-u-hxy-u.day.GLB", + "atmos.rlds.tavg-u-hxy-u.mon.30S-90S", + "atmos.rldscs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rls.tavg-u-hxy-u.mon.GLB", + "atmos.rlu.tavg-alh-hxy-u.mon.GLB", + "atmos.rlu4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rlucs.tavg-alh-hxy-u.mon.GLB", + "atmos.rlucs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rlus.tavg-u-hxy-u.3hr.GLB", + "atmos.rlus.tavg-u-hxy-u.day.GLB", + "atmos.rlus.tavg-u-hxy-u.mon.30S-90S", + "atmos.rlut.tavg-u-hxy-u.3hr.GLB", + "atmos.rlut.tavg-u-hxy-u.day.GLB", + "atmos.rlut.tavg-u-hxy-u.mon.30S-90S", + "atmos.rlut4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rlutcs.tavg-u-hxy-u.3hr.GLB", + "atmos.rlutcs.tavg-u-hxy-u.day.GLB", + "atmos.rlutcs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rlutcs4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rsd.tavg-alh-hxy-u.mon.GLB", + "atmos.rsd4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsdcs.tavg-alh-hxy-u.mon.GLB", + "atmos.rsdcs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsds.tavg-u-hxy-u.1hr.30S-90S", + "atmos.rsds.tavg-u-hxy-u.1hr.GLB", + "atmos.rsds.tavg-u-hxy-u.3hr.GLB", + "atmos.rsds.tavg-u-hxy-u.6hr.GLB", + "atmos.rsds.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsdscs.tavg-u-hxy-u.day.GLB", + "atmos.rsdscs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsdt.tavg-u-hxy-u.day.GLB", + "atmos.rsdt.tavg-u-hxy-u.mon.30S-90S", + "atmos.rss.tavg-u-hxy-u.mon.GLB", + "atmos.rsu.tavg-alh-hxy-u.mon.GLB", + "atmos.rsu4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsucs.tavg-alh-hxy-u.mon.GLB", + "atmos.rsucs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsus.tavg-u-hxy-u.3hr.GLB", + "atmos.rsus.tavg-u-hxy-u.day.GLB", + "atmos.rsus.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsuscs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsut.tavg-u-hxy-u.3hr.GLB", + "atmos.rsut.tavg-u-hxy-u.day.GLB", + "atmos.rsut.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsut4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rsutcs.tavg-u-hxy-u.3hr.GLB", + "atmos.rsutcs.tavg-u-hxy-u.day.GLB", + "atmos.rsutcs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsutcs4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rtmt.tavg-u-hxy-u.mon.GLB", + "atmos.rv850.tpt-850hPa-hxy-air.6hr.GLB", + "atmos.scldncl.tavg-u-hxy-scl.mon.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.1hr.30S-90S", + "atmos.sfcWind.tavg-h10m-hxy-u.6hr.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.mon.30S-90S", + "atmos.sfcWind.tmax-h10m-hxy-u.day.GLB", + "atmos.ta.tavg-700hPa-hxy-air.day.GLB", + "atmos.ta.tavg-al-hxy-u.mon.30S-90S", + "atmos.ta.tavg-al-hxy-u.mon.GLB", + "atmos.ta.tavg-p19-hxy-air.mon.30S-90S", + "atmos.ta.tavg-p39-hy-air.day.GLB", + "atmos.ta.tavg-p39-hy-air.mon.GLB", + "atmos.ta.tpt-al-hxy-u.6hr.GLB", + "atmos.ta.tpt-p5u-hxy-u.6hr.GLB", + "atmos.ta.tpt-p7h-hxy-air.6hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.1hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.6hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.mon.30S-90S", + "atmos.tas.tmaxavg-h2m-hxy-u.mon.30S-90S", + "atmos.tas.tminavg-h2m-hxy-u.mon.30S-90S", + "atmos.tauu.tavg-u-hxy-u.day.GLB", + "atmos.tauunoegw.tavg-p39-hy-air.day.GLB", + "atmos.tauunowgw.tavg-p39-hy-air.day.GLB", + "atmos.tauuogw.tavg-p39-hy-air.day.GLB", + "atmos.tauv.tavg-u-hxy-u.day.GLB", + "atmos.tauvnogw.tavg-p39-hy-air.day.GLB", + "atmos.tauvogw.tavg-p39-hy-air.day.GLB", + "atmos.tdps.tavg-h2m-hxy-u.mon.GLB", + "atmos.tnt.tavg-al-hxy-u.mon.GLB", + "atmos.tntmp.tavg-p39-hy-air.day.GLB", + "atmos.tntmp.tavg-p39-hy-air.mon.GLB", + "atmos.tntrl.tavg-al-hxy-u.mon.GLB", + "atmos.tntrl.tavg-p39-hy-air.day.GLB", + "atmos.tntrl.tavg-p39-hy-air.mon.GLB", + "atmos.tntrs.tavg-al-hxy-u.mon.GLB", + "atmos.tntrs.tavg-p39-hy-air.day.GLB", + "atmos.tntrs.tavg-p39-hy-air.mon.GLB", + "atmos.ts.tavg-u-hxy-u.6hr.GLB", + "atmos.ts.tavg-u-hxy-u.day.GLB", + "atmos.ts.tavg-u-hxy-u.mon.30S-90S", + "atmos.ts.tpt-u-hxy-u.3hr.GLB", + "atmos.ts.tpt-u-hxy-u.6hr.GLB", + "atmos.ua.tavg-al-hxy-u.mon.GLB", + "atmos.ua.tavg-p19-hxy-air.mon.30S-90S", + "atmos.ua.tavg-p39-hy-air.day.GLB", + "atmos.ua.tavg-p39-hy-air.mon.GLB", + "atmos.ua.tpt-al-hxy-u.6hr.GLB", + "atmos.ua.tpt-h100m-hxy-u.1hr.GLB", + "atmos.ua.tpt-p5u-hxy-air.6hr.GLB", + "atmos.ua.tpt-p7h-hxy-air.6hr.GLB", + "atmos.uas.tavg-h10m-hxy-u.mon.30S-90S", + "atmos.uas.tpt-h10m-hxy-u.1hr.GLB", + "atmos.uas.tpt-h10m-hxy-u.6hr.GLB", + "atmos.utendepfd.tavg-p39-hy-air.day.GLB", + "atmos.utendepfd.tavg-p39-hy-air.mon.GLB", + "atmos.utendnogw.tavg-p39-hy-air.day.GLB", + "atmos.utendnogw.tavg-p39-hy-air.mon.GLB", + "atmos.utendogw.tavg-p39-hy-air.day.GLB", + "atmos.utendogw.tavg-p39-hy-air.mon.GLB", + "atmos.utendvtem.tavg-p39-hy-air.day.GLB", + "atmos.utendwtem.tavg-p39-hy-air.day.GLB", + "atmos.va.tavg-al-hxy-u.mon.GLB", + "atmos.va.tavg-p19-hxy-air.mon.30S-90S", + "atmos.va.tavg-p39-hy-air.mon.GLB", + "atmos.va.tpt-al-hxy-u.6hr.GLB", + "atmos.va.tpt-h100m-hxy-u.1hr.GLB", + "atmos.va.tpt-p5u-hxy-air.6hr.GLB", + "atmos.va.tpt-p7h-hxy-air.6hr.GLB", + "atmos.vas.tavg-h10m-hxy-u.mon.30S-90S", + "atmos.vas.tpt-h10m-hxy-u.1hr.GLB", + "atmos.vas.tpt-h10m-hxy-u.6hr.GLB", + "atmos.vtem.tavg-p39-hy-air.day.GLB", + "atmos.vtem.tavg-p39-hy-air.mon.GLB", + "atmos.wap.tavg-p19-hxy-air.mon.30S-90S", + "atmos.wsg.tmax-h100m-hxy-u.1hr.GLB", + "atmos.wsg.tmax-h10m-hxy-u.1hr.GLB", + "atmos.wtem.tavg-p39-hy-air.day.GLB", + "atmos.wtem.tavg-p39-hy-air.mon.GLB", + "atmos.zg.tavg-1000hPa-hxy-air.day.GLB", + "atmos.zg.tavg-500hPa-hxy-air.day.GLB", + "atmos.zg.tavg-al-hxy-u.mon.GLB", + "atmos.zg.tavg-p19-hxy-air.mon.30S-90S", + "atmos.zg.tavg-p39-hy-air.day.GLB", + "atmos.zg.tavg-p39-hy-air.mon.GLB", + "atmos.zg.tpt-500hPa-hxy-air.6hr.GLB", + "atmos.zg.tpt-al-hxy-u.6hr.GLB", + "atmos.zg.tpt-p3-hxy-air.6hr.GLB", + "atmos.zg.tpt-p7h-hxy-air.6hr.GLB", + "atmos.ztp.tavg-u-hxy-u.mon.GLB", + "atmosChem.c2h4.tavg-al-hxy-u.mon.GLB", + "atmosChem.c2h5oh.tavg-al-hxy-u.mon.GLB", + "atmosChem.c4h10.tavg-al-hxy-u.mon.GLB", + "atmosChem.cfc11.tavg-u-hm-u.mon.GLB", + "atmosChem.cfc113.tavg-u-hm-u.mon.GLB", + "atmosChem.cfc12.tavg-u-hm-u.mon.GLB", + "atmosChem.ch3oh.tavg-al-hxy-u.mon.GLB", + "atmosChem.ch4.tavg-al-hxy-u.mon.GLB", + "atmosChem.ch4.tavg-p39-hy-air.mon.GLB", + "atmosChem.ch4losssoil.tavg-u-hxy-u.mon.GLB", + "atmosChem.ch4ref.ti-al-hxy-u.fx.GLB", + "atmosChem.chegph2oo1d.tavg-al-hxy-u.mon.GLB", + "atmosChem.chepnh4.tavg-al-hxy-u.mon.GLB", + "atmosChem.chepno3.tavg-al-hxy-u.mon.GLB", + "atmosChem.dms.tavg-al-hxy-u.mon.30S-90S", + "atmosChem.dms.tavg-al-hxy-u.mon.GLB", + "atmosChem.do3chm.tavg-al-hxy-u.mon.GLB", + "atmosChem.dryh2.tavg-u-hxy-u.mon.GLB", + "atmosChem.dryhno3.tavg-u-hxy-u.mon.GLB", + "atmosChem.drynh3.tavg-u-hxy-u.mon.GLB", + "atmosChem.drynh4.tavg-u-hxy-u.mon.GLB", + "atmosChem.drynoy.tavg-u-hxy-u.mon.GLB", + "atmosChem.e90inst.tpt-al-hxy-u.mon.GLB", + "atmosChem.emiach4.tavg-u-hxy-u.mon.GLB", + "atmosChem.emiavnox.tavg-al-hxy-u.mon.GLB", + "atmosChem.emic2h4.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic2h5oh.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic2h6.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic3h6.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic3h8.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic4h10.tavg-u-hxy-u.mon.GLB", + "atmosChem.emich3oh.tavg-u-hxy-u.mon.GLB", + "atmosChem.emich4.tavg-u-hxy-u.mon.GLB", + "atmosChem.emih2.tavg-u-hxy-u.mon.GLB", + "atmosChem.emilkch4.tavg-u-hxy-u.mon.GLB", + "atmosChem.h2.tavg-al-hxy-u.mon.GLB", + "atmosChem.h2loss.tavg-al-hxy-u.mon.GLB", + "atmosChem.h2prod.tavg-al-hxy-u.mon.GLB", + "atmosChem.hcfc22.tavg-u-hm-u.mon.GLB", + "atmosChem.meanage.tavg-al-hxy-u.mon.GLB", + "atmosChem.meanage.tavg-p39-hy-air.mon.GLB", + "atmosChem.n2o.tavg-al-hxy-u.mon.GLB", + "atmosChem.n2o.tavg-p39-hy-air.mon.GLB", + "atmosChem.o3.tavg-al-hxy-u.mon.GLB", + "atmosChem.o3.tavg-p19-hxy-air.mon.GLB", + "atmosChem.o3.tavg-p39-hy-air.mon.GLB", + "atmosChem.o3.tpt-al-hxy-u.mon.GLB", + "atmosChem.o3ref.tclm-al-hxy-u.fx.GLB", + "atmosChem.o3ref.ti-al-hxy-u.fx.GLB", + "atmosChem.o3ste.tavg-al-hxy-u.mon.GLB", + "atmosChem.rlutch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rlutcsch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rlutcso3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rluto3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsutch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsutcsch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsutcso3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsuto3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.stratch4loss.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropch4loss.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropch4lossoh.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropdo3chm.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropo3ste.tavg-al-hxy-u.mon.GLB", + "atmosChem.wethno3.tavg-al-hxy-u.mon.GLB", + "atmosChem.wetnh3.tavg-u-hxy-u.mon.GLB", + "atmosChem.wetnh4.tavg-u-hxy-u.mon.GLB", + "atmosChem.wetno3.tavg-al-hxy-u.mon.GLB", + "atmosChem.wetnoy.tavg-u-hxy-u.mon.GLB", + "land.albc.tavg-u-hxy-veg.mon.GLB", + "land.areacellr.ti-u-hxy-u.fx.GLB", + "land.baresoilFrac.tavg-u-hxy-u.mon.GLB", + "land.burntFractionAll.tavg-u-hxy-u.mon.GLB", + "land.cGeologicStorage.tavg-u-hxy-u.mon.GLB", + "land.cLand.tavg-u-hxy-lnd.mon.GLB", + "land.cLeaf.tavg-u-hxy-lnd.mon.GLB", + "land.cLitter.tavg-u-hxy-lnd.mon.GLB", + "land.cnc.tavg-u-hxy-u.mon.GLB", + "land.cProduct.tavg-u-hxy-lnd.mon.GLB", + "land.cRoot.tavg-u-hxy-lnd.mon.GLB", + "land.cropFrac.tavg-u-hxy-u.mon.GLB", + "land.cSoil.tavg-d100cm-hxy-lnd.mon.GLB", + "land.cSoil.tavg-sl-hxy-lnd.mon.GLB", + "land.cSoil.tavg-u-hxy-lnd.mon.GLB", + "land.cStem.tavg-u-hxy-lnd.mon.GLB", + "land.cVeg.tavg-u-hxy-lnd.mon.GLB", + "land.dcw.tavg-u-hxy-lnd.day.GLB", + "land.depthl.ti-u-hxy-u.fx.GLB", + "land.depthsl.ti-u-hxy-u.fx.GLB", + "land.dslw.tavg-u-hxy-lnd.day.GLB", + "land.evspsblpot.tavg-u-hxy-lnd.day.GLB", + "land.evspsblpot.tavg-u-hxy-lnd.mon.GLB", + "land.evspsblsoi.tavg-u-hxy-u.day.GLB", + "land.evspsblveg.tavg-u-hxy-u.day.GLB", + "land.fAnthDisturb.tavg-u-hxy-lnd.mon.GLB", + "land.fBNF.tavg-u-hxy-lnd.mon.GLB", + "land.fCLandToOcean.tavg-u-hxy-lnd.mon.GLB", + "land.fDeforestToAtmos.tavg-u-hxy-lnd.mon.GLB", + "land.fDeforestToProduct.tavg-u-hxy-lnd.mon.GLB", + "land.fFire.tavg-u-hxy-lnd.mon.GLB", + "land.fFireAll.tavg-u-hxy-lnd.mon.GLB", + "land.fFireNat.tavg-u-hxy-lnd.mon.GLB", + "land.fHarvestToAtmos.tavg-u-hxy-lnd.mon.GLB", + "land.fHarvestToGeologicStorage.tavg-u-hxy-lnd.mon.GLB", + "land.fHarvestToProduct.tavg-u-hxy-lnd.mon.GLB", + "land.fLitterSoil.tavg-u-hxy-lnd.mon.GLB", + "land.fLuc.tavg-u-hxy-lnd.mon.GLB", + "land.fN2O.tavg-u-hxy-lnd.mon.GLB", + "land.fNAnthDisturb.tavg-u-hxy-lnd.mon.GLB", + "land.fNdep.tavg-u-hxy-lnd.mon.GLB", + "land.fNfert.tavg-u-hxy-lnd.mon.GLB", + "land.fNgas.tavg-u-hxy-lnd.mon.GLB", + "land.fNgasFire.tavg-u-hxy-lnd.mon.GLB", + "land.fNLandToOcean.tavg-u-hxy-lnd.mon.GLB", + "land.fNleach.tavg-u-hxy-lnd.mon.GLB", + "land.fNLitterSoil.tavg-u-hxy-lnd.mon.GLB", + "land.fNloss.tavg-u-hxy-lnd.mon.GLB", + "land.fNnetmin.tavg-u-hxy-lnd.mon.GLB", + "land.fNOx.tavg-u-hxy-lnd.mon.GLB", + "land.fNProduct.tavg-u-hxy-lnd.mon.GLB", + "land.fNup.tavg-u-hxy-lnd.mon.GLB", + "land.fNVegLitter.tavg-u-hxy-lnd.mon.GLB", + "land.fNVegSoil.tavg-u-hxy-lnd.mon.GLB", + "land.fProductDecomp.tavg-u-hxy-lnd.mon.GLB", + "land.fVegLitter.tavg-u-hxy-lnd.mon.GLB", + "land.fVegSoil.tavg-u-hxy-lnd.mon.GLB", + "land.gpp.tavg-u-hxy-lnd.mon.GLB", + "land.gppVgt.tavg-u-hxy-multi.day.GLB", + "land.grassFrac.tavg-u-hxy-u.mon.GLB", + "land.laiVgt.tavg-u-hxy-multi.day.GLB", + "land.landCoverFrac.tavg-u-hxy-u.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.day.GLB", + "land.mrrob.tavg-u-hxy-lnd.day.GLB", + "land.mrros.tavg-u-hxy-lnd.day.GLB", + "land.mrsfl.tavg-sl-hxy-lnd.day.GLB", + "land.mrsfl.tavg-sl-hxy-lnd.mon.GLB", + "land.mrsll.tavg-sl-hxy-lnd.day.GLB", + "land.mrsll.tavg-sl-hxy-lnd.mon.GLB", + "land.mrso.tavg-u-hxy-lnd.day.GLB", + "land.mrsol.tavg-d10cm-hxy-lnd.day.GLB", + "land.mrsol.tavg-sl-hxy-lnd.day.GLB", + "land.mrsol.tavg-sl-hxy-lnd.mon.GLB", + "land.mrsol.tpt-d10cm-hxy-lnd.3hr.GLB", + "land.mrsow.tavg-u-hxy-lnd.day.GLB", + "land.mrtws.tavg-u-hxy-lnd.day.GLB", + "land.mrtws.tavg-u-hxy-lnd.mon.GLB", + "land.nbp.tavg-u-hxy-lnd.mon.GLB", + "land.nep.tavg-u-hxy-lnd.mon.GLB", + "land.nLand.tavg-u-hxy-lnd.mon.GLB", + "land.nLitter.tavg-u-hxy-lnd.mon.GLB", + "land.nMineral.tavg-u-hxy-lnd.mon.GLB", + "land.npp.tavg-u-hxy-lnd.mon.GLB", + "land.nProduct.tavg-u-hxy-lnd.mon.GLB", + "land.nSoil.tavg-u-hxy-lnd.mon.GLB", + "land.nVeg.tavg-u-hxy-lnd.mon.GLB", + "land.orog.ti-u-hxy-u.fx.30S-90S", + "land.pastureFrac.tavg-u-hxy-u.mon.GLB", + "land.prveg.tavg-u-hxy-lnd.mon.GLB", + "land.ra.tavg-u-hxy-lnd.mon.GLB", + "land.residualFrac.tavg-u-hxy-u.mon.GLB", + "land.rh.tavg-u-hxy-lnd.mon.GLB", + "land.rivi.tavg-u-hxy-lnd.day.GLB", + "land.rivo.tavg-u-hxy-lnd.day.GLB", + "land.rsds.tavg-u-hxy-lnd.mon.GLB", + "land.rsds.tavg-u-hxy-sn.mon.GLB", + "land.rsus.tavg-u-hxy-lnd.mon.GLB", + "land.rsus.tavg-u-hxy-sn.mon.GLB", + "land.sftgif.tavg-u-hxy-u.mon.GLB", + "land.sftlaf.ti-u-hxy-u.fx.GLB", + "land.shrubFrac.tavg-u-hxy-u.mon.GLB", + "land.srfrad.tavg-u-hxy-u.3hr.GLB", + "land.tas.tavg-u-hxy-u.1hr.30S-90S", + "land.tas.tavg-u-hxy-u.1hr.GLB", + "land.tran.tavg-u-hxy-lnd.mon.GLB", + "land.treeFrac.tavg-u-hxy-u.mon.GLB", + "land.tsl.tavg-sl-hxy-lnd.day.GLB", + "land.tsl.tavg-sl-hxy-lnd.mon.GLB", + "land.tslsi.tavg-u-hxy-u.day.GLB", + "land.tslsi.tpt-u-hxy-lsi.3hr.GLB", + "land.vegFrac.tavg-u-hxy-u.mon.GLB", + "land.vegHeight.tavg-u-hxy-tree.mon.GLB", + "land.vegHeight.tavg-u-hxy-veg.mon.GLB", + "land.wetlandCH4.tavg-u-hxy-lnd.mon.GLB", + "land.wtd.tavg-u-hxy-lnd.day.GLB", + "landIce.acabf.tavg-u-hxy-is.mon.GLB", + "landIce.hfdsn.tavg-u-hxy-lnd.mon.GLB", + "landIce.hfgeoubed.ti-u-hxy-gis.fx.GRL", + "landIce.hfls.tavg-u-hxy-is.mon.GLB", + "landIce.hfss.tavg-u-hxy-is.mon.GLB", + "landIce.icem.tavg-u-hxy-is.mon.GLB", + "landIce.litemptop.tavg-u-hxy-is.mon.GLB", + "landIce.lithk.ti-u-hxy-is.fx.GRL", + "landIce.lithk.ti-u-hxy-u.fx.GLB", + "landIce.mrro.tavg-u-hxy-is.mon.GLB", + "landIce.orog.tavg-u-hxy-is.mon.GLB", + "landIce.pflw.tavg-u-hxy-lnd.mon.GLB", + "landIce.prra.tavg-u-hxy-is.mon.GLB", + "landIce.prsn.tavg-u-hxy-is.mon.GLB", + "landIce.rlds.tavg-u-hxy-is.mon.GLB", + "landIce.rlus.tavg-u-hxy-is.mon.GLB", + "landIce.rsds.tavg-u-hxy-is.mon.GLB", + "landIce.rsus.tavg-u-hxy-is.mon.GLB", + "landIce.sbl.tavg-u-hxy-is.mon.GLB", + "landIce.sbl.tavg-u-hxy-lnd.mon.GLB", + "landIce.sbl.tavg-u-hxy-u.mon.GLB", + "landIce.sftflf.tavg-u-hxy-u.mon.GLB", + "landIce.sftflf.ti-u-hxy-u.fx.GLB", + "landIce.sftgrf.tavg-u-hxy-u.mon.GLB", + "landIce.sftgrf.ti-u-hxy-u.fx.GLB", + "landIce.snc.tavg-u-hxy-is.mon.GLB", + "landIce.snd.tavg-u-hxy-lnd.mon.GLB", + "landIce.snicem.tavg-u-hxy-is.mon.GLB", + "landIce.snicem.tavg-u-hxy-is.mon.GRL", + "landIce.snm.tavg-u-hxy-is.mon.GLB", + "landIce.snm.tavg-u-hxy-lnd.mon.GLB", + "landIce.snrefr.tavg-u-hxy-is.mon.GLB", + "landIce.snw.tavg-u-hxy-lnd.day.GLB", + "landIce.sootsn.tavg-u-hxy-lnd.mon.GLB", + "landIce.tas.tavg-u-hxy-is.mon.GLB", + "landIce.topg.ti-u-hxy-gis.fx.GRL", + "landIce.tpf.tavg-u-hxy-lnd.mon.GLB", + "landIce.ts.tavg-u-hxy-is.mon.GLB", + "landIce.tsn.tavg-u-hxy-is.mon.GLB", + "landIce.tsn.tavg-u-hxy-lnd.mon.GLB", + "ocean.absscint.tavg-op4-hxy-sea.mon.GLB", + "ocean.agessc.tavg-ol-hxy-sea.mon.GLB", + "ocean.bigthetao.tavg-ol-hm-sea.mon.GLB", + "ocean.bigthetao.tavg-ol-hxy-sea.dec.GLB", + "ocean.bigthetao.tavg-op20bar-hxy-sea.day.GLB", + "ocean.chcint.tavg-op4-hxy-sea.mon.GLB", + "ocean.ficeberg.tavg-ol-hxy-sea.3hr.GLB", + "ocean.ficeberg.tavg-ol-hxy-sea.mon.GLB", + "ocean.ficeberg.tavg-u-hxy-sea.mon.GLB", + "ocean.flandice.tavg-u-hxy-sea.3hr.GLB", + "ocean.flandice.tavg-u-hxy-sea.mon.GLB", + "ocean.friver.tavg-u-hxy-sea.3hr.GLB", + "ocean.friver.tavg-u-hxy-sea.mon.GLB", + "ocean.hfbasin.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpmadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpmdiff.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpsmadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfds.tavg-u-hxy-sea.3hr.GLB", + "ocean.hfds.tavg-u-hxy-sea.mon.30S-90S", + "ocean.hfgeou.tavg-u-hxy-sea.mon.GLB", + "ocean.hfrunoffds.tavg-ol-hxy-sea.3hr.GLB", + "ocean.hfx.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfx.tavg-u-hxy-sea.day.GLB", + "ocean.hfx.tavg-u-hxy-sea.mon.GLB", + "ocean.hfy.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfy.tavg-u-hxy-sea.day.GLB", + "ocean.hfy.tavg-u-hxy-sea.mon.GLB", + "ocean.htovgyre.tavg-u-hyb-sea.mon.GLB", + "ocean.htovovrt.tavg-u-hyb-sea.mon.GLB", + "ocean.masscello.tavg-ol-hxy-sea.dec.GLB", + "ocean.masso.tavg-u-hm-sea.dec.GLB", + "ocean.masso.tavg-u-hm-sea.mon.GLB", + "ocean.mlotst.tavg-u-hxy-sea.day.GLB", + "ocean.mlotst.tavg-u-hxy-sea.mon.30S-90S", + "ocean.mlotst.tmax-u-hxy-sea.mon.GLB", + "ocean.mlotst.tmin-u-hxy-sea.mon.GLB", + "ocean.mpw.tavg-u-hxy-sea.mon.GLB", + "ocean.mpw.tpt-u-hxy-sea.3hr.GLB", + "ocean.mpwswell.tavg-u-hxy-sea.mon.GLB", + "ocean.mpwswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.mpwwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.mpwwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.msftbarot.tavg-u-hxy-sea.mon.GLB", + "ocean.msftm.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftm.tavg-rho-hyb-sea.mon.GLB", + "ocean.msfty.tavg-ol-ht-sea.mon.GLB", + "ocean.msfty.tavg-rho-ht-sea.mon.GLB", + "ocean.obvfsq.tavg-ol-hxy-sea.mon.GLB", + "ocean.opottemptend.tavg-ol-hxy-sea.yr.GLB", + "ocean.pbo.tavg-u-hxy-sea.mon.GLB", + "ocean.pfscint.tavg-op4-hxy-sea.mon.GLB", + "ocean.phcint.tavg-op4-hxy-sea.mon.GLB", + "ocean.pso.tavg-u-hxy-sea.mon.GLB", + "ocean.rsds.tavg-u-hxy-ifs.mon.GLB", + "ocean.rsntds.tavg-u-hxy-sea.3hr.GLB", + "ocean.rsus.tavg-u-hxy-ifs.mon.GLB", + "ocean.scint.tavg-op4-hxy-sea.mon.GLB", + "ocean.sduo.tavg-u-hxy-sea.mon.GLB", + "ocean.sduo.tpt-u-hxy-sea.3hr.GLB", + "ocean.sdvo.tavg-u-hxy-sea.mon.GLB", + "ocean.sdvo.tpt-u-hxy-sea.3hr.GLB", + "ocean.sfdsi.tavg-u-hxy-sea.3hr.GLB", + "ocean.sfx.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfx.tavg-u-hxy-sea.mon.GLB", + "ocean.sfy.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfy.tavg-u-hxy-sea.mon.GLB", + "ocean.sltbasin.tavg-u-hyb-sea.mon.GLB", + "ocean.sltovgyre.tavg-u-hyb-sea.mon.GLB", + "ocean.sltovovrt.tavg-u-hyb-sea.mon.GLB", + "ocean.so.tavg-ol-hm-sea.mon.GLB", + "ocean.so.tavg-ol-hxy-sea.dec.GLB", + "ocean.so.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.sob.tavg-u-hxy-sea.mon.GLB", + "ocean.sos.tavg-u-hm-sea.mon.30S-90S", + "ocean.sos.tavg-u-hm-sea.mon.GLB", + "ocean.sw17O.tavg-ol-hxy-sea.mon.GLB", + "ocean.sw18O.tavg-ol-hxy-sea.mon.GLB", + "ocean.sw2H.tavg-ol-hxy-sea.mon.GLB", + "ocean.swh.tavg-u-hxy-sea.mon.GLB", + "ocean.swh.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhmax.tmax-u-hxy-sea.mon.GLB", + "ocean.swhmax.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhswell.tavg-u-hxy-sea.mon.GLB", + "ocean.swhswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.swhwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.tauuo.tavg-u-hxy-sea.3hr.GLB", + "ocean.tauuo.tavg-u-hxy-sea.dec.GLB", + "ocean.tauvo.tavg-u-hxy-sea.3hr.GLB", + "ocean.tauvo.tavg-u-hxy-sea.dec.GLB", + "ocean.thetao.tavg-ol-hm-sea.mon.GLB", + "ocean.thetao.tavg-ol-hxy-sea.dec.GLB", + "ocean.thetao.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.thetao.tavg-op20bar-hxy-sea.day.GLB", + "ocean.thkcello.tavg-ol-hxy-sea.dec.GLB", + "ocean.tob.tavg-u-hxy-sea.mon.GLB", + "ocean.tos.tavg-u-hm-sea.mon.GLB", + "ocean.tos.tavg-u-hxy-sea.mon.30S-90S", + "ocean.tos.tpt-u-hxy-sea.3hr.GLB", + "ocean.tossq.tavg-u-hxy-sea.day.GLB", + "ocean.umo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.uo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.uos.tavg-u-hxy-sea.day.GLB", + "ocean.vmo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.vo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.volcello.tavg-ol-hxy-sea.dec.GLB", + "ocean.volcello.tavg-ol-hxy-sea.mon.GLB", + "ocean.volcello.tavg-ol-hxy-sea.yr.GLB", + "ocean.volcello.ti-ol-hxy-sea.fx.GLB", + "ocean.volo.tavg-u-hm-sea.dec.GLB", + "ocean.volo.tavg-u-hm-sea.mon.GLB", + "ocean.vos.tavg-u-hxy-sea.day.GLB", + "ocean.wdir.tavg-u-hxy-sea.mon.GLB", + "ocean.wdir.tpt-u-hxy-sea.3hr.GLB", + "ocean.wdirswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wdirswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wdirwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wdirwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.wfcorr.tavg-u-hxy-sea.mon.GLB", + "ocean.wfo.tavg-u-hxy-sea.3hr.GLB", + "ocean.wfo.tavg-u-hxy-sea.mon.GLB", + "ocean.wmo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.wo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.wpdir.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdir.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpdirswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdirswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpdirwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdirwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpp.tavg-u-hxy-sea.mon.GLB", + "ocean.wpp.tpt-u-hxy-sea.3hr.GLB", + "ocean.wppswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wppswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wppwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wppwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.zos.tavg-u-hxy-sea.mon.30S-90S", + "ocean.zossq.tavg-u-hxy-sea.mon.GLB", + "ocean.zostoga.tavg-u-hm-sea.day.GLB", + "ocnBgchem.bacc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.calc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chl.tavg-d0m-hxy-sea.day.GLB", + "ocnBgchem.chl.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chl.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chlcalc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chldiat.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chldiat.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chldiaz.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chldiaz.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chlmisc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chlmisc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chlpico.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chlpico.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.detoc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dfe.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.dfe.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.dfe.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissic.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.dissic.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissoc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dmso.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.dmso.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.dpco2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.dpo2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.expc.tavg-d1000m-hxy-sea.mon.GLB", + "ocnBgchem.expc.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.expc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.expcalc.tavg-d1000m-hxy-sea.mon.GLB", + "ocnBgchem.expcalc.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.expcalc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.fgco2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fric.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.froc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fsfe.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fsn.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.graz.tavg-ol-hxy-sea.mon.30S-90S", + "ocnBgchem.graz.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.icfriver.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intdic.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intdoc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intparag.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbfe.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbn.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbp.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbsi.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpcalcite.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpn2.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpoc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpp.tavg-u-hxy-sea.day.GLB", + "ocnBgchem.intpp.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpp.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppcalc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppdiat.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppdiaz.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppmisc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppnitrate.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpppico.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.nh4.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.nh4.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.no3.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.no3.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.o2.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.ocfriver.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.ph.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.ph.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phyc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phyc.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.phyc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phycalc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phycalc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phydiat.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phydiat.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phydiaz.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phydiaz.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phymisc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phymisc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phypico.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phypico.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.po4.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.pp.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.si.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.spco2.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.spco2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.talk.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zmeso.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zmeso.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zmicro.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zmicro.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zmisc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zmisc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zooc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zooc.tavg-ol-hxy-sea.mon.GLB", + "seaIce.evspsbl.tavg-u-hxy-si.mon.GLB", + "seaIce.prra.tavg-u-hxy-si.mon.GLB", + "seaIce.prsn.tavg-u-hxy-si.mon.GLB", + "seaIce.rlds.tavg-u-hxy-si.day.GLB", + "seaIce.rlds.tavg-u-hxy-si.mon.GLB", + "seaIce.rlus.tavg-u-hxy-si.day.GLB", + "seaIce.rlus.tavg-u-hxy-si.mon.GLB", + "seaIce.rsds.tavg-u-hxy-si.day.GLB", + "seaIce.rsds.tavg-u-hxy-si.mon.GLB", + "seaIce.rsus.tavg-u-hxy-si.day.GLB", + "seaIce.rsus.tavg-u-hxy-si.mon.GLB", + "seaIce.sbl.tavg-u-hxy-si.mon.GLB", + "seaIce.siage.tavg-u-hxy-si.day.GLB", + "seaIce.siage.tavg-u-hxy-si.mon.30S-90S", + "seaIce.siarea.tavg-u-hm-u.mon.NH", + "seaIce.siarea.tavg-u-hm-u.mon.SH", + "seaIce.siareaacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.siconc.tavg-u-hxy-u.mon.30S-90S", + "seaIce.siconca.tavg-u-hxy-u.day.GLB", + "seaIce.siconca.tavg-u-hxy-u.mon.GLB", + "seaIce.sidconcdyn.tavg-u-hxy-sea.mon.GLB", + "seaIce.sidconcth.tavg-u-hxy-sea.mon.GLB", + "seaIce.sidmassdyn.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthsi.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthwat.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmeltbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmeltlat.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmelttop.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassth.tavg-u-hxy-si.mon.GLB", + "seaIce.sieqthick.tavg-u-hxy-si.mon.GLB", + "seaIce.siextent.tavg-u-hm-u.mon.NH", + "seaIce.siextent.tavg-u-hm-u.mon.SH", + "seaIce.siflcondbot.tavg-u-hxy-si.day.GLB", + "seaIce.siflcondbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflcondtop.tavg-u-hxy-si.day.GLB", + "seaIce.siflcondtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sifllattop.tavg-u-hxy-si.day.GLB", + "seaIce.sifllattop.tavg-u-hxy-si.mon.GLB", + "seaIce.siflsensbot.tavg-u-hxy-si.day.GLB", + "seaIce.siflsensbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflsenstop.tavg-u-hxy-si.day.GLB", + "seaIce.siflsenstop.tavg-u-hxy-si.mon.GLB", + "seaIce.siflswdbot.tavg-u-hxy-si.day.GLB", + "seaIce.siflswdbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sihc.tavg-u-hxy-sea.day.GLB", + "seaIce.sihc.tavg-u-hxy-sea.mon.GLB", + "seaIce.siitdconc.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdsnconc.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdsnthick.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdthick.tavg-u-hxy-si.mon.GLB", + "seaIce.simassacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.simpconc.tavg-u-hxy-si.mon.GLB", + "seaIce.sirdgconc.tavg-u-hxy-si.mon.GLB", + "seaIce.sisaltmass.tavg-u-hxy-si.mon.GLB", + "seaIce.sisndmassdyn.tavg-u-hxy-si.mon.GLB", + "seaIce.sisndmasssi.tavg-u-hxy-si.mon.GLB", + "seaIce.sisndmasswind.tavg-u-hxy-si.mon.GLB", + "seaIce.sisnhc.tavg-u-hxy-si.day.GLB", + "seaIce.sisnhc.tavg-u-hxy-si.mon.GLB", + "seaIce.sisnmass.tavg-u-hm-u.mon.NH", + "seaIce.sisnmass.tavg-u-hm-u.mon.SH", + "seaIce.sisnmassacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.sispeed.tavg-u-hxy-si.day.GLB", + "seaIce.sispeed.tavg-u-hxy-si.mon.GLB", + "seaIce.sistressave.tpt-u-hxy-si.mon.GLB", + "seaIce.sistressmax.tpt-u-hxy-si.mon.GLB", + "seaIce.sistrxdtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sistrxubot.tavg-u-hxy-si.mon.GLB", + "seaIce.sistrydtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sistryubot.tavg-u-hxy-si.mon.GLB", + "seaIce.sitempsnic.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-si.day.GLB", + "seaIce.sithick.tavg-u-hxy-si.mon.30S-90S", + "seaIce.sitimefrac.tavg-u-hxy-sea.day.GLB", + "seaIce.sitimefrac.tavg-u-hxy-sea.mon.30S-90S", + "seaIce.siu.tavg-u-hxy-si.day.GLB", + "seaIce.siu.tavg-u-hxy-si.mon.30S-90S", + "seaIce.siv.tavg-u-hxy-si.day.GLB", + "seaIce.siv.tavg-u-hxy-si.mon.30S-90S", + "seaIce.sivol.tavg-u-hm-u.mon.NH", + "seaIce.sivol.tavg-u-hm-u.mon.SH", + "seaIce.snc.tavg-u-hxy-si.mon.GLB", + "seaIce.snd.tavg-u-hxy-sn.day.GLB", + "seaIce.snd.tavg-u-hxy-sn.mon.30S-90S", + "seaIce.snm.tavg-u-hxy-si.mon.GLB", + "seaIce.snw.tavg-u-hxy-si.mon.GLB", + "seaIce.ts.tavg-u-hxy-si.day.GLB", + "seaIce.ts.tavg-u-hxy-si.mon.30S-90S" + ], + "Medium": [ + "atmos.bldep.tavg-u-hxy-u.1hr.GLB", + "atmos.clic.tpt-al-hxy-u.3hr.GLB", + "atmos.clis.tpt-al-hxy-u.3hr.GLB", + "atmos.clivi.tpt-u-hxy-u.3hr.GLB", + "atmos.clt.tpt-u-hxy-u.3hr.GLB", + "atmos.clwc.tpt-al-hxy-u.3hr.GLB", + "atmos.clws.tpt-al-hxy-u.3hr.GLB", + "atmos.clwvi.tpt-u-hxy-u.3hr.GLB", + "atmos.dtauc.tpt-al-hxy-ccl.3hr.GLB", + "atmos.dtaus.tpt-al-hxy-scl.3hr.GLB", + "atmos.hfdsnb.tavg-u-hxy-lnd.day.GLB", + "atmos.hfls.tavg-u-hxy-is.mon.ATA", + "atmos.hfls.tavg-u-hxy-u.1hr.GLB", + "atmos.hfss.tavg-u-hxy-is.mon.ATA", + "atmos.hfss.tavg-u-hxy-is.mon.GRL", + "atmos.hfss.tavg-u-hxy-u.1hr.GLB", + "atmos.hur.tavg-700hPa-hxy-air.day.GLB", + "atmos.hur.tpt-100hPa-hxy-u.6hr.GLB", + "atmos.hur.tpt-500hPa-hxy-air.6hr.GLB", + "atmos.hur.tpt-850hPa-hxy-air.6hr.GLB", + "atmos.hurs.tavg-h2m-hxy-u.1hr.GLB", + "atmos.hus.tpt-al-hxy-u.3hr.GLB", + "atmos.hus.tpt-p6-hxy-air.3hr.GLB", + "atmos.noaahi2m.tavg-h2m-hxy-u.day.GLB", + "atmos.noaahi2m.tmax-h2m-hxy-u.day.GLB", + "atmos.pfull.tpt-al-hxy-u.3hr.GLB", + "atmos.pr.tpt-u-hxy-u.3hr.GLB", + "atmos.prra.tavg-u-hxy-is.mon.ATA", + "atmos.prrsn.tavg-u-hxy-lnd.day.GLB", + "atmos.prsn.tavg-u-hxy-is.mon.ATA", + "atmos.prsnc.tavg-u-hxy-lnd.day.GLB", + "atmos.prsnsn.tavg-u-hxy-lnd.day.GLB", + "atmos.prw.tpt-u-hxy-u.3hr.GLB", + "atmos.ps.tpt-u-hxy-u.1hr.GLB", + "atmos.psitem.tavg-p39-hy-air.day.GLB", + "atmos.reffclic.tpt-al-hxy-ccl.3hr.GLB", + "atmos.reffclis.tpt-al-hxy-scl.3hr.GLB", + "atmos.reffclwc.tpt-al-hxy-ccl.3hr.GLB", + "atmos.reffclws.tpt-al-hxy-scl.3hr.GLB", + "atmos.rlds.tavg-u-hxy-is.mon.ATA", + "atmos.rlds.tavg-u-hxy-is.mon.GRL", + "atmos.rlds.tpt-u-hxy-u.3hr.GLB", + "atmos.rldscs.tavg-u-hxy-u.day.GLB", + "atmos.rldscs.tpt-u-hxy-u.3hr.GLB", + "atmos.rls.tavg-u-hxy-u.day.GLB", + "atmos.rlus.tavg-u-hxy-is.mon.ATA", + "atmos.rlus.tavg-u-hxy-is.mon.GRL", + "atmos.rlus.tavg-u-hxy-u.1hr.GLB", + "atmos.rlut.tpt-u-hxy-u.3hr.GLB", + "atmos.rlutcs.tpt-u-hxy-u.3hr.GLB", + "atmos.rsds.tavg-u-hxy-is.mon.ATA", + "atmos.rsds.tavg-u-hxy-is.mon.GRL", + "atmos.rsds.tpt-u-hxy-u.3hr.GLB", + "atmos.rsdscs.tpt-u-hxy-u.3hr.GLB", + "atmos.rsdsdiff.tavg-u-hxy-u.1hr.GLB", + "atmos.rsdsdiff.tavg-u-hxy-u.day.GLB", + "atmos.rss.tavg-u-hxy-u.day.GLB", + "atmos.rsus.tavg-u-hxy-is.mon.ATA", + "atmos.rsus.tavg-u-hxy-is.mon.GRL", + "atmos.rsus.tavg-u-hxy-u.1hr.GLB", + "atmos.rsut.tpt-u-hxy-u.3hr.GLB", + "atmos.rsutcs.tpt-u-hxy-u.3hr.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.1hr.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.3hr.GLB", + "atmos.snmsl.tavg-u-hxy-lnd.day.GLB", + "atmos.snrefr.tavg-u-hxy-lnd.day.GLB", + "atmos.snwc.tavg-u-hxy-lnd.day.GLB", + "atmos.ta.tpt-al-hxy-u.3hr.GLB", + "atmos.ta.tpt-p6-hxy-air.3hr.GLB", + "atmos.tas.tavg-h2m-hm-is.mon.ATA", + "atmos.tas.tavg-h2m-hm-is.mon.GRL", + "atmos.tauunoegw.tavg-p19-hxy-air.mon.GLB", + "atmos.tauunowgw.tavg-p19-hxy-air.mon.GLB", + "atmos.tauuogw.tavg-p19-hxy-air.mon.GLB", + "atmos.tauupbl.tavg-u-hxy-u.day.GLB", + "atmos.tauvnogw.tavg-p19-hxy-air.mon.GLB", + "atmos.tauvogw.tavg-p19-hxy-air.mon.GLB", + "atmos.tauvpbl.tavg-u-hxy-u.day.GLB", + "atmos.tntc.tavg-p39-hy-air.mon.GLB", + "atmos.tntnogw.tavg-p39-hy-air.mon.GLB", + "atmos.tntogw.tavg-p39-hy-air.mon.GLB", + "atmos.tntrlcs.tavg-p39-hy-air.mon.GLB", + "atmos.tntrscs.tavg-p39-hy-air.mon.GLB", + "atmos.tntscp.tavg-p39-hy-air.mon.GLB", + "atmos.ts.tavg-u-hxy-is.mon.ATA", + "atmos.ts.tavg-u-hxy-is.mon.GRL", + "atmos.ts.tavg-u-hxy-sn.day.GLB", + "atmos.ts.tavg-u-hxy-u.1hr.GLB", + "atmos.ua.tavg-h100m-hxy-u.3hr.GLB", + "atmos.ua.tpt-200hPa-hxy-u.6hr.GLB", + "atmos.ua.tpt-p6-hxy-air.3hr.GLB", + "atmos.utendnogw.tavg-p19-hxy-air.day.GLB", + "atmos.utendnogw.tavg-p19-hxy-air.mon.GLB", + "atmos.utendogw.tavg-p19-hxy-air.day.GLB", + "atmos.utendogw.tavg-p19-hxy-air.mon.GLB", + "atmos.va.tavg-h100m-hxy-u.3hr.GLB", + "atmos.va.tpt-200hPa-hxy-u.6hr.GLB", + "atmos.va.tpt-p6-hxy-air.3hr.GLB", + "atmos.vtendnogw.tavg-p19-hxy-air.day.GLB", + "atmos.vtendnogw.tavg-p19-hxy-air.mon.GLB", + "atmos.vtendogw.tavg-p19-hxy-air.day.GLB", + "atmos.vtendogw.tavg-p19-hxy-air.mon.GLB", + "atmos.wap.tpt-p6-hxy-air.3hr.GLB", + "atmos.wbgt.tavg-h2m-hxy-u.day.GLB", + "atmos.wbgt.tmax-h2m-hxy-u.day.GLB", + "atmos.wsg.tmax-h100m-hxy-u.mon.GLB", + "atmos.wsg.tmax-h10m-hxy-u.mon.GLB", + "atmos.zg.tpt-700hPa-hxy-u.6hr.GLB", + "atmos.zg.tpt-925hPa-hxy-u.6hr.GLB", + "atmosChem.flashrate.tavg-u-hxy-u.day.GLB", + "land.areacellg.ti-u-hxy-u.fx.ATA", + "land.areacellg.ti-u-hxy-u.fx.GRL", + "land.baresoilFrac.tavg-u-hxy-u.yr.GLB", + "land.cLitterCwd.tavg-u-hxy-lnd.mon.GLB", + "land.cLitterLut.tpt-u-hxy-multi.yr.GLB", + "land.cLitterSubSurf.tavg-u-hxy-lnd.mon.GLB", + "land.cLitterSurf.tavg-u-hxy-lnd.mon.GLB", + "land.cOther.tavg-u-hxy-lnd.mon.GLB", + "land.cProductLut.tpt-u-hxy-multi.yr.GLB", + "land.cropFrac.tavg-u-hxy-u.yr.GLB", + "land.cropFracC3.tavg-u-hxy-u.mon.GLB", + "land.cropFracC4.tavg-u-hxy-u.mon.GLB", + "land.cSoilLut.tpt-u-hxy-multi.yr.GLB", + "land.cSoilPools.tavg-u-hxy-lnd.mon.GLB", + "land.cVeg.tavg-u-hxy-ng.mon.GLB", + "land.cVeg.tavg-u-hxy-shb.mon.GLB", + "land.cVeg.tavg-u-hxy-tree.mon.GLB", + "land.cVegLut.tpt-u-hxy-multi.yr.GLB", + "land.dgw.tavg-u-hxy-lnd.day.GLB", + "land.drivw.tavg-u-hxy-lnd.day.GLB", + "land.dsn.tavg-u-hxy-lnd.day.GLB", + "land.dsw.tavg-u-hxy-lnd.day.GLB", + "land.esn.tavg-u-hxy-sn.day.GLB", + "land.evspsblsoi.tavg-u-hxy-u.3hr.GLB", + "land.evspsblveg.tavg-u-hxy-u.3hr.GLB", + "land.fLitterFire.tavg-u-hxy-lnd.mon.GLB", + "land.fLulccAtmLut.tavg-u-hxy-multi.mon.GLB", + "land.fNgasNonFire.tavg-u-hxy-lnd.mon.GLB", + "land.fracInLut.tsum-u-hxy-lnd.yr.GLB", + "land.fracLut.tpt-u-hxy-u.mon.GLB", + "land.fracLut.tpt-u-hxy-u.yr.GLB", + "land.fracOutLut.tsum-u-hxy-lnd.yr.GLB", + "land.fVegFire.tavg-u-hxy-lnd.mon.GLB", + "land.fVegLitterMortality.tavg-u-hxy-lnd.mon.GLB", + "land.fVegLitterSenescence.tavg-u-hxy-lnd.mon.GLB", + "land.fVegSoilMortality.tavg-u-hxy-lnd.mon.GLB", + "land.fVegSoilSenescence.tavg-u-hxy-lnd.mon.GLB", + "land.gpp.tavg-u-hxy-ng.mon.GLB", + "land.gpp.tavg-u-hxy-shb.mon.GLB", + "land.gpp.tavg-u-hxy-tree.mon.GLB", + "land.gppLut.tavg-u-hxy-multi.mon.GLB", + "land.grassFrac.tavg-u-hxy-u.yr.GLB", + "land.grassFracC3.tavg-u-hxy-u.mon.GLB", + "land.grassFracC4.tavg-u-hxy-u.mon.GLB", + "land.hfdsl.tavg-u-hxy-lnd.3hr.GLB", + "land.hflsLut.tavg-u-hxy-multi.mon.GLB", + "land.hfssLut.tavg-u-hxy-multi.mon.GLB", + "land.irrDem.tavg-u-hxy-u.day.GLB", + "land.irrGw.tavg-u-hxy-u.day.GLB", + "land.irrLut.tavg-u-hxy-multi.mon.GLB", + "land.irrLut.tavg-u-hxy-u.day.GLB", + "land.irrSurf.tavg-u-hxy-u.day.GLB", + "land.laiLut.tavg-u-hxy-multi.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.3hr.GLB", + "land.mrros.tavg-u-hxy-lnd.3hr.GLB", + "land.mrsol.tavg-d100cm-hxy-lnd.3hr.GLB", + "land.mrsolLut.tavg-d10cm-hxy-multi.mon.GLB", + "land.nbpLut.tavg-u-hxy-multi.mon.GLB", + "land.nLeaf.tavg-u-hxy-lnd.mon.GLB", + "land.nLitterCwd.tavg-u-hxy-lnd.mon.GLB", + "land.nLitterSubSurf.tavg-u-hxy-lnd.mon.GLB", + "land.nLitterSurf.tavg-u-hxy-lnd.mon.GLB", + "land.nMineralNH4.tavg-u-hxy-lnd.mon.GLB", + "land.nMineralNO3.tavg-u-hxy-lnd.mon.GLB", + "land.nOther.tavg-u-hxy-lnd.mon.GLB", + "land.npp.tavg-u-hxy-ng.mon.GLB", + "land.npp.tavg-u-hxy-shb.mon.GLB", + "land.npp.tavg-u-hxy-tree.mon.GLB", + "land.nppLeaf.tavg-u-hxy-lnd.mon.GLB", + "land.nppLut.tavg-u-hxy-multi.mon.GLB", + "land.nppOther.tavg-u-hxy-lnd.mon.GLB", + "land.nppRoot.tavg-u-hxy-lnd.mon.GLB", + "land.nppStem.tavg-u-hxy-lnd.mon.GLB", + "land.nppVgt.tavg-u-hxy-multi.day.GLB", + "land.nRoot.tavg-u-hxy-lnd.mon.GLB", + "land.nStem.tavg-u-hxy-lnd.mon.GLB", + "land.orog.tavg-u-hxy-is.mon.ATA", + "land.orog.tavg-u-hxy-is.mon.GRL", + "land.orog.tavg-u-hxy-is.yr.ATA", + "land.orog.tavg-u-hxy-is.yr.GRL", + "land.pastureFracC3.tavg-u-hxy-u.mon.GLB", + "land.pastureFracC4.tavg-u-hxy-u.mon.GLB", + "land.qgwr.tavg-u-hxy-lnd.day.GLB", + "land.ra.tavg-u-hxy-ng.mon.GLB", + "land.ra.tavg-u-hxy-shb.mon.GLB", + "land.ra.tavg-u-hxy-tree.mon.GLB", + "land.raLeaf.tavg-u-hxy-lnd.mon.GLB", + "land.raLut.tavg-u-hxy-multi.mon.GLB", + "land.raOther.tavg-u-hxy-lnd.mon.GLB", + "land.raRoot.tavg-u-hxy-lnd.mon.GLB", + "land.raStem.tavg-u-hxy-lnd.mon.GLB", + "land.raVgt.tavg-u-hxy-multi.day.GLB", + "land.rh.tavg-u-hxy-ng.mon.GLB", + "land.rh.tavg-u-hxy-shb.mon.GLB", + "land.rh.tavg-u-hxy-tree.mon.GLB", + "land.rhLitter.tavg-u-hxy-lnd.mon.GLB", + "land.rhLut.tavg-u-hxy-multi.mon.GLB", + "land.rhSoil.tavg-u-hxy-lnd.mon.GLB", + "land.rhVgt.tavg-u-hxy-multi.day.GLB", + "land.rzwc.tavg-u-hxy-lnd.day.GLB", + "land.sftgif.tavg-u-hxy-u.yr.ATA", + "land.sftgif.tavg-u-hxy-u.yr.GRL", + "land.shrubFrac.tavg-u-hxy-u.yr.GLB", + "land.sw.tavg-u-hxy-lnd.day.GLB", + "land.sweLut.tavg-u-hxy-multi.mon.GLB", + "land.tasLut.tavg-h2m-hxy-multi.mon.GLB", + "land.tran.tavg-u-hxy-u.3hr.GLB", + "land.treeFrac.tavg-u-hxy-u.yr.GLB", + "land.treeFracBdlDcd.tavg-u-hxy-u.mon.GLB", + "land.treeFracBdlEvg.tavg-u-hxy-u.mon.GLB", + "land.treeFracNdlDcd.tavg-u-hxy-u.mon.GLB", + "land.treeFracNdlEvg.tavg-u-hxy-u.mon.GLB", + "land.tsLut.tavg-u-hxy-multi.mon.GLB", + "land.vegHeight.tavg-u-hxy-ng.mon.GLB", + "land.vegHeight.tavg-u-hxy-shb.mon.GLB", + "land.wetlandCH4cons.tavg-u-hxy-lnd.mon.GLB", + "land.wetlandCH4prod.tavg-u-hxy-lnd.mon.GLB", + "land.wetlandFrac.tavg-u-hxy-u.mon.GLB", + "landIce.acabf.tavg-u-hxy-is.mon.ATA", + "landIce.acabf.tavg-u-hxy-is.mon.GRL", + "landIce.acabf.tavg-u-hxy-is.yr.ATA", + "landIce.acabf.tavg-u-hxy-is.yr.GRL", + "landIce.agesno.tavg-u-hxy-lnd.mon.GLB", + "landIce.hfdsn.tavg-u-hxy-lnd.day.GLB", + "landIce.hfgeoubed.tavg-u-hxy-gis.yr.ATA", + "landIce.hfgeoubed.tavg-u-hxy-gis.yr.GRL", + "landIce.hfgeoubed.ti-u-hxy-gis.fx.ATA", + "landIce.iareafl.tavg-u-hm-fis.yr.ATA", + "landIce.iareafl.tavg-u-hm-fis.yr.GRL", + "landIce.iareagr.tavg-u-hm-gis.yr.ATA", + "landIce.iareagr.tavg-u-hm-gis.yr.GRL", + "landIce.icem.tavg-u-hxy-is.mon.ATA", + "landIce.icem.tavg-u-hxy-is.mon.GRL", + "landIce.libmassbf.tavg-u-hxy-fis.mon.ATA", + "landIce.libmassbf.tavg-u-hxy-fis.mon.GRL", + "landIce.libmassbf.tavg-u-hxy-fis.yr.ATA", + "landIce.libmassbf.tavg-u-hxy-fis.yr.GRL", + "landIce.libmassbf.tavg-u-hxy-gis.mon.ATA", + "landIce.libmassbf.tavg-u-hxy-gis.mon.GRL", + "landIce.libmassbf.tavg-u-hxy-gis.yr.ATA", + "landIce.libmassbf.tavg-u-hxy-gis.yr.GRL", + "landIce.licalvf.tavg-u-hxy-is.mon.ATA", + "landIce.licalvf.tavg-u-hxy-is.mon.GRL", + "landIce.licalvf.tavg-u-hxy-is.yr.ATA", + "landIce.licalvf.tavg-u-hxy-is.yr.GRL", + "landIce.lifmassbf.tavg-u-hxy-is.mon.ATA", + "landIce.lifmassbf.tavg-u-hxy-is.mon.GRL", + "landIce.lifmassbf.tavg-u-hxy-is.yr.ATA", + "landIce.lifmassbf.tavg-u-hxy-is.yr.GRL", + "landIce.lim.tavg-u-hm-is.yr.ATA", + "landIce.lim.tavg-u-hm-is.yr.GRL", + "landIce.limnsw.tavg-u-hm-is.yr.ATA", + "landIce.limnsw.tavg-u-hm-is.yr.GRL", + "landIce.litempbot.tavg-u-hxy-fis.mon.ATA", + "landIce.litempbot.tavg-u-hxy-fis.mon.GRL", + "landIce.litempbot.tavg-u-hxy-fis.yr.ATA", + "landIce.litempbot.tavg-u-hxy-fis.yr.GRL", + "landIce.litempbot.tavg-u-hxy-gis.mon.ATA", + "landIce.litempbot.tavg-u-hxy-gis.mon.GRL", + "landIce.litempbot.tavg-u-hxy-gis.yr.ATA", + "landIce.litempbot.tavg-u-hxy-gis.yr.GRL", + "landIce.litemptop.tavg-u-hxy-is.mon.ATA", + "landIce.litemptop.tavg-u-hxy-is.mon.GRL", + "landIce.litemptop.tavg-u-hxy-is.yr.ATA", + "landIce.litemptop.tavg-u-hxy-is.yr.GRL", + "landIce.lithk.tavg-u-hxy-is.yr.ATA", + "landIce.lithk.tavg-u-hxy-is.yr.GRL", + "landIce.lithk.ti-u-hxy-is.fx.ATA", + "landIce.lwsnl.tavg-u-hxy-lnd.day.GLB", + "landIce.lwsnl.tavg-u-hxy-lnd.mon.GLB", + "landIce.modelcellareai.tavg-u-hxy-u.yr.ATA", + "landIce.modelcellareai.tavg-u-hxy-u.yr.GRL", + "landIce.mrroLi.tavg-u-hxy-is.mon.ATA", + "landIce.mrroLi.tavg-u-hxy-is.mon.GRL", + "landIce.pflw.tavg-u-hxy-lnd.day.GLB", + "landIce.sbl.tavg-u-hxy-is.mon.ATA", + "landIce.sbl.tavg-u-hxy-is.mon.GRL", + "landIce.sbl.tavg-u-hxy-u.day.GLB", + "landIce.sftflf.tavg-u-hxy-u.yr.ATA", + "landIce.sftflf.tavg-u-hxy-u.yr.GRL", + "landIce.sftgrf.tavg-u-hxy-u.yr.ATA", + "landIce.sftgrf.tavg-u-hxy-u.yr.GRL", + "landIce.snc.tavg-u-hxy-is.mon.ATA", + "landIce.snc.tavg-u-hxy-is.mon.GRL", + "landIce.snc.tavg-u-hxy-is.yr.ATA", + "landIce.snc.tavg-u-hxy-is.yr.GRL", + "landIce.snc.tavg-u-hxy-lnd.day.GLB", + "landIce.snd.tavg-u-hxy-lnd.day.GLB", + "landIce.snicem.tavg-u-hxy-is.mon.ATA", + "landIce.snm.tavg-u-hxy-is.mon.ATA", + "landIce.snm.tavg-u-hxy-is.mon.GRL", + "landIce.snm.tavg-u-hxy-lnd.day.GLB", + "landIce.snrefr.tavg-u-hxy-is.mon.ATA", + "landIce.snrefr.tavg-u-hxy-is.mon.GRL", + "landIce.strbasemag.tavg-u-hxy-is.yr.ATA", + "landIce.strbasemag.tavg-u-hxy-is.yr.GRL", + "landIce.tendacabf.tavg-u-hm-is.yr.ATA", + "landIce.tendacabf.tavg-u-hm-is.yr.GRL", + "landIce.tendlibmassbf.tavg-u-hm-is.yr.ATA", + "landIce.tendlibmassbf.tavg-u-hm-is.yr.GRL", + "landIce.tendlicalvf.tavg-u-hm-is.yr.ATA", + "landIce.tendlicalvf.tavg-u-hm-is.yr.GRL", + "landIce.topg.tavg-u-hxy-gis.yr.ATA", + "landIce.topg.tavg-u-hxy-gis.yr.GRL", + "landIce.topg.ti-u-hxy-gis.fx.ATA", + "landIce.tpf.tavg-u-hxy-lnd.day.GLB", + "landIce.tsn.tavg-u-hxy-is.mon.ATA", + "landIce.tsn.tavg-u-hxy-is.mon.GRL", + "landIce.tsn.tavg-u-hxy-lnd.day.GLB", + "landIce.xvelbase.tavg-u-hxy-is.yr.ATA", + "landIce.xvelbase.tavg-u-hxy-is.yr.GRL", + "landIce.xvelmean.tavg-u-hxy-is.yr.ATA", + "landIce.xvelmean.tavg-u-hxy-is.yr.GRL", + "landIce.xvelsurf.tavg-u-hxy-is.yr.ATA", + "landIce.xvelsurf.tavg-u-hxy-is.yr.GRL", + "landIce.yvelbase.tavg-u-hxy-is.yr.ATA", + "landIce.yvelbase.tavg-u-hxy-is.yr.GRL", + "landIce.yvelmean.tavg-u-hxy-is.yr.ATA", + "landIce.yvelmean.tavg-u-hxy-is.yr.GRL", + "landIce.yvelsurf.tavg-u-hxy-is.yr.ATA", + "landIce.yvelsurf.tavg-u-hxy-is.yr.GRL", + "landIce.zvelbase.tavg-u-hxy-is.yr.ATA", + "landIce.zvelbase.tavg-u-hxy-is.yr.GRL", + "landIce.zvelsurf.tavg-u-hxy-is.yr.ATA", + "landIce.zvelsurf.tavg-u-hxy-is.yr.GRL", + "ocean.evspsbl.tavg-u-hxy-ifs.mon.GLB", + "ocean.hfacrossline.tavg-u-ht-sea.mon.GLB", + "ocean.hfevapds.tavg-u-hxy-ifs.mon.GLB", + "ocean.hfibthermds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfibthermds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfrainds.tavg-u-hxy-ifs.mon.GLB", + "ocean.hfrunoffds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfrunoffds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfsnthermds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfsnthermds.tavg-u-hxy-sea.mon.GLB", + "ocean.mfo.tavg-u-ht-sea.mon.GLB", + "ocean.sf6.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfacrossline.tavg-u-ht-sea.mon.GLB", + "ocean.sfdsi.tavg-u-hxy-sea.mon.GLB", + "ocean.sfriver.tavg-u-hxy-sea.mon.GLB", + "ocean.siflfwbot.tavg-u-hxy-sea.mon.GLB", + "ocean.so.tavg-ol-hxy-sea.day.GLB", + "ocean.t17d.tavg-u-hxy-sea.mon.GLB", + "ocean.t20d.tavg-u-hxy-sea.mon.GLB", + "ocean.tnkebto.tavg-u-hxy-sea.yr.GLB", + "ocean.vsf.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfcorr.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfevap.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfpr.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfriver.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfsit.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.arag.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.arag.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.calc.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.calc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chl.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.chlcalc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.detoc.tavg-ol-hxy-sea.day.GLB", + "ocnBgchem.dissoc.tavg-ol-hxy-sea.day.GLB", + "ocnBgchem.dmso.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.epn.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.epp.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.exparagob.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.expcalcob.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.expcob.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.expfeob.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.expnob.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.exppob.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.expsiob.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fgdms.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.frfe.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.frn.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppcalc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppdiat.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppdiaz.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppmisc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppnano.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppnitrate.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intpppico.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limfecalc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limfediat.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limfediaz.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limfemisc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limfepico.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limirrcalc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limirrdiat.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limirrdiaz.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limirrmisc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limirrpico.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limncalc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limndiat.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limndiaz.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limnmisc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limnpico.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.o2.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.o2sat.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.ph.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.pp.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.sialgc.tavg-u-hxy-si.mon.GLB", + "ocnBgchem.sichl.tavg-u-hxy-si.mon.GLB", + "ocnBgchem.sigpp.tavg-u-hxy-si.mon.GLB", + "ocnBgchem.sino3.tavg-u-hxy-si.mon.GLB", + "ocnBgchem.sisi.tavg-u-hxy-si.mon.GLB", + "seaIce.sfdsi.tavg-u-hxy-si.mon.GLB", + "seaIce.siage.tavg-u-hxy-si.mon.GLB", + "seaIce.siarea.tavg-u-hm-u.day.NH", + "seaIce.siarea.tavg-u-hm-u.day.SH", + "seaIce.sicompstren.tavg-u-hxy-si.mon.GLB", + "seaIce.sidivvel.tpt-u-hxy-si.mon.GLB", + "seaIce.sidmasstranx.tavg-u-hxy-u.mon.GLB", + "seaIce.sidmasstrany.tavg-u-hxy-u.mon.GLB", + "seaIce.sidragbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidragtop.tavg-u-hxy-si.mon.GLB", + "seaIce.siextent.tavg-u-hm-u.day.NH", + "seaIce.siextent.tavg-u-hm-u.day.SH", + "seaIce.sifb.tavg-u-hxy-si.day.GLB", + "seaIce.sifb.tavg-u-hxy-si.mon.GLB", + "seaIce.siflfwbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflfwdrain.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcecoriolx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcecorioly.tavg-u-hxy-si.mon.GLB", + "seaIce.siforceintstrx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforceintstry.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcetiltx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcetilty.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdconc.tavg-u-hxy-si.day.GLB", + "seaIce.siitdsnconc.tavg-u-hxy-si.day.GLB", + "seaIce.siitdsnthick.tavg-u-hxy-si.day.GLB", + "seaIce.siitdthick.tavg-u-hxy-si.day.GLB", + "seaIce.simpconc.tavg-u-hxy-si.day.GLB", + "seaIce.simpeffconc.tavg-u-hxy-si.day.GLB", + "seaIce.simpeffconc.tavg-u-hxy-si.mon.GLB", + "seaIce.simprefrozen.tavg-u-hxy-simp.day.GLB", + "seaIce.simprefrozen.tavg-u-hxy-simp.mon.GLB", + "seaIce.simpthick.tavg-u-hxy-si.day.GLB", + "seaIce.simpthick.tavg-u-hxy-simp.mon.GLB", + "seaIce.sirdgconc.tavg-u-hxy-si.day.GLB", + "seaIce.sisali.tavg-u-hxy-si.day.GLB", + "seaIce.sisali.tavg-u-hxy-si.mon.GLB", + "seaIce.sisaltmass.tavg-u-hxy-si.day.GLB", + "seaIce.sishearvel.tpt-u-hxy-si.mon.GLB", + "seaIce.sisnmass.tavg-u-hm-u.day.NH", + "seaIce.sisnmass.tavg-u-hm-u.day.SH", + "seaIce.sitempbot.tavg-u-hxy-si.day.GLB", + "seaIce.sitempbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sitempsnic.tavg-u-hxy-si.day.GLB", + "seaIce.sithick.tavg-u-hxy-sir.day.GLB", + "seaIce.sithick.tavg-u-hxy-sir.mon.GLB", + "seaIce.sivol.tavg-u-hm-u.day.NH", + "seaIce.sivol.tavg-u-hm-u.day.SH" + ], + "Low": [ + "aerosol.sfpm1.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.sfpm10.tavg-h2m-hxy-u.1hr.GLB", + "atmos.hurs.tmin-h2m-hxy-crp.day.GLB", + "atmos.pr.tavg-u-hxy-crp.day.GLB", + "atmos.tas.tmax-h2m-hxy-crp.day.GLB", + "atmos.tas.tmin-h2m-hxy-crp.day.GLB", + "atmosChem.drynh3.tavg-u-hxy-u.day.GLB", + "atmosChem.drynh4.tavg-u-hxy-u.day.GLB", + "atmosChem.drynoy.tavg-u-hxy-u.day.GLB", + "atmosChem.flashrate.tavg-u-hxy-u.mon.GLB", + "atmosChem.wetnh3.tavg-u-hxy-u.day.GLB", + "atmosChem.wetnh4.tavg-u-hxy-u.day.GLB", + "atmosChem.wetnoy.tavg-u-hxy-u.day.GLB", + "land.c13Land.tavg-u-hxy-lnd.mon.GLB", + "land.c13Litter.tavg-u-hxy-lnd.mon.GLB", + "land.c13Soil.tavg-u-hxy-lnd.mon.GLB", + "land.c13Veg.tavg-u-hxy-lnd.mon.GLB", + "land.c14Land.tavg-u-hxy-lnd.mon.GLB", + "land.c14Litter.tavg-u-hxy-lnd.mon.GLB", + "land.c14Soil.tavg-u-hxy-lnd.mon.GLB", + "land.c14Veg.tavg-u-hxy-lnd.mon.GLB", + "land.c3PftFrac.tavg-u-hxy-u.mon.GLB", + "land.c4PftFrac.tavg-u-hxy-u.mon.GLB", + "land.gppc13.tavg-u-hxy-lnd.mon.GLB", + "land.gppc14.tavg-u-hxy-lnd.mon.GLB", + "land.lai.tavg-u-hxy-lnd.day.GLB", + "land.netAtmosLandC13Flux.tavg-u-hxy-lnd.mon.GLB", + "land.netAtmosLandC14Flux.tavg-u-hxy-lnd.mon.GLB", + "land.rac13.tavg-u-hxy-lnd.mon.GLB", + "land.rac14.tavg-u-hxy-lnd.mon.GLB", + "land.rhc13.tavg-u-hxy-lnd.mon.GLB", + "land.rhc14.tavg-u-hxy-lnd.mon.GLB", + "ocean.difmxybo.tavg-ol-hxy-sea.yr.GLB", + "ocean.difmxylo.tavg-ol-hxy-sea.yr.GLB", + "ocean.diftrblo.tavg-ol-hxy-sea.yr.GLB", + "ocean.diftrelo.tavg-ol-hxy-sea.yr.GLB", + "ocean.difvho.tavg-ol-hxy-sea.yr.GLB", + "ocean.difvso.tavg-ol-hxy-sea.yr.GLB", + "ocean.dispkexyfo.tavg-u-hxy-sea.yr.GLB", + "ocean.dxto.ti-u-hxy-u.fx.GLB", + "ocean.dxuo.ti-u-hxy-u.fx.GLB", + "ocean.dxvo.ti-u-hxy-u.fx.GLB", + "ocean.dyto.ti-u-hxy-u.fx.GLB", + "ocean.dyuo.ti-u-hxy-u.fx.GLB", + "ocean.dyvo.ti-u-hxy-u.fx.GLB", + "ocean.mlotstsq.tavg-u-hxy-sea.mon.GLB", + "ocean.msftmmpa.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftmmpa.tavg-rho-hyb-sea.mon.GLB", + "ocean.msftmsmpa.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftypa.tavg-ol-ht-sea.mon.GLB", + "ocean.msftypa.tavg-rho-ht-sea.mon.GLB", + "ocean.ocontempdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontempmint.tavg-u-hxy-sea.yr.GLB", + "ocean.ocontemppadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemppmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemppsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemprmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemptend.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottempdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottempmint.tavg-u-hxy-sea.yr.GLB", + "ocean.opottemppadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemppmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemppsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemprmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemptend.tavg-ol-hxy-sea.dec.GLB", + "ocean.osaltdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpsmadvect.tavg-ol-hxy-sea.mon.GLB", + "ocean.osaltpsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltrmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osalttend.tavg-ol-hxy-sea.yr.GLB", + "ocean.rsdo.tavg-ol-hxy-sea.day.GLB", + "ocean.rsdoabsorb.tavg-ol-hxy-sea.yr.GLB", + "ocean.somint.tavg-u-hxy-sea.yr.GLB", + "ocean.sossq.tavg-u-hxy-sea.mon.GLB", + "ocean.thkcelluo.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcellvo.tavg-ol-hxy-sea.mon.GLB", + "ocean.tnpeo.tavg-u-hxy-sea.yr.GLB", + "ocean.tossq.tavg-u-hxy-sea.mon.GLB", + "ocean.wo.tavg-ol-hxy-sea.day.GLB", + "ocnBgchem.dissi13c.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.dissi13c.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissi14c.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissi14cabio.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.dissi14cabio.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.expcob.tavg-u-hxy-sea.day.GLB", + "ocnBgchem.fg13co2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fg14co2abio.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intpoc.tavg-u-hxy-sea.day.GLB", + "ocnBgchem.o2.tavg-d0m-hxy-sea.day.GLB", + "ocnBgchem.o2min.tavg-u-hxy-sea.day.GLB", + "ocnBgchem.phyc.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.phycalc.tavg-ol-hxy-sea.day.GLB", + "ocnBgchem.phydiat.tavg-d0m-hxy-sea.day.GLB", + "ocnBgchem.phydiaz.tavg-d0m-hxy-sea.day.GLB", + "ocnBgchem.phymisc.tavg-d0m-hxy-sea.day.GLB", + "ocnBgchem.phynano.tavg-u-hxy-sea.day.GLB", + "ocnBgchem.phypico.tavg-ol-hxy-sea.day.GLB", + "ocnBgchem.zmeso.tavg-ol-hxy-sea.day.GLB", + "ocnBgchem.zmicro.tavg-ol-hxy-sea.day.GLB", + "ocnBgchem.zooc.tavg-ol-hxy-sea.day.GLB" + ] + }, + "scenariomip14": { + "Core": [ + "atmos.areacella.ti-u-hxy-u.fx.GLB", + "atmos.cl.tavg-al-hxy-u.mon.GLB", + "atmos.cli.tavg-al-hxy-u.mon.GLB", + "atmos.clivi.tavg-u-hxy-u.mon.GLB", + "atmos.clt.tavg-u-hxy-u.day.GLB", + "atmos.clt.tavg-u-hxy-u.mon.GLB", + "atmos.clw.tavg-al-hxy-u.mon.GLB", + "atmos.clwvi.tavg-u-hxy-u.mon.GLB", + "atmos.evspsbl.tavg-u-hxy-u.mon.GLB", + "atmos.hfls.tavg-u-hxy-u.mon.GLB", + "atmos.hfss.tavg-u-hxy-u.mon.GLB", + "atmos.hur.tavg-p19-hxy-air.mon.GLB", + "atmos.hur.tavg-p19-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.6hr.GLB", + "atmos.hurs.tavg-h2m-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.mon.GLB", + "atmos.hus.tavg-p19-hxy-u.day.GLB", + "atmos.hus.tavg-p19-hxy-u.mon.GLB", + "atmos.huss.tavg-h2m-hxy-u.day.GLB", + "atmos.huss.tavg-h2m-hxy-u.mon.GLB", + "atmos.huss.tpt-h2m-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.1hr.GLB", + "atmos.pr.tavg-u-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.day.GLB", + "atmos.pr.tavg-u-hxy-u.mon.GLB", + "atmos.prc.tavg-u-hxy-u.mon.GLB", + "atmos.prsn.tavg-u-hxy-u.mon.GLB", + "atmos.prw.tavg-u-hxy-u.mon.GLB", + "atmos.ps.tavg-u-hxy-u.day.GLB", + "atmos.ps.tavg-u-hxy-u.mon.GLB", + "atmos.psl.tavg-u-hxy-u.day.GLB", + "atmos.psl.tavg-u-hxy-u.mon.GLB", + "atmos.rlds.tavg-u-hxy-u.mon.GLB", + "atmos.rldscs.tavg-u-hxy-u.mon.GLB", + "atmos.rlus.tavg-u-hxy-u.mon.GLB", + "atmos.rluscs.tavg-u-hxy-u.mon.GLB", + "atmos.rlut.tavg-u-hxy-u.mon.GLB", + "atmos.rlutcs.tavg-u-hxy-u.mon.GLB", + "atmos.rsds.tavg-u-hxy-u.day.GLB", + "atmos.rsds.tavg-u-hxy-u.mon.GLB", + "atmos.rsdscs.tavg-u-hxy-u.mon.GLB", + "atmos.rsdt.tavg-u-hxy-u.mon.GLB", + "atmos.rsus.tavg-u-hxy-u.mon.GLB", + "atmos.rsuscs.tavg-u-hxy-u.mon.GLB", + "atmos.rsut.tavg-u-hxy-u.mon.GLB", + "atmos.rsutcs.tavg-u-hxy-u.mon.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.day.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.mon.GLB", + "atmos.sftlf.ti-u-hxy-u.fx.GLB", + "atmos.ta.tavg-p19-hxy-air.day.GLB", + "atmos.ta.tavg-p19-hxy-air.mon.GLB", + "atmos.ta.tpt-p3-hxy-air.6hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.day.GLB", + "atmos.tas.tavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tmax-h2m-hxy-u.day.GLB", + "atmos.tas.tmaxavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tmin-h2m-hxy-u.day.GLB", + "atmos.tas.tminavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tpt-h2m-hxy-u.3hr.GLB", + "atmos.tauu.tavg-u-hxy-u.mon.GLB", + "atmos.tauv.tavg-u-hxy-u.mon.GLB", + "atmos.ts.tavg-u-hxy-u.mon.GLB", + "atmos.ua.tavg-p19-hxy-air.day.GLB", + "atmos.ua.tavg-p19-hxy-air.mon.GLB", + "atmos.ua.tpt-p3-hxy-air.6hr.GLB", + "atmos.uas.tavg-h10m-hxy-u.day.GLB", + "atmos.uas.tavg-h10m-hxy-u.mon.GLB", + "atmos.uas.tpt-h10m-hxy-u.3hr.GLB", + "atmos.va.tavg-p19-hxy-air.day.GLB", + "atmos.va.tavg-p19-hxy-air.mon.GLB", + "atmos.va.tpt-p3-hxy-air.6hr.GLB", + "atmos.vas.tavg-h10m-hxy-u.day.GLB", + "atmos.vas.tavg-h10m-hxy-u.mon.GLB", + "atmos.vas.tpt-h10m-hxy-u.3hr.GLB", + "atmos.wap.tavg-p19-hxy-air.mon.GLB", + "atmos.wap.tavg-p19-hxy-u.day.GLB", + "atmos.zg.tavg-p19-hxy-air.day.GLB", + "atmos.zg.tavg-p19-hxy-air.mon.GLB", + "land.evspsblsoi.tavg-u-hxy-lnd.mon.GLB", + "land.evspsblveg.tavg-u-hxy-lnd.mon.GLB", + "land.lai.tavg-u-hxy-lnd.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.mon.GLB", + "land.mrros.tavg-u-hxy-lnd.mon.GLB", + "land.mrso.tavg-u-hxy-lnd.mon.GLB", + "land.mrsofc.ti-u-hxy-lnd.fx.GLB", + "land.mrsol.tavg-d10cm-hxy-lnd.mon.GLB", + "land.orog.ti-u-hxy-u.fx.GLB", + "land.rootd.ti-u-hxy-lnd.fx.GLB", + "land.sftgif.ti-u-hxy-u.fx.GLB", + "land.slthick.ti-sl-hxy-lnd.fx.GLB", + "landIce.mrfso.tavg-u-hxy-lnd.mon.GLB", + "landIce.snc.tavg-u-hxy-lnd.mon.GLB", + "landIce.snw.tavg-u-hxy-lnd.mon.GLB", + "ocean.areacello.ti-u-hxy-u.fx.GLB", + "ocean.basin.ti-u-hxy-u.fx.GLB", + "ocean.bigthetao.tavg-ol-hxy-sea.mon.GLB", + "ocean.deptho.ti-u-hxy-sea.fx.GLB", + "ocean.hfds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfgeou.ti-u-hxy-sea.fx.GLB", + "ocean.masscello.tavg-ol-hxy-sea.mon.GLB", + "ocean.masscello.ti-ol-hxy-sea.fx.GLB", + "ocean.mlotst.tavg-u-hxy-sea.mon.GLB", + "ocean.sftof.ti-u-hxy-u.fx.GLB", + "ocean.so.tavg-ol-hxy-sea.mon.GLB", + "ocean.sos.tavg-u-hxy-sea.day.GLB", + "ocean.sos.tavg-u-hxy-sea.mon.GLB", + "ocean.tauuo.tavg-u-hxy-sea.mon.GLB", + "ocean.tauvo.tavg-u-hxy-sea.mon.GLB", + "ocean.thetao.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcello.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcello.ti-ol-hxy-sea.fx.GLB", + "ocean.tos.tavg-u-hxy-sea.day.GLB", + "ocean.tos.tavg-u-hxy-sea.mon.GLB", + "ocean.umo.tavg-ol-hxy-sea.mon.GLB", + "ocean.uo.tavg-ol-hxy-sea.mon.GLB", + "ocean.vmo.tavg-ol-hxy-sea.mon.GLB", + "ocean.vo.tavg-ol-hxy-sea.mon.GLB", + "ocean.wmo.tavg-ol-hxy-sea.mon.GLB", + "ocean.wo.tavg-ol-hxy-sea.mon.GLB", + "ocean.zos.tavg-u-hxy-sea.day.GLB", + "ocean.zos.tavg-u-hxy-sea.mon.GLB", + "ocean.zostoga.tavg-u-hm-sea.mon.GLB", + "seaIce.siconc.tavg-u-hxy-u.day.GLB", + "seaIce.siconc.tavg-u-hxy-u.mon.GLB", + "seaIce.simass.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-si.mon.GLB", + "seaIce.sitimefrac.tavg-u-hxy-sea.mon.GLB", + "seaIce.siu.tavg-u-hxy-si.mon.GLB", + "seaIce.siv.tavg-u-hxy-si.mon.GLB", + "seaIce.snd.tavg-u-hxy-sn.mon.GLB", + "seaIce.ts.tavg-u-hxy-si.mon.GLB" + ], + "High": [ + "aerosol.abs550aer.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550bc.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550dust.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550no3.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550oa.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550so4.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550ss.tavg-u-hxy-u.mon.GLB", + "aerosol.airmass.tavg-al-hxy-u.mon.GLB", + "aerosol.aoanh.tavg-al-hxy-u.mon.NH", + "aerosol.bry.tavg-p39-hy-air.mon.GLB", + "aerosol.bs550aer.tpt-al-hxy-u.6hr.GLB", + "aerosol.c2h6.tavg-al-hxy-u.mon.GLB", + "aerosol.c3h6.tavg-al-hxy-u.mon.GLB", + "aerosol.c3h8.tavg-al-hxy-u.mon.GLB", + "aerosol.ccldncl.tavg-u-hxy-ccl.mon.GLB", + "aerosol.ccn.tavg-u-hxy-ccl.mon.30S-90S", + "aerosol.ccn.tavg-u-hxy-ccl.mon.GLB", + "aerosol.ccn1.tavg-al-hxy-u.mon.30S-90S", + "aerosol.ccn1.tavg-al-hxy-u.mon.GLB", + "aerosol.ccnp02.tavg-al-hxy-u.mon.30S-90S", + "aerosol.ccnp02.tavg-al-hxy-u.mon.GLB", + "aerosol.cdnc.tavg-al-hxy-u.mon.30S-90S", + "aerosol.cdnc.tavg-al-hxy-u.mon.GLB", + "aerosol.cfc114.tavg-al-hxy-u.mon.GLB", + "aerosol.ch3coch3.tavg-al-hxy-u.mon.GLB", + "aerosol.cheaqpso4.tavg-al-hxy-u.mon.GLB", + "aerosol.chegpso4.tavg-al-hxy-u.mon.GLB", + "aerosol.chepasoa.tavg-u-hxy-u.mon.GLB", + "aerosol.chepsoa.tavg-u-hxy-u.mon.GLB", + "aerosol.cly.tavg-p39-hy-air.mon.GLB", + "aerosol.co.tavg-al-hxy-u.mon.GLB", + "aerosol.co.tavg-h2m-hxy-u.day.GLB", + "aerosol.cod.tavg-u-hxy-u.day.GLB", + "aerosol.cod.tavg-u-hxy-u.mon.30S-90S", + "aerosol.cod.tavg-u-hxy-u.mon.GLB", + "aerosol.conccn.tavg-al-hxy-u.mon.GLB", + "aerosol.conccn.tpt-u-hs-u.3hr.GLB", + "aerosol.depdust.tavg-u-hxy-u.mon.GLB", + "aerosol.drybc.tavg-u-hxy-u.mon.GLB", + "aerosol.drydust.tavg-u-hxy-u.mon.GLB", + "aerosol.dryno3.tavg-u-hxy-u.mon.GLB", + "aerosol.dryo3.tavg-u-hxy-u.mon.GLB", + "aerosol.dryoa.tavg-u-hxy-u.mon.GLB", + "aerosol.dryso2.tavg-u-hxy-u.mon.GLB", + "aerosol.dryso4.tavg-u-hxy-u.mon.GLB", + "aerosol.dryss.tavg-u-hxy-u.mon.GLB", + "aerosol.ec550aer.tavg-al-hxy-u.mon.GLB", + "aerosol.ec550aer.tpt-u-hxy-u.6hr.GLB", + "aerosol.emiaco.tavg-u-hxy-u.mon.GLB", + "aerosol.emianox.tavg-u-hxy-u.mon.GLB", + "aerosol.emiaoa.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbbc.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbch4.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbco.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbdms.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbnh3.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbnox.tavg-u-hxy-u.mon.GLB", + "aerosol.emibboa.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbso2.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbvoc.tavg-u-hxy-u.mon.GLB", + "aerosol.emibc.tavg-u-hxy-u.mon.GLB", + "aerosol.emibvoc.tavg-u-hxy-u.mon.GLB", + "aerosol.emico.tavg-u-hxy-u.mon.GLB", + "aerosol.emidms.tavg-u-hxy-u.mon.30S-90S", + "aerosol.emidms.tavg-u-hxy-u.mon.GLB", + "aerosol.emidust.tavg-u-hxy-u.mon.GLB", + "aerosol.emiisop.tavg-u-hxy-u.mon.GLB", + "aerosol.emilnox.tavg-al-hxy-u.mon.GLB", + "aerosol.eminh3.tavg-u-hxy-u.mon.GLB", + "aerosol.eminox.tavg-u-hxy-u.mon.GLB", + "aerosol.emioa.tavg-u-hxy-u.mon.GLB", + "aerosol.emiso2.tavg-u-hxy-u.mon.GLB", + "aerosol.emiso4.tavg-u-hxy-u.mon.GLB", + "aerosol.emiss.tavg-u-hxy-u.mon.30S-90S", + "aerosol.emiss.tavg-u-hxy-u.mon.GLB", + "aerosol.emivoc.tavg-u-hxy-u.mon.GLB", + "aerosol.h2o.tavg-al-hxy-u.mon.GLB", + "aerosol.h2o.tavg-p39-hy-air.mon.GLB", + "aerosol.hcfc22.tavg-al-hxy-u.mon.GLB", + "aerosol.hcho.tavg-al-hxy-u.mon.GLB", + "aerosol.hcl.tavg-al-hxy-u.mon.GLB", + "aerosol.hcl.tavg-p39-hy-air.mon.GLB", + "aerosol.hfc125.tavg-al-hxy-u.mon.GLB", + "aerosol.hfc134a.tavg-al-hxy-u.mon.GLB", + "aerosol.hno3.tavg-al-hxy-u.mon.GLB", + "aerosol.hno3.tavg-p39-hy-air.mon.GLB", + "aerosol.ho2.tavg-p39-hy-air.mon.GLB", + "aerosol.isop.tavg-al-hxy-u.mon.GLB", + "aerosol.jno2.tavg-al-hxy-u.mon.GLB", + "aerosol.lossch4.tavg-al-hxy-u.mon.GLB", + "aerosol.lossco.tavg-al-hxy-u.mon.GLB", + "aerosol.lossn2o.tavg-al-hxy-u.mon.GLB", + "aerosol.lwp.tavg-u-hxy-u.mon.GLB", + "aerosol.mmraerh2o.tavg-al-hxy-u.mon.GLB", + "aerosol.mmraerh2o.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmraerh2o.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrbc.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrbc.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrbc.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrbc.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrdust.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrdust.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrdust.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrdust.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrnh4.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrnh4.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrnh4.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrnh4.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrno3.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrno3.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrno3.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrno3.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmroa.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmroa.tavg-al-hxy-u.mon.GLB", + "aerosol.mmroa.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmroa.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrpm1.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrpm1.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrpm2p5.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrpm2p5.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrso4.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrso4.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrso4.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrso4.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrsoa.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrsoa.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrsoa.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrss.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrss.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrss.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrss.tpt-h2m-hs-u.3hr.GLB", + "aerosol.nh50.tavg-al-hxy-u.mon.GLB", + "aerosol.no.tavg-al-hxy-u.mon.GLB", + "aerosol.no2.tavg-al-hxy-u.mon.GLB", + "aerosol.no2.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.noy.tavg-p39-hy-air.mon.GLB", + "aerosol.o3.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.o3.tmax-h2m-hxy-u.day.GLB", + "aerosol.o3loss.tavg-al-hxy-u.mon.GLB", + "aerosol.o3prod.tavg-al-hxy-u.mon.GLB", + "aerosol.od443aer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550aer.tavg-u-hxy-u.day.GLB", + "aerosol.od550aer.tavg-u-hxy-u.mon.30S-90S", + "aerosol.od550aer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550aerh2o.tavg-u-hxy-u.mon.GLB", + "aerosol.od550bb.tavg-u-hxy-u.mon.GLB", + "aerosol.od550bc.tavg-u-hxy-u.mon.GLB", + "aerosol.od550csaer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550dust.tavg-u-hxy-u.mon.GLB", + "aerosol.od550lt1aer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550no3.tavg-u-hxy-u.mon.GLB", + "aerosol.od550oa.tavg-u-hxy-u.mon.GLB", + "aerosol.od550so4.tavg-u-hxy-u.mon.GLB", + "aerosol.od550soa.tavg-u-hxy-u.mon.GLB", + "aerosol.od550ss.tavg-u-hxy-u.mon.GLB", + "aerosol.od865aer.tavg-u-hxy-u.mon.GLB", + "aerosol.oh.tavg-al-hxy-u.mon.GLB", + "aerosol.oh.tavg-p39-hy-air.mon.GLB", + "aerosol.pan.tavg-al-hxy-u.mon.GLB", + "aerosol.photo1d.tavg-al-hxy-u.mon.GLB", + "aerosol.pod0.tsum-u-hxy-u.mon.GLB", + "aerosol.reffccwctop.tavg-u-hxy-cl.mon.GLB", + "aerosol.reffclwtop.tavg-u-hxy-cl.mon.30S-90S", + "aerosol.reffclwtop.tavg-u-hxy-cl.mon.GLB", + "aerosol.rluscsaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rlutaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rlutcsaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rsutaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rsutcsaf.tavg-u-hxy-u.mon.GLB", + "aerosol.sfpm1.tavg-h2m-hxy-u.day.GLB", + "aerosol.sfpm10.tavg-al-hxy-u.mon.30S-90S", + "aerosol.sfpm10.tavg-al-hxy-u.mon.GLB", + "aerosol.sfpm10.tavg-h2m-hxy-u.day.GLB", + "aerosol.sfpm25.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.sfpm25.tavg-h2m-hxy-u.day.GLB", + "aerosol.so2.tavg-al-hxy-u.mon.30S-90S", + "aerosol.so2.tavg-al-hxy-u.mon.GLB", + "aerosol.so2.tavg-h2m-hxy-u.day.GLB", + "aerosol.so2.tpt-h2m-hs-u.3hr.GLB", + "aerosol.tatp.tavg-u-hxy-u.mon.GLB", + "aerosol.toz.tavg-u-hxy-u.day.GLB", + "aerosol.toz.tavg-u-hxy-u.mon.GLB", + "aerosol.tropoz.tavg-u-hxy-u.mon.GLB", + "aerosol.ttop.tavg-u-hxy-cl.mon.GLB", + "aerosol.ua.tavg-10hPa-hxy-air.day.GLB", + "aerosol.vt100.tavg-100hPa-hy-air.mon.GLB", + "aerosol.wa.tavg-al-hxy-u.mon.GLB", + "aerosol.wetbc.tavg-u-hxy-u.mon.GLB", + "aerosol.wetdust.tavg-u-hxy-u.mon.GLB", + "aerosol.wetoa.tavg-u-hxy-u.mon.GLB", + "aerosol.wetso2.tavg-u-hxy-u.mon.GLB", + "aerosol.wetso4.tavg-u-hxy-u.mon.GLB", + "aerosol.wetss.tavg-u-hxy-u.mon.GLB", + "aerosol.zg.tavg-10hPa-hxy-air.day.GLB", + "atmos.albisccp.tavg-u-hxy-cl.mon.30S-90S", + "atmos.bldep.tavg-u-hxy-u.mon.GLB", + "atmos.bldep.tmax-u-hxy-u.day.GLB", + "atmos.bldep.tmin-u-hxy-u.day.GLB", + "atmos.bldep.tpt-u-hxy-u.3hr.GLB", + "atmos.cl.tavg-al-hxy-u.day.GLB", + "atmos.cl.tavg-al-hxy-u.mon.30S-90S", + "atmos.clc.tavg-al-hxy-u.mon.30S-90S", + "atmos.clc.tavg-al-hxy-u.mon.GLB", + "atmos.clcalipso.tavg-220hPa-hxy-air.mon.30S-90S", + "atmos.clcalipso.tavg-220hPa-hxy-air.mon.GLB", + "atmos.clcalipso.tavg-560hPa-hxy-air.mon.30S-90S", + "atmos.clcalipso.tavg-560hPa-hxy-air.mon.GLB", + "atmos.clcalipso.tavg-840hPa-hxy-air.mon.30S-90S", + "atmos.clcalipso.tavg-840hPa-hxy-air.mon.GLB", + "atmos.clcalipso.tavg-h40-hxy-air.mon.30S-90S", + "atmos.clcalipso.tavg-h40-hxy-air.mon.GLB", + "atmos.cldnci.tavg-u-hxy-cl.mon.GLB", + "atmos.cldncl.tavg-u-hxy-cl.mon.GLB", + "atmos.cldnvi.tavg-u-hxy-u.day.GLB", + "atmos.cldnvi.tavg-u-hxy-u.mon.GLB", + "atmos.cli.tavg-al-hxy-u.day.GLB", + "atmos.cli.tavg-al-hxy-u.mon.30S-90S", + "atmos.clic.tavg-al-hxy-u.mon.30S-90S", + "atmos.clis.tavg-al-hxy-u.mon.30S-90S", + "atmos.clisccp.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clisccp.tavg-p7c-hxy-air.mon.GLB", + "atmos.clivi.tavg-u-hxy-u.3hr.GLB", + "atmos.clivi.tavg-u-hxy-u.day.GLB", + "atmos.clivi.tavg-u-hxy-u.mon.30S-90S", + "atmos.clivimodis.tavg-u-hxy-u.mon.30S-90S", + "atmos.clivimodis.tavg-u-hxy-u.mon.GLB", + "atmos.clmodis.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clmodis.tavg-p7c-hxy-air.mon.GLB", + "atmos.clmodisice.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clmodisice.tavg-p7c-hxy-air.mon.GLB", + "atmos.clmodisiceReff.tavg-u-hxy-u.mon.GLB", + "atmos.clmodisliquid.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clmodisliquid.tavg-p7c-hxy-air.mon.GLB", + "atmos.clmodisliquidReff.tavg-u-hxy-u.mon.GLB", + "atmos.cls.tavg-al-hxy-u.mon.30S-90S", + "atmos.clt.tavg-u-hxy-lnd.day.GLB", + "atmos.clt.tavg-u-hxy-u.1hr.30S-90S", + "atmos.clt.tavg-u-hxy-u.3hr.GLB", + "atmos.clt.tavg-u-hxy-u.mon.30S-90S", + "atmos.cltc.tavg-u-hxy-u.mon.GLB", + "atmos.cltcalipso.tavg-u-hxy-u.day.GLB", + "atmos.cltcalipso.tavg-u-hxy-u.mon.30S-90S", + "atmos.cltcalipso.tavg-u-hxy-u.mon.GLB", + "atmos.cltcalipso.tpt-u-hxy-u.3hr.GLB", + "atmos.cltisccp.tavg-u-hxy-u.day.GLB", + "atmos.cltisccp.tavg-u-hxy-u.mon.30S-90S", + "atmos.cltisccp.tavg-u-hxy-u.mon.GLB", + "atmos.cltmodis.tavg-u-hxy-u.mon.30S-90S", + "atmos.cltmodis.tavg-u-hxy-u.mon.GLB", + "atmos.clw.tavg-al-hxy-u.day.GLB", + "atmos.clw.tavg-al-hxy-u.mon.30S-90S", + "atmos.clwc.tavg-al-hxy-u.mon.30S-90S", + "atmos.clws.tavg-al-hxy-u.mon.30S-90S", + "atmos.clwvi.tavg-u-hxy-u.3hr.GLB", + "atmos.clwvi.tavg-u-hxy-u.day.GLB", + "atmos.clwvi.tavg-u-hxy-u.mon.30S-90S", + "atmos.clwvimodis.tavg-u-hxy-u.mon.30S-90S", + "atmos.clwvimodis.tavg-u-hxy-u.mon.GLB", + "atmos.co2.tavg-al-hxy-u.mon.GLB", + "atmos.co2.tavg-h2m-hxy-u.mon.GLB", + "atmos.co2.tavg-p19-hxy-air.mon.GLB", + "atmos.co2.tclm-p19-hxy-air.mon.GLB", + "atmos.co2.tclm-u-hm-u.mon.GLB", + "atmos.co23D.tavg-al-hxy-u.mon.GLB", + "atmos.co2mass.tavg-u-hm-u.mon.GLB", + "atmos.dmc.tavg-alh-hxy-u.mon.30S-90S", + "atmos.edt.tavg-al-hxy-u.mon.30S-90S", + "atmos.epfy.tavg-p39-hy-air.day.GLB", + "atmos.epfy.tavg-p39-hy-air.mon.GLB", + "atmos.epfz.tavg-p39-hy-air.day.GLB", + "atmos.epfz.tavg-p39-hy-air.mon.GLB", + "atmos.evspsbl.tavg-u-hxy-lnd.day.GLB", + "atmos.evu.tavg-al-hxy-u.mon.30S-90S", + "atmos.fco2antt.tavg-u-hxy-u.mon.GLB", + "atmos.fco2fos.tavg-u-hxy-u.mon.GLB", + "atmos.fco2nat.tavg-u-hxy-u.mon.GLB", + "atmos.hfls.tavg-u-hxy-is.mon.GRL", + "atmos.hfls.tavg-u-hxy-u.3hr.GLB", + "atmos.hfls.tavg-u-hxy-u.day.GLB", + "atmos.hfls.tavg-u-hxy-u.mon.30S-90S", + "atmos.hfss.tavg-u-hxy-u.3hr.GLB", + "atmos.hfss.tavg-u-hxy-u.day.GLB", + "atmos.hfss.tavg-u-hxy-u.mon.30S-90S", + "atmos.hur.tavg-al-hxy-u.mon.30S-90S", + "atmos.hur.tavg-al-hxy-u.mon.GLB", + "atmos.hur.tavg-p19-hxy-air.mon.30S-90S", + "atmos.hurs.tavg-h2m-hxy-u.1hr.30S-90S", + "atmos.hurs.tavg-h2m-hxy-u.mon.30S-90S", + "atmos.hurs.tmax-h2m-hxy-u.day.GLB", + "atmos.hurs.tmin-h2m-hxy-u.day.GLB", + "atmos.hurs.tpt-h2m-hxy-u.3hr.GLB", + "atmos.hus.tavg-al-hxy-u.mon.30S-90S", + "atmos.hus.tavg-al-hxy-u.mon.GLB", + "atmos.hus.tavg-p19-hxy-u.mon.30S-90S", + "atmos.hus.tpt-al-hxy-u.6hr.GLB", + "atmos.hus.tpt-p7h-hxy-air.6hr.GLB", + "atmos.huss.tavg-h2m-hxy-u.6hr.GLB", + "atmos.huss.tavg-h2m-hxy-u.mon.30S-90S", + "atmos.huss.tpt-h2m-hxy-u.1hr.GLB", + "atmos.intuadse.tavg-u-hxy-u.day.GLB", + "atmos.intuadse.tavg-u-hxy-u.mon.GLB", + "atmos.intuaw.tavg-u-hxy-u.day.GLB", + "atmos.intuaw.tavg-u-hxy-u.mon.GLB", + "atmos.intuaw.tpt-u-hxy-u.6hr.GLB", + "atmos.intvadse.tavg-u-hxy-u.day.GLB", + "atmos.intvadse.tavg-u-hxy-u.mon.GLB", + "atmos.intvaw.tavg-u-hxy-u.day.GLB", + "atmos.intvaw.tavg-u-hxy-u.mon.GLB", + "atmos.intvaw.tpt-u-hxy-u.6hr.GLB", + "atmos.loadbc.tavg-u-hxy-u.day.GLB", + "atmos.loadoa.tavg-u-hxy-u.day.GLB", + "atmos.loadpoa.tavg-u-hxy-u.day.GLB", + "atmos.mc.tavg-alh-hxy-u.mon.GLB", + "atmos.mcd.tavg-alh-hxy-u.mon.30S-90S", + "atmos.mcu.tavg-alh-hxy-u.mon.30S-90S", + "atmos.mcu.tavg-alh-hxy-u.mon.GLB", + "atmos.pctisccp.tavg-u-hxy-cl.day.GLB", + "atmos.pctisccp.tavg-u-hxy-cl.mon.30S-90S", + "atmos.pctisccp.tavg-u-hxy-cl.mon.GLB", + "atmos.pfull.tavg-al-hxy-u.day.GLB", + "atmos.pfull.tavg-al-hxy-u.mon.GLB", + "atmos.pfull.tclm-al-hxy-u.mon.30S-90S", + "atmos.phalf.tavg-alh-hxy-u.mon.GLB", + "atmos.pr.tavg-u-hxy-u.1hr.30S-90S", + "atmos.pr.tavg-u-hxy-u.mon.30S-90S", + "atmos.pr.tmax-u-hxy-u.day.GLB", + "atmos.pr.tmax-u-hxy-u.mon.GLB", + "atmos.pr.tpt-u-hxy-u.6hr.GLB", + "atmos.pr17O.tavg-u-hxy-u.mon.GLB", + "atmos.pr18O.tavg-u-hxy-u.mon.GLB", + "atmos.pr2h.tavg-u-hxy-u.mon.GLB", + "atmos.prc.tavg-u-hxy-u.day.GLB", + "atmos.prc.tavg-u-hxy-u.mon.30S-90S", + "atmos.prra.tavg-u-hxy-is.mon.GRL", + "atmos.prra.tavg-u-hxy-lnd.day.GLB", + "atmos.prra.tavg-u-hxy-u.6hr.GLB", + "atmos.prra.tavg-u-hxy-u.mon.30S-90S", + "atmos.prra.tavg-u-hxy-u.mon.GLB", + "atmos.prsn.tavg-u-hxy-is.mon.GRL", + "atmos.prsn.tavg-u-hxy-u.3hr.GLB", + "atmos.prsn.tavg-u-hxy-u.6hr.GLB", + "atmos.prsn.tavg-u-hxy-u.day.GLB", + "atmos.prsn.tavg-u-hxy-u.mon.30S-90S", + "atmos.prsn18O.tavg-u-hxy-u.mon.GLB", + "atmos.prsn2h.tavg-u-hxy-u.mon.GLB", + "atmos.prw.tavg-u-hxy-u.3hr.GLB", + "atmos.prw.tavg-u-hxy-u.day.GLB", + "atmos.prw.tavg-u-hxy-u.mon.30S-90S", + "atmos.prw.tpt-u-hxy-u.6hr.GLB", + "atmos.ps.tavg-u-hxy-u.1hr.GLB", + "atmos.ps.tavg-u-hxy-u.6hr.GLB", + "atmos.ps.tavg-u-hxy-u.mon.30S-90S", + "atmos.ps.tpt-u-hxy-u.1hr.30S-90S", + "atmos.ps.tpt-u-hxy-u.3hr.GLB", + "atmos.ps.tpt-u-hxy-u.6hr.GLB", + "atmos.psl.tavg-u-hxy-u.mon.30S-90S", + "atmos.psl.tpt-u-hxy-u.1hr.GLB", + "atmos.psl.tpt-u-hxy-u.6hr.GLB", + "atmos.ptp.tavg-u-hxy-u.mon.GLB", + "atmos.reffcclwtop.tavg-u-hxy-ccl.mon.GLB", + "atmos.reffclic.tavg-al-hxy-ccl.mon.30S-90S", + "atmos.reffclic.tavg-al-hxy-ccl.mon.GLB", + "atmos.reffclis.tavg-al-hxy-scl.mon.30S-90S", + "atmos.reffclis.tavg-al-hxy-scl.mon.GLB", + "atmos.reffclwc.tavg-al-hxy-ccl.mon.30S-90S", + "atmos.reffclwc.tavg-al-hxy-ccl.mon.GLB", + "atmos.reffclws.tavg-al-hxy-scl.mon.30S-90S", + "atmos.reffclws.tavg-al-hxy-scl.mon.GLB", + "atmos.reffsclwtop.tavg-u-hxy-scl.mon.GLB", + "atmos.rld.tavg-alh-hxy-u.mon.GLB", + "atmos.rld4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rldcs.tavg-alh-hxy-u.mon.GLB", + "atmos.rldcs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rlds.tavg-u-hxy-u.1hr.30S-90S", + "atmos.rlds.tavg-u-hxy-u.1hr.GLB", + "atmos.rlds.tavg-u-hxy-u.3hr.GLB", + "atmos.rlds.tavg-u-hxy-u.6hr.GLB", + "atmos.rlds.tavg-u-hxy-u.day.GLB", + "atmos.rlds.tavg-u-hxy-u.mon.30S-90S", + "atmos.rldscs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rls.tavg-u-hxy-u.mon.GLB", + "atmos.rlu.tavg-alh-hxy-u.mon.GLB", + "atmos.rlu4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rlucs.tavg-alh-hxy-u.mon.GLB", + "atmos.rlucs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rlus.tavg-u-hxy-u.3hr.GLB", + "atmos.rlus.tavg-u-hxy-u.day.GLB", + "atmos.rlus.tavg-u-hxy-u.mon.30S-90S", + "atmos.rlut.tavg-u-hxy-u.3hr.GLB", + "atmos.rlut.tavg-u-hxy-u.day.GLB", + "atmos.rlut.tavg-u-hxy-u.mon.30S-90S", + "atmos.rlut4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rlutcs.tavg-u-hxy-u.3hr.GLB", + "atmos.rlutcs.tavg-u-hxy-u.day.GLB", + "atmos.rlutcs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rlutcs4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rsd.tavg-alh-hxy-u.mon.GLB", + "atmos.rsd4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsdcs.tavg-alh-hxy-u.mon.GLB", + "atmos.rsdcs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsds.tavg-u-hxy-u.1hr.30S-90S", + "atmos.rsds.tavg-u-hxy-u.1hr.GLB", + "atmos.rsds.tavg-u-hxy-u.3hr.GLB", + "atmos.rsds.tavg-u-hxy-u.6hr.GLB", + "atmos.rsds.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsdscs.tavg-u-hxy-u.day.GLB", + "atmos.rsdscs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsdt.tavg-u-hxy-u.day.GLB", + "atmos.rsdt.tavg-u-hxy-u.mon.30S-90S", + "atmos.rss.tavg-u-hxy-u.mon.GLB", + "atmos.rsu.tavg-alh-hxy-u.mon.GLB", + "atmos.rsu4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsucs.tavg-alh-hxy-u.mon.GLB", + "atmos.rsucs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsus.tavg-u-hxy-u.3hr.GLB", + "atmos.rsus.tavg-u-hxy-u.day.GLB", + "atmos.rsus.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsuscs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsut.tavg-u-hxy-u.3hr.GLB", + "atmos.rsut.tavg-u-hxy-u.day.GLB", + "atmos.rsut.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsut4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rsutcs.tavg-u-hxy-u.3hr.GLB", + "atmos.rsutcs.tavg-u-hxy-u.day.GLB", + "atmos.rsutcs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsutcs4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rtmt.tavg-u-hxy-u.mon.GLB", + "atmos.rv850.tpt-850hPa-hxy-air.6hr.GLB", + "atmos.scldncl.tavg-u-hxy-scl.mon.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.1hr.30S-90S", + "atmos.sfcWind.tavg-h10m-hxy-u.6hr.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.mon.30S-90S", + "atmos.sfcWind.tmax-h10m-hxy-u.day.GLB", + "atmos.sfcWind.tmaxavg-h10m-hxy-u.mon.GLB", + "atmos.ta.tavg-700hPa-hxy-air.day.GLB", + "atmos.ta.tavg-850hPa-hxy-air.day.GLB", + "atmos.ta.tavg-al-hxy-u.mon.30S-90S", + "atmos.ta.tavg-al-hxy-u.mon.GLB", + "atmos.ta.tavg-p19-hxy-air.mon.30S-90S", + "atmos.ta.tavg-p39-hy-air.day.GLB", + "atmos.ta.tavg-p39-hy-air.mon.GLB", + "atmos.ta.tpt-al-hxy-u.6hr.GLB", + "atmos.ta.tpt-p5u-hxy-u.6hr.GLB", + "atmos.ta.tpt-p7h-hxy-air.6hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.1hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.6hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.mon.30S-90S", + "atmos.tas.tmaxavg-h2m-hxy-u.mon.30S-90S", + "atmos.tas.tminavg-h2m-hxy-u.mon.30S-90S", + "atmos.tauu.tavg-u-hxy-u.day.GLB", + "atmos.tauunoegw.tavg-p39-hy-air.day.GLB", + "atmos.tauunowgw.tavg-p39-hy-air.day.GLB", + "atmos.tauuogw.tavg-p39-hy-air.day.GLB", + "atmos.tauv.tavg-u-hxy-u.day.GLB", + "atmos.tauvnogw.tavg-p39-hy-air.day.GLB", + "atmos.tauvogw.tavg-p39-hy-air.day.GLB", + "atmos.tdps.tavg-h2m-hxy-u.mon.GLB", + "atmos.tnt.tavg-al-hxy-u.mon.GLB", + "atmos.tntmp.tavg-p39-hy-air.day.GLB", + "atmos.tntmp.tavg-p39-hy-air.mon.GLB", + "atmos.tntrl.tavg-al-hxy-u.mon.GLB", + "atmos.tntrl.tavg-p39-hy-air.day.GLB", + "atmos.tntrl.tavg-p39-hy-air.mon.GLB", + "atmos.tntrs.tavg-al-hxy-u.mon.GLB", + "atmos.tntrs.tavg-p39-hy-air.day.GLB", + "atmos.tntrs.tavg-p39-hy-air.mon.GLB", + "atmos.ts.tavg-u-hxy-u.6hr.GLB", + "atmos.ts.tavg-u-hxy-u.day.GLB", + "atmos.ts.tavg-u-hxy-u.mon.30S-90S", + "atmos.ts.tpt-u-hxy-u.3hr.GLB", + "atmos.ts.tpt-u-hxy-u.6hr.GLB", + "atmos.ua.tavg-al-hxy-u.mon.GLB", + "atmos.ua.tavg-p19-hxy-air.mon.30S-90S", + "atmos.ua.tavg-p39-hy-air.day.GLB", + "atmos.ua.tavg-p39-hy-air.mon.GLB", + "atmos.ua.tpt-al-hxy-u.6hr.GLB", + "atmos.ua.tpt-h100m-hxy-u.1hr.GLB", + "atmos.ua.tpt-p5u-hxy-air.6hr.GLB", + "atmos.ua.tpt-p7h-hxy-air.6hr.GLB", + "atmos.uas.tavg-h10m-hxy-u.mon.30S-90S", + "atmos.uas.tpt-h10m-hxy-u.1hr.GLB", + "atmos.uas.tpt-h10m-hxy-u.6hr.GLB", + "atmos.utendepfd.tavg-p39-hy-air.day.GLB", + "atmos.utendepfd.tavg-p39-hy-air.mon.GLB", + "atmos.utendnogw.tavg-p39-hy-air.day.GLB", + "atmos.utendnogw.tavg-p39-hy-air.mon.GLB", + "atmos.utendogw.tavg-p39-hy-air.day.GLB", + "atmos.utendogw.tavg-p39-hy-air.mon.GLB", + "atmos.utendvtem.tavg-p39-hy-air.day.GLB", + "atmos.utendwtem.tavg-p39-hy-air.day.GLB", + "atmos.va.tavg-al-hxy-u.mon.GLB", + "atmos.va.tavg-p19-hxy-air.mon.30S-90S", + "atmos.va.tavg-p39-hy-air.mon.GLB", + "atmos.va.tpt-al-hxy-u.6hr.GLB", + "atmos.va.tpt-h100m-hxy-u.1hr.GLB", + "atmos.va.tpt-p5u-hxy-air.6hr.GLB", + "atmos.va.tpt-p7h-hxy-air.6hr.GLB", + "atmos.vas.tavg-h10m-hxy-u.mon.30S-90S", + "atmos.vas.tpt-h10m-hxy-u.1hr.GLB", + "atmos.vas.tpt-h10m-hxy-u.6hr.GLB", + "atmos.vtem.tavg-p39-hy-air.day.GLB", + "atmos.vtem.tavg-p39-hy-air.mon.GLB", + "atmos.wap.tavg-p19-hxy-air.mon.30S-90S", + "atmos.wsg.tmax-h100m-hxy-u.1hr.GLB", + "atmos.wsg.tmax-h10m-hxy-u.1hr.GLB", + "atmos.wtem.tavg-p39-hy-air.day.GLB", + "atmos.wtem.tavg-p39-hy-air.mon.GLB", + "atmos.zg.tavg-1000hPa-hxy-air.day.GLB", + "atmos.zg.tavg-500hPa-hxy-air.day.GLB", + "atmos.zg.tavg-al-hxy-u.mon.GLB", + "atmos.zg.tavg-p19-hxy-air.mon.30S-90S", + "atmos.zg.tavg-p39-hy-air.day.GLB", + "atmos.zg.tavg-p39-hy-air.mon.GLB", + "atmos.zg.tpt-500hPa-hxy-air.6hr.GLB", + "atmos.zg.tpt-al-hxy-u.6hr.GLB", + "atmos.zg.tpt-p3-hxy-air.6hr.GLB", + "atmos.zg.tpt-p7h-hxy-air.6hr.GLB", + "atmos.ztp.tavg-u-hxy-u.mon.GLB", + "atmosChem.c2h4.tavg-al-hxy-u.mon.GLB", + "atmosChem.c2h5oh.tavg-al-hxy-u.mon.GLB", + "atmosChem.c4h10.tavg-al-hxy-u.mon.GLB", + "atmosChem.cfc11.tavg-u-hm-u.mon.GLB", + "atmosChem.cfc113.tavg-u-hm-u.mon.GLB", + "atmosChem.cfc12.tavg-u-hm-u.mon.GLB", + "atmosChem.ch3oh.tavg-al-hxy-u.mon.GLB", + "atmosChem.ch4.tavg-al-hxy-u.mon.GLB", + "atmosChem.ch4.tavg-p39-hy-air.mon.GLB", + "atmosChem.ch4losssoil.tavg-u-hxy-u.mon.GLB", + "atmosChem.ch4ref.ti-al-hxy-u.fx.GLB", + "atmosChem.chegph2oo1d.tavg-al-hxy-u.mon.GLB", + "atmosChem.chepnh4.tavg-al-hxy-u.mon.GLB", + "atmosChem.chepno3.tavg-al-hxy-u.mon.GLB", + "atmosChem.dms.tavg-al-hxy-u.mon.30S-90S", + "atmosChem.dms.tavg-al-hxy-u.mon.GLB", + "atmosChem.do3chm.tavg-al-hxy-u.mon.GLB", + "atmosChem.dryh2.tavg-u-hxy-u.mon.GLB", + "atmosChem.dryhno3.tavg-u-hxy-u.mon.GLB", + "atmosChem.drynh3.tavg-u-hxy-u.mon.GLB", + "atmosChem.drynh4.tavg-u-hxy-u.mon.GLB", + "atmosChem.drynoy.tavg-u-hxy-u.mon.GLB", + "atmosChem.e90inst.tpt-al-hxy-u.mon.GLB", + "atmosChem.emiach4.tavg-u-hxy-u.mon.GLB", + "atmosChem.emiavnox.tavg-al-hxy-u.mon.GLB", + "atmosChem.emic2h4.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic2h5oh.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic2h6.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic3h6.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic3h8.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic4h10.tavg-u-hxy-u.mon.GLB", + "atmosChem.emich3oh.tavg-u-hxy-u.mon.GLB", + "atmosChem.emich4.tavg-u-hxy-u.mon.GLB", + "atmosChem.emih2.tavg-u-hxy-u.mon.GLB", + "atmosChem.emilkch4.tavg-u-hxy-u.mon.GLB", + "atmosChem.h2.tavg-al-hxy-u.mon.GLB", + "atmosChem.h2loss.tavg-al-hxy-u.mon.GLB", + "atmosChem.h2prod.tavg-al-hxy-u.mon.GLB", + "atmosChem.hcfc22.tavg-u-hm-u.mon.GLB", + "atmosChem.meanage.tavg-al-hxy-u.mon.GLB", + "atmosChem.meanage.tavg-p39-hy-air.mon.GLB", + "atmosChem.n2o.tavg-al-hxy-u.mon.GLB", + "atmosChem.n2o.tavg-p39-hy-air.mon.GLB", + "atmosChem.o3.tavg-al-hxy-u.mon.GLB", + "atmosChem.o3.tavg-p19-hxy-air.mon.GLB", + "atmosChem.o3.tavg-p39-hy-air.mon.GLB", + "atmosChem.o3.tpt-al-hxy-u.mon.GLB", + "atmosChem.o3ref.tclm-al-hxy-u.fx.GLB", + "atmosChem.o3ref.ti-al-hxy-u.fx.GLB", + "atmosChem.o3ste.tavg-al-hxy-u.mon.GLB", + "atmosChem.rlutch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rlutcsch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rlutcso3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rluto3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsutch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsutcsch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsutcso3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsuto3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.stratch4loss.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropch4loss.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropch4lossoh.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropdo3chm.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropo3ste.tavg-al-hxy-u.mon.GLB", + "atmosChem.wethno3.tavg-al-hxy-u.mon.GLB", + "atmosChem.wetnh3.tavg-u-hxy-u.mon.GLB", + "atmosChem.wetnh4.tavg-u-hxy-u.mon.GLB", + "atmosChem.wetno3.tavg-al-hxy-u.mon.GLB", + "atmosChem.wetnoy.tavg-u-hxy-u.mon.GLB", + "land.albc.tavg-u-hxy-veg.mon.GLB", + "land.areacellr.ti-u-hxy-u.fx.GLB", + "land.baresoilFrac.tavg-u-hxy-u.mon.GLB", + "land.burntFractionAll.tavg-u-hxy-u.mon.GLB", + "land.cGeologicStorage.tavg-u-hxy-u.mon.GLB", + "land.cLand.tavg-u-hxy-lnd.mon.GLB", + "land.cLeaf.tavg-u-hxy-lnd.mon.GLB", + "land.cLitter.tavg-u-hxy-lnd.mon.GLB", + "land.cnc.tavg-u-hxy-u.mon.GLB", + "land.cProduct.tavg-u-hxy-lnd.mon.GLB", + "land.cRoot.tavg-u-hxy-lnd.mon.GLB", + "land.cropFrac.tavg-u-hxy-u.mon.GLB", + "land.cSoil.tavg-d100cm-hxy-lnd.mon.GLB", + "land.cSoil.tavg-sl-hxy-lnd.mon.GLB", + "land.cSoil.tavg-u-hxy-lnd.mon.GLB", + "land.cStem.tavg-u-hxy-lnd.mon.GLB", + "land.cVeg.tavg-u-hxy-lnd.mon.GLB", + "land.dcw.tavg-u-hxy-lnd.day.GLB", + "land.depthl.ti-u-hxy-u.fx.GLB", + "land.depthsl.ti-u-hxy-u.fx.GLB", + "land.dslw.tavg-u-hxy-lnd.day.GLB", + "land.evspsblpot.tavg-u-hxy-lnd.day.GLB", + "land.evspsblpot.tavg-u-hxy-lnd.mon.GLB", + "land.evspsblsoi.tavg-u-hxy-u.day.GLB", + "land.evspsblveg.tavg-u-hxy-u.day.GLB", + "land.fAnthDisturb.tavg-u-hxy-lnd.mon.GLB", + "land.fBNF.tavg-u-hxy-lnd.mon.GLB", + "land.fCLandToOcean.tavg-u-hxy-lnd.mon.GLB", + "land.fDeforestToAtmos.tavg-u-hxy-lnd.mon.GLB", + "land.fDeforestToProduct.tavg-u-hxy-lnd.mon.GLB", + "land.fFire.tavg-u-hxy-lnd.mon.GLB", + "land.fFireAll.tavg-u-hxy-lnd.mon.GLB", + "land.fFireNat.tavg-u-hxy-lnd.mon.GLB", + "land.fHarvestToAtmos.tavg-u-hxy-lnd.mon.GLB", + "land.fHarvestToGeologicStorage.tavg-u-hxy-lnd.mon.GLB", + "land.fHarvestToProduct.tavg-u-hxy-lnd.mon.GLB", + "land.fLitterSoil.tavg-u-hxy-lnd.mon.GLB", + "land.fLuc.tavg-u-hxy-lnd.mon.GLB", + "land.fN2O.tavg-u-hxy-lnd.mon.GLB", + "land.fNAnthDisturb.tavg-u-hxy-lnd.mon.GLB", + "land.fNdep.tavg-u-hxy-lnd.mon.GLB", + "land.fNfert.tavg-u-hxy-lnd.mon.GLB", + "land.fNgas.tavg-u-hxy-lnd.mon.GLB", + "land.fNgasFire.tavg-u-hxy-lnd.mon.GLB", + "land.fNLandToOcean.tavg-u-hxy-lnd.mon.GLB", + "land.fNleach.tavg-u-hxy-lnd.mon.GLB", + "land.fNLitterSoil.tavg-u-hxy-lnd.mon.GLB", + "land.fNloss.tavg-u-hxy-lnd.mon.GLB", + "land.fNnetmin.tavg-u-hxy-lnd.mon.GLB", + "land.fNOx.tavg-u-hxy-lnd.mon.GLB", + "land.fNProduct.tavg-u-hxy-lnd.mon.GLB", + "land.fNup.tavg-u-hxy-lnd.mon.GLB", + "land.fNVegLitter.tavg-u-hxy-lnd.mon.GLB", + "land.fNVegSoil.tavg-u-hxy-lnd.mon.GLB", + "land.fProductDecomp.tavg-u-hxy-lnd.mon.GLB", + "land.fVegLitter.tavg-u-hxy-lnd.mon.GLB", + "land.fVegSoil.tavg-u-hxy-lnd.mon.GLB", + "land.gpp.tavg-u-hxy-lnd.mon.GLB", + "land.gppVgt.tavg-u-hxy-multi.day.GLB", + "land.grassFrac.tavg-u-hxy-u.mon.GLB", + "land.laiVgt.tavg-u-hxy-multi.day.GLB", + "land.landCoverFrac.tavg-u-hxy-u.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.day.GLB", + "land.mrrob.tavg-u-hxy-lnd.day.GLB", + "land.mrros.tavg-u-hxy-lnd.day.GLB", + "land.mrsfl.tavg-sl-hxy-lnd.day.GLB", + "land.mrsfl.tavg-sl-hxy-lnd.mon.GLB", + "land.mrsll.tavg-sl-hxy-lnd.day.GLB", + "land.mrsll.tavg-sl-hxy-lnd.mon.GLB", + "land.mrso.tavg-u-hxy-lnd.day.GLB", + "land.mrsol.tavg-d10cm-hxy-lnd.day.GLB", + "land.mrsol.tavg-sl-hxy-lnd.day.GLB", + "land.mrsol.tavg-sl-hxy-lnd.mon.GLB", + "land.mrsol.tpt-d10cm-hxy-lnd.3hr.GLB", + "land.mrsow.tavg-u-hxy-lnd.day.GLB", + "land.mrtws.tavg-u-hxy-lnd.day.GLB", + "land.mrtws.tavg-u-hxy-lnd.mon.GLB", + "land.nbp.tavg-u-hxy-lnd.mon.GLB", + "land.nep.tavg-u-hxy-lnd.mon.GLB", + "land.nLand.tavg-u-hxy-lnd.mon.GLB", + "land.nLitter.tavg-u-hxy-lnd.mon.GLB", + "land.nMineral.tavg-u-hxy-lnd.mon.GLB", + "land.npp.tavg-u-hxy-lnd.mon.GLB", + "land.nProduct.tavg-u-hxy-lnd.mon.GLB", + "land.nSoil.tavg-u-hxy-lnd.mon.GLB", + "land.nVeg.tavg-u-hxy-lnd.mon.GLB", + "land.orog.ti-u-hxy-u.fx.30S-90S", + "land.pastureFrac.tavg-u-hxy-u.mon.GLB", + "land.prveg.tavg-u-hxy-lnd.mon.GLB", + "land.ra.tavg-u-hxy-lnd.mon.GLB", + "land.residualFrac.tavg-u-hxy-u.mon.GLB", + "land.rh.tavg-u-hxy-lnd.mon.GLB", + "land.rivi.tavg-u-hxy-lnd.day.GLB", + "land.rivo.tavg-u-hxy-lnd.day.GLB", + "land.rsds.tavg-u-hxy-lnd.mon.GLB", + "land.rsds.tavg-u-hxy-sn.mon.GLB", + "land.rsus.tavg-u-hxy-lnd.mon.GLB", + "land.rsus.tavg-u-hxy-sn.mon.GLB", + "land.sftgif.tavg-u-hxy-u.mon.GLB", + "land.sftlaf.ti-u-hxy-u.fx.GLB", + "land.shrubFrac.tavg-u-hxy-u.mon.GLB", + "land.srfrad.tavg-u-hxy-u.3hr.GLB", + "land.tas.tavg-u-hxy-u.1hr.30S-90S", + "land.tas.tavg-u-hxy-u.1hr.GLB", + "land.tran.tavg-u-hxy-lnd.mon.GLB", + "land.treeFrac.tavg-u-hxy-u.mon.GLB", + "land.tsl.tavg-sl-hxy-lnd.day.GLB", + "land.tsl.tavg-sl-hxy-lnd.mon.GLB", + "land.tslsi.tavg-u-hxy-u.day.GLB", + "land.tslsi.tpt-u-hxy-lsi.3hr.GLB", + "land.vegFrac.tavg-u-hxy-u.mon.GLB", + "land.vegHeight.tavg-u-hxy-tree.mon.GLB", + "land.vegHeight.tavg-u-hxy-veg.mon.GLB", + "land.wetlandCH4.tavg-u-hxy-lnd.mon.GLB", + "land.wtd.tavg-u-hxy-lnd.day.GLB", + "landIce.acabf.tavg-u-hxy-is.mon.GLB", + "landIce.hfdsn.tavg-u-hxy-lnd.mon.GLB", + "landIce.hfgeoubed.ti-u-hxy-gis.fx.GRL", + "landIce.hfls.tavg-u-hxy-is.mon.GLB", + "landIce.hfss.tavg-u-hxy-is.mon.GLB", + "landIce.icem.tavg-u-hxy-is.mon.GLB", + "landIce.litemptop.tavg-u-hxy-is.mon.GLB", + "landIce.lithk.ti-u-hxy-is.fx.GRL", + "landIce.lithk.ti-u-hxy-u.fx.GLB", + "landIce.mrro.tavg-u-hxy-is.mon.GLB", + "landIce.orog.tavg-u-hxy-is.mon.GLB", + "landIce.pflw.tavg-u-hxy-lnd.mon.GLB", + "landIce.prra.tavg-u-hxy-is.mon.GLB", + "landIce.prsn.tavg-u-hxy-is.mon.GLB", + "landIce.rlds.tavg-u-hxy-is.mon.GLB", + "landIce.rlus.tavg-u-hxy-is.mon.GLB", + "landIce.rsds.tavg-u-hxy-is.mon.GLB", + "landIce.rsus.tavg-u-hxy-is.mon.GLB", + "landIce.sbl.tavg-u-hxy-is.mon.GLB", + "landIce.sbl.tavg-u-hxy-lnd.mon.GLB", + "landIce.sbl.tavg-u-hxy-u.mon.GLB", + "landIce.sftflf.tavg-u-hxy-u.mon.GLB", + "landIce.sftflf.ti-u-hxy-u.fx.GLB", + "landIce.sftgrf.tavg-u-hxy-u.mon.GLB", + "landIce.sftgrf.ti-u-hxy-u.fx.GLB", + "landIce.snc.tavg-u-hxy-is.mon.GLB", + "landIce.snd.tavg-u-hxy-lnd.mon.GLB", + "landIce.snicem.tavg-u-hxy-is.mon.GLB", + "landIce.snicem.tavg-u-hxy-is.mon.GRL", + "landIce.snm.tavg-u-hxy-is.mon.GLB", + "landIce.snm.tavg-u-hxy-lnd.mon.GLB", + "landIce.snrefr.tavg-u-hxy-is.mon.GLB", + "landIce.snw.tavg-u-hxy-lnd.day.GLB", + "landIce.sootsn.tavg-u-hxy-lnd.mon.GLB", + "landIce.tas.tavg-u-hxy-is.mon.GLB", + "landIce.topg.ti-u-hxy-gis.fx.GRL", + "landIce.tpf.tavg-u-hxy-lnd.mon.GLB", + "landIce.ts.tavg-u-hxy-is.mon.GLB", + "landIce.tsn.tavg-u-hxy-is.mon.GLB", + "landIce.tsn.tavg-u-hxy-lnd.mon.GLB", + "ocean.absscint.tavg-op4-hxy-sea.mon.GLB", + "ocean.agessc.tavg-ol-hxy-sea.mon.GLB", + "ocean.bigthetao.tavg-ol-hm-sea.mon.GLB", + "ocean.bigthetao.tavg-ol-hxy-sea.dec.GLB", + "ocean.bigthetao.tavg-op20bar-hxy-sea.day.GLB", + "ocean.chcint.tavg-op4-hxy-sea.mon.GLB", + "ocean.ficeberg.tavg-ol-hxy-sea.3hr.GLB", + "ocean.ficeberg.tavg-ol-hxy-sea.mon.GLB", + "ocean.ficeberg.tavg-u-hxy-sea.mon.GLB", + "ocean.flandice.tavg-u-hxy-sea.3hr.GLB", + "ocean.flandice.tavg-u-hxy-sea.mon.GLB", + "ocean.friver.tavg-u-hxy-sea.3hr.GLB", + "ocean.friver.tavg-u-hxy-sea.mon.GLB", + "ocean.hfbasin.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpmadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpmdiff.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpsmadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfds.tavg-u-hxy-sea.3hr.GLB", + "ocean.hfds.tavg-u-hxy-sea.mon.30S-90S", + "ocean.hfgeou.tavg-u-hxy-sea.mon.GLB", + "ocean.hfrunoffds.tavg-ol-hxy-sea.3hr.GLB", + "ocean.hfx.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfx.tavg-u-hxy-sea.day.GLB", + "ocean.hfx.tavg-u-hxy-sea.mon.GLB", + "ocean.hfy.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfy.tavg-u-hxy-sea.day.GLB", + "ocean.hfy.tavg-u-hxy-sea.mon.GLB", + "ocean.htovgyre.tavg-u-hyb-sea.mon.GLB", + "ocean.htovovrt.tavg-u-hyb-sea.mon.GLB", + "ocean.masscello.tavg-ol-hxy-sea.dec.GLB", + "ocean.masso.tavg-u-hm-sea.dec.GLB", + "ocean.masso.tavg-u-hm-sea.mon.GLB", + "ocean.mlotst.tavg-u-hxy-sea.day.GLB", + "ocean.mlotst.tavg-u-hxy-sea.mon.30S-90S", + "ocean.mlotst.tmax-u-hxy-sea.mon.GLB", + "ocean.mlotst.tmin-u-hxy-sea.mon.GLB", + "ocean.mpw.tavg-u-hxy-sea.mon.GLB", + "ocean.mpw.tpt-u-hxy-sea.3hr.GLB", + "ocean.mpwswell.tavg-u-hxy-sea.mon.GLB", + "ocean.mpwswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.mpwwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.mpwwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.msftbarot.tavg-u-hxy-sea.mon.GLB", + "ocean.msftm.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftm.tavg-rho-hyb-sea.mon.GLB", + "ocean.msfty.tavg-ol-ht-sea.mon.GLB", + "ocean.msfty.tavg-rho-ht-sea.mon.GLB", + "ocean.obvfsq.tavg-ol-hxy-sea.mon.GLB", + "ocean.opottemptend.tavg-ol-hxy-sea.yr.GLB", + "ocean.pbo.tavg-u-hxy-sea.mon.GLB", + "ocean.pfscint.tavg-op4-hxy-sea.mon.GLB", + "ocean.phcint.tavg-op4-hxy-sea.mon.GLB", + "ocean.pso.tavg-u-hxy-sea.mon.GLB", + "ocean.rsds.tavg-u-hxy-ifs.mon.GLB", + "ocean.rsntds.tavg-u-hxy-sea.3hr.GLB", + "ocean.rsus.tavg-u-hxy-ifs.mon.GLB", + "ocean.scint.tavg-op4-hxy-sea.mon.GLB", + "ocean.sduo.tavg-u-hxy-sea.mon.GLB", + "ocean.sduo.tpt-u-hxy-sea.3hr.GLB", + "ocean.sdvo.tavg-u-hxy-sea.mon.GLB", + "ocean.sdvo.tpt-u-hxy-sea.3hr.GLB", + "ocean.sfdsi.tavg-u-hxy-sea.3hr.GLB", + "ocean.sfx.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfx.tavg-u-hxy-sea.mon.GLB", + "ocean.sfy.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfy.tavg-u-hxy-sea.mon.GLB", + "ocean.sltbasin.tavg-u-hyb-sea.mon.GLB", + "ocean.sltovgyre.tavg-u-hyb-sea.mon.GLB", + "ocean.sltovovrt.tavg-u-hyb-sea.mon.GLB", + "ocean.so.tavg-ol-hm-sea.mon.GLB", + "ocean.so.tavg-ol-hxy-sea.dec.GLB", + "ocean.so.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.sob.tavg-u-hxy-sea.mon.GLB", + "ocean.sos.tavg-u-hm-sea.mon.30S-90S", + "ocean.sos.tavg-u-hm-sea.mon.GLB", + "ocean.sw17O.tavg-ol-hxy-sea.mon.GLB", + "ocean.sw18O.tavg-ol-hxy-sea.mon.GLB", + "ocean.sw2H.tavg-ol-hxy-sea.mon.GLB", + "ocean.swh.tavg-u-hxy-sea.mon.GLB", + "ocean.swh.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhmax.tmax-u-hxy-sea.mon.GLB", + "ocean.swhmax.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhswell.tavg-u-hxy-sea.mon.GLB", + "ocean.swhswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.swhwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.t20d.tavg-u-hxy-sea.mon.GLB", + "ocean.tauuo.tavg-u-hxy-sea.3hr.GLB", + "ocean.tauuo.tavg-u-hxy-sea.dec.GLB", + "ocean.tauvo.tavg-u-hxy-sea.3hr.GLB", + "ocean.tauvo.tavg-u-hxy-sea.dec.GLB", + "ocean.thetao.tavg-d2000m-hxy-sea.mon.GLB", + "ocean.thetao.tavg-d300m-hxy-sea.mon.GLB", + "ocean.thetao.tavg-d700m-hxy-sea.mon.GLB", + "ocean.thetao.tavg-ol-hm-sea.mon.GLB", + "ocean.thetao.tavg-ol-hxy-sea.dec.GLB", + "ocean.thetao.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.thetao.tavg-op20bar-hxy-sea.day.GLB", + "ocean.thetaot.tavg-u-hxy-sea.mon.GLB", + "ocean.thkcello.tavg-ol-hxy-sea.dec.GLB", + "ocean.tob.tavg-u-hxy-sea.mon.GLB", + "ocean.tos.tavg-u-hm-sea.mon.GLB", + "ocean.tos.tavg-u-hxy-sea.mon.30S-90S", + "ocean.tos.tpt-u-hxy-sea.3hr.GLB", + "ocean.tossq.tavg-u-hxy-sea.day.GLB", + "ocean.umo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.uo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.uos.tavg-u-hxy-sea.day.GLB", + "ocean.vmo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.vo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.volcello.tavg-ol-hxy-sea.dec.GLB", + "ocean.volcello.tavg-ol-hxy-sea.mon.GLB", + "ocean.volcello.tavg-ol-hxy-sea.yr.GLB", + "ocean.volcello.ti-ol-hxy-sea.fx.GLB", + "ocean.volo.tavg-u-hm-sea.dec.GLB", + "ocean.volo.tavg-u-hm-sea.mon.GLB", + "ocean.vos.tavg-u-hxy-sea.day.GLB", + "ocean.vsf.tavg-u-hxy-sea.mon.GLB", + "ocean.wdir.tavg-u-hxy-sea.mon.GLB", + "ocean.wdir.tpt-u-hxy-sea.3hr.GLB", + "ocean.wdirswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wdirswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wdirwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wdirwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.wfcorr.tavg-u-hxy-sea.mon.GLB", + "ocean.wfo.tavg-u-hxy-sea.3hr.GLB", + "ocean.wfo.tavg-u-hxy-sea.mon.GLB", + "ocean.wmo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.wo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.wpdir.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdir.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpdirswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdirswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpdirwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdirwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpp.tavg-u-hxy-sea.mon.GLB", + "ocean.wpp.tpt-u-hxy-sea.3hr.GLB", + "ocean.wppswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wppswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wppwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wppwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.zfullo.tavg-ol-hxy-sea.yr.GLB", + "ocean.zos.tavg-u-hxy-sea.mon.30S-90S", + "ocean.zossq.tavg-u-hxy-sea.mon.GLB", + "ocean.zostoga.tavg-u-hm-sea.day.GLB", + "ocnBgchem.bacc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.calc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chl.tavg-d0m-hxy-sea.day.GLB", + "ocnBgchem.chl.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chl.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.chl.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chlcalc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chldiat.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chldiat.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chldiaz.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chldiaz.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chlmisc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chlmisc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chlpico.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chlpico.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.detoc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dfe.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.dfe.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.dfe.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissic.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.dissic.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissoc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dmso.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.dmso.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.dpco2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.dpo2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.expc.tavg-d1000m-hxy-sea.mon.GLB", + "ocnBgchem.expc.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.expc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.expcalc.tavg-d1000m-hxy-sea.mon.GLB", + "ocnBgchem.expcalc.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.expcalc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.fgco2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fric.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.froc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fsfe.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fsn.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.graz.tavg-ol-hxy-sea.mon.30S-90S", + "ocnBgchem.graz.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.icfriver.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intdic.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intdoc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intparag.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbfe.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbn.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbp.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbsi.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpcalcite.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpn2.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpoc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpp.tavg-u-hxy-sea.day.GLB", + "ocnBgchem.intpp.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpp.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppcalc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppdiat.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppdiaz.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppmisc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppnitrate.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpppico.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.nh4.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.nh4.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.no3.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.no3.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.o2.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.ocfriver.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.ph.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.ph.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phyc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phyc.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.phyc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phycalc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phycalc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phydiat.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phydiat.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phydiaz.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phydiaz.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phymisc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phymisc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phypico.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phypico.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.po4.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.pp.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.si.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.spco2.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.spco2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.talk.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zmeso.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zmeso.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zmicro.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zmicro.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zmisc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zmisc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zooc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zooc.tavg-ol-hxy-sea.mon.GLB", + "seaIce.evspsbl.tavg-u-hxy-si.mon.GLB", + "seaIce.prra.tavg-u-hxy-si.mon.GLB", + "seaIce.prsn.tavg-u-hxy-si.mon.GLB", + "seaIce.rlds.tavg-u-hxy-si.day.GLB", + "seaIce.rlds.tavg-u-hxy-si.mon.GLB", + "seaIce.rlus.tavg-u-hxy-si.day.GLB", + "seaIce.rlus.tavg-u-hxy-si.mon.GLB", + "seaIce.rsds.tavg-u-hxy-si.day.GLB", + "seaIce.rsds.tavg-u-hxy-si.mon.GLB", + "seaIce.rsus.tavg-u-hxy-si.day.GLB", + "seaIce.rsus.tavg-u-hxy-si.mon.GLB", + "seaIce.sbl.tavg-u-hxy-si.mon.GLB", + "seaIce.siage.tavg-u-hxy-si.day.GLB", + "seaIce.siage.tavg-u-hxy-si.mon.30S-90S", + "seaIce.siarea.tavg-u-hm-u.mon.NH", + "seaIce.siarea.tavg-u-hm-u.mon.SH", + "seaIce.siareaacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.siconc.tavg-u-hxy-u.mon.30S-90S", + "seaIce.siconca.tavg-u-hxy-u.day.GLB", + "seaIce.siconca.tavg-u-hxy-u.mon.GLB", + "seaIce.sidconcdyn.tavg-u-hxy-sea.mon.GLB", + "seaIce.sidconcth.tavg-u-hxy-sea.mon.GLB", + "seaIce.sidmassdyn.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthsi.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthwat.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmeltbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmeltlat.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmelttop.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassth.tavg-u-hxy-si.mon.GLB", + "seaIce.sieqthick.tavg-u-hxy-si.mon.GLB", + "seaIce.siextent.tavg-u-hm-u.mon.NH", + "seaIce.siextent.tavg-u-hm-u.mon.SH", + "seaIce.siflcondbot.tavg-u-hxy-si.day.GLB", + "seaIce.siflcondbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflcondtop.tavg-u-hxy-si.day.GLB", + "seaIce.siflcondtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sifllattop.tavg-u-hxy-si.day.GLB", + "seaIce.sifllattop.tavg-u-hxy-si.mon.GLB", + "seaIce.siflsensbot.tavg-u-hxy-si.day.GLB", + "seaIce.siflsensbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflsenstop.tavg-u-hxy-si.day.GLB", + "seaIce.siflsenstop.tavg-u-hxy-si.mon.GLB", + "seaIce.siflswdbot.tavg-u-hxy-si.day.GLB", + "seaIce.siflswdbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sihc.tavg-u-hxy-sea.day.GLB", + "seaIce.sihc.tavg-u-hxy-sea.mon.GLB", + "seaIce.siitdconc.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdsnconc.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdsnthick.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdthick.tavg-u-hxy-si.mon.GLB", + "seaIce.simassacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.simpconc.tavg-u-hxy-si.mon.GLB", + "seaIce.sirdgconc.tavg-u-hxy-si.mon.GLB", + "seaIce.sisaltmass.tavg-u-hxy-si.mon.GLB", + "seaIce.sisndmassdyn.tavg-u-hxy-si.mon.GLB", + "seaIce.sisndmasssi.tavg-u-hxy-si.mon.GLB", + "seaIce.sisndmasswind.tavg-u-hxy-si.mon.GLB", + "seaIce.sisnhc.tavg-u-hxy-si.day.GLB", + "seaIce.sisnhc.tavg-u-hxy-si.mon.GLB", + "seaIce.sisnmass.tavg-u-hm-u.mon.NH", + "seaIce.sisnmass.tavg-u-hm-u.mon.SH", + "seaIce.sisnmassacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.sispeed.tavg-u-hxy-si.day.GLB", + "seaIce.sispeed.tavg-u-hxy-si.mon.GLB", + "seaIce.sistressave.tpt-u-hxy-si.mon.GLB", + "seaIce.sistressmax.tpt-u-hxy-si.mon.GLB", + "seaIce.sistrxdtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sistrxubot.tavg-u-hxy-si.mon.GLB", + "seaIce.sistrydtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sistryubot.tavg-u-hxy-si.mon.GLB", + "seaIce.sitempsnic.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-si.day.GLB", + "seaIce.sithick.tavg-u-hxy-si.mon.30S-90S", + "seaIce.sitimefrac.tavg-u-hxy-sea.day.GLB", + "seaIce.sitimefrac.tavg-u-hxy-sea.mon.30S-90S", + "seaIce.siu.tavg-u-hxy-si.day.GLB", + "seaIce.siu.tavg-u-hxy-si.mon.30S-90S", + "seaIce.siv.tavg-u-hxy-si.day.GLB", + "seaIce.siv.tavg-u-hxy-si.mon.30S-90S", + "seaIce.sivol.tavg-u-hm-u.mon.NH", + "seaIce.sivol.tavg-u-hm-u.mon.SH", + "seaIce.snc.tavg-u-hxy-si.mon.GLB", + "seaIce.snd.tavg-u-hxy-sn.day.GLB", + "seaIce.snd.tavg-u-hxy-sn.mon.30S-90S", + "seaIce.snm.tavg-u-hxy-si.mon.GLB", + "seaIce.snw.tavg-u-hxy-si.mon.GLB", + "seaIce.ts.tavg-u-hxy-si.day.GLB", + "seaIce.ts.tavg-u-hxy-si.mon.30S-90S" + ], + "Medium": [ + "atmos.bldep.tavg-u-hxy-u.1hr.GLB", + "atmos.clic.tpt-al-hxy-u.3hr.GLB", + "atmos.clis.tpt-al-hxy-u.3hr.GLB", + "atmos.clivi.tpt-u-hxy-u.3hr.GLB", + "atmos.clt.tpt-u-hxy-u.3hr.GLB", + "atmos.clwc.tpt-al-hxy-u.3hr.GLB", + "atmos.clws.tpt-al-hxy-u.3hr.GLB", + "atmos.clwvi.tpt-u-hxy-u.3hr.GLB", + "atmos.dtauc.tpt-al-hxy-ccl.3hr.GLB", + "atmos.dtaus.tpt-al-hxy-scl.3hr.GLB", + "atmos.hfdsnb.tavg-u-hxy-lnd.day.GLB", + "atmos.hfls.tavg-u-hxy-is.mon.ATA", + "atmos.hfls.tavg-u-hxy-u.1hr.GLB", + "atmos.hfss.tavg-u-hxy-is.mon.ATA", + "atmos.hfss.tavg-u-hxy-is.mon.GRL", + "atmos.hfss.tavg-u-hxy-u.1hr.GLB", + "atmos.hur.tavg-700hPa-hxy-air.day.GLB", + "atmos.hur.tpt-100hPa-hxy-u.6hr.GLB", + "atmos.hur.tpt-500hPa-hxy-air.6hr.GLB", + "atmos.hur.tpt-850hPa-hxy-air.6hr.GLB", + "atmos.hurs.tavg-h2m-hxy-u.1hr.GLB", + "atmos.hus.tpt-al-hxy-u.3hr.GLB", + "atmos.hus.tpt-p6-hxy-air.3hr.GLB", + "atmos.noaahi2m.tavg-h2m-hxy-u.day.GLB", + "atmos.noaahi2m.tmax-h2m-hxy-u.day.GLB", + "atmos.pfull.tpt-al-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.6hr.GLB", + "atmos.pr.tmax-u-hxy-u.6hr.GLB", + "atmos.pr.tpt-u-hxy-u.3hr.GLB", + "atmos.prra.tavg-u-hxy-is.mon.ATA", + "atmos.prrsn.tavg-u-hxy-lnd.day.GLB", + "atmos.prsn.tavg-u-hxy-is.mon.ATA", + "atmos.prsnc.tavg-u-hxy-lnd.day.GLB", + "atmos.prsnsn.tavg-u-hxy-lnd.day.GLB", + "atmos.prw.tpt-u-hxy-u.3hr.GLB", + "atmos.ps.tpt-u-hxy-u.1hr.GLB", + "atmos.psitem.tavg-p39-hy-air.day.GLB", + "atmos.psl.tavg-u-hxy-u.6hr.GLB", + "atmos.reffclic.tpt-al-hxy-ccl.3hr.GLB", + "atmos.reffclis.tpt-al-hxy-scl.3hr.GLB", + "atmos.reffclwc.tpt-al-hxy-ccl.3hr.GLB", + "atmos.reffclws.tpt-al-hxy-scl.3hr.GLB", + "atmos.rlds.tavg-u-hxy-is.mon.ATA", + "atmos.rlds.tavg-u-hxy-is.mon.GRL", + "atmos.rlds.tpt-u-hxy-u.3hr.GLB", + "atmos.rldscs.tavg-u-hxy-u.day.GLB", + "atmos.rldscs.tpt-u-hxy-u.3hr.GLB", + "atmos.rls.tavg-u-hxy-u.day.GLB", + "atmos.rlus.tavg-u-hxy-is.mon.ATA", + "atmos.rlus.tavg-u-hxy-is.mon.GRL", + "atmos.rlus.tavg-u-hxy-u.1hr.GLB", + "atmos.rlut.tpt-u-hxy-u.3hr.GLB", + "atmos.rlutcs.tpt-u-hxy-u.3hr.GLB", + "atmos.rsds.tavg-u-hxy-is.mon.ATA", + "atmos.rsds.tavg-u-hxy-is.mon.GRL", + "atmos.rsds.tpt-u-hxy-u.3hr.GLB", + "atmos.rsdscs.tpt-u-hxy-u.3hr.GLB", + "atmos.rsdsdiff.tavg-u-hxy-u.1hr.GLB", + "atmos.rsdsdiff.tavg-u-hxy-u.day.GLB", + "atmos.rss.tavg-u-hxy-u.day.GLB", + "atmos.rsus.tavg-u-hxy-is.mon.ATA", + "atmos.rsus.tavg-u-hxy-is.mon.GRL", + "atmos.rsus.tavg-u-hxy-u.1hr.GLB", + "atmos.rsut.tpt-u-hxy-u.3hr.GLB", + "atmos.rsutcs.tpt-u-hxy-u.3hr.GLB", + "atmos.rv850.tavg-850hPa-hxy-air.6hr.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.1hr.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.3hr.GLB", + "atmos.snmsl.tavg-u-hxy-lnd.day.GLB", + "atmos.snrefr.tavg-u-hxy-lnd.day.GLB", + "atmos.snwc.tavg-u-hxy-lnd.day.GLB", + "atmos.ta.tpt-al-hxy-u.3hr.GLB", + "atmos.ta.tpt-p6-hxy-air.3hr.GLB", + "atmos.tas.tavg-h2m-hm-is.mon.ATA", + "atmos.tas.tavg-h2m-hm-is.mon.GRL", + "atmos.tauunoegw.tavg-p19-hxy-air.mon.GLB", + "atmos.tauunowgw.tavg-p19-hxy-air.mon.GLB", + "atmos.tauuogw.tavg-p19-hxy-air.mon.GLB", + "atmos.tauupbl.tavg-u-hxy-u.day.GLB", + "atmos.tauvnogw.tavg-p19-hxy-air.mon.GLB", + "atmos.tauvogw.tavg-p19-hxy-air.mon.GLB", + "atmos.tauvpbl.tavg-u-hxy-u.day.GLB", + "atmos.tdps.tavg-h2m-hxy-u.day.GLB", + "atmos.tntc.tavg-p39-hy-air.mon.GLB", + "atmos.tntnogw.tavg-p39-hy-air.mon.GLB", + "atmos.tntogw.tavg-p39-hy-air.mon.GLB", + "atmos.tntrlcs.tavg-p39-hy-air.mon.GLB", + "atmos.tntrscs.tavg-p39-hy-air.mon.GLB", + "atmos.tntscp.tavg-p39-hy-air.mon.GLB", + "atmos.ts.tavg-u-hxy-is.mon.ATA", + "atmos.ts.tavg-u-hxy-is.mon.GRL", + "atmos.ts.tavg-u-hxy-sn.day.GLB", + "atmos.ts.tavg-u-hxy-u.1hr.GLB", + "atmos.ua.tavg-h100m-hxy-u.3hr.GLB", + "atmos.ua.tpt-200hPa-hxy-u.6hr.GLB", + "atmos.ua.tpt-p6-hxy-air.3hr.GLB", + "atmos.uas.tavg-h10m-hxy-u.6hr.GLB", + "atmos.utendnogw.tavg-p19-hxy-air.day.GLB", + "atmos.utendnogw.tavg-p19-hxy-air.mon.GLB", + "atmos.utendogw.tavg-p19-hxy-air.day.GLB", + "atmos.utendogw.tavg-p19-hxy-air.mon.GLB", + "atmos.va.tavg-h100m-hxy-u.3hr.GLB", + "atmos.va.tpt-200hPa-hxy-u.6hr.GLB", + "atmos.va.tpt-p6-hxy-air.3hr.GLB", + "atmos.vas.tavg-h10m-hxy-u.6hr.GLB", + "atmos.vtendnogw.tavg-p19-hxy-air.day.GLB", + "atmos.vtendnogw.tavg-p19-hxy-air.mon.GLB", + "atmos.vtendogw.tavg-p19-hxy-air.day.GLB", + "atmos.vtendogw.tavg-p19-hxy-air.mon.GLB", + "atmos.wap.tpt-p6-hxy-air.3hr.GLB", + "atmos.wbgt.tavg-h2m-hxy-u.day.GLB", + "atmos.wbgt.tmax-h2m-hxy-u.day.GLB", + "atmos.wsg.tmax-h100m-hxy-u.mon.GLB", + "atmos.wsg.tmax-h10m-hxy-u.mon.GLB", + "atmos.zg.tavg-1000hPa-hxy-air.6hr.GLB", + "atmos.zg.tpt-700hPa-hxy-u.6hr.GLB", + "atmos.zg.tpt-925hPa-hxy-u.6hr.GLB", + "atmosChem.flashrate.tavg-u-hxy-u.day.GLB", + "land.areacellg.ti-u-hxy-u.fx.ATA", + "land.areacellg.ti-u-hxy-u.fx.GRL", + "land.baresoilFrac.tavg-u-hxy-u.yr.GLB", + "land.cLitterCwd.tavg-u-hxy-lnd.mon.GLB", + "land.cLitterLut.tpt-u-hxy-multi.yr.GLB", + "land.cLitterSubSurf.tavg-u-hxy-lnd.mon.GLB", + "land.cLitterSurf.tavg-u-hxy-lnd.mon.GLB", + "land.cOther.tavg-u-hxy-lnd.mon.GLB", + "land.cProductLut.tpt-u-hxy-multi.yr.GLB", + "land.cropFrac.tavg-u-hxy-u.yr.GLB", + "land.cropFracC3.tavg-u-hxy-u.mon.GLB", + "land.cropFracC4.tavg-u-hxy-u.mon.GLB", + "land.cSoilLut.tpt-u-hxy-multi.yr.GLB", + "land.cSoilPools.tavg-u-hxy-lnd.mon.GLB", + "land.cVeg.tavg-u-hxy-ng.mon.GLB", + "land.cVeg.tavg-u-hxy-shb.mon.GLB", + "land.cVeg.tavg-u-hxy-tree.mon.GLB", + "land.cVegLut.tpt-u-hxy-multi.yr.GLB", + "land.dgw.tavg-u-hxy-lnd.day.GLB", + "land.drivw.tavg-u-hxy-lnd.day.GLB", + "land.dsn.tavg-u-hxy-lnd.day.GLB", + "land.dsw.tavg-u-hxy-lnd.day.GLB", + "land.esn.tavg-u-hxy-sn.day.GLB", + "land.evspsblsoi.tavg-u-hxy-u.3hr.GLB", + "land.evspsblveg.tavg-u-hxy-u.3hr.GLB", + "land.fLitterFire.tavg-u-hxy-lnd.mon.GLB", + "land.fLulccAtmLut.tavg-u-hxy-multi.mon.GLB", + "land.fNgasNonFire.tavg-u-hxy-lnd.mon.GLB", + "land.fracInLut.tsum-u-hxy-lnd.yr.GLB", + "land.fracLut.tpt-u-hxy-u.mon.GLB", + "land.fracLut.tpt-u-hxy-u.yr.GLB", + "land.fracOutLut.tsum-u-hxy-lnd.yr.GLB", + "land.fVegFire.tavg-u-hxy-lnd.mon.GLB", + "land.fVegLitterMortality.tavg-u-hxy-lnd.mon.GLB", + "land.fVegLitterSenescence.tavg-u-hxy-lnd.mon.GLB", + "land.fVegSoilMortality.tavg-u-hxy-lnd.mon.GLB", + "land.fVegSoilSenescence.tavg-u-hxy-lnd.mon.GLB", + "land.gpp.tavg-u-hxy-ng.mon.GLB", + "land.gpp.tavg-u-hxy-shb.mon.GLB", + "land.gpp.tavg-u-hxy-tree.mon.GLB", + "land.gppLut.tavg-u-hxy-multi.mon.GLB", + "land.grassFrac.tavg-u-hxy-u.yr.GLB", + "land.grassFracC3.tavg-u-hxy-u.mon.GLB", + "land.grassFracC4.tavg-u-hxy-u.mon.GLB", + "land.hfdsl.tavg-u-hxy-lnd.3hr.GLB", + "land.hflsLut.tavg-u-hxy-multi.mon.GLB", + "land.hfssLut.tavg-u-hxy-multi.mon.GLB", + "land.irrDem.tavg-u-hxy-u.day.GLB", + "land.irrGw.tavg-u-hxy-u.day.GLB", + "land.irrLut.tavg-u-hxy-multi.mon.GLB", + "land.irrLut.tavg-u-hxy-u.day.GLB", + "land.irrSurf.tavg-u-hxy-u.day.GLB", + "land.laiLut.tavg-u-hxy-multi.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.3hr.GLB", + "land.mrros.tavg-u-hxy-lnd.3hr.GLB", + "land.mrsol.tavg-d100cm-hxy-lnd.3hr.GLB", + "land.mrsolLut.tavg-d10cm-hxy-multi.mon.GLB", + "land.nbpLut.tavg-u-hxy-multi.mon.GLB", + "land.nLeaf.tavg-u-hxy-lnd.mon.GLB", + "land.nLitterCwd.tavg-u-hxy-lnd.mon.GLB", + "land.nLitterSubSurf.tavg-u-hxy-lnd.mon.GLB", + "land.nLitterSurf.tavg-u-hxy-lnd.mon.GLB", + "land.nMineralNH4.tavg-u-hxy-lnd.mon.GLB", + "land.nMineralNO3.tavg-u-hxy-lnd.mon.GLB", + "land.nOther.tavg-u-hxy-lnd.mon.GLB", + "land.npp.tavg-u-hxy-ng.mon.GLB", + "land.npp.tavg-u-hxy-shb.mon.GLB", + "land.npp.tavg-u-hxy-tree.mon.GLB", + "land.nppLeaf.tavg-u-hxy-lnd.mon.GLB", + "land.nppLut.tavg-u-hxy-multi.mon.GLB", + "land.nppOther.tavg-u-hxy-lnd.mon.GLB", + "land.nppRoot.tavg-u-hxy-lnd.mon.GLB", + "land.nppStem.tavg-u-hxy-lnd.mon.GLB", + "land.nppVgt.tavg-u-hxy-multi.day.GLB", + "land.nRoot.tavg-u-hxy-lnd.mon.GLB", + "land.nStem.tavg-u-hxy-lnd.mon.GLB", + "land.orog.tavg-u-hxy-is.mon.ATA", + "land.orog.tavg-u-hxy-is.mon.GRL", + "land.orog.tavg-u-hxy-is.yr.ATA", + "land.orog.tavg-u-hxy-is.yr.GRL", + "land.pastureFracC3.tavg-u-hxy-u.mon.GLB", + "land.pastureFracC4.tavg-u-hxy-u.mon.GLB", + "land.qgwr.tavg-u-hxy-lnd.day.GLB", + "land.ra.tavg-u-hxy-ng.mon.GLB", + "land.ra.tavg-u-hxy-shb.mon.GLB", + "land.ra.tavg-u-hxy-tree.mon.GLB", + "land.raLeaf.tavg-u-hxy-lnd.mon.GLB", + "land.raLut.tavg-u-hxy-multi.mon.GLB", + "land.raOther.tavg-u-hxy-lnd.mon.GLB", + "land.raRoot.tavg-u-hxy-lnd.mon.GLB", + "land.raStem.tavg-u-hxy-lnd.mon.GLB", + "land.raVgt.tavg-u-hxy-multi.day.GLB", + "land.residualFrac.tavg-u-hxy-u.yr.GLB", + "land.rh.tavg-u-hxy-ng.mon.GLB", + "land.rh.tavg-u-hxy-shb.mon.GLB", + "land.rh.tavg-u-hxy-tree.mon.GLB", + "land.rhLitter.tavg-u-hxy-lnd.mon.GLB", + "land.rhLut.tavg-u-hxy-multi.mon.GLB", + "land.rhSoil.tavg-u-hxy-lnd.mon.GLB", + "land.rhVgt.tavg-u-hxy-multi.day.GLB", + "land.rzwc.tavg-u-hxy-lnd.day.GLB", + "land.sftgif.tavg-u-hxy-u.yr.ATA", + "land.sftgif.tavg-u-hxy-u.yr.GRL", + "land.shrubFrac.tavg-u-hxy-u.yr.GLB", + "land.sw.tavg-u-hxy-lnd.day.GLB", + "land.sweLut.tavg-u-hxy-multi.mon.GLB", + "land.tasLut.tavg-h2m-hxy-multi.mon.GLB", + "land.tran.tavg-u-hxy-u.3hr.GLB", + "land.treeFrac.tavg-u-hxy-u.yr.GLB", + "land.treeFracBdlDcd.tavg-u-hxy-u.mon.GLB", + "land.treeFracBdlEvg.tavg-u-hxy-u.mon.GLB", + "land.treeFracNdlDcd.tavg-u-hxy-u.mon.GLB", + "land.treeFracNdlEvg.tavg-u-hxy-u.mon.GLB", + "land.tsLut.tavg-u-hxy-multi.mon.GLB", + "land.vegFrac.tavg-u-hxy-u.yr.GLB", + "land.vegHeight.tavg-u-hxy-ng.mon.GLB", + "land.vegHeight.tavg-u-hxy-shb.mon.GLB", + "land.wetlandCH4cons.tavg-u-hxy-lnd.mon.GLB", + "land.wetlandCH4prod.tavg-u-hxy-lnd.mon.GLB", + "land.wetlandFrac.tavg-u-hxy-u.mon.GLB", + "landIce.acabf.tavg-u-hxy-is.mon.ATA", + "landIce.acabf.tavg-u-hxy-is.mon.GRL", + "landIce.acabf.tavg-u-hxy-is.yr.ATA", + "landIce.acabf.tavg-u-hxy-is.yr.GRL", + "landIce.agesno.tavg-u-hxy-lnd.mon.GLB", + "landIce.hfdsn.tavg-u-hxy-lnd.day.GLB", + "landIce.hfgeoubed.tavg-u-hxy-gis.yr.ATA", + "landIce.hfgeoubed.tavg-u-hxy-gis.yr.GRL", + "landIce.hfgeoubed.ti-u-hxy-gis.fx.ATA", + "landIce.iareafl.tavg-u-hm-fis.yr.ATA", + "landIce.iareafl.tavg-u-hm-fis.yr.GRL", + "landIce.iareagr.tavg-u-hm-gis.yr.ATA", + "landIce.iareagr.tavg-u-hm-gis.yr.GRL", + "landIce.icem.tavg-u-hxy-is.mon.ATA", + "landIce.icem.tavg-u-hxy-is.mon.GRL", + "landIce.libmassbf.tavg-u-hxy-fis.mon.ATA", + "landIce.libmassbf.tavg-u-hxy-fis.mon.GRL", + "landIce.libmassbf.tavg-u-hxy-fis.yr.ATA", + "landIce.libmassbf.tavg-u-hxy-fis.yr.GRL", + "landIce.libmassbf.tavg-u-hxy-gis.mon.ATA", + "landIce.libmassbf.tavg-u-hxy-gis.mon.GRL", + "landIce.libmassbf.tavg-u-hxy-gis.yr.ATA", + "landIce.libmassbf.tavg-u-hxy-gis.yr.GRL", + "landIce.licalvf.tavg-u-hxy-is.mon.ATA", + "landIce.licalvf.tavg-u-hxy-is.mon.GRL", + "landIce.licalvf.tavg-u-hxy-is.yr.ATA", + "landIce.licalvf.tavg-u-hxy-is.yr.GRL", + "landIce.lifmassbf.tavg-u-hxy-is.mon.ATA", + "landIce.lifmassbf.tavg-u-hxy-is.mon.GRL", + "landIce.lifmassbf.tavg-u-hxy-is.yr.ATA", + "landIce.lifmassbf.tavg-u-hxy-is.yr.GRL", + "landIce.lim.tavg-u-hm-is.yr.ATA", + "landIce.lim.tavg-u-hm-is.yr.GRL", + "landIce.limnsw.tavg-u-hm-is.yr.ATA", + "landIce.limnsw.tavg-u-hm-is.yr.GRL", + "landIce.litempbot.tavg-u-hxy-fis.mon.ATA", + "landIce.litempbot.tavg-u-hxy-fis.mon.GRL", + "landIce.litempbot.tavg-u-hxy-fis.yr.ATA", + "landIce.litempbot.tavg-u-hxy-fis.yr.GRL", + "landIce.litempbot.tavg-u-hxy-gis.mon.ATA", + "landIce.litempbot.tavg-u-hxy-gis.mon.GRL", + "landIce.litempbot.tavg-u-hxy-gis.yr.ATA", + "landIce.litempbot.tavg-u-hxy-gis.yr.GRL", + "landIce.litemptop.tavg-u-hxy-is.mon.ATA", + "landIce.litemptop.tavg-u-hxy-is.mon.GRL", + "landIce.litemptop.tavg-u-hxy-is.yr.ATA", + "landIce.litemptop.tavg-u-hxy-is.yr.GRL", + "landIce.lithk.tavg-u-hxy-is.yr.ATA", + "landIce.lithk.tavg-u-hxy-is.yr.GRL", + "landIce.lithk.ti-u-hxy-is.fx.ATA", + "landIce.lwsnl.tavg-u-hxy-lnd.day.GLB", + "landIce.lwsnl.tavg-u-hxy-lnd.mon.GLB", + "landIce.modelcellareai.tavg-u-hxy-u.yr.ATA", + "landIce.modelcellareai.tavg-u-hxy-u.yr.GRL", + "landIce.mrroLi.tavg-u-hxy-is.mon.ATA", + "landIce.mrroLi.tavg-u-hxy-is.mon.GRL", + "landIce.pflw.tavg-u-hxy-lnd.day.GLB", + "landIce.sbl.tavg-u-hxy-is.mon.ATA", + "landIce.sbl.tavg-u-hxy-is.mon.GRL", + "landIce.sbl.tavg-u-hxy-u.day.GLB", + "landIce.sftflf.tavg-u-hxy-u.yr.ATA", + "landIce.sftflf.tavg-u-hxy-u.yr.GRL", + "landIce.sftgrf.tavg-u-hxy-u.yr.ATA", + "landIce.sftgrf.tavg-u-hxy-u.yr.GRL", + "landIce.snc.tavg-u-hxy-is.mon.ATA", + "landIce.snc.tavg-u-hxy-is.mon.GRL", + "landIce.snc.tavg-u-hxy-is.yr.ATA", + "landIce.snc.tavg-u-hxy-is.yr.GRL", + "landIce.snc.tavg-u-hxy-lnd.day.GLB", + "landIce.snd.tavg-u-hxy-lnd.day.GLB", + "landIce.snicem.tavg-u-hxy-is.mon.ATA", + "landIce.snm.tavg-u-hxy-is.mon.ATA", + "landIce.snm.tavg-u-hxy-is.mon.GRL", + "landIce.snm.tavg-u-hxy-lnd.day.GLB", + "landIce.snrefr.tavg-u-hxy-is.mon.ATA", + "landIce.snrefr.tavg-u-hxy-is.mon.GRL", + "landIce.strbasemag.tavg-u-hxy-is.yr.ATA", + "landIce.strbasemag.tavg-u-hxy-is.yr.GRL", + "landIce.tendacabf.tavg-u-hm-is.yr.ATA", + "landIce.tendacabf.tavg-u-hm-is.yr.GRL", + "landIce.tendlibmassbf.tavg-u-hm-is.yr.ATA", + "landIce.tendlibmassbf.tavg-u-hm-is.yr.GRL", + "landIce.tendlicalvf.tavg-u-hm-is.yr.ATA", + "landIce.tendlicalvf.tavg-u-hm-is.yr.GRL", + "landIce.topg.tavg-u-hxy-gis.yr.ATA", + "landIce.topg.tavg-u-hxy-gis.yr.GRL", + "landIce.topg.ti-u-hxy-gis.fx.ATA", + "landIce.tpf.tavg-u-hxy-lnd.day.GLB", + "landIce.tsn.tavg-u-hxy-is.mon.ATA", + "landIce.tsn.tavg-u-hxy-is.mon.GRL", + "landIce.tsn.tavg-u-hxy-lnd.day.GLB", + "landIce.xvelbase.tavg-u-hxy-is.yr.ATA", + "landIce.xvelbase.tavg-u-hxy-is.yr.GRL", + "landIce.xvelmean.tavg-u-hxy-is.yr.ATA", + "landIce.xvelmean.tavg-u-hxy-is.yr.GRL", + "landIce.xvelsurf.tavg-u-hxy-is.yr.ATA", + "landIce.xvelsurf.tavg-u-hxy-is.yr.GRL", + "landIce.yvelbase.tavg-u-hxy-is.yr.ATA", + "landIce.yvelbase.tavg-u-hxy-is.yr.GRL", + "landIce.yvelmean.tavg-u-hxy-is.yr.ATA", + "landIce.yvelmean.tavg-u-hxy-is.yr.GRL", + "landIce.yvelsurf.tavg-u-hxy-is.yr.ATA", + "landIce.yvelsurf.tavg-u-hxy-is.yr.GRL", + "landIce.zvelbase.tavg-u-hxy-is.yr.ATA", + "landIce.zvelbase.tavg-u-hxy-is.yr.GRL", + "landIce.zvelsurf.tavg-u-hxy-is.yr.ATA", + "landIce.zvelsurf.tavg-u-hxy-is.yr.GRL", + "ocean.evspsbl.tavg-u-hxy-ifs.mon.GLB", + "ocean.hfacrossline.tavg-u-ht-sea.mon.GLB", + "ocean.hfevapds.tavg-u-hxy-ifs.mon.GLB", + "ocean.hfibthermds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfibthermds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfrainds.tavg-u-hxy-ifs.mon.GLB", + "ocean.hfrunoffds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfrunoffds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfsnthermds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfsnthermds.tavg-u-hxy-sea.mon.GLB", + "ocean.mfo.tavg-u-ht-sea.mon.GLB", + "ocean.msftmmpa.tavg-ol-hyb-sea.mon.GLB", + "ocean.sf6.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfacrossline.tavg-u-ht-sea.mon.GLB", + "ocean.sfdsi.tavg-u-hxy-sea.mon.GLB", + "ocean.sfriver.tavg-u-hxy-sea.mon.GLB", + "ocean.siflfwbot.tavg-u-hxy-sea.mon.GLB", + "ocean.so.tavg-ol-hxy-sea.day.GLB", + "ocean.t17d.tavg-u-hxy-sea.mon.GLB", + "ocean.t20d.tavg-u-hxy-sea.day.GLB", + "ocean.tnkebto.tavg-u-hxy-sea.yr.GLB", + "ocean.vsfcorr.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfevap.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfpr.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfriver.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfsit.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.arag.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.arag.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.calc.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.calc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chl.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.chlcalc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.co3.tavg-d0m-hxy-sea.day.GLB", + "ocnBgchem.co3.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.co3satarag.tavg-d0m-hxy-sea.day.GLB", + "ocnBgchem.co3satarag.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.detoc.tavg-ol-hxy-sea.day.GLB", + "ocnBgchem.dissoc.tavg-ol-hxy-sea.day.GLB", + "ocnBgchem.dmso.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.epn.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.epp.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.epsi.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.exparagob.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.expcalcob.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.expcob.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.expfeob.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.expnob.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.exppob.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.expsiob.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fgdms.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.frfe.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.frn.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppcalc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppdiat.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppdiaz.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppmisc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppnano.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppnitrate.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intpppico.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limfecalc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limfediat.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limfediaz.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limfemisc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limfepico.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limirrcalc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limirrdiat.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limirrdiaz.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limirrmisc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limirrpico.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limncalc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limndiat.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limndiaz.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limnmisc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limnpico.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.no3.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.o2.tavg-d0m-hxy-sea.day.GLB", + "ocnBgchem.o2.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.o2.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.o2sat.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.ph.tavg-d0m-hxy-sea.day.GLB", + "ocnBgchem.ph.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.phyc.tavg-d0m-hxy-sea.day.GLB", + "ocnBgchem.phyc.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.pp.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.pp.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.si.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.sialgc.tavg-u-hxy-si.mon.GLB", + "ocnBgchem.sichl.tavg-u-hxy-si.mon.GLB", + "ocnBgchem.sigpp.tavg-u-hxy-si.mon.GLB", + "ocnBgchem.sino3.tavg-u-hxy-si.mon.GLB", + "ocnBgchem.sisi.tavg-u-hxy-si.mon.GLB", + "seaIce.sfdsi.tavg-u-hxy-si.mon.GLB", + "seaIce.siage.tavg-u-hxy-si.mon.GLB", + "seaIce.siarea.tavg-u-hm-u.day.NH", + "seaIce.siarea.tavg-u-hm-u.day.SH", + "seaIce.sicompstren.tavg-u-hxy-si.mon.GLB", + "seaIce.sidivvel.tpt-u-hxy-si.mon.GLB", + "seaIce.sidmasstranx.tavg-u-hxy-u.mon.GLB", + "seaIce.sidmasstrany.tavg-u-hxy-u.mon.GLB", + "seaIce.sidragbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidragtop.tavg-u-hxy-si.mon.GLB", + "seaIce.siextent.tavg-u-hm-u.day.NH", + "seaIce.siextent.tavg-u-hm-u.day.SH", + "seaIce.sifb.tavg-u-hxy-si.day.GLB", + "seaIce.sifb.tavg-u-hxy-si.mon.GLB", + "seaIce.siflfwbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflfwdrain.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcecoriolx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcecorioly.tavg-u-hxy-si.mon.GLB", + "seaIce.siforceintstrx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforceintstry.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcetiltx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcetilty.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdconc.tavg-u-hxy-si.day.GLB", + "seaIce.siitdsnconc.tavg-u-hxy-si.day.GLB", + "seaIce.siitdsnthick.tavg-u-hxy-si.day.GLB", + "seaIce.siitdthick.tavg-u-hxy-si.day.GLB", + "seaIce.simpconc.tavg-u-hxy-si.day.GLB", + "seaIce.simpeffconc.tavg-u-hxy-si.day.GLB", + "seaIce.simpeffconc.tavg-u-hxy-si.mon.GLB", + "seaIce.simprefrozen.tavg-u-hxy-simp.day.GLB", + "seaIce.simprefrozen.tavg-u-hxy-simp.mon.GLB", + "seaIce.simpthick.tavg-u-hxy-si.day.GLB", + "seaIce.simpthick.tavg-u-hxy-simp.mon.GLB", + "seaIce.sirdgconc.tavg-u-hxy-si.day.GLB", + "seaIce.sisali.tavg-u-hxy-si.day.GLB", + "seaIce.sisali.tavg-u-hxy-si.mon.GLB", + "seaIce.sisaltmass.tavg-u-hxy-si.day.GLB", + "seaIce.sishearvel.tpt-u-hxy-si.mon.GLB", + "seaIce.sisnmass.tavg-u-hm-u.day.NH", + "seaIce.sisnmass.tavg-u-hm-u.day.SH", + "seaIce.sitempbot.tavg-u-hxy-si.day.GLB", + "seaIce.sitempbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sitempsnic.tavg-u-hxy-si.day.GLB", + "seaIce.sithick.tavg-u-hxy-sir.day.GLB", + "seaIce.sithick.tavg-u-hxy-sir.mon.GLB", + "seaIce.sivol.tavg-u-hm-u.day.NH", + "seaIce.sivol.tavg-u-hm-u.day.SH" + ], + "Low": [ + "aerosol.sfpm1.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.sfpm10.tavg-h2m-hxy-u.1hr.GLB", + "atmos.hurs.tmin-h2m-hxy-crp.day.GLB", + "atmos.pr.tavg-u-hxy-crp.day.GLB", + "atmos.tas.tmax-h2m-hxy-crp.day.GLB", + "atmos.tas.tmin-h2m-hxy-crp.day.GLB", + "atmosChem.drynh3.tavg-u-hxy-u.day.GLB", + "atmosChem.drynh4.tavg-u-hxy-u.day.GLB", + "atmosChem.drynoy.tavg-u-hxy-u.day.GLB", + "atmosChem.flashrate.tavg-u-hxy-u.mon.GLB", + "atmosChem.wetnh3.tavg-u-hxy-u.day.GLB", + "atmosChem.wetnh4.tavg-u-hxy-u.day.GLB", + "atmosChem.wetnoy.tavg-u-hxy-u.day.GLB", + "land.c13Land.tavg-u-hxy-lnd.mon.GLB", + "land.c13Litter.tavg-u-hxy-lnd.mon.GLB", + "land.c13Soil.tavg-u-hxy-lnd.mon.GLB", + "land.c13Veg.tavg-u-hxy-lnd.mon.GLB", + "land.c14Land.tavg-u-hxy-lnd.mon.GLB", + "land.c14Litter.tavg-u-hxy-lnd.mon.GLB", + "land.c14Soil.tavg-u-hxy-lnd.mon.GLB", + "land.c14Veg.tavg-u-hxy-lnd.mon.GLB", + "land.c3PftFrac.tavg-u-hxy-u.mon.GLB", + "land.c4PftFrac.tavg-u-hxy-u.mon.GLB", + "land.gppc13.tavg-u-hxy-lnd.mon.GLB", + "land.gppc14.tavg-u-hxy-lnd.mon.GLB", + "land.lai.tavg-u-hxy-lnd.day.GLB", + "land.netAtmosLandC13Flux.tavg-u-hxy-lnd.mon.GLB", + "land.netAtmosLandC14Flux.tavg-u-hxy-lnd.mon.GLB", + "land.rac13.tavg-u-hxy-lnd.mon.GLB", + "land.rac14.tavg-u-hxy-lnd.mon.GLB", + "land.rhc13.tavg-u-hxy-lnd.mon.GLB", + "land.rhc14.tavg-u-hxy-lnd.mon.GLB", + "ocean.difmxybo.tavg-ol-hxy-sea.yr.GLB", + "ocean.difmxylo.tavg-ol-hxy-sea.yr.GLB", + "ocean.diftrblo.tavg-ol-hxy-sea.yr.GLB", + "ocean.diftrelo.tavg-ol-hxy-sea.yr.GLB", + "ocean.difvho.tavg-ol-hxy-sea.yr.GLB", + "ocean.difvso.tavg-ol-hxy-sea.yr.GLB", + "ocean.dispkexyfo.tavg-u-hxy-sea.yr.GLB", + "ocean.dxto.ti-u-hxy-u.fx.GLB", + "ocean.dxuo.ti-u-hxy-u.fx.GLB", + "ocean.dxvo.ti-u-hxy-u.fx.GLB", + "ocean.dyto.ti-u-hxy-u.fx.GLB", + "ocean.dyuo.ti-u-hxy-u.fx.GLB", + "ocean.dyvo.ti-u-hxy-u.fx.GLB", + "ocean.mlotstsq.tavg-u-hxy-sea.mon.GLB", + "ocean.msftmmpa.tavg-rho-hyb-sea.mon.GLB", + "ocean.msftmsmpa.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftypa.tavg-ol-ht-sea.mon.GLB", + "ocean.msftypa.tavg-rho-ht-sea.mon.GLB", + "ocean.ocontempdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontempmint.tavg-u-hxy-sea.yr.GLB", + "ocean.ocontemppadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemppmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemppsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemprmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemptend.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottempdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottempmint.tavg-u-hxy-sea.yr.GLB", + "ocean.opottemppadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemppmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemppsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemprmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemptend.tavg-ol-hxy-sea.dec.GLB", + "ocean.osaltdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpsmadvect.tavg-ol-hxy-sea.mon.GLB", + "ocean.osaltpsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltrmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osalttend.tavg-ol-hxy-sea.yr.GLB", + "ocean.rsdo.tavg-ol-hxy-sea.day.GLB", + "ocean.rsdoabsorb.tavg-ol-hxy-sea.yr.GLB", + "ocean.somint.tavg-u-hxy-sea.yr.GLB", + "ocean.sossq.tavg-u-hxy-sea.mon.GLB", + "ocean.thkcelluo.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcellvo.tavg-ol-hxy-sea.mon.GLB", + "ocean.tnpeo.tavg-u-hxy-sea.yr.GLB", + "ocean.tossq.tavg-u-hxy-sea.mon.GLB", + "ocean.wo.tavg-ol-hxy-sea.day.GLB", + "ocnBgchem.dissi13c.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.dissi13c.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissi14c.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissi14cabio.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.dissi14cabio.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.expcob.tavg-u-hxy-sea.day.GLB", + "ocnBgchem.fg13co2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fg14co2abio.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intpoc.tavg-u-hxy-sea.day.GLB", + "ocnBgchem.o2min.tavg-u-hxy-sea.day.GLB", + "ocnBgchem.phycalc.tavg-ol-hxy-sea.day.GLB", + "ocnBgchem.phydiat.tavg-d0m-hxy-sea.day.GLB", + "ocnBgchem.phydiaz.tavg-d0m-hxy-sea.day.GLB", + "ocnBgchem.phymisc.tavg-d0m-hxy-sea.day.GLB", + "ocnBgchem.phynano.tavg-u-hxy-sea.day.GLB", + "ocnBgchem.phypico.tavg-ol-hxy-sea.day.GLB", + "ocnBgchem.zmeso.tavg-ol-hxy-sea.day.GLB", + "ocnBgchem.zmicro.tavg-ol-hxy-sea.day.GLB", + "ocnBgchem.zooc.tavg-ol-hxy-sea.day.GLB" + ] + }, + "scenariomip15": { + "Core": [ + "atmos.areacella.ti-u-hxy-u.fx.GLB", + "atmos.cl.tavg-al-hxy-u.mon.GLB", + "atmos.cli.tavg-al-hxy-u.mon.GLB", + "atmos.clivi.tavg-u-hxy-u.mon.GLB", + "atmos.clt.tavg-u-hxy-u.day.GLB", + "atmos.clt.tavg-u-hxy-u.mon.GLB", + "atmos.clw.tavg-al-hxy-u.mon.GLB", + "atmos.clwvi.tavg-u-hxy-u.mon.GLB", + "atmos.evspsbl.tavg-u-hxy-u.mon.GLB", + "atmos.hfls.tavg-u-hxy-u.mon.GLB", + "atmos.hfss.tavg-u-hxy-u.mon.GLB", + "atmos.hur.tavg-p19-hxy-air.mon.GLB", + "atmos.hur.tavg-p19-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.6hr.GLB", + "atmos.hurs.tavg-h2m-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.mon.GLB", + "atmos.hus.tavg-p19-hxy-u.day.GLB", + "atmos.hus.tavg-p19-hxy-u.mon.GLB", + "atmos.huss.tavg-h2m-hxy-u.day.GLB", + "atmos.huss.tavg-h2m-hxy-u.mon.GLB", + "atmos.huss.tpt-h2m-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.1hr.GLB", + "atmos.pr.tavg-u-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.day.GLB", + "atmos.pr.tavg-u-hxy-u.mon.GLB", + "atmos.prc.tavg-u-hxy-u.mon.GLB", + "atmos.prsn.tavg-u-hxy-u.mon.GLB", + "atmos.prw.tavg-u-hxy-u.mon.GLB", + "atmos.ps.tavg-u-hxy-u.day.GLB", + "atmos.ps.tavg-u-hxy-u.mon.GLB", + "atmos.psl.tavg-u-hxy-u.day.GLB", + "atmos.psl.tavg-u-hxy-u.mon.GLB", + "atmos.rlds.tavg-u-hxy-u.mon.GLB", + "atmos.rldscs.tavg-u-hxy-u.mon.GLB", + "atmos.rlus.tavg-u-hxy-u.mon.GLB", + "atmos.rluscs.tavg-u-hxy-u.mon.GLB", + "atmos.rlut.tavg-u-hxy-u.mon.GLB", + "atmos.rlutcs.tavg-u-hxy-u.mon.GLB", + "atmos.rsds.tavg-u-hxy-u.day.GLB", + "atmos.rsds.tavg-u-hxy-u.mon.GLB", + "atmos.rsdscs.tavg-u-hxy-u.mon.GLB", + "atmos.rsdt.tavg-u-hxy-u.mon.GLB", + "atmos.rsus.tavg-u-hxy-u.mon.GLB", + "atmos.rsuscs.tavg-u-hxy-u.mon.GLB", + "atmos.rsut.tavg-u-hxy-u.mon.GLB", + "atmos.rsutcs.tavg-u-hxy-u.mon.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.day.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.mon.GLB", + "atmos.sftlf.ti-u-hxy-u.fx.GLB", + "atmos.ta.tavg-p19-hxy-air.day.GLB", + "atmos.ta.tavg-p19-hxy-air.mon.GLB", + "atmos.ta.tpt-p3-hxy-air.6hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.day.GLB", + "atmos.tas.tavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tmax-h2m-hxy-u.day.GLB", + "atmos.tas.tmaxavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tmin-h2m-hxy-u.day.GLB", + "atmos.tas.tminavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tpt-h2m-hxy-u.3hr.GLB", + "atmos.tauu.tavg-u-hxy-u.mon.GLB", + "atmos.tauv.tavg-u-hxy-u.mon.GLB", + "atmos.ts.tavg-u-hxy-u.mon.GLB", + "atmos.ua.tavg-p19-hxy-air.day.GLB", + "atmos.ua.tavg-p19-hxy-air.mon.GLB", + "atmos.ua.tpt-p3-hxy-air.6hr.GLB", + "atmos.uas.tavg-h10m-hxy-u.day.GLB", + "atmos.uas.tavg-h10m-hxy-u.mon.GLB", + "atmos.uas.tpt-h10m-hxy-u.3hr.GLB", + "atmos.va.tavg-p19-hxy-air.day.GLB", + "atmos.va.tavg-p19-hxy-air.mon.GLB", + "atmos.va.tpt-p3-hxy-air.6hr.GLB", + "atmos.vas.tavg-h10m-hxy-u.day.GLB", + "atmos.vas.tavg-h10m-hxy-u.mon.GLB", + "atmos.vas.tpt-h10m-hxy-u.3hr.GLB", + "atmos.wap.tavg-p19-hxy-air.mon.GLB", + "atmos.wap.tavg-p19-hxy-u.day.GLB", + "atmos.zg.tavg-p19-hxy-air.day.GLB", + "atmos.zg.tavg-p19-hxy-air.mon.GLB", + "land.evspsblsoi.tavg-u-hxy-lnd.mon.GLB", + "land.evspsblveg.tavg-u-hxy-lnd.mon.GLB", + "land.lai.tavg-u-hxy-lnd.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.mon.GLB", + "land.mrros.tavg-u-hxy-lnd.mon.GLB", + "land.mrso.tavg-u-hxy-lnd.mon.GLB", + "land.mrsofc.ti-u-hxy-lnd.fx.GLB", + "land.mrsol.tavg-d10cm-hxy-lnd.mon.GLB", + "land.orog.ti-u-hxy-u.fx.GLB", + "land.rootd.ti-u-hxy-lnd.fx.GLB", + "land.sftgif.ti-u-hxy-u.fx.GLB", + "land.slthick.ti-sl-hxy-lnd.fx.GLB", + "landIce.mrfso.tavg-u-hxy-lnd.mon.GLB", + "landIce.snc.tavg-u-hxy-lnd.mon.GLB", + "landIce.snw.tavg-u-hxy-lnd.mon.GLB", + "ocean.areacello.ti-u-hxy-u.fx.GLB", + "ocean.basin.ti-u-hxy-u.fx.GLB", + "ocean.bigthetao.tavg-ol-hxy-sea.mon.GLB", + "ocean.deptho.ti-u-hxy-sea.fx.GLB", + "ocean.hfds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfgeou.ti-u-hxy-sea.fx.GLB", + "ocean.masscello.tavg-ol-hxy-sea.mon.GLB", + "ocean.masscello.ti-ol-hxy-sea.fx.GLB", + "ocean.mlotst.tavg-u-hxy-sea.mon.GLB", + "ocean.sftof.ti-u-hxy-u.fx.GLB", + "ocean.so.tavg-ol-hxy-sea.mon.GLB", + "ocean.sos.tavg-u-hxy-sea.day.GLB", + "ocean.sos.tavg-u-hxy-sea.mon.GLB", + "ocean.tauuo.tavg-u-hxy-sea.mon.GLB", + "ocean.tauvo.tavg-u-hxy-sea.mon.GLB", + "ocean.thetao.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcello.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcello.ti-ol-hxy-sea.fx.GLB", + "ocean.tos.tavg-u-hxy-sea.day.GLB", + "ocean.tos.tavg-u-hxy-sea.mon.GLB", + "ocean.umo.tavg-ol-hxy-sea.mon.GLB", + "ocean.uo.tavg-ol-hxy-sea.mon.GLB", + "ocean.vmo.tavg-ol-hxy-sea.mon.GLB", + "ocean.vo.tavg-ol-hxy-sea.mon.GLB", + "ocean.wmo.tavg-ol-hxy-sea.mon.GLB", + "ocean.wo.tavg-ol-hxy-sea.mon.GLB", + "ocean.zos.tavg-u-hxy-sea.day.GLB", + "ocean.zos.tavg-u-hxy-sea.mon.GLB", + "ocean.zostoga.tavg-u-hm-sea.mon.GLB", + "seaIce.siconc.tavg-u-hxy-u.day.GLB", + "seaIce.siconc.tavg-u-hxy-u.mon.GLB", + "seaIce.simass.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-si.mon.GLB", + "seaIce.sitimefrac.tavg-u-hxy-sea.mon.GLB", + "seaIce.siu.tavg-u-hxy-si.mon.GLB", + "seaIce.siv.tavg-u-hxy-si.mon.GLB", + "seaIce.snd.tavg-u-hxy-sn.mon.GLB", + "seaIce.ts.tavg-u-hxy-si.mon.GLB" + ], + "High": [ + "aerosol.abs550aer.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550bc.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550dust.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550no3.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550oa.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550so4.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550ss.tavg-u-hxy-u.mon.GLB", + "aerosol.airmass.tavg-al-hxy-u.mon.GLB", + "aerosol.aoanh.tavg-al-hxy-u.mon.NH", + "aerosol.bry.tavg-p39-hy-air.mon.GLB", + "aerosol.bs550aer.tpt-al-hxy-u.6hr.GLB", + "aerosol.c2h6.tavg-al-hxy-u.mon.GLB", + "aerosol.c3h6.tavg-al-hxy-u.mon.GLB", + "aerosol.c3h8.tavg-al-hxy-u.mon.GLB", + "aerosol.ccldncl.tavg-u-hxy-ccl.mon.GLB", + "aerosol.ccn.tavg-u-hxy-ccl.mon.30S-90S", + "aerosol.ccn.tavg-u-hxy-ccl.mon.GLB", + "aerosol.ccn1.tavg-al-hxy-u.mon.30S-90S", + "aerosol.ccn1.tavg-al-hxy-u.mon.GLB", + "aerosol.ccnp02.tavg-al-hxy-u.mon.30S-90S", + "aerosol.ccnp02.tavg-al-hxy-u.mon.GLB", + "aerosol.cdnc.tavg-al-hxy-u.mon.30S-90S", + "aerosol.cdnc.tavg-al-hxy-u.mon.GLB", + "aerosol.cfc114.tavg-al-hxy-u.mon.GLB", + "aerosol.ch3coch3.tavg-al-hxy-u.mon.GLB", + "aerosol.cheaqpso4.tavg-al-hxy-u.mon.GLB", + "aerosol.chegpso4.tavg-al-hxy-u.mon.GLB", + "aerosol.chepasoa.tavg-u-hxy-u.mon.GLB", + "aerosol.chepsoa.tavg-u-hxy-u.mon.GLB", + "aerosol.cly.tavg-p39-hy-air.mon.GLB", + "aerosol.co.tavg-al-hxy-u.mon.GLB", + "aerosol.co.tavg-h2m-hxy-u.day.GLB", + "aerosol.cod.tavg-u-hxy-u.day.GLB", + "aerosol.cod.tavg-u-hxy-u.mon.30S-90S", + "aerosol.cod.tavg-u-hxy-u.mon.GLB", + "aerosol.conccn.tavg-al-hxy-u.mon.GLB", + "aerosol.conccn.tpt-u-hs-u.3hr.GLB", + "aerosol.depdust.tavg-u-hxy-u.mon.GLB", + "aerosol.drybc.tavg-u-hxy-u.mon.GLB", + "aerosol.drydust.tavg-u-hxy-u.mon.GLB", + "aerosol.dryno3.tavg-u-hxy-u.mon.GLB", + "aerosol.dryo3.tavg-u-hxy-u.mon.GLB", + "aerosol.dryoa.tavg-u-hxy-u.mon.GLB", + "aerosol.dryso2.tavg-u-hxy-u.mon.GLB", + "aerosol.dryso4.tavg-u-hxy-u.mon.GLB", + "aerosol.dryss.tavg-u-hxy-u.mon.GLB", + "aerosol.ec550aer.tavg-al-hxy-u.mon.GLB", + "aerosol.ec550aer.tpt-u-hxy-u.6hr.GLB", + "aerosol.emiaco.tavg-u-hxy-u.mon.GLB", + "aerosol.emianox.tavg-u-hxy-u.mon.GLB", + "aerosol.emiaoa.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbbc.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbch4.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbco.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbdms.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbnh3.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbnox.tavg-u-hxy-u.mon.GLB", + "aerosol.emibboa.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbso2.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbvoc.tavg-u-hxy-u.mon.GLB", + "aerosol.emibc.tavg-u-hxy-u.mon.GLB", + "aerosol.emibvoc.tavg-u-hxy-u.mon.GLB", + "aerosol.emico.tavg-u-hxy-u.mon.GLB", + "aerosol.emidms.tavg-u-hxy-u.mon.30S-90S", + "aerosol.emidms.tavg-u-hxy-u.mon.GLB", + "aerosol.emidust.tavg-u-hxy-u.mon.GLB", + "aerosol.emiisop.tavg-u-hxy-u.mon.GLB", + "aerosol.emilnox.tavg-al-hxy-u.mon.GLB", + "aerosol.eminh3.tavg-u-hxy-u.mon.GLB", + "aerosol.eminox.tavg-u-hxy-u.mon.GLB", + "aerosol.emioa.tavg-u-hxy-u.mon.GLB", + "aerosol.emiso2.tavg-u-hxy-u.mon.GLB", + "aerosol.emiso4.tavg-u-hxy-u.mon.GLB", + "aerosol.emiss.tavg-u-hxy-u.mon.30S-90S", + "aerosol.emiss.tavg-u-hxy-u.mon.GLB", + "aerosol.emivoc.tavg-u-hxy-u.mon.GLB", + "aerosol.h2o.tavg-al-hxy-u.mon.GLB", + "aerosol.h2o.tavg-p39-hy-air.mon.GLB", + "aerosol.hcfc22.tavg-al-hxy-u.mon.GLB", + "aerosol.hcho.tavg-al-hxy-u.mon.GLB", + "aerosol.hcl.tavg-al-hxy-u.mon.GLB", + "aerosol.hcl.tavg-p39-hy-air.mon.GLB", + "aerosol.hfc125.tavg-al-hxy-u.mon.GLB", + "aerosol.hfc134a.tavg-al-hxy-u.mon.GLB", + "aerosol.hno3.tavg-al-hxy-u.mon.GLB", + "aerosol.hno3.tavg-p39-hy-air.mon.GLB", + "aerosol.ho2.tavg-p39-hy-air.mon.GLB", + "aerosol.isop.tavg-al-hxy-u.mon.GLB", + "aerosol.jno2.tavg-al-hxy-u.mon.GLB", + "aerosol.lossch4.tavg-al-hxy-u.mon.GLB", + "aerosol.lossco.tavg-al-hxy-u.mon.GLB", + "aerosol.lossn2o.tavg-al-hxy-u.mon.GLB", + "aerosol.lwp.tavg-u-hxy-u.mon.GLB", + "aerosol.mmraerh2o.tavg-al-hxy-u.mon.GLB", + "aerosol.mmraerh2o.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmraerh2o.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrbc.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrbc.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrbc.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrbc.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrdust.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrdust.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrdust.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrdust.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrnh4.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrnh4.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrnh4.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrnh4.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrno3.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrno3.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrno3.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrno3.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmroa.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmroa.tavg-al-hxy-u.mon.GLB", + "aerosol.mmroa.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmroa.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrpm1.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrpm1.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrpm2p5.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrpm2p5.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrso4.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrso4.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrso4.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrso4.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrsoa.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrsoa.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrsoa.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrss.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrss.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrss.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrss.tpt-h2m-hs-u.3hr.GLB", + "aerosol.nh50.tavg-al-hxy-u.mon.GLB", + "aerosol.no.tavg-al-hxy-u.mon.GLB", + "aerosol.no2.tavg-al-hxy-u.mon.GLB", + "aerosol.no2.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.noy.tavg-p39-hy-air.mon.GLB", + "aerosol.o3.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.o3.tmax-h2m-hxy-u.day.GLB", + "aerosol.o3loss.tavg-al-hxy-u.mon.GLB", + "aerosol.o3prod.tavg-al-hxy-u.mon.GLB", + "aerosol.od443aer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550aer.tavg-u-hxy-u.day.GLB", + "aerosol.od550aer.tavg-u-hxy-u.mon.30S-90S", + "aerosol.od550aer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550aerh2o.tavg-u-hxy-u.mon.GLB", + "aerosol.od550bb.tavg-u-hxy-u.mon.GLB", + "aerosol.od550bc.tavg-u-hxy-u.mon.GLB", + "aerosol.od550csaer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550dust.tavg-u-hxy-u.mon.GLB", + "aerosol.od550lt1aer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550no3.tavg-u-hxy-u.mon.GLB", + "aerosol.od550oa.tavg-u-hxy-u.mon.GLB", + "aerosol.od550so4.tavg-u-hxy-u.mon.GLB", + "aerosol.od550soa.tavg-u-hxy-u.mon.GLB", + "aerosol.od550ss.tavg-u-hxy-u.mon.GLB", + "aerosol.od865aer.tavg-u-hxy-u.mon.GLB", + "aerosol.oh.tavg-al-hxy-u.mon.GLB", + "aerosol.oh.tavg-p39-hy-air.mon.GLB", + "aerosol.pan.tavg-al-hxy-u.mon.GLB", + "aerosol.photo1d.tavg-al-hxy-u.mon.GLB", + "aerosol.pod0.tsum-u-hxy-u.mon.GLB", + "aerosol.reffccwctop.tavg-u-hxy-cl.mon.GLB", + "aerosol.reffclwtop.tavg-u-hxy-cl.mon.30S-90S", + "aerosol.reffclwtop.tavg-u-hxy-cl.mon.GLB", + "aerosol.rluscsaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rlutaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rlutcsaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rsutaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rsutcsaf.tavg-u-hxy-u.mon.GLB", + "aerosol.sfpm1.tavg-h2m-hxy-u.day.GLB", + "aerosol.sfpm10.tavg-al-hxy-u.mon.30S-90S", + "aerosol.sfpm10.tavg-al-hxy-u.mon.GLB", + "aerosol.sfpm10.tavg-h2m-hxy-u.day.GLB", + "aerosol.sfpm25.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.sfpm25.tavg-h2m-hxy-u.day.GLB", + "aerosol.so2.tavg-al-hxy-u.mon.30S-90S", + "aerosol.so2.tavg-al-hxy-u.mon.GLB", + "aerosol.so2.tavg-h2m-hxy-u.day.GLB", + "aerosol.so2.tpt-h2m-hs-u.3hr.GLB", + "aerosol.tatp.tavg-u-hxy-u.mon.GLB", + "aerosol.toz.tavg-u-hxy-u.day.GLB", + "aerosol.toz.tavg-u-hxy-u.mon.GLB", + "aerosol.tropoz.tavg-u-hxy-u.mon.GLB", + "aerosol.ttop.tavg-u-hxy-cl.mon.GLB", + "aerosol.ua.tavg-10hPa-hxy-air.day.GLB", + "aerosol.vt100.tavg-100hPa-hy-air.mon.GLB", + "aerosol.wa.tavg-al-hxy-u.mon.GLB", + "aerosol.wetbc.tavg-u-hxy-u.mon.GLB", + "aerosol.wetdust.tavg-u-hxy-u.mon.GLB", + "aerosol.wetoa.tavg-u-hxy-u.mon.GLB", + "aerosol.wetso2.tavg-u-hxy-u.mon.GLB", + "aerosol.wetso4.tavg-u-hxy-u.mon.GLB", + "aerosol.wetss.tavg-u-hxy-u.mon.GLB", + "aerosol.zg.tavg-10hPa-hxy-air.day.GLB", + "atmos.albisccp.tavg-u-hxy-cl.mon.30S-90S", + "atmos.bldep.tavg-u-hxy-u.mon.GLB", + "atmos.bldep.tmax-u-hxy-u.day.GLB", + "atmos.bldep.tmin-u-hxy-u.day.GLB", + "atmos.bldep.tpt-u-hxy-u.3hr.GLB", + "atmos.cl.tavg-al-hxy-u.day.GLB", + "atmos.cl.tavg-al-hxy-u.mon.30S-90S", + "atmos.clc.tavg-al-hxy-u.mon.30S-90S", + "atmos.clc.tavg-al-hxy-u.mon.GLB", + "atmos.clcalipso.tavg-220hPa-hxy-air.mon.30S-90S", + "atmos.clcalipso.tavg-220hPa-hxy-air.mon.GLB", + "atmos.clcalipso.tavg-560hPa-hxy-air.mon.30S-90S", + "atmos.clcalipso.tavg-560hPa-hxy-air.mon.GLB", + "atmos.clcalipso.tavg-840hPa-hxy-air.mon.30S-90S", + "atmos.clcalipso.tavg-840hPa-hxy-air.mon.GLB", + "atmos.clcalipso.tavg-h40-hxy-air.mon.30S-90S", + "atmos.clcalipso.tavg-h40-hxy-air.mon.GLB", + "atmos.cldnci.tavg-u-hxy-cl.mon.GLB", + "atmos.cldncl.tavg-u-hxy-cl.mon.GLB", + "atmos.cldnvi.tavg-u-hxy-u.day.GLB", + "atmos.cldnvi.tavg-u-hxy-u.mon.GLB", + "atmos.cli.tavg-al-hxy-u.day.GLB", + "atmos.cli.tavg-al-hxy-u.mon.30S-90S", + "atmos.clic.tavg-al-hxy-u.mon.30S-90S", + "atmos.clis.tavg-al-hxy-u.mon.30S-90S", + "atmos.clisccp.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clisccp.tavg-p7c-hxy-air.mon.GLB", + "atmos.clivi.tavg-u-hxy-u.3hr.GLB", + "atmos.clivi.tavg-u-hxy-u.day.GLB", + "atmos.clivi.tavg-u-hxy-u.mon.30S-90S", + "atmos.clivimodis.tavg-u-hxy-u.mon.30S-90S", + "atmos.clivimodis.tavg-u-hxy-u.mon.GLB", + "atmos.clmodis.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clmodis.tavg-p7c-hxy-air.mon.GLB", + "atmos.clmodisice.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clmodisice.tavg-p7c-hxy-air.mon.GLB", + "atmos.clmodisiceReff.tavg-u-hxy-u.mon.GLB", + "atmos.clmodisliquid.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clmodisliquid.tavg-p7c-hxy-air.mon.GLB", + "atmos.clmodisliquidReff.tavg-u-hxy-u.mon.GLB", + "atmos.cls.tavg-al-hxy-u.mon.30S-90S", + "atmos.clt.tavg-u-hxy-lnd.day.GLB", + "atmos.clt.tavg-u-hxy-u.1hr.30S-90S", + "atmos.clt.tavg-u-hxy-u.3hr.GLB", + "atmos.clt.tavg-u-hxy-u.mon.30S-90S", + "atmos.cltc.tavg-u-hxy-u.mon.GLB", + "atmos.cltcalipso.tavg-u-hxy-u.day.GLB", + "atmos.cltcalipso.tavg-u-hxy-u.mon.30S-90S", + "atmos.cltcalipso.tavg-u-hxy-u.mon.GLB", + "atmos.cltcalipso.tpt-u-hxy-u.3hr.GLB", + "atmos.cltisccp.tavg-u-hxy-u.day.GLB", + "atmos.cltisccp.tavg-u-hxy-u.mon.30S-90S", + "atmos.cltisccp.tavg-u-hxy-u.mon.GLB", + "atmos.cltmodis.tavg-u-hxy-u.mon.30S-90S", + "atmos.cltmodis.tavg-u-hxy-u.mon.GLB", + "atmos.clw.tavg-al-hxy-u.day.GLB", + "atmos.clw.tavg-al-hxy-u.mon.30S-90S", + "atmos.clwc.tavg-al-hxy-u.mon.30S-90S", + "atmos.clws.tavg-al-hxy-u.mon.30S-90S", + "atmos.clwvi.tavg-u-hxy-u.3hr.GLB", + "atmos.clwvi.tavg-u-hxy-u.day.GLB", + "atmos.clwvi.tavg-u-hxy-u.mon.30S-90S", + "atmos.clwvimodis.tavg-u-hxy-u.mon.30S-90S", + "atmos.clwvimodis.tavg-u-hxy-u.mon.GLB", + "atmos.co2.tavg-al-hxy-u.mon.GLB", + "atmos.co2.tavg-h2m-hxy-u.mon.GLB", + "atmos.co2.tavg-p19-hxy-air.mon.GLB", + "atmos.co2.tclm-p19-hxy-air.mon.GLB", + "atmos.co2.tclm-u-hm-u.mon.GLB", + "atmos.co23D.tavg-al-hxy-u.mon.GLB", + "atmos.co2mass.tavg-u-hm-u.mon.GLB", + "atmos.dmc.tavg-alh-hxy-u.mon.30S-90S", + "atmos.edt.tavg-al-hxy-u.mon.30S-90S", + "atmos.evspsbl.tavg-u-hxy-lnd.day.GLB", + "atmos.evu.tavg-al-hxy-u.mon.30S-90S", + "atmos.fco2antt.tavg-u-hxy-u.mon.GLB", + "atmos.fco2fos.tavg-u-hxy-u.mon.GLB", + "atmos.fco2nat.tavg-u-hxy-u.mon.GLB", + "atmos.hfls.tavg-u-hxy-is.mon.GRL", + "atmos.hfls.tavg-u-hxy-u.3hr.GLB", + "atmos.hfls.tavg-u-hxy-u.day.GLB", + "atmos.hfls.tavg-u-hxy-u.mon.30S-90S", + "atmos.hfss.tavg-u-hxy-u.3hr.GLB", + "atmos.hfss.tavg-u-hxy-u.day.GLB", + "atmos.hfss.tavg-u-hxy-u.mon.30S-90S", + "atmos.hur.tavg-al-hxy-u.mon.30S-90S", + "atmos.hur.tavg-al-hxy-u.mon.GLB", + "atmos.hur.tavg-p19-hxy-air.mon.30S-90S", + "atmos.hurs.tavg-h2m-hxy-u.1hr.30S-90S", + "atmos.hurs.tavg-h2m-hxy-u.mon.30S-90S", + "atmos.hurs.tmax-h2m-hxy-u.day.GLB", + "atmos.hurs.tmin-h2m-hxy-u.day.GLB", + "atmos.hurs.tpt-h2m-hxy-u.3hr.GLB", + "atmos.hus.tavg-al-hxy-u.mon.30S-90S", + "atmos.hus.tavg-al-hxy-u.mon.GLB", + "atmos.hus.tavg-p19-hxy-u.mon.30S-90S", + "atmos.hus.tpt-al-hxy-u.6hr.GLB", + "atmos.hus.tpt-p7h-hxy-air.6hr.GLB", + "atmos.huss.tavg-h2m-hxy-u.6hr.GLB", + "atmos.huss.tavg-h2m-hxy-u.mon.30S-90S", + "atmos.huss.tpt-h2m-hxy-u.1hr.GLB", + "atmos.intuadse.tavg-u-hxy-u.day.GLB", + "atmos.intuadse.tavg-u-hxy-u.mon.GLB", + "atmos.intuaw.tavg-u-hxy-u.day.GLB", + "atmos.intuaw.tavg-u-hxy-u.mon.GLB", + "atmos.intuaw.tpt-u-hxy-u.6hr.GLB", + "atmos.intvadse.tavg-u-hxy-u.day.GLB", + "atmos.intvadse.tavg-u-hxy-u.mon.GLB", + "atmos.intvaw.tavg-u-hxy-u.day.GLB", + "atmos.intvaw.tavg-u-hxy-u.mon.GLB", + "atmos.intvaw.tpt-u-hxy-u.6hr.GLB", + "atmos.loadbc.tavg-u-hxy-u.day.GLB", + "atmos.loadoa.tavg-u-hxy-u.day.GLB", + "atmos.loadpoa.tavg-u-hxy-u.day.GLB", + "atmos.mc.tavg-alh-hxy-u.mon.GLB", + "atmos.mcd.tavg-alh-hxy-u.mon.30S-90S", + "atmos.mcu.tavg-alh-hxy-u.mon.30S-90S", + "atmos.mcu.tavg-alh-hxy-u.mon.GLB", + "atmos.pctisccp.tavg-u-hxy-cl.day.GLB", + "atmos.pctisccp.tavg-u-hxy-cl.mon.30S-90S", + "atmos.pctisccp.tavg-u-hxy-cl.mon.GLB", + "atmos.pfull.tavg-al-hxy-u.day.GLB", + "atmos.pfull.tavg-al-hxy-u.mon.GLB", + "atmos.pfull.tclm-al-hxy-u.mon.30S-90S", + "atmos.phalf.tavg-alh-hxy-u.mon.GLB", + "atmos.pr.tavg-u-hxy-u.1hr.30S-90S", + "atmos.pr.tavg-u-hxy-u.mon.30S-90S", + "atmos.pr.tmax-u-hxy-u.day.GLB", + "atmos.pr.tpt-u-hxy-u.6hr.GLB", + "atmos.pr17O.tavg-u-hxy-u.mon.GLB", + "atmos.pr18O.tavg-u-hxy-u.mon.GLB", + "atmos.pr2h.tavg-u-hxy-u.mon.GLB", + "atmos.prc.tavg-u-hxy-u.day.GLB", + "atmos.prc.tavg-u-hxy-u.mon.30S-90S", + "atmos.prra.tavg-u-hxy-is.mon.GRL", + "atmos.prra.tavg-u-hxy-lnd.day.GLB", + "atmos.prra.tavg-u-hxy-u.6hr.GLB", + "atmos.prra.tavg-u-hxy-u.mon.30S-90S", + "atmos.prra.tavg-u-hxy-u.mon.GLB", + "atmos.prsn.tavg-u-hxy-is.mon.GRL", + "atmos.prsn.tavg-u-hxy-u.3hr.GLB", + "atmos.prsn.tavg-u-hxy-u.6hr.GLB", + "atmos.prsn.tavg-u-hxy-u.day.GLB", + "atmos.prsn.tavg-u-hxy-u.mon.30S-90S", + "atmos.prsn18O.tavg-u-hxy-u.mon.GLB", + "atmos.prsn2h.tavg-u-hxy-u.mon.GLB", + "atmos.prw.tavg-u-hxy-u.3hr.GLB", + "atmos.prw.tavg-u-hxy-u.day.GLB", + "atmos.prw.tavg-u-hxy-u.mon.30S-90S", + "atmos.prw.tpt-u-hxy-u.6hr.GLB", + "atmos.ps.tavg-u-hxy-u.1hr.GLB", + "atmos.ps.tavg-u-hxy-u.6hr.GLB", + "atmos.ps.tavg-u-hxy-u.mon.30S-90S", + "atmos.ps.tpt-u-hxy-u.1hr.30S-90S", + "atmos.ps.tpt-u-hxy-u.3hr.GLB", + "atmos.ps.tpt-u-hxy-u.6hr.GLB", + "atmos.psl.tavg-u-hxy-u.mon.30S-90S", + "atmos.psl.tpt-u-hxy-u.1hr.GLB", + "atmos.psl.tpt-u-hxy-u.6hr.GLB", + "atmos.ptp.tavg-u-hxy-u.mon.GLB", + "atmos.reffcclwtop.tavg-u-hxy-ccl.mon.GLB", + "atmos.reffclic.tavg-al-hxy-ccl.mon.30S-90S", + "atmos.reffclic.tavg-al-hxy-ccl.mon.GLB", + "atmos.reffclis.tavg-al-hxy-scl.mon.30S-90S", + "atmos.reffclis.tavg-al-hxy-scl.mon.GLB", + "atmos.reffclwc.tavg-al-hxy-ccl.mon.30S-90S", + "atmos.reffclwc.tavg-al-hxy-ccl.mon.GLB", + "atmos.reffclws.tavg-al-hxy-scl.mon.30S-90S", + "atmos.reffclws.tavg-al-hxy-scl.mon.GLB", + "atmos.reffsclwtop.tavg-u-hxy-scl.mon.GLB", + "atmos.rld.tavg-alh-hxy-u.mon.GLB", + "atmos.rld4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rldcs.tavg-alh-hxy-u.mon.GLB", + "atmos.rldcs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rlds.tavg-u-hxy-u.1hr.30S-90S", + "atmos.rlds.tavg-u-hxy-u.1hr.GLB", + "atmos.rlds.tavg-u-hxy-u.3hr.GLB", + "atmos.rlds.tavg-u-hxy-u.6hr.GLB", + "atmos.rlds.tavg-u-hxy-u.day.GLB", + "atmos.rlds.tavg-u-hxy-u.mon.30S-90S", + "atmos.rldscs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rls.tavg-u-hxy-u.mon.GLB", + "atmos.rlu.tavg-alh-hxy-u.mon.GLB", + "atmos.rlu4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rlucs.tavg-alh-hxy-u.mon.GLB", + "atmos.rlucs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rlus.tavg-u-hxy-u.3hr.GLB", + "atmos.rlus.tavg-u-hxy-u.day.GLB", + "atmos.rlus.tavg-u-hxy-u.mon.30S-90S", + "atmos.rlut.tavg-u-hxy-u.3hr.GLB", + "atmos.rlut.tavg-u-hxy-u.day.GLB", + "atmos.rlut.tavg-u-hxy-u.mon.30S-90S", + "atmos.rlut4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rlutcs.tavg-u-hxy-u.3hr.GLB", + "atmos.rlutcs.tavg-u-hxy-u.day.GLB", + "atmos.rlutcs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rlutcs4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rsd.tavg-alh-hxy-u.mon.GLB", + "atmos.rsd4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsdcs.tavg-alh-hxy-u.mon.GLB", + "atmos.rsdcs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsds.tavg-u-hxy-u.1hr.30S-90S", + "atmos.rsds.tavg-u-hxy-u.1hr.GLB", + "atmos.rsds.tavg-u-hxy-u.3hr.GLB", + "atmos.rsds.tavg-u-hxy-u.6hr.GLB", + "atmos.rsds.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsdscs.tavg-u-hxy-u.day.GLB", + "atmos.rsdscs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsdt.tavg-u-hxy-u.day.GLB", + "atmos.rsdt.tavg-u-hxy-u.mon.30S-90S", + "atmos.rss.tavg-u-hxy-u.mon.GLB", + "atmos.rsu.tavg-alh-hxy-u.mon.GLB", + "atmos.rsu4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsucs.tavg-alh-hxy-u.mon.GLB", + "atmos.rsucs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsus.tavg-u-hxy-u.3hr.GLB", + "atmos.rsus.tavg-u-hxy-u.day.GLB", + "atmos.rsus.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsuscs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsut.tavg-u-hxy-u.3hr.GLB", + "atmos.rsut.tavg-u-hxy-u.day.GLB", + "atmos.rsut.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsut4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rsutcs.tavg-u-hxy-u.3hr.GLB", + "atmos.rsutcs.tavg-u-hxy-u.day.GLB", + "atmos.rsutcs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsutcs4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rtmt.tavg-u-hxy-u.mon.GLB", + "atmos.rv850.tpt-850hPa-hxy-air.6hr.GLB", + "atmos.scldncl.tavg-u-hxy-scl.mon.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.1hr.30S-90S", + "atmos.sfcWind.tavg-h10m-hxy-u.6hr.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.mon.30S-90S", + "atmos.sfcWind.tmax-h10m-hxy-u.day.GLB", + "atmos.ta.tavg-700hPa-hxy-air.day.GLB", + "atmos.ta.tavg-al-hxy-u.mon.30S-90S", + "atmos.ta.tavg-al-hxy-u.mon.GLB", + "atmos.ta.tavg-p19-hxy-air.mon.30S-90S", + "atmos.ta.tavg-p39-hy-air.mon.GLB", + "atmos.ta.tpt-al-hxy-u.6hr.GLB", + "atmos.ta.tpt-p5u-hxy-u.6hr.GLB", + "atmos.ta.tpt-p7h-hxy-air.6hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.1hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.6hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.mon.30S-90S", + "atmos.tas.tmaxavg-h2m-hxy-u.mon.30S-90S", + "atmos.tas.tminavg-h2m-hxy-u.mon.30S-90S", + "atmos.tdps.tavg-h2m-hxy-u.mon.GLB", + "atmos.tnt.tavg-al-hxy-u.mon.GLB", + "atmos.tntrl.tavg-al-hxy-u.mon.GLB", + "atmos.tntrs.tavg-al-hxy-u.mon.GLB", + "atmos.ts.tavg-u-hxy-u.6hr.GLB", + "atmos.ts.tavg-u-hxy-u.day.GLB", + "atmos.ts.tavg-u-hxy-u.mon.30S-90S", + "atmos.ts.tpt-u-hxy-u.3hr.GLB", + "atmos.ts.tpt-u-hxy-u.6hr.GLB", + "atmos.ua.tavg-al-hxy-u.mon.GLB", + "atmos.ua.tavg-p19-hxy-air.mon.30S-90S", + "atmos.ua.tavg-p39-hy-air.mon.GLB", + "atmos.ua.tpt-al-hxy-u.6hr.GLB", + "atmos.ua.tpt-h100m-hxy-u.1hr.GLB", + "atmos.ua.tpt-p5u-hxy-air.6hr.GLB", + "atmos.ua.tpt-p7h-hxy-air.6hr.GLB", + "atmos.uas.tavg-h10m-hxy-u.mon.30S-90S", + "atmos.uas.tpt-h10m-hxy-u.1hr.GLB", + "atmos.uas.tpt-h10m-hxy-u.6hr.GLB", + "atmos.va.tavg-al-hxy-u.mon.GLB", + "atmos.va.tavg-p19-hxy-air.mon.30S-90S", + "atmos.va.tavg-p39-hy-air.mon.GLB", + "atmos.va.tpt-al-hxy-u.6hr.GLB", + "atmos.va.tpt-h100m-hxy-u.1hr.GLB", + "atmos.va.tpt-p5u-hxy-air.6hr.GLB", + "atmos.va.tpt-p7h-hxy-air.6hr.GLB", + "atmos.vas.tavg-h10m-hxy-u.mon.30S-90S", + "atmos.vas.tpt-h10m-hxy-u.1hr.GLB", + "atmos.vas.tpt-h10m-hxy-u.6hr.GLB", + "atmos.wap.tavg-p19-hxy-air.mon.30S-90S", + "atmos.wsg.tmax-h100m-hxy-u.1hr.GLB", + "atmos.wsg.tmax-h10m-hxy-u.1hr.GLB", + "atmos.zg.tavg-1000hPa-hxy-air.day.GLB", + "atmos.zg.tavg-500hPa-hxy-air.day.GLB", + "atmos.zg.tavg-al-hxy-u.mon.GLB", + "atmos.zg.tavg-p19-hxy-air.mon.30S-90S", + "atmos.zg.tavg-p39-hy-air.mon.GLB", + "atmos.zg.tpt-500hPa-hxy-air.6hr.GLB", + "atmos.zg.tpt-al-hxy-u.6hr.GLB", + "atmos.zg.tpt-p3-hxy-air.6hr.GLB", + "atmos.zg.tpt-p7h-hxy-air.6hr.GLB", + "atmos.ztp.tavg-u-hxy-u.mon.GLB", + "atmosChem.c2h4.tavg-al-hxy-u.mon.GLB", + "atmosChem.c2h5oh.tavg-al-hxy-u.mon.GLB", + "atmosChem.c4h10.tavg-al-hxy-u.mon.GLB", + "atmosChem.cfc11.tavg-u-hm-u.mon.GLB", + "atmosChem.cfc113.tavg-u-hm-u.mon.GLB", + "atmosChem.cfc12.tavg-u-hm-u.mon.GLB", + "atmosChem.ch3oh.tavg-al-hxy-u.mon.GLB", + "atmosChem.ch4.tavg-al-hxy-u.mon.GLB", + "atmosChem.ch4.tavg-p39-hy-air.mon.GLB", + "atmosChem.ch4losssoil.tavg-u-hxy-u.mon.GLB", + "atmosChem.ch4ref.ti-al-hxy-u.fx.GLB", + "atmosChem.chegph2oo1d.tavg-al-hxy-u.mon.GLB", + "atmosChem.chepnh4.tavg-al-hxy-u.mon.GLB", + "atmosChem.chepno3.tavg-al-hxy-u.mon.GLB", + "atmosChem.dms.tavg-al-hxy-u.mon.30S-90S", + "atmosChem.dms.tavg-al-hxy-u.mon.GLB", + "atmosChem.do3chm.tavg-al-hxy-u.mon.GLB", + "atmosChem.dryh2.tavg-u-hxy-u.mon.GLB", + "atmosChem.dryhno3.tavg-u-hxy-u.mon.GLB", + "atmosChem.drynh3.tavg-u-hxy-u.mon.GLB", + "atmosChem.drynh4.tavg-u-hxy-u.mon.GLB", + "atmosChem.drynoy.tavg-u-hxy-u.mon.GLB", + "atmosChem.e90inst.tpt-al-hxy-u.mon.GLB", + "atmosChem.emiach4.tavg-u-hxy-u.mon.GLB", + "atmosChem.emiavnox.tavg-al-hxy-u.mon.GLB", + "atmosChem.emic2h4.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic2h5oh.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic2h6.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic3h6.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic3h8.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic4h10.tavg-u-hxy-u.mon.GLB", + "atmosChem.emich3oh.tavg-u-hxy-u.mon.GLB", + "atmosChem.emich4.tavg-u-hxy-u.mon.GLB", + "atmosChem.emih2.tavg-u-hxy-u.mon.GLB", + "atmosChem.emilkch4.tavg-u-hxy-u.mon.GLB", + "atmosChem.h2.tavg-al-hxy-u.mon.GLB", + "atmosChem.h2loss.tavg-al-hxy-u.mon.GLB", + "atmosChem.h2prod.tavg-al-hxy-u.mon.GLB", + "atmosChem.hcfc22.tavg-u-hm-u.mon.GLB", + "atmosChem.meanage.tavg-al-hxy-u.mon.GLB", + "atmosChem.meanage.tavg-p39-hy-air.mon.GLB", + "atmosChem.n2o.tavg-al-hxy-u.mon.GLB", + "atmosChem.n2o.tavg-p39-hy-air.mon.GLB", + "atmosChem.o3.tavg-al-hxy-u.mon.GLB", + "atmosChem.o3.tavg-p19-hxy-air.mon.GLB", + "atmosChem.o3.tavg-p39-hy-air.mon.GLB", + "atmosChem.o3.tpt-al-hxy-u.mon.GLB", + "atmosChem.o3ref.tclm-al-hxy-u.fx.GLB", + "atmosChem.o3ref.ti-al-hxy-u.fx.GLB", + "atmosChem.o3ste.tavg-al-hxy-u.mon.GLB", + "atmosChem.rlutch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rlutcsch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rlutcso3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rluto3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsutch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsutcsch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsutcso3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsuto3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.stratch4loss.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropch4loss.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropch4lossoh.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropdo3chm.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropo3ste.tavg-al-hxy-u.mon.GLB", + "atmosChem.wethno3.tavg-al-hxy-u.mon.GLB", + "atmosChem.wetnh3.tavg-u-hxy-u.mon.GLB", + "atmosChem.wetnh4.tavg-u-hxy-u.mon.GLB", + "atmosChem.wetno3.tavg-al-hxy-u.mon.GLB", + "atmosChem.wetnoy.tavg-u-hxy-u.mon.GLB", + "land.albc.tavg-u-hxy-veg.mon.GLB", + "land.areacellr.ti-u-hxy-u.fx.GLB", + "land.baresoilFrac.tavg-u-hxy-u.mon.GLB", + "land.burntFractionAll.tavg-u-hxy-u.mon.GLB", + "land.cGeologicStorage.tavg-u-hxy-u.mon.GLB", + "land.cLand.tavg-u-hxy-lnd.mon.GLB", + "land.cLeaf.tavg-u-hxy-lnd.mon.GLB", + "land.cLitter.tavg-u-hxy-lnd.mon.GLB", + "land.cnc.tavg-u-hxy-u.mon.GLB", + "land.cProduct.tavg-u-hxy-lnd.mon.GLB", + "land.cRoot.tavg-u-hxy-lnd.mon.GLB", + "land.cropFrac.tavg-u-hxy-u.mon.GLB", + "land.cSoil.tavg-d100cm-hxy-lnd.mon.GLB", + "land.cSoil.tavg-sl-hxy-lnd.mon.GLB", + "land.cSoil.tavg-u-hxy-lnd.mon.GLB", + "land.cStem.tavg-u-hxy-lnd.mon.GLB", + "land.cVeg.tavg-u-hxy-lnd.mon.GLB", + "land.dcw.tavg-u-hxy-lnd.day.GLB", + "land.depthl.ti-u-hxy-u.fx.GLB", + "land.depthsl.ti-u-hxy-u.fx.GLB", + "land.dslw.tavg-u-hxy-lnd.day.GLB", + "land.evspsblpot.tavg-u-hxy-lnd.day.GLB", + "land.evspsblpot.tavg-u-hxy-lnd.mon.GLB", + "land.evspsblsoi.tavg-u-hxy-u.day.GLB", + "land.evspsblveg.tavg-u-hxy-u.day.GLB", + "land.fAnthDisturb.tavg-u-hxy-lnd.mon.GLB", + "land.fBNF.tavg-u-hxy-lnd.mon.GLB", + "land.fCLandToOcean.tavg-u-hxy-lnd.mon.GLB", + "land.fDeforestToAtmos.tavg-u-hxy-lnd.mon.GLB", + "land.fDeforestToProduct.tavg-u-hxy-lnd.mon.GLB", + "land.fFire.tavg-u-hxy-lnd.mon.GLB", + "land.fFireAll.tavg-u-hxy-lnd.mon.GLB", + "land.fFireNat.tavg-u-hxy-lnd.mon.GLB", + "land.fHarvestToAtmos.tavg-u-hxy-lnd.mon.GLB", + "land.fHarvestToGeologicStorage.tavg-u-hxy-lnd.mon.GLB", + "land.fHarvestToProduct.tavg-u-hxy-lnd.mon.GLB", + "land.fLitterSoil.tavg-u-hxy-lnd.mon.GLB", + "land.fLuc.tavg-u-hxy-lnd.mon.GLB", + "land.fN2O.tavg-u-hxy-lnd.mon.GLB", + "land.fNAnthDisturb.tavg-u-hxy-lnd.mon.GLB", + "land.fNdep.tavg-u-hxy-lnd.mon.GLB", + "land.fNfert.tavg-u-hxy-lnd.mon.GLB", + "land.fNgas.tavg-u-hxy-lnd.mon.GLB", + "land.fNgasFire.tavg-u-hxy-lnd.mon.GLB", + "land.fNLandToOcean.tavg-u-hxy-lnd.mon.GLB", + "land.fNleach.tavg-u-hxy-lnd.mon.GLB", + "land.fNLitterSoil.tavg-u-hxy-lnd.mon.GLB", + "land.fNloss.tavg-u-hxy-lnd.mon.GLB", + "land.fNnetmin.tavg-u-hxy-lnd.mon.GLB", + "land.fNOx.tavg-u-hxy-lnd.mon.GLB", + "land.fNProduct.tavg-u-hxy-lnd.mon.GLB", + "land.fNup.tavg-u-hxy-lnd.mon.GLB", + "land.fNVegLitter.tavg-u-hxy-lnd.mon.GLB", + "land.fNVegSoil.tavg-u-hxy-lnd.mon.GLB", + "land.fProductDecomp.tavg-u-hxy-lnd.mon.GLB", + "land.fVegLitter.tavg-u-hxy-lnd.mon.GLB", + "land.fVegSoil.tavg-u-hxy-lnd.mon.GLB", + "land.gpp.tavg-u-hxy-lnd.mon.GLB", + "land.gppVgt.tavg-u-hxy-multi.day.GLB", + "land.grassFrac.tavg-u-hxy-u.mon.GLB", + "land.laiVgt.tavg-u-hxy-multi.day.GLB", + "land.landCoverFrac.tavg-u-hxy-u.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.day.GLB", + "land.mrrob.tavg-u-hxy-lnd.day.GLB", + "land.mrros.tavg-u-hxy-lnd.day.GLB", + "land.mrsfl.tavg-sl-hxy-lnd.day.GLB", + "land.mrsfl.tavg-sl-hxy-lnd.mon.GLB", + "land.mrsll.tavg-sl-hxy-lnd.day.GLB", + "land.mrsll.tavg-sl-hxy-lnd.mon.GLB", + "land.mrso.tavg-u-hxy-lnd.day.GLB", + "land.mrsol.tavg-d10cm-hxy-lnd.day.GLB", + "land.mrsol.tavg-sl-hxy-lnd.day.GLB", + "land.mrsol.tavg-sl-hxy-lnd.mon.GLB", + "land.mrsol.tpt-d10cm-hxy-lnd.3hr.GLB", + "land.mrsow.tavg-u-hxy-lnd.day.GLB", + "land.mrtws.tavg-u-hxy-lnd.day.GLB", + "land.mrtws.tavg-u-hxy-lnd.mon.GLB", + "land.nbp.tavg-u-hxy-lnd.mon.GLB", + "land.nep.tavg-u-hxy-lnd.mon.GLB", + "land.nLand.tavg-u-hxy-lnd.mon.GLB", + "land.nLitter.tavg-u-hxy-lnd.mon.GLB", + "land.nMineral.tavg-u-hxy-lnd.mon.GLB", + "land.npp.tavg-u-hxy-lnd.mon.GLB", + "land.nProduct.tavg-u-hxy-lnd.mon.GLB", + "land.nSoil.tavg-u-hxy-lnd.mon.GLB", + "land.nVeg.tavg-u-hxy-lnd.mon.GLB", + "land.orog.ti-u-hxy-u.fx.30S-90S", + "land.pastureFrac.tavg-u-hxy-u.mon.GLB", + "land.prveg.tavg-u-hxy-lnd.mon.GLB", + "land.ra.tavg-u-hxy-lnd.mon.GLB", + "land.residualFrac.tavg-u-hxy-u.mon.GLB", + "land.rh.tavg-u-hxy-lnd.mon.GLB", + "land.rivi.tavg-u-hxy-lnd.day.GLB", + "land.rivo.tavg-u-hxy-lnd.day.GLB", + "land.rsds.tavg-u-hxy-lnd.mon.GLB", + "land.rsds.tavg-u-hxy-sn.mon.GLB", + "land.rsus.tavg-u-hxy-lnd.mon.GLB", + "land.rsus.tavg-u-hxy-sn.mon.GLB", + "land.sftgif.tavg-u-hxy-u.mon.GLB", + "land.sftlaf.ti-u-hxy-u.fx.GLB", + "land.shrubFrac.tavg-u-hxy-u.mon.GLB", + "land.srfrad.tavg-u-hxy-u.3hr.GLB", + "land.tas.tavg-u-hxy-u.1hr.30S-90S", + "land.tas.tavg-u-hxy-u.1hr.GLB", + "land.tran.tavg-u-hxy-lnd.mon.GLB", + "land.treeFrac.tavg-u-hxy-u.mon.GLB", + "land.tsl.tavg-sl-hxy-lnd.day.GLB", + "land.tsl.tavg-sl-hxy-lnd.mon.GLB", + "land.tslsi.tavg-u-hxy-u.day.GLB", + "land.tslsi.tpt-u-hxy-lsi.3hr.GLB", + "land.vegFrac.tavg-u-hxy-u.mon.GLB", + "land.vegHeight.tavg-u-hxy-tree.mon.GLB", + "land.vegHeight.tavg-u-hxy-veg.mon.GLB", + "land.wetlandCH4.tavg-u-hxy-lnd.mon.GLB", + "land.wtd.tavg-u-hxy-lnd.day.GLB", + "landIce.acabf.tavg-u-hxy-is.mon.GLB", + "landIce.hfdsn.tavg-u-hxy-lnd.mon.GLB", + "landIce.hfgeoubed.ti-u-hxy-gis.fx.GRL", + "landIce.hfls.tavg-u-hxy-is.mon.GLB", + "landIce.hfss.tavg-u-hxy-is.mon.GLB", + "landIce.icem.tavg-u-hxy-is.mon.GLB", + "landIce.litemptop.tavg-u-hxy-is.mon.GLB", + "landIce.lithk.ti-u-hxy-is.fx.GRL", + "landIce.lithk.ti-u-hxy-u.fx.GLB", + "landIce.mrro.tavg-u-hxy-is.mon.GLB", + "landIce.orog.tavg-u-hxy-is.mon.GLB", + "landIce.pflw.tavg-u-hxy-lnd.mon.GLB", + "landIce.prra.tavg-u-hxy-is.mon.GLB", + "landIce.prsn.tavg-u-hxy-is.mon.GLB", + "landIce.rlds.tavg-u-hxy-is.mon.GLB", + "landIce.rlus.tavg-u-hxy-is.mon.GLB", + "landIce.rsds.tavg-u-hxy-is.mon.GLB", + "landIce.rsus.tavg-u-hxy-is.mon.GLB", + "landIce.sbl.tavg-u-hxy-is.mon.GLB", + "landIce.sbl.tavg-u-hxy-lnd.mon.GLB", + "landIce.sbl.tavg-u-hxy-u.mon.GLB", + "landIce.sftflf.tavg-u-hxy-u.mon.GLB", + "landIce.sftflf.ti-u-hxy-u.fx.GLB", + "landIce.sftgrf.tavg-u-hxy-u.mon.GLB", + "landIce.sftgrf.ti-u-hxy-u.fx.GLB", + "landIce.snc.tavg-u-hxy-is.mon.GLB", + "landIce.snd.tavg-u-hxy-lnd.mon.GLB", + "landIce.snicem.tavg-u-hxy-is.mon.GLB", + "landIce.snicem.tavg-u-hxy-is.mon.GRL", + "landIce.snm.tavg-u-hxy-is.mon.GLB", + "landIce.snm.tavg-u-hxy-lnd.mon.GLB", + "landIce.snrefr.tavg-u-hxy-is.mon.GLB", + "landIce.snw.tavg-u-hxy-lnd.day.GLB", + "landIce.sootsn.tavg-u-hxy-lnd.mon.GLB", + "landIce.tas.tavg-u-hxy-is.mon.GLB", + "landIce.topg.ti-u-hxy-gis.fx.GRL", + "landIce.tpf.tavg-u-hxy-lnd.mon.GLB", + "landIce.ts.tavg-u-hxy-is.mon.GLB", + "landIce.tsn.tavg-u-hxy-is.mon.GLB", + "landIce.tsn.tavg-u-hxy-lnd.mon.GLB", + "ocean.absscint.tavg-op4-hxy-sea.mon.GLB", + "ocean.agessc.tavg-ol-hxy-sea.mon.GLB", + "ocean.bigthetao.tavg-ol-hm-sea.mon.GLB", + "ocean.bigthetao.tavg-ol-hxy-sea.dec.GLB", + "ocean.bigthetao.tavg-op20bar-hxy-sea.day.GLB", + "ocean.chcint.tavg-op4-hxy-sea.mon.GLB", + "ocean.ficeberg.tavg-ol-hxy-sea.3hr.GLB", + "ocean.ficeberg.tavg-ol-hxy-sea.mon.GLB", + "ocean.ficeberg.tavg-u-hxy-sea.mon.GLB", + "ocean.flandice.tavg-u-hxy-sea.3hr.GLB", + "ocean.flandice.tavg-u-hxy-sea.mon.GLB", + "ocean.friver.tavg-u-hxy-sea.3hr.GLB", + "ocean.friver.tavg-u-hxy-sea.mon.GLB", + "ocean.hfbasin.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpmadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpmdiff.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpsmadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfds.tavg-u-hxy-sea.3hr.GLB", + "ocean.hfds.tavg-u-hxy-sea.mon.30S-90S", + "ocean.hfgeou.tavg-u-hxy-sea.mon.GLB", + "ocean.hfrunoffds.tavg-ol-hxy-sea.3hr.GLB", + "ocean.hfx.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfx.tavg-u-hxy-sea.day.GLB", + "ocean.hfx.tavg-u-hxy-sea.mon.GLB", + "ocean.hfy.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfy.tavg-u-hxy-sea.day.GLB", + "ocean.hfy.tavg-u-hxy-sea.mon.GLB", + "ocean.htovgyre.tavg-u-hyb-sea.mon.GLB", + "ocean.htovovrt.tavg-u-hyb-sea.mon.GLB", + "ocean.masscello.tavg-ol-hxy-sea.dec.GLB", + "ocean.masso.tavg-u-hm-sea.dec.GLB", + "ocean.masso.tavg-u-hm-sea.mon.GLB", + "ocean.mlotst.tavg-u-hxy-sea.day.GLB", + "ocean.mlotst.tavg-u-hxy-sea.mon.30S-90S", + "ocean.mlotst.tmax-u-hxy-sea.mon.GLB", + "ocean.mlotst.tmin-u-hxy-sea.mon.GLB", + "ocean.mpw.tavg-u-hxy-sea.mon.GLB", + "ocean.mpw.tpt-u-hxy-sea.3hr.GLB", + "ocean.mpwswell.tavg-u-hxy-sea.mon.GLB", + "ocean.mpwswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.mpwwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.mpwwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.msftbarot.tavg-u-hxy-sea.mon.GLB", + "ocean.msftm.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftm.tavg-rho-hyb-sea.mon.GLB", + "ocean.msfty.tavg-ol-ht-sea.mon.GLB", + "ocean.msfty.tavg-rho-ht-sea.mon.GLB", + "ocean.obvfsq.tavg-ol-hxy-sea.mon.GLB", + "ocean.opottemptend.tavg-ol-hxy-sea.yr.GLB", + "ocean.pbo.tavg-u-hxy-sea.mon.GLB", + "ocean.pfscint.tavg-op4-hxy-sea.mon.GLB", + "ocean.phcint.tavg-op4-hxy-sea.mon.GLB", + "ocean.pso.tavg-u-hxy-sea.mon.GLB", + "ocean.rsds.tavg-u-hxy-ifs.mon.GLB", + "ocean.rsntds.tavg-u-hxy-sea.3hr.GLB", + "ocean.rsus.tavg-u-hxy-ifs.mon.GLB", + "ocean.scint.tavg-op4-hxy-sea.mon.GLB", + "ocean.sduo.tavg-u-hxy-sea.mon.GLB", + "ocean.sduo.tpt-u-hxy-sea.3hr.GLB", + "ocean.sdvo.tavg-u-hxy-sea.mon.GLB", + "ocean.sdvo.tpt-u-hxy-sea.3hr.GLB", + "ocean.sfdsi.tavg-u-hxy-sea.3hr.GLB", + "ocean.sfx.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfx.tavg-u-hxy-sea.mon.GLB", + "ocean.sfy.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfy.tavg-u-hxy-sea.mon.GLB", + "ocean.sltbasin.tavg-u-hyb-sea.mon.GLB", + "ocean.sltovgyre.tavg-u-hyb-sea.mon.GLB", + "ocean.sltovovrt.tavg-u-hyb-sea.mon.GLB", + "ocean.so.tavg-ol-hm-sea.mon.GLB", + "ocean.so.tavg-ol-hxy-sea.dec.GLB", + "ocean.so.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.sob.tavg-u-hxy-sea.mon.GLB", + "ocean.sos.tavg-u-hm-sea.mon.30S-90S", + "ocean.sos.tavg-u-hm-sea.mon.GLB", + "ocean.sw17O.tavg-ol-hxy-sea.mon.GLB", + "ocean.sw18O.tavg-ol-hxy-sea.mon.GLB", + "ocean.sw2H.tavg-ol-hxy-sea.mon.GLB", + "ocean.swh.tavg-u-hxy-sea.mon.GLB", + "ocean.swh.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhmax.tmax-u-hxy-sea.mon.GLB", + "ocean.swhmax.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhswell.tavg-u-hxy-sea.mon.GLB", + "ocean.swhswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.swhwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.tauuo.tavg-u-hxy-sea.3hr.GLB", + "ocean.tauuo.tavg-u-hxy-sea.dec.GLB", + "ocean.tauvo.tavg-u-hxy-sea.3hr.GLB", + "ocean.tauvo.tavg-u-hxy-sea.dec.GLB", + "ocean.thetao.tavg-ol-hm-sea.mon.GLB", + "ocean.thetao.tavg-ol-hxy-sea.dec.GLB", + "ocean.thetao.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.thetao.tavg-op20bar-hxy-sea.day.GLB", + "ocean.thkcello.tavg-ol-hxy-sea.dec.GLB", + "ocean.tob.tavg-u-hxy-sea.mon.GLB", + "ocean.tos.tavg-u-hm-sea.mon.GLB", + "ocean.tos.tavg-u-hxy-sea.mon.30S-90S", + "ocean.tos.tpt-u-hxy-sea.3hr.GLB", + "ocean.tossq.tavg-u-hxy-sea.day.GLB", + "ocean.umo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.uo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.uos.tavg-u-hxy-sea.day.GLB", + "ocean.vmo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.vo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.volcello.tavg-ol-hxy-sea.dec.GLB", + "ocean.volcello.tavg-ol-hxy-sea.mon.GLB", + "ocean.volcello.tavg-ol-hxy-sea.yr.GLB", + "ocean.volcello.ti-ol-hxy-sea.fx.GLB", + "ocean.volo.tavg-u-hm-sea.dec.GLB", + "ocean.volo.tavg-u-hm-sea.mon.GLB", + "ocean.vos.tavg-u-hxy-sea.day.GLB", + "ocean.wdir.tavg-u-hxy-sea.mon.GLB", + "ocean.wdir.tpt-u-hxy-sea.3hr.GLB", + "ocean.wdirswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wdirswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wdirwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wdirwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.wfcorr.tavg-u-hxy-sea.mon.GLB", + "ocean.wfo.tavg-u-hxy-sea.3hr.GLB", + "ocean.wfo.tavg-u-hxy-sea.mon.GLB", + "ocean.wmo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.wo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.wpdir.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdir.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpdirswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdirswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpdirwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdirwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpp.tavg-u-hxy-sea.mon.GLB", + "ocean.wpp.tpt-u-hxy-sea.3hr.GLB", + "ocean.wppswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wppswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wppwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wppwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.zos.tavg-u-hxy-sea.mon.30S-90S", + "ocean.zossq.tavg-u-hxy-sea.mon.GLB", + "ocean.zostoga.tavg-u-hm-sea.day.GLB", + "ocnBgchem.bacc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.calc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chl.tavg-d0m-hxy-sea.day.GLB", + "ocnBgchem.chl.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chl.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chlcalc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chldiat.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chldiat.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chldiaz.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chldiaz.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chlmisc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chlmisc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chlpico.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chlpico.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.detoc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dfe.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.dfe.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.dfe.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissic.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.dissic.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissoc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dmso.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.dmso.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.dpco2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.dpo2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.expc.tavg-d1000m-hxy-sea.mon.GLB", + "ocnBgchem.expc.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.expc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.expcalc.tavg-d1000m-hxy-sea.mon.GLB", + "ocnBgchem.expcalc.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.expcalc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.fgco2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fric.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.froc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fsfe.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fsn.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.graz.tavg-ol-hxy-sea.mon.30S-90S", + "ocnBgchem.graz.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.icfriver.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intdic.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intdoc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intparag.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbfe.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbn.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbp.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbsi.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpcalcite.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpn2.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpoc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpp.tavg-u-hxy-sea.day.GLB", + "ocnBgchem.intpp.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpp.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppcalc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppdiat.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppdiaz.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppmisc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppnitrate.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpppico.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.nh4.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.nh4.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.no3.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.no3.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.o2.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.ocfriver.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.ph.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.ph.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phyc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phyc.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.phyc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phycalc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phycalc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phydiat.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phydiat.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phydiaz.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phydiaz.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phymisc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phymisc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phypico.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phypico.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.po4.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.pp.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.si.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.spco2.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.spco2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.talk.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zmeso.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zmeso.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zmicro.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zmicro.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zmisc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zmisc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zooc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zooc.tavg-ol-hxy-sea.mon.GLB", + "seaIce.evspsbl.tavg-u-hxy-si.mon.GLB", + "seaIce.prra.tavg-u-hxy-si.mon.GLB", + "seaIce.prsn.tavg-u-hxy-si.mon.GLB", + "seaIce.rlds.tavg-u-hxy-si.day.GLB", + "seaIce.rlds.tavg-u-hxy-si.mon.GLB", + "seaIce.rlus.tavg-u-hxy-si.day.GLB", + "seaIce.rlus.tavg-u-hxy-si.mon.GLB", + "seaIce.rsds.tavg-u-hxy-si.day.GLB", + "seaIce.rsds.tavg-u-hxy-si.mon.GLB", + "seaIce.rsus.tavg-u-hxy-si.day.GLB", + "seaIce.rsus.tavg-u-hxy-si.mon.GLB", + "seaIce.sbl.tavg-u-hxy-si.mon.GLB", + "seaIce.siage.tavg-u-hxy-si.day.GLB", + "seaIce.siage.tavg-u-hxy-si.mon.30S-90S", + "seaIce.siarea.tavg-u-hm-u.mon.NH", + "seaIce.siarea.tavg-u-hm-u.mon.SH", + "seaIce.siareaacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.siconc.tavg-u-hxy-u.mon.30S-90S", + "seaIce.siconca.tavg-u-hxy-u.day.GLB", + "seaIce.siconca.tavg-u-hxy-u.mon.GLB", + "seaIce.sidconcdyn.tavg-u-hxy-sea.mon.GLB", + "seaIce.sidconcth.tavg-u-hxy-sea.mon.GLB", + "seaIce.sidmassdyn.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthsi.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthwat.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmeltbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmeltlat.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmelttop.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassth.tavg-u-hxy-si.mon.GLB", + "seaIce.sieqthick.tavg-u-hxy-si.mon.GLB", + "seaIce.siextent.tavg-u-hm-u.mon.NH", + "seaIce.siextent.tavg-u-hm-u.mon.SH", + "seaIce.siflcondbot.tavg-u-hxy-si.day.GLB", + "seaIce.siflcondbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflcondtop.tavg-u-hxy-si.day.GLB", + "seaIce.siflcondtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sifllattop.tavg-u-hxy-si.day.GLB", + "seaIce.sifllattop.tavg-u-hxy-si.mon.GLB", + "seaIce.siflsensbot.tavg-u-hxy-si.day.GLB", + "seaIce.siflsensbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflsenstop.tavg-u-hxy-si.day.GLB", + "seaIce.siflsenstop.tavg-u-hxy-si.mon.GLB", + "seaIce.siflswdbot.tavg-u-hxy-si.day.GLB", + "seaIce.siflswdbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sihc.tavg-u-hxy-sea.day.GLB", + "seaIce.sihc.tavg-u-hxy-sea.mon.GLB", + "seaIce.siitdconc.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdsnconc.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdsnthick.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdthick.tavg-u-hxy-si.mon.GLB", + "seaIce.simassacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.simpconc.tavg-u-hxy-si.mon.GLB", + "seaIce.sirdgconc.tavg-u-hxy-si.mon.GLB", + "seaIce.sisaltmass.tavg-u-hxy-si.mon.GLB", + "seaIce.sisndmassdyn.tavg-u-hxy-si.mon.GLB", + "seaIce.sisndmasssi.tavg-u-hxy-si.mon.GLB", + "seaIce.sisndmasswind.tavg-u-hxy-si.mon.GLB", + "seaIce.sisnhc.tavg-u-hxy-si.day.GLB", + "seaIce.sisnhc.tavg-u-hxy-si.mon.GLB", + "seaIce.sisnmass.tavg-u-hm-u.mon.NH", + "seaIce.sisnmass.tavg-u-hm-u.mon.SH", + "seaIce.sisnmassacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.sispeed.tavg-u-hxy-si.day.GLB", + "seaIce.sispeed.tavg-u-hxy-si.mon.GLB", + "seaIce.sistressave.tpt-u-hxy-si.mon.GLB", + "seaIce.sistressmax.tpt-u-hxy-si.mon.GLB", + "seaIce.sistrxdtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sistrxubot.tavg-u-hxy-si.mon.GLB", + "seaIce.sistrydtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sistryubot.tavg-u-hxy-si.mon.GLB", + "seaIce.sitempsnic.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-si.day.GLB", + "seaIce.sithick.tavg-u-hxy-si.mon.30S-90S", + "seaIce.sitimefrac.tavg-u-hxy-sea.day.GLB", + "seaIce.sitimefrac.tavg-u-hxy-sea.mon.30S-90S", + "seaIce.siu.tavg-u-hxy-si.day.GLB", + "seaIce.siu.tavg-u-hxy-si.mon.30S-90S", + "seaIce.siv.tavg-u-hxy-si.day.GLB", + "seaIce.siv.tavg-u-hxy-si.mon.30S-90S", + "seaIce.sivol.tavg-u-hm-u.mon.NH", + "seaIce.sivol.tavg-u-hm-u.mon.SH", + "seaIce.snc.tavg-u-hxy-si.mon.GLB", + "seaIce.snd.tavg-u-hxy-sn.day.GLB", + "seaIce.snd.tavg-u-hxy-sn.mon.30S-90S", + "seaIce.snm.tavg-u-hxy-si.mon.GLB", + "seaIce.snw.tavg-u-hxy-si.mon.GLB", + "seaIce.ts.tavg-u-hxy-si.day.GLB", + "seaIce.ts.tavg-u-hxy-si.mon.30S-90S" + ], + "Medium": [ + "atmos.bldep.tavg-u-hxy-u.1hr.GLB", + "atmos.clic.tpt-al-hxy-u.3hr.GLB", + "atmos.clis.tpt-al-hxy-u.3hr.GLB", + "atmos.clivi.tpt-u-hxy-u.3hr.GLB", + "atmos.clt.tpt-u-hxy-u.3hr.GLB", + "atmos.clwc.tpt-al-hxy-u.3hr.GLB", + "atmos.clws.tpt-al-hxy-u.3hr.GLB", + "atmos.clwvi.tpt-u-hxy-u.3hr.GLB", + "atmos.dtauc.tpt-al-hxy-ccl.3hr.GLB", + "atmos.dtaus.tpt-al-hxy-scl.3hr.GLB", + "atmos.hfdsnb.tavg-u-hxy-lnd.day.GLB", + "atmos.hfls.tavg-u-hxy-is.mon.ATA", + "atmos.hfls.tavg-u-hxy-u.1hr.GLB", + "atmos.hfss.tavg-u-hxy-is.mon.ATA", + "atmos.hfss.tavg-u-hxy-is.mon.GRL", + "atmos.hfss.tavg-u-hxy-u.1hr.GLB", + "atmos.hur.tavg-700hPa-hxy-air.day.GLB", + "atmos.hur.tpt-100hPa-hxy-u.6hr.GLB", + "atmos.hur.tpt-500hPa-hxy-air.6hr.GLB", + "atmos.hur.tpt-850hPa-hxy-air.6hr.GLB", + "atmos.hurs.tavg-h2m-hxy-u.1hr.GLB", + "atmos.hus.tpt-al-hxy-u.3hr.GLB", + "atmos.hus.tpt-p6-hxy-air.3hr.GLB", + "atmos.noaahi2m.tavg-h2m-hxy-u.day.GLB", + "atmos.noaahi2m.tmax-h2m-hxy-u.day.GLB", + "atmos.pfull.tpt-al-hxy-u.3hr.GLB", + "atmos.pr.tpt-u-hxy-u.3hr.GLB", + "atmos.prra.tavg-u-hxy-is.mon.ATA", + "atmos.prrsn.tavg-u-hxy-lnd.day.GLB", + "atmos.prsn.tavg-u-hxy-is.mon.ATA", + "atmos.prsnc.tavg-u-hxy-lnd.day.GLB", + "atmos.prsnsn.tavg-u-hxy-lnd.day.GLB", + "atmos.prw.tpt-u-hxy-u.3hr.GLB", + "atmos.ps.tpt-u-hxy-u.1hr.GLB", + "atmos.reffclic.tpt-al-hxy-ccl.3hr.GLB", + "atmos.reffclis.tpt-al-hxy-scl.3hr.GLB", + "atmos.reffclwc.tpt-al-hxy-ccl.3hr.GLB", + "atmos.reffclws.tpt-al-hxy-scl.3hr.GLB", + "atmos.rlds.tavg-u-hxy-is.mon.ATA", + "atmos.rlds.tavg-u-hxy-is.mon.GRL", + "atmos.rlds.tpt-u-hxy-u.3hr.GLB", + "atmos.rldscs.tavg-u-hxy-u.day.GLB", + "atmos.rldscs.tpt-u-hxy-u.3hr.GLB", + "atmos.rls.tavg-u-hxy-u.day.GLB", + "atmos.rlus.tavg-u-hxy-is.mon.ATA", + "atmos.rlus.tavg-u-hxy-is.mon.GRL", + "atmos.rlus.tavg-u-hxy-u.1hr.GLB", + "atmos.rlut.tpt-u-hxy-u.3hr.GLB", + "atmos.rlutcs.tpt-u-hxy-u.3hr.GLB", + "atmos.rsds.tavg-u-hxy-is.mon.ATA", + "atmos.rsds.tavg-u-hxy-is.mon.GRL", + "atmos.rsds.tpt-u-hxy-u.3hr.GLB", + "atmos.rsdscs.tpt-u-hxy-u.3hr.GLB", + "atmos.rsdsdiff.tavg-u-hxy-u.1hr.GLB", + "atmos.rsdsdiff.tavg-u-hxy-u.day.GLB", + "atmos.rss.tavg-u-hxy-u.day.GLB", + "atmos.rsus.tavg-u-hxy-is.mon.ATA", + "atmos.rsus.tavg-u-hxy-is.mon.GRL", + "atmos.rsus.tavg-u-hxy-u.1hr.GLB", + "atmos.rsut.tpt-u-hxy-u.3hr.GLB", + "atmos.rsutcs.tpt-u-hxy-u.3hr.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.1hr.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.3hr.GLB", + "atmos.snmsl.tavg-u-hxy-lnd.day.GLB", + "atmos.snrefr.tavg-u-hxy-lnd.day.GLB", + "atmos.snwc.tavg-u-hxy-lnd.day.GLB", + "atmos.ta.tpt-al-hxy-u.3hr.GLB", + "atmos.ta.tpt-p6-hxy-air.3hr.GLB", + "atmos.tas.tavg-h2m-hm-is.mon.ATA", + "atmos.tas.tavg-h2m-hm-is.mon.GRL", + "atmos.ts.tavg-u-hxy-is.mon.ATA", + "atmos.ts.tavg-u-hxy-is.mon.GRL", + "atmos.ts.tavg-u-hxy-sn.day.GLB", + "atmos.ts.tavg-u-hxy-u.1hr.GLB", + "atmos.ua.tavg-h100m-hxy-u.3hr.GLB", + "atmos.ua.tpt-200hPa-hxy-u.6hr.GLB", + "atmos.ua.tpt-p6-hxy-air.3hr.GLB", + "atmos.va.tavg-h100m-hxy-u.3hr.GLB", + "atmos.va.tpt-200hPa-hxy-u.6hr.GLB", + "atmos.va.tpt-p6-hxy-air.3hr.GLB", + "atmos.wap.tpt-p6-hxy-air.3hr.GLB", + "atmos.wbgt.tavg-h2m-hxy-u.day.GLB", + "atmos.wbgt.tmax-h2m-hxy-u.day.GLB", + "atmos.wsg.tmax-h100m-hxy-u.mon.GLB", + "atmos.wsg.tmax-h10m-hxy-u.mon.GLB", + "atmos.zg.tpt-700hPa-hxy-u.6hr.GLB", + "atmos.zg.tpt-925hPa-hxy-u.6hr.GLB", + "atmosChem.flashrate.tavg-u-hxy-u.day.GLB", + "land.areacellg.ti-u-hxy-u.fx.ATA", + "land.areacellg.ti-u-hxy-u.fx.GRL", + "land.baresoilFrac.tavg-u-hxy-u.yr.GLB", + "land.cLitterCwd.tavg-u-hxy-lnd.mon.GLB", + "land.cLitterLut.tpt-u-hxy-multi.yr.GLB", + "land.cLitterSubSurf.tavg-u-hxy-lnd.mon.GLB", + "land.cLitterSurf.tavg-u-hxy-lnd.mon.GLB", + "land.cOther.tavg-u-hxy-lnd.mon.GLB", + "land.cProductLut.tpt-u-hxy-multi.yr.GLB", + "land.cropFrac.tavg-u-hxy-u.yr.GLB", + "land.cropFracC3.tavg-u-hxy-u.mon.GLB", + "land.cropFracC4.tavg-u-hxy-u.mon.GLB", + "land.cSoilLut.tpt-u-hxy-multi.yr.GLB", + "land.cSoilPools.tavg-u-hxy-lnd.mon.GLB", + "land.cVeg.tavg-u-hxy-ng.mon.GLB", + "land.cVeg.tavg-u-hxy-shb.mon.GLB", + "land.cVeg.tavg-u-hxy-tree.mon.GLB", + "land.cVegLut.tpt-u-hxy-multi.yr.GLB", + "land.dgw.tavg-u-hxy-lnd.day.GLB", + "land.drivw.tavg-u-hxy-lnd.day.GLB", + "land.dsn.tavg-u-hxy-lnd.day.GLB", + "land.dsw.tavg-u-hxy-lnd.day.GLB", + "land.esn.tavg-u-hxy-sn.day.GLB", + "land.evspsblsoi.tavg-u-hxy-u.3hr.GLB", + "land.evspsblveg.tavg-u-hxy-u.3hr.GLB", + "land.fLitterFire.tavg-u-hxy-lnd.mon.GLB", + "land.fLulccAtmLut.tavg-u-hxy-multi.mon.GLB", + "land.fNgasNonFire.tavg-u-hxy-lnd.mon.GLB", + "land.fracInLut.tsum-u-hxy-lnd.yr.GLB", + "land.fracLut.tpt-u-hxy-u.mon.GLB", + "land.fracLut.tpt-u-hxy-u.yr.GLB", + "land.fracOutLut.tsum-u-hxy-lnd.yr.GLB", + "land.fVegFire.tavg-u-hxy-lnd.mon.GLB", + "land.fVegLitterMortality.tavg-u-hxy-lnd.mon.GLB", + "land.fVegLitterSenescence.tavg-u-hxy-lnd.mon.GLB", + "land.fVegSoilMortality.tavg-u-hxy-lnd.mon.GLB", + "land.fVegSoilSenescence.tavg-u-hxy-lnd.mon.GLB", + "land.gpp.tavg-u-hxy-ng.mon.GLB", + "land.gpp.tavg-u-hxy-shb.mon.GLB", + "land.gpp.tavg-u-hxy-tree.mon.GLB", + "land.gppLut.tavg-u-hxy-multi.mon.GLB", + "land.grassFrac.tavg-u-hxy-u.yr.GLB", + "land.grassFracC3.tavg-u-hxy-u.mon.GLB", + "land.grassFracC4.tavg-u-hxy-u.mon.GLB", + "land.hfdsl.tavg-u-hxy-lnd.3hr.GLB", + "land.hflsLut.tavg-u-hxy-multi.mon.GLB", + "land.hfssLut.tavg-u-hxy-multi.mon.GLB", + "land.irrDem.tavg-u-hxy-u.day.GLB", + "land.irrGw.tavg-u-hxy-u.day.GLB", + "land.irrLut.tavg-u-hxy-multi.mon.GLB", + "land.irrLut.tavg-u-hxy-u.day.GLB", + "land.irrSurf.tavg-u-hxy-u.day.GLB", + "land.laiLut.tavg-u-hxy-multi.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.3hr.GLB", + "land.mrros.tavg-u-hxy-lnd.3hr.GLB", + "land.mrsol.tavg-d100cm-hxy-lnd.3hr.GLB", + "land.mrsolLut.tavg-d10cm-hxy-multi.mon.GLB", + "land.nbpLut.tavg-u-hxy-multi.mon.GLB", + "land.nLeaf.tavg-u-hxy-lnd.mon.GLB", + "land.nLitterCwd.tavg-u-hxy-lnd.mon.GLB", + "land.nLitterSubSurf.tavg-u-hxy-lnd.mon.GLB", + "land.nLitterSurf.tavg-u-hxy-lnd.mon.GLB", + "land.nMineralNH4.tavg-u-hxy-lnd.mon.GLB", + "land.nMineralNO3.tavg-u-hxy-lnd.mon.GLB", + "land.nOther.tavg-u-hxy-lnd.mon.GLB", + "land.npp.tavg-u-hxy-ng.mon.GLB", + "land.npp.tavg-u-hxy-shb.mon.GLB", + "land.npp.tavg-u-hxy-tree.mon.GLB", + "land.nppLeaf.tavg-u-hxy-lnd.mon.GLB", + "land.nppLut.tavg-u-hxy-multi.mon.GLB", + "land.nppOther.tavg-u-hxy-lnd.mon.GLB", + "land.nppRoot.tavg-u-hxy-lnd.mon.GLB", + "land.nppStem.tavg-u-hxy-lnd.mon.GLB", + "land.nppVgt.tavg-u-hxy-multi.day.GLB", + "land.nRoot.tavg-u-hxy-lnd.mon.GLB", + "land.nStem.tavg-u-hxy-lnd.mon.GLB", + "land.orog.tavg-u-hxy-is.mon.ATA", + "land.orog.tavg-u-hxy-is.mon.GRL", + "land.orog.tavg-u-hxy-is.yr.ATA", + "land.orog.tavg-u-hxy-is.yr.GRL", + "land.pastureFracC3.tavg-u-hxy-u.mon.GLB", + "land.pastureFracC4.tavg-u-hxy-u.mon.GLB", + "land.qgwr.tavg-u-hxy-lnd.day.GLB", + "land.ra.tavg-u-hxy-ng.mon.GLB", + "land.ra.tavg-u-hxy-shb.mon.GLB", + "land.ra.tavg-u-hxy-tree.mon.GLB", + "land.raLeaf.tavg-u-hxy-lnd.mon.GLB", + "land.raLut.tavg-u-hxy-multi.mon.GLB", + "land.raOther.tavg-u-hxy-lnd.mon.GLB", + "land.raRoot.tavg-u-hxy-lnd.mon.GLB", + "land.raStem.tavg-u-hxy-lnd.mon.GLB", + "land.raVgt.tavg-u-hxy-multi.day.GLB", + "land.rh.tavg-u-hxy-ng.mon.GLB", + "land.rh.tavg-u-hxy-shb.mon.GLB", + "land.rh.tavg-u-hxy-tree.mon.GLB", + "land.rhLitter.tavg-u-hxy-lnd.mon.GLB", + "land.rhLut.tavg-u-hxy-multi.mon.GLB", + "land.rhSoil.tavg-u-hxy-lnd.mon.GLB", + "land.rhVgt.tavg-u-hxy-multi.day.GLB", + "land.rzwc.tavg-u-hxy-lnd.day.GLB", + "land.sftgif.tavg-u-hxy-u.yr.ATA", + "land.sftgif.tavg-u-hxy-u.yr.GRL", + "land.shrubFrac.tavg-u-hxy-u.yr.GLB", + "land.sw.tavg-u-hxy-lnd.day.GLB", + "land.sweLut.tavg-u-hxy-multi.mon.GLB", + "land.tasLut.tavg-h2m-hxy-multi.mon.GLB", + "land.tran.tavg-u-hxy-u.3hr.GLB", + "land.treeFrac.tavg-u-hxy-u.yr.GLB", + "land.treeFracBdlDcd.tavg-u-hxy-u.mon.GLB", + "land.treeFracBdlEvg.tavg-u-hxy-u.mon.GLB", + "land.treeFracNdlDcd.tavg-u-hxy-u.mon.GLB", + "land.treeFracNdlEvg.tavg-u-hxy-u.mon.GLB", + "land.tsLut.tavg-u-hxy-multi.mon.GLB", + "land.vegHeight.tavg-u-hxy-ng.mon.GLB", + "land.vegHeight.tavg-u-hxy-shb.mon.GLB", + "land.wetlandCH4cons.tavg-u-hxy-lnd.mon.GLB", + "land.wetlandCH4prod.tavg-u-hxy-lnd.mon.GLB", + "land.wetlandFrac.tavg-u-hxy-u.mon.GLB", + "landIce.acabf.tavg-u-hxy-is.mon.ATA", + "landIce.acabf.tavg-u-hxy-is.mon.GRL", + "landIce.acabf.tavg-u-hxy-is.yr.ATA", + "landIce.acabf.tavg-u-hxy-is.yr.GRL", + "landIce.agesno.tavg-u-hxy-lnd.mon.GLB", + "landIce.hfdsn.tavg-u-hxy-lnd.day.GLB", + "landIce.hfgeoubed.tavg-u-hxy-gis.yr.ATA", + "landIce.hfgeoubed.tavg-u-hxy-gis.yr.GRL", + "landIce.hfgeoubed.ti-u-hxy-gis.fx.ATA", + "landIce.iareafl.tavg-u-hm-fis.yr.ATA", + "landIce.iareafl.tavg-u-hm-fis.yr.GRL", + "landIce.iareagr.tavg-u-hm-gis.yr.ATA", + "landIce.iareagr.tavg-u-hm-gis.yr.GRL", + "landIce.icem.tavg-u-hxy-is.mon.ATA", + "landIce.icem.tavg-u-hxy-is.mon.GRL", + "landIce.libmassbf.tavg-u-hxy-fis.mon.ATA", + "landIce.libmassbf.tavg-u-hxy-fis.mon.GRL", + "landIce.libmassbf.tavg-u-hxy-fis.yr.ATA", + "landIce.libmassbf.tavg-u-hxy-fis.yr.GRL", + "landIce.libmassbf.tavg-u-hxy-gis.mon.ATA", + "landIce.libmassbf.tavg-u-hxy-gis.mon.GRL", + "landIce.libmassbf.tavg-u-hxy-gis.yr.ATA", + "landIce.libmassbf.tavg-u-hxy-gis.yr.GRL", + "landIce.licalvf.tavg-u-hxy-is.mon.ATA", + "landIce.licalvf.tavg-u-hxy-is.mon.GRL", + "landIce.licalvf.tavg-u-hxy-is.yr.ATA", + "landIce.licalvf.tavg-u-hxy-is.yr.GRL", + "landIce.lifmassbf.tavg-u-hxy-is.mon.ATA", + "landIce.lifmassbf.tavg-u-hxy-is.mon.GRL", + "landIce.lifmassbf.tavg-u-hxy-is.yr.ATA", + "landIce.lifmassbf.tavg-u-hxy-is.yr.GRL", + "landIce.lim.tavg-u-hm-is.yr.ATA", + "landIce.lim.tavg-u-hm-is.yr.GRL", + "landIce.limnsw.tavg-u-hm-is.yr.ATA", + "landIce.limnsw.tavg-u-hm-is.yr.GRL", + "landIce.litempbot.tavg-u-hxy-fis.mon.ATA", + "landIce.litempbot.tavg-u-hxy-fis.mon.GRL", + "landIce.litempbot.tavg-u-hxy-fis.yr.ATA", + "landIce.litempbot.tavg-u-hxy-fis.yr.GRL", + "landIce.litempbot.tavg-u-hxy-gis.mon.ATA", + "landIce.litempbot.tavg-u-hxy-gis.mon.GRL", + "landIce.litempbot.tavg-u-hxy-gis.yr.ATA", + "landIce.litempbot.tavg-u-hxy-gis.yr.GRL", + "landIce.litemptop.tavg-u-hxy-is.mon.ATA", + "landIce.litemptop.tavg-u-hxy-is.mon.GRL", + "landIce.litemptop.tavg-u-hxy-is.yr.ATA", + "landIce.litemptop.tavg-u-hxy-is.yr.GRL", + "landIce.lithk.tavg-u-hxy-is.yr.ATA", + "landIce.lithk.tavg-u-hxy-is.yr.GRL", + "landIce.lithk.ti-u-hxy-is.fx.ATA", + "landIce.lwsnl.tavg-u-hxy-lnd.day.GLB", + "landIce.lwsnl.tavg-u-hxy-lnd.mon.GLB", + "landIce.modelcellareai.tavg-u-hxy-u.yr.ATA", + "landIce.modelcellareai.tavg-u-hxy-u.yr.GRL", + "landIce.mrroLi.tavg-u-hxy-is.mon.ATA", + "landIce.mrroLi.tavg-u-hxy-is.mon.GRL", + "landIce.pflw.tavg-u-hxy-lnd.day.GLB", + "landIce.sbl.tavg-u-hxy-is.mon.ATA", + "landIce.sbl.tavg-u-hxy-is.mon.GRL", + "landIce.sbl.tavg-u-hxy-u.day.GLB", + "landIce.sftflf.tavg-u-hxy-u.yr.ATA", + "landIce.sftflf.tavg-u-hxy-u.yr.GRL", + "landIce.sftgrf.tavg-u-hxy-u.yr.ATA", + "landIce.sftgrf.tavg-u-hxy-u.yr.GRL", + "landIce.snc.tavg-u-hxy-is.mon.ATA", + "landIce.snc.tavg-u-hxy-is.mon.GRL", + "landIce.snc.tavg-u-hxy-is.yr.ATA", + "landIce.snc.tavg-u-hxy-is.yr.GRL", + "landIce.snc.tavg-u-hxy-lnd.day.GLB", + "landIce.snd.tavg-u-hxy-lnd.day.GLB", + "landIce.snicem.tavg-u-hxy-is.mon.ATA", + "landIce.snm.tavg-u-hxy-is.mon.ATA", + "landIce.snm.tavg-u-hxy-is.mon.GRL", + "landIce.snm.tavg-u-hxy-lnd.day.GLB", + "landIce.snrefr.tavg-u-hxy-is.mon.ATA", + "landIce.snrefr.tavg-u-hxy-is.mon.GRL", + "landIce.strbasemag.tavg-u-hxy-is.yr.ATA", + "landIce.strbasemag.tavg-u-hxy-is.yr.GRL", + "landIce.tendacabf.tavg-u-hm-is.yr.ATA", + "landIce.tendacabf.tavg-u-hm-is.yr.GRL", + "landIce.tendlibmassbf.tavg-u-hm-is.yr.ATA", + "landIce.tendlibmassbf.tavg-u-hm-is.yr.GRL", + "landIce.tendlicalvf.tavg-u-hm-is.yr.ATA", + "landIce.tendlicalvf.tavg-u-hm-is.yr.GRL", + "landIce.topg.tavg-u-hxy-gis.yr.ATA", + "landIce.topg.tavg-u-hxy-gis.yr.GRL", + "landIce.topg.ti-u-hxy-gis.fx.ATA", + "landIce.tpf.tavg-u-hxy-lnd.day.GLB", + "landIce.tsn.tavg-u-hxy-is.mon.ATA", + "landIce.tsn.tavg-u-hxy-is.mon.GRL", + "landIce.tsn.tavg-u-hxy-lnd.day.GLB", + "landIce.xvelbase.tavg-u-hxy-is.yr.ATA", + "landIce.xvelbase.tavg-u-hxy-is.yr.GRL", + "landIce.xvelmean.tavg-u-hxy-is.yr.ATA", + "landIce.xvelmean.tavg-u-hxy-is.yr.GRL", + "landIce.xvelsurf.tavg-u-hxy-is.yr.ATA", + "landIce.xvelsurf.tavg-u-hxy-is.yr.GRL", + "landIce.yvelbase.tavg-u-hxy-is.yr.ATA", + "landIce.yvelbase.tavg-u-hxy-is.yr.GRL", + "landIce.yvelmean.tavg-u-hxy-is.yr.ATA", + "landIce.yvelmean.tavg-u-hxy-is.yr.GRL", + "landIce.yvelsurf.tavg-u-hxy-is.yr.ATA", + "landIce.yvelsurf.tavg-u-hxy-is.yr.GRL", + "landIce.zvelbase.tavg-u-hxy-is.yr.ATA", + "landIce.zvelbase.tavg-u-hxy-is.yr.GRL", + "landIce.zvelsurf.tavg-u-hxy-is.yr.ATA", + "landIce.zvelsurf.tavg-u-hxy-is.yr.GRL", + "ocean.evspsbl.tavg-u-hxy-ifs.mon.GLB", + "ocean.hfacrossline.tavg-u-ht-sea.mon.GLB", + "ocean.hfevapds.tavg-u-hxy-ifs.mon.GLB", + "ocean.hfibthermds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfibthermds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfrainds.tavg-u-hxy-ifs.mon.GLB", + "ocean.hfrunoffds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfrunoffds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfsnthermds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfsnthermds.tavg-u-hxy-sea.mon.GLB", + "ocean.mfo.tavg-u-ht-sea.mon.GLB", + "ocean.sf6.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfacrossline.tavg-u-ht-sea.mon.GLB", + "ocean.sfdsi.tavg-u-hxy-sea.mon.GLB", + "ocean.sfriver.tavg-u-hxy-sea.mon.GLB", + "ocean.siflfwbot.tavg-u-hxy-sea.mon.GLB", + "ocean.so.tavg-ol-hxy-sea.day.GLB", + "ocean.t17d.tavg-u-hxy-sea.mon.GLB", + "ocean.t20d.tavg-u-hxy-sea.mon.GLB", + "ocean.tnkebto.tavg-u-hxy-sea.yr.GLB", + "ocean.vsf.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfcorr.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfevap.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfpr.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfriver.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfsit.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.arag.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.arag.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.calc.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.calc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chl.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.chlcalc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.detoc.tavg-ol-hxy-sea.day.GLB", + "ocnBgchem.dissoc.tavg-ol-hxy-sea.day.GLB", + "ocnBgchem.dmso.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.epn.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.epp.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.exparagob.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.expcalcob.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.expcob.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.expfeob.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.expnob.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.exppob.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.expsiob.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fgdms.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.frfe.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.frn.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppcalc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppdiat.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppdiaz.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppmisc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppnano.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppnitrate.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intpppico.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limfecalc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limfediat.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limfediaz.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limfemisc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limfepico.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limirrcalc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limirrdiat.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limirrdiaz.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limirrmisc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limirrpico.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limncalc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limndiat.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limndiaz.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limnmisc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limnpico.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.o2.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.o2sat.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.ph.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.pp.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.sialgc.tavg-u-hxy-si.mon.GLB", + "ocnBgchem.sichl.tavg-u-hxy-si.mon.GLB", + "ocnBgchem.sigpp.tavg-u-hxy-si.mon.GLB", + "ocnBgchem.sino3.tavg-u-hxy-si.mon.GLB", + "ocnBgchem.sisi.tavg-u-hxy-si.mon.GLB", + "seaIce.sfdsi.tavg-u-hxy-si.mon.GLB", + "seaIce.siage.tavg-u-hxy-si.mon.GLB", + "seaIce.siarea.tavg-u-hm-u.day.NH", + "seaIce.siarea.tavg-u-hm-u.day.SH", + "seaIce.sicompstren.tavg-u-hxy-si.mon.GLB", + "seaIce.sidivvel.tpt-u-hxy-si.mon.GLB", + "seaIce.sidmasstranx.tavg-u-hxy-u.mon.GLB", + "seaIce.sidmasstrany.tavg-u-hxy-u.mon.GLB", + "seaIce.sidragbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidragtop.tavg-u-hxy-si.mon.GLB", + "seaIce.siextent.tavg-u-hm-u.day.NH", + "seaIce.siextent.tavg-u-hm-u.day.SH", + "seaIce.sifb.tavg-u-hxy-si.day.GLB", + "seaIce.sifb.tavg-u-hxy-si.mon.GLB", + "seaIce.siflfwbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflfwdrain.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcecoriolx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcecorioly.tavg-u-hxy-si.mon.GLB", + "seaIce.siforceintstrx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforceintstry.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcetiltx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcetilty.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdconc.tavg-u-hxy-si.day.GLB", + "seaIce.siitdsnconc.tavg-u-hxy-si.day.GLB", + "seaIce.siitdsnthick.tavg-u-hxy-si.day.GLB", + "seaIce.siitdthick.tavg-u-hxy-si.day.GLB", + "seaIce.simpconc.tavg-u-hxy-si.day.GLB", + "seaIce.simpeffconc.tavg-u-hxy-si.day.GLB", + "seaIce.simpeffconc.tavg-u-hxy-si.mon.GLB", + "seaIce.simprefrozen.tavg-u-hxy-simp.day.GLB", + "seaIce.simprefrozen.tavg-u-hxy-simp.mon.GLB", + "seaIce.simpthick.tavg-u-hxy-si.day.GLB", + "seaIce.simpthick.tavg-u-hxy-simp.mon.GLB", + "seaIce.sirdgconc.tavg-u-hxy-si.day.GLB", + "seaIce.sisali.tavg-u-hxy-si.day.GLB", + "seaIce.sisali.tavg-u-hxy-si.mon.GLB", + "seaIce.sisaltmass.tavg-u-hxy-si.day.GLB", + "seaIce.sishearvel.tpt-u-hxy-si.mon.GLB", + "seaIce.sisnmass.tavg-u-hm-u.day.NH", + "seaIce.sisnmass.tavg-u-hm-u.day.SH", + "seaIce.sitempbot.tavg-u-hxy-si.day.GLB", + "seaIce.sitempbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sitempsnic.tavg-u-hxy-si.day.GLB", + "seaIce.sithick.tavg-u-hxy-sir.day.GLB", + "seaIce.sithick.tavg-u-hxy-sir.mon.GLB", + "seaIce.sivol.tavg-u-hm-u.day.NH", + "seaIce.sivol.tavg-u-hm-u.day.SH" + ], + "Low": [ + "aerosol.sfpm1.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.sfpm10.tavg-h2m-hxy-u.1hr.GLB", + "atmos.hurs.tmin-h2m-hxy-crp.day.GLB", + "atmos.pr.tavg-u-hxy-crp.day.GLB", + "atmos.tas.tmax-h2m-hxy-crp.day.GLB", + "atmos.tas.tmin-h2m-hxy-crp.day.GLB", + "atmosChem.drynh3.tavg-u-hxy-u.day.GLB", + "atmosChem.drynh4.tavg-u-hxy-u.day.GLB", + "atmosChem.drynoy.tavg-u-hxy-u.day.GLB", + "atmosChem.flashrate.tavg-u-hxy-u.mon.GLB", + "atmosChem.wetnh3.tavg-u-hxy-u.day.GLB", + "atmosChem.wetnh4.tavg-u-hxy-u.day.GLB", + "atmosChem.wetnoy.tavg-u-hxy-u.day.GLB", + "land.c13Land.tavg-u-hxy-lnd.mon.GLB", + "land.c13Litter.tavg-u-hxy-lnd.mon.GLB", + "land.c13Soil.tavg-u-hxy-lnd.mon.GLB", + "land.c13Veg.tavg-u-hxy-lnd.mon.GLB", + "land.c14Land.tavg-u-hxy-lnd.mon.GLB", + "land.c14Litter.tavg-u-hxy-lnd.mon.GLB", + "land.c14Soil.tavg-u-hxy-lnd.mon.GLB", + "land.c14Veg.tavg-u-hxy-lnd.mon.GLB", + "land.c3PftFrac.tavg-u-hxy-u.mon.GLB", + "land.c4PftFrac.tavg-u-hxy-u.mon.GLB", + "land.gppc13.tavg-u-hxy-lnd.mon.GLB", + "land.gppc14.tavg-u-hxy-lnd.mon.GLB", + "land.lai.tavg-u-hxy-lnd.day.GLB", + "land.netAtmosLandC13Flux.tavg-u-hxy-lnd.mon.GLB", + "land.netAtmosLandC14Flux.tavg-u-hxy-lnd.mon.GLB", + "land.rac13.tavg-u-hxy-lnd.mon.GLB", + "land.rac14.tavg-u-hxy-lnd.mon.GLB", + "land.rhc13.tavg-u-hxy-lnd.mon.GLB", + "land.rhc14.tavg-u-hxy-lnd.mon.GLB", + "ocean.difmxybo.tavg-ol-hxy-sea.yr.GLB", + "ocean.difmxylo.tavg-ol-hxy-sea.yr.GLB", + "ocean.diftrblo.tavg-ol-hxy-sea.yr.GLB", + "ocean.diftrelo.tavg-ol-hxy-sea.yr.GLB", + "ocean.difvho.tavg-ol-hxy-sea.yr.GLB", + "ocean.difvso.tavg-ol-hxy-sea.yr.GLB", + "ocean.dispkexyfo.tavg-u-hxy-sea.yr.GLB", + "ocean.dxto.ti-u-hxy-u.fx.GLB", + "ocean.dxuo.ti-u-hxy-u.fx.GLB", + "ocean.dxvo.ti-u-hxy-u.fx.GLB", + "ocean.dyto.ti-u-hxy-u.fx.GLB", + "ocean.dyuo.ti-u-hxy-u.fx.GLB", + "ocean.dyvo.ti-u-hxy-u.fx.GLB", + "ocean.mlotstsq.tavg-u-hxy-sea.mon.GLB", + "ocean.msftmmpa.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftmmpa.tavg-rho-hyb-sea.mon.GLB", + "ocean.msftmsmpa.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftypa.tavg-ol-ht-sea.mon.GLB", + "ocean.msftypa.tavg-rho-ht-sea.mon.GLB", + "ocean.ocontempdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontempmint.tavg-u-hxy-sea.yr.GLB", + "ocean.ocontemppadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemppmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemppsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemprmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemptend.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottempdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottempmint.tavg-u-hxy-sea.yr.GLB", + "ocean.opottemppadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemppmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemppsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemprmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemptend.tavg-ol-hxy-sea.dec.GLB", + "ocean.osaltdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpsmadvect.tavg-ol-hxy-sea.mon.GLB", + "ocean.osaltpsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltrmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osalttend.tavg-ol-hxy-sea.yr.GLB", + "ocean.rsdo.tavg-ol-hxy-sea.day.GLB", + "ocean.rsdoabsorb.tavg-ol-hxy-sea.yr.GLB", + "ocean.somint.tavg-u-hxy-sea.yr.GLB", + "ocean.sossq.tavg-u-hxy-sea.mon.GLB", + "ocean.thkcelluo.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcellvo.tavg-ol-hxy-sea.mon.GLB", + "ocean.tnpeo.tavg-u-hxy-sea.yr.GLB", + "ocean.tossq.tavg-u-hxy-sea.mon.GLB", + "ocean.wo.tavg-ol-hxy-sea.day.GLB", + "ocnBgchem.dissi13c.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.dissi13c.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissi14c.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissi14cabio.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.dissi14cabio.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.expcob.tavg-u-hxy-sea.day.GLB", + "ocnBgchem.fg13co2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fg14co2abio.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intpoc.tavg-u-hxy-sea.day.GLB", + "ocnBgchem.o2.tavg-d0m-hxy-sea.day.GLB", + "ocnBgchem.o2min.tavg-u-hxy-sea.day.GLB", + "ocnBgchem.phyc.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.phycalc.tavg-ol-hxy-sea.day.GLB", + "ocnBgchem.phydiat.tavg-d0m-hxy-sea.day.GLB", + "ocnBgchem.phydiaz.tavg-d0m-hxy-sea.day.GLB", + "ocnBgchem.phymisc.tavg-d0m-hxy-sea.day.GLB", + "ocnBgchem.phynano.tavg-u-hxy-sea.day.GLB", + "ocnBgchem.phypico.tavg-ol-hxy-sea.day.GLB", + "ocnBgchem.zmeso.tavg-ol-hxy-sea.day.GLB", + "ocnBgchem.zmicro.tavg-ol-hxy-sea.day.GLB", + "ocnBgchem.zooc.tavg-ol-hxy-sea.day.GLB" + ] + }, + "scenariomip16": { + "Core": [ + "atmos.areacella.ti-u-hxy-u.fx.GLB", + "atmos.cl.tavg-al-hxy-u.mon.GLB", + "atmos.cli.tavg-al-hxy-u.mon.GLB", + "atmos.clivi.tavg-u-hxy-u.mon.GLB", + "atmos.clt.tavg-u-hxy-u.day.GLB", + "atmos.clt.tavg-u-hxy-u.mon.GLB", + "atmos.clw.tavg-al-hxy-u.mon.GLB", + "atmos.clwvi.tavg-u-hxy-u.mon.GLB", + "atmos.evspsbl.tavg-u-hxy-u.mon.GLB", + "atmos.hfls.tavg-u-hxy-u.mon.GLB", + "atmos.hfss.tavg-u-hxy-u.mon.GLB", + "atmos.hur.tavg-p19-hxy-air.mon.GLB", + "atmos.hur.tavg-p19-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.6hr.GLB", + "atmos.hurs.tavg-h2m-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.mon.GLB", + "atmos.hus.tavg-p19-hxy-u.day.GLB", + "atmos.hus.tavg-p19-hxy-u.mon.GLB", + "atmos.huss.tavg-h2m-hxy-u.day.GLB", + "atmos.huss.tavg-h2m-hxy-u.mon.GLB", + "atmos.huss.tpt-h2m-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.1hr.GLB", + "atmos.pr.tavg-u-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.day.GLB", + "atmos.pr.tavg-u-hxy-u.mon.GLB", + "atmos.prc.tavg-u-hxy-u.mon.GLB", + "atmos.prsn.tavg-u-hxy-u.mon.GLB", + "atmos.prw.tavg-u-hxy-u.mon.GLB", + "atmos.ps.tavg-u-hxy-u.day.GLB", + "atmos.ps.tavg-u-hxy-u.mon.GLB", + "atmos.psl.tavg-u-hxy-u.day.GLB", + "atmos.psl.tavg-u-hxy-u.mon.GLB", + "atmos.rlds.tavg-u-hxy-u.mon.GLB", + "atmos.rldscs.tavg-u-hxy-u.mon.GLB", + "atmos.rlus.tavg-u-hxy-u.mon.GLB", + "atmos.rluscs.tavg-u-hxy-u.mon.GLB", + "atmos.rlut.tavg-u-hxy-u.mon.GLB", + "atmos.rlutcs.tavg-u-hxy-u.mon.GLB", + "atmos.rsds.tavg-u-hxy-u.day.GLB", + "atmos.rsds.tavg-u-hxy-u.mon.GLB", + "atmos.rsdscs.tavg-u-hxy-u.mon.GLB", + "atmos.rsdt.tavg-u-hxy-u.mon.GLB", + "atmos.rsus.tavg-u-hxy-u.mon.GLB", + "atmos.rsuscs.tavg-u-hxy-u.mon.GLB", + "atmos.rsut.tavg-u-hxy-u.mon.GLB", + "atmos.rsutcs.tavg-u-hxy-u.mon.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.day.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.mon.GLB", + "atmos.sftlf.ti-u-hxy-u.fx.GLB", + "atmos.ta.tavg-p19-hxy-air.day.GLB", + "atmos.ta.tavg-p19-hxy-air.mon.GLB", + "atmos.ta.tpt-p3-hxy-air.6hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.day.GLB", + "atmos.tas.tavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tmax-h2m-hxy-u.day.GLB", + "atmos.tas.tmaxavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tmin-h2m-hxy-u.day.GLB", + "atmos.tas.tminavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tpt-h2m-hxy-u.3hr.GLB", + "atmos.tauu.tavg-u-hxy-u.mon.GLB", + "atmos.tauv.tavg-u-hxy-u.mon.GLB", + "atmos.ts.tavg-u-hxy-u.mon.GLB", + "atmos.ua.tavg-p19-hxy-air.day.GLB", + "atmos.ua.tavg-p19-hxy-air.mon.GLB", + "atmos.ua.tpt-p3-hxy-air.6hr.GLB", + "atmos.uas.tavg-h10m-hxy-u.day.GLB", + "atmos.uas.tavg-h10m-hxy-u.mon.GLB", + "atmos.uas.tpt-h10m-hxy-u.3hr.GLB", + "atmos.va.tavg-p19-hxy-air.day.GLB", + "atmos.va.tavg-p19-hxy-air.mon.GLB", + "atmos.va.tpt-p3-hxy-air.6hr.GLB", + "atmos.vas.tavg-h10m-hxy-u.day.GLB", + "atmos.vas.tavg-h10m-hxy-u.mon.GLB", + "atmos.vas.tpt-h10m-hxy-u.3hr.GLB", + "atmos.wap.tavg-p19-hxy-air.mon.GLB", + "atmos.wap.tavg-p19-hxy-u.day.GLB", + "atmos.zg.tavg-p19-hxy-air.day.GLB", + "atmos.zg.tavg-p19-hxy-air.mon.GLB", + "land.evspsblsoi.tavg-u-hxy-lnd.mon.GLB", + "land.evspsblveg.tavg-u-hxy-lnd.mon.GLB", + "land.lai.tavg-u-hxy-lnd.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.mon.GLB", + "land.mrros.tavg-u-hxy-lnd.mon.GLB", + "land.mrso.tavg-u-hxy-lnd.mon.GLB", + "land.mrsofc.ti-u-hxy-lnd.fx.GLB", + "land.mrsol.tavg-d10cm-hxy-lnd.mon.GLB", + "land.orog.ti-u-hxy-u.fx.GLB", + "land.rootd.ti-u-hxy-lnd.fx.GLB", + "land.sftgif.ti-u-hxy-u.fx.GLB", + "land.slthick.ti-sl-hxy-lnd.fx.GLB", + "landIce.mrfso.tavg-u-hxy-lnd.mon.GLB", + "landIce.snc.tavg-u-hxy-lnd.mon.GLB", + "landIce.snw.tavg-u-hxy-lnd.mon.GLB", + "ocean.areacello.ti-u-hxy-u.fx.GLB", + "ocean.basin.ti-u-hxy-u.fx.GLB", + "ocean.bigthetao.tavg-ol-hxy-sea.mon.GLB", + "ocean.deptho.ti-u-hxy-sea.fx.GLB", + "ocean.hfds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfgeou.ti-u-hxy-sea.fx.GLB", + "ocean.masscello.tavg-ol-hxy-sea.mon.GLB", + "ocean.masscello.ti-ol-hxy-sea.fx.GLB", + "ocean.mlotst.tavg-u-hxy-sea.mon.GLB", + "ocean.sftof.ti-u-hxy-u.fx.GLB", + "ocean.so.tavg-ol-hxy-sea.mon.GLB", + "ocean.sos.tavg-u-hxy-sea.day.GLB", + "ocean.sos.tavg-u-hxy-sea.mon.GLB", + "ocean.tauuo.tavg-u-hxy-sea.mon.GLB", + "ocean.tauvo.tavg-u-hxy-sea.mon.GLB", + "ocean.thetao.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcello.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcello.ti-ol-hxy-sea.fx.GLB", + "ocean.tos.tavg-u-hxy-sea.day.GLB", + "ocean.tos.tavg-u-hxy-sea.mon.GLB", + "ocean.umo.tavg-ol-hxy-sea.mon.GLB", + "ocean.uo.tavg-ol-hxy-sea.mon.GLB", + "ocean.vmo.tavg-ol-hxy-sea.mon.GLB", + "ocean.vo.tavg-ol-hxy-sea.mon.GLB", + "ocean.wmo.tavg-ol-hxy-sea.mon.GLB", + "ocean.wo.tavg-ol-hxy-sea.mon.GLB", + "ocean.zos.tavg-u-hxy-sea.day.GLB", + "ocean.zos.tavg-u-hxy-sea.mon.GLB", + "ocean.zostoga.tavg-u-hm-sea.mon.GLB", + "seaIce.siconc.tavg-u-hxy-u.day.GLB", + "seaIce.siconc.tavg-u-hxy-u.mon.GLB", + "seaIce.simass.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-si.mon.GLB", + "seaIce.sitimefrac.tavg-u-hxy-sea.mon.GLB", + "seaIce.siu.tavg-u-hxy-si.mon.GLB", + "seaIce.siv.tavg-u-hxy-si.mon.GLB", + "seaIce.snd.tavg-u-hxy-sn.mon.GLB", + "seaIce.ts.tavg-u-hxy-si.mon.GLB" + ], + "High": [ + "aerosol.depdust.tavg-u-hxy-u.mon.GLB", + "atmos.cl.tavg-al-hxy-u.day.GLB", + "atmos.clt.tavg-u-hxy-u.1hr.30S-90S", + "atmos.co2.tavg-h2m-hxy-u.mon.GLB", + "atmos.co2.tclm-u-hm-u.mon.GLB", + "atmos.co2mass.tavg-u-hm-u.mon.GLB", + "atmos.epfy.tavg-p39-hy-air.day.GLB", + "atmos.epfy.tavg-p39-hy-air.mon.GLB", + "atmos.epfz.tavg-p39-hy-air.day.GLB", + "atmos.epfz.tavg-p39-hy-air.mon.GLB", + "atmos.evspsbl.tavg-u-hxy-lnd.day.GLB", + "atmos.hfls.tavg-u-hxy-u.day.GLB", + "atmos.hfss.tavg-u-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.1hr.30S-90S", + "atmos.hurs.tpt-h2m-hxy-u.3hr.GLB", + "atmos.huss.tavg-h2m-hxy-u.6hr.GLB", + "atmos.huss.tpt-h2m-hxy-u.1hr.GLB", + "atmos.intuadse.tavg-u-hxy-u.day.GLB", + "atmos.intuadse.tavg-u-hxy-u.mon.GLB", + "atmos.intuaw.tavg-u-hxy-u.day.GLB", + "atmos.intuaw.tavg-u-hxy-u.mon.GLB", + "atmos.intvadse.tavg-u-hxy-u.day.GLB", + "atmos.intvadse.tavg-u-hxy-u.mon.GLB", + "atmos.intvaw.tavg-u-hxy-u.day.GLB", + "atmos.intvaw.tavg-u-hxy-u.mon.GLB", + "atmos.pfull.tavg-al-hxy-u.day.GLB", + "atmos.pr.tavg-u-hxy-u.1hr.30S-90S", + "atmos.pr17O.tavg-u-hxy-u.mon.GLB", + "atmos.pr18O.tavg-u-hxy-u.mon.GLB", + "atmos.pr2h.tavg-u-hxy-u.mon.GLB", + "atmos.prc.tavg-u-hxy-u.day.GLB", + "atmos.prra.tavg-u-hxy-lnd.day.GLB", + "atmos.prra.tavg-u-hxy-u.6hr.GLB", + "atmos.prra.tavg-u-hxy-u.mon.GLB", + "atmos.prsn.tavg-u-hxy-u.6hr.GLB", + "atmos.prsn.tavg-u-hxy-u.day.GLB", + "atmos.prsn18O.tavg-u-hxy-u.mon.GLB", + "atmos.prsn2h.tavg-u-hxy-u.mon.GLB", + "atmos.ps.tavg-u-hxy-u.6hr.GLB", + "atmos.ps.tpt-u-hxy-u.1hr.30S-90S", + "atmos.psl.tpt-u-hxy-u.1hr.GLB", + "atmos.rlds.tavg-u-hxy-u.1hr.30S-90S", + "atmos.rlds.tavg-u-hxy-u.3hr.GLB", + "atmos.rlds.tavg-u-hxy-u.6hr.GLB", + "atmos.rlds.tavg-u-hxy-u.day.GLB", + "atmos.rlus.tavg-u-hxy-u.day.GLB", + "atmos.rlut.tavg-u-hxy-u.day.GLB", + "atmos.rsds.tavg-u-hxy-u.1hr.30S-90S", + "atmos.rsds.tavg-u-hxy-u.1hr.GLB", + "atmos.rsds.tavg-u-hxy-u.3hr.GLB", + "atmos.rsds.tavg-u-hxy-u.6hr.GLB", + "atmos.rsdt.tavg-u-hxy-u.day.GLB", + "atmos.rsus.tavg-u-hxy-u.day.GLB", + "atmos.rsut.tavg-u-hxy-u.day.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.1hr.30S-90S", + "atmos.sfcWind.tavg-h10m-hxy-u.6hr.GLB", + "atmos.ta.tavg-p39-hy-air.day.GLB", + "atmos.ta.tavg-p39-hy-air.mon.GLB", + "atmos.tas.tavg-h2m-hxy-u.6hr.GLB", + "atmos.tauu.tavg-u-hxy-u.day.GLB", + "atmos.tauunoegw.tavg-p39-hy-air.day.GLB", + "atmos.tauunowgw.tavg-p39-hy-air.day.GLB", + "atmos.tauuogw.tavg-p39-hy-air.day.GLB", + "atmos.tauv.tavg-u-hxy-u.day.GLB", + "atmos.tauvnogw.tavg-p39-hy-air.day.GLB", + "atmos.tauvogw.tavg-p39-hy-air.day.GLB", + "atmos.tdps.tavg-h2m-hxy-u.mon.GLB", + "atmos.tntmp.tavg-p39-hy-air.day.GLB", + "atmos.tntmp.tavg-p39-hy-air.mon.GLB", + "atmos.tntrl.tavg-p39-hy-air.day.GLB", + "atmos.tntrl.tavg-p39-hy-air.mon.GLB", + "atmos.tntrs.tavg-p39-hy-air.day.GLB", + "atmos.tntrs.tavg-p39-hy-air.mon.GLB", + "atmos.ts.tavg-u-hxy-u.6hr.GLB", + "atmos.ts.tavg-u-hxy-u.day.GLB", + "atmos.ua.tavg-p39-hy-air.day.GLB", + "atmos.ua.tavg-p39-hy-air.mon.GLB", + "atmos.ua.tpt-h100m-hxy-u.1hr.GLB", + "atmos.uas.tpt-h10m-hxy-u.1hr.GLB", + "atmos.utendepfd.tavg-p39-hy-air.day.GLB", + "atmos.utendepfd.tavg-p39-hy-air.mon.GLB", + "atmos.utendnogw.tavg-p39-hy-air.day.GLB", + "atmos.utendnogw.tavg-p39-hy-air.mon.GLB", + "atmos.utendogw.tavg-p39-hy-air.day.GLB", + "atmos.utendogw.tavg-p39-hy-air.mon.GLB", + "atmos.utendvtem.tavg-p39-hy-air.day.GLB", + "atmos.utendwtem.tavg-p39-hy-air.day.GLB", + "atmos.va.tpt-h100m-hxy-u.1hr.GLB", + "atmos.vas.tpt-h10m-hxy-u.1hr.GLB", + "atmos.vtem.tavg-p39-hy-air.day.GLB", + "atmos.vtem.tavg-p39-hy-air.mon.GLB", + "atmos.wsg.tmax-h100m-hxy-u.1hr.GLB", + "atmos.wsg.tmax-h10m-hxy-u.1hr.GLB", + "atmos.wtem.tavg-p39-hy-air.day.GLB", + "atmos.wtem.tavg-p39-hy-air.mon.GLB", + "atmos.zg.tavg-p39-hy-air.day.GLB", + "atmos.zg.tavg-p39-hy-air.mon.GLB", + "atmosChem.meanage.tavg-p39-hy-air.mon.GLB", + "land.burntFractionAll.tavg-u-hxy-u.mon.GLB", + "land.cSoil.tavg-sl-hxy-lnd.mon.GLB", + "land.cSoil.tavg-u-hxy-lnd.mon.GLB", + "land.depthl.ti-u-hxy-u.fx.GLB", + "land.depthsl.ti-u-hxy-u.fx.GLB", + "land.evspsblpot.tavg-u-hxy-lnd.day.GLB", + "land.evspsblpot.tavg-u-hxy-lnd.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.day.GLB", + "land.mrrob.tavg-u-hxy-lnd.day.GLB", + "land.mrros.tavg-u-hxy-lnd.day.GLB", + "land.mrsfl.tavg-sl-hxy-lnd.day.GLB", + "land.mrsfl.tavg-sl-hxy-lnd.mon.GLB", + "land.mrsll.tavg-sl-hxy-lnd.day.GLB", + "land.mrsll.tavg-sl-hxy-lnd.mon.GLB", + "land.mrso.tavg-u-hxy-lnd.day.GLB", + "land.mrsol.tavg-d10cm-hxy-lnd.day.GLB", + "land.mrsol.tavg-sl-hxy-lnd.day.GLB", + "land.mrsol.tavg-sl-hxy-lnd.mon.GLB", + "land.orog.ti-u-hxy-u.fx.30S-90S", + "land.rsds.tavg-u-hxy-lnd.mon.GLB", + "land.rsds.tavg-u-hxy-sn.mon.GLB", + "land.rsus.tavg-u-hxy-lnd.mon.GLB", + "land.rsus.tavg-u-hxy-sn.mon.GLB", + "land.sftgif.tavg-u-hxy-u.mon.GLB", + "land.sftlaf.ti-u-hxy-u.fx.GLB", + "land.tas.tavg-u-hxy-u.1hr.30S-90S", + "land.tas.tavg-u-hxy-u.1hr.GLB", + "land.tsl.tavg-sl-hxy-lnd.day.GLB", + "land.tsl.tavg-sl-hxy-lnd.mon.GLB", + "landIce.acabf.tavg-u-hxy-is.mon.GLB", + "landIce.hfls.tavg-u-hxy-is.mon.GLB", + "landIce.hfss.tavg-u-hxy-is.mon.GLB", + "landIce.icem.tavg-u-hxy-is.mon.GLB", + "landIce.litemptop.tavg-u-hxy-is.mon.GLB", + "landIce.lithk.ti-u-hxy-u.fx.GLB", + "landIce.mrro.tavg-u-hxy-is.mon.GLB", + "landIce.orog.tavg-u-hxy-is.mon.GLB", + "landIce.prra.tavg-u-hxy-is.mon.GLB", + "landIce.prsn.tavg-u-hxy-is.mon.GLB", + "landIce.rlds.tavg-u-hxy-is.mon.GLB", + "landIce.rlus.tavg-u-hxy-is.mon.GLB", + "landIce.rsds.tavg-u-hxy-is.mon.GLB", + "landIce.rsus.tavg-u-hxy-is.mon.GLB", + "landIce.sbl.tavg-u-hxy-is.mon.GLB", + "landIce.sbl.tavg-u-hxy-lnd.mon.GLB", + "landIce.sbl.tavg-u-hxy-u.mon.GLB", + "landIce.sftflf.tavg-u-hxy-u.mon.GLB", + "landIce.sftflf.ti-u-hxy-u.fx.GLB", + "landIce.sftgrf.tavg-u-hxy-u.mon.GLB", + "landIce.sftgrf.ti-u-hxy-u.fx.GLB", + "landIce.snc.tavg-u-hxy-is.mon.GLB", + "landIce.snd.tavg-u-hxy-lnd.mon.GLB", + "landIce.snicem.tavg-u-hxy-is.mon.GLB", + "landIce.snm.tavg-u-hxy-is.mon.GLB", + "landIce.snm.tavg-u-hxy-lnd.mon.GLB", + "landIce.snrefr.tavg-u-hxy-is.mon.GLB", + "landIce.tas.tavg-u-hxy-is.mon.GLB", + "landIce.ts.tavg-u-hxy-is.mon.GLB", + "landIce.tsn.tavg-u-hxy-is.mon.GLB", + "landIce.tsn.tavg-u-hxy-lnd.mon.GLB", + "ocean.absscint.tavg-op4-hxy-sea.mon.GLB", + "ocean.agessc.tavg-ol-hxy-sea.mon.GLB", + "ocean.bigthetao.tavg-ol-hm-sea.mon.GLB", + "ocean.bigthetao.tavg-ol-hxy-sea.dec.GLB", + "ocean.bigthetao.tavg-op20bar-hxy-sea.day.GLB", + "ocean.chcint.tavg-op4-hxy-sea.mon.GLB", + "ocean.ficeberg.tavg-u-hxy-sea.mon.GLB", + "ocean.flandice.tavg-u-hxy-sea.mon.GLB", + "ocean.hfbasin.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpmadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpmdiff.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpsmadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfgeou.tavg-u-hxy-sea.mon.GLB", + "ocean.hfx.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfx.tavg-u-hxy-sea.day.GLB", + "ocean.hfx.tavg-u-hxy-sea.mon.GLB", + "ocean.hfy.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfy.tavg-u-hxy-sea.day.GLB", + "ocean.hfy.tavg-u-hxy-sea.mon.GLB", + "ocean.htovgyre.tavg-u-hyb-sea.mon.GLB", + "ocean.htovovrt.tavg-u-hyb-sea.mon.GLB", + "ocean.masscello.tavg-ol-hxy-sea.dec.GLB", + "ocean.masso.tavg-u-hm-sea.dec.GLB", + "ocean.masso.tavg-u-hm-sea.mon.GLB", + "ocean.mlotst.tavg-u-hxy-sea.day.GLB", + "ocean.mlotst.tmax-u-hxy-sea.mon.GLB", + "ocean.mlotst.tmin-u-hxy-sea.mon.GLB", + "ocean.mpw.tavg-u-hxy-sea.mon.GLB", + "ocean.mpw.tpt-u-hxy-sea.3hr.GLB", + "ocean.mpwswell.tavg-u-hxy-sea.mon.GLB", + "ocean.mpwswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.mpwwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.mpwwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.msftbarot.tavg-u-hxy-sea.mon.GLB", + "ocean.msftm.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftm.tavg-rho-hyb-sea.mon.GLB", + "ocean.msfty.tavg-ol-ht-sea.mon.GLB", + "ocean.msfty.tavg-rho-ht-sea.mon.GLB", + "ocean.obvfsq.tavg-ol-hxy-sea.mon.GLB", + "ocean.opottemptend.tavg-ol-hxy-sea.yr.GLB", + "ocean.pbo.tavg-u-hxy-sea.mon.GLB", + "ocean.pfscint.tavg-op4-hxy-sea.mon.GLB", + "ocean.phcint.tavg-op4-hxy-sea.mon.GLB", + "ocean.pso.tavg-u-hxy-sea.mon.GLB", + "ocean.rsds.tavg-u-hxy-ifs.mon.GLB", + "ocean.rsus.tavg-u-hxy-ifs.mon.GLB", + "ocean.scint.tavg-op4-hxy-sea.mon.GLB", + "ocean.sduo.tavg-u-hxy-sea.mon.GLB", + "ocean.sduo.tpt-u-hxy-sea.3hr.GLB", + "ocean.sdvo.tavg-u-hxy-sea.mon.GLB", + "ocean.sdvo.tpt-u-hxy-sea.3hr.GLB", + "ocean.sfx.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfx.tavg-u-hxy-sea.mon.GLB", + "ocean.sfy.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfy.tavg-u-hxy-sea.mon.GLB", + "ocean.sltbasin.tavg-u-hyb-sea.mon.GLB", + "ocean.sltovgyre.tavg-u-hyb-sea.mon.GLB", + "ocean.sltovovrt.tavg-u-hyb-sea.mon.GLB", + "ocean.so.tavg-ol-hm-sea.mon.GLB", + "ocean.so.tavg-ol-hxy-sea.dec.GLB", + "ocean.sob.tavg-u-hxy-sea.mon.GLB", + "ocean.sos.tavg-u-hm-sea.mon.GLB", + "ocean.sw17O.tavg-ol-hxy-sea.mon.GLB", + "ocean.sw18O.tavg-ol-hxy-sea.mon.GLB", + "ocean.sw2H.tavg-ol-hxy-sea.mon.GLB", + "ocean.swh.tavg-u-hxy-sea.mon.GLB", + "ocean.swh.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhmax.tmax-u-hxy-sea.mon.GLB", + "ocean.swhmax.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhswell.tavg-u-hxy-sea.mon.GLB", + "ocean.swhswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.swhwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.tauuo.tavg-u-hxy-sea.dec.GLB", + "ocean.tauvo.tavg-u-hxy-sea.dec.GLB", + "ocean.thetao.tavg-ol-hm-sea.mon.GLB", + "ocean.thetao.tavg-ol-hxy-sea.dec.GLB", + "ocean.thetao.tavg-op20bar-hxy-sea.day.GLB", + "ocean.thkcello.tavg-ol-hxy-sea.dec.GLB", + "ocean.tob.tavg-u-hxy-sea.mon.GLB", + "ocean.tos.tavg-u-hm-sea.mon.GLB", + "ocean.tos.tpt-u-hxy-sea.3hr.GLB", + "ocean.tossq.tavg-u-hxy-sea.day.GLB", + "ocean.uos.tavg-u-hxy-sea.day.GLB", + "ocean.volcello.tavg-ol-hxy-sea.dec.GLB", + "ocean.volcello.tavg-ol-hxy-sea.mon.GLB", + "ocean.volcello.tavg-ol-hxy-sea.yr.GLB", + "ocean.volcello.ti-ol-hxy-sea.fx.GLB", + "ocean.volo.tavg-u-hm-sea.dec.GLB", + "ocean.volo.tavg-u-hm-sea.mon.GLB", + "ocean.vos.tavg-u-hxy-sea.day.GLB", + "ocean.wdir.tavg-u-hxy-sea.mon.GLB", + "ocean.wdir.tpt-u-hxy-sea.3hr.GLB", + "ocean.wdirswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wdirswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wdirwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wdirwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.wfcorr.tavg-u-hxy-sea.mon.GLB", + "ocean.wfo.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdir.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdir.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpdirswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdirswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpdirwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdirwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpp.tavg-u-hxy-sea.mon.GLB", + "ocean.wpp.tpt-u-hxy-sea.3hr.GLB", + "ocean.wppswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wppswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wppwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wppwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.zossq.tavg-u-hxy-sea.mon.GLB", + "ocean.zostoga.tavg-u-hm-sea.day.GLB", + "ocnBgchem.chl.tavg-d0m-hxy-sea.day.GLB", + "ocnBgchem.chl.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.detoc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dfe.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissic.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissoc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dmso.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.dpco2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.dpo2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.expc.tavg-d1000m-hxy-sea.mon.GLB", + "ocnBgchem.expc.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.expcalc.tavg-d1000m-hxy-sea.mon.GLB", + "ocnBgchem.expcalc.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.fgco2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fric.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.froc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.graz.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.intpp.tavg-u-hxy-sea.day.GLB", + "ocnBgchem.intpp.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.nh4.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.no3.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.o2.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.ph.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phyc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phycalc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phydiat.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phymisc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phypico.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.po4.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.si.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.spco2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.talk.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zmeso.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zmicro.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zmisc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zooc.tavg-ol-hxy-sea.mon.GLB", + "seaIce.evspsbl.tavg-u-hxy-si.mon.GLB", + "seaIce.prra.tavg-u-hxy-si.mon.GLB", + "seaIce.prsn.tavg-u-hxy-si.mon.GLB", + "seaIce.rlds.tavg-u-hxy-si.day.GLB", + "seaIce.rlds.tavg-u-hxy-si.mon.GLB", + "seaIce.rlus.tavg-u-hxy-si.day.GLB", + "seaIce.rlus.tavg-u-hxy-si.mon.GLB", + "seaIce.rsds.tavg-u-hxy-si.day.GLB", + "seaIce.rsds.tavg-u-hxy-si.mon.GLB", + "seaIce.rsus.tavg-u-hxy-si.day.GLB", + "seaIce.rsus.tavg-u-hxy-si.mon.GLB", + "seaIce.sbl.tavg-u-hxy-si.mon.GLB", + "seaIce.siage.tavg-u-hxy-si.day.GLB", + "seaIce.siarea.tavg-u-hm-u.mon.NH", + "seaIce.siarea.tavg-u-hm-u.mon.SH", + "seaIce.siareaacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.siconca.tavg-u-hxy-u.day.GLB", + "seaIce.siconca.tavg-u-hxy-u.mon.GLB", + "seaIce.sidconcdyn.tavg-u-hxy-sea.mon.GLB", + "seaIce.sidconcth.tavg-u-hxy-sea.mon.GLB", + "seaIce.sidmassdyn.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthsi.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthwat.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmeltbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmeltlat.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmelttop.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassth.tavg-u-hxy-si.mon.GLB", + "seaIce.sieqthick.tavg-u-hxy-si.mon.GLB", + "seaIce.siextent.tavg-u-hm-u.mon.NH", + "seaIce.siextent.tavg-u-hm-u.mon.SH", + "seaIce.siflcondbot.tavg-u-hxy-si.day.GLB", + "seaIce.siflcondbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflcondtop.tavg-u-hxy-si.day.GLB", + "seaIce.siflcondtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sifllattop.tavg-u-hxy-si.day.GLB", + "seaIce.sifllattop.tavg-u-hxy-si.mon.GLB", + "seaIce.siflsensbot.tavg-u-hxy-si.day.GLB", + "seaIce.siflsensbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflsenstop.tavg-u-hxy-si.day.GLB", + "seaIce.siflsenstop.tavg-u-hxy-si.mon.GLB", + "seaIce.siflswdbot.tavg-u-hxy-si.day.GLB", + "seaIce.siflswdbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sihc.tavg-u-hxy-sea.day.GLB", + "seaIce.sihc.tavg-u-hxy-sea.mon.GLB", + "seaIce.siitdconc.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdsnconc.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdsnthick.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdthick.tavg-u-hxy-si.mon.GLB", + "seaIce.simassacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.simpconc.tavg-u-hxy-si.mon.GLB", + "seaIce.sirdgconc.tavg-u-hxy-si.mon.GLB", + "seaIce.sisaltmass.tavg-u-hxy-si.mon.GLB", + "seaIce.sisndmassdyn.tavg-u-hxy-si.mon.GLB", + "seaIce.sisndmasssi.tavg-u-hxy-si.mon.GLB", + "seaIce.sisndmasswind.tavg-u-hxy-si.mon.GLB", + "seaIce.sisnhc.tavg-u-hxy-si.day.GLB", + "seaIce.sisnhc.tavg-u-hxy-si.mon.GLB", + "seaIce.sisnmass.tavg-u-hm-u.mon.NH", + "seaIce.sisnmass.tavg-u-hm-u.mon.SH", + "seaIce.sisnmassacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.sispeed.tavg-u-hxy-si.day.GLB", + "seaIce.sispeed.tavg-u-hxy-si.mon.GLB", + "seaIce.sistressave.tpt-u-hxy-si.mon.GLB", + "seaIce.sistressmax.tpt-u-hxy-si.mon.GLB", + "seaIce.sistrxdtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sistrxubot.tavg-u-hxy-si.mon.GLB", + "seaIce.sistrydtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sistryubot.tavg-u-hxy-si.mon.GLB", + "seaIce.sitempsnic.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-si.day.GLB", + "seaIce.sitimefrac.tavg-u-hxy-sea.day.GLB", + "seaIce.siu.tavg-u-hxy-si.day.GLB", + "seaIce.siv.tavg-u-hxy-si.day.GLB", + "seaIce.sivol.tavg-u-hm-u.mon.NH", + "seaIce.sivol.tavg-u-hm-u.mon.SH", + "seaIce.snc.tavg-u-hxy-si.mon.GLB", + "seaIce.snd.tavg-u-hxy-sn.day.GLB", + "seaIce.snm.tavg-u-hxy-si.mon.GLB", + "seaIce.snw.tavg-u-hxy-si.mon.GLB", + "seaIce.ts.tavg-u-hxy-si.day.GLB" + ], + "Medium": [ + "atmos.hfls.tavg-u-hxy-is.mon.ATA", + "atmos.hfls.tavg-u-hxy-is.mon.GRL", + "atmos.hfss.tavg-u-hxy-is.mon.ATA", + "atmos.hfss.tavg-u-hxy-is.mon.GRL", + "atmos.prra.tavg-u-hxy-is.mon.ATA", + "atmos.prra.tavg-u-hxy-is.mon.GRL", + "atmos.prsn.tavg-u-hxy-is.mon.ATA", + "atmos.prsn.tavg-u-hxy-is.mon.GRL", + "atmos.ps.tpt-u-hxy-u.1hr.GLB", + "atmos.psitem.tavg-p39-hy-air.day.GLB", + "atmos.rlds.tavg-u-hxy-is.mon.ATA", + "atmos.rlds.tavg-u-hxy-is.mon.GRL", + "atmos.rlds.tavg-u-hxy-u.1hr.GLB", + "atmos.rlus.tavg-u-hxy-is.mon.ATA", + "atmos.rlus.tavg-u-hxy-is.mon.GRL", + "atmos.rsds.tavg-u-hxy-is.mon.ATA", + "atmos.rsds.tavg-u-hxy-is.mon.GRL", + "atmos.rsdsdiff.tavg-u-hxy-u.1hr.GLB", + "atmos.rsus.tavg-u-hxy-is.mon.ATA", + "atmos.rsus.tavg-u-hxy-is.mon.GRL", + "atmos.sfcWind.tavg-h10m-hxy-u.1hr.GLB", + "atmos.sfcWind.tmax-h10m-hxy-u.day.GLB", + "atmos.tas.tavg-h2m-hm-is.mon.ATA", + "atmos.tas.tavg-h2m-hm-is.mon.GRL", + "atmos.tauunoegw.tavg-p19-hxy-air.mon.GLB", + "atmos.tauunowgw.tavg-p19-hxy-air.mon.GLB", + "atmos.tauuogw.tavg-p19-hxy-air.mon.GLB", + "atmos.tauupbl.tavg-u-hxy-u.day.GLB", + "atmos.tauvnogw.tavg-p19-hxy-air.mon.GLB", + "atmos.tauvogw.tavg-p19-hxy-air.mon.GLB", + "atmos.tauvpbl.tavg-u-hxy-u.day.GLB", + "atmos.tntc.tavg-p39-hy-air.mon.GLB", + "atmos.tntnogw.tavg-p39-hy-air.mon.GLB", + "atmos.tntogw.tavg-p39-hy-air.mon.GLB", + "atmos.tntrlcs.tavg-p39-hy-air.mon.GLB", + "atmos.tntrscs.tavg-p39-hy-air.mon.GLB", + "atmos.tntscp.tavg-p39-hy-air.mon.GLB", + "atmos.ts.tavg-u-hxy-is.mon.ATA", + "atmos.ts.tavg-u-hxy-is.mon.GRL", + "atmos.ts.tavg-u-hxy-u.1hr.GLB", + "atmos.utendnogw.tavg-p19-hxy-air.day.GLB", + "atmos.utendnogw.tavg-p19-hxy-air.mon.GLB", + "atmos.utendogw.tavg-p19-hxy-air.day.GLB", + "atmos.utendogw.tavg-p19-hxy-air.mon.GLB", + "atmos.vtendnogw.tavg-p19-hxy-air.day.GLB", + "atmos.vtendnogw.tavg-p19-hxy-air.mon.GLB", + "atmos.vtendogw.tavg-p19-hxy-air.day.GLB", + "atmos.vtendogw.tavg-p19-hxy-air.mon.GLB", + "atmos.wsg.tmax-h100m-hxy-u.mon.GLB", + "atmos.wsg.tmax-h10m-hxy-u.mon.GLB", + "atmosChem.flashrate.tavg-u-hxy-u.day.GLB", + "land.areacellg.ti-u-hxy-u.fx.ATA", + "land.areacellg.ti-u-hxy-u.fx.GRL", + "land.orog.tavg-u-hxy-is.mon.ATA", + "land.orog.tavg-u-hxy-is.mon.GRL", + "land.orog.tavg-u-hxy-is.yr.ATA", + "land.orog.tavg-u-hxy-is.yr.GRL", + "land.sftgif.tavg-u-hxy-u.yr.ATA", + "land.sftgif.tavg-u-hxy-u.yr.GRL", + "landIce.acabf.tavg-u-hxy-is.mon.ATA", + "landIce.acabf.tavg-u-hxy-is.mon.GRL", + "landIce.acabf.tavg-u-hxy-is.yr.ATA", + "landIce.acabf.tavg-u-hxy-is.yr.GRL", + "landIce.hfgeoubed.tavg-u-hxy-gis.yr.ATA", + "landIce.hfgeoubed.tavg-u-hxy-gis.yr.GRL", + "landIce.hfgeoubed.ti-u-hxy-gis.fx.ATA", + "landIce.hfgeoubed.ti-u-hxy-gis.fx.GRL", + "landIce.iareafl.tavg-u-hm-fis.yr.ATA", + "landIce.iareafl.tavg-u-hm-fis.yr.GRL", + "landIce.iareagr.tavg-u-hm-gis.yr.ATA", + "landIce.iareagr.tavg-u-hm-gis.yr.GRL", + "landIce.icem.tavg-u-hxy-is.mon.ATA", + "landIce.icem.tavg-u-hxy-is.mon.GRL", + "landIce.libmassbf.tavg-u-hxy-fis.mon.ATA", + "landIce.libmassbf.tavg-u-hxy-fis.mon.GRL", + "landIce.libmassbf.tavg-u-hxy-fis.yr.ATA", + "landIce.libmassbf.tavg-u-hxy-fis.yr.GRL", + "landIce.libmassbf.tavg-u-hxy-gis.mon.ATA", + "landIce.libmassbf.tavg-u-hxy-gis.mon.GRL", + "landIce.libmassbf.tavg-u-hxy-gis.yr.ATA", + "landIce.libmassbf.tavg-u-hxy-gis.yr.GRL", + "landIce.licalvf.tavg-u-hxy-is.mon.ATA", + "landIce.licalvf.tavg-u-hxy-is.mon.GRL", + "landIce.licalvf.tavg-u-hxy-is.yr.ATA", + "landIce.licalvf.tavg-u-hxy-is.yr.GRL", + "landIce.lifmassbf.tavg-u-hxy-is.mon.ATA", + "landIce.lifmassbf.tavg-u-hxy-is.mon.GRL", + "landIce.lifmassbf.tavg-u-hxy-is.yr.ATA", + "landIce.lifmassbf.tavg-u-hxy-is.yr.GRL", + "landIce.lim.tavg-u-hm-is.yr.ATA", + "landIce.lim.tavg-u-hm-is.yr.GRL", + "landIce.limnsw.tavg-u-hm-is.yr.ATA", + "landIce.limnsw.tavg-u-hm-is.yr.GRL", + "landIce.litempbot.tavg-u-hxy-fis.mon.ATA", + "landIce.litempbot.tavg-u-hxy-fis.mon.GRL", + "landIce.litempbot.tavg-u-hxy-fis.yr.ATA", + "landIce.litempbot.tavg-u-hxy-fis.yr.GRL", + "landIce.litempbot.tavg-u-hxy-gis.mon.ATA", + "landIce.litempbot.tavg-u-hxy-gis.mon.GRL", + "landIce.litempbot.tavg-u-hxy-gis.yr.ATA", + "landIce.litempbot.tavg-u-hxy-gis.yr.GRL", + "landIce.litemptop.tavg-u-hxy-is.mon.ATA", + "landIce.litemptop.tavg-u-hxy-is.mon.GRL", + "landIce.litemptop.tavg-u-hxy-is.yr.ATA", + "landIce.litemptop.tavg-u-hxy-is.yr.GRL", + "landIce.lithk.tavg-u-hxy-is.yr.ATA", + "landIce.lithk.tavg-u-hxy-is.yr.GRL", + "landIce.lithk.ti-u-hxy-is.fx.ATA", + "landIce.lithk.ti-u-hxy-is.fx.GRL", + "landIce.modelcellareai.tavg-u-hxy-u.yr.ATA", + "landIce.modelcellareai.tavg-u-hxy-u.yr.GRL", + "landIce.mrroLi.tavg-u-hxy-is.mon.ATA", + "landIce.mrroLi.tavg-u-hxy-is.mon.GRL", + "landIce.sbl.tavg-u-hxy-is.mon.ATA", + "landIce.sbl.tavg-u-hxy-is.mon.GRL", + "landIce.sftflf.tavg-u-hxy-u.yr.ATA", + "landIce.sftflf.tavg-u-hxy-u.yr.GRL", + "landIce.sftgrf.tavg-u-hxy-u.yr.ATA", + "landIce.sftgrf.tavg-u-hxy-u.yr.GRL", + "landIce.snc.tavg-u-hxy-is.mon.ATA", + "landIce.snc.tavg-u-hxy-is.mon.GRL", + "landIce.snc.tavg-u-hxy-is.yr.ATA", + "landIce.snc.tavg-u-hxy-is.yr.GRL", + "landIce.snicem.tavg-u-hxy-is.mon.ATA", + "landIce.snicem.tavg-u-hxy-is.mon.GRL", + "landIce.snm.tavg-u-hxy-is.mon.ATA", + "landIce.snm.tavg-u-hxy-is.mon.GRL", + "landIce.snrefr.tavg-u-hxy-is.mon.ATA", + "landIce.snrefr.tavg-u-hxy-is.mon.GRL", + "landIce.strbasemag.tavg-u-hxy-is.yr.ATA", + "landIce.strbasemag.tavg-u-hxy-is.yr.GRL", + "landIce.tendacabf.tavg-u-hm-is.yr.ATA", + "landIce.tendacabf.tavg-u-hm-is.yr.GRL", + "landIce.tendlibmassbf.tavg-u-hm-is.yr.ATA", + "landIce.tendlibmassbf.tavg-u-hm-is.yr.GRL", + "landIce.tendlicalvf.tavg-u-hm-is.yr.ATA", + "landIce.tendlicalvf.tavg-u-hm-is.yr.GRL", + "landIce.topg.tavg-u-hxy-gis.yr.ATA", + "landIce.topg.tavg-u-hxy-gis.yr.GRL", + "landIce.topg.ti-u-hxy-gis.fx.ATA", + "landIce.topg.ti-u-hxy-gis.fx.GRL", + "landIce.tsn.tavg-u-hxy-is.mon.ATA", + "landIce.tsn.tavg-u-hxy-is.mon.GRL", + "landIce.xvelbase.tavg-u-hxy-is.yr.ATA", + "landIce.xvelbase.tavg-u-hxy-is.yr.GRL", + "landIce.xvelmean.tavg-u-hxy-is.yr.ATA", + "landIce.xvelmean.tavg-u-hxy-is.yr.GRL", + "landIce.xvelsurf.tavg-u-hxy-is.yr.ATA", + "landIce.xvelsurf.tavg-u-hxy-is.yr.GRL", + "landIce.yvelbase.tavg-u-hxy-is.yr.ATA", + "landIce.yvelbase.tavg-u-hxy-is.yr.GRL", + "landIce.yvelmean.tavg-u-hxy-is.yr.ATA", + "landIce.yvelmean.tavg-u-hxy-is.yr.GRL", + "landIce.yvelsurf.tavg-u-hxy-is.yr.ATA", + "landIce.yvelsurf.tavg-u-hxy-is.yr.GRL", + "landIce.zvelbase.tavg-u-hxy-is.yr.ATA", + "landIce.zvelbase.tavg-u-hxy-is.yr.GRL", + "landIce.zvelsurf.tavg-u-hxy-is.yr.ATA", + "landIce.zvelsurf.tavg-u-hxy-is.yr.GRL", + "ocean.evspsbl.tavg-u-hxy-ifs.mon.GLB", + "ocean.ficeberg.tavg-ol-hxy-sea.mon.GLB", + "ocean.friver.tavg-u-hxy-sea.mon.GLB", + "ocean.hfacrossline.tavg-u-ht-sea.mon.GLB", + "ocean.hfevapds.tavg-u-hxy-ifs.mon.GLB", + "ocean.hfibthermds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfibthermds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfrainds.tavg-u-hxy-ifs.mon.GLB", + "ocean.hfrunoffds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfrunoffds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfsnthermds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfsnthermds.tavg-u-hxy-sea.mon.GLB", + "ocean.mfo.tavg-u-ht-sea.mon.GLB", + "ocean.sfacrossline.tavg-u-ht-sea.mon.GLB", + "ocean.sfdsi.tavg-u-hxy-sea.mon.GLB", + "ocean.sfriver.tavg-u-hxy-sea.mon.GLB", + "ocean.siflfwbot.tavg-u-hxy-sea.mon.GLB", + "ocean.so.tavg-ol-hxy-sea.day.GLB", + "ocean.t17d.tavg-u-hxy-sea.mon.GLB", + "ocean.t20d.tavg-u-hxy-sea.mon.GLB", + "ocean.tnkebto.tavg-u-hxy-sea.yr.GLB", + "ocean.vsf.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfcorr.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfevap.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfpr.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfriver.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfsit.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.arag.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.arag.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.calc.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.calc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chl.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.detoc.tavg-ol-hxy-sea.day.GLB", + "ocnBgchem.dissoc.tavg-ol-hxy-sea.day.GLB", + "ocnBgchem.exparagob.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.expc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.expcalc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.expcalcob.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.expcob.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.expfeob.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.expnob.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.exppob.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.expsiob.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.frfe.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.frn.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppcalc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppdiat.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppdiaz.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppmisc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppnano.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intpppico.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limfecalc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limfediat.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limfediaz.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limfemisc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limfepico.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limirrcalc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limirrdiat.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limirrdiaz.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limirrmisc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limirrpico.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limncalc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limndiat.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limndiaz.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limnmisc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limnpico.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.o2.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.o2sat.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.ph.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.pp.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.sialgc.tavg-u-hxy-si.mon.GLB", + "ocnBgchem.sichl.tavg-u-hxy-si.mon.GLB", + "ocnBgchem.sigpp.tavg-u-hxy-si.mon.GLB", + "ocnBgchem.sino3.tavg-u-hxy-si.mon.GLB", + "ocnBgchem.sisi.tavg-u-hxy-si.mon.GLB", + "seaIce.sfdsi.tavg-u-hxy-si.mon.GLB", + "seaIce.siage.tavg-u-hxy-si.mon.GLB", + "seaIce.siarea.tavg-u-hm-u.day.NH", + "seaIce.siarea.tavg-u-hm-u.day.SH", + "seaIce.sicompstren.tavg-u-hxy-si.mon.GLB", + "seaIce.sidivvel.tpt-u-hxy-si.mon.GLB", + "seaIce.sidmasstranx.tavg-u-hxy-u.mon.GLB", + "seaIce.sidmasstrany.tavg-u-hxy-u.mon.GLB", + "seaIce.sidragbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidragtop.tavg-u-hxy-si.mon.GLB", + "seaIce.siextent.tavg-u-hm-u.day.NH", + "seaIce.siextent.tavg-u-hm-u.day.SH", + "seaIce.sifb.tavg-u-hxy-si.day.GLB", + "seaIce.sifb.tavg-u-hxy-si.mon.GLB", + "seaIce.siflfwbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflfwdrain.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcecoriolx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcecorioly.tavg-u-hxy-si.mon.GLB", + "seaIce.siforceintstrx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforceintstry.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcetiltx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcetilty.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdconc.tavg-u-hxy-si.day.GLB", + "seaIce.siitdsnconc.tavg-u-hxy-si.day.GLB", + "seaIce.siitdsnthick.tavg-u-hxy-si.day.GLB", + "seaIce.siitdthick.tavg-u-hxy-si.day.GLB", + "seaIce.simpconc.tavg-u-hxy-si.day.GLB", + "seaIce.simpeffconc.tavg-u-hxy-si.day.GLB", + "seaIce.simpeffconc.tavg-u-hxy-si.mon.GLB", + "seaIce.simprefrozen.tavg-u-hxy-simp.day.GLB", + "seaIce.simprefrozen.tavg-u-hxy-simp.mon.GLB", + "seaIce.simpthick.tavg-u-hxy-si.day.GLB", + "seaIce.simpthick.tavg-u-hxy-simp.mon.GLB", + "seaIce.sirdgconc.tavg-u-hxy-si.day.GLB", + "seaIce.sisali.tavg-u-hxy-si.day.GLB", + "seaIce.sisali.tavg-u-hxy-si.mon.GLB", + "seaIce.sisaltmass.tavg-u-hxy-si.day.GLB", + "seaIce.sishearvel.tpt-u-hxy-si.mon.GLB", + "seaIce.sisnmass.tavg-u-hm-u.day.NH", + "seaIce.sisnmass.tavg-u-hm-u.day.SH", + "seaIce.sitempbot.tavg-u-hxy-si.day.GLB", + "seaIce.sitempbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sitempsnic.tavg-u-hxy-si.day.GLB", + "seaIce.sithick.tavg-u-hxy-sir.day.GLB", + "seaIce.sithick.tavg-u-hxy-sir.mon.GLB", + "seaIce.sivol.tavg-u-hm-u.day.NH", + "seaIce.sivol.tavg-u-hm-u.day.SH" + ], + "Low": [ + "aerosol.abs550aer.tavg-u-hxy-u.mon.GLB", + "atmosChem.flashrate.tavg-u-hxy-u.mon.GLB", + "ocean.difmxybo.tavg-ol-hxy-sea.yr.GLB", + "ocean.difmxylo.tavg-ol-hxy-sea.yr.GLB", + "ocean.diftrblo.tavg-ol-hxy-sea.yr.GLB", + "ocean.diftrelo.tavg-ol-hxy-sea.yr.GLB", + "ocean.difvho.tavg-ol-hxy-sea.yr.GLB", + "ocean.difvso.tavg-ol-hxy-sea.yr.GLB", + "ocean.dispkexyfo.tavg-u-hxy-sea.yr.GLB", + "ocean.dxto.ti-u-hxy-u.fx.GLB", + "ocean.dxuo.ti-u-hxy-u.fx.GLB", + "ocean.dxvo.ti-u-hxy-u.fx.GLB", + "ocean.dyto.ti-u-hxy-u.fx.GLB", + "ocean.dyuo.ti-u-hxy-u.fx.GLB", + "ocean.dyvo.ti-u-hxy-u.fx.GLB", + "ocean.mlotstsq.tavg-u-hxy-sea.mon.GLB", + "ocean.msftmmpa.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftmmpa.tavg-rho-hyb-sea.mon.GLB", + "ocean.msftmsmpa.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftypa.tavg-ol-ht-sea.mon.GLB", + "ocean.msftypa.tavg-rho-ht-sea.mon.GLB", + "ocean.ocontempdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontempmint.tavg-u-hxy-sea.yr.GLB", + "ocean.ocontemppadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemppmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemppsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemprmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemptend.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottempdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottempmint.tavg-u-hxy-sea.yr.GLB", + "ocean.opottemppadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemppmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemppsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemprmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemptend.tavg-ol-hxy-sea.dec.GLB", + "ocean.osaltdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpsmadvect.tavg-ol-hxy-sea.mon.GLB", + "ocean.osaltpsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltrmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osalttend.tavg-ol-hxy-sea.yr.GLB", + "ocean.rsdoabsorb.tavg-ol-hxy-sea.yr.GLB", + "ocean.somint.tavg-u-hxy-sea.yr.GLB", + "ocean.sossq.tavg-u-hxy-sea.mon.GLB", + "ocean.thkcelluo.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcellvo.tavg-ol-hxy-sea.mon.GLB", + "ocean.tnpeo.tavg-u-hxy-sea.yr.GLB", + "ocean.tossq.tavg-u-hxy-sea.mon.GLB" + ] + }, + "scenariomip17": { + "Core": [ + "atmos.areacella.ti-u-hxy-u.fx.GLB", + "atmos.cl.tavg-al-hxy-u.mon.GLB", + "atmos.cli.tavg-al-hxy-u.mon.GLB", + "atmos.clivi.tavg-u-hxy-u.mon.GLB", + "atmos.clt.tavg-u-hxy-u.day.GLB", + "atmos.clt.tavg-u-hxy-u.mon.GLB", + "atmos.clw.tavg-al-hxy-u.mon.GLB", + "atmos.clwvi.tavg-u-hxy-u.mon.GLB", + "atmos.evspsbl.tavg-u-hxy-u.mon.GLB", + "atmos.hfls.tavg-u-hxy-u.mon.GLB", + "atmos.hfss.tavg-u-hxy-u.mon.GLB", + "atmos.hur.tavg-p19-hxy-air.mon.GLB", + "atmos.hur.tavg-p19-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.6hr.GLB", + "atmos.hurs.tavg-h2m-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.mon.GLB", + "atmos.hus.tavg-p19-hxy-u.day.GLB", + "atmos.hus.tavg-p19-hxy-u.mon.GLB", + "atmos.huss.tavg-h2m-hxy-u.day.GLB", + "atmos.huss.tavg-h2m-hxy-u.mon.GLB", + "atmos.huss.tpt-h2m-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.1hr.GLB", + "atmos.pr.tavg-u-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.day.GLB", + "atmos.pr.tavg-u-hxy-u.mon.GLB", + "atmos.prc.tavg-u-hxy-u.mon.GLB", + "atmos.prsn.tavg-u-hxy-u.mon.GLB", + "atmos.prw.tavg-u-hxy-u.mon.GLB", + "atmos.ps.tavg-u-hxy-u.day.GLB", + "atmos.ps.tavg-u-hxy-u.mon.GLB", + "atmos.psl.tavg-u-hxy-u.day.GLB", + "atmos.psl.tavg-u-hxy-u.mon.GLB", + "atmos.rlds.tavg-u-hxy-u.mon.GLB", + "atmos.rldscs.tavg-u-hxy-u.mon.GLB", + "atmos.rlus.tavg-u-hxy-u.mon.GLB", + "atmos.rluscs.tavg-u-hxy-u.mon.GLB", + "atmos.rlut.tavg-u-hxy-u.mon.GLB", + "atmos.rlutcs.tavg-u-hxy-u.mon.GLB", + "atmos.rsds.tavg-u-hxy-u.day.GLB", + "atmos.rsds.tavg-u-hxy-u.mon.GLB", + "atmos.rsdscs.tavg-u-hxy-u.mon.GLB", + "atmos.rsdt.tavg-u-hxy-u.mon.GLB", + "atmos.rsus.tavg-u-hxy-u.mon.GLB", + "atmos.rsuscs.tavg-u-hxy-u.mon.GLB", + "atmos.rsut.tavg-u-hxy-u.mon.GLB", + "atmos.rsutcs.tavg-u-hxy-u.mon.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.day.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.mon.GLB", + "atmos.sftlf.ti-u-hxy-u.fx.GLB", + "atmos.ta.tavg-p19-hxy-air.day.GLB", + "atmos.ta.tavg-p19-hxy-air.mon.GLB", + "atmos.ta.tpt-p3-hxy-air.6hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.day.GLB", + "atmos.tas.tavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tmax-h2m-hxy-u.day.GLB", + "atmos.tas.tmaxavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tmin-h2m-hxy-u.day.GLB", + "atmos.tas.tminavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tpt-h2m-hxy-u.3hr.GLB", + "atmos.tauu.tavg-u-hxy-u.mon.GLB", + "atmos.tauv.tavg-u-hxy-u.mon.GLB", + "atmos.ts.tavg-u-hxy-u.mon.GLB", + "atmos.ua.tavg-p19-hxy-air.day.GLB", + "atmos.ua.tavg-p19-hxy-air.mon.GLB", + "atmos.ua.tpt-p3-hxy-air.6hr.GLB", + "atmos.uas.tavg-h10m-hxy-u.day.GLB", + "atmos.uas.tavg-h10m-hxy-u.mon.GLB", + "atmos.uas.tpt-h10m-hxy-u.3hr.GLB", + "atmos.va.tavg-p19-hxy-air.day.GLB", + "atmos.va.tavg-p19-hxy-air.mon.GLB", + "atmos.va.tpt-p3-hxy-air.6hr.GLB", + "atmos.vas.tavg-h10m-hxy-u.day.GLB", + "atmos.vas.tavg-h10m-hxy-u.mon.GLB", + "atmos.vas.tpt-h10m-hxy-u.3hr.GLB", + "atmos.wap.tavg-p19-hxy-air.mon.GLB", + "atmos.wap.tavg-p19-hxy-u.day.GLB", + "atmos.zg.tavg-p19-hxy-air.day.GLB", + "atmos.zg.tavg-p19-hxy-air.mon.GLB", + "land.evspsblsoi.tavg-u-hxy-lnd.mon.GLB", + "land.evspsblveg.tavg-u-hxy-lnd.mon.GLB", + "land.lai.tavg-u-hxy-lnd.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.mon.GLB", + "land.mrros.tavg-u-hxy-lnd.mon.GLB", + "land.mrso.tavg-u-hxy-lnd.mon.GLB", + "land.mrsofc.ti-u-hxy-lnd.fx.GLB", + "land.mrsol.tavg-d10cm-hxy-lnd.mon.GLB", + "land.orog.ti-u-hxy-u.fx.GLB", + "land.rootd.ti-u-hxy-lnd.fx.GLB", + "land.sftgif.ti-u-hxy-u.fx.GLB", + "land.slthick.ti-sl-hxy-lnd.fx.GLB", + "landIce.mrfso.tavg-u-hxy-lnd.mon.GLB", + "landIce.snc.tavg-u-hxy-lnd.mon.GLB", + "landIce.snw.tavg-u-hxy-lnd.mon.GLB", + "ocean.areacello.ti-u-hxy-u.fx.GLB", + "ocean.basin.ti-u-hxy-u.fx.GLB", + "ocean.bigthetao.tavg-ol-hxy-sea.mon.GLB", + "ocean.deptho.ti-u-hxy-sea.fx.GLB", + "ocean.hfds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfgeou.ti-u-hxy-sea.fx.GLB", + "ocean.masscello.tavg-ol-hxy-sea.mon.GLB", + "ocean.masscello.ti-ol-hxy-sea.fx.GLB", + "ocean.mlotst.tavg-u-hxy-sea.mon.GLB", + "ocean.sftof.ti-u-hxy-u.fx.GLB", + "ocean.so.tavg-ol-hxy-sea.mon.GLB", + "ocean.sos.tavg-u-hxy-sea.day.GLB", + "ocean.sos.tavg-u-hxy-sea.mon.GLB", + "ocean.tauuo.tavg-u-hxy-sea.mon.GLB", + "ocean.tauvo.tavg-u-hxy-sea.mon.GLB", + "ocean.thetao.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcello.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcello.ti-ol-hxy-sea.fx.GLB", + "ocean.tos.tavg-u-hxy-sea.day.GLB", + "ocean.tos.tavg-u-hxy-sea.mon.GLB", + "ocean.umo.tavg-ol-hxy-sea.mon.GLB", + "ocean.uo.tavg-ol-hxy-sea.mon.GLB", + "ocean.vmo.tavg-ol-hxy-sea.mon.GLB", + "ocean.vo.tavg-ol-hxy-sea.mon.GLB", + "ocean.wmo.tavg-ol-hxy-sea.mon.GLB", + "ocean.wo.tavg-ol-hxy-sea.mon.GLB", + "ocean.zos.tavg-u-hxy-sea.day.GLB", + "ocean.zos.tavg-u-hxy-sea.mon.GLB", + "ocean.zostoga.tavg-u-hm-sea.mon.GLB", + "seaIce.siconc.tavg-u-hxy-u.day.GLB", + "seaIce.siconc.tavg-u-hxy-u.mon.GLB", + "seaIce.simass.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-si.mon.GLB", + "seaIce.sitimefrac.tavg-u-hxy-sea.mon.GLB", + "seaIce.siu.tavg-u-hxy-si.mon.GLB", + "seaIce.siv.tavg-u-hxy-si.mon.GLB", + "seaIce.snd.tavg-u-hxy-sn.mon.GLB", + "seaIce.ts.tavg-u-hxy-si.mon.GLB" + ], + "High": [ + "aerosol.depdust.tavg-u-hxy-u.mon.GLB", + "atmos.cl.tavg-al-hxy-u.day.GLB", + "atmos.clt.tavg-u-hxy-u.1hr.30S-90S", + "atmos.co2.tavg-h2m-hxy-u.mon.GLB", + "atmos.co2mass.tavg-u-hm-u.mon.GLB", + "atmos.epfy.tavg-p39-hy-air.day.GLB", + "atmos.epfy.tavg-p39-hy-air.mon.GLB", + "atmos.epfz.tavg-p39-hy-air.day.GLB", + "atmos.epfz.tavg-p39-hy-air.mon.GLB", + "atmos.evspsbl.tavg-u-hxy-lnd.day.GLB", + "atmos.hfls.tavg-u-hxy-u.day.GLB", + "atmos.hfss.tavg-u-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.1hr.30S-90S", + "atmos.huss.tavg-h2m-hxy-u.6hr.GLB", + "atmos.intuadse.tavg-u-hxy-u.day.GLB", + "atmos.intuadse.tavg-u-hxy-u.mon.GLB", + "atmos.intuaw.tavg-u-hxy-u.day.GLB", + "atmos.intuaw.tavg-u-hxy-u.mon.GLB", + "atmos.intvadse.tavg-u-hxy-u.day.GLB", + "atmos.intvadse.tavg-u-hxy-u.mon.GLB", + "atmos.intvaw.tavg-u-hxy-u.day.GLB", + "atmos.intvaw.tavg-u-hxy-u.mon.GLB", + "atmos.pfull.tavg-al-hxy-u.day.GLB", + "atmos.pr.tavg-u-hxy-u.1hr.30S-90S", + "atmos.pr17O.tavg-u-hxy-u.mon.GLB", + "atmos.pr18O.tavg-u-hxy-u.mon.GLB", + "atmos.pr2h.tavg-u-hxy-u.mon.GLB", + "atmos.prc.tavg-u-hxy-u.day.GLB", + "atmos.prra.tavg-u-hxy-lnd.day.GLB", + "atmos.prra.tavg-u-hxy-u.6hr.GLB", + "atmos.prra.tavg-u-hxy-u.mon.GLB", + "atmos.prsn.tavg-u-hxy-u.6hr.GLB", + "atmos.prsn.tavg-u-hxy-u.day.GLB", + "atmos.prsn18O.tavg-u-hxy-u.mon.GLB", + "atmos.prsn2h.tavg-u-hxy-u.mon.GLB", + "atmos.ps.tavg-u-hxy-u.6hr.GLB", + "atmos.ps.tpt-u-hxy-u.1hr.30S-90S", + "atmos.psl.tpt-u-hxy-u.1hr.GLB", + "atmos.rlds.tavg-u-hxy-u.1hr.30S-90S", + "atmos.rlds.tavg-u-hxy-u.6hr.GLB", + "atmos.rlds.tavg-u-hxy-u.day.GLB", + "atmos.rlus.tavg-u-hxy-u.day.GLB", + "atmos.rlut.tavg-u-hxy-u.day.GLB", + "atmos.rsds.tavg-u-hxy-u.1hr.30S-90S", + "atmos.rsds.tavg-u-hxy-u.6hr.GLB", + "atmos.rsdt.tavg-u-hxy-u.day.GLB", + "atmos.rsus.tavg-u-hxy-u.day.GLB", + "atmos.rsut.tavg-u-hxy-u.day.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.1hr.30S-90S", + "atmos.sfcWind.tavg-h10m-hxy-u.6hr.GLB", + "atmos.ta.tavg-p39-hy-air.day.GLB", + "atmos.ta.tavg-p39-hy-air.mon.GLB", + "atmos.tas.tavg-h2m-hxy-u.6hr.GLB", + "atmos.tauu.tavg-u-hxy-u.day.GLB", + "atmos.tauunoegw.tavg-p39-hy-air.day.GLB", + "atmos.tauunowgw.tavg-p39-hy-air.day.GLB", + "atmos.tauuogw.tavg-p39-hy-air.day.GLB", + "atmos.tauv.tavg-u-hxy-u.day.GLB", + "atmos.tauvnogw.tavg-p39-hy-air.day.GLB", + "atmos.tauvogw.tavg-p39-hy-air.day.GLB", + "atmos.tdps.tavg-h2m-hxy-u.mon.GLB", + "atmos.tntmp.tavg-p39-hy-air.day.GLB", + "atmos.tntmp.tavg-p39-hy-air.mon.GLB", + "atmos.tntrl.tavg-p39-hy-air.day.GLB", + "atmos.tntrl.tavg-p39-hy-air.mon.GLB", + "atmos.tntrs.tavg-p39-hy-air.day.GLB", + "atmos.tntrs.tavg-p39-hy-air.mon.GLB", + "atmos.ts.tavg-u-hxy-u.6hr.GLB", + "atmos.ts.tavg-u-hxy-u.day.GLB", + "atmos.ua.tavg-p39-hy-air.day.GLB", + "atmos.ua.tavg-p39-hy-air.mon.GLB", + "atmos.ua.tpt-h100m-hxy-u.1hr.GLB", + "atmos.uas.tpt-h10m-hxy-u.1hr.GLB", + "atmos.utendepfd.tavg-p39-hy-air.day.GLB", + "atmos.utendepfd.tavg-p39-hy-air.mon.GLB", + "atmos.utendnogw.tavg-p39-hy-air.day.GLB", + "atmos.utendnogw.tavg-p39-hy-air.mon.GLB", + "atmos.utendogw.tavg-p39-hy-air.day.GLB", + "atmos.utendogw.tavg-p39-hy-air.mon.GLB", + "atmos.utendvtem.tavg-p39-hy-air.day.GLB", + "atmos.utendwtem.tavg-p39-hy-air.day.GLB", + "atmos.va.tpt-h100m-hxy-u.1hr.GLB", + "atmos.vas.tpt-h10m-hxy-u.1hr.GLB", + "atmos.vtem.tavg-p39-hy-air.day.GLB", + "atmos.vtem.tavg-p39-hy-air.mon.GLB", + "atmos.wtem.tavg-p39-hy-air.day.GLB", + "atmos.wtem.tavg-p39-hy-air.mon.GLB", + "atmos.zg.tavg-p39-hy-air.day.GLB", + "atmos.zg.tavg-p39-hy-air.mon.GLB", + "atmosChem.meanage.tavg-p39-hy-air.mon.GLB", + "land.burntFractionAll.tavg-u-hxy-u.mon.GLB", + "land.cSoil.tavg-sl-hxy-lnd.mon.GLB", + "land.cSoil.tavg-u-hxy-lnd.mon.GLB", + "land.depthl.ti-u-hxy-u.fx.GLB", + "land.depthsl.ti-u-hxy-u.fx.GLB", + "land.evspsblpot.tavg-u-hxy-lnd.day.GLB", + "land.evspsblpot.tavg-u-hxy-lnd.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.day.GLB", + "land.mrros.tavg-u-hxy-lnd.day.GLB", + "land.mrsfl.tavg-sl-hxy-lnd.day.GLB", + "land.mrsfl.tavg-sl-hxy-lnd.mon.GLB", + "land.mrsll.tavg-sl-hxy-lnd.day.GLB", + "land.mrsll.tavg-sl-hxy-lnd.mon.GLB", + "land.mrso.tavg-u-hxy-lnd.day.GLB", + "land.mrsol.tavg-d10cm-hxy-lnd.day.GLB", + "land.mrsol.tavg-sl-hxy-lnd.day.GLB", + "land.mrsol.tavg-sl-hxy-lnd.mon.GLB", + "land.orog.ti-u-hxy-u.fx.30S-90S", + "land.rsds.tavg-u-hxy-lnd.mon.GLB", + "land.rsds.tavg-u-hxy-sn.mon.GLB", + "land.rsus.tavg-u-hxy-lnd.mon.GLB", + "land.rsus.tavg-u-hxy-sn.mon.GLB", + "land.sftgif.tavg-u-hxy-u.mon.GLB", + "land.sftlaf.ti-u-hxy-u.fx.GLB", + "land.tas.tavg-u-hxy-u.1hr.30S-90S", + "land.tsl.tavg-sl-hxy-lnd.day.GLB", + "land.tsl.tavg-sl-hxy-lnd.mon.GLB", + "landIce.acabf.tavg-u-hxy-is.mon.GLB", + "landIce.hfls.tavg-u-hxy-is.mon.GLB", + "landIce.hfss.tavg-u-hxy-is.mon.GLB", + "landIce.icem.tavg-u-hxy-is.mon.GLB", + "landIce.litemptop.tavg-u-hxy-is.mon.GLB", + "landIce.lithk.ti-u-hxy-u.fx.GLB", + "landIce.mrro.tavg-u-hxy-is.mon.GLB", + "landIce.orog.tavg-u-hxy-is.mon.GLB", + "landIce.prra.tavg-u-hxy-is.mon.GLB", + "landIce.prsn.tavg-u-hxy-is.mon.GLB", + "landIce.rlds.tavg-u-hxy-is.mon.GLB", + "landIce.rlus.tavg-u-hxy-is.mon.GLB", + "landIce.rsds.tavg-u-hxy-is.mon.GLB", + "landIce.rsus.tavg-u-hxy-is.mon.GLB", + "landIce.sbl.tavg-u-hxy-is.mon.GLB", + "landIce.sbl.tavg-u-hxy-lnd.mon.GLB", + "landIce.sbl.tavg-u-hxy-u.mon.GLB", + "landIce.sftflf.tavg-u-hxy-u.mon.GLB", + "landIce.sftflf.ti-u-hxy-u.fx.GLB", + "landIce.sftgrf.tavg-u-hxy-u.mon.GLB", + "landIce.sftgrf.ti-u-hxy-u.fx.GLB", + "landIce.snc.tavg-u-hxy-is.mon.GLB", + "landIce.snd.tavg-u-hxy-lnd.mon.GLB", + "landIce.snicem.tavg-u-hxy-is.mon.GLB", + "landIce.snm.tavg-u-hxy-is.mon.GLB", + "landIce.snm.tavg-u-hxy-lnd.mon.GLB", + "landIce.snrefr.tavg-u-hxy-is.mon.GLB", + "landIce.tas.tavg-u-hxy-is.mon.GLB", + "landIce.ts.tavg-u-hxy-is.mon.GLB", + "landIce.tsn.tavg-u-hxy-is.mon.GLB", + "landIce.tsn.tavg-u-hxy-lnd.mon.GLB", + "ocean.absscint.tavg-op4-hxy-sea.mon.GLB", + "ocean.agessc.tavg-ol-hxy-sea.mon.GLB", + "ocean.bigthetao.tavg-ol-hm-sea.mon.GLB", + "ocean.bigthetao.tavg-ol-hxy-sea.dec.GLB", + "ocean.bigthetao.tavg-op20bar-hxy-sea.day.GLB", + "ocean.chcint.tavg-op4-hxy-sea.mon.GLB", + "ocean.ficeberg.tavg-u-hxy-sea.mon.GLB", + "ocean.flandice.tavg-u-hxy-sea.mon.GLB", + "ocean.hfbasin.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpmadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpmdiff.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpsmadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfgeou.tavg-u-hxy-sea.mon.GLB", + "ocean.hfx.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfx.tavg-u-hxy-sea.day.GLB", + "ocean.hfx.tavg-u-hxy-sea.mon.GLB", + "ocean.hfy.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfy.tavg-u-hxy-sea.day.GLB", + "ocean.hfy.tavg-u-hxy-sea.mon.GLB", + "ocean.htovgyre.tavg-u-hyb-sea.mon.GLB", + "ocean.htovovrt.tavg-u-hyb-sea.mon.GLB", + "ocean.masscello.tavg-ol-hxy-sea.dec.GLB", + "ocean.masso.tavg-u-hm-sea.dec.GLB", + "ocean.masso.tavg-u-hm-sea.mon.GLB", + "ocean.mlotst.tavg-u-hxy-sea.day.GLB", + "ocean.mlotst.tmax-u-hxy-sea.mon.GLB", + "ocean.mlotst.tmin-u-hxy-sea.mon.GLB", + "ocean.mpw.tavg-u-hxy-sea.mon.GLB", + "ocean.mpw.tpt-u-hxy-sea.3hr.GLB", + "ocean.mpwswell.tavg-u-hxy-sea.mon.GLB", + "ocean.mpwswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.mpwwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.mpwwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.msftbarot.tavg-u-hxy-sea.mon.GLB", + "ocean.msftm.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftm.tavg-rho-hyb-sea.mon.GLB", + "ocean.msfty.tavg-ol-ht-sea.mon.GLB", + "ocean.msfty.tavg-rho-ht-sea.mon.GLB", + "ocean.obvfsq.tavg-ol-hxy-sea.mon.GLB", + "ocean.opottemptend.tavg-ol-hxy-sea.yr.GLB", + "ocean.pbo.tavg-u-hxy-sea.mon.GLB", + "ocean.pfscint.tavg-op4-hxy-sea.mon.GLB", + "ocean.phcint.tavg-op4-hxy-sea.mon.GLB", + "ocean.pso.tavg-u-hxy-sea.mon.GLB", + "ocean.rsds.tavg-u-hxy-ifs.mon.GLB", + "ocean.rsus.tavg-u-hxy-ifs.mon.GLB", + "ocean.scint.tavg-op4-hxy-sea.mon.GLB", + "ocean.sduo.tavg-u-hxy-sea.mon.GLB", + "ocean.sduo.tpt-u-hxy-sea.3hr.GLB", + "ocean.sdvo.tavg-u-hxy-sea.mon.GLB", + "ocean.sdvo.tpt-u-hxy-sea.3hr.GLB", + "ocean.sfx.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfx.tavg-u-hxy-sea.mon.GLB", + "ocean.sfy.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfy.tavg-u-hxy-sea.mon.GLB", + "ocean.sltbasin.tavg-u-hyb-sea.mon.GLB", + "ocean.sltovgyre.tavg-u-hyb-sea.mon.GLB", + "ocean.sltovovrt.tavg-u-hyb-sea.mon.GLB", + "ocean.so.tavg-ol-hm-sea.mon.GLB", + "ocean.so.tavg-ol-hxy-sea.dec.GLB", + "ocean.sob.tavg-u-hxy-sea.mon.GLB", + "ocean.sos.tavg-u-hm-sea.mon.GLB", + "ocean.sw17O.tavg-ol-hxy-sea.mon.GLB", + "ocean.sw18O.tavg-ol-hxy-sea.mon.GLB", + "ocean.sw2H.tavg-ol-hxy-sea.mon.GLB", + "ocean.swh.tavg-u-hxy-sea.mon.GLB", + "ocean.swh.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhmax.tmax-u-hxy-sea.mon.GLB", + "ocean.swhmax.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhswell.tavg-u-hxy-sea.mon.GLB", + "ocean.swhswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.swhwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.tauuo.tavg-u-hxy-sea.dec.GLB", + "ocean.tauvo.tavg-u-hxy-sea.dec.GLB", + "ocean.thetao.tavg-ol-hm-sea.mon.GLB", + "ocean.thetao.tavg-ol-hxy-sea.dec.GLB", + "ocean.thetao.tavg-op20bar-hxy-sea.day.GLB", + "ocean.thkcello.tavg-ol-hxy-sea.dec.GLB", + "ocean.tob.tavg-u-hxy-sea.mon.GLB", + "ocean.tos.tavg-u-hm-sea.mon.GLB", + "ocean.tos.tpt-u-hxy-sea.3hr.GLB", + "ocean.tossq.tavg-u-hxy-sea.day.GLB", + "ocean.uos.tavg-u-hxy-sea.day.GLB", + "ocean.volcello.tavg-ol-hxy-sea.dec.GLB", + "ocean.volcello.tavg-ol-hxy-sea.mon.GLB", + "ocean.volcello.tavg-ol-hxy-sea.yr.GLB", + "ocean.volcello.ti-ol-hxy-sea.fx.GLB", + "ocean.volo.tavg-u-hm-sea.dec.GLB", + "ocean.volo.tavg-u-hm-sea.mon.GLB", + "ocean.vos.tavg-u-hxy-sea.day.GLB", + "ocean.wdir.tavg-u-hxy-sea.mon.GLB", + "ocean.wdir.tpt-u-hxy-sea.3hr.GLB", + "ocean.wdirswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wdirswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wdirwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wdirwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.wfcorr.tavg-u-hxy-sea.mon.GLB", + "ocean.wfo.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdir.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdir.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpdirswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdirswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpdirwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdirwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpp.tavg-u-hxy-sea.mon.GLB", + "ocean.wpp.tpt-u-hxy-sea.3hr.GLB", + "ocean.wppswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wppswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wppwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wppwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.zossq.tavg-u-hxy-sea.mon.GLB", + "ocean.zostoga.tavg-u-hm-sea.day.GLB", + "seaIce.evspsbl.tavg-u-hxy-si.mon.GLB", + "seaIce.prra.tavg-u-hxy-si.mon.GLB", + "seaIce.prsn.tavg-u-hxy-si.mon.GLB", + "seaIce.rlds.tavg-u-hxy-si.day.GLB", + "seaIce.rlds.tavg-u-hxy-si.mon.GLB", + "seaIce.rlus.tavg-u-hxy-si.day.GLB", + "seaIce.rlus.tavg-u-hxy-si.mon.GLB", + "seaIce.rsds.tavg-u-hxy-si.day.GLB", + "seaIce.rsds.tavg-u-hxy-si.mon.GLB", + "seaIce.rsus.tavg-u-hxy-si.day.GLB", + "seaIce.rsus.tavg-u-hxy-si.mon.GLB", + "seaIce.sbl.tavg-u-hxy-si.mon.GLB", + "seaIce.siage.tavg-u-hxy-si.day.GLB", + "seaIce.siarea.tavg-u-hm-u.mon.NH", + "seaIce.siarea.tavg-u-hm-u.mon.SH", + "seaIce.siareaacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.siconca.tavg-u-hxy-u.day.GLB", + "seaIce.siconca.tavg-u-hxy-u.mon.GLB", + "seaIce.sidconcdyn.tavg-u-hxy-sea.mon.GLB", + "seaIce.sidconcth.tavg-u-hxy-sea.mon.GLB", + "seaIce.sidmassdyn.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthsi.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthwat.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmeltbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmeltlat.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmelttop.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassth.tavg-u-hxy-si.mon.GLB", + "seaIce.sieqthick.tavg-u-hxy-si.mon.GLB", + "seaIce.siextent.tavg-u-hm-u.mon.NH", + "seaIce.siextent.tavg-u-hm-u.mon.SH", + "seaIce.siflcondbot.tavg-u-hxy-si.day.GLB", + "seaIce.siflcondbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflcondtop.tavg-u-hxy-si.day.GLB", + "seaIce.siflcondtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sifllattop.tavg-u-hxy-si.day.GLB", + "seaIce.sifllattop.tavg-u-hxy-si.mon.GLB", + "seaIce.siflsensbot.tavg-u-hxy-si.day.GLB", + "seaIce.siflsensbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflsenstop.tavg-u-hxy-si.day.GLB", + "seaIce.siflsenstop.tavg-u-hxy-si.mon.GLB", + "seaIce.siflswdbot.tavg-u-hxy-si.day.GLB", + "seaIce.siflswdbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sihc.tavg-u-hxy-sea.day.GLB", + "seaIce.sihc.tavg-u-hxy-sea.mon.GLB", + "seaIce.siitdconc.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdsnconc.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdsnthick.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdthick.tavg-u-hxy-si.mon.GLB", + "seaIce.simassacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.simpconc.tavg-u-hxy-si.mon.GLB", + "seaIce.sirdgconc.tavg-u-hxy-si.mon.GLB", + "seaIce.sisaltmass.tavg-u-hxy-si.mon.GLB", + "seaIce.sisndmassdyn.tavg-u-hxy-si.mon.GLB", + "seaIce.sisndmasssi.tavg-u-hxy-si.mon.GLB", + "seaIce.sisndmasswind.tavg-u-hxy-si.mon.GLB", + "seaIce.sisnhc.tavg-u-hxy-si.day.GLB", + "seaIce.sisnhc.tavg-u-hxy-si.mon.GLB", + "seaIce.sisnmass.tavg-u-hm-u.mon.NH", + "seaIce.sisnmass.tavg-u-hm-u.mon.SH", + "seaIce.sisnmassacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.sispeed.tavg-u-hxy-si.day.GLB", + "seaIce.sispeed.tavg-u-hxy-si.mon.GLB", + "seaIce.sistressave.tpt-u-hxy-si.mon.GLB", + "seaIce.sistressmax.tpt-u-hxy-si.mon.GLB", + "seaIce.sistrxdtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sistrxubot.tavg-u-hxy-si.mon.GLB", + "seaIce.sistrydtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sistryubot.tavg-u-hxy-si.mon.GLB", + "seaIce.sitempsnic.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-si.day.GLB", + "seaIce.sitimefrac.tavg-u-hxy-sea.day.GLB", + "seaIce.siu.tavg-u-hxy-si.day.GLB", + "seaIce.siv.tavg-u-hxy-si.day.GLB", + "seaIce.sivol.tavg-u-hm-u.mon.NH", + "seaIce.sivol.tavg-u-hm-u.mon.SH", + "seaIce.snc.tavg-u-hxy-si.mon.GLB", + "seaIce.snd.tavg-u-hxy-sn.day.GLB", + "seaIce.snm.tavg-u-hxy-si.mon.GLB", + "seaIce.snw.tavg-u-hxy-si.mon.GLB", + "seaIce.ts.tavg-u-hxy-si.day.GLB" + ], + "Medium": [ + "atmos.hfls.tavg-u-hxy-is.mon.ATA", + "atmos.hfls.tavg-u-hxy-is.mon.GRL", + "atmos.hfss.tavg-u-hxy-is.mon.ATA", + "atmos.hfss.tavg-u-hxy-is.mon.GRL", + "atmos.prra.tavg-u-hxy-is.mon.ATA", + "atmos.prra.tavg-u-hxy-is.mon.GRL", + "atmos.prsn.tavg-u-hxy-is.mon.ATA", + "atmos.prsn.tavg-u-hxy-is.mon.GRL", + "atmos.psitem.tavg-p39-hy-air.day.GLB", + "atmos.rlds.tavg-u-hxy-is.mon.ATA", + "atmos.rlds.tavg-u-hxy-is.mon.GRL", + "atmos.rlus.tavg-u-hxy-is.mon.ATA", + "atmos.rlus.tavg-u-hxy-is.mon.GRL", + "atmos.rsds.tavg-u-hxy-is.mon.ATA", + "atmos.rsds.tavg-u-hxy-is.mon.GRL", + "atmos.rsus.tavg-u-hxy-is.mon.ATA", + "atmos.rsus.tavg-u-hxy-is.mon.GRL", + "atmos.sfcWind.tmax-h10m-hxy-u.day.GLB", + "atmos.tas.tavg-h2m-hm-is.mon.ATA", + "atmos.tas.tavg-h2m-hm-is.mon.GRL", + "atmos.tauunoegw.tavg-p19-hxy-air.mon.GLB", + "atmos.tauunowgw.tavg-p19-hxy-air.mon.GLB", + "atmos.tauuogw.tavg-p19-hxy-air.mon.GLB", + "atmos.tauupbl.tavg-u-hxy-u.day.GLB", + "atmos.tauvnogw.tavg-p19-hxy-air.mon.GLB", + "atmos.tauvogw.tavg-p19-hxy-air.mon.GLB", + "atmos.tauvpbl.tavg-u-hxy-u.day.GLB", + "atmos.tntc.tavg-p39-hy-air.mon.GLB", + "atmos.tntnogw.tavg-p39-hy-air.mon.GLB", + "atmos.tntogw.tavg-p39-hy-air.mon.GLB", + "atmos.tntrlcs.tavg-p39-hy-air.mon.GLB", + "atmos.tntrscs.tavg-p39-hy-air.mon.GLB", + "atmos.tntscp.tavg-p39-hy-air.mon.GLB", + "atmos.ts.tavg-u-hxy-is.mon.ATA", + "atmos.ts.tavg-u-hxy-is.mon.GRL", + "atmos.utendnogw.tavg-p19-hxy-air.day.GLB", + "atmos.utendnogw.tavg-p19-hxy-air.mon.GLB", + "atmos.utendogw.tavg-p19-hxy-air.day.GLB", + "atmos.utendogw.tavg-p19-hxy-air.mon.GLB", + "atmos.vtendnogw.tavg-p19-hxy-air.day.GLB", + "atmos.vtendnogw.tavg-p19-hxy-air.mon.GLB", + "atmos.vtendogw.tavg-p19-hxy-air.day.GLB", + "atmos.vtendogw.tavg-p19-hxy-air.mon.GLB", + "atmosChem.flashrate.tavg-u-hxy-u.day.GLB", + "land.areacellg.ti-u-hxy-u.fx.ATA", + "land.areacellg.ti-u-hxy-u.fx.GRL", + "land.orog.tavg-u-hxy-is.mon.ATA", + "land.orog.tavg-u-hxy-is.mon.GRL", + "land.orog.tavg-u-hxy-is.yr.ATA", + "land.orog.tavg-u-hxy-is.yr.GRL", + "land.sftgif.tavg-u-hxy-u.yr.ATA", + "land.sftgif.tavg-u-hxy-u.yr.GRL", + "landIce.acabf.tavg-u-hxy-is.mon.ATA", + "landIce.acabf.tavg-u-hxy-is.mon.GRL", + "landIce.acabf.tavg-u-hxy-is.yr.ATA", + "landIce.acabf.tavg-u-hxy-is.yr.GRL", + "landIce.hfgeoubed.tavg-u-hxy-gis.yr.ATA", + "landIce.hfgeoubed.tavg-u-hxy-gis.yr.GRL", + "landIce.hfgeoubed.ti-u-hxy-gis.fx.ATA", + "landIce.hfgeoubed.ti-u-hxy-gis.fx.GRL", + "landIce.iareafl.tavg-u-hm-fis.yr.ATA", + "landIce.iareafl.tavg-u-hm-fis.yr.GRL", + "landIce.iareagr.tavg-u-hm-gis.yr.ATA", + "landIce.iareagr.tavg-u-hm-gis.yr.GRL", + "landIce.icem.tavg-u-hxy-is.mon.ATA", + "landIce.icem.tavg-u-hxy-is.mon.GRL", + "landIce.libmassbf.tavg-u-hxy-fis.mon.ATA", + "landIce.libmassbf.tavg-u-hxy-fis.mon.GRL", + "landIce.libmassbf.tavg-u-hxy-fis.yr.ATA", + "landIce.libmassbf.tavg-u-hxy-fis.yr.GRL", + "landIce.libmassbf.tavg-u-hxy-gis.mon.ATA", + "landIce.libmassbf.tavg-u-hxy-gis.mon.GRL", + "landIce.libmassbf.tavg-u-hxy-gis.yr.ATA", + "landIce.libmassbf.tavg-u-hxy-gis.yr.GRL", + "landIce.licalvf.tavg-u-hxy-is.mon.ATA", + "landIce.licalvf.tavg-u-hxy-is.mon.GRL", + "landIce.licalvf.tavg-u-hxy-is.yr.ATA", + "landIce.licalvf.tavg-u-hxy-is.yr.GRL", + "landIce.lifmassbf.tavg-u-hxy-is.mon.ATA", + "landIce.lifmassbf.tavg-u-hxy-is.mon.GRL", + "landIce.lifmassbf.tavg-u-hxy-is.yr.ATA", + "landIce.lifmassbf.tavg-u-hxy-is.yr.GRL", + "landIce.lim.tavg-u-hm-is.yr.ATA", + "landIce.lim.tavg-u-hm-is.yr.GRL", + "landIce.limnsw.tavg-u-hm-is.yr.ATA", + "landIce.limnsw.tavg-u-hm-is.yr.GRL", + "landIce.litempbot.tavg-u-hxy-fis.mon.ATA", + "landIce.litempbot.tavg-u-hxy-fis.mon.GRL", + "landIce.litempbot.tavg-u-hxy-fis.yr.ATA", + "landIce.litempbot.tavg-u-hxy-fis.yr.GRL", + "landIce.litempbot.tavg-u-hxy-gis.mon.ATA", + "landIce.litempbot.tavg-u-hxy-gis.mon.GRL", + "landIce.litempbot.tavg-u-hxy-gis.yr.ATA", + "landIce.litempbot.tavg-u-hxy-gis.yr.GRL", + "landIce.litemptop.tavg-u-hxy-is.mon.ATA", + "landIce.litemptop.tavg-u-hxy-is.mon.GRL", + "landIce.litemptop.tavg-u-hxy-is.yr.ATA", + "landIce.litemptop.tavg-u-hxy-is.yr.GRL", + "landIce.lithk.tavg-u-hxy-is.yr.ATA", + "landIce.lithk.tavg-u-hxy-is.yr.GRL", + "landIce.lithk.ti-u-hxy-is.fx.ATA", + "landIce.lithk.ti-u-hxy-is.fx.GRL", + "landIce.modelcellareai.tavg-u-hxy-u.yr.ATA", + "landIce.modelcellareai.tavg-u-hxy-u.yr.GRL", + "landIce.mrroLi.tavg-u-hxy-is.mon.ATA", + "landIce.mrroLi.tavg-u-hxy-is.mon.GRL", + "landIce.sbl.tavg-u-hxy-is.mon.ATA", + "landIce.sbl.tavg-u-hxy-is.mon.GRL", + "landIce.sftflf.tavg-u-hxy-u.yr.ATA", + "landIce.sftflf.tavg-u-hxy-u.yr.GRL", + "landIce.sftgrf.tavg-u-hxy-u.yr.ATA", + "landIce.sftgrf.tavg-u-hxy-u.yr.GRL", + "landIce.snc.tavg-u-hxy-is.mon.ATA", + "landIce.snc.tavg-u-hxy-is.mon.GRL", + "landIce.snc.tavg-u-hxy-is.yr.ATA", + "landIce.snc.tavg-u-hxy-is.yr.GRL", + "landIce.snicem.tavg-u-hxy-is.mon.ATA", + "landIce.snicem.tavg-u-hxy-is.mon.GRL", + "landIce.snm.tavg-u-hxy-is.mon.ATA", + "landIce.snm.tavg-u-hxy-is.mon.GRL", + "landIce.snrefr.tavg-u-hxy-is.mon.ATA", + "landIce.snrefr.tavg-u-hxy-is.mon.GRL", + "landIce.strbasemag.tavg-u-hxy-is.yr.ATA", + "landIce.strbasemag.tavg-u-hxy-is.yr.GRL", + "landIce.tendacabf.tavg-u-hm-is.yr.ATA", + "landIce.tendacabf.tavg-u-hm-is.yr.GRL", + "landIce.tendlibmassbf.tavg-u-hm-is.yr.ATA", + "landIce.tendlibmassbf.tavg-u-hm-is.yr.GRL", + "landIce.tendlicalvf.tavg-u-hm-is.yr.ATA", + "landIce.tendlicalvf.tavg-u-hm-is.yr.GRL", + "landIce.topg.tavg-u-hxy-gis.yr.ATA", + "landIce.topg.tavg-u-hxy-gis.yr.GRL", + "landIce.topg.ti-u-hxy-gis.fx.ATA", + "landIce.topg.ti-u-hxy-gis.fx.GRL", + "landIce.tsn.tavg-u-hxy-is.mon.ATA", + "landIce.tsn.tavg-u-hxy-is.mon.GRL", + "landIce.xvelbase.tavg-u-hxy-is.yr.ATA", + "landIce.xvelbase.tavg-u-hxy-is.yr.GRL", + "landIce.xvelmean.tavg-u-hxy-is.yr.ATA", + "landIce.xvelmean.tavg-u-hxy-is.yr.GRL", + "landIce.xvelsurf.tavg-u-hxy-is.yr.ATA", + "landIce.xvelsurf.tavg-u-hxy-is.yr.GRL", + "landIce.yvelbase.tavg-u-hxy-is.yr.ATA", + "landIce.yvelbase.tavg-u-hxy-is.yr.GRL", + "landIce.yvelmean.tavg-u-hxy-is.yr.ATA", + "landIce.yvelmean.tavg-u-hxy-is.yr.GRL", + "landIce.yvelsurf.tavg-u-hxy-is.yr.ATA", + "landIce.yvelsurf.tavg-u-hxy-is.yr.GRL", + "landIce.zvelbase.tavg-u-hxy-is.yr.ATA", + "landIce.zvelbase.tavg-u-hxy-is.yr.GRL", + "landIce.zvelsurf.tavg-u-hxy-is.yr.ATA", + "landIce.zvelsurf.tavg-u-hxy-is.yr.GRL", + "ocean.evspsbl.tavg-u-hxy-ifs.mon.GLB", + "ocean.ficeberg.tavg-ol-hxy-sea.mon.GLB", + "ocean.friver.tavg-u-hxy-sea.mon.GLB", + "ocean.hfacrossline.tavg-u-ht-sea.mon.GLB", + "ocean.hfevapds.tavg-u-hxy-ifs.mon.GLB", + "ocean.hfibthermds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfibthermds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfrainds.tavg-u-hxy-ifs.mon.GLB", + "ocean.hfrunoffds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfrunoffds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfsnthermds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfsnthermds.tavg-u-hxy-sea.mon.GLB", + "ocean.mfo.tavg-u-ht-sea.mon.GLB", + "ocean.sfacrossline.tavg-u-ht-sea.mon.GLB", + "ocean.sfdsi.tavg-u-hxy-sea.mon.GLB", + "ocean.sfriver.tavg-u-hxy-sea.mon.GLB", + "ocean.siflfwbot.tavg-u-hxy-sea.mon.GLB", + "ocean.so.tavg-ol-hxy-sea.day.GLB", + "ocean.tnkebto.tavg-u-hxy-sea.yr.GLB", + "ocean.vsf.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfcorr.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfevap.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfpr.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfriver.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfsit.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.arag.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.arag.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.calc.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.calc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chl.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.dissic.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.o2.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.ph.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.talk.tavg-ol-hxy-sea.mon.GLB", + "seaIce.sfdsi.tavg-u-hxy-si.mon.GLB", + "seaIce.siage.tavg-u-hxy-si.mon.GLB", + "seaIce.siarea.tavg-u-hm-u.day.NH", + "seaIce.siarea.tavg-u-hm-u.day.SH", + "seaIce.sicompstren.tavg-u-hxy-si.mon.GLB", + "seaIce.sidivvel.tpt-u-hxy-si.mon.GLB", + "seaIce.sidmasstranx.tavg-u-hxy-u.mon.GLB", + "seaIce.sidmasstrany.tavg-u-hxy-u.mon.GLB", + "seaIce.sidragbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidragtop.tavg-u-hxy-si.mon.GLB", + "seaIce.siextent.tavg-u-hm-u.day.NH", + "seaIce.siextent.tavg-u-hm-u.day.SH", + "seaIce.sifb.tavg-u-hxy-si.day.GLB", + "seaIce.sifb.tavg-u-hxy-si.mon.GLB", + "seaIce.siflfwbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflfwdrain.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcecoriolx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcecorioly.tavg-u-hxy-si.mon.GLB", + "seaIce.siforceintstrx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforceintstry.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcetiltx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcetilty.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdconc.tavg-u-hxy-si.day.GLB", + "seaIce.siitdsnconc.tavg-u-hxy-si.day.GLB", + "seaIce.siitdsnthick.tavg-u-hxy-si.day.GLB", + "seaIce.siitdthick.tavg-u-hxy-si.day.GLB", + "seaIce.simpconc.tavg-u-hxy-si.day.GLB", + "seaIce.simpeffconc.tavg-u-hxy-si.day.GLB", + "seaIce.simpeffconc.tavg-u-hxy-si.mon.GLB", + "seaIce.simprefrozen.tavg-u-hxy-simp.day.GLB", + "seaIce.simprefrozen.tavg-u-hxy-simp.mon.GLB", + "seaIce.simpthick.tavg-u-hxy-si.day.GLB", + "seaIce.simpthick.tavg-u-hxy-simp.mon.GLB", + "seaIce.sirdgconc.tavg-u-hxy-si.day.GLB", + "seaIce.sisali.tavg-u-hxy-si.day.GLB", + "seaIce.sisali.tavg-u-hxy-si.mon.GLB", + "seaIce.sisaltmass.tavg-u-hxy-si.day.GLB", + "seaIce.sishearvel.tpt-u-hxy-si.mon.GLB", + "seaIce.sisnmass.tavg-u-hm-u.day.NH", + "seaIce.sisnmass.tavg-u-hm-u.day.SH", + "seaIce.sitempbot.tavg-u-hxy-si.day.GLB", + "seaIce.sitempbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sitempsnic.tavg-u-hxy-si.day.GLB", + "seaIce.sithick.tavg-u-hxy-sir.day.GLB", + "seaIce.sithick.tavg-u-hxy-sir.mon.GLB", + "seaIce.sivol.tavg-u-hm-u.day.NH", + "seaIce.sivol.tavg-u-hm-u.day.SH" + ], + "Low": [ + "ocean.difmxybo.tavg-ol-hxy-sea.yr.GLB", + "ocean.difmxylo.tavg-ol-hxy-sea.yr.GLB", + "ocean.diftrblo.tavg-ol-hxy-sea.yr.GLB", + "ocean.diftrelo.tavg-ol-hxy-sea.yr.GLB", + "ocean.difvho.tavg-ol-hxy-sea.yr.GLB", + "ocean.difvso.tavg-ol-hxy-sea.yr.GLB", + "ocean.dispkexyfo.tavg-u-hxy-sea.yr.GLB", + "ocean.dxto.ti-u-hxy-u.fx.GLB", + "ocean.dxuo.ti-u-hxy-u.fx.GLB", + "ocean.dxvo.ti-u-hxy-u.fx.GLB", + "ocean.dyto.ti-u-hxy-u.fx.GLB", + "ocean.dyuo.ti-u-hxy-u.fx.GLB", + "ocean.dyvo.ti-u-hxy-u.fx.GLB", + "ocean.mlotstsq.tavg-u-hxy-sea.mon.GLB", + "ocean.msftmmpa.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftmmpa.tavg-rho-hyb-sea.mon.GLB", + "ocean.msftmsmpa.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftypa.tavg-ol-ht-sea.mon.GLB", + "ocean.msftypa.tavg-rho-ht-sea.mon.GLB", + "ocean.ocontempdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontempmint.tavg-u-hxy-sea.yr.GLB", + "ocean.ocontemppadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemppmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemppsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemprmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemptend.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottempdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottempmint.tavg-u-hxy-sea.yr.GLB", + "ocean.opottemppadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemppmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemppsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemprmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemptend.tavg-ol-hxy-sea.dec.GLB", + "ocean.osaltdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpsmadvect.tavg-ol-hxy-sea.mon.GLB", + "ocean.osaltpsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltrmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osalttend.tavg-ol-hxy-sea.yr.GLB", + "ocean.rsdoabsorb.tavg-ol-hxy-sea.yr.GLB", + "ocean.somint.tavg-u-hxy-sea.yr.GLB", + "ocean.sossq.tavg-u-hxy-sea.mon.GLB", + "ocean.thkcelluo.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcellvo.tavg-ol-hxy-sea.mon.GLB", + "ocean.tnpeo.tavg-u-hxy-sea.yr.GLB", + "ocean.tossq.tavg-u-hxy-sea.mon.GLB" + ] + }, + "scenariomip18": { + "Core": [ + "atmos.areacella.ti-u-hxy-u.fx.GLB", + "atmos.cl.tavg-al-hxy-u.mon.GLB", + "atmos.cli.tavg-al-hxy-u.mon.GLB", + "atmos.clivi.tavg-u-hxy-u.mon.GLB", + "atmos.clt.tavg-u-hxy-u.day.GLB", + "atmos.clt.tavg-u-hxy-u.mon.GLB", + "atmos.clw.tavg-al-hxy-u.mon.GLB", + "atmos.clwvi.tavg-u-hxy-u.mon.GLB", + "atmos.evspsbl.tavg-u-hxy-u.mon.GLB", + "atmos.hfls.tavg-u-hxy-u.mon.GLB", + "atmos.hfss.tavg-u-hxy-u.mon.GLB", + "atmos.hur.tavg-p19-hxy-air.mon.GLB", + "atmos.hur.tavg-p19-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.6hr.GLB", + "atmos.hurs.tavg-h2m-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.mon.GLB", + "atmos.hus.tavg-p19-hxy-u.day.GLB", + "atmos.hus.tavg-p19-hxy-u.mon.GLB", + "atmos.huss.tavg-h2m-hxy-u.day.GLB", + "atmos.huss.tavg-h2m-hxy-u.mon.GLB", + "atmos.huss.tpt-h2m-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.1hr.GLB", + "atmos.pr.tavg-u-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.day.GLB", + "atmos.pr.tavg-u-hxy-u.mon.GLB", + "atmos.prc.tavg-u-hxy-u.mon.GLB", + "atmos.prsn.tavg-u-hxy-u.mon.GLB", + "atmos.prw.tavg-u-hxy-u.mon.GLB", + "atmos.ps.tavg-u-hxy-u.day.GLB", + "atmos.ps.tavg-u-hxy-u.mon.GLB", + "atmos.psl.tavg-u-hxy-u.day.GLB", + "atmos.psl.tavg-u-hxy-u.mon.GLB", + "atmos.rlds.tavg-u-hxy-u.mon.GLB", + "atmos.rldscs.tavg-u-hxy-u.mon.GLB", + "atmos.rlus.tavg-u-hxy-u.mon.GLB", + "atmos.rluscs.tavg-u-hxy-u.mon.GLB", + "atmos.rlut.tavg-u-hxy-u.mon.GLB", + "atmos.rlutcs.tavg-u-hxy-u.mon.GLB", + "atmos.rsds.tavg-u-hxy-u.day.GLB", + "atmos.rsds.tavg-u-hxy-u.mon.GLB", + "atmos.rsdscs.tavg-u-hxy-u.mon.GLB", + "atmos.rsdt.tavg-u-hxy-u.mon.GLB", + "atmos.rsus.tavg-u-hxy-u.mon.GLB", + "atmos.rsuscs.tavg-u-hxy-u.mon.GLB", + "atmos.rsut.tavg-u-hxy-u.mon.GLB", + "atmos.rsutcs.tavg-u-hxy-u.mon.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.day.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.mon.GLB", + "atmos.sftlf.ti-u-hxy-u.fx.GLB", + "atmos.ta.tavg-p19-hxy-air.day.GLB", + "atmos.ta.tavg-p19-hxy-air.mon.GLB", + "atmos.ta.tpt-p3-hxy-air.6hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.day.GLB", + "atmos.tas.tavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tmax-h2m-hxy-u.day.GLB", + "atmos.tas.tmaxavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tmin-h2m-hxy-u.day.GLB", + "atmos.tas.tminavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tpt-h2m-hxy-u.3hr.GLB", + "atmos.tauu.tavg-u-hxy-u.mon.GLB", + "atmos.tauv.tavg-u-hxy-u.mon.GLB", + "atmos.ts.tavg-u-hxy-u.mon.GLB", + "atmos.ua.tavg-p19-hxy-air.day.GLB", + "atmos.ua.tavg-p19-hxy-air.mon.GLB", + "atmos.ua.tpt-p3-hxy-air.6hr.GLB", + "atmos.uas.tavg-h10m-hxy-u.day.GLB", + "atmos.uas.tavg-h10m-hxy-u.mon.GLB", + "atmos.uas.tpt-h10m-hxy-u.3hr.GLB", + "atmos.va.tavg-p19-hxy-air.day.GLB", + "atmos.va.tavg-p19-hxy-air.mon.GLB", + "atmos.va.tpt-p3-hxy-air.6hr.GLB", + "atmos.vas.tavg-h10m-hxy-u.day.GLB", + "atmos.vas.tavg-h10m-hxy-u.mon.GLB", + "atmos.vas.tpt-h10m-hxy-u.3hr.GLB", + "atmos.wap.tavg-p19-hxy-air.mon.GLB", + "atmos.wap.tavg-p19-hxy-u.day.GLB", + "atmos.zg.tavg-p19-hxy-air.day.GLB", + "atmos.zg.tavg-p19-hxy-air.mon.GLB", + "land.evspsblsoi.tavg-u-hxy-lnd.mon.GLB", + "land.evspsblveg.tavg-u-hxy-lnd.mon.GLB", + "land.lai.tavg-u-hxy-lnd.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.mon.GLB", + "land.mrros.tavg-u-hxy-lnd.mon.GLB", + "land.mrso.tavg-u-hxy-lnd.mon.GLB", + "land.mrsofc.ti-u-hxy-lnd.fx.GLB", + "land.mrsol.tavg-d10cm-hxy-lnd.mon.GLB", + "land.orog.ti-u-hxy-u.fx.GLB", + "land.rootd.ti-u-hxy-lnd.fx.GLB", + "land.sftgif.ti-u-hxy-u.fx.GLB", + "land.slthick.ti-sl-hxy-lnd.fx.GLB", + "landIce.mrfso.tavg-u-hxy-lnd.mon.GLB", + "landIce.snc.tavg-u-hxy-lnd.mon.GLB", + "landIce.snw.tavg-u-hxy-lnd.mon.GLB", + "ocean.areacello.ti-u-hxy-u.fx.GLB", + "ocean.basin.ti-u-hxy-u.fx.GLB", + "ocean.bigthetao.tavg-ol-hxy-sea.mon.GLB", + "ocean.deptho.ti-u-hxy-sea.fx.GLB", + "ocean.hfds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfgeou.ti-u-hxy-sea.fx.GLB", + "ocean.masscello.tavg-ol-hxy-sea.mon.GLB", + "ocean.masscello.ti-ol-hxy-sea.fx.GLB", + "ocean.mlotst.tavg-u-hxy-sea.mon.GLB", + "ocean.sftof.ti-u-hxy-u.fx.GLB", + "ocean.so.tavg-ol-hxy-sea.mon.GLB", + "ocean.sos.tavg-u-hxy-sea.day.GLB", + "ocean.sos.tavg-u-hxy-sea.mon.GLB", + "ocean.tauuo.tavg-u-hxy-sea.mon.GLB", + "ocean.tauvo.tavg-u-hxy-sea.mon.GLB", + "ocean.thetao.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcello.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcello.ti-ol-hxy-sea.fx.GLB", + "ocean.tos.tavg-u-hxy-sea.day.GLB", + "ocean.tos.tavg-u-hxy-sea.mon.GLB", + "ocean.umo.tavg-ol-hxy-sea.mon.GLB", + "ocean.uo.tavg-ol-hxy-sea.mon.GLB", + "ocean.vmo.tavg-ol-hxy-sea.mon.GLB", + "ocean.vo.tavg-ol-hxy-sea.mon.GLB", + "ocean.wmo.tavg-ol-hxy-sea.mon.GLB", + "ocean.wo.tavg-ol-hxy-sea.mon.GLB", + "ocean.zos.tavg-u-hxy-sea.day.GLB", + "ocean.zos.tavg-u-hxy-sea.mon.GLB", + "ocean.zostoga.tavg-u-hm-sea.mon.GLB", + "seaIce.siconc.tavg-u-hxy-u.day.GLB", + "seaIce.siconc.tavg-u-hxy-u.mon.GLB", + "seaIce.simass.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-si.mon.GLB", + "seaIce.sitimefrac.tavg-u-hxy-sea.mon.GLB", + "seaIce.siu.tavg-u-hxy-si.mon.GLB", + "seaIce.siv.tavg-u-hxy-si.mon.GLB", + "seaIce.snd.tavg-u-hxy-sn.mon.GLB", + "seaIce.ts.tavg-u-hxy-si.mon.GLB" + ], + "High": [ + "aerosol.depdust.tavg-u-hxy-u.mon.GLB", + "atmos.cl.tavg-al-hxy-u.day.GLB", + "atmos.clt.tavg-u-hxy-u.1hr.30S-90S", + "atmos.co2.tavg-h2m-hxy-u.mon.GLB", + "atmos.co2mass.tavg-u-hm-u.mon.GLB", + "atmos.evspsbl.tavg-u-hxy-lnd.day.GLB", + "atmos.hfls.tavg-u-hxy-u.day.GLB", + "atmos.hfss.tavg-u-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.1hr.30S-90S", + "atmos.huss.tavg-h2m-hxy-u.6hr.GLB", + "atmos.intuadse.tavg-u-hxy-u.day.GLB", + "atmos.intuadse.tavg-u-hxy-u.mon.GLB", + "atmos.intuaw.tavg-u-hxy-u.day.GLB", + "atmos.intuaw.tavg-u-hxy-u.mon.GLB", + "atmos.intvadse.tavg-u-hxy-u.day.GLB", + "atmos.intvadse.tavg-u-hxy-u.mon.GLB", + "atmos.intvaw.tavg-u-hxy-u.day.GLB", + "atmos.intvaw.tavg-u-hxy-u.mon.GLB", + "atmos.pfull.tavg-al-hxy-u.day.GLB", + "atmos.pr.tavg-u-hxy-u.1hr.30S-90S", + "atmos.pr17O.tavg-u-hxy-u.mon.GLB", + "atmos.pr18O.tavg-u-hxy-u.mon.GLB", + "atmos.pr2h.tavg-u-hxy-u.mon.GLB", + "atmos.prc.tavg-u-hxy-u.day.GLB", + "atmos.prra.tavg-u-hxy-lnd.day.GLB", + "atmos.prra.tavg-u-hxy-u.6hr.GLB", + "atmos.prra.tavg-u-hxy-u.mon.GLB", + "atmos.prsn.tavg-u-hxy-u.6hr.GLB", + "atmos.prsn.tavg-u-hxy-u.day.GLB", + "atmos.prsn18O.tavg-u-hxy-u.mon.GLB", + "atmos.prsn2h.tavg-u-hxy-u.mon.GLB", + "atmos.ps.tavg-u-hxy-u.6hr.GLB", + "atmos.ps.tpt-u-hxy-u.1hr.30S-90S", + "atmos.psl.tpt-u-hxy-u.1hr.GLB", + "atmos.rlds.tavg-u-hxy-u.1hr.30S-90S", + "atmos.rlds.tavg-u-hxy-u.6hr.GLB", + "atmos.rlds.tavg-u-hxy-u.day.GLB", + "atmos.rlus.tavg-u-hxy-u.day.GLB", + "atmos.rlut.tavg-u-hxy-u.day.GLB", + "atmos.rsds.tavg-u-hxy-u.1hr.30S-90S", + "atmos.rsds.tavg-u-hxy-u.6hr.GLB", + "atmos.rsdt.tavg-u-hxy-u.day.GLB", + "atmos.rsus.tavg-u-hxy-u.day.GLB", + "atmos.rsut.tavg-u-hxy-u.day.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.1hr.30S-90S", + "atmos.sfcWind.tavg-h10m-hxy-u.6hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.6hr.GLB", + "atmos.tdps.tavg-h2m-hxy-u.mon.GLB", + "atmos.ts.tavg-u-hxy-u.6hr.GLB", + "atmos.ts.tavg-u-hxy-u.day.GLB", + "atmos.ua.tpt-h100m-hxy-u.1hr.GLB", + "atmos.uas.tpt-h10m-hxy-u.1hr.GLB", + "atmos.va.tpt-h100m-hxy-u.1hr.GLB", + "atmos.vas.tpt-h10m-hxy-u.1hr.GLB", + "land.burntFractionAll.tavg-u-hxy-u.mon.GLB", + "land.cSoil.tavg-sl-hxy-lnd.mon.GLB", + "land.cSoil.tavg-u-hxy-lnd.mon.GLB", + "land.depthl.ti-u-hxy-u.fx.GLB", + "land.depthsl.ti-u-hxy-u.fx.GLB", + "land.evspsblpot.tavg-u-hxy-lnd.day.GLB", + "land.evspsblpot.tavg-u-hxy-lnd.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.day.GLB", + "land.mrros.tavg-u-hxy-lnd.day.GLB", + "land.mrsfl.tavg-sl-hxy-lnd.day.GLB", + "land.mrsfl.tavg-sl-hxy-lnd.mon.GLB", + "land.mrsll.tavg-sl-hxy-lnd.day.GLB", + "land.mrsll.tavg-sl-hxy-lnd.mon.GLB", + "land.mrso.tavg-u-hxy-lnd.day.GLB", + "land.mrsol.tavg-d10cm-hxy-lnd.day.GLB", + "land.mrsol.tavg-sl-hxy-lnd.day.GLB", + "land.mrsol.tavg-sl-hxy-lnd.mon.GLB", + "land.orog.ti-u-hxy-u.fx.30S-90S", + "land.rsds.tavg-u-hxy-lnd.mon.GLB", + "land.rsds.tavg-u-hxy-sn.mon.GLB", + "land.rsus.tavg-u-hxy-lnd.mon.GLB", + "land.rsus.tavg-u-hxy-sn.mon.GLB", + "land.sftgif.tavg-u-hxy-u.mon.GLB", + "land.sftlaf.ti-u-hxy-u.fx.GLB", + "land.tas.tavg-u-hxy-u.1hr.30S-90S", + "land.tsl.tavg-sl-hxy-lnd.day.GLB", + "land.tsl.tavg-sl-hxy-lnd.mon.GLB", + "landIce.acabf.tavg-u-hxy-is.mon.GLB", + "landIce.hfls.tavg-u-hxy-is.mon.GLB", + "landIce.hfss.tavg-u-hxy-is.mon.GLB", + "landIce.icem.tavg-u-hxy-is.mon.GLB", + "landIce.litemptop.tavg-u-hxy-is.mon.GLB", + "landIce.lithk.ti-u-hxy-u.fx.GLB", + "landIce.mrro.tavg-u-hxy-is.mon.GLB", + "landIce.orog.tavg-u-hxy-is.mon.GLB", + "landIce.prra.tavg-u-hxy-is.mon.GLB", + "landIce.prsn.tavg-u-hxy-is.mon.GLB", + "landIce.rlds.tavg-u-hxy-is.mon.GLB", + "landIce.rlus.tavg-u-hxy-is.mon.GLB", + "landIce.rsds.tavg-u-hxy-is.mon.GLB", + "landIce.rsus.tavg-u-hxy-is.mon.GLB", + "landIce.sbl.tavg-u-hxy-is.mon.GLB", + "landIce.sbl.tavg-u-hxy-lnd.mon.GLB", + "landIce.sbl.tavg-u-hxy-u.mon.GLB", + "landIce.sftflf.tavg-u-hxy-u.mon.GLB", + "landIce.sftflf.ti-u-hxy-u.fx.GLB", + "landIce.sftgrf.tavg-u-hxy-u.mon.GLB", + "landIce.sftgrf.ti-u-hxy-u.fx.GLB", + "landIce.snc.tavg-u-hxy-is.mon.GLB", + "landIce.snd.tavg-u-hxy-lnd.mon.GLB", + "landIce.snicem.tavg-u-hxy-is.mon.GLB", + "landIce.snm.tavg-u-hxy-is.mon.GLB", + "landIce.snm.tavg-u-hxy-lnd.mon.GLB", + "landIce.snrefr.tavg-u-hxy-is.mon.GLB", + "landIce.tas.tavg-u-hxy-is.mon.GLB", + "landIce.ts.tavg-u-hxy-is.mon.GLB", + "landIce.tsn.tavg-u-hxy-is.mon.GLB", + "landIce.tsn.tavg-u-hxy-lnd.mon.GLB", + "ocean.absscint.tavg-op4-hxy-sea.mon.GLB", + "ocean.agessc.tavg-ol-hxy-sea.mon.GLB", + "ocean.bigthetao.tavg-ol-hm-sea.mon.GLB", + "ocean.bigthetao.tavg-ol-hxy-sea.dec.GLB", + "ocean.bigthetao.tavg-op20bar-hxy-sea.day.GLB", + "ocean.chcint.tavg-op4-hxy-sea.mon.GLB", + "ocean.ficeberg.tavg-u-hxy-sea.mon.GLB", + "ocean.flandice.tavg-u-hxy-sea.mon.GLB", + "ocean.hfbasin.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpmadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpmdiff.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpsmadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfgeou.tavg-u-hxy-sea.mon.GLB", + "ocean.hfx.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfx.tavg-u-hxy-sea.day.GLB", + "ocean.hfx.tavg-u-hxy-sea.mon.GLB", + "ocean.hfy.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfy.tavg-u-hxy-sea.day.GLB", + "ocean.hfy.tavg-u-hxy-sea.mon.GLB", + "ocean.htovgyre.tavg-u-hyb-sea.mon.GLB", + "ocean.htovovrt.tavg-u-hyb-sea.mon.GLB", + "ocean.masscello.tavg-ol-hxy-sea.dec.GLB", + "ocean.masso.tavg-u-hm-sea.dec.GLB", + "ocean.masso.tavg-u-hm-sea.mon.GLB", + "ocean.mlotst.tavg-u-hxy-sea.day.GLB", + "ocean.mlotst.tmax-u-hxy-sea.mon.GLB", + "ocean.mlotst.tmin-u-hxy-sea.mon.GLB", + "ocean.mpw.tavg-u-hxy-sea.mon.GLB", + "ocean.mpw.tpt-u-hxy-sea.3hr.GLB", + "ocean.mpwswell.tavg-u-hxy-sea.mon.GLB", + "ocean.mpwswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.mpwwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.mpwwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.msftbarot.tavg-u-hxy-sea.mon.GLB", + "ocean.msftm.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftm.tavg-rho-hyb-sea.mon.GLB", + "ocean.msfty.tavg-ol-ht-sea.mon.GLB", + "ocean.msfty.tavg-rho-ht-sea.mon.GLB", + "ocean.obvfsq.tavg-ol-hxy-sea.mon.GLB", + "ocean.opottemptend.tavg-ol-hxy-sea.yr.GLB", + "ocean.pbo.tavg-u-hxy-sea.mon.GLB", + "ocean.pfscint.tavg-op4-hxy-sea.mon.GLB", + "ocean.phcint.tavg-op4-hxy-sea.mon.GLB", + "ocean.pso.tavg-u-hxy-sea.mon.GLB", + "ocean.rsds.tavg-u-hxy-ifs.mon.GLB", + "ocean.rsus.tavg-u-hxy-ifs.mon.GLB", + "ocean.scint.tavg-op4-hxy-sea.mon.GLB", + "ocean.sduo.tavg-u-hxy-sea.mon.GLB", + "ocean.sduo.tpt-u-hxy-sea.3hr.GLB", + "ocean.sdvo.tavg-u-hxy-sea.mon.GLB", + "ocean.sdvo.tpt-u-hxy-sea.3hr.GLB", + "ocean.sfx.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfx.tavg-u-hxy-sea.mon.GLB", + "ocean.sfy.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfy.tavg-u-hxy-sea.mon.GLB", + "ocean.sltbasin.tavg-u-hyb-sea.mon.GLB", + "ocean.sltovgyre.tavg-u-hyb-sea.mon.GLB", + "ocean.sltovovrt.tavg-u-hyb-sea.mon.GLB", + "ocean.so.tavg-ol-hm-sea.mon.GLB", + "ocean.so.tavg-ol-hxy-sea.dec.GLB", + "ocean.sob.tavg-u-hxy-sea.mon.GLB", + "ocean.sos.tavg-u-hm-sea.mon.GLB", + "ocean.sw17O.tavg-ol-hxy-sea.mon.GLB", + "ocean.sw18O.tavg-ol-hxy-sea.mon.GLB", + "ocean.sw2H.tavg-ol-hxy-sea.mon.GLB", + "ocean.swh.tavg-u-hxy-sea.mon.GLB", + "ocean.swh.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhmax.tmax-u-hxy-sea.mon.GLB", + "ocean.swhmax.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhswell.tavg-u-hxy-sea.mon.GLB", + "ocean.swhswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.swhwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.tauuo.tavg-u-hxy-sea.dec.GLB", + "ocean.tauvo.tavg-u-hxy-sea.dec.GLB", + "ocean.thetao.tavg-ol-hm-sea.mon.GLB", + "ocean.thetao.tavg-ol-hxy-sea.dec.GLB", + "ocean.thetao.tavg-op20bar-hxy-sea.day.GLB", + "ocean.thkcello.tavg-ol-hxy-sea.dec.GLB", + "ocean.tob.tavg-u-hxy-sea.mon.GLB", + "ocean.tos.tavg-u-hm-sea.mon.GLB", + "ocean.tos.tpt-u-hxy-sea.3hr.GLB", + "ocean.tossq.tavg-u-hxy-sea.day.GLB", + "ocean.uos.tavg-u-hxy-sea.day.GLB", + "ocean.volcello.tavg-ol-hxy-sea.dec.GLB", + "ocean.volcello.tavg-ol-hxy-sea.mon.GLB", + "ocean.volcello.tavg-ol-hxy-sea.yr.GLB", + "ocean.volcello.ti-ol-hxy-sea.fx.GLB", + "ocean.volo.tavg-u-hm-sea.dec.GLB", + "ocean.volo.tavg-u-hm-sea.mon.GLB", + "ocean.vos.tavg-u-hxy-sea.day.GLB", + "ocean.wdir.tavg-u-hxy-sea.mon.GLB", + "ocean.wdir.tpt-u-hxy-sea.3hr.GLB", + "ocean.wdirswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wdirswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wdirwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wdirwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.wfcorr.tavg-u-hxy-sea.mon.GLB", + "ocean.wfo.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdir.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdir.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpdirswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdirswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpdirwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdirwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpp.tavg-u-hxy-sea.mon.GLB", + "ocean.wpp.tpt-u-hxy-sea.3hr.GLB", + "ocean.wppswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wppswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wppwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wppwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.zossq.tavg-u-hxy-sea.mon.GLB", + "ocean.zostoga.tavg-u-hm-sea.day.GLB", + "seaIce.evspsbl.tavg-u-hxy-si.mon.GLB", + "seaIce.prra.tavg-u-hxy-si.mon.GLB", + "seaIce.prsn.tavg-u-hxy-si.mon.GLB", + "seaIce.rlds.tavg-u-hxy-si.day.GLB", + "seaIce.rlds.tavg-u-hxy-si.mon.GLB", + "seaIce.rlus.tavg-u-hxy-si.day.GLB", + "seaIce.rlus.tavg-u-hxy-si.mon.GLB", + "seaIce.rsds.tavg-u-hxy-si.day.GLB", + "seaIce.rsds.tavg-u-hxy-si.mon.GLB", + "seaIce.rsus.tavg-u-hxy-si.day.GLB", + "seaIce.rsus.tavg-u-hxy-si.mon.GLB", + "seaIce.sbl.tavg-u-hxy-si.mon.GLB", + "seaIce.siage.tavg-u-hxy-si.day.GLB", + "seaIce.siarea.tavg-u-hm-u.mon.NH", + "seaIce.siarea.tavg-u-hm-u.mon.SH", + "seaIce.siareaacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.siconca.tavg-u-hxy-u.day.GLB", + "seaIce.siconca.tavg-u-hxy-u.mon.GLB", + "seaIce.sidconcdyn.tavg-u-hxy-sea.mon.GLB", + "seaIce.sidconcth.tavg-u-hxy-sea.mon.GLB", + "seaIce.sidmassdyn.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthsi.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthwat.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmeltbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmeltlat.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmelttop.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassth.tavg-u-hxy-si.mon.GLB", + "seaIce.sieqthick.tavg-u-hxy-si.mon.GLB", + "seaIce.siextent.tavg-u-hm-u.mon.NH", + "seaIce.siextent.tavg-u-hm-u.mon.SH", + "seaIce.siflcondbot.tavg-u-hxy-si.day.GLB", + "seaIce.siflcondbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflcondtop.tavg-u-hxy-si.day.GLB", + "seaIce.siflcondtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sifllattop.tavg-u-hxy-si.day.GLB", + "seaIce.sifllattop.tavg-u-hxy-si.mon.GLB", + "seaIce.siflsensbot.tavg-u-hxy-si.day.GLB", + "seaIce.siflsensbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflsenstop.tavg-u-hxy-si.day.GLB", + "seaIce.siflsenstop.tavg-u-hxy-si.mon.GLB", + "seaIce.siflswdbot.tavg-u-hxy-si.day.GLB", + "seaIce.siflswdbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sihc.tavg-u-hxy-sea.day.GLB", + "seaIce.sihc.tavg-u-hxy-sea.mon.GLB", + "seaIce.siitdconc.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdsnconc.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdsnthick.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdthick.tavg-u-hxy-si.mon.GLB", + "seaIce.simassacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.simpconc.tavg-u-hxy-si.mon.GLB", + "seaIce.sirdgconc.tavg-u-hxy-si.mon.GLB", + "seaIce.sisaltmass.tavg-u-hxy-si.mon.GLB", + "seaIce.sisndmassdyn.tavg-u-hxy-si.mon.GLB", + "seaIce.sisndmasssi.tavg-u-hxy-si.mon.GLB", + "seaIce.sisndmasswind.tavg-u-hxy-si.mon.GLB", + "seaIce.sisnhc.tavg-u-hxy-si.day.GLB", + "seaIce.sisnhc.tavg-u-hxy-si.mon.GLB", + "seaIce.sisnmass.tavg-u-hm-u.mon.NH", + "seaIce.sisnmass.tavg-u-hm-u.mon.SH", + "seaIce.sisnmassacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.sispeed.tavg-u-hxy-si.day.GLB", + "seaIce.sispeed.tavg-u-hxy-si.mon.GLB", + "seaIce.sistressave.tpt-u-hxy-si.mon.GLB", + "seaIce.sistressmax.tpt-u-hxy-si.mon.GLB", + "seaIce.sistrxdtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sistrxubot.tavg-u-hxy-si.mon.GLB", + "seaIce.sistrydtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sistryubot.tavg-u-hxy-si.mon.GLB", + "seaIce.sitempsnic.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-si.day.GLB", + "seaIce.sitimefrac.tavg-u-hxy-sea.day.GLB", + "seaIce.siu.tavg-u-hxy-si.day.GLB", + "seaIce.siv.tavg-u-hxy-si.day.GLB", + "seaIce.sivol.tavg-u-hm-u.mon.NH", + "seaIce.sivol.tavg-u-hm-u.mon.SH", + "seaIce.snc.tavg-u-hxy-si.mon.GLB", + "seaIce.snd.tavg-u-hxy-sn.day.GLB", + "seaIce.snm.tavg-u-hxy-si.mon.GLB", + "seaIce.snw.tavg-u-hxy-si.mon.GLB", + "seaIce.ts.tavg-u-hxy-si.day.GLB" + ], + "Medium": [ + "atmos.hfls.tavg-u-hxy-is.mon.ATA", + "atmos.hfls.tavg-u-hxy-is.mon.GRL", + "atmos.hfss.tavg-u-hxy-is.mon.ATA", + "atmos.hfss.tavg-u-hxy-is.mon.GRL", + "atmos.prra.tavg-u-hxy-is.mon.ATA", + "atmos.prra.tavg-u-hxy-is.mon.GRL", + "atmos.prsn.tavg-u-hxy-is.mon.ATA", + "atmos.prsn.tavg-u-hxy-is.mon.GRL", + "atmos.rlds.tavg-u-hxy-is.mon.ATA", + "atmos.rlds.tavg-u-hxy-is.mon.GRL", + "atmos.rlus.tavg-u-hxy-is.mon.ATA", + "atmos.rlus.tavg-u-hxy-is.mon.GRL", + "atmos.rsds.tavg-u-hxy-is.mon.ATA", + "atmos.rsds.tavg-u-hxy-is.mon.GRL", + "atmos.rsus.tavg-u-hxy-is.mon.ATA", + "atmos.rsus.tavg-u-hxy-is.mon.GRL", + "atmos.sfcWind.tmax-h10m-hxy-u.day.GLB", + "atmos.tas.tavg-h2m-hm-is.mon.ATA", + "atmos.tas.tavg-h2m-hm-is.mon.GRL", + "atmos.ts.tavg-u-hxy-is.mon.ATA", + "atmos.ts.tavg-u-hxy-is.mon.GRL", + "atmosChem.flashrate.tavg-u-hxy-u.day.GLB", + "land.areacellg.ti-u-hxy-u.fx.ATA", + "land.areacellg.ti-u-hxy-u.fx.GRL", + "land.orog.tavg-u-hxy-is.mon.ATA", + "land.orog.tavg-u-hxy-is.mon.GRL", + "land.orog.tavg-u-hxy-is.yr.ATA", + "land.orog.tavg-u-hxy-is.yr.GRL", + "land.sftgif.tavg-u-hxy-u.yr.ATA", + "land.sftgif.tavg-u-hxy-u.yr.GRL", + "landIce.acabf.tavg-u-hxy-is.mon.ATA", + "landIce.acabf.tavg-u-hxy-is.mon.GRL", + "landIce.acabf.tavg-u-hxy-is.yr.ATA", + "landIce.acabf.tavg-u-hxy-is.yr.GRL", + "landIce.hfgeoubed.tavg-u-hxy-gis.yr.ATA", + "landIce.hfgeoubed.tavg-u-hxy-gis.yr.GRL", + "landIce.hfgeoubed.ti-u-hxy-gis.fx.ATA", + "landIce.hfgeoubed.ti-u-hxy-gis.fx.GRL", + "landIce.iareafl.tavg-u-hm-fis.yr.ATA", + "landIce.iareafl.tavg-u-hm-fis.yr.GRL", + "landIce.iareagr.tavg-u-hm-gis.yr.ATA", + "landIce.iareagr.tavg-u-hm-gis.yr.GRL", + "landIce.icem.tavg-u-hxy-is.mon.ATA", + "landIce.icem.tavg-u-hxy-is.mon.GRL", + "landIce.libmassbf.tavg-u-hxy-fis.mon.ATA", + "landIce.libmassbf.tavg-u-hxy-fis.mon.GRL", + "landIce.libmassbf.tavg-u-hxy-fis.yr.ATA", + "landIce.libmassbf.tavg-u-hxy-fis.yr.GRL", + "landIce.libmassbf.tavg-u-hxy-gis.mon.ATA", + "landIce.libmassbf.tavg-u-hxy-gis.mon.GRL", + "landIce.libmassbf.tavg-u-hxy-gis.yr.ATA", + "landIce.libmassbf.tavg-u-hxy-gis.yr.GRL", + "landIce.licalvf.tavg-u-hxy-is.mon.ATA", + "landIce.licalvf.tavg-u-hxy-is.mon.GRL", + "landIce.licalvf.tavg-u-hxy-is.yr.ATA", + "landIce.licalvf.tavg-u-hxy-is.yr.GRL", + "landIce.lifmassbf.tavg-u-hxy-is.mon.ATA", + "landIce.lifmassbf.tavg-u-hxy-is.mon.GRL", + "landIce.lifmassbf.tavg-u-hxy-is.yr.ATA", + "landIce.lifmassbf.tavg-u-hxy-is.yr.GRL", + "landIce.lim.tavg-u-hm-is.yr.ATA", + "landIce.lim.tavg-u-hm-is.yr.GRL", + "landIce.limnsw.tavg-u-hm-is.yr.ATA", + "landIce.limnsw.tavg-u-hm-is.yr.GRL", + "landIce.litempbot.tavg-u-hxy-fis.mon.ATA", + "landIce.litempbot.tavg-u-hxy-fis.mon.GRL", + "landIce.litempbot.tavg-u-hxy-fis.yr.ATA", + "landIce.litempbot.tavg-u-hxy-fis.yr.GRL", + "landIce.litempbot.tavg-u-hxy-gis.mon.ATA", + "landIce.litempbot.tavg-u-hxy-gis.mon.GRL", + "landIce.litempbot.tavg-u-hxy-gis.yr.ATA", + "landIce.litempbot.tavg-u-hxy-gis.yr.GRL", + "landIce.litemptop.tavg-u-hxy-is.mon.ATA", + "landIce.litemptop.tavg-u-hxy-is.mon.GRL", + "landIce.litemptop.tavg-u-hxy-is.yr.ATA", + "landIce.litemptop.tavg-u-hxy-is.yr.GRL", + "landIce.lithk.tavg-u-hxy-is.yr.ATA", + "landIce.lithk.tavg-u-hxy-is.yr.GRL", + "landIce.lithk.ti-u-hxy-is.fx.ATA", + "landIce.lithk.ti-u-hxy-is.fx.GRL", + "landIce.modelcellareai.tavg-u-hxy-u.yr.ATA", + "landIce.modelcellareai.tavg-u-hxy-u.yr.GRL", + "landIce.mrroLi.tavg-u-hxy-is.mon.ATA", + "landIce.mrroLi.tavg-u-hxy-is.mon.GRL", + "landIce.sbl.tavg-u-hxy-is.mon.ATA", + "landIce.sbl.tavg-u-hxy-is.mon.GRL", + "landIce.sftflf.tavg-u-hxy-u.yr.ATA", + "landIce.sftflf.tavg-u-hxy-u.yr.GRL", + "landIce.sftgrf.tavg-u-hxy-u.yr.ATA", + "landIce.sftgrf.tavg-u-hxy-u.yr.GRL", + "landIce.snc.tavg-u-hxy-is.mon.ATA", + "landIce.snc.tavg-u-hxy-is.mon.GRL", + "landIce.snc.tavg-u-hxy-is.yr.ATA", + "landIce.snc.tavg-u-hxy-is.yr.GRL", + "landIce.snicem.tavg-u-hxy-is.mon.ATA", + "landIce.snicem.tavg-u-hxy-is.mon.GRL", + "landIce.snm.tavg-u-hxy-is.mon.ATA", + "landIce.snm.tavg-u-hxy-is.mon.GRL", + "landIce.snrefr.tavg-u-hxy-is.mon.ATA", + "landIce.snrefr.tavg-u-hxy-is.mon.GRL", + "landIce.strbasemag.tavg-u-hxy-is.yr.ATA", + "landIce.strbasemag.tavg-u-hxy-is.yr.GRL", + "landIce.tendacabf.tavg-u-hm-is.yr.ATA", + "landIce.tendacabf.tavg-u-hm-is.yr.GRL", + "landIce.tendlibmassbf.tavg-u-hm-is.yr.ATA", + "landIce.tendlibmassbf.tavg-u-hm-is.yr.GRL", + "landIce.tendlicalvf.tavg-u-hm-is.yr.ATA", + "landIce.tendlicalvf.tavg-u-hm-is.yr.GRL", + "landIce.topg.tavg-u-hxy-gis.yr.ATA", + "landIce.topg.tavg-u-hxy-gis.yr.GRL", + "landIce.topg.ti-u-hxy-gis.fx.ATA", + "landIce.topg.ti-u-hxy-gis.fx.GRL", + "landIce.tsn.tavg-u-hxy-is.mon.ATA", + "landIce.tsn.tavg-u-hxy-is.mon.GRL", + "landIce.xvelbase.tavg-u-hxy-is.yr.ATA", + "landIce.xvelbase.tavg-u-hxy-is.yr.GRL", + "landIce.xvelmean.tavg-u-hxy-is.yr.ATA", + "landIce.xvelmean.tavg-u-hxy-is.yr.GRL", + "landIce.xvelsurf.tavg-u-hxy-is.yr.ATA", + "landIce.xvelsurf.tavg-u-hxy-is.yr.GRL", + "landIce.yvelbase.tavg-u-hxy-is.yr.ATA", + "landIce.yvelbase.tavg-u-hxy-is.yr.GRL", + "landIce.yvelmean.tavg-u-hxy-is.yr.ATA", + "landIce.yvelmean.tavg-u-hxy-is.yr.GRL", + "landIce.yvelsurf.tavg-u-hxy-is.yr.ATA", + "landIce.yvelsurf.tavg-u-hxy-is.yr.GRL", + "landIce.zvelbase.tavg-u-hxy-is.yr.ATA", + "landIce.zvelbase.tavg-u-hxy-is.yr.GRL", + "landIce.zvelsurf.tavg-u-hxy-is.yr.ATA", + "landIce.zvelsurf.tavg-u-hxy-is.yr.GRL", + "ocean.evspsbl.tavg-u-hxy-ifs.mon.GLB", + "ocean.ficeberg.tavg-ol-hxy-sea.mon.GLB", + "ocean.friver.tavg-u-hxy-sea.mon.GLB", + "ocean.hfacrossline.tavg-u-ht-sea.mon.GLB", + "ocean.hfevapds.tavg-u-hxy-ifs.mon.GLB", + "ocean.hfibthermds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfibthermds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfrainds.tavg-u-hxy-ifs.mon.GLB", + "ocean.hfrunoffds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfrunoffds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfsnthermds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfsnthermds.tavg-u-hxy-sea.mon.GLB", + "ocean.mfo.tavg-u-ht-sea.mon.GLB", + "ocean.sfacrossline.tavg-u-ht-sea.mon.GLB", + "ocean.sfdsi.tavg-u-hxy-sea.mon.GLB", + "ocean.sfriver.tavg-u-hxy-sea.mon.GLB", + "ocean.siflfwbot.tavg-u-hxy-sea.mon.GLB", + "ocean.so.tavg-ol-hxy-sea.day.GLB", + "ocean.tnkebto.tavg-u-hxy-sea.yr.GLB", + "ocean.vsf.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfcorr.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfevap.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfpr.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfriver.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfsit.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.arag.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.arag.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.calc.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.calc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chl.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.dissic.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.o2.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.ph.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.talk.tavg-ol-hxy-sea.mon.GLB", + "seaIce.sfdsi.tavg-u-hxy-si.mon.GLB", + "seaIce.siage.tavg-u-hxy-si.mon.GLB", + "seaIce.siarea.tavg-u-hm-u.day.NH", + "seaIce.siarea.tavg-u-hm-u.day.SH", + "seaIce.sicompstren.tavg-u-hxy-si.mon.GLB", + "seaIce.sidivvel.tpt-u-hxy-si.mon.GLB", + "seaIce.sidmasstranx.tavg-u-hxy-u.mon.GLB", + "seaIce.sidmasstrany.tavg-u-hxy-u.mon.GLB", + "seaIce.sidragbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidragtop.tavg-u-hxy-si.mon.GLB", + "seaIce.siextent.tavg-u-hm-u.day.NH", + "seaIce.siextent.tavg-u-hm-u.day.SH", + "seaIce.sifb.tavg-u-hxy-si.day.GLB", + "seaIce.sifb.tavg-u-hxy-si.mon.GLB", + "seaIce.siflfwbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflfwdrain.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcecoriolx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcecorioly.tavg-u-hxy-si.mon.GLB", + "seaIce.siforceintstrx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforceintstry.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcetiltx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcetilty.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdconc.tavg-u-hxy-si.day.GLB", + "seaIce.siitdsnconc.tavg-u-hxy-si.day.GLB", + "seaIce.siitdsnthick.tavg-u-hxy-si.day.GLB", + "seaIce.siitdthick.tavg-u-hxy-si.day.GLB", + "seaIce.simpconc.tavg-u-hxy-si.day.GLB", + "seaIce.simpeffconc.tavg-u-hxy-si.day.GLB", + "seaIce.simpeffconc.tavg-u-hxy-si.mon.GLB", + "seaIce.simprefrozen.tavg-u-hxy-simp.day.GLB", + "seaIce.simprefrozen.tavg-u-hxy-simp.mon.GLB", + "seaIce.simpthick.tavg-u-hxy-si.day.GLB", + "seaIce.simpthick.tavg-u-hxy-simp.mon.GLB", + "seaIce.sirdgconc.tavg-u-hxy-si.day.GLB", + "seaIce.sisali.tavg-u-hxy-si.day.GLB", + "seaIce.sisali.tavg-u-hxy-si.mon.GLB", + "seaIce.sisaltmass.tavg-u-hxy-si.day.GLB", + "seaIce.sishearvel.tpt-u-hxy-si.mon.GLB", + "seaIce.sisnmass.tavg-u-hm-u.day.NH", + "seaIce.sisnmass.tavg-u-hm-u.day.SH", + "seaIce.sitempbot.tavg-u-hxy-si.day.GLB", + "seaIce.sitempbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sitempsnic.tavg-u-hxy-si.day.GLB", + "seaIce.sithick.tavg-u-hxy-sir.day.GLB", + "seaIce.sithick.tavg-u-hxy-sir.mon.GLB", + "seaIce.sivol.tavg-u-hm-u.day.NH", + "seaIce.sivol.tavg-u-hm-u.day.SH" + ], + "Low": [ + "ocean.difmxybo.tavg-ol-hxy-sea.yr.GLB", + "ocean.difmxylo.tavg-ol-hxy-sea.yr.GLB", + "ocean.diftrblo.tavg-ol-hxy-sea.yr.GLB", + "ocean.diftrelo.tavg-ol-hxy-sea.yr.GLB", + "ocean.difvho.tavg-ol-hxy-sea.yr.GLB", + "ocean.difvso.tavg-ol-hxy-sea.yr.GLB", + "ocean.dispkexyfo.tavg-u-hxy-sea.yr.GLB", + "ocean.dxto.ti-u-hxy-u.fx.GLB", + "ocean.dxuo.ti-u-hxy-u.fx.GLB", + "ocean.dxvo.ti-u-hxy-u.fx.GLB", + "ocean.dyto.ti-u-hxy-u.fx.GLB", + "ocean.dyuo.ti-u-hxy-u.fx.GLB", + "ocean.dyvo.ti-u-hxy-u.fx.GLB", + "ocean.mlotstsq.tavg-u-hxy-sea.mon.GLB", + "ocean.msftmmpa.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftmmpa.tavg-rho-hyb-sea.mon.GLB", + "ocean.msftmsmpa.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftypa.tavg-ol-ht-sea.mon.GLB", + "ocean.msftypa.tavg-rho-ht-sea.mon.GLB", + "ocean.ocontempdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontempmint.tavg-u-hxy-sea.yr.GLB", + "ocean.ocontemppadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemppmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemppsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemprmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemptend.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottempdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottempmint.tavg-u-hxy-sea.yr.GLB", + "ocean.opottemppadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemppmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemppsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemprmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemptend.tavg-ol-hxy-sea.dec.GLB", + "ocean.osaltdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpsmadvect.tavg-ol-hxy-sea.mon.GLB", + "ocean.osaltpsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltrmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osalttend.tavg-ol-hxy-sea.yr.GLB", + "ocean.rsdoabsorb.tavg-ol-hxy-sea.yr.GLB", + "ocean.somint.tavg-u-hxy-sea.yr.GLB", + "ocean.sossq.tavg-u-hxy-sea.mon.GLB", + "ocean.thkcelluo.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcellvo.tavg-ol-hxy-sea.mon.GLB", + "ocean.tnpeo.tavg-u-hxy-sea.yr.GLB", + "ocean.tossq.tavg-u-hxy-sea.mon.GLB" + ] + }, + "scenariomip19": { + "Core": [ + "atmos.areacella.ti-u-hxy-u.fx.GLB", + "atmos.cl.tavg-al-hxy-u.mon.GLB", + "atmos.cli.tavg-al-hxy-u.mon.GLB", + "atmos.clivi.tavg-u-hxy-u.mon.GLB", + "atmos.clt.tavg-u-hxy-u.day.GLB", + "atmos.clt.tavg-u-hxy-u.mon.GLB", + "atmos.clw.tavg-al-hxy-u.mon.GLB", + "atmos.clwvi.tavg-u-hxy-u.mon.GLB", + "atmos.evspsbl.tavg-u-hxy-u.mon.GLB", + "atmos.hfls.tavg-u-hxy-u.mon.GLB", + "atmos.hfss.tavg-u-hxy-u.mon.GLB", + "atmos.hur.tavg-p19-hxy-air.mon.GLB", + "atmos.hur.tavg-p19-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.6hr.GLB", + "atmos.hurs.tavg-h2m-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.mon.GLB", + "atmos.hus.tavg-p19-hxy-u.day.GLB", + "atmos.hus.tavg-p19-hxy-u.mon.GLB", + "atmos.huss.tavg-h2m-hxy-u.day.GLB", + "atmos.huss.tavg-h2m-hxy-u.mon.GLB", + "atmos.huss.tpt-h2m-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.1hr.GLB", + "atmos.pr.tavg-u-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.day.GLB", + "atmos.pr.tavg-u-hxy-u.mon.GLB", + "atmos.prc.tavg-u-hxy-u.mon.GLB", + "atmos.prsn.tavg-u-hxy-u.mon.GLB", + "atmos.prw.tavg-u-hxy-u.mon.GLB", + "atmos.ps.tavg-u-hxy-u.day.GLB", + "atmos.ps.tavg-u-hxy-u.mon.GLB", + "atmos.psl.tavg-u-hxy-u.day.GLB", + "atmos.psl.tavg-u-hxy-u.mon.GLB", + "atmos.rlds.tavg-u-hxy-u.mon.GLB", + "atmos.rldscs.tavg-u-hxy-u.mon.GLB", + "atmos.rlus.tavg-u-hxy-u.mon.GLB", + "atmos.rluscs.tavg-u-hxy-u.mon.GLB", + "atmos.rlut.tavg-u-hxy-u.mon.GLB", + "atmos.rlutcs.tavg-u-hxy-u.mon.GLB", + "atmos.rsds.tavg-u-hxy-u.day.GLB", + "atmos.rsds.tavg-u-hxy-u.mon.GLB", + "atmos.rsdscs.tavg-u-hxy-u.mon.GLB", + "atmos.rsdt.tavg-u-hxy-u.mon.GLB", + "atmos.rsus.tavg-u-hxy-u.mon.GLB", + "atmos.rsuscs.tavg-u-hxy-u.mon.GLB", + "atmos.rsut.tavg-u-hxy-u.mon.GLB", + "atmos.rsutcs.tavg-u-hxy-u.mon.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.day.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.mon.GLB", + "atmos.sftlf.ti-u-hxy-u.fx.GLB", + "atmos.ta.tavg-p19-hxy-air.day.GLB", + "atmos.ta.tavg-p19-hxy-air.mon.GLB", + "atmos.ta.tpt-p3-hxy-air.6hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.day.GLB", + "atmos.tas.tavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tmax-h2m-hxy-u.day.GLB", + "atmos.tas.tmaxavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tmin-h2m-hxy-u.day.GLB", + "atmos.tas.tminavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tpt-h2m-hxy-u.3hr.GLB", + "atmos.tauu.tavg-u-hxy-u.mon.GLB", + "atmos.tauv.tavg-u-hxy-u.mon.GLB", + "atmos.ts.tavg-u-hxy-u.mon.GLB", + "atmos.ua.tavg-p19-hxy-air.day.GLB", + "atmos.ua.tavg-p19-hxy-air.mon.GLB", + "atmos.ua.tpt-p3-hxy-air.6hr.GLB", + "atmos.uas.tavg-h10m-hxy-u.day.GLB", + "atmos.uas.tavg-h10m-hxy-u.mon.GLB", + "atmos.uas.tpt-h10m-hxy-u.3hr.GLB", + "atmos.va.tavg-p19-hxy-air.day.GLB", + "atmos.va.tavg-p19-hxy-air.mon.GLB", + "atmos.va.tpt-p3-hxy-air.6hr.GLB", + "atmos.vas.tavg-h10m-hxy-u.day.GLB", + "atmos.vas.tavg-h10m-hxy-u.mon.GLB", + "atmos.vas.tpt-h10m-hxy-u.3hr.GLB", + "atmos.wap.tavg-p19-hxy-air.mon.GLB", + "atmos.wap.tavg-p19-hxy-u.day.GLB", + "atmos.zg.tavg-p19-hxy-air.day.GLB", + "atmos.zg.tavg-p19-hxy-air.mon.GLB", + "land.evspsblsoi.tavg-u-hxy-lnd.mon.GLB", + "land.evspsblveg.tavg-u-hxy-lnd.mon.GLB", + "land.lai.tavg-u-hxy-lnd.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.mon.GLB", + "land.mrros.tavg-u-hxy-lnd.mon.GLB", + "land.mrso.tavg-u-hxy-lnd.mon.GLB", + "land.mrsofc.ti-u-hxy-lnd.fx.GLB", + "land.mrsol.tavg-d10cm-hxy-lnd.mon.GLB", + "land.orog.ti-u-hxy-u.fx.GLB", + "land.rootd.ti-u-hxy-lnd.fx.GLB", + "land.sftgif.ti-u-hxy-u.fx.GLB", + "land.slthick.ti-sl-hxy-lnd.fx.GLB", + "landIce.mrfso.tavg-u-hxy-lnd.mon.GLB", + "landIce.snc.tavg-u-hxy-lnd.mon.GLB", + "landIce.snw.tavg-u-hxy-lnd.mon.GLB", + "ocean.areacello.ti-u-hxy-u.fx.GLB", + "ocean.basin.ti-u-hxy-u.fx.GLB", + "ocean.bigthetao.tavg-ol-hxy-sea.mon.GLB", + "ocean.deptho.ti-u-hxy-sea.fx.GLB", + "ocean.hfds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfgeou.ti-u-hxy-sea.fx.GLB", + "ocean.masscello.tavg-ol-hxy-sea.mon.GLB", + "ocean.masscello.ti-ol-hxy-sea.fx.GLB", + "ocean.mlotst.tavg-u-hxy-sea.mon.GLB", + "ocean.sftof.ti-u-hxy-u.fx.GLB", + "ocean.so.tavg-ol-hxy-sea.mon.GLB", + "ocean.sos.tavg-u-hxy-sea.day.GLB", + "ocean.sos.tavg-u-hxy-sea.mon.GLB", + "ocean.tauuo.tavg-u-hxy-sea.mon.GLB", + "ocean.tauvo.tavg-u-hxy-sea.mon.GLB", + "ocean.thetao.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcello.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcello.ti-ol-hxy-sea.fx.GLB", + "ocean.tos.tavg-u-hxy-sea.day.GLB", + "ocean.tos.tavg-u-hxy-sea.mon.GLB", + "ocean.umo.tavg-ol-hxy-sea.mon.GLB", + "ocean.uo.tavg-ol-hxy-sea.mon.GLB", + "ocean.vmo.tavg-ol-hxy-sea.mon.GLB", + "ocean.vo.tavg-ol-hxy-sea.mon.GLB", + "ocean.wmo.tavg-ol-hxy-sea.mon.GLB", + "ocean.wo.tavg-ol-hxy-sea.mon.GLB", + "ocean.zos.tavg-u-hxy-sea.day.GLB", + "ocean.zos.tavg-u-hxy-sea.mon.GLB", + "ocean.zostoga.tavg-u-hm-sea.mon.GLB", + "seaIce.siconc.tavg-u-hxy-u.day.GLB", + "seaIce.siconc.tavg-u-hxy-u.mon.GLB", + "seaIce.simass.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-si.mon.GLB", + "seaIce.sitimefrac.tavg-u-hxy-sea.mon.GLB", + "seaIce.siu.tavg-u-hxy-si.mon.GLB", + "seaIce.siv.tavg-u-hxy-si.mon.GLB", + "seaIce.snd.tavg-u-hxy-sn.mon.GLB", + "seaIce.ts.tavg-u-hxy-si.mon.GLB" + ], + "High": [ + "aerosol.depdust.tavg-u-hxy-u.mon.GLB", + "atmos.cl.tavg-al-hxy-u.day.GLB", + "atmos.clt.tavg-u-hxy-u.1hr.30S-90S", + "atmos.co2.tavg-h2m-hxy-u.mon.GLB", + "atmos.co2mass.tavg-u-hm-u.mon.GLB", + "atmos.evspsbl.tavg-u-hxy-lnd.day.GLB", + "atmos.hfls.tavg-u-hxy-u.day.GLB", + "atmos.hfss.tavg-u-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.1hr.30S-90S", + "atmos.intuadse.tavg-u-hxy-u.day.GLB", + "atmos.intuadse.tavg-u-hxy-u.mon.GLB", + "atmos.intuaw.tavg-u-hxy-u.day.GLB", + "atmos.intuaw.tavg-u-hxy-u.mon.GLB", + "atmos.intvadse.tavg-u-hxy-u.day.GLB", + "atmos.intvadse.tavg-u-hxy-u.mon.GLB", + "atmos.intvaw.tavg-u-hxy-u.day.GLB", + "atmos.intvaw.tavg-u-hxy-u.mon.GLB", + "atmos.pfull.tavg-al-hxy-u.day.GLB", + "atmos.pr.tavg-u-hxy-u.1hr.30S-90S", + "atmos.pr17O.tavg-u-hxy-u.mon.GLB", + "atmos.pr18O.tavg-u-hxy-u.mon.GLB", + "atmos.pr2h.tavg-u-hxy-u.mon.GLB", + "atmos.prc.tavg-u-hxy-u.day.GLB", + "atmos.prra.tavg-u-hxy-lnd.day.GLB", + "atmos.prra.tavg-u-hxy-u.mon.GLB", + "atmos.prsn.tavg-u-hxy-u.day.GLB", + "atmos.prsn18O.tavg-u-hxy-u.mon.GLB", + "atmos.prsn2h.tavg-u-hxy-u.mon.GLB", + "atmos.ps.tpt-u-hxy-u.1hr.30S-90S", + "atmos.psl.tpt-u-hxy-u.1hr.GLB", + "atmos.rlds.tavg-u-hxy-u.1hr.30S-90S", + "atmos.rlds.tavg-u-hxy-u.day.GLB", + "atmos.rlus.tavg-u-hxy-u.day.GLB", + "atmos.rlut.tavg-u-hxy-u.day.GLB", + "atmos.rsds.tavg-u-hxy-u.1hr.30S-90S", + "atmos.rsdt.tavg-u-hxy-u.day.GLB", + "atmos.rsus.tavg-u-hxy-u.day.GLB", + "atmos.rsut.tavg-u-hxy-u.day.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.1hr.30S-90S", + "atmos.tdps.tavg-h2m-hxy-u.mon.GLB", + "atmos.ts.tavg-u-hxy-u.day.GLB", + "atmos.ua.tpt-h100m-hxy-u.1hr.GLB", + "atmos.uas.tpt-h10m-hxy-u.1hr.GLB", + "atmos.va.tpt-h100m-hxy-u.1hr.GLB", + "atmos.vas.tpt-h10m-hxy-u.1hr.GLB", + "land.burntFractionAll.tavg-u-hxy-u.mon.GLB", + "land.cSoil.tavg-sl-hxy-lnd.mon.GLB", + "land.cSoil.tavg-u-hxy-lnd.mon.GLB", + "land.depthl.ti-u-hxy-u.fx.GLB", + "land.depthsl.ti-u-hxy-u.fx.GLB", + "land.evspsblpot.tavg-u-hxy-lnd.day.GLB", + "land.evspsblpot.tavg-u-hxy-lnd.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.day.GLB", + "land.mrros.tavg-u-hxy-lnd.day.GLB", + "land.mrsfl.tavg-sl-hxy-lnd.day.GLB", + "land.mrsfl.tavg-sl-hxy-lnd.mon.GLB", + "land.mrsll.tavg-sl-hxy-lnd.day.GLB", + "land.mrsll.tavg-sl-hxy-lnd.mon.GLB", + "land.mrso.tavg-u-hxy-lnd.day.GLB", + "land.mrsol.tavg-d10cm-hxy-lnd.day.GLB", + "land.mrsol.tavg-sl-hxy-lnd.day.GLB", + "land.mrsol.tavg-sl-hxy-lnd.mon.GLB", + "land.orog.ti-u-hxy-u.fx.30S-90S", + "land.rsds.tavg-u-hxy-lnd.mon.GLB", + "land.rsds.tavg-u-hxy-sn.mon.GLB", + "land.rsus.tavg-u-hxy-lnd.mon.GLB", + "land.rsus.tavg-u-hxy-sn.mon.GLB", + "land.sftgif.tavg-u-hxy-u.mon.GLB", + "land.sftlaf.ti-u-hxy-u.fx.GLB", + "land.tas.tavg-u-hxy-u.1hr.30S-90S", + "land.tsl.tavg-sl-hxy-lnd.day.GLB", + "land.tsl.tavg-sl-hxy-lnd.mon.GLB", + "landIce.acabf.tavg-u-hxy-is.mon.GLB", + "landIce.hfls.tavg-u-hxy-is.mon.GLB", + "landIce.hfss.tavg-u-hxy-is.mon.GLB", + "landIce.icem.tavg-u-hxy-is.mon.GLB", + "landIce.litemptop.tavg-u-hxy-is.mon.GLB", + "landIce.lithk.ti-u-hxy-u.fx.GLB", + "landIce.mrro.tavg-u-hxy-is.mon.GLB", + "landIce.orog.tavg-u-hxy-is.mon.GLB", + "landIce.prra.tavg-u-hxy-is.mon.GLB", + "landIce.prsn.tavg-u-hxy-is.mon.GLB", + "landIce.rlds.tavg-u-hxy-is.mon.GLB", + "landIce.rlus.tavg-u-hxy-is.mon.GLB", + "landIce.rsds.tavg-u-hxy-is.mon.GLB", + "landIce.rsus.tavg-u-hxy-is.mon.GLB", + "landIce.sbl.tavg-u-hxy-is.mon.GLB", + "landIce.sbl.tavg-u-hxy-u.mon.GLB", + "landIce.sftflf.tavg-u-hxy-u.mon.GLB", + "landIce.sftflf.ti-u-hxy-u.fx.GLB", + "landIce.sftgrf.tavg-u-hxy-u.mon.GLB", + "landIce.sftgrf.ti-u-hxy-u.fx.GLB", + "landIce.snc.tavg-u-hxy-is.mon.GLB", + "landIce.snd.tavg-u-hxy-lnd.mon.GLB", + "landIce.snicem.tavg-u-hxy-is.mon.GLB", + "landIce.snm.tavg-u-hxy-is.mon.GLB", + "landIce.snm.tavg-u-hxy-lnd.mon.GLB", + "landIce.snrefr.tavg-u-hxy-is.mon.GLB", + "landIce.tas.tavg-u-hxy-is.mon.GLB", + "landIce.ts.tavg-u-hxy-is.mon.GLB", + "landIce.tsn.tavg-u-hxy-is.mon.GLB", + "landIce.tsn.tavg-u-hxy-lnd.mon.GLB", + "ocean.absscint.tavg-op4-hxy-sea.mon.GLB", + "ocean.agessc.tavg-ol-hxy-sea.mon.GLB", + "ocean.bigthetao.tavg-ol-hm-sea.mon.GLB", + "ocean.bigthetao.tavg-ol-hxy-sea.dec.GLB", + "ocean.bigthetao.tavg-op20bar-hxy-sea.day.GLB", + "ocean.chcint.tavg-op4-hxy-sea.mon.GLB", + "ocean.ficeberg.tavg-u-hxy-sea.mon.GLB", + "ocean.flandice.tavg-u-hxy-sea.mon.GLB", + "ocean.hfbasin.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpmadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpmdiff.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpsmadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfgeou.tavg-u-hxy-sea.mon.GLB", + "ocean.hfx.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfx.tavg-u-hxy-sea.day.GLB", + "ocean.hfx.tavg-u-hxy-sea.mon.GLB", + "ocean.hfy.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfy.tavg-u-hxy-sea.day.GLB", + "ocean.hfy.tavg-u-hxy-sea.mon.GLB", + "ocean.htovgyre.tavg-u-hyb-sea.mon.GLB", + "ocean.htovovrt.tavg-u-hyb-sea.mon.GLB", + "ocean.masscello.tavg-ol-hxy-sea.dec.GLB", + "ocean.masso.tavg-u-hm-sea.dec.GLB", + "ocean.masso.tavg-u-hm-sea.mon.GLB", + "ocean.mlotst.tavg-u-hxy-sea.day.GLB", + "ocean.mlotst.tmax-u-hxy-sea.mon.GLB", + "ocean.mlotst.tmin-u-hxy-sea.mon.GLB", + "ocean.mpw.tavg-u-hxy-sea.mon.GLB", + "ocean.mpw.tpt-u-hxy-sea.3hr.GLB", + "ocean.mpwswell.tavg-u-hxy-sea.mon.GLB", + "ocean.mpwswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.mpwwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.mpwwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.msftbarot.tavg-u-hxy-sea.mon.GLB", + "ocean.msftm.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftm.tavg-rho-hyb-sea.mon.GLB", + "ocean.msfty.tavg-ol-ht-sea.mon.GLB", + "ocean.msfty.tavg-rho-ht-sea.mon.GLB", + "ocean.obvfsq.tavg-ol-hxy-sea.mon.GLB", + "ocean.opottemptend.tavg-ol-hxy-sea.yr.GLB", + "ocean.pbo.tavg-u-hxy-sea.mon.GLB", + "ocean.pfscint.tavg-op4-hxy-sea.mon.GLB", + "ocean.phcint.tavg-op4-hxy-sea.mon.GLB", + "ocean.pso.tavg-u-hxy-sea.mon.GLB", + "ocean.rsds.tavg-u-hxy-ifs.mon.GLB", + "ocean.rsus.tavg-u-hxy-ifs.mon.GLB", + "ocean.scint.tavg-op4-hxy-sea.mon.GLB", + "ocean.sduo.tavg-u-hxy-sea.mon.GLB", + "ocean.sduo.tpt-u-hxy-sea.3hr.GLB", + "ocean.sdvo.tavg-u-hxy-sea.mon.GLB", + "ocean.sdvo.tpt-u-hxy-sea.3hr.GLB", + "ocean.sfx.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfx.tavg-u-hxy-sea.mon.GLB", + "ocean.sfy.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfy.tavg-u-hxy-sea.mon.GLB", + "ocean.sltbasin.tavg-u-hyb-sea.mon.GLB", + "ocean.sltovgyre.tavg-u-hyb-sea.mon.GLB", + "ocean.sltovovrt.tavg-u-hyb-sea.mon.GLB", + "ocean.so.tavg-ol-hm-sea.mon.GLB", + "ocean.so.tavg-ol-hxy-sea.dec.GLB", + "ocean.sob.tavg-u-hxy-sea.mon.GLB", + "ocean.sos.tavg-u-hm-sea.mon.GLB", + "ocean.sw17O.tavg-ol-hxy-sea.mon.GLB", + "ocean.sw18O.tavg-ol-hxy-sea.mon.GLB", + "ocean.sw2H.tavg-ol-hxy-sea.mon.GLB", + "ocean.swh.tavg-u-hxy-sea.mon.GLB", + "ocean.swh.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhmax.tmax-u-hxy-sea.mon.GLB", + "ocean.swhmax.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhswell.tavg-u-hxy-sea.mon.GLB", + "ocean.swhswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.swhwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.tauuo.tavg-u-hxy-sea.dec.GLB", + "ocean.tauvo.tavg-u-hxy-sea.dec.GLB", + "ocean.thetao.tavg-ol-hm-sea.mon.GLB", + "ocean.thetao.tavg-ol-hxy-sea.dec.GLB", + "ocean.thetao.tavg-op20bar-hxy-sea.day.GLB", + "ocean.thkcello.tavg-ol-hxy-sea.dec.GLB", + "ocean.tob.tavg-u-hxy-sea.mon.GLB", + "ocean.tos.tavg-u-hm-sea.mon.GLB", + "ocean.tos.tpt-u-hxy-sea.3hr.GLB", + "ocean.tossq.tavg-u-hxy-sea.day.GLB", + "ocean.uos.tavg-u-hxy-sea.day.GLB", + "ocean.volcello.tavg-ol-hxy-sea.dec.GLB", + "ocean.volcello.tavg-ol-hxy-sea.mon.GLB", + "ocean.volcello.tavg-ol-hxy-sea.yr.GLB", + "ocean.volcello.ti-ol-hxy-sea.fx.GLB", + "ocean.volo.tavg-u-hm-sea.dec.GLB", + "ocean.volo.tavg-u-hm-sea.mon.GLB", + "ocean.vos.tavg-u-hxy-sea.day.GLB", + "ocean.wdir.tavg-u-hxy-sea.mon.GLB", + "ocean.wdir.tpt-u-hxy-sea.3hr.GLB", + "ocean.wdirswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wdirswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wdirwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wdirwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.wfcorr.tavg-u-hxy-sea.mon.GLB", + "ocean.wfo.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdir.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdir.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpdirswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdirswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpdirwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdirwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpp.tavg-u-hxy-sea.mon.GLB", + "ocean.wpp.tpt-u-hxy-sea.3hr.GLB", + "ocean.wppswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wppswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wppwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wppwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.zossq.tavg-u-hxy-sea.mon.GLB", + "ocean.zostoga.tavg-u-hm-sea.day.GLB", + "seaIce.evspsbl.tavg-u-hxy-si.mon.GLB", + "seaIce.prra.tavg-u-hxy-si.mon.GLB", + "seaIce.prsn.tavg-u-hxy-si.mon.GLB", + "seaIce.rlds.tavg-u-hxy-si.day.GLB", + "seaIce.rlds.tavg-u-hxy-si.mon.GLB", + "seaIce.rlus.tavg-u-hxy-si.day.GLB", + "seaIce.rlus.tavg-u-hxy-si.mon.GLB", + "seaIce.rsds.tavg-u-hxy-si.day.GLB", + "seaIce.rsds.tavg-u-hxy-si.mon.GLB", + "seaIce.rsus.tavg-u-hxy-si.day.GLB", + "seaIce.rsus.tavg-u-hxy-si.mon.GLB", + "seaIce.sbl.tavg-u-hxy-si.mon.GLB", + "seaIce.siage.tavg-u-hxy-si.day.GLB", + "seaIce.siarea.tavg-u-hm-u.mon.NH", + "seaIce.siarea.tavg-u-hm-u.mon.SH", + "seaIce.siareaacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.siconca.tavg-u-hxy-u.day.GLB", + "seaIce.siconca.tavg-u-hxy-u.mon.GLB", + "seaIce.sidconcdyn.tavg-u-hxy-sea.mon.GLB", + "seaIce.sidconcth.tavg-u-hxy-sea.mon.GLB", + "seaIce.sidmassdyn.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthsi.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthwat.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmeltbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmeltlat.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmelttop.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassth.tavg-u-hxy-si.mon.GLB", + "seaIce.sieqthick.tavg-u-hxy-si.mon.GLB", + "seaIce.siextent.tavg-u-hm-u.mon.NH", + "seaIce.siextent.tavg-u-hm-u.mon.SH", + "seaIce.siflcondbot.tavg-u-hxy-si.day.GLB", + "seaIce.siflcondbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflcondtop.tavg-u-hxy-si.day.GLB", + "seaIce.siflcondtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sifllattop.tavg-u-hxy-si.day.GLB", + "seaIce.sifllattop.tavg-u-hxy-si.mon.GLB", + "seaIce.siflsensbot.tavg-u-hxy-si.day.GLB", + "seaIce.siflsensbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflsenstop.tavg-u-hxy-si.day.GLB", + "seaIce.siflsenstop.tavg-u-hxy-si.mon.GLB", + "seaIce.siflswdbot.tavg-u-hxy-si.day.GLB", + "seaIce.siflswdbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sihc.tavg-u-hxy-sea.day.GLB", + "seaIce.sihc.tavg-u-hxy-sea.mon.GLB", + "seaIce.siitdconc.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdsnconc.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdsnthick.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdthick.tavg-u-hxy-si.mon.GLB", + "seaIce.simassacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.simpconc.tavg-u-hxy-si.mon.GLB", + "seaIce.sirdgconc.tavg-u-hxy-si.mon.GLB", + "seaIce.sisaltmass.tavg-u-hxy-si.mon.GLB", + "seaIce.sisndmassdyn.tavg-u-hxy-si.mon.GLB", + "seaIce.sisndmasssi.tavg-u-hxy-si.mon.GLB", + "seaIce.sisndmasswind.tavg-u-hxy-si.mon.GLB", + "seaIce.sisnhc.tavg-u-hxy-si.day.GLB", + "seaIce.sisnhc.tavg-u-hxy-si.mon.GLB", + "seaIce.sisnmass.tavg-u-hm-u.mon.NH", + "seaIce.sisnmass.tavg-u-hm-u.mon.SH", + "seaIce.sisnmassacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.sispeed.tavg-u-hxy-si.day.GLB", + "seaIce.sispeed.tavg-u-hxy-si.mon.GLB", + "seaIce.sistressave.tpt-u-hxy-si.mon.GLB", + "seaIce.sistressmax.tpt-u-hxy-si.mon.GLB", + "seaIce.sistrxdtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sistrxubot.tavg-u-hxy-si.mon.GLB", + "seaIce.sistrydtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sistryubot.tavg-u-hxy-si.mon.GLB", + "seaIce.sitempsnic.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-si.day.GLB", + "seaIce.sitimefrac.tavg-u-hxy-sea.day.GLB", + "seaIce.siu.tavg-u-hxy-si.day.GLB", + "seaIce.siv.tavg-u-hxy-si.day.GLB", + "seaIce.sivol.tavg-u-hm-u.mon.NH", + "seaIce.sivol.tavg-u-hm-u.mon.SH", + "seaIce.snc.tavg-u-hxy-si.mon.GLB", + "seaIce.snd.tavg-u-hxy-sn.day.GLB", + "seaIce.snm.tavg-u-hxy-si.mon.GLB", + "seaIce.snw.tavg-u-hxy-si.mon.GLB", + "seaIce.ts.tavg-u-hxy-si.day.GLB" + ], + "Medium": [ + "atmos.sfcWind.tmax-h10m-hxy-u.day.GLB", + "atmosChem.flashrate.tavg-u-hxy-u.day.GLB", + "ocean.evspsbl.tavg-u-hxy-ifs.mon.GLB", + "ocean.ficeberg.tavg-ol-hxy-sea.mon.GLB", + "ocean.friver.tavg-u-hxy-sea.mon.GLB", + "ocean.hfacrossline.tavg-u-ht-sea.mon.GLB", + "ocean.hfevapds.tavg-u-hxy-ifs.mon.GLB", + "ocean.hfibthermds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfibthermds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfrainds.tavg-u-hxy-ifs.mon.GLB", + "ocean.hfrunoffds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfrunoffds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfsnthermds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfsnthermds.tavg-u-hxy-sea.mon.GLB", + "ocean.mfo.tavg-u-ht-sea.mon.GLB", + "ocean.sfacrossline.tavg-u-ht-sea.mon.GLB", + "ocean.sfdsi.tavg-u-hxy-sea.mon.GLB", + "ocean.sfriver.tavg-u-hxy-sea.mon.GLB", + "ocean.siflfwbot.tavg-u-hxy-sea.mon.GLB", + "ocean.so.tavg-ol-hxy-sea.day.GLB", + "ocean.tnkebto.tavg-u-hxy-sea.yr.GLB", + "ocean.vsf.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfcorr.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfevap.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfpr.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfriver.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfsit.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.arag.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.arag.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.calc.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.calc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chl.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.dissic.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.o2.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.ph.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.talk.tavg-ol-hxy-sea.mon.GLB", + "seaIce.sfdsi.tavg-u-hxy-si.mon.GLB", + "seaIce.siage.tavg-u-hxy-si.mon.GLB", + "seaIce.siarea.tavg-u-hm-u.day.NH", + "seaIce.siarea.tavg-u-hm-u.day.SH", + "seaIce.sicompstren.tavg-u-hxy-si.mon.GLB", + "seaIce.sidivvel.tpt-u-hxy-si.mon.GLB", + "seaIce.sidmasstranx.tavg-u-hxy-u.mon.GLB", + "seaIce.sidmasstrany.tavg-u-hxy-u.mon.GLB", + "seaIce.sidragbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidragtop.tavg-u-hxy-si.mon.GLB", + "seaIce.siextent.tavg-u-hm-u.day.NH", + "seaIce.siextent.tavg-u-hm-u.day.SH", + "seaIce.sifb.tavg-u-hxy-si.day.GLB", + "seaIce.sifb.tavg-u-hxy-si.mon.GLB", + "seaIce.siflfwbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflfwdrain.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcecoriolx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcecorioly.tavg-u-hxy-si.mon.GLB", + "seaIce.siforceintstrx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforceintstry.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcetiltx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcetilty.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdconc.tavg-u-hxy-si.day.GLB", + "seaIce.siitdsnconc.tavg-u-hxy-si.day.GLB", + "seaIce.siitdsnthick.tavg-u-hxy-si.day.GLB", + "seaIce.siitdthick.tavg-u-hxy-si.day.GLB", + "seaIce.simpconc.tavg-u-hxy-si.day.GLB", + "seaIce.simpeffconc.tavg-u-hxy-si.day.GLB", + "seaIce.simpeffconc.tavg-u-hxy-si.mon.GLB", + "seaIce.simprefrozen.tavg-u-hxy-simp.day.GLB", + "seaIce.simprefrozen.tavg-u-hxy-simp.mon.GLB", + "seaIce.simpthick.tavg-u-hxy-si.day.GLB", + "seaIce.simpthick.tavg-u-hxy-simp.mon.GLB", + "seaIce.sirdgconc.tavg-u-hxy-si.day.GLB", + "seaIce.sisali.tavg-u-hxy-si.day.GLB", + "seaIce.sisali.tavg-u-hxy-si.mon.GLB", + "seaIce.sisaltmass.tavg-u-hxy-si.day.GLB", + "seaIce.sishearvel.tpt-u-hxy-si.mon.GLB", + "seaIce.sisnmass.tavg-u-hm-u.day.NH", + "seaIce.sisnmass.tavg-u-hm-u.day.SH", + "seaIce.sitempbot.tavg-u-hxy-si.day.GLB", + "seaIce.sitempbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sitempsnic.tavg-u-hxy-si.day.GLB", + "seaIce.sithick.tavg-u-hxy-sir.day.GLB", + "seaIce.sithick.tavg-u-hxy-sir.mon.GLB", + "seaIce.sivol.tavg-u-hm-u.day.NH", + "seaIce.sivol.tavg-u-hm-u.day.SH" + ], + "Low": [ + "ocean.difmxybo.tavg-ol-hxy-sea.yr.GLB", + "ocean.difmxylo.tavg-ol-hxy-sea.yr.GLB", + "ocean.diftrblo.tavg-ol-hxy-sea.yr.GLB", + "ocean.diftrelo.tavg-ol-hxy-sea.yr.GLB", + "ocean.difvho.tavg-ol-hxy-sea.yr.GLB", + "ocean.difvso.tavg-ol-hxy-sea.yr.GLB", + "ocean.dispkexyfo.tavg-u-hxy-sea.yr.GLB", + "ocean.dxto.ti-u-hxy-u.fx.GLB", + "ocean.dxuo.ti-u-hxy-u.fx.GLB", + "ocean.dxvo.ti-u-hxy-u.fx.GLB", + "ocean.dyto.ti-u-hxy-u.fx.GLB", + "ocean.dyuo.ti-u-hxy-u.fx.GLB", + "ocean.dyvo.ti-u-hxy-u.fx.GLB", + "ocean.mlotstsq.tavg-u-hxy-sea.mon.GLB", + "ocean.msftmmpa.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftmmpa.tavg-rho-hyb-sea.mon.GLB", + "ocean.msftmsmpa.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftypa.tavg-ol-ht-sea.mon.GLB", + "ocean.msftypa.tavg-rho-ht-sea.mon.GLB", + "ocean.ocontempdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontempmint.tavg-u-hxy-sea.yr.GLB", + "ocean.ocontemppadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemppmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemppsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemprmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemptend.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottempdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottempmint.tavg-u-hxy-sea.yr.GLB", + "ocean.opottemppadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemppmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemppsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemprmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemptend.tavg-ol-hxy-sea.dec.GLB", + "ocean.osaltdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpsmadvect.tavg-ol-hxy-sea.mon.GLB", + "ocean.osaltpsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltrmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osalttend.tavg-ol-hxy-sea.yr.GLB", + "ocean.rsdoabsorb.tavg-ol-hxy-sea.yr.GLB", + "ocean.somint.tavg-u-hxy-sea.yr.GLB", + "ocean.sossq.tavg-u-hxy-sea.mon.GLB", + "ocean.thkcelluo.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcellvo.tavg-ol-hxy-sea.mon.GLB", + "ocean.tnpeo.tavg-u-hxy-sea.yr.GLB", + "ocean.tossq.tavg-u-hxy-sea.mon.GLB" + ] + }, + "scenariomip2": { + "Core": [ + "atmos.areacella.ti-u-hxy-u.fx.GLB", + "atmos.cl.tavg-al-hxy-u.mon.GLB", + "atmos.cli.tavg-al-hxy-u.mon.GLB", + "atmos.clivi.tavg-u-hxy-u.mon.GLB", + "atmos.clt.tavg-u-hxy-u.day.GLB", + "atmos.clt.tavg-u-hxy-u.mon.GLB", + "atmos.clw.tavg-al-hxy-u.mon.GLB", + "atmos.clwvi.tavg-u-hxy-u.mon.GLB", + "atmos.evspsbl.tavg-u-hxy-u.mon.GLB", + "atmos.hfls.tavg-u-hxy-u.mon.GLB", + "atmos.hfss.tavg-u-hxy-u.mon.GLB", + "atmos.hur.tavg-p19-hxy-air.mon.GLB", + "atmos.hur.tavg-p19-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.6hr.GLB", + "atmos.hurs.tavg-h2m-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.mon.GLB", + "atmos.hus.tavg-p19-hxy-u.day.GLB", + "atmos.hus.tavg-p19-hxy-u.mon.GLB", + "atmos.huss.tavg-h2m-hxy-u.day.GLB", + "atmos.huss.tavg-h2m-hxy-u.mon.GLB", + "atmos.huss.tpt-h2m-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.1hr.GLB", + "atmos.pr.tavg-u-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.day.GLB", + "atmos.pr.tavg-u-hxy-u.mon.GLB", + "atmos.prc.tavg-u-hxy-u.mon.GLB", + "atmos.prsn.tavg-u-hxy-u.mon.GLB", + "atmos.prw.tavg-u-hxy-u.mon.GLB", + "atmos.ps.tavg-u-hxy-u.day.GLB", + "atmos.ps.tavg-u-hxy-u.mon.GLB", + "atmos.psl.tavg-u-hxy-u.day.GLB", + "atmos.psl.tavg-u-hxy-u.mon.GLB", + "atmos.rlds.tavg-u-hxy-u.mon.GLB", + "atmos.rldscs.tavg-u-hxy-u.mon.GLB", + "atmos.rlus.tavg-u-hxy-u.mon.GLB", + "atmos.rluscs.tavg-u-hxy-u.mon.GLB", + "atmos.rlut.tavg-u-hxy-u.mon.GLB", + "atmos.rlutcs.tavg-u-hxy-u.mon.GLB", + "atmos.rsds.tavg-u-hxy-u.day.GLB", + "atmos.rsds.tavg-u-hxy-u.mon.GLB", + "atmos.rsdscs.tavg-u-hxy-u.mon.GLB", + "atmos.rsdt.tavg-u-hxy-u.mon.GLB", + "atmos.rsus.tavg-u-hxy-u.mon.GLB", + "atmos.rsuscs.tavg-u-hxy-u.mon.GLB", + "atmos.rsut.tavg-u-hxy-u.mon.GLB", + "atmos.rsutcs.tavg-u-hxy-u.mon.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.day.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.mon.GLB", + "atmos.sftlf.ti-u-hxy-u.fx.GLB", + "atmos.ta.tavg-p19-hxy-air.day.GLB", + "atmos.ta.tavg-p19-hxy-air.mon.GLB", + "atmos.ta.tpt-p3-hxy-air.6hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.day.GLB", + "atmos.tas.tavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tmax-h2m-hxy-u.day.GLB", + "atmos.tas.tmaxavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tmin-h2m-hxy-u.day.GLB", + "atmos.tas.tminavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tpt-h2m-hxy-u.3hr.GLB", + "atmos.tauu.tavg-u-hxy-u.mon.GLB", + "atmos.tauv.tavg-u-hxy-u.mon.GLB", + "atmos.ts.tavg-u-hxy-u.mon.GLB", + "atmos.ua.tavg-p19-hxy-air.day.GLB", + "atmos.ua.tavg-p19-hxy-air.mon.GLB", + "atmos.ua.tpt-p3-hxy-air.6hr.GLB", + "atmos.uas.tavg-h10m-hxy-u.day.GLB", + "atmos.uas.tavg-h10m-hxy-u.mon.GLB", + "atmos.uas.tpt-h10m-hxy-u.3hr.GLB", + "atmos.va.tavg-p19-hxy-air.day.GLB", + "atmos.va.tavg-p19-hxy-air.mon.GLB", + "atmos.va.tpt-p3-hxy-air.6hr.GLB", + "atmos.vas.tavg-h10m-hxy-u.day.GLB", + "atmos.vas.tavg-h10m-hxy-u.mon.GLB", + "atmos.vas.tpt-h10m-hxy-u.3hr.GLB", + "atmos.wap.tavg-p19-hxy-air.mon.GLB", + "atmos.wap.tavg-p19-hxy-u.day.GLB", + "atmos.zg.tavg-p19-hxy-air.day.GLB", + "atmos.zg.tavg-p19-hxy-air.mon.GLB", + "land.evspsblsoi.tavg-u-hxy-lnd.mon.GLB", + "land.evspsblveg.tavg-u-hxy-lnd.mon.GLB", + "land.lai.tavg-u-hxy-lnd.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.mon.GLB", + "land.mrros.tavg-u-hxy-lnd.mon.GLB", + "land.mrso.tavg-u-hxy-lnd.mon.GLB", + "land.mrsofc.ti-u-hxy-lnd.fx.GLB", + "land.mrsol.tavg-d10cm-hxy-lnd.mon.GLB", + "land.orog.ti-u-hxy-u.fx.GLB", + "land.rootd.ti-u-hxy-lnd.fx.GLB", + "land.sftgif.ti-u-hxy-u.fx.GLB", + "land.slthick.ti-sl-hxy-lnd.fx.GLB", + "landIce.mrfso.tavg-u-hxy-lnd.mon.GLB", + "landIce.snc.tavg-u-hxy-lnd.mon.GLB", + "landIce.snw.tavg-u-hxy-lnd.mon.GLB", + "ocean.areacello.ti-u-hxy-u.fx.GLB", + "ocean.basin.ti-u-hxy-u.fx.GLB", + "ocean.bigthetao.tavg-ol-hxy-sea.mon.GLB", + "ocean.deptho.ti-u-hxy-sea.fx.GLB", + "ocean.hfds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfgeou.ti-u-hxy-sea.fx.GLB", + "ocean.masscello.tavg-ol-hxy-sea.mon.GLB", + "ocean.masscello.ti-ol-hxy-sea.fx.GLB", + "ocean.mlotst.tavg-u-hxy-sea.mon.GLB", + "ocean.sftof.ti-u-hxy-u.fx.GLB", + "ocean.so.tavg-ol-hxy-sea.mon.GLB", + "ocean.sos.tavg-u-hxy-sea.day.GLB", + "ocean.sos.tavg-u-hxy-sea.mon.GLB", + "ocean.tauuo.tavg-u-hxy-sea.mon.GLB", + "ocean.tauvo.tavg-u-hxy-sea.mon.GLB", + "ocean.thetao.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcello.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcello.ti-ol-hxy-sea.fx.GLB", + "ocean.tos.tavg-u-hxy-sea.day.GLB", + "ocean.tos.tavg-u-hxy-sea.mon.GLB", + "ocean.umo.tavg-ol-hxy-sea.mon.GLB", + "ocean.uo.tavg-ol-hxy-sea.mon.GLB", + "ocean.vmo.tavg-ol-hxy-sea.mon.GLB", + "ocean.vo.tavg-ol-hxy-sea.mon.GLB", + "ocean.wmo.tavg-ol-hxy-sea.mon.GLB", + "ocean.wo.tavg-ol-hxy-sea.mon.GLB", + "ocean.zos.tavg-u-hxy-sea.day.GLB", + "ocean.zos.tavg-u-hxy-sea.mon.GLB", + "ocean.zostoga.tavg-u-hm-sea.mon.GLB", + "seaIce.siconc.tavg-u-hxy-u.day.GLB", + "seaIce.siconc.tavg-u-hxy-u.mon.GLB", + "seaIce.simass.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-si.mon.GLB", + "seaIce.sitimefrac.tavg-u-hxy-sea.mon.GLB", + "seaIce.siu.tavg-u-hxy-si.mon.GLB", + "seaIce.siv.tavg-u-hxy-si.mon.GLB", + "seaIce.snd.tavg-u-hxy-sn.mon.GLB", + "seaIce.ts.tavg-u-hxy-si.mon.GLB" + ], + "High": [ + "aerosol.depdust.tavg-u-hxy-u.mon.GLB", + "atmos.co2.tavg-h2m-hxy-u.mon.GLB", + "atmos.co2.tclm-u-hm-u.mon.GLB", + "atmos.epfy.tavg-p39-hy-air.day.GLB", + "atmos.epfy.tavg-p39-hy-air.mon.GLB", + "atmos.epfz.tavg-p39-hy-air.day.GLB", + "atmos.epfz.tavg-p39-hy-air.mon.GLB", + "atmos.evspsbl.tavg-u-hxy-lnd.day.GLB", + "atmos.hfls.tavg-u-hxy-u.day.GLB", + "atmos.hfss.tavg-u-hxy-u.day.GLB", + "atmos.hurs.tpt-h2m-hxy-u.3hr.GLB", + "atmos.huss.tavg-h2m-hxy-u.6hr.GLB", + "atmos.huss.tpt-h2m-hxy-u.1hr.GLB", + "atmos.intuadse.tavg-u-hxy-u.day.GLB", + "atmos.intuadse.tavg-u-hxy-u.mon.GLB", + "atmos.intuaw.tavg-u-hxy-u.day.GLB", + "atmos.intuaw.tavg-u-hxy-u.mon.GLB", + "atmos.intvadse.tavg-u-hxy-u.day.GLB", + "atmos.intvadse.tavg-u-hxy-u.mon.GLB", + "atmos.intvaw.tavg-u-hxy-u.day.GLB", + "atmos.intvaw.tavg-u-hxy-u.mon.GLB", + "atmos.pr17O.tavg-u-hxy-u.mon.GLB", + "atmos.pr18O.tavg-u-hxy-u.mon.GLB", + "atmos.pr2h.tavg-u-hxy-u.mon.GLB", + "atmos.prra.tavg-u-hxy-lnd.day.GLB", + "atmos.prra.tavg-u-hxy-u.6hr.GLB", + "atmos.prra.tavg-u-hxy-u.mon.GLB", + "atmos.prsn.tavg-u-hxy-u.6hr.GLB", + "atmos.prsn.tavg-u-hxy-u.day.GLB", + "atmos.prsn18O.tavg-u-hxy-u.mon.GLB", + "atmos.prsn2h.tavg-u-hxy-u.mon.GLB", + "atmos.ps.tavg-u-hxy-u.6hr.GLB", + "atmos.psl.tpt-u-hxy-u.1hr.GLB", + "atmos.rlds.tavg-u-hxy-u.3hr.GLB", + "atmos.rlds.tavg-u-hxy-u.6hr.GLB", + "atmos.rlds.tavg-u-hxy-u.day.GLB", + "atmos.rlus.tavg-u-hxy-u.day.GLB", + "atmos.rlut.tavg-u-hxy-u.day.GLB", + "atmos.rsds.tavg-u-hxy-u.1hr.GLB", + "atmos.rsds.tavg-u-hxy-u.3hr.GLB", + "atmos.rsds.tavg-u-hxy-u.6hr.GLB", + "atmos.rsdt.tavg-u-hxy-u.day.GLB", + "atmos.rsus.tavg-u-hxy-u.day.GLB", + "atmos.rsut.tavg-u-hxy-u.day.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.6hr.GLB", + "atmos.ta.tavg-p39-hy-air.day.GLB", + "atmos.ta.tavg-p39-hy-air.mon.GLB", + "atmos.tas.tavg-h2m-hxy-u.6hr.GLB", + "atmos.tauu.tavg-u-hxy-u.day.GLB", + "atmos.tauunoegw.tavg-p39-hy-air.day.GLB", + "atmos.tauunowgw.tavg-p39-hy-air.day.GLB", + "atmos.tauuogw.tavg-p39-hy-air.day.GLB", + "atmos.tauv.tavg-u-hxy-u.day.GLB", + "atmos.tauvnogw.tavg-p39-hy-air.day.GLB", + "atmos.tauvogw.tavg-p39-hy-air.day.GLB", + "atmos.tdps.tavg-h2m-hxy-u.mon.GLB", + "atmos.tntmp.tavg-p39-hy-air.day.GLB", + "atmos.tntmp.tavg-p39-hy-air.mon.GLB", + "atmos.tntrl.tavg-p39-hy-air.day.GLB", + "atmos.tntrl.tavg-p39-hy-air.mon.GLB", + "atmos.tntrs.tavg-p39-hy-air.day.GLB", + "atmos.tntrs.tavg-p39-hy-air.mon.GLB", + "atmos.ts.tavg-u-hxy-u.6hr.GLB", + "atmos.ts.tavg-u-hxy-u.day.GLB", + "atmos.ua.tavg-p39-hy-air.day.GLB", + "atmos.ua.tavg-p39-hy-air.mon.GLB", + "atmos.ua.tpt-h100m-hxy-u.1hr.GLB", + "atmos.uas.tpt-h10m-hxy-u.1hr.GLB", + "atmos.utendepfd.tavg-p39-hy-air.day.GLB", + "atmos.utendepfd.tavg-p39-hy-air.mon.GLB", + "atmos.utendnogw.tavg-p39-hy-air.day.GLB", + "atmos.utendnogw.tavg-p39-hy-air.mon.GLB", + "atmos.utendogw.tavg-p39-hy-air.day.GLB", + "atmos.utendogw.tavg-p39-hy-air.mon.GLB", + "atmos.utendvtem.tavg-p39-hy-air.day.GLB", + "atmos.utendwtem.tavg-p39-hy-air.day.GLB", + "atmos.va.tpt-h100m-hxy-u.1hr.GLB", + "atmos.vas.tpt-h10m-hxy-u.1hr.GLB", + "atmos.vtem.tavg-p39-hy-air.day.GLB", + "atmos.vtem.tavg-p39-hy-air.mon.GLB", + "atmos.wsg.tmax-h100m-hxy-u.1hr.GLB", + "atmos.wsg.tmax-h10m-hxy-u.1hr.GLB", + "atmos.wtem.tavg-p39-hy-air.day.GLB", + "atmos.wtem.tavg-p39-hy-air.mon.GLB", + "atmos.zg.tavg-p39-hy-air.day.GLB", + "atmos.zg.tavg-p39-hy-air.mon.GLB", + "atmosChem.meanage.tavg-p39-hy-air.mon.GLB", + "land.burntFractionAll.tavg-u-hxy-u.mon.GLB", + "land.cSoil.tavg-sl-hxy-lnd.mon.GLB", + "land.cSoil.tavg-u-hxy-lnd.mon.GLB", + "land.depthl.ti-u-hxy-u.fx.GLB", + "land.depthsl.ti-u-hxy-u.fx.GLB", + "land.mrro.tavg-u-hxy-lnd.day.GLB", + "land.mrrob.tavg-u-hxy-lnd.day.GLB", + "land.mrros.tavg-u-hxy-lnd.day.GLB", + "land.mrsfl.tavg-sl-hxy-lnd.day.GLB", + "land.mrsfl.tavg-sl-hxy-lnd.mon.GLB", + "land.mrsll.tavg-sl-hxy-lnd.day.GLB", + "land.mrsll.tavg-sl-hxy-lnd.mon.GLB", + "land.mrsol.tavg-sl-hxy-lnd.day.GLB", + "land.mrsol.tavg-sl-hxy-lnd.mon.GLB", + "land.rsds.tavg-u-hxy-lnd.mon.GLB", + "land.rsds.tavg-u-hxy-sn.mon.GLB", + "land.rsus.tavg-u-hxy-lnd.mon.GLB", + "land.rsus.tavg-u-hxy-sn.mon.GLB", + "land.sftgif.tavg-u-hxy-u.mon.GLB", + "land.sftlaf.ti-u-hxy-u.fx.GLB", + "land.tas.tavg-u-hxy-u.1hr.GLB", + "land.tsl.tavg-sl-hxy-lnd.day.GLB", + "land.tsl.tavg-sl-hxy-lnd.mon.GLB", + "landIce.acabf.tavg-u-hxy-is.mon.GLB", + "landIce.hfls.tavg-u-hxy-is.mon.GLB", + "landIce.hfss.tavg-u-hxy-is.mon.GLB", + "landIce.icem.tavg-u-hxy-is.mon.GLB", + "landIce.litemptop.tavg-u-hxy-is.mon.GLB", + "landIce.lithk.ti-u-hxy-u.fx.GLB", + "landIce.mrro.tavg-u-hxy-is.mon.GLB", + "landIce.orog.tavg-u-hxy-is.mon.GLB", + "landIce.prra.tavg-u-hxy-is.mon.GLB", + "landIce.prsn.tavg-u-hxy-is.mon.GLB", + "landIce.rlds.tavg-u-hxy-is.mon.GLB", + "landIce.rlus.tavg-u-hxy-is.mon.GLB", + "landIce.rsds.tavg-u-hxy-is.mon.GLB", + "landIce.rsus.tavg-u-hxy-is.mon.GLB", + "landIce.sbl.tavg-u-hxy-is.mon.GLB", + "landIce.sbl.tavg-u-hxy-lnd.mon.GLB", + "landIce.sbl.tavg-u-hxy-u.mon.GLB", + "landIce.sftflf.tavg-u-hxy-u.mon.GLB", + "landIce.sftflf.ti-u-hxy-u.fx.GLB", + "landIce.sftgrf.tavg-u-hxy-u.mon.GLB", + "landIce.sftgrf.ti-u-hxy-u.fx.GLB", + "landIce.snc.tavg-u-hxy-is.mon.GLB", + "landIce.snd.tavg-u-hxy-lnd.mon.GLB", + "landIce.snicem.tavg-u-hxy-is.mon.GLB", + "landIce.snm.tavg-u-hxy-is.mon.GLB", + "landIce.snm.tavg-u-hxy-lnd.mon.GLB", + "landIce.snrefr.tavg-u-hxy-is.mon.GLB", + "landIce.tas.tavg-u-hxy-is.mon.GLB", + "landIce.ts.tavg-u-hxy-is.mon.GLB", + "landIce.tsn.tavg-u-hxy-is.mon.GLB", + "landIce.tsn.tavg-u-hxy-lnd.mon.GLB", + "ocean.absscint.tavg-op4-hxy-sea.mon.GLB", + "ocean.agessc.tavg-ol-hxy-sea.mon.GLB", + "ocean.bigthetao.tavg-ol-hm-sea.mon.GLB", + "ocean.bigthetao.tavg-ol-hxy-sea.dec.GLB", + "ocean.bigthetao.tavg-op20bar-hxy-sea.day.GLB", + "ocean.chcint.tavg-op4-hxy-sea.mon.GLB", + "ocean.ficeberg.tavg-u-hxy-sea.mon.GLB", + "ocean.flandice.tavg-u-hxy-sea.mon.GLB", + "ocean.hfbasin.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpmadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpmdiff.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpsmadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfgeou.tavg-u-hxy-sea.mon.GLB", + "ocean.hfx.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfx.tavg-u-hxy-sea.day.GLB", + "ocean.hfx.tavg-u-hxy-sea.mon.GLB", + "ocean.hfy.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfy.tavg-u-hxy-sea.day.GLB", + "ocean.hfy.tavg-u-hxy-sea.mon.GLB", + "ocean.htovgyre.tavg-u-hyb-sea.mon.GLB", + "ocean.htovovrt.tavg-u-hyb-sea.mon.GLB", + "ocean.masscello.tavg-ol-hxy-sea.dec.GLB", + "ocean.masso.tavg-u-hm-sea.dec.GLB", + "ocean.masso.tavg-u-hm-sea.mon.GLB", + "ocean.mlotst.tavg-u-hxy-sea.day.GLB", + "ocean.mlotst.tmax-u-hxy-sea.mon.GLB", + "ocean.mlotst.tmin-u-hxy-sea.mon.GLB", + "ocean.mpw.tavg-u-hxy-sea.mon.GLB", + "ocean.mpw.tpt-u-hxy-sea.3hr.GLB", + "ocean.mpwswell.tavg-u-hxy-sea.mon.GLB", + "ocean.mpwswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.mpwwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.mpwwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.msftbarot.tavg-u-hxy-sea.mon.GLB", + "ocean.msftm.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftm.tavg-rho-hyb-sea.mon.GLB", + "ocean.msfty.tavg-ol-ht-sea.mon.GLB", + "ocean.msfty.tavg-rho-ht-sea.mon.GLB", + "ocean.obvfsq.tavg-ol-hxy-sea.mon.GLB", + "ocean.opottemptend.tavg-ol-hxy-sea.yr.GLB", + "ocean.pbo.tavg-u-hxy-sea.mon.GLB", + "ocean.pfscint.tavg-op4-hxy-sea.mon.GLB", + "ocean.phcint.tavg-op4-hxy-sea.mon.GLB", + "ocean.pso.tavg-u-hxy-sea.mon.GLB", + "ocean.rsds.tavg-u-hxy-ifs.mon.GLB", + "ocean.rsus.tavg-u-hxy-ifs.mon.GLB", + "ocean.scint.tavg-op4-hxy-sea.mon.GLB", + "ocean.sduo.tavg-u-hxy-sea.mon.GLB", + "ocean.sduo.tpt-u-hxy-sea.3hr.GLB", + "ocean.sdvo.tavg-u-hxy-sea.mon.GLB", + "ocean.sdvo.tpt-u-hxy-sea.3hr.GLB", + "ocean.sfx.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfx.tavg-u-hxy-sea.mon.GLB", + "ocean.sfy.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfy.tavg-u-hxy-sea.mon.GLB", + "ocean.sltbasin.tavg-u-hyb-sea.mon.GLB", + "ocean.sltovgyre.tavg-u-hyb-sea.mon.GLB", + "ocean.sltovovrt.tavg-u-hyb-sea.mon.GLB", + "ocean.so.tavg-ol-hm-sea.mon.GLB", + "ocean.so.tavg-ol-hxy-sea.dec.GLB", + "ocean.sob.tavg-u-hxy-sea.mon.GLB", + "ocean.sos.tavg-u-hm-sea.mon.GLB", + "ocean.sw17O.tavg-ol-hxy-sea.mon.GLB", + "ocean.sw18O.tavg-ol-hxy-sea.mon.GLB", + "ocean.sw2H.tavg-ol-hxy-sea.mon.GLB", + "ocean.swh.tavg-u-hxy-sea.mon.GLB", + "ocean.swh.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhmax.tmax-u-hxy-sea.mon.GLB", + "ocean.swhmax.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhswell.tavg-u-hxy-sea.mon.GLB", + "ocean.swhswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.swhwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.tauuo.tavg-u-hxy-sea.dec.GLB", + "ocean.tauvo.tavg-u-hxy-sea.dec.GLB", + "ocean.thetao.tavg-ol-hm-sea.mon.GLB", + "ocean.thetao.tavg-ol-hxy-sea.dec.GLB", + "ocean.thetao.tavg-op20bar-hxy-sea.day.GLB", + "ocean.thkcello.tavg-ol-hxy-sea.dec.GLB", + "ocean.tob.tavg-u-hxy-sea.mon.GLB", + "ocean.tos.tavg-u-hm-sea.mon.GLB", + "ocean.tos.tpt-u-hxy-sea.3hr.GLB", + "ocean.tossq.tavg-u-hxy-sea.day.GLB", + "ocean.uos.tavg-u-hxy-sea.day.GLB", + "ocean.volcello.tavg-ol-hxy-sea.dec.GLB", + "ocean.volcello.tavg-ol-hxy-sea.mon.GLB", + "ocean.volcello.tavg-ol-hxy-sea.yr.GLB", + "ocean.volcello.ti-ol-hxy-sea.fx.GLB", + "ocean.volo.tavg-u-hm-sea.dec.GLB", + "ocean.volo.tavg-u-hm-sea.mon.GLB", + "ocean.vos.tavg-u-hxy-sea.day.GLB", + "ocean.wdir.tavg-u-hxy-sea.mon.GLB", + "ocean.wdir.tpt-u-hxy-sea.3hr.GLB", + "ocean.wdirswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wdirswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wdirwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wdirwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.wfcorr.tavg-u-hxy-sea.mon.GLB", + "ocean.wfo.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdir.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdir.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpdirswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdirswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpdirwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdirwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpp.tavg-u-hxy-sea.mon.GLB", + "ocean.wpp.tpt-u-hxy-sea.3hr.GLB", + "ocean.wppswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wppswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wppwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wppwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.zossq.tavg-u-hxy-sea.mon.GLB", + "ocean.zostoga.tavg-u-hm-sea.day.GLB", + "ocnBgchem.chl.tavg-d0m-hxy-sea.day.GLB", + "ocnBgchem.chl.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.detoc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dfe.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissic.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissoc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dmso.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.dpco2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.dpo2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.expc.tavg-d1000m-hxy-sea.mon.GLB", + "ocnBgchem.expc.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.expcalc.tavg-d1000m-hxy-sea.mon.GLB", + "ocnBgchem.expcalc.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.fgco2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fric.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.froc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.graz.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.intpp.tavg-u-hxy-sea.day.GLB", + "ocnBgchem.intpp.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.nh4.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.no3.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.o2.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.ph.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phyc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phycalc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phydiat.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phymisc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phypico.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.po4.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.si.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.spco2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.talk.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zmeso.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zmicro.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zmisc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zooc.tavg-ol-hxy-sea.mon.GLB", + "seaIce.evspsbl.tavg-u-hxy-si.mon.GLB", + "seaIce.prra.tavg-u-hxy-si.mon.GLB", + "seaIce.prsn.tavg-u-hxy-si.mon.GLB", + "seaIce.rlds.tavg-u-hxy-si.day.GLB", + "seaIce.rlds.tavg-u-hxy-si.mon.GLB", + "seaIce.rlus.tavg-u-hxy-si.day.GLB", + "seaIce.rlus.tavg-u-hxy-si.mon.GLB", + "seaIce.rsds.tavg-u-hxy-si.day.GLB", + "seaIce.rsds.tavg-u-hxy-si.mon.GLB", + "seaIce.rsus.tavg-u-hxy-si.day.GLB", + "seaIce.rsus.tavg-u-hxy-si.mon.GLB", + "seaIce.sbl.tavg-u-hxy-si.mon.GLB", + "seaIce.siage.tavg-u-hxy-si.day.GLB", + "seaIce.siarea.tavg-u-hm-u.mon.NH", + "seaIce.siarea.tavg-u-hm-u.mon.SH", + "seaIce.siareaacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.siconca.tavg-u-hxy-u.day.GLB", + "seaIce.siconca.tavg-u-hxy-u.mon.GLB", + "seaIce.sidconcdyn.tavg-u-hxy-sea.mon.GLB", + "seaIce.sidconcth.tavg-u-hxy-sea.mon.GLB", + "seaIce.sidmassdyn.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthsi.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthwat.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmeltbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmeltlat.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmelttop.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassth.tavg-u-hxy-si.mon.GLB", + "seaIce.sieqthick.tavg-u-hxy-si.mon.GLB", + "seaIce.siextent.tavg-u-hm-u.mon.NH", + "seaIce.siextent.tavg-u-hm-u.mon.SH", + "seaIce.siflcondbot.tavg-u-hxy-si.day.GLB", + "seaIce.siflcondbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflcondtop.tavg-u-hxy-si.day.GLB", + "seaIce.siflcondtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sifllattop.tavg-u-hxy-si.day.GLB", + "seaIce.sifllattop.tavg-u-hxy-si.mon.GLB", + "seaIce.siflsensbot.tavg-u-hxy-si.day.GLB", + "seaIce.siflsensbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflsenstop.tavg-u-hxy-si.day.GLB", + "seaIce.siflsenstop.tavg-u-hxy-si.mon.GLB", + "seaIce.siflswdbot.tavg-u-hxy-si.day.GLB", + "seaIce.siflswdbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sihc.tavg-u-hxy-sea.day.GLB", + "seaIce.sihc.tavg-u-hxy-sea.mon.GLB", + "seaIce.siitdconc.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdsnconc.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdsnthick.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdthick.tavg-u-hxy-si.mon.GLB", + "seaIce.simassacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.simpconc.tavg-u-hxy-si.mon.GLB", + "seaIce.sirdgconc.tavg-u-hxy-si.mon.GLB", + "seaIce.sisaltmass.tavg-u-hxy-si.mon.GLB", + "seaIce.sisndmassdyn.tavg-u-hxy-si.mon.GLB", + "seaIce.sisndmasssi.tavg-u-hxy-si.mon.GLB", + "seaIce.sisndmasswind.tavg-u-hxy-si.mon.GLB", + "seaIce.sisnhc.tavg-u-hxy-si.day.GLB", + "seaIce.sisnhc.tavg-u-hxy-si.mon.GLB", + "seaIce.sisnmass.tavg-u-hm-u.mon.NH", + "seaIce.sisnmass.tavg-u-hm-u.mon.SH", + "seaIce.sisnmassacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.sispeed.tavg-u-hxy-si.day.GLB", + "seaIce.sispeed.tavg-u-hxy-si.mon.GLB", + "seaIce.sistressave.tpt-u-hxy-si.mon.GLB", + "seaIce.sistressmax.tpt-u-hxy-si.mon.GLB", + "seaIce.sistrxdtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sistrxubot.tavg-u-hxy-si.mon.GLB", + "seaIce.sistrydtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sistryubot.tavg-u-hxy-si.mon.GLB", + "seaIce.sitempsnic.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-si.day.GLB", + "seaIce.sitimefrac.tavg-u-hxy-sea.day.GLB", + "seaIce.siu.tavg-u-hxy-si.day.GLB", + "seaIce.siv.tavg-u-hxy-si.day.GLB", + "seaIce.sivol.tavg-u-hm-u.mon.NH", + "seaIce.sivol.tavg-u-hm-u.mon.SH", + "seaIce.snc.tavg-u-hxy-si.mon.GLB", + "seaIce.snd.tavg-u-hxy-sn.day.GLB", + "seaIce.snm.tavg-u-hxy-si.mon.GLB", + "seaIce.snw.tavg-u-hxy-si.mon.GLB", + "seaIce.ts.tavg-u-hxy-si.day.GLB" + ], + "Medium": [ + "atmos.hfls.tavg-u-hxy-is.mon.ATA", + "atmos.hfls.tavg-u-hxy-is.mon.GRL", + "atmos.hfss.tavg-u-hxy-is.mon.ATA", + "atmos.hfss.tavg-u-hxy-is.mon.GRL", + "atmos.prra.tavg-u-hxy-is.mon.ATA", + "atmos.prra.tavg-u-hxy-is.mon.GRL", + "atmos.prsn.tavg-u-hxy-is.mon.ATA", + "atmos.prsn.tavg-u-hxy-is.mon.GRL", + "atmos.ps.tpt-u-hxy-u.1hr.GLB", + "atmos.psitem.tavg-p39-hy-air.day.GLB", + "atmos.rlds.tavg-u-hxy-is.mon.ATA", + "atmos.rlds.tavg-u-hxy-is.mon.GRL", + "atmos.rlds.tavg-u-hxy-u.1hr.GLB", + "atmos.rlus.tavg-u-hxy-is.mon.ATA", + "atmos.rlus.tavg-u-hxy-is.mon.GRL", + "atmos.rsds.tavg-u-hxy-is.mon.ATA", + "atmos.rsds.tavg-u-hxy-is.mon.GRL", + "atmos.rsdsdiff.tavg-u-hxy-u.1hr.GLB", + "atmos.rsus.tavg-u-hxy-is.mon.ATA", + "atmos.rsus.tavg-u-hxy-is.mon.GRL", + "atmos.sfcWind.tavg-h10m-hxy-u.1hr.GLB", + "atmos.tas.tavg-h2m-hm-is.mon.ATA", + "atmos.tas.tavg-h2m-hm-is.mon.GRL", + "atmos.tauunoegw.tavg-p19-hxy-air.mon.GLB", + "atmos.tauunowgw.tavg-p19-hxy-air.mon.GLB", + "atmos.tauuogw.tavg-p19-hxy-air.mon.GLB", + "atmos.tauupbl.tavg-u-hxy-u.day.GLB", + "atmos.tauvnogw.tavg-p19-hxy-air.mon.GLB", + "atmos.tauvogw.tavg-p19-hxy-air.mon.GLB", + "atmos.tauvpbl.tavg-u-hxy-u.day.GLB", + "atmos.tntc.tavg-p39-hy-air.mon.GLB", + "atmos.tntnogw.tavg-p39-hy-air.mon.GLB", + "atmos.tntogw.tavg-p39-hy-air.mon.GLB", + "atmos.tntrlcs.tavg-p39-hy-air.mon.GLB", + "atmos.tntrscs.tavg-p39-hy-air.mon.GLB", + "atmos.tntscp.tavg-p39-hy-air.mon.GLB", + "atmos.ts.tavg-u-hxy-is.mon.ATA", + "atmos.ts.tavg-u-hxy-is.mon.GRL", + "atmos.ts.tavg-u-hxy-u.1hr.GLB", + "atmos.utendnogw.tavg-p19-hxy-air.day.GLB", + "atmos.utendnogw.tavg-p19-hxy-air.mon.GLB", + "atmos.utendogw.tavg-p19-hxy-air.day.GLB", + "atmos.utendogw.tavg-p19-hxy-air.mon.GLB", + "atmos.vtendnogw.tavg-p19-hxy-air.day.GLB", + "atmos.vtendnogw.tavg-p19-hxy-air.mon.GLB", + "atmos.vtendogw.tavg-p19-hxy-air.day.GLB", + "atmos.vtendogw.tavg-p19-hxy-air.mon.GLB", + "atmos.wsg.tmax-h100m-hxy-u.mon.GLB", + "atmos.wsg.tmax-h10m-hxy-u.mon.GLB", + "land.areacellg.ti-u-hxy-u.fx.ATA", + "land.areacellg.ti-u-hxy-u.fx.GRL", + "land.mrso.tavg-u-hxy-lnd.day.GLB", + "land.orog.tavg-u-hxy-is.mon.ATA", + "land.orog.tavg-u-hxy-is.mon.GRL", + "land.orog.tavg-u-hxy-is.yr.ATA", + "land.orog.tavg-u-hxy-is.yr.GRL", + "land.sftgif.tavg-u-hxy-u.yr.ATA", + "land.sftgif.tavg-u-hxy-u.yr.GRL", + "landIce.acabf.tavg-u-hxy-is.mon.ATA", + "landIce.acabf.tavg-u-hxy-is.mon.GRL", + "landIce.acabf.tavg-u-hxy-is.yr.ATA", + "landIce.acabf.tavg-u-hxy-is.yr.GRL", + "landIce.hfgeoubed.tavg-u-hxy-gis.yr.ATA", + "landIce.hfgeoubed.tavg-u-hxy-gis.yr.GRL", + "landIce.hfgeoubed.ti-u-hxy-gis.fx.ATA", + "landIce.hfgeoubed.ti-u-hxy-gis.fx.GRL", + "landIce.iareafl.tavg-u-hm-fis.yr.ATA", + "landIce.iareafl.tavg-u-hm-fis.yr.GRL", + "landIce.iareagr.tavg-u-hm-gis.yr.ATA", + "landIce.iareagr.tavg-u-hm-gis.yr.GRL", + "landIce.icem.tavg-u-hxy-is.mon.ATA", + "landIce.icem.tavg-u-hxy-is.mon.GRL", + "landIce.libmassbf.tavg-u-hxy-fis.mon.ATA", + "landIce.libmassbf.tavg-u-hxy-fis.mon.GRL", + "landIce.libmassbf.tavg-u-hxy-fis.yr.ATA", + "landIce.libmassbf.tavg-u-hxy-fis.yr.GRL", + "landIce.libmassbf.tavg-u-hxy-gis.mon.ATA", + "landIce.libmassbf.tavg-u-hxy-gis.mon.GRL", + "landIce.libmassbf.tavg-u-hxy-gis.yr.ATA", + "landIce.libmassbf.tavg-u-hxy-gis.yr.GRL", + "landIce.licalvf.tavg-u-hxy-is.mon.ATA", + "landIce.licalvf.tavg-u-hxy-is.mon.GRL", + "landIce.licalvf.tavg-u-hxy-is.yr.ATA", + "landIce.licalvf.tavg-u-hxy-is.yr.GRL", + "landIce.lifmassbf.tavg-u-hxy-is.mon.ATA", + "landIce.lifmassbf.tavg-u-hxy-is.mon.GRL", + "landIce.lifmassbf.tavg-u-hxy-is.yr.ATA", + "landIce.lifmassbf.tavg-u-hxy-is.yr.GRL", + "landIce.lim.tavg-u-hm-is.yr.ATA", + "landIce.lim.tavg-u-hm-is.yr.GRL", + "landIce.limnsw.tavg-u-hm-is.yr.ATA", + "landIce.limnsw.tavg-u-hm-is.yr.GRL", + "landIce.litempbot.tavg-u-hxy-fis.mon.ATA", + "landIce.litempbot.tavg-u-hxy-fis.mon.GRL", + "landIce.litempbot.tavg-u-hxy-fis.yr.ATA", + "landIce.litempbot.tavg-u-hxy-fis.yr.GRL", + "landIce.litempbot.tavg-u-hxy-gis.mon.ATA", + "landIce.litempbot.tavg-u-hxy-gis.mon.GRL", + "landIce.litempbot.tavg-u-hxy-gis.yr.ATA", + "landIce.litempbot.tavg-u-hxy-gis.yr.GRL", + "landIce.litemptop.tavg-u-hxy-is.mon.ATA", + "landIce.litemptop.tavg-u-hxy-is.mon.GRL", + "landIce.litemptop.tavg-u-hxy-is.yr.ATA", + "landIce.litemptop.tavg-u-hxy-is.yr.GRL", + "landIce.lithk.tavg-u-hxy-is.yr.ATA", + "landIce.lithk.tavg-u-hxy-is.yr.GRL", + "landIce.lithk.ti-u-hxy-is.fx.ATA", + "landIce.lithk.ti-u-hxy-is.fx.GRL", + "landIce.modelcellareai.tavg-u-hxy-u.yr.ATA", + "landIce.modelcellareai.tavg-u-hxy-u.yr.GRL", + "landIce.mrroLi.tavg-u-hxy-is.mon.ATA", + "landIce.mrroLi.tavg-u-hxy-is.mon.GRL", + "landIce.sbl.tavg-u-hxy-is.mon.ATA", + "landIce.sbl.tavg-u-hxy-is.mon.GRL", + "landIce.sftflf.tavg-u-hxy-u.yr.ATA", + "landIce.sftflf.tavg-u-hxy-u.yr.GRL", + "landIce.sftgrf.tavg-u-hxy-u.yr.ATA", + "landIce.sftgrf.tavg-u-hxy-u.yr.GRL", + "landIce.snc.tavg-u-hxy-is.mon.ATA", + "landIce.snc.tavg-u-hxy-is.mon.GRL", + "landIce.snc.tavg-u-hxy-is.yr.ATA", + "landIce.snc.tavg-u-hxy-is.yr.GRL", + "landIce.snicem.tavg-u-hxy-is.mon.ATA", + "landIce.snicem.tavg-u-hxy-is.mon.GRL", + "landIce.snm.tavg-u-hxy-is.mon.ATA", + "landIce.snm.tavg-u-hxy-is.mon.GRL", + "landIce.snrefr.tavg-u-hxy-is.mon.ATA", + "landIce.snrefr.tavg-u-hxy-is.mon.GRL", + "landIce.strbasemag.tavg-u-hxy-is.yr.ATA", + "landIce.strbasemag.tavg-u-hxy-is.yr.GRL", + "landIce.tendacabf.tavg-u-hm-is.yr.ATA", + "landIce.tendacabf.tavg-u-hm-is.yr.GRL", + "landIce.tendlibmassbf.tavg-u-hm-is.yr.ATA", + "landIce.tendlibmassbf.tavg-u-hm-is.yr.GRL", + "landIce.tendlicalvf.tavg-u-hm-is.yr.ATA", + "landIce.tendlicalvf.tavg-u-hm-is.yr.GRL", + "landIce.topg.tavg-u-hxy-gis.yr.ATA", + "landIce.topg.tavg-u-hxy-gis.yr.GRL", + "landIce.topg.ti-u-hxy-gis.fx.ATA", + "landIce.topg.ti-u-hxy-gis.fx.GRL", + "landIce.tsn.tavg-u-hxy-is.mon.ATA", + "landIce.tsn.tavg-u-hxy-is.mon.GRL", + "landIce.xvelbase.tavg-u-hxy-is.yr.ATA", + "landIce.xvelbase.tavg-u-hxy-is.yr.GRL", + "landIce.xvelmean.tavg-u-hxy-is.yr.ATA", + "landIce.xvelmean.tavg-u-hxy-is.yr.GRL", + "landIce.xvelsurf.tavg-u-hxy-is.yr.ATA", + "landIce.xvelsurf.tavg-u-hxy-is.yr.GRL", + "landIce.yvelbase.tavg-u-hxy-is.yr.ATA", + "landIce.yvelbase.tavg-u-hxy-is.yr.GRL", + "landIce.yvelmean.tavg-u-hxy-is.yr.ATA", + "landIce.yvelmean.tavg-u-hxy-is.yr.GRL", + "landIce.yvelsurf.tavg-u-hxy-is.yr.ATA", + "landIce.yvelsurf.tavg-u-hxy-is.yr.GRL", + "landIce.zvelbase.tavg-u-hxy-is.yr.ATA", + "landIce.zvelbase.tavg-u-hxy-is.yr.GRL", + "landIce.zvelsurf.tavg-u-hxy-is.yr.ATA", + "landIce.zvelsurf.tavg-u-hxy-is.yr.GRL", + "ocean.evspsbl.tavg-u-hxy-ifs.mon.GLB", + "ocean.ficeberg.tavg-ol-hxy-sea.mon.GLB", + "ocean.friver.tavg-u-hxy-sea.mon.GLB", + "ocean.hfacrossline.tavg-u-ht-sea.mon.GLB", + "ocean.hfevapds.tavg-u-hxy-ifs.mon.GLB", + "ocean.hfibthermds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfibthermds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfrainds.tavg-u-hxy-ifs.mon.GLB", + "ocean.hfrunoffds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfrunoffds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfsnthermds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfsnthermds.tavg-u-hxy-sea.mon.GLB", + "ocean.mfo.tavg-u-ht-sea.mon.GLB", + "ocean.sfacrossline.tavg-u-ht-sea.mon.GLB", + "ocean.sfdsi.tavg-u-hxy-sea.mon.GLB", + "ocean.sfriver.tavg-u-hxy-sea.mon.GLB", + "ocean.siflfwbot.tavg-u-hxy-sea.mon.GLB", + "ocean.so.tavg-ol-hxy-sea.day.GLB", + "ocean.t17d.tavg-u-hxy-sea.mon.GLB", + "ocean.t20d.tavg-u-hxy-sea.mon.GLB", + "ocean.tnkebto.tavg-u-hxy-sea.yr.GLB", + "ocean.vsf.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfcorr.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfevap.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfpr.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfriver.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfsit.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.arag.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.arag.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.calc.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.calc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chl.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.detoc.tavg-ol-hxy-sea.day.GLB", + "ocnBgchem.dissoc.tavg-ol-hxy-sea.day.GLB", + "ocnBgchem.exparagob.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.expc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.expcalc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.expcalcob.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.expcob.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.expfeob.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.expnob.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.exppob.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.expsiob.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.frfe.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.frn.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppcalc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppdiat.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppdiaz.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppmisc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppnano.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intpppico.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limfecalc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limfediat.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limfediaz.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limfemisc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limfepico.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limirrcalc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limirrdiat.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limirrdiaz.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limirrmisc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limirrpico.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limncalc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limndiat.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limndiaz.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limnmisc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limnpico.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.o2.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.o2sat.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.ph.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.pp.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.sialgc.tavg-u-hxy-si.mon.GLB", + "ocnBgchem.sichl.tavg-u-hxy-si.mon.GLB", + "ocnBgchem.sigpp.tavg-u-hxy-si.mon.GLB", + "ocnBgchem.sino3.tavg-u-hxy-si.mon.GLB", + "ocnBgchem.sisi.tavg-u-hxy-si.mon.GLB", + "seaIce.sfdsi.tavg-u-hxy-si.mon.GLB", + "seaIce.siage.tavg-u-hxy-si.mon.GLB", + "seaIce.siarea.tavg-u-hm-u.day.NH", + "seaIce.siarea.tavg-u-hm-u.day.SH", + "seaIce.sicompstren.tavg-u-hxy-si.mon.GLB", + "seaIce.sidivvel.tpt-u-hxy-si.mon.GLB", + "seaIce.sidmasstranx.tavg-u-hxy-u.mon.GLB", + "seaIce.sidmasstrany.tavg-u-hxy-u.mon.GLB", + "seaIce.sidragbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidragtop.tavg-u-hxy-si.mon.GLB", + "seaIce.siextent.tavg-u-hm-u.day.NH", + "seaIce.siextent.tavg-u-hm-u.day.SH", + "seaIce.sifb.tavg-u-hxy-si.day.GLB", + "seaIce.sifb.tavg-u-hxy-si.mon.GLB", + "seaIce.siflfwbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflfwdrain.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcecoriolx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcecorioly.tavg-u-hxy-si.mon.GLB", + "seaIce.siforceintstrx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforceintstry.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcetiltx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcetilty.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdconc.tavg-u-hxy-si.day.GLB", + "seaIce.siitdsnconc.tavg-u-hxy-si.day.GLB", + "seaIce.siitdsnthick.tavg-u-hxy-si.day.GLB", + "seaIce.siitdthick.tavg-u-hxy-si.day.GLB", + "seaIce.simpconc.tavg-u-hxy-si.day.GLB", + "seaIce.simpeffconc.tavg-u-hxy-si.day.GLB", + "seaIce.simpeffconc.tavg-u-hxy-si.mon.GLB", + "seaIce.simprefrozen.tavg-u-hxy-simp.day.GLB", + "seaIce.simprefrozen.tavg-u-hxy-simp.mon.GLB", + "seaIce.simpthick.tavg-u-hxy-si.day.GLB", + "seaIce.simpthick.tavg-u-hxy-simp.mon.GLB", + "seaIce.sirdgconc.tavg-u-hxy-si.day.GLB", + "seaIce.sisali.tavg-u-hxy-si.day.GLB", + "seaIce.sisali.tavg-u-hxy-si.mon.GLB", + "seaIce.sisaltmass.tavg-u-hxy-si.day.GLB", + "seaIce.sishearvel.tpt-u-hxy-si.mon.GLB", + "seaIce.sisnmass.tavg-u-hm-u.day.NH", + "seaIce.sisnmass.tavg-u-hm-u.day.SH", + "seaIce.sitempbot.tavg-u-hxy-si.day.GLB", + "seaIce.sitempbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sitempsnic.tavg-u-hxy-si.day.GLB", + "seaIce.sithick.tavg-u-hxy-sir.day.GLB", + "seaIce.sithick.tavg-u-hxy-sir.mon.GLB", + "seaIce.sivol.tavg-u-hm-u.day.NH", + "seaIce.sivol.tavg-u-hm-u.day.SH" + ], + "Low": [ + "aerosol.abs550aer.tavg-u-hxy-u.mon.GLB", + "atmosChem.flashrate.tavg-u-hxy-u.mon.GLB", + "ocean.difmxybo.tavg-ol-hxy-sea.yr.GLB", + "ocean.difmxylo.tavg-ol-hxy-sea.yr.GLB", + "ocean.diftrblo.tavg-ol-hxy-sea.yr.GLB", + "ocean.diftrelo.tavg-ol-hxy-sea.yr.GLB", + "ocean.difvho.tavg-ol-hxy-sea.yr.GLB", + "ocean.difvso.tavg-ol-hxy-sea.yr.GLB", + "ocean.dispkexyfo.tavg-u-hxy-sea.yr.GLB", + "ocean.dxto.ti-u-hxy-u.fx.GLB", + "ocean.dxuo.ti-u-hxy-u.fx.GLB", + "ocean.dxvo.ti-u-hxy-u.fx.GLB", + "ocean.dyto.ti-u-hxy-u.fx.GLB", + "ocean.dyuo.ti-u-hxy-u.fx.GLB", + "ocean.dyvo.ti-u-hxy-u.fx.GLB", + "ocean.mlotstsq.tavg-u-hxy-sea.mon.GLB", + "ocean.msftmmpa.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftmmpa.tavg-rho-hyb-sea.mon.GLB", + "ocean.msftmsmpa.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftypa.tavg-ol-ht-sea.mon.GLB", + "ocean.msftypa.tavg-rho-ht-sea.mon.GLB", + "ocean.ocontempdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontempmint.tavg-u-hxy-sea.yr.GLB", + "ocean.ocontemppadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemppmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemppsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemprmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemptend.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottempdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottempmint.tavg-u-hxy-sea.yr.GLB", + "ocean.opottemppadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemppmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemppsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemprmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemptend.tavg-ol-hxy-sea.dec.GLB", + "ocean.osaltdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpsmadvect.tavg-ol-hxy-sea.mon.GLB", + "ocean.osaltpsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltrmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osalttend.tavg-ol-hxy-sea.yr.GLB", + "ocean.rsdoabsorb.tavg-ol-hxy-sea.yr.GLB", + "ocean.somint.tavg-u-hxy-sea.yr.GLB", + "ocean.sossq.tavg-u-hxy-sea.mon.GLB", + "ocean.thkcelluo.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcellvo.tavg-ol-hxy-sea.mon.GLB", + "ocean.tnpeo.tavg-u-hxy-sea.yr.GLB", + "ocean.tossq.tavg-u-hxy-sea.mon.GLB" + ] + }, + "scenariomip20": { + "Core": [ + "atmos.areacella.ti-u-hxy-u.fx.GLB", + "atmos.cl.tavg-al-hxy-u.mon.GLB", + "atmos.cli.tavg-al-hxy-u.mon.GLB", + "atmos.clivi.tavg-u-hxy-u.mon.GLB", + "atmos.clt.tavg-u-hxy-u.day.GLB", + "atmos.clt.tavg-u-hxy-u.mon.GLB", + "atmos.clw.tavg-al-hxy-u.mon.GLB", + "atmos.clwvi.tavg-u-hxy-u.mon.GLB", + "atmos.evspsbl.tavg-u-hxy-u.mon.GLB", + "atmos.hfls.tavg-u-hxy-u.mon.GLB", + "atmos.hfss.tavg-u-hxy-u.mon.GLB", + "atmos.hur.tavg-p19-hxy-air.mon.GLB", + "atmos.hur.tavg-p19-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.6hr.GLB", + "atmos.hurs.tavg-h2m-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.mon.GLB", + "atmos.hus.tavg-p19-hxy-u.day.GLB", + "atmos.hus.tavg-p19-hxy-u.mon.GLB", + "atmos.huss.tavg-h2m-hxy-u.day.GLB", + "atmos.huss.tavg-h2m-hxy-u.mon.GLB", + "atmos.huss.tpt-h2m-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.1hr.GLB", + "atmos.pr.tavg-u-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.day.GLB", + "atmos.pr.tavg-u-hxy-u.mon.GLB", + "atmos.prc.tavg-u-hxy-u.mon.GLB", + "atmos.prsn.tavg-u-hxy-u.mon.GLB", + "atmos.prw.tavg-u-hxy-u.mon.GLB", + "atmos.ps.tavg-u-hxy-u.day.GLB", + "atmos.ps.tavg-u-hxy-u.mon.GLB", + "atmos.psl.tavg-u-hxy-u.day.GLB", + "atmos.psl.tavg-u-hxy-u.mon.GLB", + "atmos.rlds.tavg-u-hxy-u.mon.GLB", + "atmos.rldscs.tavg-u-hxy-u.mon.GLB", + "atmos.rlus.tavg-u-hxy-u.mon.GLB", + "atmos.rluscs.tavg-u-hxy-u.mon.GLB", + "atmos.rlut.tavg-u-hxy-u.mon.GLB", + "atmos.rlutcs.tavg-u-hxy-u.mon.GLB", + "atmos.rsds.tavg-u-hxy-u.day.GLB", + "atmos.rsds.tavg-u-hxy-u.mon.GLB", + "atmos.rsdscs.tavg-u-hxy-u.mon.GLB", + "atmos.rsdt.tavg-u-hxy-u.mon.GLB", + "atmos.rsus.tavg-u-hxy-u.mon.GLB", + "atmos.rsuscs.tavg-u-hxy-u.mon.GLB", + "atmos.rsut.tavg-u-hxy-u.mon.GLB", + "atmos.rsutcs.tavg-u-hxy-u.mon.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.day.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.mon.GLB", + "atmos.sftlf.ti-u-hxy-u.fx.GLB", + "atmos.ta.tavg-p19-hxy-air.day.GLB", + "atmos.ta.tavg-p19-hxy-air.mon.GLB", + "atmos.ta.tpt-p3-hxy-air.6hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.day.GLB", + "atmos.tas.tavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tmax-h2m-hxy-u.day.GLB", + "atmos.tas.tmaxavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tmin-h2m-hxy-u.day.GLB", + "atmos.tas.tminavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tpt-h2m-hxy-u.3hr.GLB", + "atmos.tauu.tavg-u-hxy-u.mon.GLB", + "atmos.tauv.tavg-u-hxy-u.mon.GLB", + "atmos.ts.tavg-u-hxy-u.mon.GLB", + "atmos.ua.tavg-p19-hxy-air.day.GLB", + "atmos.ua.tavg-p19-hxy-air.mon.GLB", + "atmos.ua.tpt-p3-hxy-air.6hr.GLB", + "atmos.uas.tavg-h10m-hxy-u.day.GLB", + "atmos.uas.tavg-h10m-hxy-u.mon.GLB", + "atmos.uas.tpt-h10m-hxy-u.3hr.GLB", + "atmos.va.tavg-p19-hxy-air.day.GLB", + "atmos.va.tavg-p19-hxy-air.mon.GLB", + "atmos.va.tpt-p3-hxy-air.6hr.GLB", + "atmos.vas.tavg-h10m-hxy-u.day.GLB", + "atmos.vas.tavg-h10m-hxy-u.mon.GLB", + "atmos.vas.tpt-h10m-hxy-u.3hr.GLB", + "atmos.wap.tavg-p19-hxy-air.mon.GLB", + "atmos.wap.tavg-p19-hxy-u.day.GLB", + "atmos.zg.tavg-p19-hxy-air.day.GLB", + "atmos.zg.tavg-p19-hxy-air.mon.GLB", + "land.evspsblsoi.tavg-u-hxy-lnd.mon.GLB", + "land.evspsblveg.tavg-u-hxy-lnd.mon.GLB", + "land.lai.tavg-u-hxy-lnd.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.mon.GLB", + "land.mrros.tavg-u-hxy-lnd.mon.GLB", + "land.mrso.tavg-u-hxy-lnd.mon.GLB", + "land.mrsofc.ti-u-hxy-lnd.fx.GLB", + "land.mrsol.tavg-d10cm-hxy-lnd.mon.GLB", + "land.orog.ti-u-hxy-u.fx.GLB", + "land.rootd.ti-u-hxy-lnd.fx.GLB", + "land.sftgif.ti-u-hxy-u.fx.GLB", + "land.slthick.ti-sl-hxy-lnd.fx.GLB", + "landIce.mrfso.tavg-u-hxy-lnd.mon.GLB", + "landIce.snc.tavg-u-hxy-lnd.mon.GLB", + "landIce.snw.tavg-u-hxy-lnd.mon.GLB", + "ocean.areacello.ti-u-hxy-u.fx.GLB", + "ocean.basin.ti-u-hxy-u.fx.GLB", + "ocean.bigthetao.tavg-ol-hxy-sea.mon.GLB", + "ocean.deptho.ti-u-hxy-sea.fx.GLB", + "ocean.hfds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfgeou.ti-u-hxy-sea.fx.GLB", + "ocean.masscello.tavg-ol-hxy-sea.mon.GLB", + "ocean.masscello.ti-ol-hxy-sea.fx.GLB", + "ocean.mlotst.tavg-u-hxy-sea.mon.GLB", + "ocean.sftof.ti-u-hxy-u.fx.GLB", + "ocean.so.tavg-ol-hxy-sea.mon.GLB", + "ocean.sos.tavg-u-hxy-sea.day.GLB", + "ocean.sos.tavg-u-hxy-sea.mon.GLB", + "ocean.tauuo.tavg-u-hxy-sea.mon.GLB", + "ocean.tauvo.tavg-u-hxy-sea.mon.GLB", + "ocean.thetao.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcello.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcello.ti-ol-hxy-sea.fx.GLB", + "ocean.tos.tavg-u-hxy-sea.day.GLB", + "ocean.tos.tavg-u-hxy-sea.mon.GLB", + "ocean.umo.tavg-ol-hxy-sea.mon.GLB", + "ocean.uo.tavg-ol-hxy-sea.mon.GLB", + "ocean.vmo.tavg-ol-hxy-sea.mon.GLB", + "ocean.vo.tavg-ol-hxy-sea.mon.GLB", + "ocean.wmo.tavg-ol-hxy-sea.mon.GLB", + "ocean.wo.tavg-ol-hxy-sea.mon.GLB", + "ocean.zos.tavg-u-hxy-sea.day.GLB", + "ocean.zos.tavg-u-hxy-sea.mon.GLB", + "ocean.zostoga.tavg-u-hm-sea.mon.GLB", + "seaIce.siconc.tavg-u-hxy-u.day.GLB", + "seaIce.siconc.tavg-u-hxy-u.mon.GLB", + "seaIce.simass.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-si.mon.GLB", + "seaIce.sitimefrac.tavg-u-hxy-sea.mon.GLB", + "seaIce.siu.tavg-u-hxy-si.mon.GLB", + "seaIce.siv.tavg-u-hxy-si.mon.GLB", + "seaIce.snd.tavg-u-hxy-sn.mon.GLB", + "seaIce.ts.tavg-u-hxy-si.mon.GLB" + ], + "High": [ + "aerosol.depdust.tavg-u-hxy-u.mon.GLB", + "atmos.cl.tavg-al-hxy-u.day.GLB", + "atmos.clt.tavg-u-hxy-u.1hr.30S-90S", + "atmos.co2.tavg-h2m-hxy-u.mon.GLB", + "atmos.co2.tclm-u-hm-u.mon.GLB", + "atmos.co2mass.tavg-u-hm-u.mon.GLB", + "atmos.epfy.tavg-p39-hy-air.day.GLB", + "atmos.epfy.tavg-p39-hy-air.mon.GLB", + "atmos.epfz.tavg-p39-hy-air.day.GLB", + "atmos.epfz.tavg-p39-hy-air.mon.GLB", + "atmos.evspsbl.tavg-u-hxy-lnd.day.GLB", + "atmos.hfls.tavg-u-hxy-u.day.GLB", + "atmos.hfss.tavg-u-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.1hr.30S-90S", + "atmos.hurs.tpt-h2m-hxy-u.3hr.GLB", + "atmos.huss.tpt-h2m-hxy-u.1hr.GLB", + "atmos.intuadse.tavg-u-hxy-u.day.GLB", + "atmos.intuadse.tavg-u-hxy-u.mon.GLB", + "atmos.intuaw.tavg-u-hxy-u.day.GLB", + "atmos.intuaw.tavg-u-hxy-u.mon.GLB", + "atmos.intvadse.tavg-u-hxy-u.day.GLB", + "atmos.intvadse.tavg-u-hxy-u.mon.GLB", + "atmos.intvaw.tavg-u-hxy-u.day.GLB", + "atmos.intvaw.tavg-u-hxy-u.mon.GLB", + "atmos.pfull.tavg-al-hxy-u.day.GLB", + "atmos.pr.tavg-u-hxy-u.1hr.30S-90S", + "atmos.pr17O.tavg-u-hxy-u.mon.GLB", + "atmos.pr18O.tavg-u-hxy-u.mon.GLB", + "atmos.pr2h.tavg-u-hxy-u.mon.GLB", + "atmos.prc.tavg-u-hxy-u.day.GLB", + "atmos.prra.tavg-u-hxy-lnd.day.GLB", + "atmos.prra.tavg-u-hxy-u.mon.GLB", + "atmos.prsn.tavg-u-hxy-u.day.GLB", + "atmos.prsn18O.tavg-u-hxy-u.mon.GLB", + "atmos.prsn2h.tavg-u-hxy-u.mon.GLB", + "atmos.ps.tpt-u-hxy-u.1hr.30S-90S", + "atmos.psl.tpt-u-hxy-u.1hr.GLB", + "atmos.rlds.tavg-u-hxy-u.1hr.30S-90S", + "atmos.rlds.tavg-u-hxy-u.3hr.GLB", + "atmos.rlds.tavg-u-hxy-u.day.GLB", + "atmos.rlus.tavg-u-hxy-u.day.GLB", + "atmos.rlut.tavg-u-hxy-u.day.GLB", + "atmos.rsds.tavg-u-hxy-u.1hr.30S-90S", + "atmos.rsds.tavg-u-hxy-u.1hr.GLB", + "atmos.rsds.tavg-u-hxy-u.3hr.GLB", + "atmos.rsdt.tavg-u-hxy-u.day.GLB", + "atmos.rsus.tavg-u-hxy-u.day.GLB", + "atmos.rsut.tavg-u-hxy-u.day.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.1hr.30S-90S", + "atmos.ta.tavg-p39-hy-air.day.GLB", + "atmos.ta.tavg-p39-hy-air.mon.GLB", + "atmos.tauu.tavg-u-hxy-u.day.GLB", + "atmos.tauunoegw.tavg-p39-hy-air.day.GLB", + "atmos.tauunowgw.tavg-p39-hy-air.day.GLB", + "atmos.tauuogw.tavg-p39-hy-air.day.GLB", + "atmos.tauv.tavg-u-hxy-u.day.GLB", + "atmos.tauvnogw.tavg-p39-hy-air.day.GLB", + "atmos.tauvogw.tavg-p39-hy-air.day.GLB", + "atmos.tdps.tavg-h2m-hxy-u.mon.GLB", + "atmos.tntmp.tavg-p39-hy-air.day.GLB", + "atmos.tntmp.tavg-p39-hy-air.mon.GLB", + "atmos.tntrl.tavg-p39-hy-air.day.GLB", + "atmos.tntrl.tavg-p39-hy-air.mon.GLB", + "atmos.tntrs.tavg-p39-hy-air.day.GLB", + "atmos.tntrs.tavg-p39-hy-air.mon.GLB", + "atmos.ts.tavg-u-hxy-u.day.GLB", + "atmos.ua.tavg-p39-hy-air.day.GLB", + "atmos.ua.tavg-p39-hy-air.mon.GLB", + "atmos.ua.tpt-h100m-hxy-u.1hr.GLB", + "atmos.uas.tpt-h10m-hxy-u.1hr.GLB", + "atmos.utendepfd.tavg-p39-hy-air.day.GLB", + "atmos.utendepfd.tavg-p39-hy-air.mon.GLB", + "atmos.utendnogw.tavg-p39-hy-air.day.GLB", + "atmos.utendnogw.tavg-p39-hy-air.mon.GLB", + "atmos.utendogw.tavg-p39-hy-air.day.GLB", + "atmos.utendogw.tavg-p39-hy-air.mon.GLB", + "atmos.utendvtem.tavg-p39-hy-air.day.GLB", + "atmos.utendwtem.tavg-p39-hy-air.day.GLB", + "atmos.va.tpt-h100m-hxy-u.1hr.GLB", + "atmos.vas.tpt-h10m-hxy-u.1hr.GLB", + "atmos.vtem.tavg-p39-hy-air.day.GLB", + "atmos.vtem.tavg-p39-hy-air.mon.GLB", + "atmos.wsg.tmax-h100m-hxy-u.1hr.GLB", + "atmos.wsg.tmax-h10m-hxy-u.1hr.GLB", + "atmos.wtem.tavg-p39-hy-air.day.GLB", + "atmos.wtem.tavg-p39-hy-air.mon.GLB", + "atmos.zg.tavg-p39-hy-air.day.GLB", + "atmos.zg.tavg-p39-hy-air.mon.GLB", + "atmosChem.meanage.tavg-p39-hy-air.mon.GLB", + "land.burntFractionAll.tavg-u-hxy-u.mon.GLB", + "land.cSoil.tavg-sl-hxy-lnd.mon.GLB", + "land.cSoil.tavg-u-hxy-lnd.mon.GLB", + "land.depthl.ti-u-hxy-u.fx.GLB", + "land.depthsl.ti-u-hxy-u.fx.GLB", + "land.evspsblpot.tavg-u-hxy-lnd.day.GLB", + "land.evspsblpot.tavg-u-hxy-lnd.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.day.GLB", + "land.mrrob.tavg-u-hxy-lnd.day.GLB", + "land.mrros.tavg-u-hxy-lnd.day.GLB", + "land.mrsfl.tavg-sl-hxy-lnd.day.GLB", + "land.mrsfl.tavg-sl-hxy-lnd.mon.GLB", + "land.mrsll.tavg-sl-hxy-lnd.day.GLB", + "land.mrsll.tavg-sl-hxy-lnd.mon.GLB", + "land.mrso.tavg-u-hxy-lnd.day.GLB", + "land.mrsol.tavg-d10cm-hxy-lnd.day.GLB", + "land.mrsol.tavg-sl-hxy-lnd.day.GLB", + "land.mrsol.tavg-sl-hxy-lnd.mon.GLB", + "land.orog.ti-u-hxy-u.fx.30S-90S", + "land.rsds.tavg-u-hxy-lnd.mon.GLB", + "land.rsds.tavg-u-hxy-sn.mon.GLB", + "land.rsus.tavg-u-hxy-lnd.mon.GLB", + "land.rsus.tavg-u-hxy-sn.mon.GLB", + "land.sftgif.tavg-u-hxy-u.mon.GLB", + "land.sftlaf.ti-u-hxy-u.fx.GLB", + "land.tas.tavg-u-hxy-u.1hr.30S-90S", + "land.tas.tavg-u-hxy-u.1hr.GLB", + "land.tsl.tavg-sl-hxy-lnd.day.GLB", + "land.tsl.tavg-sl-hxy-lnd.mon.GLB", + "landIce.acabf.tavg-u-hxy-is.mon.GLB", + "landIce.hfls.tavg-u-hxy-is.mon.GLB", + "landIce.hfss.tavg-u-hxy-is.mon.GLB", + "landIce.icem.tavg-u-hxy-is.mon.GLB", + "landIce.litemptop.tavg-u-hxy-is.mon.GLB", + "landIce.lithk.ti-u-hxy-u.fx.GLB", + "landIce.mrro.tavg-u-hxy-is.mon.GLB", + "landIce.orog.tavg-u-hxy-is.mon.GLB", + "landIce.prra.tavg-u-hxy-is.mon.GLB", + "landIce.prsn.tavg-u-hxy-is.mon.GLB", + "landIce.rlds.tavg-u-hxy-is.mon.GLB", + "landIce.rlus.tavg-u-hxy-is.mon.GLB", + "landIce.rsds.tavg-u-hxy-is.mon.GLB", + "landIce.rsus.tavg-u-hxy-is.mon.GLB", + "landIce.sbl.tavg-u-hxy-is.mon.GLB", + "landIce.sbl.tavg-u-hxy-u.mon.GLB", + "landIce.sftflf.tavg-u-hxy-u.mon.GLB", + "landIce.sftflf.ti-u-hxy-u.fx.GLB", + "landIce.sftgrf.tavg-u-hxy-u.mon.GLB", + "landIce.sftgrf.ti-u-hxy-u.fx.GLB", + "landIce.snc.tavg-u-hxy-is.mon.GLB", + "landIce.snd.tavg-u-hxy-lnd.mon.GLB", + "landIce.snicem.tavg-u-hxy-is.mon.GLB", + "landIce.snm.tavg-u-hxy-is.mon.GLB", + "landIce.snm.tavg-u-hxy-lnd.mon.GLB", + "landIce.snrefr.tavg-u-hxy-is.mon.GLB", + "landIce.tas.tavg-u-hxy-is.mon.GLB", + "landIce.ts.tavg-u-hxy-is.mon.GLB", + "landIce.tsn.tavg-u-hxy-is.mon.GLB", + "landIce.tsn.tavg-u-hxy-lnd.mon.GLB", + "ocean.absscint.tavg-op4-hxy-sea.mon.GLB", + "ocean.agessc.tavg-ol-hxy-sea.mon.GLB", + "ocean.bigthetao.tavg-ol-hm-sea.mon.GLB", + "ocean.bigthetao.tavg-ol-hxy-sea.dec.GLB", + "ocean.bigthetao.tavg-op20bar-hxy-sea.day.GLB", + "ocean.chcint.tavg-op4-hxy-sea.mon.GLB", + "ocean.ficeberg.tavg-u-hxy-sea.mon.GLB", + "ocean.flandice.tavg-u-hxy-sea.mon.GLB", + "ocean.hfbasin.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpmadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpmdiff.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpsmadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfgeou.tavg-u-hxy-sea.mon.GLB", + "ocean.hfx.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfx.tavg-u-hxy-sea.day.GLB", + "ocean.hfx.tavg-u-hxy-sea.mon.GLB", + "ocean.hfy.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfy.tavg-u-hxy-sea.day.GLB", + "ocean.hfy.tavg-u-hxy-sea.mon.GLB", + "ocean.htovgyre.tavg-u-hyb-sea.mon.GLB", + "ocean.htovovrt.tavg-u-hyb-sea.mon.GLB", + "ocean.masscello.tavg-ol-hxy-sea.dec.GLB", + "ocean.masso.tavg-u-hm-sea.dec.GLB", + "ocean.masso.tavg-u-hm-sea.mon.GLB", + "ocean.mlotst.tavg-u-hxy-sea.day.GLB", + "ocean.mlotst.tmax-u-hxy-sea.mon.GLB", + "ocean.mlotst.tmin-u-hxy-sea.mon.GLB", + "ocean.mpw.tavg-u-hxy-sea.mon.GLB", + "ocean.mpw.tpt-u-hxy-sea.3hr.GLB", + "ocean.mpwswell.tavg-u-hxy-sea.mon.GLB", + "ocean.mpwswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.mpwwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.mpwwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.msftbarot.tavg-u-hxy-sea.mon.GLB", + "ocean.msftm.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftm.tavg-rho-hyb-sea.mon.GLB", + "ocean.msfty.tavg-ol-ht-sea.mon.GLB", + "ocean.msfty.tavg-rho-ht-sea.mon.GLB", + "ocean.obvfsq.tavg-ol-hxy-sea.mon.GLB", + "ocean.opottemptend.tavg-ol-hxy-sea.yr.GLB", + "ocean.pbo.tavg-u-hxy-sea.mon.GLB", + "ocean.pfscint.tavg-op4-hxy-sea.mon.GLB", + "ocean.phcint.tavg-op4-hxy-sea.mon.GLB", + "ocean.pso.tavg-u-hxy-sea.mon.GLB", + "ocean.rsds.tavg-u-hxy-ifs.mon.GLB", + "ocean.rsus.tavg-u-hxy-ifs.mon.GLB", + "ocean.scint.tavg-op4-hxy-sea.mon.GLB", + "ocean.sduo.tavg-u-hxy-sea.mon.GLB", + "ocean.sduo.tpt-u-hxy-sea.3hr.GLB", + "ocean.sdvo.tavg-u-hxy-sea.mon.GLB", + "ocean.sdvo.tpt-u-hxy-sea.3hr.GLB", + "ocean.sfx.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfx.tavg-u-hxy-sea.mon.GLB", + "ocean.sfy.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfy.tavg-u-hxy-sea.mon.GLB", + "ocean.sltbasin.tavg-u-hyb-sea.mon.GLB", + "ocean.sltovgyre.tavg-u-hyb-sea.mon.GLB", + "ocean.sltovovrt.tavg-u-hyb-sea.mon.GLB", + "ocean.so.tavg-ol-hm-sea.mon.GLB", + "ocean.so.tavg-ol-hxy-sea.dec.GLB", + "ocean.sob.tavg-u-hxy-sea.mon.GLB", + "ocean.sos.tavg-u-hm-sea.mon.GLB", + "ocean.sw17O.tavg-ol-hxy-sea.mon.GLB", + "ocean.sw18O.tavg-ol-hxy-sea.mon.GLB", + "ocean.sw2H.tavg-ol-hxy-sea.mon.GLB", + "ocean.swh.tavg-u-hxy-sea.mon.GLB", + "ocean.swh.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhmax.tmax-u-hxy-sea.mon.GLB", + "ocean.swhmax.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhswell.tavg-u-hxy-sea.mon.GLB", + "ocean.swhswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.swhwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.tauuo.tavg-u-hxy-sea.dec.GLB", + "ocean.tauvo.tavg-u-hxy-sea.dec.GLB", + "ocean.thetao.tavg-ol-hm-sea.mon.GLB", + "ocean.thetao.tavg-ol-hxy-sea.dec.GLB", + "ocean.thetao.tavg-op20bar-hxy-sea.day.GLB", + "ocean.thkcello.tavg-ol-hxy-sea.dec.GLB", + "ocean.tob.tavg-u-hxy-sea.mon.GLB", + "ocean.tos.tavg-u-hm-sea.mon.GLB", + "ocean.tos.tpt-u-hxy-sea.3hr.GLB", + "ocean.tossq.tavg-u-hxy-sea.day.GLB", + "ocean.uos.tavg-u-hxy-sea.day.GLB", + "ocean.volcello.tavg-ol-hxy-sea.dec.GLB", + "ocean.volcello.tavg-ol-hxy-sea.mon.GLB", + "ocean.volcello.tavg-ol-hxy-sea.yr.GLB", + "ocean.volcello.ti-ol-hxy-sea.fx.GLB", + "ocean.volo.tavg-u-hm-sea.dec.GLB", + "ocean.volo.tavg-u-hm-sea.mon.GLB", + "ocean.vos.tavg-u-hxy-sea.day.GLB", + "ocean.wdir.tavg-u-hxy-sea.mon.GLB", + "ocean.wdir.tpt-u-hxy-sea.3hr.GLB", + "ocean.wdirswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wdirswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wdirwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wdirwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.wfcorr.tavg-u-hxy-sea.mon.GLB", + "ocean.wfo.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdir.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdir.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpdirswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdirswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpdirwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdirwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpp.tavg-u-hxy-sea.mon.GLB", + "ocean.wpp.tpt-u-hxy-sea.3hr.GLB", + "ocean.wppswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wppswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wppwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wppwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.zossq.tavg-u-hxy-sea.mon.GLB", + "ocean.zostoga.tavg-u-hm-sea.day.GLB", + "ocnBgchem.chl.tavg-d0m-hxy-sea.day.GLB", + "ocnBgchem.chl.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.detoc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dfe.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissic.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissoc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dmso.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.dpco2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.dpo2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.expc.tavg-d1000m-hxy-sea.mon.GLB", + "ocnBgchem.expc.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.expcalc.tavg-d1000m-hxy-sea.mon.GLB", + "ocnBgchem.expcalc.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.fgco2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fric.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.froc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.graz.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.intpp.tavg-u-hxy-sea.day.GLB", + "ocnBgchem.intpp.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.nh4.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.no3.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.o2.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.ph.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phyc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phycalc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phydiat.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phymisc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phypico.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.po4.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.si.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.spco2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.talk.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zmeso.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zmicro.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zmisc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zooc.tavg-ol-hxy-sea.mon.GLB", + "seaIce.evspsbl.tavg-u-hxy-si.mon.GLB", + "seaIce.prra.tavg-u-hxy-si.mon.GLB", + "seaIce.prsn.tavg-u-hxy-si.mon.GLB", + "seaIce.rlds.tavg-u-hxy-si.day.GLB", + "seaIce.rlds.tavg-u-hxy-si.mon.GLB", + "seaIce.rlus.tavg-u-hxy-si.day.GLB", + "seaIce.rlus.tavg-u-hxy-si.mon.GLB", + "seaIce.rsds.tavg-u-hxy-si.day.GLB", + "seaIce.rsds.tavg-u-hxy-si.mon.GLB", + "seaIce.rsus.tavg-u-hxy-si.day.GLB", + "seaIce.rsus.tavg-u-hxy-si.mon.GLB", + "seaIce.sbl.tavg-u-hxy-si.mon.GLB", + "seaIce.siage.tavg-u-hxy-si.day.GLB", + "seaIce.siarea.tavg-u-hm-u.mon.NH", + "seaIce.siarea.tavg-u-hm-u.mon.SH", + "seaIce.siareaacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.siconca.tavg-u-hxy-u.day.GLB", + "seaIce.siconca.tavg-u-hxy-u.mon.GLB", + "seaIce.sidconcdyn.tavg-u-hxy-sea.mon.GLB", + "seaIce.sidconcth.tavg-u-hxy-sea.mon.GLB", + "seaIce.sidmassdyn.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthsi.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthwat.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmeltbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmeltlat.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmelttop.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassth.tavg-u-hxy-si.mon.GLB", + "seaIce.sieqthick.tavg-u-hxy-si.mon.GLB", + "seaIce.siextent.tavg-u-hm-u.mon.NH", + "seaIce.siextent.tavg-u-hm-u.mon.SH", + "seaIce.siflcondbot.tavg-u-hxy-si.day.GLB", + "seaIce.siflcondbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflcondtop.tavg-u-hxy-si.day.GLB", + "seaIce.siflcondtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sifllattop.tavg-u-hxy-si.day.GLB", + "seaIce.sifllattop.tavg-u-hxy-si.mon.GLB", + "seaIce.siflsensbot.tavg-u-hxy-si.day.GLB", + "seaIce.siflsensbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflsenstop.tavg-u-hxy-si.day.GLB", + "seaIce.siflsenstop.tavg-u-hxy-si.mon.GLB", + "seaIce.siflswdbot.tavg-u-hxy-si.day.GLB", + "seaIce.siflswdbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sihc.tavg-u-hxy-sea.day.GLB", + "seaIce.sihc.tavg-u-hxy-sea.mon.GLB", + "seaIce.siitdconc.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdsnconc.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdsnthick.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdthick.tavg-u-hxy-si.mon.GLB", + "seaIce.simassacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.simpconc.tavg-u-hxy-si.mon.GLB", + "seaIce.sirdgconc.tavg-u-hxy-si.mon.GLB", + "seaIce.sisaltmass.tavg-u-hxy-si.mon.GLB", + "seaIce.sisndmassdyn.tavg-u-hxy-si.mon.GLB", + "seaIce.sisndmasssi.tavg-u-hxy-si.mon.GLB", + "seaIce.sisndmasswind.tavg-u-hxy-si.mon.GLB", + "seaIce.sisnhc.tavg-u-hxy-si.day.GLB", + "seaIce.sisnhc.tavg-u-hxy-si.mon.GLB", + "seaIce.sisnmass.tavg-u-hm-u.mon.NH", + "seaIce.sisnmass.tavg-u-hm-u.mon.SH", + "seaIce.sisnmassacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.sispeed.tavg-u-hxy-si.day.GLB", + "seaIce.sispeed.tavg-u-hxy-si.mon.GLB", + "seaIce.sistressave.tpt-u-hxy-si.mon.GLB", + "seaIce.sistressmax.tpt-u-hxy-si.mon.GLB", + "seaIce.sistrxdtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sistrxubot.tavg-u-hxy-si.mon.GLB", + "seaIce.sistrydtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sistryubot.tavg-u-hxy-si.mon.GLB", + "seaIce.sitempsnic.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-si.day.GLB", + "seaIce.sitimefrac.tavg-u-hxy-sea.day.GLB", + "seaIce.siu.tavg-u-hxy-si.day.GLB", + "seaIce.siv.tavg-u-hxy-si.day.GLB", + "seaIce.sivol.tavg-u-hm-u.mon.NH", + "seaIce.sivol.tavg-u-hm-u.mon.SH", + "seaIce.snc.tavg-u-hxy-si.mon.GLB", + "seaIce.snd.tavg-u-hxy-sn.day.GLB", + "seaIce.snm.tavg-u-hxy-si.mon.GLB", + "seaIce.snw.tavg-u-hxy-si.mon.GLB", + "seaIce.ts.tavg-u-hxy-si.day.GLB" + ], + "Medium": [ + "atmos.ps.tpt-u-hxy-u.1hr.GLB", + "atmos.psitem.tavg-p39-hy-air.day.GLB", + "atmos.rlds.tavg-u-hxy-u.1hr.GLB", + "atmos.rsdsdiff.tavg-u-hxy-u.1hr.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.1hr.GLB", + "atmos.sfcWind.tmax-h10m-hxy-u.day.GLB", + "atmos.tauunoegw.tavg-p19-hxy-air.mon.GLB", + "atmos.tauunowgw.tavg-p19-hxy-air.mon.GLB", + "atmos.tauuogw.tavg-p19-hxy-air.mon.GLB", + "atmos.tauupbl.tavg-u-hxy-u.day.GLB", + "atmos.tauvnogw.tavg-p19-hxy-air.mon.GLB", + "atmos.tauvogw.tavg-p19-hxy-air.mon.GLB", + "atmos.tauvpbl.tavg-u-hxy-u.day.GLB", + "atmos.tntc.tavg-p39-hy-air.mon.GLB", + "atmos.tntnogw.tavg-p39-hy-air.mon.GLB", + "atmos.tntogw.tavg-p39-hy-air.mon.GLB", + "atmos.tntrlcs.tavg-p39-hy-air.mon.GLB", + "atmos.tntrscs.tavg-p39-hy-air.mon.GLB", + "atmos.tntscp.tavg-p39-hy-air.mon.GLB", + "atmos.ts.tavg-u-hxy-u.1hr.GLB", + "atmos.utendnogw.tavg-p19-hxy-air.day.GLB", + "atmos.utendnogw.tavg-p19-hxy-air.mon.GLB", + "atmos.utendogw.tavg-p19-hxy-air.day.GLB", + "atmos.utendogw.tavg-p19-hxy-air.mon.GLB", + "atmos.vtendnogw.tavg-p19-hxy-air.day.GLB", + "atmos.vtendnogw.tavg-p19-hxy-air.mon.GLB", + "atmos.vtendogw.tavg-p19-hxy-air.day.GLB", + "atmos.vtendogw.tavg-p19-hxy-air.mon.GLB", + "atmos.wsg.tmax-h100m-hxy-u.mon.GLB", + "atmos.wsg.tmax-h10m-hxy-u.mon.GLB", + "atmosChem.flashrate.tavg-u-hxy-u.day.GLB", + "ocean.evspsbl.tavg-u-hxy-ifs.mon.GLB", + "ocean.ficeberg.tavg-ol-hxy-sea.mon.GLB", + "ocean.friver.tavg-u-hxy-sea.mon.GLB", + "ocean.hfacrossline.tavg-u-ht-sea.mon.GLB", + "ocean.hfevapds.tavg-u-hxy-ifs.mon.GLB", + "ocean.hfibthermds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfibthermds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfrainds.tavg-u-hxy-ifs.mon.GLB", + "ocean.hfrunoffds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfrunoffds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfsnthermds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfsnthermds.tavg-u-hxy-sea.mon.GLB", + "ocean.mfo.tavg-u-ht-sea.mon.GLB", + "ocean.sfacrossline.tavg-u-ht-sea.mon.GLB", + "ocean.sfdsi.tavg-u-hxy-sea.mon.GLB", + "ocean.sfriver.tavg-u-hxy-sea.mon.GLB", + "ocean.siflfwbot.tavg-u-hxy-sea.mon.GLB", + "ocean.so.tavg-ol-hxy-sea.day.GLB", + "ocean.t17d.tavg-u-hxy-sea.mon.GLB", + "ocean.t20d.tavg-u-hxy-sea.mon.GLB", + "ocean.tnkebto.tavg-u-hxy-sea.yr.GLB", + "ocean.vsf.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfcorr.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfevap.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfpr.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfriver.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfsit.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.arag.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.arag.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.calc.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.calc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chl.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.detoc.tavg-ol-hxy-sea.day.GLB", + "ocnBgchem.dissoc.tavg-ol-hxy-sea.day.GLB", + "ocnBgchem.exparagob.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.expc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.expcalc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.expcalcob.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.expcob.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.expfeob.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.expnob.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.exppob.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.expsiob.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.frfe.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.frn.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppcalc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppdiat.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppdiaz.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppmisc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppnano.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intpppico.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limfecalc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limfediat.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limfediaz.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limfemisc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limfepico.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limirrcalc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limirrdiat.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limirrdiaz.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limirrmisc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limirrpico.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limncalc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limndiat.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limndiaz.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limnmisc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limnpico.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.o2.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.o2sat.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.ph.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.pp.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.sialgc.tavg-u-hxy-si.mon.GLB", + "ocnBgchem.sichl.tavg-u-hxy-si.mon.GLB", + "ocnBgchem.sigpp.tavg-u-hxy-si.mon.GLB", + "ocnBgchem.sino3.tavg-u-hxy-si.mon.GLB", + "ocnBgchem.sisi.tavg-u-hxy-si.mon.GLB", + "seaIce.sfdsi.tavg-u-hxy-si.mon.GLB", + "seaIce.siage.tavg-u-hxy-si.mon.GLB", + "seaIce.siarea.tavg-u-hm-u.day.NH", + "seaIce.siarea.tavg-u-hm-u.day.SH", + "seaIce.sicompstren.tavg-u-hxy-si.mon.GLB", + "seaIce.sidivvel.tpt-u-hxy-si.mon.GLB", + "seaIce.sidmasstranx.tavg-u-hxy-u.mon.GLB", + "seaIce.sidmasstrany.tavg-u-hxy-u.mon.GLB", + "seaIce.sidragbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidragtop.tavg-u-hxy-si.mon.GLB", + "seaIce.siextent.tavg-u-hm-u.day.NH", + "seaIce.siextent.tavg-u-hm-u.day.SH", + "seaIce.sifb.tavg-u-hxy-si.day.GLB", + "seaIce.sifb.tavg-u-hxy-si.mon.GLB", + "seaIce.siflfwbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflfwdrain.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcecoriolx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcecorioly.tavg-u-hxy-si.mon.GLB", + "seaIce.siforceintstrx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforceintstry.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcetiltx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcetilty.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdconc.tavg-u-hxy-si.day.GLB", + "seaIce.siitdsnconc.tavg-u-hxy-si.day.GLB", + "seaIce.siitdsnthick.tavg-u-hxy-si.day.GLB", + "seaIce.siitdthick.tavg-u-hxy-si.day.GLB", + "seaIce.simpconc.tavg-u-hxy-si.day.GLB", + "seaIce.simpeffconc.tavg-u-hxy-si.day.GLB", + "seaIce.simpeffconc.tavg-u-hxy-si.mon.GLB", + "seaIce.simprefrozen.tavg-u-hxy-simp.day.GLB", + "seaIce.simprefrozen.tavg-u-hxy-simp.mon.GLB", + "seaIce.simpthick.tavg-u-hxy-si.day.GLB", + "seaIce.simpthick.tavg-u-hxy-simp.mon.GLB", + "seaIce.sirdgconc.tavg-u-hxy-si.day.GLB", + "seaIce.sisali.tavg-u-hxy-si.day.GLB", + "seaIce.sisali.tavg-u-hxy-si.mon.GLB", + "seaIce.sisaltmass.tavg-u-hxy-si.day.GLB", + "seaIce.sishearvel.tpt-u-hxy-si.mon.GLB", + "seaIce.sisnmass.tavg-u-hm-u.day.NH", + "seaIce.sisnmass.tavg-u-hm-u.day.SH", + "seaIce.sitempbot.tavg-u-hxy-si.day.GLB", + "seaIce.sitempbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sitempsnic.tavg-u-hxy-si.day.GLB", + "seaIce.sithick.tavg-u-hxy-sir.day.GLB", + "seaIce.sithick.tavg-u-hxy-sir.mon.GLB", + "seaIce.sivol.tavg-u-hm-u.day.NH", + "seaIce.sivol.tavg-u-hm-u.day.SH" + ], + "Low": [ + "aerosol.abs550aer.tavg-u-hxy-u.mon.GLB", + "atmosChem.flashrate.tavg-u-hxy-u.mon.GLB", + "ocean.difmxybo.tavg-ol-hxy-sea.yr.GLB", + "ocean.difmxylo.tavg-ol-hxy-sea.yr.GLB", + "ocean.diftrblo.tavg-ol-hxy-sea.yr.GLB", + "ocean.diftrelo.tavg-ol-hxy-sea.yr.GLB", + "ocean.difvho.tavg-ol-hxy-sea.yr.GLB", + "ocean.difvso.tavg-ol-hxy-sea.yr.GLB", + "ocean.dispkexyfo.tavg-u-hxy-sea.yr.GLB", + "ocean.dxto.ti-u-hxy-u.fx.GLB", + "ocean.dxuo.ti-u-hxy-u.fx.GLB", + "ocean.dxvo.ti-u-hxy-u.fx.GLB", + "ocean.dyto.ti-u-hxy-u.fx.GLB", + "ocean.dyuo.ti-u-hxy-u.fx.GLB", + "ocean.dyvo.ti-u-hxy-u.fx.GLB", + "ocean.mlotstsq.tavg-u-hxy-sea.mon.GLB", + "ocean.msftmmpa.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftmmpa.tavg-rho-hyb-sea.mon.GLB", + "ocean.msftmsmpa.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftypa.tavg-ol-ht-sea.mon.GLB", + "ocean.msftypa.tavg-rho-ht-sea.mon.GLB", + "ocean.ocontempdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontempmint.tavg-u-hxy-sea.yr.GLB", + "ocean.ocontemppadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemppmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemppsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemprmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemptend.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottempdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottempmint.tavg-u-hxy-sea.yr.GLB", + "ocean.opottemppadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemppmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemppsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemprmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemptend.tavg-ol-hxy-sea.dec.GLB", + "ocean.osaltdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpsmadvect.tavg-ol-hxy-sea.mon.GLB", + "ocean.osaltpsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltrmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osalttend.tavg-ol-hxy-sea.yr.GLB", + "ocean.rsdoabsorb.tavg-ol-hxy-sea.yr.GLB", + "ocean.somint.tavg-u-hxy-sea.yr.GLB", + "ocean.sossq.tavg-u-hxy-sea.mon.GLB", + "ocean.thkcelluo.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcellvo.tavg-ol-hxy-sea.mon.GLB", + "ocean.tnpeo.tavg-u-hxy-sea.yr.GLB", + "ocean.tossq.tavg-u-hxy-sea.mon.GLB" + ] + }, + "scenariomip21": { + "Core": [ + "atmos.areacella.ti-u-hxy-u.fx.GLB", + "atmos.cl.tavg-al-hxy-u.mon.GLB", + "atmos.cli.tavg-al-hxy-u.mon.GLB", + "atmos.clivi.tavg-u-hxy-u.mon.GLB", + "atmos.clt.tavg-u-hxy-u.day.GLB", + "atmos.clt.tavg-u-hxy-u.mon.GLB", + "atmos.clw.tavg-al-hxy-u.mon.GLB", + "atmos.clwvi.tavg-u-hxy-u.mon.GLB", + "atmos.evspsbl.tavg-u-hxy-u.mon.GLB", + "atmos.hfls.tavg-u-hxy-u.mon.GLB", + "atmos.hfss.tavg-u-hxy-u.mon.GLB", + "atmos.hur.tavg-p19-hxy-air.mon.GLB", + "atmos.hur.tavg-p19-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.6hr.GLB", + "atmos.hurs.tavg-h2m-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.mon.GLB", + "atmos.hus.tavg-p19-hxy-u.day.GLB", + "atmos.hus.tavg-p19-hxy-u.mon.GLB", + "atmos.huss.tavg-h2m-hxy-u.day.GLB", + "atmos.huss.tavg-h2m-hxy-u.mon.GLB", + "atmos.huss.tpt-h2m-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.1hr.GLB", + "atmos.pr.tavg-u-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.day.GLB", + "atmos.pr.tavg-u-hxy-u.mon.GLB", + "atmos.prc.tavg-u-hxy-u.mon.GLB", + "atmos.prsn.tavg-u-hxy-u.mon.GLB", + "atmos.prw.tavg-u-hxy-u.mon.GLB", + "atmos.ps.tavg-u-hxy-u.day.GLB", + "atmos.ps.tavg-u-hxy-u.mon.GLB", + "atmos.psl.tavg-u-hxy-u.day.GLB", + "atmos.psl.tavg-u-hxy-u.mon.GLB", + "atmos.rlds.tavg-u-hxy-u.mon.GLB", + "atmos.rldscs.tavg-u-hxy-u.mon.GLB", + "atmos.rlus.tavg-u-hxy-u.mon.GLB", + "atmos.rluscs.tavg-u-hxy-u.mon.GLB", + "atmos.rlut.tavg-u-hxy-u.mon.GLB", + "atmos.rlutcs.tavg-u-hxy-u.mon.GLB", + "atmos.rsds.tavg-u-hxy-u.day.GLB", + "atmos.rsds.tavg-u-hxy-u.mon.GLB", + "atmos.rsdscs.tavg-u-hxy-u.mon.GLB", + "atmos.rsdt.tavg-u-hxy-u.mon.GLB", + "atmos.rsus.tavg-u-hxy-u.mon.GLB", + "atmos.rsuscs.tavg-u-hxy-u.mon.GLB", + "atmos.rsut.tavg-u-hxy-u.mon.GLB", + "atmos.rsutcs.tavg-u-hxy-u.mon.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.day.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.mon.GLB", + "atmos.sftlf.ti-u-hxy-u.fx.GLB", + "atmos.ta.tavg-p19-hxy-air.day.GLB", + "atmos.ta.tavg-p19-hxy-air.mon.GLB", + "atmos.ta.tpt-p3-hxy-air.6hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.day.GLB", + "atmos.tas.tavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tmax-h2m-hxy-u.day.GLB", + "atmos.tas.tmaxavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tmin-h2m-hxy-u.day.GLB", + "atmos.tas.tminavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tpt-h2m-hxy-u.3hr.GLB", + "atmos.tauu.tavg-u-hxy-u.mon.GLB", + "atmos.tauv.tavg-u-hxy-u.mon.GLB", + "atmos.ts.tavg-u-hxy-u.mon.GLB", + "atmos.ua.tavg-p19-hxy-air.day.GLB", + "atmos.ua.tavg-p19-hxy-air.mon.GLB", + "atmos.ua.tpt-p3-hxy-air.6hr.GLB", + "atmos.uas.tavg-h10m-hxy-u.day.GLB", + "atmos.uas.tavg-h10m-hxy-u.mon.GLB", + "atmos.uas.tpt-h10m-hxy-u.3hr.GLB", + "atmos.va.tavg-p19-hxy-air.day.GLB", + "atmos.va.tavg-p19-hxy-air.mon.GLB", + "atmos.va.tpt-p3-hxy-air.6hr.GLB", + "atmos.vas.tavg-h10m-hxy-u.day.GLB", + "atmos.vas.tavg-h10m-hxy-u.mon.GLB", + "atmos.vas.tpt-h10m-hxy-u.3hr.GLB", + "atmos.wap.tavg-p19-hxy-air.mon.GLB", + "atmos.wap.tavg-p19-hxy-u.day.GLB", + "atmos.zg.tavg-p19-hxy-air.day.GLB", + "atmos.zg.tavg-p19-hxy-air.mon.GLB", + "land.evspsblsoi.tavg-u-hxy-lnd.mon.GLB", + "land.evspsblveg.tavg-u-hxy-lnd.mon.GLB", + "land.lai.tavg-u-hxy-lnd.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.mon.GLB", + "land.mrros.tavg-u-hxy-lnd.mon.GLB", + "land.mrso.tavg-u-hxy-lnd.mon.GLB", + "land.mrsofc.ti-u-hxy-lnd.fx.GLB", + "land.mrsol.tavg-d10cm-hxy-lnd.mon.GLB", + "land.orog.ti-u-hxy-u.fx.GLB", + "land.rootd.ti-u-hxy-lnd.fx.GLB", + "land.sftgif.ti-u-hxy-u.fx.GLB", + "land.slthick.ti-sl-hxy-lnd.fx.GLB", + "landIce.mrfso.tavg-u-hxy-lnd.mon.GLB", + "landIce.snc.tavg-u-hxy-lnd.mon.GLB", + "landIce.snw.tavg-u-hxy-lnd.mon.GLB", + "ocean.areacello.ti-u-hxy-u.fx.GLB", + "ocean.basin.ti-u-hxy-u.fx.GLB", + "ocean.bigthetao.tavg-ol-hxy-sea.mon.GLB", + "ocean.deptho.ti-u-hxy-sea.fx.GLB", + "ocean.hfds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfgeou.ti-u-hxy-sea.fx.GLB", + "ocean.masscello.tavg-ol-hxy-sea.mon.GLB", + "ocean.masscello.ti-ol-hxy-sea.fx.GLB", + "ocean.mlotst.tavg-u-hxy-sea.mon.GLB", + "ocean.sftof.ti-u-hxy-u.fx.GLB", + "ocean.so.tavg-ol-hxy-sea.mon.GLB", + "ocean.sos.tavg-u-hxy-sea.day.GLB", + "ocean.sos.tavg-u-hxy-sea.mon.GLB", + "ocean.tauuo.tavg-u-hxy-sea.mon.GLB", + "ocean.tauvo.tavg-u-hxy-sea.mon.GLB", + "ocean.thetao.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcello.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcello.ti-ol-hxy-sea.fx.GLB", + "ocean.tos.tavg-u-hxy-sea.day.GLB", + "ocean.tos.tavg-u-hxy-sea.mon.GLB", + "ocean.umo.tavg-ol-hxy-sea.mon.GLB", + "ocean.uo.tavg-ol-hxy-sea.mon.GLB", + "ocean.vmo.tavg-ol-hxy-sea.mon.GLB", + "ocean.vo.tavg-ol-hxy-sea.mon.GLB", + "ocean.wmo.tavg-ol-hxy-sea.mon.GLB", + "ocean.wo.tavg-ol-hxy-sea.mon.GLB", + "ocean.zos.tavg-u-hxy-sea.day.GLB", + "ocean.zos.tavg-u-hxy-sea.mon.GLB", + "ocean.zostoga.tavg-u-hm-sea.mon.GLB", + "seaIce.siconc.tavg-u-hxy-u.day.GLB", + "seaIce.siconc.tavg-u-hxy-u.mon.GLB", + "seaIce.simass.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-si.mon.GLB", + "seaIce.sitimefrac.tavg-u-hxy-sea.mon.GLB", + "seaIce.siu.tavg-u-hxy-si.mon.GLB", + "seaIce.siv.tavg-u-hxy-si.mon.GLB", + "seaIce.snd.tavg-u-hxy-sn.mon.GLB", + "seaIce.ts.tavg-u-hxy-si.mon.GLB" + ], + "High": [ + "aerosol.depdust.tavg-u-hxy-u.mon.GLB", + "atmos.cl.tavg-al-hxy-u.day.GLB", + "atmos.clt.tavg-u-hxy-u.1hr.30S-90S", + "atmos.co2.tavg-h2m-hxy-u.mon.GLB", + "atmos.co2.tclm-u-hm-u.mon.GLB", + "atmos.co2mass.tavg-u-hm-u.mon.GLB", + "atmos.epfy.tavg-p39-hy-air.day.GLB", + "atmos.epfy.tavg-p39-hy-air.mon.GLB", + "atmos.epfz.tavg-p39-hy-air.day.GLB", + "atmos.epfz.tavg-p39-hy-air.mon.GLB", + "atmos.evspsbl.tavg-u-hxy-lnd.day.GLB", + "atmos.hfls.tavg-u-hxy-u.day.GLB", + "atmos.hfss.tavg-u-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.1hr.30S-90S", + "atmos.hurs.tpt-h2m-hxy-u.3hr.GLB", + "atmos.huss.tavg-h2m-hxy-u.6hr.GLB", + "atmos.huss.tpt-h2m-hxy-u.1hr.GLB", + "atmos.intuadse.tavg-u-hxy-u.day.GLB", + "atmos.intuadse.tavg-u-hxy-u.mon.GLB", + "atmos.intuaw.tavg-u-hxy-u.day.GLB", + "atmos.intuaw.tavg-u-hxy-u.mon.GLB", + "atmos.intvadse.tavg-u-hxy-u.day.GLB", + "atmos.intvadse.tavg-u-hxy-u.mon.GLB", + "atmos.intvaw.tavg-u-hxy-u.day.GLB", + "atmos.intvaw.tavg-u-hxy-u.mon.GLB", + "atmos.pfull.tavg-al-hxy-u.day.GLB", + "atmos.pr.tavg-u-hxy-u.1hr.30S-90S", + "atmos.pr17O.tavg-u-hxy-u.mon.GLB", + "atmos.pr18O.tavg-u-hxy-u.mon.GLB", + "atmos.pr2h.tavg-u-hxy-u.mon.GLB", + "atmos.prc.tavg-u-hxy-u.day.GLB", + "atmos.prra.tavg-u-hxy-lnd.day.GLB", + "atmos.prra.tavg-u-hxy-u.6hr.GLB", + "atmos.prra.tavg-u-hxy-u.mon.GLB", + "atmos.prsn.tavg-u-hxy-u.6hr.GLB", + "atmos.prsn.tavg-u-hxy-u.day.GLB", + "atmos.prsn18O.tavg-u-hxy-u.mon.GLB", + "atmos.prsn2h.tavg-u-hxy-u.mon.GLB", + "atmos.ps.tavg-u-hxy-u.6hr.GLB", + "atmos.ps.tpt-u-hxy-u.1hr.30S-90S", + "atmos.psl.tpt-u-hxy-u.1hr.GLB", + "atmos.rlds.tavg-u-hxy-u.1hr.30S-90S", + "atmos.rlds.tavg-u-hxy-u.3hr.GLB", + "atmos.rlds.tavg-u-hxy-u.6hr.GLB", + "atmos.rlds.tavg-u-hxy-u.day.GLB", + "atmos.rlus.tavg-u-hxy-u.day.GLB", + "atmos.rlut.tavg-u-hxy-u.day.GLB", + "atmos.rsds.tavg-u-hxy-u.1hr.30S-90S", + "atmos.rsds.tavg-u-hxy-u.1hr.GLB", + "atmos.rsds.tavg-u-hxy-u.3hr.GLB", + "atmos.rsds.tavg-u-hxy-u.6hr.GLB", + "atmos.rsdt.tavg-u-hxy-u.day.GLB", + "atmos.rsus.tavg-u-hxy-u.day.GLB", + "atmos.rsut.tavg-u-hxy-u.day.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.1hr.30S-90S", + "atmos.sfcWind.tavg-h10m-hxy-u.6hr.GLB", + "atmos.ta.tavg-p39-hy-air.day.GLB", + "atmos.ta.tavg-p39-hy-air.mon.GLB", + "atmos.tas.tavg-h2m-hxy-u.6hr.GLB", + "atmos.tauu.tavg-u-hxy-u.day.GLB", + "atmos.tauunoegw.tavg-p39-hy-air.day.GLB", + "atmos.tauunowgw.tavg-p39-hy-air.day.GLB", + "atmos.tauuogw.tavg-p39-hy-air.day.GLB", + "atmos.tauv.tavg-u-hxy-u.day.GLB", + "atmos.tauvnogw.tavg-p39-hy-air.day.GLB", + "atmos.tauvogw.tavg-p39-hy-air.day.GLB", + "atmos.tdps.tavg-h2m-hxy-u.mon.GLB", + "atmos.tntmp.tavg-p39-hy-air.day.GLB", + "atmos.tntmp.tavg-p39-hy-air.mon.GLB", + "atmos.tntrl.tavg-p39-hy-air.day.GLB", + "atmos.tntrl.tavg-p39-hy-air.mon.GLB", + "atmos.tntrs.tavg-p39-hy-air.day.GLB", + "atmos.tntrs.tavg-p39-hy-air.mon.GLB", + "atmos.ts.tavg-u-hxy-u.6hr.GLB", + "atmos.ts.tavg-u-hxy-u.day.GLB", + "atmos.ua.tavg-p39-hy-air.day.GLB", + "atmos.ua.tavg-p39-hy-air.mon.GLB", + "atmos.ua.tpt-h100m-hxy-u.1hr.GLB", + "atmos.uas.tpt-h10m-hxy-u.1hr.GLB", + "atmos.utendepfd.tavg-p39-hy-air.day.GLB", + "atmos.utendepfd.tavg-p39-hy-air.mon.GLB", + "atmos.utendnogw.tavg-p39-hy-air.day.GLB", + "atmos.utendnogw.tavg-p39-hy-air.mon.GLB", + "atmos.utendogw.tavg-p39-hy-air.day.GLB", + "atmos.utendogw.tavg-p39-hy-air.mon.GLB", + "atmos.utendvtem.tavg-p39-hy-air.day.GLB", + "atmos.utendwtem.tavg-p39-hy-air.day.GLB", + "atmos.va.tpt-h100m-hxy-u.1hr.GLB", + "atmos.vas.tpt-h10m-hxy-u.1hr.GLB", + "atmos.vtem.tavg-p39-hy-air.day.GLB", + "atmos.vtem.tavg-p39-hy-air.mon.GLB", + "atmos.wsg.tmax-h100m-hxy-u.1hr.GLB", + "atmos.wsg.tmax-h10m-hxy-u.1hr.GLB", + "atmos.wtem.tavg-p39-hy-air.day.GLB", + "atmos.wtem.tavg-p39-hy-air.mon.GLB", + "atmos.zg.tavg-p39-hy-air.day.GLB", + "atmos.zg.tavg-p39-hy-air.mon.GLB", + "atmosChem.meanage.tavg-p39-hy-air.mon.GLB", + "land.burntFractionAll.tavg-u-hxy-u.mon.GLB", + "land.cSoil.tavg-sl-hxy-lnd.mon.GLB", + "land.cSoil.tavg-u-hxy-lnd.mon.GLB", + "land.depthl.ti-u-hxy-u.fx.GLB", + "land.depthsl.ti-u-hxy-u.fx.GLB", + "land.evspsblpot.tavg-u-hxy-lnd.day.GLB", + "land.evspsblpot.tavg-u-hxy-lnd.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.day.GLB", + "land.mrrob.tavg-u-hxy-lnd.day.GLB", + "land.mrros.tavg-u-hxy-lnd.day.GLB", + "land.mrsfl.tavg-sl-hxy-lnd.day.GLB", + "land.mrsfl.tavg-sl-hxy-lnd.mon.GLB", + "land.mrsll.tavg-sl-hxy-lnd.day.GLB", + "land.mrsll.tavg-sl-hxy-lnd.mon.GLB", + "land.mrso.tavg-u-hxy-lnd.day.GLB", + "land.mrsol.tavg-d10cm-hxy-lnd.day.GLB", + "land.mrsol.tavg-sl-hxy-lnd.day.GLB", + "land.mrsol.tavg-sl-hxy-lnd.mon.GLB", + "land.orog.ti-u-hxy-u.fx.30S-90S", + "land.rsds.tavg-u-hxy-lnd.mon.GLB", + "land.rsds.tavg-u-hxy-sn.mon.GLB", + "land.rsus.tavg-u-hxy-lnd.mon.GLB", + "land.rsus.tavg-u-hxy-sn.mon.GLB", + "land.sftgif.tavg-u-hxy-u.mon.GLB", + "land.sftlaf.ti-u-hxy-u.fx.GLB", + "land.tas.tavg-u-hxy-u.1hr.30S-90S", + "land.tas.tavg-u-hxy-u.1hr.GLB", + "land.tsl.tavg-sl-hxy-lnd.day.GLB", + "land.tsl.tavg-sl-hxy-lnd.mon.GLB", + "landIce.acabf.tavg-u-hxy-is.mon.GLB", + "landIce.hfls.tavg-u-hxy-is.mon.GLB", + "landIce.hfss.tavg-u-hxy-is.mon.GLB", + "landIce.icem.tavg-u-hxy-is.mon.GLB", + "landIce.litemptop.tavg-u-hxy-is.mon.GLB", + "landIce.lithk.ti-u-hxy-u.fx.GLB", + "landIce.mrro.tavg-u-hxy-is.mon.GLB", + "landIce.orog.tavg-u-hxy-is.mon.GLB", + "landIce.prra.tavg-u-hxy-is.mon.GLB", + "landIce.prsn.tavg-u-hxy-is.mon.GLB", + "landIce.rlds.tavg-u-hxy-is.mon.GLB", + "landIce.rlus.tavg-u-hxy-is.mon.GLB", + "landIce.rsds.tavg-u-hxy-is.mon.GLB", + "landIce.rsus.tavg-u-hxy-is.mon.GLB", + "landIce.sbl.tavg-u-hxy-is.mon.GLB", + "landIce.sbl.tavg-u-hxy-lnd.mon.GLB", + "landIce.sbl.tavg-u-hxy-u.mon.GLB", + "landIce.sftflf.tavg-u-hxy-u.mon.GLB", + "landIce.sftflf.ti-u-hxy-u.fx.GLB", + "landIce.sftgrf.tavg-u-hxy-u.mon.GLB", + "landIce.sftgrf.ti-u-hxy-u.fx.GLB", + "landIce.snc.tavg-u-hxy-is.mon.GLB", + "landIce.snd.tavg-u-hxy-lnd.mon.GLB", + "landIce.snicem.tavg-u-hxy-is.mon.GLB", + "landIce.snm.tavg-u-hxy-is.mon.GLB", + "landIce.snm.tavg-u-hxy-lnd.mon.GLB", + "landIce.snrefr.tavg-u-hxy-is.mon.GLB", + "landIce.tas.tavg-u-hxy-is.mon.GLB", + "landIce.ts.tavg-u-hxy-is.mon.GLB", + "landIce.tsn.tavg-u-hxy-is.mon.GLB", + "landIce.tsn.tavg-u-hxy-lnd.mon.GLB", + "ocean.absscint.tavg-op4-hxy-sea.mon.GLB", + "ocean.agessc.tavg-ol-hxy-sea.mon.GLB", + "ocean.bigthetao.tavg-ol-hm-sea.mon.GLB", + "ocean.bigthetao.tavg-ol-hxy-sea.dec.GLB", + "ocean.bigthetao.tavg-op20bar-hxy-sea.day.GLB", + "ocean.chcint.tavg-op4-hxy-sea.mon.GLB", + "ocean.ficeberg.tavg-u-hxy-sea.mon.GLB", + "ocean.flandice.tavg-u-hxy-sea.mon.GLB", + "ocean.hfbasin.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpmadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpmdiff.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpsmadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfgeou.tavg-u-hxy-sea.mon.GLB", + "ocean.hfx.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfx.tavg-u-hxy-sea.day.GLB", + "ocean.hfx.tavg-u-hxy-sea.mon.GLB", + "ocean.hfy.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfy.tavg-u-hxy-sea.day.GLB", + "ocean.hfy.tavg-u-hxy-sea.mon.GLB", + "ocean.htovgyre.tavg-u-hyb-sea.mon.GLB", + "ocean.htovovrt.tavg-u-hyb-sea.mon.GLB", + "ocean.masscello.tavg-ol-hxy-sea.dec.GLB", + "ocean.masso.tavg-u-hm-sea.dec.GLB", + "ocean.masso.tavg-u-hm-sea.mon.GLB", + "ocean.mlotst.tavg-u-hxy-sea.day.GLB", + "ocean.mlotst.tmax-u-hxy-sea.mon.GLB", + "ocean.mlotst.tmin-u-hxy-sea.mon.GLB", + "ocean.mpw.tavg-u-hxy-sea.mon.GLB", + "ocean.mpw.tpt-u-hxy-sea.3hr.GLB", + "ocean.mpwswell.tavg-u-hxy-sea.mon.GLB", + "ocean.mpwswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.mpwwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.mpwwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.msftbarot.tavg-u-hxy-sea.mon.GLB", + "ocean.msftm.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftm.tavg-rho-hyb-sea.mon.GLB", + "ocean.msfty.tavg-ol-ht-sea.mon.GLB", + "ocean.msfty.tavg-rho-ht-sea.mon.GLB", + "ocean.obvfsq.tavg-ol-hxy-sea.mon.GLB", + "ocean.opottemptend.tavg-ol-hxy-sea.yr.GLB", + "ocean.pbo.tavg-u-hxy-sea.mon.GLB", + "ocean.pfscint.tavg-op4-hxy-sea.mon.GLB", + "ocean.phcint.tavg-op4-hxy-sea.mon.GLB", + "ocean.pso.tavg-u-hxy-sea.mon.GLB", + "ocean.rsds.tavg-u-hxy-ifs.mon.GLB", + "ocean.rsus.tavg-u-hxy-ifs.mon.GLB", + "ocean.scint.tavg-op4-hxy-sea.mon.GLB", + "ocean.sduo.tavg-u-hxy-sea.mon.GLB", + "ocean.sduo.tpt-u-hxy-sea.3hr.GLB", + "ocean.sdvo.tavg-u-hxy-sea.mon.GLB", + "ocean.sdvo.tpt-u-hxy-sea.3hr.GLB", + "ocean.sfx.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfx.tavg-u-hxy-sea.mon.GLB", + "ocean.sfy.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfy.tavg-u-hxy-sea.mon.GLB", + "ocean.sltbasin.tavg-u-hyb-sea.mon.GLB", + "ocean.sltovgyre.tavg-u-hyb-sea.mon.GLB", + "ocean.sltovovrt.tavg-u-hyb-sea.mon.GLB", + "ocean.so.tavg-ol-hm-sea.mon.GLB", + "ocean.so.tavg-ol-hxy-sea.dec.GLB", + "ocean.sob.tavg-u-hxy-sea.mon.GLB", + "ocean.sos.tavg-u-hm-sea.mon.GLB", + "ocean.sw17O.tavg-ol-hxy-sea.mon.GLB", + "ocean.sw18O.tavg-ol-hxy-sea.mon.GLB", + "ocean.sw2H.tavg-ol-hxy-sea.mon.GLB", + "ocean.swh.tavg-u-hxy-sea.mon.GLB", + "ocean.swh.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhmax.tmax-u-hxy-sea.mon.GLB", + "ocean.swhmax.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhswell.tavg-u-hxy-sea.mon.GLB", + "ocean.swhswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.swhwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.tauuo.tavg-u-hxy-sea.dec.GLB", + "ocean.tauvo.tavg-u-hxy-sea.dec.GLB", + "ocean.thetao.tavg-ol-hm-sea.mon.GLB", + "ocean.thetao.tavg-ol-hxy-sea.dec.GLB", + "ocean.thetao.tavg-op20bar-hxy-sea.day.GLB", + "ocean.thkcello.tavg-ol-hxy-sea.dec.GLB", + "ocean.tob.tavg-u-hxy-sea.mon.GLB", + "ocean.tos.tavg-u-hm-sea.mon.GLB", + "ocean.tos.tpt-u-hxy-sea.3hr.GLB", + "ocean.tossq.tavg-u-hxy-sea.day.GLB", + "ocean.uos.tavg-u-hxy-sea.day.GLB", + "ocean.volcello.tavg-ol-hxy-sea.dec.GLB", + "ocean.volcello.tavg-ol-hxy-sea.mon.GLB", + "ocean.volcello.tavg-ol-hxy-sea.yr.GLB", + "ocean.volcello.ti-ol-hxy-sea.fx.GLB", + "ocean.volo.tavg-u-hm-sea.dec.GLB", + "ocean.volo.tavg-u-hm-sea.mon.GLB", + "ocean.vos.tavg-u-hxy-sea.day.GLB", + "ocean.wdir.tavg-u-hxy-sea.mon.GLB", + "ocean.wdir.tpt-u-hxy-sea.3hr.GLB", + "ocean.wdirswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wdirswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wdirwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wdirwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.wfcorr.tavg-u-hxy-sea.mon.GLB", + "ocean.wfo.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdir.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdir.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpdirswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdirswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpdirwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdirwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpp.tavg-u-hxy-sea.mon.GLB", + "ocean.wpp.tpt-u-hxy-sea.3hr.GLB", + "ocean.wppswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wppswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wppwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wppwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.zossq.tavg-u-hxy-sea.mon.GLB", + "ocean.zostoga.tavg-u-hm-sea.day.GLB", + "ocnBgchem.chl.tavg-d0m-hxy-sea.day.GLB", + "ocnBgchem.chl.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.detoc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dfe.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissic.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissoc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dmso.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.dpco2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.dpo2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.expc.tavg-d1000m-hxy-sea.mon.GLB", + "ocnBgchem.expc.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.expcalc.tavg-d1000m-hxy-sea.mon.GLB", + "ocnBgchem.expcalc.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.fgco2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fric.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.froc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.graz.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.intpp.tavg-u-hxy-sea.day.GLB", + "ocnBgchem.intpp.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.nh4.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.no3.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.o2.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.ph.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phyc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phycalc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phydiat.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phymisc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phypico.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.po4.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.si.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.spco2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.talk.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zmeso.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zmicro.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zmisc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zooc.tavg-ol-hxy-sea.mon.GLB", + "seaIce.evspsbl.tavg-u-hxy-si.mon.GLB", + "seaIce.prra.tavg-u-hxy-si.mon.GLB", + "seaIce.prsn.tavg-u-hxy-si.mon.GLB", + "seaIce.rlds.tavg-u-hxy-si.day.GLB", + "seaIce.rlds.tavg-u-hxy-si.mon.GLB", + "seaIce.rlus.tavg-u-hxy-si.day.GLB", + "seaIce.rlus.tavg-u-hxy-si.mon.GLB", + "seaIce.rsds.tavg-u-hxy-si.day.GLB", + "seaIce.rsds.tavg-u-hxy-si.mon.GLB", + "seaIce.rsus.tavg-u-hxy-si.day.GLB", + "seaIce.rsus.tavg-u-hxy-si.mon.GLB", + "seaIce.sbl.tavg-u-hxy-si.mon.GLB", + "seaIce.siage.tavg-u-hxy-si.day.GLB", + "seaIce.siarea.tavg-u-hm-u.mon.NH", + "seaIce.siarea.tavg-u-hm-u.mon.SH", + "seaIce.siareaacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.siconca.tavg-u-hxy-u.day.GLB", + "seaIce.siconca.tavg-u-hxy-u.mon.GLB", + "seaIce.sidconcdyn.tavg-u-hxy-sea.mon.GLB", + "seaIce.sidconcth.tavg-u-hxy-sea.mon.GLB", + "seaIce.sidmassdyn.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthsi.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthwat.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmeltbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmeltlat.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmelttop.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassth.tavg-u-hxy-si.mon.GLB", + "seaIce.sieqthick.tavg-u-hxy-si.mon.GLB", + "seaIce.siextent.tavg-u-hm-u.mon.NH", + "seaIce.siextent.tavg-u-hm-u.mon.SH", + "seaIce.siflcondbot.tavg-u-hxy-si.day.GLB", + "seaIce.siflcondbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflcondtop.tavg-u-hxy-si.day.GLB", + "seaIce.siflcondtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sifllattop.tavg-u-hxy-si.day.GLB", + "seaIce.sifllattop.tavg-u-hxy-si.mon.GLB", + "seaIce.siflsensbot.tavg-u-hxy-si.day.GLB", + "seaIce.siflsensbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflsenstop.tavg-u-hxy-si.day.GLB", + "seaIce.siflsenstop.tavg-u-hxy-si.mon.GLB", + "seaIce.siflswdbot.tavg-u-hxy-si.day.GLB", + "seaIce.siflswdbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sihc.tavg-u-hxy-sea.day.GLB", + "seaIce.sihc.tavg-u-hxy-sea.mon.GLB", + "seaIce.siitdconc.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdsnconc.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdsnthick.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdthick.tavg-u-hxy-si.mon.GLB", + "seaIce.simassacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.simpconc.tavg-u-hxy-si.mon.GLB", + "seaIce.sirdgconc.tavg-u-hxy-si.mon.GLB", + "seaIce.sisaltmass.tavg-u-hxy-si.mon.GLB", + "seaIce.sisndmassdyn.tavg-u-hxy-si.mon.GLB", + "seaIce.sisndmasssi.tavg-u-hxy-si.mon.GLB", + "seaIce.sisndmasswind.tavg-u-hxy-si.mon.GLB", + "seaIce.sisnhc.tavg-u-hxy-si.day.GLB", + "seaIce.sisnhc.tavg-u-hxy-si.mon.GLB", + "seaIce.sisnmass.tavg-u-hm-u.mon.NH", + "seaIce.sisnmass.tavg-u-hm-u.mon.SH", + "seaIce.sisnmassacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.sispeed.tavg-u-hxy-si.day.GLB", + "seaIce.sispeed.tavg-u-hxy-si.mon.GLB", + "seaIce.sistressave.tpt-u-hxy-si.mon.GLB", + "seaIce.sistressmax.tpt-u-hxy-si.mon.GLB", + "seaIce.sistrxdtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sistrxubot.tavg-u-hxy-si.mon.GLB", + "seaIce.sistrydtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sistryubot.tavg-u-hxy-si.mon.GLB", + "seaIce.sitempsnic.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-si.day.GLB", + "seaIce.sitimefrac.tavg-u-hxy-sea.day.GLB", + "seaIce.siu.tavg-u-hxy-si.day.GLB", + "seaIce.siv.tavg-u-hxy-si.day.GLB", + "seaIce.sivol.tavg-u-hm-u.mon.NH", + "seaIce.sivol.tavg-u-hm-u.mon.SH", + "seaIce.snc.tavg-u-hxy-si.mon.GLB", + "seaIce.snd.tavg-u-hxy-sn.day.GLB", + "seaIce.snm.tavg-u-hxy-si.mon.GLB", + "seaIce.snw.tavg-u-hxy-si.mon.GLB", + "seaIce.ts.tavg-u-hxy-si.day.GLB" + ], + "Medium": [ + "atmos.hfls.tavg-u-hxy-is.mon.ATA", + "atmos.hfls.tavg-u-hxy-is.mon.GRL", + "atmos.hfss.tavg-u-hxy-is.mon.ATA", + "atmos.hfss.tavg-u-hxy-is.mon.GRL", + "atmos.prra.tavg-u-hxy-is.mon.ATA", + "atmos.prra.tavg-u-hxy-is.mon.GRL", + "atmos.prsn.tavg-u-hxy-is.mon.ATA", + "atmos.prsn.tavg-u-hxy-is.mon.GRL", + "atmos.ps.tpt-u-hxy-u.1hr.GLB", + "atmos.psitem.tavg-p39-hy-air.day.GLB", + "atmos.rlds.tavg-u-hxy-is.mon.ATA", + "atmos.rlds.tavg-u-hxy-is.mon.GRL", + "atmos.rlds.tavg-u-hxy-u.1hr.GLB", + "atmos.rlus.tavg-u-hxy-is.mon.ATA", + "atmos.rlus.tavg-u-hxy-is.mon.GRL", + "atmos.rsds.tavg-u-hxy-is.mon.ATA", + "atmos.rsds.tavg-u-hxy-is.mon.GRL", + "atmos.rsdsdiff.tavg-u-hxy-u.1hr.GLB", + "atmos.rsus.tavg-u-hxy-is.mon.ATA", + "atmos.rsus.tavg-u-hxy-is.mon.GRL", + "atmos.sfcWind.tavg-h10m-hxy-u.1hr.GLB", + "atmos.sfcWind.tmax-h10m-hxy-u.day.GLB", + "atmos.tas.tavg-h2m-hm-is.mon.ATA", + "atmos.tas.tavg-h2m-hm-is.mon.GRL", + "atmos.tauunoegw.tavg-p19-hxy-air.mon.GLB", + "atmos.tauunowgw.tavg-p19-hxy-air.mon.GLB", + "atmos.tauuogw.tavg-p19-hxy-air.mon.GLB", + "atmos.tauupbl.tavg-u-hxy-u.day.GLB", + "atmos.tauvnogw.tavg-p19-hxy-air.mon.GLB", + "atmos.tauvogw.tavg-p19-hxy-air.mon.GLB", + "atmos.tauvpbl.tavg-u-hxy-u.day.GLB", + "atmos.tntc.tavg-p39-hy-air.mon.GLB", + "atmos.tntnogw.tavg-p39-hy-air.mon.GLB", + "atmos.tntogw.tavg-p39-hy-air.mon.GLB", + "atmos.tntrlcs.tavg-p39-hy-air.mon.GLB", + "atmos.tntrscs.tavg-p39-hy-air.mon.GLB", + "atmos.tntscp.tavg-p39-hy-air.mon.GLB", + "atmos.ts.tavg-u-hxy-is.mon.ATA", + "atmos.ts.tavg-u-hxy-is.mon.GRL", + "atmos.ts.tavg-u-hxy-u.1hr.GLB", + "atmos.utendnogw.tavg-p19-hxy-air.day.GLB", + "atmos.utendnogw.tavg-p19-hxy-air.mon.GLB", + "atmos.utendogw.tavg-p19-hxy-air.day.GLB", + "atmos.utendogw.tavg-p19-hxy-air.mon.GLB", + "atmos.vtendnogw.tavg-p19-hxy-air.day.GLB", + "atmos.vtendnogw.tavg-p19-hxy-air.mon.GLB", + "atmos.vtendogw.tavg-p19-hxy-air.day.GLB", + "atmos.vtendogw.tavg-p19-hxy-air.mon.GLB", + "atmos.wsg.tmax-h100m-hxy-u.mon.GLB", + "atmos.wsg.tmax-h10m-hxy-u.mon.GLB", + "atmosChem.flashrate.tavg-u-hxy-u.day.GLB", + "land.areacellg.ti-u-hxy-u.fx.ATA", + "land.areacellg.ti-u-hxy-u.fx.GRL", + "land.orog.tavg-u-hxy-is.mon.ATA", + "land.orog.tavg-u-hxy-is.mon.GRL", + "land.orog.tavg-u-hxy-is.yr.ATA", + "land.orog.tavg-u-hxy-is.yr.GRL", + "land.sftgif.tavg-u-hxy-u.yr.ATA", + "land.sftgif.tavg-u-hxy-u.yr.GRL", + "landIce.acabf.tavg-u-hxy-is.mon.ATA", + "landIce.acabf.tavg-u-hxy-is.mon.GRL", + "landIce.acabf.tavg-u-hxy-is.yr.ATA", + "landIce.acabf.tavg-u-hxy-is.yr.GRL", + "landIce.hfgeoubed.tavg-u-hxy-gis.yr.ATA", + "landIce.hfgeoubed.tavg-u-hxy-gis.yr.GRL", + "landIce.hfgeoubed.ti-u-hxy-gis.fx.ATA", + "landIce.hfgeoubed.ti-u-hxy-gis.fx.GRL", + "landIce.iareafl.tavg-u-hm-fis.yr.ATA", + "landIce.iareafl.tavg-u-hm-fis.yr.GRL", + "landIce.iareagr.tavg-u-hm-gis.yr.ATA", + "landIce.iareagr.tavg-u-hm-gis.yr.GRL", + "landIce.icem.tavg-u-hxy-is.mon.ATA", + "landIce.icem.tavg-u-hxy-is.mon.GRL", + "landIce.libmassbf.tavg-u-hxy-fis.mon.ATA", + "landIce.libmassbf.tavg-u-hxy-fis.mon.GRL", + "landIce.libmassbf.tavg-u-hxy-fis.yr.ATA", + "landIce.libmassbf.tavg-u-hxy-fis.yr.GRL", + "landIce.libmassbf.tavg-u-hxy-gis.mon.ATA", + "landIce.libmassbf.tavg-u-hxy-gis.mon.GRL", + "landIce.libmassbf.tavg-u-hxy-gis.yr.ATA", + "landIce.libmassbf.tavg-u-hxy-gis.yr.GRL", + "landIce.licalvf.tavg-u-hxy-is.mon.ATA", + "landIce.licalvf.tavg-u-hxy-is.mon.GRL", + "landIce.licalvf.tavg-u-hxy-is.yr.ATA", + "landIce.licalvf.tavg-u-hxy-is.yr.GRL", + "landIce.lifmassbf.tavg-u-hxy-is.mon.ATA", + "landIce.lifmassbf.tavg-u-hxy-is.mon.GRL", + "landIce.lifmassbf.tavg-u-hxy-is.yr.ATA", + "landIce.lifmassbf.tavg-u-hxy-is.yr.GRL", + "landIce.lim.tavg-u-hm-is.yr.ATA", + "landIce.lim.tavg-u-hm-is.yr.GRL", + "landIce.limnsw.tavg-u-hm-is.yr.ATA", + "landIce.limnsw.tavg-u-hm-is.yr.GRL", + "landIce.litempbot.tavg-u-hxy-fis.mon.ATA", + "landIce.litempbot.tavg-u-hxy-fis.mon.GRL", + "landIce.litempbot.tavg-u-hxy-fis.yr.ATA", + "landIce.litempbot.tavg-u-hxy-fis.yr.GRL", + "landIce.litempbot.tavg-u-hxy-gis.mon.ATA", + "landIce.litempbot.tavg-u-hxy-gis.mon.GRL", + "landIce.litempbot.tavg-u-hxy-gis.yr.ATA", + "landIce.litempbot.tavg-u-hxy-gis.yr.GRL", + "landIce.litemptop.tavg-u-hxy-is.mon.ATA", + "landIce.litemptop.tavg-u-hxy-is.mon.GRL", + "landIce.litemptop.tavg-u-hxy-is.yr.ATA", + "landIce.litemptop.tavg-u-hxy-is.yr.GRL", + "landIce.lithk.tavg-u-hxy-is.yr.ATA", + "landIce.lithk.tavg-u-hxy-is.yr.GRL", + "landIce.lithk.ti-u-hxy-is.fx.ATA", + "landIce.lithk.ti-u-hxy-is.fx.GRL", + "landIce.modelcellareai.tavg-u-hxy-u.yr.ATA", + "landIce.modelcellareai.tavg-u-hxy-u.yr.GRL", + "landIce.mrroLi.tavg-u-hxy-is.mon.ATA", + "landIce.mrroLi.tavg-u-hxy-is.mon.GRL", + "landIce.sbl.tavg-u-hxy-is.mon.ATA", + "landIce.sbl.tavg-u-hxy-is.mon.GRL", + "landIce.sftflf.tavg-u-hxy-u.yr.ATA", + "landIce.sftflf.tavg-u-hxy-u.yr.GRL", + "landIce.sftgrf.tavg-u-hxy-u.yr.ATA", + "landIce.sftgrf.tavg-u-hxy-u.yr.GRL", + "landIce.snc.tavg-u-hxy-is.mon.ATA", + "landIce.snc.tavg-u-hxy-is.mon.GRL", + "landIce.snc.tavg-u-hxy-is.yr.ATA", + "landIce.snc.tavg-u-hxy-is.yr.GRL", + "landIce.snicem.tavg-u-hxy-is.mon.ATA", + "landIce.snicem.tavg-u-hxy-is.mon.GRL", + "landIce.snm.tavg-u-hxy-is.mon.ATA", + "landIce.snm.tavg-u-hxy-is.mon.GRL", + "landIce.snrefr.tavg-u-hxy-is.mon.ATA", + "landIce.snrefr.tavg-u-hxy-is.mon.GRL", + "landIce.strbasemag.tavg-u-hxy-is.yr.ATA", + "landIce.strbasemag.tavg-u-hxy-is.yr.GRL", + "landIce.tendacabf.tavg-u-hm-is.yr.ATA", + "landIce.tendacabf.tavg-u-hm-is.yr.GRL", + "landIce.tendlibmassbf.tavg-u-hm-is.yr.ATA", + "landIce.tendlibmassbf.tavg-u-hm-is.yr.GRL", + "landIce.tendlicalvf.tavg-u-hm-is.yr.ATA", + "landIce.tendlicalvf.tavg-u-hm-is.yr.GRL", + "landIce.topg.tavg-u-hxy-gis.yr.ATA", + "landIce.topg.tavg-u-hxy-gis.yr.GRL", + "landIce.topg.ti-u-hxy-gis.fx.ATA", + "landIce.topg.ti-u-hxy-gis.fx.GRL", + "landIce.tsn.tavg-u-hxy-is.mon.ATA", + "landIce.tsn.tavg-u-hxy-is.mon.GRL", + "landIce.xvelbase.tavg-u-hxy-is.yr.ATA", + "landIce.xvelbase.tavg-u-hxy-is.yr.GRL", + "landIce.xvelmean.tavg-u-hxy-is.yr.ATA", + "landIce.xvelmean.tavg-u-hxy-is.yr.GRL", + "landIce.xvelsurf.tavg-u-hxy-is.yr.ATA", + "landIce.xvelsurf.tavg-u-hxy-is.yr.GRL", + "landIce.yvelbase.tavg-u-hxy-is.yr.ATA", + "landIce.yvelbase.tavg-u-hxy-is.yr.GRL", + "landIce.yvelmean.tavg-u-hxy-is.yr.ATA", + "landIce.yvelmean.tavg-u-hxy-is.yr.GRL", + "landIce.yvelsurf.tavg-u-hxy-is.yr.ATA", + "landIce.yvelsurf.tavg-u-hxy-is.yr.GRL", + "landIce.zvelbase.tavg-u-hxy-is.yr.ATA", + "landIce.zvelbase.tavg-u-hxy-is.yr.GRL", + "landIce.zvelsurf.tavg-u-hxy-is.yr.ATA", + "landIce.zvelsurf.tavg-u-hxy-is.yr.GRL", + "ocean.evspsbl.tavg-u-hxy-ifs.mon.GLB", + "ocean.ficeberg.tavg-ol-hxy-sea.mon.GLB", + "ocean.friver.tavg-u-hxy-sea.mon.GLB", + "ocean.hfacrossline.tavg-u-ht-sea.mon.GLB", + "ocean.hfevapds.tavg-u-hxy-ifs.mon.GLB", + "ocean.hfibthermds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfibthermds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfrainds.tavg-u-hxy-ifs.mon.GLB", + "ocean.hfrunoffds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfrunoffds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfsnthermds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfsnthermds.tavg-u-hxy-sea.mon.GLB", + "ocean.mfo.tavg-u-ht-sea.mon.GLB", + "ocean.sfacrossline.tavg-u-ht-sea.mon.GLB", + "ocean.sfdsi.tavg-u-hxy-sea.mon.GLB", + "ocean.sfriver.tavg-u-hxy-sea.mon.GLB", + "ocean.siflfwbot.tavg-u-hxy-sea.mon.GLB", + "ocean.so.tavg-ol-hxy-sea.day.GLB", + "ocean.t17d.tavg-u-hxy-sea.mon.GLB", + "ocean.t20d.tavg-u-hxy-sea.mon.GLB", + "ocean.tnkebto.tavg-u-hxy-sea.yr.GLB", + "ocean.vsf.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfcorr.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfevap.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfpr.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfriver.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfsit.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.arag.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.arag.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.calc.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.calc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chl.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.detoc.tavg-ol-hxy-sea.day.GLB", + "ocnBgchem.dissoc.tavg-ol-hxy-sea.day.GLB", + "ocnBgchem.exparagob.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.expc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.expcalc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.expcalcob.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.expcob.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.expfeob.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.expnob.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.exppob.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.expsiob.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.frfe.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.frn.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppcalc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppdiat.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppdiaz.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppmisc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppnano.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intpppico.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limfecalc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limfediat.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limfediaz.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limfemisc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limfepico.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limirrcalc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limirrdiat.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limirrdiaz.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limirrmisc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limirrpico.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limncalc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limndiat.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limndiaz.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limnmisc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limnpico.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.o2.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.o2sat.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.ph.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.pp.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.sialgc.tavg-u-hxy-si.mon.GLB", + "ocnBgchem.sichl.tavg-u-hxy-si.mon.GLB", + "ocnBgchem.sigpp.tavg-u-hxy-si.mon.GLB", + "ocnBgchem.sino3.tavg-u-hxy-si.mon.GLB", + "ocnBgchem.sisi.tavg-u-hxy-si.mon.GLB", + "seaIce.sfdsi.tavg-u-hxy-si.mon.GLB", + "seaIce.siage.tavg-u-hxy-si.mon.GLB", + "seaIce.siarea.tavg-u-hm-u.day.NH", + "seaIce.siarea.tavg-u-hm-u.day.SH", + "seaIce.sicompstren.tavg-u-hxy-si.mon.GLB", + "seaIce.sidivvel.tpt-u-hxy-si.mon.GLB", + "seaIce.sidmasstranx.tavg-u-hxy-u.mon.GLB", + "seaIce.sidmasstrany.tavg-u-hxy-u.mon.GLB", + "seaIce.sidragbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidragtop.tavg-u-hxy-si.mon.GLB", + "seaIce.siextent.tavg-u-hm-u.day.NH", + "seaIce.siextent.tavg-u-hm-u.day.SH", + "seaIce.sifb.tavg-u-hxy-si.day.GLB", + "seaIce.sifb.tavg-u-hxy-si.mon.GLB", + "seaIce.siflfwbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflfwdrain.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcecoriolx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcecorioly.tavg-u-hxy-si.mon.GLB", + "seaIce.siforceintstrx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforceintstry.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcetiltx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcetilty.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdconc.tavg-u-hxy-si.day.GLB", + "seaIce.siitdsnconc.tavg-u-hxy-si.day.GLB", + "seaIce.siitdsnthick.tavg-u-hxy-si.day.GLB", + "seaIce.siitdthick.tavg-u-hxy-si.day.GLB", + "seaIce.simpconc.tavg-u-hxy-si.day.GLB", + "seaIce.simpeffconc.tavg-u-hxy-si.day.GLB", + "seaIce.simpeffconc.tavg-u-hxy-si.mon.GLB", + "seaIce.simprefrozen.tavg-u-hxy-simp.day.GLB", + "seaIce.simprefrozen.tavg-u-hxy-simp.mon.GLB", + "seaIce.simpthick.tavg-u-hxy-si.day.GLB", + "seaIce.simpthick.tavg-u-hxy-simp.mon.GLB", + "seaIce.sirdgconc.tavg-u-hxy-si.day.GLB", + "seaIce.sisali.tavg-u-hxy-si.day.GLB", + "seaIce.sisali.tavg-u-hxy-si.mon.GLB", + "seaIce.sisaltmass.tavg-u-hxy-si.day.GLB", + "seaIce.sishearvel.tpt-u-hxy-si.mon.GLB", + "seaIce.sisnmass.tavg-u-hm-u.day.NH", + "seaIce.sisnmass.tavg-u-hm-u.day.SH", + "seaIce.sitempbot.tavg-u-hxy-si.day.GLB", + "seaIce.sitempbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sitempsnic.tavg-u-hxy-si.day.GLB", + "seaIce.sithick.tavg-u-hxy-sir.day.GLB", + "seaIce.sithick.tavg-u-hxy-sir.mon.GLB", + "seaIce.sivol.tavg-u-hm-u.day.NH", + "seaIce.sivol.tavg-u-hm-u.day.SH" + ], + "Low": [ + "aerosol.abs550aer.tavg-u-hxy-u.mon.GLB", + "atmosChem.flashrate.tavg-u-hxy-u.mon.GLB", + "ocean.difmxybo.tavg-ol-hxy-sea.yr.GLB", + "ocean.difmxylo.tavg-ol-hxy-sea.yr.GLB", + "ocean.diftrblo.tavg-ol-hxy-sea.yr.GLB", + "ocean.diftrelo.tavg-ol-hxy-sea.yr.GLB", + "ocean.difvho.tavg-ol-hxy-sea.yr.GLB", + "ocean.difvso.tavg-ol-hxy-sea.yr.GLB", + "ocean.dispkexyfo.tavg-u-hxy-sea.yr.GLB", + "ocean.dxto.ti-u-hxy-u.fx.GLB", + "ocean.dxuo.ti-u-hxy-u.fx.GLB", + "ocean.dxvo.ti-u-hxy-u.fx.GLB", + "ocean.dyto.ti-u-hxy-u.fx.GLB", + "ocean.dyuo.ti-u-hxy-u.fx.GLB", + "ocean.dyvo.ti-u-hxy-u.fx.GLB", + "ocean.mlotstsq.tavg-u-hxy-sea.mon.GLB", + "ocean.msftmmpa.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftmmpa.tavg-rho-hyb-sea.mon.GLB", + "ocean.msftmsmpa.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftypa.tavg-ol-ht-sea.mon.GLB", + "ocean.msftypa.tavg-rho-ht-sea.mon.GLB", + "ocean.ocontempdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontempmint.tavg-u-hxy-sea.yr.GLB", + "ocean.ocontemppadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemppmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemppsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemprmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemptend.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottempdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottempmint.tavg-u-hxy-sea.yr.GLB", + "ocean.opottemppadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemppmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemppsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemprmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemptend.tavg-ol-hxy-sea.dec.GLB", + "ocean.osaltdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpsmadvect.tavg-ol-hxy-sea.mon.GLB", + "ocean.osaltpsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltrmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osalttend.tavg-ol-hxy-sea.yr.GLB", + "ocean.rsdoabsorb.tavg-ol-hxy-sea.yr.GLB", + "ocean.somint.tavg-u-hxy-sea.yr.GLB", + "ocean.sossq.tavg-u-hxy-sea.mon.GLB", + "ocean.thkcelluo.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcellvo.tavg-ol-hxy-sea.mon.GLB", + "ocean.tnpeo.tavg-u-hxy-sea.yr.GLB", + "ocean.tossq.tavg-u-hxy-sea.mon.GLB" + ] + }, + "scenariomip22": { + "Core": [ + "atmos.areacella.ti-u-hxy-u.fx.GLB", + "atmos.cl.tavg-al-hxy-u.mon.GLB", + "atmos.cli.tavg-al-hxy-u.mon.GLB", + "atmos.clivi.tavg-u-hxy-u.mon.GLB", + "atmos.clt.tavg-u-hxy-u.day.GLB", + "atmos.clt.tavg-u-hxy-u.mon.GLB", + "atmos.clw.tavg-al-hxy-u.mon.GLB", + "atmos.clwvi.tavg-u-hxy-u.mon.GLB", + "atmos.evspsbl.tavg-u-hxy-u.mon.GLB", + "atmos.hfls.tavg-u-hxy-u.mon.GLB", + "atmos.hfss.tavg-u-hxy-u.mon.GLB", + "atmos.hur.tavg-p19-hxy-air.mon.GLB", + "atmos.hur.tavg-p19-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.6hr.GLB", + "atmos.hurs.tavg-h2m-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.mon.GLB", + "atmos.hus.tavg-p19-hxy-u.day.GLB", + "atmos.hus.tavg-p19-hxy-u.mon.GLB", + "atmos.huss.tavg-h2m-hxy-u.day.GLB", + "atmos.huss.tavg-h2m-hxy-u.mon.GLB", + "atmos.huss.tpt-h2m-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.1hr.GLB", + "atmos.pr.tavg-u-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.day.GLB", + "atmos.pr.tavg-u-hxy-u.mon.GLB", + "atmos.prc.tavg-u-hxy-u.mon.GLB", + "atmos.prsn.tavg-u-hxy-u.mon.GLB", + "atmos.prw.tavg-u-hxy-u.mon.GLB", + "atmos.ps.tavg-u-hxy-u.day.GLB", + "atmos.ps.tavg-u-hxy-u.mon.GLB", + "atmos.psl.tavg-u-hxy-u.day.GLB", + "atmos.psl.tavg-u-hxy-u.mon.GLB", + "atmos.rlds.tavg-u-hxy-u.mon.GLB", + "atmos.rldscs.tavg-u-hxy-u.mon.GLB", + "atmos.rlus.tavg-u-hxy-u.mon.GLB", + "atmos.rluscs.tavg-u-hxy-u.mon.GLB", + "atmos.rlut.tavg-u-hxy-u.mon.GLB", + "atmos.rlutcs.tavg-u-hxy-u.mon.GLB", + "atmos.rsds.tavg-u-hxy-u.day.GLB", + "atmos.rsds.tavg-u-hxy-u.mon.GLB", + "atmos.rsdscs.tavg-u-hxy-u.mon.GLB", + "atmos.rsdt.tavg-u-hxy-u.mon.GLB", + "atmos.rsus.tavg-u-hxy-u.mon.GLB", + "atmos.rsuscs.tavg-u-hxy-u.mon.GLB", + "atmos.rsut.tavg-u-hxy-u.mon.GLB", + "atmos.rsutcs.tavg-u-hxy-u.mon.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.day.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.mon.GLB", + "atmos.sftlf.ti-u-hxy-u.fx.GLB", + "atmos.ta.tavg-p19-hxy-air.day.GLB", + "atmos.ta.tavg-p19-hxy-air.mon.GLB", + "atmos.ta.tpt-p3-hxy-air.6hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.day.GLB", + "atmos.tas.tavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tmax-h2m-hxy-u.day.GLB", + "atmos.tas.tmaxavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tmin-h2m-hxy-u.day.GLB", + "atmos.tas.tminavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tpt-h2m-hxy-u.3hr.GLB", + "atmos.tauu.tavg-u-hxy-u.mon.GLB", + "atmos.tauv.tavg-u-hxy-u.mon.GLB", + "atmos.ts.tavg-u-hxy-u.mon.GLB", + "atmos.ua.tavg-p19-hxy-air.day.GLB", + "atmos.ua.tavg-p19-hxy-air.mon.GLB", + "atmos.ua.tpt-p3-hxy-air.6hr.GLB", + "atmos.uas.tavg-h10m-hxy-u.day.GLB", + "atmos.uas.tavg-h10m-hxy-u.mon.GLB", + "atmos.uas.tpt-h10m-hxy-u.3hr.GLB", + "atmos.va.tavg-p19-hxy-air.day.GLB", + "atmos.va.tavg-p19-hxy-air.mon.GLB", + "atmos.va.tpt-p3-hxy-air.6hr.GLB", + "atmos.vas.tavg-h10m-hxy-u.day.GLB", + "atmos.vas.tavg-h10m-hxy-u.mon.GLB", + "atmos.vas.tpt-h10m-hxy-u.3hr.GLB", + "atmos.wap.tavg-p19-hxy-air.mon.GLB", + "atmos.wap.tavg-p19-hxy-u.day.GLB", + "atmos.zg.tavg-p19-hxy-air.day.GLB", + "atmos.zg.tavg-p19-hxy-air.mon.GLB", + "land.evspsblsoi.tavg-u-hxy-lnd.mon.GLB", + "land.evspsblveg.tavg-u-hxy-lnd.mon.GLB", + "land.lai.tavg-u-hxy-lnd.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.mon.GLB", + "land.mrros.tavg-u-hxy-lnd.mon.GLB", + "land.mrso.tavg-u-hxy-lnd.mon.GLB", + "land.mrsofc.ti-u-hxy-lnd.fx.GLB", + "land.mrsol.tavg-d10cm-hxy-lnd.mon.GLB", + "land.orog.ti-u-hxy-u.fx.GLB", + "land.rootd.ti-u-hxy-lnd.fx.GLB", + "land.sftgif.ti-u-hxy-u.fx.GLB", + "land.slthick.ti-sl-hxy-lnd.fx.GLB", + "landIce.mrfso.tavg-u-hxy-lnd.mon.GLB", + "landIce.snc.tavg-u-hxy-lnd.mon.GLB", + "landIce.snw.tavg-u-hxy-lnd.mon.GLB", + "ocean.areacello.ti-u-hxy-u.fx.GLB", + "ocean.basin.ti-u-hxy-u.fx.GLB", + "ocean.bigthetao.tavg-ol-hxy-sea.mon.GLB", + "ocean.deptho.ti-u-hxy-sea.fx.GLB", + "ocean.hfds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfgeou.ti-u-hxy-sea.fx.GLB", + "ocean.masscello.tavg-ol-hxy-sea.mon.GLB", + "ocean.masscello.ti-ol-hxy-sea.fx.GLB", + "ocean.mlotst.tavg-u-hxy-sea.mon.GLB", + "ocean.sftof.ti-u-hxy-u.fx.GLB", + "ocean.so.tavg-ol-hxy-sea.mon.GLB", + "ocean.sos.tavg-u-hxy-sea.day.GLB", + "ocean.sos.tavg-u-hxy-sea.mon.GLB", + "ocean.tauuo.tavg-u-hxy-sea.mon.GLB", + "ocean.tauvo.tavg-u-hxy-sea.mon.GLB", + "ocean.thetao.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcello.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcello.ti-ol-hxy-sea.fx.GLB", + "ocean.tos.tavg-u-hxy-sea.day.GLB", + "ocean.tos.tavg-u-hxy-sea.mon.GLB", + "ocean.umo.tavg-ol-hxy-sea.mon.GLB", + "ocean.uo.tavg-ol-hxy-sea.mon.GLB", + "ocean.vmo.tavg-ol-hxy-sea.mon.GLB", + "ocean.vo.tavg-ol-hxy-sea.mon.GLB", + "ocean.wmo.tavg-ol-hxy-sea.mon.GLB", + "ocean.wo.tavg-ol-hxy-sea.mon.GLB", + "ocean.zos.tavg-u-hxy-sea.day.GLB", + "ocean.zos.tavg-u-hxy-sea.mon.GLB", + "ocean.zostoga.tavg-u-hm-sea.mon.GLB", + "seaIce.siconc.tavg-u-hxy-u.day.GLB", + "seaIce.siconc.tavg-u-hxy-u.mon.GLB", + "seaIce.simass.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-si.mon.GLB", + "seaIce.sitimefrac.tavg-u-hxy-sea.mon.GLB", + "seaIce.siu.tavg-u-hxy-si.mon.GLB", + "seaIce.siv.tavg-u-hxy-si.mon.GLB", + "seaIce.snd.tavg-u-hxy-sn.mon.GLB", + "seaIce.ts.tavg-u-hxy-si.mon.GLB" + ], + "High": [ + "aerosol.depdust.tavg-u-hxy-u.mon.GLB", + "atmos.cl.tavg-al-hxy-u.day.GLB", + "atmos.clt.tavg-u-hxy-u.1hr.30S-90S", + "atmos.co2.tavg-h2m-hxy-u.mon.GLB", + "atmos.co2mass.tavg-u-hm-u.mon.GLB", + "atmos.evspsbl.tavg-u-hxy-lnd.day.GLB", + "atmos.hfls.tavg-u-hxy-u.day.GLB", + "atmos.hfss.tavg-u-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.1hr.30S-90S", + "atmos.huss.tavg-h2m-hxy-u.6hr.GLB", + "atmos.intuadse.tavg-u-hxy-u.day.GLB", + "atmos.intuadse.tavg-u-hxy-u.mon.GLB", + "atmos.intuaw.tavg-u-hxy-u.day.GLB", + "atmos.intuaw.tavg-u-hxy-u.mon.GLB", + "atmos.intvadse.tavg-u-hxy-u.day.GLB", + "atmos.intvadse.tavg-u-hxy-u.mon.GLB", + "atmos.intvaw.tavg-u-hxy-u.day.GLB", + "atmos.intvaw.tavg-u-hxy-u.mon.GLB", + "atmos.pfull.tavg-al-hxy-u.day.GLB", + "atmos.pr.tavg-u-hxy-u.1hr.30S-90S", + "atmos.pr17O.tavg-u-hxy-u.mon.GLB", + "atmos.pr18O.tavg-u-hxy-u.mon.GLB", + "atmos.pr2h.tavg-u-hxy-u.mon.GLB", + "atmos.prc.tavg-u-hxy-u.day.GLB", + "atmos.prra.tavg-u-hxy-lnd.day.GLB", + "atmos.prra.tavg-u-hxy-u.6hr.GLB", + "atmos.prra.tavg-u-hxy-u.mon.GLB", + "atmos.prsn.tavg-u-hxy-u.6hr.GLB", + "atmos.prsn.tavg-u-hxy-u.day.GLB", + "atmos.prsn18O.tavg-u-hxy-u.mon.GLB", + "atmos.prsn2h.tavg-u-hxy-u.mon.GLB", + "atmos.ps.tavg-u-hxy-u.6hr.GLB", + "atmos.ps.tpt-u-hxy-u.1hr.30S-90S", + "atmos.psl.tpt-u-hxy-u.1hr.GLB", + "atmos.rlds.tavg-u-hxy-u.1hr.30S-90S", + "atmos.rlds.tavg-u-hxy-u.6hr.GLB", + "atmos.rlds.tavg-u-hxy-u.day.GLB", + "atmos.rlus.tavg-u-hxy-u.day.GLB", + "atmos.rlut.tavg-u-hxy-u.day.GLB", + "atmos.rsds.tavg-u-hxy-u.1hr.30S-90S", + "atmos.rsds.tavg-u-hxy-u.6hr.GLB", + "atmos.rsdt.tavg-u-hxy-u.day.GLB", + "atmos.rsus.tavg-u-hxy-u.day.GLB", + "atmos.rsut.tavg-u-hxy-u.day.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.1hr.30S-90S", + "atmos.sfcWind.tavg-h10m-hxy-u.6hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.6hr.GLB", + "atmos.tdps.tavg-h2m-hxy-u.mon.GLB", + "atmos.ts.tavg-u-hxy-u.6hr.GLB", + "atmos.ts.tavg-u-hxy-u.day.GLB", + "atmos.ua.tpt-h100m-hxy-u.1hr.GLB", + "atmos.uas.tpt-h10m-hxy-u.1hr.GLB", + "atmos.va.tpt-h100m-hxy-u.1hr.GLB", + "atmos.vas.tpt-h10m-hxy-u.1hr.GLB", + "land.burntFractionAll.tavg-u-hxy-u.mon.GLB", + "land.cSoil.tavg-sl-hxy-lnd.mon.GLB", + "land.cSoil.tavg-u-hxy-lnd.mon.GLB", + "land.depthl.ti-u-hxy-u.fx.GLB", + "land.depthsl.ti-u-hxy-u.fx.GLB", + "land.evspsblpot.tavg-u-hxy-lnd.day.GLB", + "land.evspsblpot.tavg-u-hxy-lnd.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.day.GLB", + "land.mrros.tavg-u-hxy-lnd.day.GLB", + "land.mrsfl.tavg-sl-hxy-lnd.day.GLB", + "land.mrsfl.tavg-sl-hxy-lnd.mon.GLB", + "land.mrsll.tavg-sl-hxy-lnd.day.GLB", + "land.mrsll.tavg-sl-hxy-lnd.mon.GLB", + "land.mrso.tavg-u-hxy-lnd.day.GLB", + "land.mrsol.tavg-d10cm-hxy-lnd.day.GLB", + "land.mrsol.tavg-sl-hxy-lnd.day.GLB", + "land.mrsol.tavg-sl-hxy-lnd.mon.GLB", + "land.orog.ti-u-hxy-u.fx.30S-90S", + "land.rsds.tavg-u-hxy-lnd.mon.GLB", + "land.rsds.tavg-u-hxy-sn.mon.GLB", + "land.rsus.tavg-u-hxy-lnd.mon.GLB", + "land.rsus.tavg-u-hxy-sn.mon.GLB", + "land.sftgif.tavg-u-hxy-u.mon.GLB", + "land.sftlaf.ti-u-hxy-u.fx.GLB", + "land.tas.tavg-u-hxy-u.1hr.30S-90S", + "land.tsl.tavg-sl-hxy-lnd.day.GLB", + "land.tsl.tavg-sl-hxy-lnd.mon.GLB", + "landIce.acabf.tavg-u-hxy-is.mon.GLB", + "landIce.hfls.tavg-u-hxy-is.mon.GLB", + "landIce.hfss.tavg-u-hxy-is.mon.GLB", + "landIce.icem.tavg-u-hxy-is.mon.GLB", + "landIce.litemptop.tavg-u-hxy-is.mon.GLB", + "landIce.lithk.ti-u-hxy-u.fx.GLB", + "landIce.mrro.tavg-u-hxy-is.mon.GLB", + "landIce.orog.tavg-u-hxy-is.mon.GLB", + "landIce.prra.tavg-u-hxy-is.mon.GLB", + "landIce.prsn.tavg-u-hxy-is.mon.GLB", + "landIce.rlds.tavg-u-hxy-is.mon.GLB", + "landIce.rlus.tavg-u-hxy-is.mon.GLB", + "landIce.rsds.tavg-u-hxy-is.mon.GLB", + "landIce.rsus.tavg-u-hxy-is.mon.GLB", + "landIce.sbl.tavg-u-hxy-is.mon.GLB", + "landIce.sbl.tavg-u-hxy-lnd.mon.GLB", + "landIce.sbl.tavg-u-hxy-u.mon.GLB", + "landIce.sftflf.tavg-u-hxy-u.mon.GLB", + "landIce.sftflf.ti-u-hxy-u.fx.GLB", + "landIce.sftgrf.tavg-u-hxy-u.mon.GLB", + "landIce.sftgrf.ti-u-hxy-u.fx.GLB", + "landIce.snc.tavg-u-hxy-is.mon.GLB", + "landIce.snd.tavg-u-hxy-lnd.mon.GLB", + "landIce.snicem.tavg-u-hxy-is.mon.GLB", + "landIce.snm.tavg-u-hxy-is.mon.GLB", + "landIce.snm.tavg-u-hxy-lnd.mon.GLB", + "landIce.snrefr.tavg-u-hxy-is.mon.GLB", + "landIce.tas.tavg-u-hxy-is.mon.GLB", + "landIce.ts.tavg-u-hxy-is.mon.GLB", + "landIce.tsn.tavg-u-hxy-is.mon.GLB", + "landIce.tsn.tavg-u-hxy-lnd.mon.GLB", + "ocean.absscint.tavg-op4-hxy-sea.mon.GLB", + "ocean.agessc.tavg-ol-hxy-sea.mon.GLB", + "ocean.bigthetao.tavg-ol-hm-sea.mon.GLB", + "ocean.bigthetao.tavg-ol-hxy-sea.dec.GLB", + "ocean.bigthetao.tavg-op20bar-hxy-sea.day.GLB", + "ocean.chcint.tavg-op4-hxy-sea.mon.GLB", + "ocean.ficeberg.tavg-u-hxy-sea.mon.GLB", + "ocean.flandice.tavg-u-hxy-sea.mon.GLB", + "ocean.hfbasin.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpmadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpmdiff.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpsmadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfgeou.tavg-u-hxy-sea.mon.GLB", + "ocean.hfx.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfx.tavg-u-hxy-sea.day.GLB", + "ocean.hfx.tavg-u-hxy-sea.mon.GLB", + "ocean.hfy.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfy.tavg-u-hxy-sea.day.GLB", + "ocean.hfy.tavg-u-hxy-sea.mon.GLB", + "ocean.htovgyre.tavg-u-hyb-sea.mon.GLB", + "ocean.htovovrt.tavg-u-hyb-sea.mon.GLB", + "ocean.masscello.tavg-ol-hxy-sea.dec.GLB", + "ocean.masso.tavg-u-hm-sea.dec.GLB", + "ocean.masso.tavg-u-hm-sea.mon.GLB", + "ocean.mlotst.tavg-u-hxy-sea.day.GLB", + "ocean.mlotst.tmax-u-hxy-sea.mon.GLB", + "ocean.mlotst.tmin-u-hxy-sea.mon.GLB", + "ocean.mpw.tavg-u-hxy-sea.mon.GLB", + "ocean.mpw.tpt-u-hxy-sea.3hr.GLB", + "ocean.mpwswell.tavg-u-hxy-sea.mon.GLB", + "ocean.mpwswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.mpwwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.mpwwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.msftbarot.tavg-u-hxy-sea.mon.GLB", + "ocean.msftm.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftm.tavg-rho-hyb-sea.mon.GLB", + "ocean.msfty.tavg-ol-ht-sea.mon.GLB", + "ocean.msfty.tavg-rho-ht-sea.mon.GLB", + "ocean.obvfsq.tavg-ol-hxy-sea.mon.GLB", + "ocean.opottemptend.tavg-ol-hxy-sea.yr.GLB", + "ocean.pbo.tavg-u-hxy-sea.mon.GLB", + "ocean.pfscint.tavg-op4-hxy-sea.mon.GLB", + "ocean.phcint.tavg-op4-hxy-sea.mon.GLB", + "ocean.pso.tavg-u-hxy-sea.mon.GLB", + "ocean.rsds.tavg-u-hxy-ifs.mon.GLB", + "ocean.rsus.tavg-u-hxy-ifs.mon.GLB", + "ocean.scint.tavg-op4-hxy-sea.mon.GLB", + "ocean.sduo.tavg-u-hxy-sea.mon.GLB", + "ocean.sduo.tpt-u-hxy-sea.3hr.GLB", + "ocean.sdvo.tavg-u-hxy-sea.mon.GLB", + "ocean.sdvo.tpt-u-hxy-sea.3hr.GLB", + "ocean.sfx.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfx.tavg-u-hxy-sea.mon.GLB", + "ocean.sfy.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfy.tavg-u-hxy-sea.mon.GLB", + "ocean.sltbasin.tavg-u-hyb-sea.mon.GLB", + "ocean.sltovgyre.tavg-u-hyb-sea.mon.GLB", + "ocean.sltovovrt.tavg-u-hyb-sea.mon.GLB", + "ocean.so.tavg-ol-hm-sea.mon.GLB", + "ocean.so.tavg-ol-hxy-sea.dec.GLB", + "ocean.sob.tavg-u-hxy-sea.mon.GLB", + "ocean.sos.tavg-u-hm-sea.mon.GLB", + "ocean.sw17O.tavg-ol-hxy-sea.mon.GLB", + "ocean.sw18O.tavg-ol-hxy-sea.mon.GLB", + "ocean.sw2H.tavg-ol-hxy-sea.mon.GLB", + "ocean.swh.tavg-u-hxy-sea.mon.GLB", + "ocean.swh.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhmax.tmax-u-hxy-sea.mon.GLB", + "ocean.swhmax.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhswell.tavg-u-hxy-sea.mon.GLB", + "ocean.swhswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.swhwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.tauuo.tavg-u-hxy-sea.dec.GLB", + "ocean.tauvo.tavg-u-hxy-sea.dec.GLB", + "ocean.thetao.tavg-ol-hm-sea.mon.GLB", + "ocean.thetao.tavg-ol-hxy-sea.dec.GLB", + "ocean.thetao.tavg-op20bar-hxy-sea.day.GLB", + "ocean.thkcello.tavg-ol-hxy-sea.dec.GLB", + "ocean.tob.tavg-u-hxy-sea.mon.GLB", + "ocean.tos.tavg-u-hm-sea.mon.GLB", + "ocean.tos.tpt-u-hxy-sea.3hr.GLB", + "ocean.tossq.tavg-u-hxy-sea.day.GLB", + "ocean.uos.tavg-u-hxy-sea.day.GLB", + "ocean.volcello.tavg-ol-hxy-sea.dec.GLB", + "ocean.volcello.tavg-ol-hxy-sea.mon.GLB", + "ocean.volcello.tavg-ol-hxy-sea.yr.GLB", + "ocean.volcello.ti-ol-hxy-sea.fx.GLB", + "ocean.volo.tavg-u-hm-sea.dec.GLB", + "ocean.volo.tavg-u-hm-sea.mon.GLB", + "ocean.vos.tavg-u-hxy-sea.day.GLB", + "ocean.wdir.tavg-u-hxy-sea.mon.GLB", + "ocean.wdir.tpt-u-hxy-sea.3hr.GLB", + "ocean.wdirswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wdirswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wdirwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wdirwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.wfcorr.tavg-u-hxy-sea.mon.GLB", + "ocean.wfo.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdir.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdir.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpdirswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdirswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpdirwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdirwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpp.tavg-u-hxy-sea.mon.GLB", + "ocean.wpp.tpt-u-hxy-sea.3hr.GLB", + "ocean.wppswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wppswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wppwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wppwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.zossq.tavg-u-hxy-sea.mon.GLB", + "ocean.zostoga.tavg-u-hm-sea.day.GLB", + "seaIce.evspsbl.tavg-u-hxy-si.mon.GLB", + "seaIce.prra.tavg-u-hxy-si.mon.GLB", + "seaIce.prsn.tavg-u-hxy-si.mon.GLB", + "seaIce.rlds.tavg-u-hxy-si.day.GLB", + "seaIce.rlds.tavg-u-hxy-si.mon.GLB", + "seaIce.rlus.tavg-u-hxy-si.day.GLB", + "seaIce.rlus.tavg-u-hxy-si.mon.GLB", + "seaIce.rsds.tavg-u-hxy-si.day.GLB", + "seaIce.rsds.tavg-u-hxy-si.mon.GLB", + "seaIce.rsus.tavg-u-hxy-si.day.GLB", + "seaIce.rsus.tavg-u-hxy-si.mon.GLB", + "seaIce.sbl.tavg-u-hxy-si.mon.GLB", + "seaIce.siage.tavg-u-hxy-si.day.GLB", + "seaIce.siarea.tavg-u-hm-u.mon.NH", + "seaIce.siarea.tavg-u-hm-u.mon.SH", + "seaIce.siareaacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.siconca.tavg-u-hxy-u.day.GLB", + "seaIce.siconca.tavg-u-hxy-u.mon.GLB", + "seaIce.sidconcdyn.tavg-u-hxy-sea.mon.GLB", + "seaIce.sidconcth.tavg-u-hxy-sea.mon.GLB", + "seaIce.sidmassdyn.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthsi.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthwat.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmeltbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmeltlat.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmelttop.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassth.tavg-u-hxy-si.mon.GLB", + "seaIce.sieqthick.tavg-u-hxy-si.mon.GLB", + "seaIce.siextent.tavg-u-hm-u.mon.NH", + "seaIce.siextent.tavg-u-hm-u.mon.SH", + "seaIce.siflcondbot.tavg-u-hxy-si.day.GLB", + "seaIce.siflcondbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflcondtop.tavg-u-hxy-si.day.GLB", + "seaIce.siflcondtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sifllattop.tavg-u-hxy-si.day.GLB", + "seaIce.sifllattop.tavg-u-hxy-si.mon.GLB", + "seaIce.siflsensbot.tavg-u-hxy-si.day.GLB", + "seaIce.siflsensbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflsenstop.tavg-u-hxy-si.day.GLB", + "seaIce.siflsenstop.tavg-u-hxy-si.mon.GLB", + "seaIce.siflswdbot.tavg-u-hxy-si.day.GLB", + "seaIce.siflswdbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sihc.tavg-u-hxy-sea.day.GLB", + "seaIce.sihc.tavg-u-hxy-sea.mon.GLB", + "seaIce.siitdconc.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdsnconc.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdsnthick.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdthick.tavg-u-hxy-si.mon.GLB", + "seaIce.simassacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.simpconc.tavg-u-hxy-si.mon.GLB", + "seaIce.sirdgconc.tavg-u-hxy-si.mon.GLB", + "seaIce.sisaltmass.tavg-u-hxy-si.mon.GLB", + "seaIce.sisndmassdyn.tavg-u-hxy-si.mon.GLB", + "seaIce.sisndmasssi.tavg-u-hxy-si.mon.GLB", + "seaIce.sisndmasswind.tavg-u-hxy-si.mon.GLB", + "seaIce.sisnhc.tavg-u-hxy-si.day.GLB", + "seaIce.sisnhc.tavg-u-hxy-si.mon.GLB", + "seaIce.sisnmass.tavg-u-hm-u.mon.NH", + "seaIce.sisnmass.tavg-u-hm-u.mon.SH", + "seaIce.sisnmassacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.sispeed.tavg-u-hxy-si.day.GLB", + "seaIce.sispeed.tavg-u-hxy-si.mon.GLB", + "seaIce.sistressave.tpt-u-hxy-si.mon.GLB", + "seaIce.sistressmax.tpt-u-hxy-si.mon.GLB", + "seaIce.sistrxdtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sistrxubot.tavg-u-hxy-si.mon.GLB", + "seaIce.sistrydtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sistryubot.tavg-u-hxy-si.mon.GLB", + "seaIce.sitempsnic.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-si.day.GLB", + "seaIce.sitimefrac.tavg-u-hxy-sea.day.GLB", + "seaIce.siu.tavg-u-hxy-si.day.GLB", + "seaIce.siv.tavg-u-hxy-si.day.GLB", + "seaIce.sivol.tavg-u-hm-u.mon.NH", + "seaIce.sivol.tavg-u-hm-u.mon.SH", + "seaIce.snc.tavg-u-hxy-si.mon.GLB", + "seaIce.snd.tavg-u-hxy-sn.day.GLB", + "seaIce.snm.tavg-u-hxy-si.mon.GLB", + "seaIce.snw.tavg-u-hxy-si.mon.GLB", + "seaIce.ts.tavg-u-hxy-si.day.GLB" + ], + "Medium": [ + "atmos.hfls.tavg-u-hxy-is.mon.ATA", + "atmos.hfls.tavg-u-hxy-is.mon.GRL", + "atmos.hfss.tavg-u-hxy-is.mon.ATA", + "atmos.hfss.tavg-u-hxy-is.mon.GRL", + "atmos.prra.tavg-u-hxy-is.mon.ATA", + "atmos.prra.tavg-u-hxy-is.mon.GRL", + "atmos.prsn.tavg-u-hxy-is.mon.ATA", + "atmos.prsn.tavg-u-hxy-is.mon.GRL", + "atmos.rlds.tavg-u-hxy-is.mon.ATA", + "atmos.rlds.tavg-u-hxy-is.mon.GRL", + "atmos.rlus.tavg-u-hxy-is.mon.ATA", + "atmos.rlus.tavg-u-hxy-is.mon.GRL", + "atmos.rsds.tavg-u-hxy-is.mon.ATA", + "atmos.rsds.tavg-u-hxy-is.mon.GRL", + "atmos.rsus.tavg-u-hxy-is.mon.ATA", + "atmos.rsus.tavg-u-hxy-is.mon.GRL", + "atmos.sfcWind.tmax-h10m-hxy-u.day.GLB", + "atmos.tas.tavg-h2m-hm-is.mon.ATA", + "atmos.tas.tavg-h2m-hm-is.mon.GRL", + "atmos.ts.tavg-u-hxy-is.mon.ATA", + "atmos.ts.tavg-u-hxy-is.mon.GRL", + "atmosChem.flashrate.tavg-u-hxy-u.day.GLB", + "land.areacellg.ti-u-hxy-u.fx.ATA", + "land.areacellg.ti-u-hxy-u.fx.GRL", + "land.orog.tavg-u-hxy-is.mon.ATA", + "land.orog.tavg-u-hxy-is.mon.GRL", + "land.orog.tavg-u-hxy-is.yr.ATA", + "land.orog.tavg-u-hxy-is.yr.GRL", + "land.sftgif.tavg-u-hxy-u.yr.ATA", + "land.sftgif.tavg-u-hxy-u.yr.GRL", + "landIce.acabf.tavg-u-hxy-is.mon.ATA", + "landIce.acabf.tavg-u-hxy-is.mon.GRL", + "landIce.acabf.tavg-u-hxy-is.yr.ATA", + "landIce.acabf.tavg-u-hxy-is.yr.GRL", + "landIce.hfgeoubed.tavg-u-hxy-gis.yr.ATA", + "landIce.hfgeoubed.tavg-u-hxy-gis.yr.GRL", + "landIce.hfgeoubed.ti-u-hxy-gis.fx.ATA", + "landIce.hfgeoubed.ti-u-hxy-gis.fx.GRL", + "landIce.iareafl.tavg-u-hm-fis.yr.ATA", + "landIce.iareafl.tavg-u-hm-fis.yr.GRL", + "landIce.iareagr.tavg-u-hm-gis.yr.ATA", + "landIce.iareagr.tavg-u-hm-gis.yr.GRL", + "landIce.icem.tavg-u-hxy-is.mon.ATA", + "landIce.icem.tavg-u-hxy-is.mon.GRL", + "landIce.libmassbf.tavg-u-hxy-fis.mon.ATA", + "landIce.libmassbf.tavg-u-hxy-fis.mon.GRL", + "landIce.libmassbf.tavg-u-hxy-fis.yr.ATA", + "landIce.libmassbf.tavg-u-hxy-fis.yr.GRL", + "landIce.libmassbf.tavg-u-hxy-gis.mon.ATA", + "landIce.libmassbf.tavg-u-hxy-gis.mon.GRL", + "landIce.libmassbf.tavg-u-hxy-gis.yr.ATA", + "landIce.libmassbf.tavg-u-hxy-gis.yr.GRL", + "landIce.licalvf.tavg-u-hxy-is.mon.ATA", + "landIce.licalvf.tavg-u-hxy-is.mon.GRL", + "landIce.licalvf.tavg-u-hxy-is.yr.ATA", + "landIce.licalvf.tavg-u-hxy-is.yr.GRL", + "landIce.lifmassbf.tavg-u-hxy-is.mon.ATA", + "landIce.lifmassbf.tavg-u-hxy-is.mon.GRL", + "landIce.lifmassbf.tavg-u-hxy-is.yr.ATA", + "landIce.lifmassbf.tavg-u-hxy-is.yr.GRL", + "landIce.lim.tavg-u-hm-is.yr.ATA", + "landIce.lim.tavg-u-hm-is.yr.GRL", + "landIce.limnsw.tavg-u-hm-is.yr.ATA", + "landIce.limnsw.tavg-u-hm-is.yr.GRL", + "landIce.litempbot.tavg-u-hxy-fis.mon.ATA", + "landIce.litempbot.tavg-u-hxy-fis.mon.GRL", + "landIce.litempbot.tavg-u-hxy-fis.yr.ATA", + "landIce.litempbot.tavg-u-hxy-fis.yr.GRL", + "landIce.litempbot.tavg-u-hxy-gis.mon.ATA", + "landIce.litempbot.tavg-u-hxy-gis.mon.GRL", + "landIce.litempbot.tavg-u-hxy-gis.yr.ATA", + "landIce.litempbot.tavg-u-hxy-gis.yr.GRL", + "landIce.litemptop.tavg-u-hxy-is.mon.ATA", + "landIce.litemptop.tavg-u-hxy-is.mon.GRL", + "landIce.litemptop.tavg-u-hxy-is.yr.ATA", + "landIce.litemptop.tavg-u-hxy-is.yr.GRL", + "landIce.lithk.tavg-u-hxy-is.yr.ATA", + "landIce.lithk.tavg-u-hxy-is.yr.GRL", + "landIce.lithk.ti-u-hxy-is.fx.ATA", + "landIce.lithk.ti-u-hxy-is.fx.GRL", + "landIce.modelcellareai.tavg-u-hxy-u.yr.ATA", + "landIce.modelcellareai.tavg-u-hxy-u.yr.GRL", + "landIce.mrroLi.tavg-u-hxy-is.mon.ATA", + "landIce.mrroLi.tavg-u-hxy-is.mon.GRL", + "landIce.sbl.tavg-u-hxy-is.mon.ATA", + "landIce.sbl.tavg-u-hxy-is.mon.GRL", + "landIce.sftflf.tavg-u-hxy-u.yr.ATA", + "landIce.sftflf.tavg-u-hxy-u.yr.GRL", + "landIce.sftgrf.tavg-u-hxy-u.yr.ATA", + "landIce.sftgrf.tavg-u-hxy-u.yr.GRL", + "landIce.snc.tavg-u-hxy-is.mon.ATA", + "landIce.snc.tavg-u-hxy-is.mon.GRL", + "landIce.snc.tavg-u-hxy-is.yr.ATA", + "landIce.snc.tavg-u-hxy-is.yr.GRL", + "landIce.snicem.tavg-u-hxy-is.mon.ATA", + "landIce.snicem.tavg-u-hxy-is.mon.GRL", + "landIce.snm.tavg-u-hxy-is.mon.ATA", + "landIce.snm.tavg-u-hxy-is.mon.GRL", + "landIce.snrefr.tavg-u-hxy-is.mon.ATA", + "landIce.snrefr.tavg-u-hxy-is.mon.GRL", + "landIce.strbasemag.tavg-u-hxy-is.yr.ATA", + "landIce.strbasemag.tavg-u-hxy-is.yr.GRL", + "landIce.tendacabf.tavg-u-hm-is.yr.ATA", + "landIce.tendacabf.tavg-u-hm-is.yr.GRL", + "landIce.tendlibmassbf.tavg-u-hm-is.yr.ATA", + "landIce.tendlibmassbf.tavg-u-hm-is.yr.GRL", + "landIce.tendlicalvf.tavg-u-hm-is.yr.ATA", + "landIce.tendlicalvf.tavg-u-hm-is.yr.GRL", + "landIce.topg.tavg-u-hxy-gis.yr.ATA", + "landIce.topg.tavg-u-hxy-gis.yr.GRL", + "landIce.topg.ti-u-hxy-gis.fx.ATA", + "landIce.topg.ti-u-hxy-gis.fx.GRL", + "landIce.tsn.tavg-u-hxy-is.mon.ATA", + "landIce.tsn.tavg-u-hxy-is.mon.GRL", + "landIce.xvelbase.tavg-u-hxy-is.yr.ATA", + "landIce.xvelbase.tavg-u-hxy-is.yr.GRL", + "landIce.xvelmean.tavg-u-hxy-is.yr.ATA", + "landIce.xvelmean.tavg-u-hxy-is.yr.GRL", + "landIce.xvelsurf.tavg-u-hxy-is.yr.ATA", + "landIce.xvelsurf.tavg-u-hxy-is.yr.GRL", + "landIce.yvelbase.tavg-u-hxy-is.yr.ATA", + "landIce.yvelbase.tavg-u-hxy-is.yr.GRL", + "landIce.yvelmean.tavg-u-hxy-is.yr.ATA", + "landIce.yvelmean.tavg-u-hxy-is.yr.GRL", + "landIce.yvelsurf.tavg-u-hxy-is.yr.ATA", + "landIce.yvelsurf.tavg-u-hxy-is.yr.GRL", + "landIce.zvelbase.tavg-u-hxy-is.yr.ATA", + "landIce.zvelbase.tavg-u-hxy-is.yr.GRL", + "landIce.zvelsurf.tavg-u-hxy-is.yr.ATA", + "landIce.zvelsurf.tavg-u-hxy-is.yr.GRL", + "ocean.evspsbl.tavg-u-hxy-ifs.mon.GLB", + "ocean.ficeberg.tavg-ol-hxy-sea.mon.GLB", + "ocean.friver.tavg-u-hxy-sea.mon.GLB", + "ocean.hfacrossline.tavg-u-ht-sea.mon.GLB", + "ocean.hfevapds.tavg-u-hxy-ifs.mon.GLB", + "ocean.hfibthermds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfibthermds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfrainds.tavg-u-hxy-ifs.mon.GLB", + "ocean.hfrunoffds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfrunoffds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfsnthermds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfsnthermds.tavg-u-hxy-sea.mon.GLB", + "ocean.mfo.tavg-u-ht-sea.mon.GLB", + "ocean.sfacrossline.tavg-u-ht-sea.mon.GLB", + "ocean.sfdsi.tavg-u-hxy-sea.mon.GLB", + "ocean.sfriver.tavg-u-hxy-sea.mon.GLB", + "ocean.siflfwbot.tavg-u-hxy-sea.mon.GLB", + "ocean.so.tavg-ol-hxy-sea.day.GLB", + "ocean.tnkebto.tavg-u-hxy-sea.yr.GLB", + "ocean.vsf.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfcorr.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfevap.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfpr.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfriver.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfsit.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.arag.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.arag.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.calc.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.calc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chl.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.dissic.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.o2.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.ph.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.talk.tavg-ol-hxy-sea.mon.GLB", + "seaIce.sfdsi.tavg-u-hxy-si.mon.GLB", + "seaIce.siage.tavg-u-hxy-si.mon.GLB", + "seaIce.siarea.tavg-u-hm-u.day.NH", + "seaIce.siarea.tavg-u-hm-u.day.SH", + "seaIce.sicompstren.tavg-u-hxy-si.mon.GLB", + "seaIce.sidivvel.tpt-u-hxy-si.mon.GLB", + "seaIce.sidmasstranx.tavg-u-hxy-u.mon.GLB", + "seaIce.sidmasstrany.tavg-u-hxy-u.mon.GLB", + "seaIce.sidragbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidragtop.tavg-u-hxy-si.mon.GLB", + "seaIce.siextent.tavg-u-hm-u.day.NH", + "seaIce.siextent.tavg-u-hm-u.day.SH", + "seaIce.sifb.tavg-u-hxy-si.day.GLB", + "seaIce.sifb.tavg-u-hxy-si.mon.GLB", + "seaIce.siflfwbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflfwdrain.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcecoriolx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcecorioly.tavg-u-hxy-si.mon.GLB", + "seaIce.siforceintstrx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforceintstry.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcetiltx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcetilty.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdconc.tavg-u-hxy-si.day.GLB", + "seaIce.siitdsnconc.tavg-u-hxy-si.day.GLB", + "seaIce.siitdsnthick.tavg-u-hxy-si.day.GLB", + "seaIce.siitdthick.tavg-u-hxy-si.day.GLB", + "seaIce.simpconc.tavg-u-hxy-si.day.GLB", + "seaIce.simpeffconc.tavg-u-hxy-si.day.GLB", + "seaIce.simpeffconc.tavg-u-hxy-si.mon.GLB", + "seaIce.simprefrozen.tavg-u-hxy-simp.day.GLB", + "seaIce.simprefrozen.tavg-u-hxy-simp.mon.GLB", + "seaIce.simpthick.tavg-u-hxy-si.day.GLB", + "seaIce.simpthick.tavg-u-hxy-simp.mon.GLB", + "seaIce.sirdgconc.tavg-u-hxy-si.day.GLB", + "seaIce.sisali.tavg-u-hxy-si.day.GLB", + "seaIce.sisali.tavg-u-hxy-si.mon.GLB", + "seaIce.sisaltmass.tavg-u-hxy-si.day.GLB", + "seaIce.sishearvel.tpt-u-hxy-si.mon.GLB", + "seaIce.sisnmass.tavg-u-hm-u.day.NH", + "seaIce.sisnmass.tavg-u-hm-u.day.SH", + "seaIce.sitempbot.tavg-u-hxy-si.day.GLB", + "seaIce.sitempbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sitempsnic.tavg-u-hxy-si.day.GLB", + "seaIce.sithick.tavg-u-hxy-sir.day.GLB", + "seaIce.sithick.tavg-u-hxy-sir.mon.GLB", + "seaIce.sivol.tavg-u-hm-u.day.NH", + "seaIce.sivol.tavg-u-hm-u.day.SH" + ], + "Low": [ + "ocean.difmxybo.tavg-ol-hxy-sea.yr.GLB", + "ocean.difmxylo.tavg-ol-hxy-sea.yr.GLB", + "ocean.diftrblo.tavg-ol-hxy-sea.yr.GLB", + "ocean.diftrelo.tavg-ol-hxy-sea.yr.GLB", + "ocean.difvho.tavg-ol-hxy-sea.yr.GLB", + "ocean.difvso.tavg-ol-hxy-sea.yr.GLB", + "ocean.dispkexyfo.tavg-u-hxy-sea.yr.GLB", + "ocean.dxto.ti-u-hxy-u.fx.GLB", + "ocean.dxuo.ti-u-hxy-u.fx.GLB", + "ocean.dxvo.ti-u-hxy-u.fx.GLB", + "ocean.dyto.ti-u-hxy-u.fx.GLB", + "ocean.dyuo.ti-u-hxy-u.fx.GLB", + "ocean.dyvo.ti-u-hxy-u.fx.GLB", + "ocean.mlotstsq.tavg-u-hxy-sea.mon.GLB", + "ocean.msftmmpa.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftmmpa.tavg-rho-hyb-sea.mon.GLB", + "ocean.msftmsmpa.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftypa.tavg-ol-ht-sea.mon.GLB", + "ocean.msftypa.tavg-rho-ht-sea.mon.GLB", + "ocean.ocontempdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontempmint.tavg-u-hxy-sea.yr.GLB", + "ocean.ocontemppadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemppmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemppsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemprmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemptend.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottempdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottempmint.tavg-u-hxy-sea.yr.GLB", + "ocean.opottemppadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemppmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemppsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemprmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemptend.tavg-ol-hxy-sea.dec.GLB", + "ocean.osaltdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpsmadvect.tavg-ol-hxy-sea.mon.GLB", + "ocean.osaltpsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltrmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osalttend.tavg-ol-hxy-sea.yr.GLB", + "ocean.rsdoabsorb.tavg-ol-hxy-sea.yr.GLB", + "ocean.somint.tavg-u-hxy-sea.yr.GLB", + "ocean.sossq.tavg-u-hxy-sea.mon.GLB", + "ocean.thkcelluo.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcellvo.tavg-ol-hxy-sea.mon.GLB", + "ocean.tnpeo.tavg-u-hxy-sea.yr.GLB", + "ocean.tossq.tavg-u-hxy-sea.mon.GLB" + ] + }, + "scenariomip23": { + "Core": [ + "atmos.areacella.ti-u-hxy-u.fx.GLB", + "atmos.cl.tavg-al-hxy-u.mon.GLB", + "atmos.cli.tavg-al-hxy-u.mon.GLB", + "atmos.clivi.tavg-u-hxy-u.mon.GLB", + "atmos.clt.tavg-u-hxy-u.day.GLB", + "atmos.clt.tavg-u-hxy-u.mon.GLB", + "atmos.clw.tavg-al-hxy-u.mon.GLB", + "atmos.clwvi.tavg-u-hxy-u.mon.GLB", + "atmos.evspsbl.tavg-u-hxy-u.mon.GLB", + "atmos.hfls.tavg-u-hxy-u.mon.GLB", + "atmos.hfss.tavg-u-hxy-u.mon.GLB", + "atmos.hur.tavg-p19-hxy-air.mon.GLB", + "atmos.hur.tavg-p19-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.6hr.GLB", + "atmos.hurs.tavg-h2m-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.mon.GLB", + "atmos.hus.tavg-p19-hxy-u.day.GLB", + "atmos.hus.tavg-p19-hxy-u.mon.GLB", + "atmos.huss.tavg-h2m-hxy-u.day.GLB", + "atmos.huss.tavg-h2m-hxy-u.mon.GLB", + "atmos.huss.tpt-h2m-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.1hr.GLB", + "atmos.pr.tavg-u-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.day.GLB", + "atmos.pr.tavg-u-hxy-u.mon.GLB", + "atmos.prc.tavg-u-hxy-u.mon.GLB", + "atmos.prsn.tavg-u-hxy-u.mon.GLB", + "atmos.prw.tavg-u-hxy-u.mon.GLB", + "atmos.ps.tavg-u-hxy-u.day.GLB", + "atmos.ps.tavg-u-hxy-u.mon.GLB", + "atmos.psl.tavg-u-hxy-u.day.GLB", + "atmos.psl.tavg-u-hxy-u.mon.GLB", + "atmos.rlds.tavg-u-hxy-u.mon.GLB", + "atmos.rldscs.tavg-u-hxy-u.mon.GLB", + "atmos.rlus.tavg-u-hxy-u.mon.GLB", + "atmos.rluscs.tavg-u-hxy-u.mon.GLB", + "atmos.rlut.tavg-u-hxy-u.mon.GLB", + "atmos.rlutcs.tavg-u-hxy-u.mon.GLB", + "atmos.rsds.tavg-u-hxy-u.day.GLB", + "atmos.rsds.tavg-u-hxy-u.mon.GLB", + "atmos.rsdscs.tavg-u-hxy-u.mon.GLB", + "atmos.rsdt.tavg-u-hxy-u.mon.GLB", + "atmos.rsus.tavg-u-hxy-u.mon.GLB", + "atmos.rsuscs.tavg-u-hxy-u.mon.GLB", + "atmos.rsut.tavg-u-hxy-u.mon.GLB", + "atmos.rsutcs.tavg-u-hxy-u.mon.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.day.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.mon.GLB", + "atmos.sftlf.ti-u-hxy-u.fx.GLB", + "atmos.ta.tavg-p19-hxy-air.day.GLB", + "atmos.ta.tavg-p19-hxy-air.mon.GLB", + "atmos.ta.tpt-p3-hxy-air.6hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.day.GLB", + "atmos.tas.tavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tmax-h2m-hxy-u.day.GLB", + "atmos.tas.tmaxavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tmin-h2m-hxy-u.day.GLB", + "atmos.tas.tminavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tpt-h2m-hxy-u.3hr.GLB", + "atmos.tauu.tavg-u-hxy-u.mon.GLB", + "atmos.tauv.tavg-u-hxy-u.mon.GLB", + "atmos.ts.tavg-u-hxy-u.mon.GLB", + "atmos.ua.tavg-p19-hxy-air.day.GLB", + "atmos.ua.tavg-p19-hxy-air.mon.GLB", + "atmos.ua.tpt-p3-hxy-air.6hr.GLB", + "atmos.uas.tavg-h10m-hxy-u.day.GLB", + "atmos.uas.tavg-h10m-hxy-u.mon.GLB", + "atmos.uas.tpt-h10m-hxy-u.3hr.GLB", + "atmos.va.tavg-p19-hxy-air.day.GLB", + "atmos.va.tavg-p19-hxy-air.mon.GLB", + "atmos.va.tpt-p3-hxy-air.6hr.GLB", + "atmos.vas.tavg-h10m-hxy-u.day.GLB", + "atmos.vas.tavg-h10m-hxy-u.mon.GLB", + "atmos.vas.tpt-h10m-hxy-u.3hr.GLB", + "atmos.wap.tavg-p19-hxy-air.mon.GLB", + "atmos.wap.tavg-p19-hxy-u.day.GLB", + "atmos.zg.tavg-p19-hxy-air.day.GLB", + "atmos.zg.tavg-p19-hxy-air.mon.GLB", + "land.evspsblsoi.tavg-u-hxy-lnd.mon.GLB", + "land.evspsblveg.tavg-u-hxy-lnd.mon.GLB", + "land.lai.tavg-u-hxy-lnd.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.mon.GLB", + "land.mrros.tavg-u-hxy-lnd.mon.GLB", + "land.mrso.tavg-u-hxy-lnd.mon.GLB", + "land.mrsofc.ti-u-hxy-lnd.fx.GLB", + "land.mrsol.tavg-d10cm-hxy-lnd.mon.GLB", + "land.orog.ti-u-hxy-u.fx.GLB", + "land.rootd.ti-u-hxy-lnd.fx.GLB", + "land.sftgif.ti-u-hxy-u.fx.GLB", + "land.slthick.ti-sl-hxy-lnd.fx.GLB", + "landIce.mrfso.tavg-u-hxy-lnd.mon.GLB", + "landIce.snc.tavg-u-hxy-lnd.mon.GLB", + "landIce.snw.tavg-u-hxy-lnd.mon.GLB", + "ocean.areacello.ti-u-hxy-u.fx.GLB", + "ocean.basin.ti-u-hxy-u.fx.GLB", + "ocean.bigthetao.tavg-ol-hxy-sea.mon.GLB", + "ocean.deptho.ti-u-hxy-sea.fx.GLB", + "ocean.hfds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfgeou.ti-u-hxy-sea.fx.GLB", + "ocean.masscello.tavg-ol-hxy-sea.mon.GLB", + "ocean.masscello.ti-ol-hxy-sea.fx.GLB", + "ocean.mlotst.tavg-u-hxy-sea.mon.GLB", + "ocean.sftof.ti-u-hxy-u.fx.GLB", + "ocean.so.tavg-ol-hxy-sea.mon.GLB", + "ocean.sos.tavg-u-hxy-sea.day.GLB", + "ocean.sos.tavg-u-hxy-sea.mon.GLB", + "ocean.tauuo.tavg-u-hxy-sea.mon.GLB", + "ocean.tauvo.tavg-u-hxy-sea.mon.GLB", + "ocean.thetao.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcello.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcello.ti-ol-hxy-sea.fx.GLB", + "ocean.tos.tavg-u-hxy-sea.day.GLB", + "ocean.tos.tavg-u-hxy-sea.mon.GLB", + "ocean.umo.tavg-ol-hxy-sea.mon.GLB", + "ocean.uo.tavg-ol-hxy-sea.mon.GLB", + "ocean.vmo.tavg-ol-hxy-sea.mon.GLB", + "ocean.vo.tavg-ol-hxy-sea.mon.GLB", + "ocean.wmo.tavg-ol-hxy-sea.mon.GLB", + "ocean.wo.tavg-ol-hxy-sea.mon.GLB", + "ocean.zos.tavg-u-hxy-sea.day.GLB", + "ocean.zos.tavg-u-hxy-sea.mon.GLB", + "ocean.zostoga.tavg-u-hm-sea.mon.GLB", + "seaIce.siconc.tavg-u-hxy-u.day.GLB", + "seaIce.siconc.tavg-u-hxy-u.mon.GLB", + "seaIce.simass.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-si.mon.GLB", + "seaIce.sitimefrac.tavg-u-hxy-sea.mon.GLB", + "seaIce.siu.tavg-u-hxy-si.mon.GLB", + "seaIce.siv.tavg-u-hxy-si.mon.GLB", + "seaIce.snd.tavg-u-hxy-sn.mon.GLB", + "seaIce.ts.tavg-u-hxy-si.mon.GLB" + ], + "High": [ + "aerosol.depdust.tavg-u-hxy-u.mon.GLB", + "atmos.co2.tavg-h2m-hxy-u.mon.GLB", + "atmos.hfls.tavg-u-hxy-u.day.GLB", + "atmos.hfss.tavg-u-hxy-u.day.GLB", + "atmos.intuadse.tavg-u-hxy-u.day.GLB", + "atmos.intuadse.tavg-u-hxy-u.mon.GLB", + "atmos.intuaw.tavg-u-hxy-u.day.GLB", + "atmos.intuaw.tavg-u-hxy-u.mon.GLB", + "atmos.intvadse.tavg-u-hxy-u.day.GLB", + "atmos.intvadse.tavg-u-hxy-u.mon.GLB", + "atmos.intvaw.tavg-u-hxy-u.day.GLB", + "atmos.intvaw.tavg-u-hxy-u.mon.GLB", + "atmos.pr17O.tavg-u-hxy-u.mon.GLB", + "atmos.pr18O.tavg-u-hxy-u.mon.GLB", + "atmos.pr2h.tavg-u-hxy-u.mon.GLB", + "atmos.prra.tavg-u-hxy-lnd.day.GLB", + "atmos.prra.tavg-u-hxy-u.mon.GLB", + "atmos.prsn.tavg-u-hxy-u.day.GLB", + "atmos.prsn18O.tavg-u-hxy-u.mon.GLB", + "atmos.prsn2h.tavg-u-hxy-u.mon.GLB", + "atmos.psl.tpt-u-hxy-u.1hr.GLB", + "atmos.rlds.tavg-u-hxy-u.day.GLB", + "atmos.rlus.tavg-u-hxy-u.day.GLB", + "atmos.rlut.tavg-u-hxy-u.day.GLB", + "atmos.rsdt.tavg-u-hxy-u.day.GLB", + "atmos.rsus.tavg-u-hxy-u.day.GLB", + "atmos.rsut.tavg-u-hxy-u.day.GLB", + "atmos.tdps.tavg-h2m-hxy-u.mon.GLB", + "atmos.ts.tavg-u-hxy-u.day.GLB", + "atmos.ua.tpt-h100m-hxy-u.1hr.GLB", + "atmos.uas.tpt-h10m-hxy-u.1hr.GLB", + "atmos.va.tpt-h100m-hxy-u.1hr.GLB", + "atmos.vas.tpt-h10m-hxy-u.1hr.GLB", + "land.burntFractionAll.tavg-u-hxy-u.mon.GLB", + "land.cSoil.tavg-sl-hxy-lnd.mon.GLB", + "land.cSoil.tavg-u-hxy-lnd.mon.GLB", + "land.depthl.ti-u-hxy-u.fx.GLB", + "land.depthsl.ti-u-hxy-u.fx.GLB", + "land.mrro.tavg-u-hxy-lnd.day.GLB", + "land.mrros.tavg-u-hxy-lnd.day.GLB", + "land.mrsfl.tavg-sl-hxy-lnd.day.GLB", + "land.mrsfl.tavg-sl-hxy-lnd.mon.GLB", + "land.mrsll.tavg-sl-hxy-lnd.day.GLB", + "land.mrsll.tavg-sl-hxy-lnd.mon.GLB", + "land.mrsol.tavg-sl-hxy-lnd.day.GLB", + "land.mrsol.tavg-sl-hxy-lnd.mon.GLB", + "land.rsds.tavg-u-hxy-lnd.mon.GLB", + "land.rsds.tavg-u-hxy-sn.mon.GLB", + "land.rsus.tavg-u-hxy-lnd.mon.GLB", + "land.rsus.tavg-u-hxy-sn.mon.GLB", + "land.sftgif.tavg-u-hxy-u.mon.GLB", + "land.sftlaf.ti-u-hxy-u.fx.GLB", + "land.tsl.tavg-sl-hxy-lnd.day.GLB", + "land.tsl.tavg-sl-hxy-lnd.mon.GLB", + "landIce.acabf.tavg-u-hxy-is.mon.GLB", + "landIce.hfls.tavg-u-hxy-is.mon.GLB", + "landIce.hfss.tavg-u-hxy-is.mon.GLB", + "landIce.icem.tavg-u-hxy-is.mon.GLB", + "landIce.litemptop.tavg-u-hxy-is.mon.GLB", + "landIce.lithk.ti-u-hxy-u.fx.GLB", + "landIce.mrro.tavg-u-hxy-is.mon.GLB", + "landIce.orog.tavg-u-hxy-is.mon.GLB", + "landIce.prra.tavg-u-hxy-is.mon.GLB", + "landIce.prsn.tavg-u-hxy-is.mon.GLB", + "landIce.rlds.tavg-u-hxy-is.mon.GLB", + "landIce.rlus.tavg-u-hxy-is.mon.GLB", + "landIce.rsds.tavg-u-hxy-is.mon.GLB", + "landIce.rsus.tavg-u-hxy-is.mon.GLB", + "landIce.sbl.tavg-u-hxy-is.mon.GLB", + "landIce.sbl.tavg-u-hxy-u.mon.GLB", + "landIce.sftflf.tavg-u-hxy-u.mon.GLB", + "landIce.sftflf.ti-u-hxy-u.fx.GLB", + "landIce.sftgrf.tavg-u-hxy-u.mon.GLB", + "landIce.sftgrf.ti-u-hxy-u.fx.GLB", + "landIce.snc.tavg-u-hxy-is.mon.GLB", + "landIce.snd.tavg-u-hxy-lnd.mon.GLB", + "landIce.snicem.tavg-u-hxy-is.mon.GLB", + "landIce.snm.tavg-u-hxy-is.mon.GLB", + "landIce.snm.tavg-u-hxy-lnd.mon.GLB", + "landIce.snrefr.tavg-u-hxy-is.mon.GLB", + "landIce.tas.tavg-u-hxy-is.mon.GLB", + "landIce.ts.tavg-u-hxy-is.mon.GLB", + "landIce.tsn.tavg-u-hxy-is.mon.GLB", + "landIce.tsn.tavg-u-hxy-lnd.mon.GLB", + "ocean.absscint.tavg-op4-hxy-sea.mon.GLB", + "ocean.agessc.tavg-ol-hxy-sea.mon.GLB", + "ocean.bigthetao.tavg-ol-hm-sea.mon.GLB", + "ocean.bigthetao.tavg-ol-hxy-sea.dec.GLB", + "ocean.bigthetao.tavg-op20bar-hxy-sea.day.GLB", + "ocean.chcint.tavg-op4-hxy-sea.mon.GLB", + "ocean.ficeberg.tavg-u-hxy-sea.mon.GLB", + "ocean.flandice.tavg-u-hxy-sea.mon.GLB", + "ocean.hfbasin.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpmadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpmdiff.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpsmadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfgeou.tavg-u-hxy-sea.mon.GLB", + "ocean.hfx.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfx.tavg-u-hxy-sea.day.GLB", + "ocean.hfx.tavg-u-hxy-sea.mon.GLB", + "ocean.hfy.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfy.tavg-u-hxy-sea.day.GLB", + "ocean.hfy.tavg-u-hxy-sea.mon.GLB", + "ocean.htovgyre.tavg-u-hyb-sea.mon.GLB", + "ocean.htovovrt.tavg-u-hyb-sea.mon.GLB", + "ocean.masscello.tavg-ol-hxy-sea.dec.GLB", + "ocean.masso.tavg-u-hm-sea.dec.GLB", + "ocean.masso.tavg-u-hm-sea.mon.GLB", + "ocean.mlotst.tavg-u-hxy-sea.day.GLB", + "ocean.mlotst.tmax-u-hxy-sea.mon.GLB", + "ocean.mlotst.tmin-u-hxy-sea.mon.GLB", + "ocean.mpw.tavg-u-hxy-sea.mon.GLB", + "ocean.mpw.tpt-u-hxy-sea.3hr.GLB", + "ocean.mpwswell.tavg-u-hxy-sea.mon.GLB", + "ocean.mpwswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.mpwwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.mpwwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.msftbarot.tavg-u-hxy-sea.mon.GLB", + "ocean.msftm.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftm.tavg-rho-hyb-sea.mon.GLB", + "ocean.msfty.tavg-ol-ht-sea.mon.GLB", + "ocean.msfty.tavg-rho-ht-sea.mon.GLB", + "ocean.obvfsq.tavg-ol-hxy-sea.mon.GLB", + "ocean.opottemptend.tavg-ol-hxy-sea.yr.GLB", + "ocean.pbo.tavg-u-hxy-sea.mon.GLB", + "ocean.pfscint.tavg-op4-hxy-sea.mon.GLB", + "ocean.phcint.tavg-op4-hxy-sea.mon.GLB", + "ocean.pso.tavg-u-hxy-sea.mon.GLB", + "ocean.rsds.tavg-u-hxy-ifs.mon.GLB", + "ocean.rsus.tavg-u-hxy-ifs.mon.GLB", + "ocean.scint.tavg-op4-hxy-sea.mon.GLB", + "ocean.sduo.tavg-u-hxy-sea.mon.GLB", + "ocean.sduo.tpt-u-hxy-sea.3hr.GLB", + "ocean.sdvo.tavg-u-hxy-sea.mon.GLB", + "ocean.sdvo.tpt-u-hxy-sea.3hr.GLB", + "ocean.sfx.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfx.tavg-u-hxy-sea.mon.GLB", + "ocean.sfy.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfy.tavg-u-hxy-sea.mon.GLB", + "ocean.sltbasin.tavg-u-hyb-sea.mon.GLB", + "ocean.sltovgyre.tavg-u-hyb-sea.mon.GLB", + "ocean.sltovovrt.tavg-u-hyb-sea.mon.GLB", + "ocean.so.tavg-ol-hm-sea.mon.GLB", + "ocean.so.tavg-ol-hxy-sea.dec.GLB", + "ocean.sob.tavg-u-hxy-sea.mon.GLB", + "ocean.sos.tavg-u-hm-sea.mon.GLB", + "ocean.sw17O.tavg-ol-hxy-sea.mon.GLB", + "ocean.sw18O.tavg-ol-hxy-sea.mon.GLB", + "ocean.sw2H.tavg-ol-hxy-sea.mon.GLB", + "ocean.swh.tavg-u-hxy-sea.mon.GLB", + "ocean.swh.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhmax.tmax-u-hxy-sea.mon.GLB", + "ocean.swhmax.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhswell.tavg-u-hxy-sea.mon.GLB", + "ocean.swhswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.swhwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.tauuo.tavg-u-hxy-sea.dec.GLB", + "ocean.tauvo.tavg-u-hxy-sea.dec.GLB", + "ocean.thetao.tavg-ol-hm-sea.mon.GLB", + "ocean.thetao.tavg-ol-hxy-sea.dec.GLB", + "ocean.thetao.tavg-op20bar-hxy-sea.day.GLB", + "ocean.thkcello.tavg-ol-hxy-sea.dec.GLB", + "ocean.tob.tavg-u-hxy-sea.mon.GLB", + "ocean.tos.tavg-u-hm-sea.mon.GLB", + "ocean.tos.tpt-u-hxy-sea.3hr.GLB", + "ocean.tossq.tavg-u-hxy-sea.day.GLB", + "ocean.uos.tavg-u-hxy-sea.day.GLB", + "ocean.volcello.tavg-ol-hxy-sea.dec.GLB", + "ocean.volcello.tavg-ol-hxy-sea.mon.GLB", + "ocean.volcello.tavg-ol-hxy-sea.yr.GLB", + "ocean.volcello.ti-ol-hxy-sea.fx.GLB", + "ocean.volo.tavg-u-hm-sea.dec.GLB", + "ocean.volo.tavg-u-hm-sea.mon.GLB", + "ocean.vos.tavg-u-hxy-sea.day.GLB", + "ocean.wdir.tavg-u-hxy-sea.mon.GLB", + "ocean.wdir.tpt-u-hxy-sea.3hr.GLB", + "ocean.wdirswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wdirswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wdirwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wdirwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.wfcorr.tavg-u-hxy-sea.mon.GLB", + "ocean.wfo.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdir.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdir.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpdirswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdirswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpdirwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdirwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpp.tavg-u-hxy-sea.mon.GLB", + "ocean.wpp.tpt-u-hxy-sea.3hr.GLB", + "ocean.wppswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wppswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wppwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wppwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.zossq.tavg-u-hxy-sea.mon.GLB", + "ocean.zostoga.tavg-u-hm-sea.day.GLB", + "seaIce.evspsbl.tavg-u-hxy-si.mon.GLB", + "seaIce.prra.tavg-u-hxy-si.mon.GLB", + "seaIce.prsn.tavg-u-hxy-si.mon.GLB", + "seaIce.rlds.tavg-u-hxy-si.day.GLB", + "seaIce.rlds.tavg-u-hxy-si.mon.GLB", + "seaIce.rlus.tavg-u-hxy-si.day.GLB", + "seaIce.rlus.tavg-u-hxy-si.mon.GLB", + "seaIce.rsds.tavg-u-hxy-si.day.GLB", + "seaIce.rsds.tavg-u-hxy-si.mon.GLB", + "seaIce.rsus.tavg-u-hxy-si.day.GLB", + "seaIce.rsus.tavg-u-hxy-si.mon.GLB", + "seaIce.sbl.tavg-u-hxy-si.mon.GLB", + "seaIce.siage.tavg-u-hxy-si.day.GLB", + "seaIce.siarea.tavg-u-hm-u.mon.NH", + "seaIce.siarea.tavg-u-hm-u.mon.SH", + "seaIce.siareaacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.siconca.tavg-u-hxy-u.day.GLB", + "seaIce.siconca.tavg-u-hxy-u.mon.GLB", + "seaIce.sidconcdyn.tavg-u-hxy-sea.mon.GLB", + "seaIce.sidconcth.tavg-u-hxy-sea.mon.GLB", + "seaIce.sidmassdyn.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthsi.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthwat.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmeltbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmeltlat.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmelttop.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassth.tavg-u-hxy-si.mon.GLB", + "seaIce.sieqthick.tavg-u-hxy-si.mon.GLB", + "seaIce.siextent.tavg-u-hm-u.mon.NH", + "seaIce.siextent.tavg-u-hm-u.mon.SH", + "seaIce.siflcondbot.tavg-u-hxy-si.day.GLB", + "seaIce.siflcondbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflcondtop.tavg-u-hxy-si.day.GLB", + "seaIce.siflcondtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sifllattop.tavg-u-hxy-si.day.GLB", + "seaIce.sifllattop.tavg-u-hxy-si.mon.GLB", + "seaIce.siflsensbot.tavg-u-hxy-si.day.GLB", + "seaIce.siflsensbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflsenstop.tavg-u-hxy-si.day.GLB", + "seaIce.siflsenstop.tavg-u-hxy-si.mon.GLB", + "seaIce.siflswdbot.tavg-u-hxy-si.day.GLB", + "seaIce.siflswdbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sihc.tavg-u-hxy-sea.day.GLB", + "seaIce.sihc.tavg-u-hxy-sea.mon.GLB", + "seaIce.siitdconc.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdsnconc.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdsnthick.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdthick.tavg-u-hxy-si.mon.GLB", + "seaIce.simassacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.simpconc.tavg-u-hxy-si.mon.GLB", + "seaIce.sirdgconc.tavg-u-hxy-si.mon.GLB", + "seaIce.sisaltmass.tavg-u-hxy-si.mon.GLB", + "seaIce.sisndmassdyn.tavg-u-hxy-si.mon.GLB", + "seaIce.sisndmasssi.tavg-u-hxy-si.mon.GLB", + "seaIce.sisndmasswind.tavg-u-hxy-si.mon.GLB", + "seaIce.sisnhc.tavg-u-hxy-si.day.GLB", + "seaIce.sisnhc.tavg-u-hxy-si.mon.GLB", + "seaIce.sisnmass.tavg-u-hm-u.mon.NH", + "seaIce.sisnmass.tavg-u-hm-u.mon.SH", + "seaIce.sisnmassacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.sispeed.tavg-u-hxy-si.day.GLB", + "seaIce.sispeed.tavg-u-hxy-si.mon.GLB", + "seaIce.sistressave.tpt-u-hxy-si.mon.GLB", + "seaIce.sistressmax.tpt-u-hxy-si.mon.GLB", + "seaIce.sistrxdtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sistrxubot.tavg-u-hxy-si.mon.GLB", + "seaIce.sistrydtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sistryubot.tavg-u-hxy-si.mon.GLB", + "seaIce.sitempsnic.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-si.day.GLB", + "seaIce.sitimefrac.tavg-u-hxy-sea.day.GLB", + "seaIce.siu.tavg-u-hxy-si.day.GLB", + "seaIce.siv.tavg-u-hxy-si.day.GLB", + "seaIce.sivol.tavg-u-hm-u.mon.NH", + "seaIce.sivol.tavg-u-hm-u.mon.SH", + "seaIce.snc.tavg-u-hxy-si.mon.GLB", + "seaIce.snd.tavg-u-hxy-sn.day.GLB", + "seaIce.snm.tavg-u-hxy-si.mon.GLB", + "seaIce.snw.tavg-u-hxy-si.mon.GLB", + "seaIce.ts.tavg-u-hxy-si.day.GLB" + ], + "Medium": [ + "ocean.evspsbl.tavg-u-hxy-ifs.mon.GLB", + "ocean.ficeberg.tavg-ol-hxy-sea.mon.GLB", + "ocean.friver.tavg-u-hxy-sea.mon.GLB", + "ocean.hfacrossline.tavg-u-ht-sea.mon.GLB", + "ocean.hfevapds.tavg-u-hxy-ifs.mon.GLB", + "ocean.hfibthermds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfibthermds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfrainds.tavg-u-hxy-ifs.mon.GLB", + "ocean.hfrunoffds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfrunoffds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfsnthermds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfsnthermds.tavg-u-hxy-sea.mon.GLB", + "ocean.mfo.tavg-u-ht-sea.mon.GLB", + "ocean.sfacrossline.tavg-u-ht-sea.mon.GLB", + "ocean.sfdsi.tavg-u-hxy-sea.mon.GLB", + "ocean.sfriver.tavg-u-hxy-sea.mon.GLB", + "ocean.siflfwbot.tavg-u-hxy-sea.mon.GLB", + "ocean.so.tavg-ol-hxy-sea.day.GLB", + "ocean.tnkebto.tavg-u-hxy-sea.yr.GLB", + "ocean.vsf.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfcorr.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfevap.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfpr.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfriver.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfsit.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.arag.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.arag.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.calc.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.calc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chl.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.dissic.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.o2.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.ph.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.talk.tavg-ol-hxy-sea.mon.GLB", + "seaIce.sfdsi.tavg-u-hxy-si.mon.GLB", + "seaIce.siage.tavg-u-hxy-si.mon.GLB", + "seaIce.siarea.tavg-u-hm-u.day.NH", + "seaIce.siarea.tavg-u-hm-u.day.SH", + "seaIce.sicompstren.tavg-u-hxy-si.mon.GLB", + "seaIce.sidivvel.tpt-u-hxy-si.mon.GLB", + "seaIce.sidmasstranx.tavg-u-hxy-u.mon.GLB", + "seaIce.sidmasstrany.tavg-u-hxy-u.mon.GLB", + "seaIce.sidragbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidragtop.tavg-u-hxy-si.mon.GLB", + "seaIce.siextent.tavg-u-hm-u.day.NH", + "seaIce.siextent.tavg-u-hm-u.day.SH", + "seaIce.sifb.tavg-u-hxy-si.day.GLB", + "seaIce.sifb.tavg-u-hxy-si.mon.GLB", + "seaIce.siflfwbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflfwdrain.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcecoriolx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcecorioly.tavg-u-hxy-si.mon.GLB", + "seaIce.siforceintstrx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforceintstry.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcetiltx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcetilty.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdconc.tavg-u-hxy-si.day.GLB", + "seaIce.siitdsnconc.tavg-u-hxy-si.day.GLB", + "seaIce.siitdsnthick.tavg-u-hxy-si.day.GLB", + "seaIce.siitdthick.tavg-u-hxy-si.day.GLB", + "seaIce.simpconc.tavg-u-hxy-si.day.GLB", + "seaIce.simpeffconc.tavg-u-hxy-si.day.GLB", + "seaIce.simpeffconc.tavg-u-hxy-si.mon.GLB", + "seaIce.simprefrozen.tavg-u-hxy-simp.day.GLB", + "seaIce.simprefrozen.tavg-u-hxy-simp.mon.GLB", + "seaIce.simpthick.tavg-u-hxy-si.day.GLB", + "seaIce.simpthick.tavg-u-hxy-simp.mon.GLB", + "seaIce.sirdgconc.tavg-u-hxy-si.day.GLB", + "seaIce.sisali.tavg-u-hxy-si.day.GLB", + "seaIce.sisali.tavg-u-hxy-si.mon.GLB", + "seaIce.sisaltmass.tavg-u-hxy-si.day.GLB", + "seaIce.sishearvel.tpt-u-hxy-si.mon.GLB", + "seaIce.sisnmass.tavg-u-hm-u.day.NH", + "seaIce.sisnmass.tavg-u-hm-u.day.SH", + "seaIce.sitempbot.tavg-u-hxy-si.day.GLB", + "seaIce.sitempbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sitempsnic.tavg-u-hxy-si.day.GLB", + "seaIce.sithick.tavg-u-hxy-sir.day.GLB", + "seaIce.sithick.tavg-u-hxy-sir.mon.GLB", + "seaIce.sivol.tavg-u-hm-u.day.NH", + "seaIce.sivol.tavg-u-hm-u.day.SH" + ], + "Low": [ + "ocean.difmxybo.tavg-ol-hxy-sea.yr.GLB", + "ocean.difmxylo.tavg-ol-hxy-sea.yr.GLB", + "ocean.diftrblo.tavg-ol-hxy-sea.yr.GLB", + "ocean.diftrelo.tavg-ol-hxy-sea.yr.GLB", + "ocean.difvho.tavg-ol-hxy-sea.yr.GLB", + "ocean.difvso.tavg-ol-hxy-sea.yr.GLB", + "ocean.dispkexyfo.tavg-u-hxy-sea.yr.GLB", + "ocean.dxto.ti-u-hxy-u.fx.GLB", + "ocean.dxuo.ti-u-hxy-u.fx.GLB", + "ocean.dxvo.ti-u-hxy-u.fx.GLB", + "ocean.dyto.ti-u-hxy-u.fx.GLB", + "ocean.dyuo.ti-u-hxy-u.fx.GLB", + "ocean.dyvo.ti-u-hxy-u.fx.GLB", + "ocean.mlotstsq.tavg-u-hxy-sea.mon.GLB", + "ocean.msftmmpa.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftmmpa.tavg-rho-hyb-sea.mon.GLB", + "ocean.msftmsmpa.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftypa.tavg-ol-ht-sea.mon.GLB", + "ocean.msftypa.tavg-rho-ht-sea.mon.GLB", + "ocean.ocontempdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontempmint.tavg-u-hxy-sea.yr.GLB", + "ocean.ocontemppadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemppmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemppsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemprmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemptend.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottempdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottempmint.tavg-u-hxy-sea.yr.GLB", + "ocean.opottemppadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemppmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemppsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemprmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemptend.tavg-ol-hxy-sea.dec.GLB", + "ocean.osaltdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpsmadvect.tavg-ol-hxy-sea.mon.GLB", + "ocean.osaltpsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltrmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osalttend.tavg-ol-hxy-sea.yr.GLB", + "ocean.rsdoabsorb.tavg-ol-hxy-sea.yr.GLB", + "ocean.somint.tavg-u-hxy-sea.yr.GLB", + "ocean.sossq.tavg-u-hxy-sea.mon.GLB", + "ocean.thkcelluo.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcellvo.tavg-ol-hxy-sea.mon.GLB", + "ocean.tnpeo.tavg-u-hxy-sea.yr.GLB", + "ocean.tossq.tavg-u-hxy-sea.mon.GLB" + ] + }, + "scenariomip24": { + "Core": [ + "atmos.areacella.ti-u-hxy-u.fx.GLB", + "atmos.cl.tavg-al-hxy-u.mon.GLB", + "atmos.cli.tavg-al-hxy-u.mon.GLB", + "atmos.clivi.tavg-u-hxy-u.mon.GLB", + "atmos.clt.tavg-u-hxy-u.day.GLB", + "atmos.clt.tavg-u-hxy-u.mon.GLB", + "atmos.clw.tavg-al-hxy-u.mon.GLB", + "atmos.clwvi.tavg-u-hxy-u.mon.GLB", + "atmos.evspsbl.tavg-u-hxy-u.mon.GLB", + "atmos.hfls.tavg-u-hxy-u.mon.GLB", + "atmos.hfss.tavg-u-hxy-u.mon.GLB", + "atmos.hur.tavg-p19-hxy-air.mon.GLB", + "atmos.hur.tavg-p19-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.6hr.GLB", + "atmos.hurs.tavg-h2m-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.mon.GLB", + "atmos.hus.tavg-p19-hxy-u.day.GLB", + "atmos.hus.tavg-p19-hxy-u.mon.GLB", + "atmos.huss.tavg-h2m-hxy-u.day.GLB", + "atmos.huss.tavg-h2m-hxy-u.mon.GLB", + "atmos.huss.tpt-h2m-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.1hr.GLB", + "atmos.pr.tavg-u-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.day.GLB", + "atmos.pr.tavg-u-hxy-u.mon.GLB", + "atmos.prc.tavg-u-hxy-u.mon.GLB", + "atmos.prsn.tavg-u-hxy-u.mon.GLB", + "atmos.prw.tavg-u-hxy-u.mon.GLB", + "atmos.ps.tavg-u-hxy-u.day.GLB", + "atmos.ps.tavg-u-hxy-u.mon.GLB", + "atmos.psl.tavg-u-hxy-u.day.GLB", + "atmos.psl.tavg-u-hxy-u.mon.GLB", + "atmos.rlds.tavg-u-hxy-u.mon.GLB", + "atmos.rldscs.tavg-u-hxy-u.mon.GLB", + "atmos.rlus.tavg-u-hxy-u.mon.GLB", + "atmos.rluscs.tavg-u-hxy-u.mon.GLB", + "atmos.rlut.tavg-u-hxy-u.mon.GLB", + "atmos.rlutcs.tavg-u-hxy-u.mon.GLB", + "atmos.rsds.tavg-u-hxy-u.day.GLB", + "atmos.rsds.tavg-u-hxy-u.mon.GLB", + "atmos.rsdscs.tavg-u-hxy-u.mon.GLB", + "atmos.rsdt.tavg-u-hxy-u.mon.GLB", + "atmos.rsus.tavg-u-hxy-u.mon.GLB", + "atmos.rsuscs.tavg-u-hxy-u.mon.GLB", + "atmos.rsut.tavg-u-hxy-u.mon.GLB", + "atmos.rsutcs.tavg-u-hxy-u.mon.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.day.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.mon.GLB", + "atmos.sftlf.ti-u-hxy-u.fx.GLB", + "atmos.ta.tavg-p19-hxy-air.day.GLB", + "atmos.ta.tavg-p19-hxy-air.mon.GLB", + "atmos.ta.tpt-p3-hxy-air.6hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.day.GLB", + "atmos.tas.tavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tmax-h2m-hxy-u.day.GLB", + "atmos.tas.tmaxavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tmin-h2m-hxy-u.day.GLB", + "atmos.tas.tminavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tpt-h2m-hxy-u.3hr.GLB", + "atmos.tauu.tavg-u-hxy-u.mon.GLB", + "atmos.tauv.tavg-u-hxy-u.mon.GLB", + "atmos.ts.tavg-u-hxy-u.mon.GLB", + "atmos.ua.tavg-p19-hxy-air.day.GLB", + "atmos.ua.tavg-p19-hxy-air.mon.GLB", + "atmos.ua.tpt-p3-hxy-air.6hr.GLB", + "atmos.uas.tavg-h10m-hxy-u.day.GLB", + "atmos.uas.tavg-h10m-hxy-u.mon.GLB", + "atmos.uas.tpt-h10m-hxy-u.3hr.GLB", + "atmos.va.tavg-p19-hxy-air.day.GLB", + "atmos.va.tavg-p19-hxy-air.mon.GLB", + "atmos.va.tpt-p3-hxy-air.6hr.GLB", + "atmos.vas.tavg-h10m-hxy-u.day.GLB", + "atmos.vas.tavg-h10m-hxy-u.mon.GLB", + "atmos.vas.tpt-h10m-hxy-u.3hr.GLB", + "atmos.wap.tavg-p19-hxy-air.mon.GLB", + "atmos.wap.tavg-p19-hxy-u.day.GLB", + "atmos.zg.tavg-p19-hxy-air.day.GLB", + "atmos.zg.tavg-p19-hxy-air.mon.GLB", + "land.evspsblsoi.tavg-u-hxy-lnd.mon.GLB", + "land.evspsblveg.tavg-u-hxy-lnd.mon.GLB", + "land.lai.tavg-u-hxy-lnd.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.mon.GLB", + "land.mrros.tavg-u-hxy-lnd.mon.GLB", + "land.mrso.tavg-u-hxy-lnd.mon.GLB", + "land.mrsofc.ti-u-hxy-lnd.fx.GLB", + "land.mrsol.tavg-d10cm-hxy-lnd.mon.GLB", + "land.orog.ti-u-hxy-u.fx.GLB", + "land.rootd.ti-u-hxy-lnd.fx.GLB", + "land.sftgif.ti-u-hxy-u.fx.GLB", + "land.slthick.ti-sl-hxy-lnd.fx.GLB", + "landIce.mrfso.tavg-u-hxy-lnd.mon.GLB", + "landIce.snc.tavg-u-hxy-lnd.mon.GLB", + "landIce.snw.tavg-u-hxy-lnd.mon.GLB", + "ocean.areacello.ti-u-hxy-u.fx.GLB", + "ocean.basin.ti-u-hxy-u.fx.GLB", + "ocean.bigthetao.tavg-ol-hxy-sea.mon.GLB", + "ocean.deptho.ti-u-hxy-sea.fx.GLB", + "ocean.hfds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfgeou.ti-u-hxy-sea.fx.GLB", + "ocean.masscello.tavg-ol-hxy-sea.mon.GLB", + "ocean.masscello.ti-ol-hxy-sea.fx.GLB", + "ocean.mlotst.tavg-u-hxy-sea.mon.GLB", + "ocean.sftof.ti-u-hxy-u.fx.GLB", + "ocean.so.tavg-ol-hxy-sea.mon.GLB", + "ocean.sos.tavg-u-hxy-sea.day.GLB", + "ocean.sos.tavg-u-hxy-sea.mon.GLB", + "ocean.tauuo.tavg-u-hxy-sea.mon.GLB", + "ocean.tauvo.tavg-u-hxy-sea.mon.GLB", + "ocean.thetao.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcello.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcello.ti-ol-hxy-sea.fx.GLB", + "ocean.tos.tavg-u-hxy-sea.day.GLB", + "ocean.tos.tavg-u-hxy-sea.mon.GLB", + "ocean.umo.tavg-ol-hxy-sea.mon.GLB", + "ocean.uo.tavg-ol-hxy-sea.mon.GLB", + "ocean.vmo.tavg-ol-hxy-sea.mon.GLB", + "ocean.vo.tavg-ol-hxy-sea.mon.GLB", + "ocean.wmo.tavg-ol-hxy-sea.mon.GLB", + "ocean.wo.tavg-ol-hxy-sea.mon.GLB", + "ocean.zos.tavg-u-hxy-sea.day.GLB", + "ocean.zos.tavg-u-hxy-sea.mon.GLB", + "ocean.zostoga.tavg-u-hm-sea.mon.GLB", + "seaIce.siconc.tavg-u-hxy-u.day.GLB", + "seaIce.siconc.tavg-u-hxy-u.mon.GLB", + "seaIce.simass.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-si.mon.GLB", + "seaIce.sitimefrac.tavg-u-hxy-sea.mon.GLB", + "seaIce.siu.tavg-u-hxy-si.mon.GLB", + "seaIce.siv.tavg-u-hxy-si.mon.GLB", + "seaIce.snd.tavg-u-hxy-sn.mon.GLB", + "seaIce.ts.tavg-u-hxy-si.mon.GLB" + ], + "High": [ + "aerosol.depdust.tavg-u-hxy-u.mon.GLB", + "atmos.co2.tavg-h2m-hxy-u.mon.GLB", + "atmos.co2.tclm-u-hm-u.mon.GLB", + "atmos.epfy.tavg-p39-hy-air.day.GLB", + "atmos.epfy.tavg-p39-hy-air.mon.GLB", + "atmos.epfz.tavg-p39-hy-air.day.GLB", + "atmos.epfz.tavg-p39-hy-air.mon.GLB", + "atmos.evspsbl.tavg-u-hxy-lnd.day.GLB", + "atmos.hfls.tavg-u-hxy-u.day.GLB", + "atmos.hfss.tavg-u-hxy-u.day.GLB", + "atmos.hurs.tpt-h2m-hxy-u.3hr.GLB", + "atmos.huss.tpt-h2m-hxy-u.1hr.GLB", + "atmos.intuadse.tavg-u-hxy-u.day.GLB", + "atmos.intuadse.tavg-u-hxy-u.mon.GLB", + "atmos.intuaw.tavg-u-hxy-u.day.GLB", + "atmos.intuaw.tavg-u-hxy-u.mon.GLB", + "atmos.intvadse.tavg-u-hxy-u.day.GLB", + "atmos.intvadse.tavg-u-hxy-u.mon.GLB", + "atmos.intvaw.tavg-u-hxy-u.day.GLB", + "atmos.intvaw.tavg-u-hxy-u.mon.GLB", + "atmos.pr17O.tavg-u-hxy-u.mon.GLB", + "atmos.pr18O.tavg-u-hxy-u.mon.GLB", + "atmos.pr2h.tavg-u-hxy-u.mon.GLB", + "atmos.prra.tavg-u-hxy-lnd.day.GLB", + "atmos.prra.tavg-u-hxy-u.mon.GLB", + "atmos.prsn.tavg-u-hxy-u.day.GLB", + "atmos.prsn18O.tavg-u-hxy-u.mon.GLB", + "atmos.prsn2h.tavg-u-hxy-u.mon.GLB", + "atmos.psl.tpt-u-hxy-u.1hr.GLB", + "atmos.rlds.tavg-u-hxy-u.3hr.GLB", + "atmos.rlds.tavg-u-hxy-u.day.GLB", + "atmos.rlus.tavg-u-hxy-u.day.GLB", + "atmos.rlut.tavg-u-hxy-u.day.GLB", + "atmos.rsds.tavg-u-hxy-u.1hr.GLB", + "atmos.rsds.tavg-u-hxy-u.3hr.GLB", + "atmos.rsdt.tavg-u-hxy-u.day.GLB", + "atmos.rsus.tavg-u-hxy-u.day.GLB", + "atmos.rsut.tavg-u-hxy-u.day.GLB", + "atmos.ta.tavg-p39-hy-air.day.GLB", + "atmos.ta.tavg-p39-hy-air.mon.GLB", + "atmos.tauu.tavg-u-hxy-u.day.GLB", + "atmos.tauunoegw.tavg-p39-hy-air.day.GLB", + "atmos.tauunowgw.tavg-p39-hy-air.day.GLB", + "atmos.tauuogw.tavg-p39-hy-air.day.GLB", + "atmos.tauv.tavg-u-hxy-u.day.GLB", + "atmos.tauvnogw.tavg-p39-hy-air.day.GLB", + "atmos.tauvogw.tavg-p39-hy-air.day.GLB", + "atmos.tdps.tavg-h2m-hxy-u.mon.GLB", + "atmos.tntmp.tavg-p39-hy-air.day.GLB", + "atmos.tntmp.tavg-p39-hy-air.mon.GLB", + "atmos.tntrl.tavg-p39-hy-air.day.GLB", + "atmos.tntrl.tavg-p39-hy-air.mon.GLB", + "atmos.tntrs.tavg-p39-hy-air.day.GLB", + "atmos.tntrs.tavg-p39-hy-air.mon.GLB", + "atmos.ts.tavg-u-hxy-u.day.GLB", + "atmos.ua.tavg-p39-hy-air.day.GLB", + "atmos.ua.tavg-p39-hy-air.mon.GLB", + "atmos.ua.tpt-h100m-hxy-u.1hr.GLB", + "atmos.uas.tpt-h10m-hxy-u.1hr.GLB", + "atmos.utendepfd.tavg-p39-hy-air.day.GLB", + "atmos.utendepfd.tavg-p39-hy-air.mon.GLB", + "atmos.utendnogw.tavg-p39-hy-air.day.GLB", + "atmos.utendnogw.tavg-p39-hy-air.mon.GLB", + "atmos.utendogw.tavg-p39-hy-air.day.GLB", + "atmos.utendogw.tavg-p39-hy-air.mon.GLB", + "atmos.utendvtem.tavg-p39-hy-air.day.GLB", + "atmos.utendwtem.tavg-p39-hy-air.day.GLB", + "atmos.va.tpt-h100m-hxy-u.1hr.GLB", + "atmos.vas.tpt-h10m-hxy-u.1hr.GLB", + "atmos.vtem.tavg-p39-hy-air.day.GLB", + "atmos.vtem.tavg-p39-hy-air.mon.GLB", + "atmos.wsg.tmax-h100m-hxy-u.1hr.GLB", + "atmos.wsg.tmax-h10m-hxy-u.1hr.GLB", + "atmos.wtem.tavg-p39-hy-air.day.GLB", + "atmos.wtem.tavg-p39-hy-air.mon.GLB", + "atmos.zg.tavg-p39-hy-air.day.GLB", + "atmos.zg.tavg-p39-hy-air.mon.GLB", + "atmosChem.meanage.tavg-p39-hy-air.mon.GLB", + "land.burntFractionAll.tavg-u-hxy-u.mon.GLB", + "land.cSoil.tavg-sl-hxy-lnd.mon.GLB", + "land.cSoil.tavg-u-hxy-lnd.mon.GLB", + "land.depthl.ti-u-hxy-u.fx.GLB", + "land.depthsl.ti-u-hxy-u.fx.GLB", + "land.mrro.tavg-u-hxy-lnd.day.GLB", + "land.mrrob.tavg-u-hxy-lnd.day.GLB", + "land.mrros.tavg-u-hxy-lnd.day.GLB", + "land.mrsfl.tavg-sl-hxy-lnd.day.GLB", + "land.mrsfl.tavg-sl-hxy-lnd.mon.GLB", + "land.mrsll.tavg-sl-hxy-lnd.day.GLB", + "land.mrsll.tavg-sl-hxy-lnd.mon.GLB", + "land.mrsol.tavg-sl-hxy-lnd.day.GLB", + "land.mrsol.tavg-sl-hxy-lnd.mon.GLB", + "land.rsds.tavg-u-hxy-lnd.mon.GLB", + "land.rsds.tavg-u-hxy-sn.mon.GLB", + "land.rsus.tavg-u-hxy-lnd.mon.GLB", + "land.rsus.tavg-u-hxy-sn.mon.GLB", + "land.sftgif.tavg-u-hxy-u.mon.GLB", + "land.sftlaf.ti-u-hxy-u.fx.GLB", + "land.tas.tavg-u-hxy-u.1hr.GLB", + "land.tsl.tavg-sl-hxy-lnd.day.GLB", + "land.tsl.tavg-sl-hxy-lnd.mon.GLB", + "landIce.acabf.tavg-u-hxy-is.mon.GLB", + "landIce.hfls.tavg-u-hxy-is.mon.GLB", + "landIce.hfss.tavg-u-hxy-is.mon.GLB", + "landIce.icem.tavg-u-hxy-is.mon.GLB", + "landIce.litemptop.tavg-u-hxy-is.mon.GLB", + "landIce.lithk.ti-u-hxy-u.fx.GLB", + "landIce.mrro.tavg-u-hxy-is.mon.GLB", + "landIce.orog.tavg-u-hxy-is.mon.GLB", + "landIce.prra.tavg-u-hxy-is.mon.GLB", + "landIce.prsn.tavg-u-hxy-is.mon.GLB", + "landIce.rlds.tavg-u-hxy-is.mon.GLB", + "landIce.rlus.tavg-u-hxy-is.mon.GLB", + "landIce.rsds.tavg-u-hxy-is.mon.GLB", + "landIce.rsus.tavg-u-hxy-is.mon.GLB", + "landIce.sbl.tavg-u-hxy-is.mon.GLB", + "landIce.sbl.tavg-u-hxy-u.mon.GLB", + "landIce.sftflf.tavg-u-hxy-u.mon.GLB", + "landIce.sftflf.ti-u-hxy-u.fx.GLB", + "landIce.sftgrf.tavg-u-hxy-u.mon.GLB", + "landIce.sftgrf.ti-u-hxy-u.fx.GLB", + "landIce.snc.tavg-u-hxy-is.mon.GLB", + "landIce.snd.tavg-u-hxy-lnd.mon.GLB", + "landIce.snicem.tavg-u-hxy-is.mon.GLB", + "landIce.snm.tavg-u-hxy-is.mon.GLB", + "landIce.snm.tavg-u-hxy-lnd.mon.GLB", + "landIce.snrefr.tavg-u-hxy-is.mon.GLB", + "landIce.tas.tavg-u-hxy-is.mon.GLB", + "landIce.ts.tavg-u-hxy-is.mon.GLB", + "landIce.tsn.tavg-u-hxy-is.mon.GLB", + "landIce.tsn.tavg-u-hxy-lnd.mon.GLB", + "ocean.absscint.tavg-op4-hxy-sea.mon.GLB", + "ocean.agessc.tavg-ol-hxy-sea.mon.GLB", + "ocean.bigthetao.tavg-ol-hm-sea.mon.GLB", + "ocean.bigthetao.tavg-ol-hxy-sea.dec.GLB", + "ocean.bigthetao.tavg-op20bar-hxy-sea.day.GLB", + "ocean.chcint.tavg-op4-hxy-sea.mon.GLB", + "ocean.ficeberg.tavg-u-hxy-sea.mon.GLB", + "ocean.flandice.tavg-u-hxy-sea.mon.GLB", + "ocean.hfbasin.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpmadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpmdiff.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpsmadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfgeou.tavg-u-hxy-sea.mon.GLB", + "ocean.hfx.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfx.tavg-u-hxy-sea.day.GLB", + "ocean.hfx.tavg-u-hxy-sea.mon.GLB", + "ocean.hfy.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfy.tavg-u-hxy-sea.day.GLB", + "ocean.hfy.tavg-u-hxy-sea.mon.GLB", + "ocean.htovgyre.tavg-u-hyb-sea.mon.GLB", + "ocean.htovovrt.tavg-u-hyb-sea.mon.GLB", + "ocean.masscello.tavg-ol-hxy-sea.dec.GLB", + "ocean.masso.tavg-u-hm-sea.dec.GLB", + "ocean.masso.tavg-u-hm-sea.mon.GLB", + "ocean.mlotst.tavg-u-hxy-sea.day.GLB", + "ocean.mlotst.tmax-u-hxy-sea.mon.GLB", + "ocean.mlotst.tmin-u-hxy-sea.mon.GLB", + "ocean.mpw.tavg-u-hxy-sea.mon.GLB", + "ocean.mpw.tpt-u-hxy-sea.3hr.GLB", + "ocean.mpwswell.tavg-u-hxy-sea.mon.GLB", + "ocean.mpwswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.mpwwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.mpwwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.msftbarot.tavg-u-hxy-sea.mon.GLB", + "ocean.msftm.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftm.tavg-rho-hyb-sea.mon.GLB", + "ocean.msfty.tavg-ol-ht-sea.mon.GLB", + "ocean.msfty.tavg-rho-ht-sea.mon.GLB", + "ocean.obvfsq.tavg-ol-hxy-sea.mon.GLB", + "ocean.opottemptend.tavg-ol-hxy-sea.yr.GLB", + "ocean.pbo.tavg-u-hxy-sea.mon.GLB", + "ocean.pfscint.tavg-op4-hxy-sea.mon.GLB", + "ocean.phcint.tavg-op4-hxy-sea.mon.GLB", + "ocean.pso.tavg-u-hxy-sea.mon.GLB", + "ocean.rsds.tavg-u-hxy-ifs.mon.GLB", + "ocean.rsus.tavg-u-hxy-ifs.mon.GLB", + "ocean.scint.tavg-op4-hxy-sea.mon.GLB", + "ocean.sduo.tavg-u-hxy-sea.mon.GLB", + "ocean.sduo.tpt-u-hxy-sea.3hr.GLB", + "ocean.sdvo.tavg-u-hxy-sea.mon.GLB", + "ocean.sdvo.tpt-u-hxy-sea.3hr.GLB", + "ocean.sfx.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfx.tavg-u-hxy-sea.mon.GLB", + "ocean.sfy.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfy.tavg-u-hxy-sea.mon.GLB", + "ocean.sltbasin.tavg-u-hyb-sea.mon.GLB", + "ocean.sltovgyre.tavg-u-hyb-sea.mon.GLB", + "ocean.sltovovrt.tavg-u-hyb-sea.mon.GLB", + "ocean.so.tavg-ol-hm-sea.mon.GLB", + "ocean.so.tavg-ol-hxy-sea.dec.GLB", + "ocean.sob.tavg-u-hxy-sea.mon.GLB", + "ocean.sos.tavg-u-hm-sea.mon.GLB", + "ocean.sw17O.tavg-ol-hxy-sea.mon.GLB", + "ocean.sw18O.tavg-ol-hxy-sea.mon.GLB", + "ocean.sw2H.tavg-ol-hxy-sea.mon.GLB", + "ocean.swh.tavg-u-hxy-sea.mon.GLB", + "ocean.swh.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhmax.tmax-u-hxy-sea.mon.GLB", + "ocean.swhmax.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhswell.tavg-u-hxy-sea.mon.GLB", + "ocean.swhswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.swhwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.tauuo.tavg-u-hxy-sea.dec.GLB", + "ocean.tauvo.tavg-u-hxy-sea.dec.GLB", + "ocean.thetao.tavg-ol-hm-sea.mon.GLB", + "ocean.thetao.tavg-ol-hxy-sea.dec.GLB", + "ocean.thetao.tavg-op20bar-hxy-sea.day.GLB", + "ocean.thkcello.tavg-ol-hxy-sea.dec.GLB", + "ocean.tob.tavg-u-hxy-sea.mon.GLB", + "ocean.tos.tavg-u-hm-sea.mon.GLB", + "ocean.tos.tpt-u-hxy-sea.3hr.GLB", + "ocean.tossq.tavg-u-hxy-sea.day.GLB", + "ocean.uos.tavg-u-hxy-sea.day.GLB", + "ocean.volcello.tavg-ol-hxy-sea.dec.GLB", + "ocean.volcello.tavg-ol-hxy-sea.mon.GLB", + "ocean.volcello.tavg-ol-hxy-sea.yr.GLB", + "ocean.volcello.ti-ol-hxy-sea.fx.GLB", + "ocean.volo.tavg-u-hm-sea.dec.GLB", + "ocean.volo.tavg-u-hm-sea.mon.GLB", + "ocean.vos.tavg-u-hxy-sea.day.GLB", + "ocean.wdir.tavg-u-hxy-sea.mon.GLB", + "ocean.wdir.tpt-u-hxy-sea.3hr.GLB", + "ocean.wdirswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wdirswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wdirwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wdirwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.wfcorr.tavg-u-hxy-sea.mon.GLB", + "ocean.wfo.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdir.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdir.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpdirswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdirswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpdirwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdirwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpp.tavg-u-hxy-sea.mon.GLB", + "ocean.wpp.tpt-u-hxy-sea.3hr.GLB", + "ocean.wppswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wppswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wppwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wppwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.zossq.tavg-u-hxy-sea.mon.GLB", + "ocean.zostoga.tavg-u-hm-sea.day.GLB", + "ocnBgchem.chl.tavg-d0m-hxy-sea.day.GLB", + "ocnBgchem.chl.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.detoc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dfe.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissic.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissoc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dmso.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.dpco2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.dpo2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.expc.tavg-d1000m-hxy-sea.mon.GLB", + "ocnBgchem.expc.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.expcalc.tavg-d1000m-hxy-sea.mon.GLB", + "ocnBgchem.expcalc.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.fgco2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fric.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.froc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.graz.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.intpp.tavg-u-hxy-sea.day.GLB", + "ocnBgchem.intpp.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.nh4.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.no3.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.o2.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.ph.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phyc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phycalc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phydiat.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phymisc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phypico.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.po4.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.si.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.spco2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.talk.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zmeso.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zmicro.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zmisc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zooc.tavg-ol-hxy-sea.mon.GLB", + "seaIce.evspsbl.tavg-u-hxy-si.mon.GLB", + "seaIce.prra.tavg-u-hxy-si.mon.GLB", + "seaIce.prsn.tavg-u-hxy-si.mon.GLB", + "seaIce.rlds.tavg-u-hxy-si.day.GLB", + "seaIce.rlds.tavg-u-hxy-si.mon.GLB", + "seaIce.rlus.tavg-u-hxy-si.day.GLB", + "seaIce.rlus.tavg-u-hxy-si.mon.GLB", + "seaIce.rsds.tavg-u-hxy-si.day.GLB", + "seaIce.rsds.tavg-u-hxy-si.mon.GLB", + "seaIce.rsus.tavg-u-hxy-si.day.GLB", + "seaIce.rsus.tavg-u-hxy-si.mon.GLB", + "seaIce.sbl.tavg-u-hxy-si.mon.GLB", + "seaIce.siage.tavg-u-hxy-si.day.GLB", + "seaIce.siarea.tavg-u-hm-u.mon.NH", + "seaIce.siarea.tavg-u-hm-u.mon.SH", + "seaIce.siareaacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.siconca.tavg-u-hxy-u.day.GLB", + "seaIce.siconca.tavg-u-hxy-u.mon.GLB", + "seaIce.sidconcdyn.tavg-u-hxy-sea.mon.GLB", + "seaIce.sidconcth.tavg-u-hxy-sea.mon.GLB", + "seaIce.sidmassdyn.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthsi.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthwat.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmeltbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmeltlat.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmelttop.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassth.tavg-u-hxy-si.mon.GLB", + "seaIce.sieqthick.tavg-u-hxy-si.mon.GLB", + "seaIce.siextent.tavg-u-hm-u.mon.NH", + "seaIce.siextent.tavg-u-hm-u.mon.SH", + "seaIce.siflcondbot.tavg-u-hxy-si.day.GLB", + "seaIce.siflcondbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflcondtop.tavg-u-hxy-si.day.GLB", + "seaIce.siflcondtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sifllattop.tavg-u-hxy-si.day.GLB", + "seaIce.sifllattop.tavg-u-hxy-si.mon.GLB", + "seaIce.siflsensbot.tavg-u-hxy-si.day.GLB", + "seaIce.siflsensbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflsenstop.tavg-u-hxy-si.day.GLB", + "seaIce.siflsenstop.tavg-u-hxy-si.mon.GLB", + "seaIce.siflswdbot.tavg-u-hxy-si.day.GLB", + "seaIce.siflswdbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sihc.tavg-u-hxy-sea.day.GLB", + "seaIce.sihc.tavg-u-hxy-sea.mon.GLB", + "seaIce.siitdconc.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdsnconc.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdsnthick.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdthick.tavg-u-hxy-si.mon.GLB", + "seaIce.simassacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.simpconc.tavg-u-hxy-si.mon.GLB", + "seaIce.sirdgconc.tavg-u-hxy-si.mon.GLB", + "seaIce.sisaltmass.tavg-u-hxy-si.mon.GLB", + "seaIce.sisndmassdyn.tavg-u-hxy-si.mon.GLB", + "seaIce.sisndmasssi.tavg-u-hxy-si.mon.GLB", + "seaIce.sisndmasswind.tavg-u-hxy-si.mon.GLB", + "seaIce.sisnhc.tavg-u-hxy-si.day.GLB", + "seaIce.sisnhc.tavg-u-hxy-si.mon.GLB", + "seaIce.sisnmass.tavg-u-hm-u.mon.NH", + "seaIce.sisnmass.tavg-u-hm-u.mon.SH", + "seaIce.sisnmassacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.sispeed.tavg-u-hxy-si.day.GLB", + "seaIce.sispeed.tavg-u-hxy-si.mon.GLB", + "seaIce.sistressave.tpt-u-hxy-si.mon.GLB", + "seaIce.sistressmax.tpt-u-hxy-si.mon.GLB", + "seaIce.sistrxdtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sistrxubot.tavg-u-hxy-si.mon.GLB", + "seaIce.sistrydtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sistryubot.tavg-u-hxy-si.mon.GLB", + "seaIce.sitempsnic.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-si.day.GLB", + "seaIce.sitimefrac.tavg-u-hxy-sea.day.GLB", + "seaIce.siu.tavg-u-hxy-si.day.GLB", + "seaIce.siv.tavg-u-hxy-si.day.GLB", + "seaIce.sivol.tavg-u-hm-u.mon.NH", + "seaIce.sivol.tavg-u-hm-u.mon.SH", + "seaIce.snc.tavg-u-hxy-si.mon.GLB", + "seaIce.snd.tavg-u-hxy-sn.day.GLB", + "seaIce.snm.tavg-u-hxy-si.mon.GLB", + "seaIce.snw.tavg-u-hxy-si.mon.GLB", + "seaIce.ts.tavg-u-hxy-si.day.GLB" + ], + "Medium": [ + "atmos.ps.tpt-u-hxy-u.1hr.GLB", + "atmos.psitem.tavg-p39-hy-air.day.GLB", + "atmos.rlds.tavg-u-hxy-u.1hr.GLB", + "atmos.rsdsdiff.tavg-u-hxy-u.1hr.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.1hr.GLB", + "atmos.tauunoegw.tavg-p19-hxy-air.mon.GLB", + "atmos.tauunowgw.tavg-p19-hxy-air.mon.GLB", + "atmos.tauuogw.tavg-p19-hxy-air.mon.GLB", + "atmos.tauupbl.tavg-u-hxy-u.day.GLB", + "atmos.tauvnogw.tavg-p19-hxy-air.mon.GLB", + "atmos.tauvogw.tavg-p19-hxy-air.mon.GLB", + "atmos.tauvpbl.tavg-u-hxy-u.day.GLB", + "atmos.tntc.tavg-p39-hy-air.mon.GLB", + "atmos.tntnogw.tavg-p39-hy-air.mon.GLB", + "atmos.tntogw.tavg-p39-hy-air.mon.GLB", + "atmos.tntrlcs.tavg-p39-hy-air.mon.GLB", + "atmos.tntrscs.tavg-p39-hy-air.mon.GLB", + "atmos.tntscp.tavg-p39-hy-air.mon.GLB", + "atmos.ts.tavg-u-hxy-u.1hr.GLB", + "atmos.utendnogw.tavg-p19-hxy-air.day.GLB", + "atmos.utendnogw.tavg-p19-hxy-air.mon.GLB", + "atmos.utendogw.tavg-p19-hxy-air.day.GLB", + "atmos.utendogw.tavg-p19-hxy-air.mon.GLB", + "atmos.vtendnogw.tavg-p19-hxy-air.day.GLB", + "atmos.vtendnogw.tavg-p19-hxy-air.mon.GLB", + "atmos.vtendogw.tavg-p19-hxy-air.day.GLB", + "atmos.vtendogw.tavg-p19-hxy-air.mon.GLB", + "atmos.wsg.tmax-h100m-hxy-u.mon.GLB", + "atmos.wsg.tmax-h10m-hxy-u.mon.GLB", + "land.mrso.tavg-u-hxy-lnd.day.GLB", + "ocean.evspsbl.tavg-u-hxy-ifs.mon.GLB", + "ocean.ficeberg.tavg-ol-hxy-sea.mon.GLB", + "ocean.friver.tavg-u-hxy-sea.mon.GLB", + "ocean.hfacrossline.tavg-u-ht-sea.mon.GLB", + "ocean.hfevapds.tavg-u-hxy-ifs.mon.GLB", + "ocean.hfibthermds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfibthermds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfrainds.tavg-u-hxy-ifs.mon.GLB", + "ocean.hfrunoffds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfrunoffds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfsnthermds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfsnthermds.tavg-u-hxy-sea.mon.GLB", + "ocean.mfo.tavg-u-ht-sea.mon.GLB", + "ocean.sfacrossline.tavg-u-ht-sea.mon.GLB", + "ocean.sfdsi.tavg-u-hxy-sea.mon.GLB", + "ocean.sfriver.tavg-u-hxy-sea.mon.GLB", + "ocean.siflfwbot.tavg-u-hxy-sea.mon.GLB", + "ocean.so.tavg-ol-hxy-sea.day.GLB", + "ocean.t17d.tavg-u-hxy-sea.mon.GLB", + "ocean.t20d.tavg-u-hxy-sea.mon.GLB", + "ocean.tnkebto.tavg-u-hxy-sea.yr.GLB", + "ocean.vsf.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfcorr.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfevap.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfpr.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfriver.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfsit.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.arag.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.arag.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.calc.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.calc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chl.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.detoc.tavg-ol-hxy-sea.day.GLB", + "ocnBgchem.dissoc.tavg-ol-hxy-sea.day.GLB", + "ocnBgchem.exparagob.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.expc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.expcalc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.expcalcob.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.expcob.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.expfeob.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.expnob.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.exppob.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.expsiob.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.frfe.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.frn.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppcalc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppdiat.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppdiaz.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppmisc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppnano.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intpppico.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limfecalc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limfediat.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limfediaz.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limfemisc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limfepico.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limirrcalc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limirrdiat.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limirrdiaz.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limirrmisc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limirrpico.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limncalc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limndiat.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limndiaz.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limnmisc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limnpico.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.o2.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.o2sat.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.ph.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.pp.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.sialgc.tavg-u-hxy-si.mon.GLB", + "ocnBgchem.sichl.tavg-u-hxy-si.mon.GLB", + "ocnBgchem.sigpp.tavg-u-hxy-si.mon.GLB", + "ocnBgchem.sino3.tavg-u-hxy-si.mon.GLB", + "ocnBgchem.sisi.tavg-u-hxy-si.mon.GLB", + "seaIce.sfdsi.tavg-u-hxy-si.mon.GLB", + "seaIce.siage.tavg-u-hxy-si.mon.GLB", + "seaIce.siarea.tavg-u-hm-u.day.NH", + "seaIce.siarea.tavg-u-hm-u.day.SH", + "seaIce.sicompstren.tavg-u-hxy-si.mon.GLB", + "seaIce.sidivvel.tpt-u-hxy-si.mon.GLB", + "seaIce.sidmasstranx.tavg-u-hxy-u.mon.GLB", + "seaIce.sidmasstrany.tavg-u-hxy-u.mon.GLB", + "seaIce.sidragbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidragtop.tavg-u-hxy-si.mon.GLB", + "seaIce.siextent.tavg-u-hm-u.day.NH", + "seaIce.siextent.tavg-u-hm-u.day.SH", + "seaIce.sifb.tavg-u-hxy-si.day.GLB", + "seaIce.sifb.tavg-u-hxy-si.mon.GLB", + "seaIce.siflfwbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflfwdrain.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcecoriolx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcecorioly.tavg-u-hxy-si.mon.GLB", + "seaIce.siforceintstrx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforceintstry.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcetiltx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcetilty.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdconc.tavg-u-hxy-si.day.GLB", + "seaIce.siitdsnconc.tavg-u-hxy-si.day.GLB", + "seaIce.siitdsnthick.tavg-u-hxy-si.day.GLB", + "seaIce.siitdthick.tavg-u-hxy-si.day.GLB", + "seaIce.simpconc.tavg-u-hxy-si.day.GLB", + "seaIce.simpeffconc.tavg-u-hxy-si.day.GLB", + "seaIce.simpeffconc.tavg-u-hxy-si.mon.GLB", + "seaIce.simprefrozen.tavg-u-hxy-simp.day.GLB", + "seaIce.simprefrozen.tavg-u-hxy-simp.mon.GLB", + "seaIce.simpthick.tavg-u-hxy-si.day.GLB", + "seaIce.simpthick.tavg-u-hxy-simp.mon.GLB", + "seaIce.sirdgconc.tavg-u-hxy-si.day.GLB", + "seaIce.sisali.tavg-u-hxy-si.day.GLB", + "seaIce.sisali.tavg-u-hxy-si.mon.GLB", + "seaIce.sisaltmass.tavg-u-hxy-si.day.GLB", + "seaIce.sishearvel.tpt-u-hxy-si.mon.GLB", + "seaIce.sisnmass.tavg-u-hm-u.day.NH", + "seaIce.sisnmass.tavg-u-hm-u.day.SH", + "seaIce.sitempbot.tavg-u-hxy-si.day.GLB", + "seaIce.sitempbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sitempsnic.tavg-u-hxy-si.day.GLB", + "seaIce.sithick.tavg-u-hxy-sir.day.GLB", + "seaIce.sithick.tavg-u-hxy-sir.mon.GLB", + "seaIce.sivol.tavg-u-hm-u.day.NH", + "seaIce.sivol.tavg-u-hm-u.day.SH" + ], + "Low": [ + "aerosol.abs550aer.tavg-u-hxy-u.mon.GLB", + "atmosChem.flashrate.tavg-u-hxy-u.mon.GLB", + "ocean.difmxybo.tavg-ol-hxy-sea.yr.GLB", + "ocean.difmxylo.tavg-ol-hxy-sea.yr.GLB", + "ocean.diftrblo.tavg-ol-hxy-sea.yr.GLB", + "ocean.diftrelo.tavg-ol-hxy-sea.yr.GLB", + "ocean.difvho.tavg-ol-hxy-sea.yr.GLB", + "ocean.difvso.tavg-ol-hxy-sea.yr.GLB", + "ocean.dispkexyfo.tavg-u-hxy-sea.yr.GLB", + "ocean.dxto.ti-u-hxy-u.fx.GLB", + "ocean.dxuo.ti-u-hxy-u.fx.GLB", + "ocean.dxvo.ti-u-hxy-u.fx.GLB", + "ocean.dyto.ti-u-hxy-u.fx.GLB", + "ocean.dyuo.ti-u-hxy-u.fx.GLB", + "ocean.dyvo.ti-u-hxy-u.fx.GLB", + "ocean.mlotstsq.tavg-u-hxy-sea.mon.GLB", + "ocean.msftmmpa.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftmmpa.tavg-rho-hyb-sea.mon.GLB", + "ocean.msftmsmpa.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftypa.tavg-ol-ht-sea.mon.GLB", + "ocean.msftypa.tavg-rho-ht-sea.mon.GLB", + "ocean.ocontempdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontempmint.tavg-u-hxy-sea.yr.GLB", + "ocean.ocontemppadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemppmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemppsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemprmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemptend.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottempdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottempmint.tavg-u-hxy-sea.yr.GLB", + "ocean.opottemppadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemppmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemppsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemprmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemptend.tavg-ol-hxy-sea.dec.GLB", + "ocean.osaltdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpsmadvect.tavg-ol-hxy-sea.mon.GLB", + "ocean.osaltpsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltrmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osalttend.tavg-ol-hxy-sea.yr.GLB", + "ocean.rsdoabsorb.tavg-ol-hxy-sea.yr.GLB", + "ocean.somint.tavg-u-hxy-sea.yr.GLB", + "ocean.sossq.tavg-u-hxy-sea.mon.GLB", + "ocean.thkcelluo.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcellvo.tavg-ol-hxy-sea.mon.GLB", + "ocean.tnpeo.tavg-u-hxy-sea.yr.GLB", + "ocean.tossq.tavg-u-hxy-sea.mon.GLB" + ] + }, + "scenariomip25": { + "Core": [ + "atmos.areacella.ti-u-hxy-u.fx.GLB", + "atmos.cl.tavg-al-hxy-u.mon.GLB", + "atmos.cli.tavg-al-hxy-u.mon.GLB", + "atmos.clivi.tavg-u-hxy-u.mon.GLB", + "atmos.clt.tavg-u-hxy-u.day.GLB", + "atmos.clt.tavg-u-hxy-u.mon.GLB", + "atmos.clw.tavg-al-hxy-u.mon.GLB", + "atmos.clwvi.tavg-u-hxy-u.mon.GLB", + "atmos.evspsbl.tavg-u-hxy-u.mon.GLB", + "atmos.hfls.tavg-u-hxy-u.mon.GLB", + "atmos.hfss.tavg-u-hxy-u.mon.GLB", + "atmos.hur.tavg-p19-hxy-air.mon.GLB", + "atmos.hur.tavg-p19-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.6hr.GLB", + "atmos.hurs.tavg-h2m-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.mon.GLB", + "atmos.hus.tavg-p19-hxy-u.day.GLB", + "atmos.hus.tavg-p19-hxy-u.mon.GLB", + "atmos.huss.tavg-h2m-hxy-u.day.GLB", + "atmos.huss.tavg-h2m-hxy-u.mon.GLB", + "atmos.huss.tpt-h2m-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.1hr.GLB", + "atmos.pr.tavg-u-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.day.GLB", + "atmos.pr.tavg-u-hxy-u.mon.GLB", + "atmos.prc.tavg-u-hxy-u.mon.GLB", + "atmos.prsn.tavg-u-hxy-u.mon.GLB", + "atmos.prw.tavg-u-hxy-u.mon.GLB", + "atmos.ps.tavg-u-hxy-u.day.GLB", + "atmos.ps.tavg-u-hxy-u.mon.GLB", + "atmos.psl.tavg-u-hxy-u.day.GLB", + "atmos.psl.tavg-u-hxy-u.mon.GLB", + "atmos.rlds.tavg-u-hxy-u.mon.GLB", + "atmos.rldscs.tavg-u-hxy-u.mon.GLB", + "atmos.rlus.tavg-u-hxy-u.mon.GLB", + "atmos.rluscs.tavg-u-hxy-u.mon.GLB", + "atmos.rlut.tavg-u-hxy-u.mon.GLB", + "atmos.rlutcs.tavg-u-hxy-u.mon.GLB", + "atmos.rsds.tavg-u-hxy-u.day.GLB", + "atmos.rsds.tavg-u-hxy-u.mon.GLB", + "atmos.rsdscs.tavg-u-hxy-u.mon.GLB", + "atmos.rsdt.tavg-u-hxy-u.mon.GLB", + "atmos.rsus.tavg-u-hxy-u.mon.GLB", + "atmos.rsuscs.tavg-u-hxy-u.mon.GLB", + "atmos.rsut.tavg-u-hxy-u.mon.GLB", + "atmos.rsutcs.tavg-u-hxy-u.mon.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.day.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.mon.GLB", + "atmos.sftlf.ti-u-hxy-u.fx.GLB", + "atmos.ta.tavg-p19-hxy-air.day.GLB", + "atmos.ta.tavg-p19-hxy-air.mon.GLB", + "atmos.ta.tpt-p3-hxy-air.6hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.day.GLB", + "atmos.tas.tavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tmax-h2m-hxy-u.day.GLB", + "atmos.tas.tmaxavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tmin-h2m-hxy-u.day.GLB", + "atmos.tas.tminavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tpt-h2m-hxy-u.3hr.GLB", + "atmos.tauu.tavg-u-hxy-u.mon.GLB", + "atmos.tauv.tavg-u-hxy-u.mon.GLB", + "atmos.ts.tavg-u-hxy-u.mon.GLB", + "atmos.ua.tavg-p19-hxy-air.day.GLB", + "atmos.ua.tavg-p19-hxy-air.mon.GLB", + "atmos.ua.tpt-p3-hxy-air.6hr.GLB", + "atmos.uas.tavg-h10m-hxy-u.day.GLB", + "atmos.uas.tavg-h10m-hxy-u.mon.GLB", + "atmos.uas.tpt-h10m-hxy-u.3hr.GLB", + "atmos.va.tavg-p19-hxy-air.day.GLB", + "atmos.va.tavg-p19-hxy-air.mon.GLB", + "atmos.va.tpt-p3-hxy-air.6hr.GLB", + "atmos.vas.tavg-h10m-hxy-u.day.GLB", + "atmos.vas.tavg-h10m-hxy-u.mon.GLB", + "atmos.vas.tpt-h10m-hxy-u.3hr.GLB", + "atmos.wap.tavg-p19-hxy-air.mon.GLB", + "atmos.wap.tavg-p19-hxy-u.day.GLB", + "atmos.zg.tavg-p19-hxy-air.day.GLB", + "atmos.zg.tavg-p19-hxy-air.mon.GLB", + "land.evspsblsoi.tavg-u-hxy-lnd.mon.GLB", + "land.evspsblveg.tavg-u-hxy-lnd.mon.GLB", + "land.lai.tavg-u-hxy-lnd.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.mon.GLB", + "land.mrros.tavg-u-hxy-lnd.mon.GLB", + "land.mrso.tavg-u-hxy-lnd.mon.GLB", + "land.mrsofc.ti-u-hxy-lnd.fx.GLB", + "land.mrsol.tavg-d10cm-hxy-lnd.mon.GLB", + "land.orog.ti-u-hxy-u.fx.GLB", + "land.rootd.ti-u-hxy-lnd.fx.GLB", + "land.sftgif.ti-u-hxy-u.fx.GLB", + "land.slthick.ti-sl-hxy-lnd.fx.GLB", + "landIce.mrfso.tavg-u-hxy-lnd.mon.GLB", + "landIce.snc.tavg-u-hxy-lnd.mon.GLB", + "landIce.snw.tavg-u-hxy-lnd.mon.GLB", + "ocean.areacello.ti-u-hxy-u.fx.GLB", + "ocean.basin.ti-u-hxy-u.fx.GLB", + "ocean.bigthetao.tavg-ol-hxy-sea.mon.GLB", + "ocean.deptho.ti-u-hxy-sea.fx.GLB", + "ocean.hfds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfgeou.ti-u-hxy-sea.fx.GLB", + "ocean.masscello.tavg-ol-hxy-sea.mon.GLB", + "ocean.masscello.ti-ol-hxy-sea.fx.GLB", + "ocean.mlotst.tavg-u-hxy-sea.mon.GLB", + "ocean.sftof.ti-u-hxy-u.fx.GLB", + "ocean.so.tavg-ol-hxy-sea.mon.GLB", + "ocean.sos.tavg-u-hxy-sea.day.GLB", + "ocean.sos.tavg-u-hxy-sea.mon.GLB", + "ocean.tauuo.tavg-u-hxy-sea.mon.GLB", + "ocean.tauvo.tavg-u-hxy-sea.mon.GLB", + "ocean.thetao.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcello.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcello.ti-ol-hxy-sea.fx.GLB", + "ocean.tos.tavg-u-hxy-sea.day.GLB", + "ocean.tos.tavg-u-hxy-sea.mon.GLB", + "ocean.umo.tavg-ol-hxy-sea.mon.GLB", + "ocean.uo.tavg-ol-hxy-sea.mon.GLB", + "ocean.vmo.tavg-ol-hxy-sea.mon.GLB", + "ocean.vo.tavg-ol-hxy-sea.mon.GLB", + "ocean.wmo.tavg-ol-hxy-sea.mon.GLB", + "ocean.wo.tavg-ol-hxy-sea.mon.GLB", + "ocean.zos.tavg-u-hxy-sea.day.GLB", + "ocean.zos.tavg-u-hxy-sea.mon.GLB", + "ocean.zostoga.tavg-u-hm-sea.mon.GLB", + "seaIce.siconc.tavg-u-hxy-u.day.GLB", + "seaIce.siconc.tavg-u-hxy-u.mon.GLB", + "seaIce.simass.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-si.mon.GLB", + "seaIce.sitimefrac.tavg-u-hxy-sea.mon.GLB", + "seaIce.siu.tavg-u-hxy-si.mon.GLB", + "seaIce.siv.tavg-u-hxy-si.mon.GLB", + "seaIce.snd.tavg-u-hxy-sn.mon.GLB", + "seaIce.ts.tavg-u-hxy-si.mon.GLB" + ], + "High": [ + "aerosol.depdust.tavg-u-hxy-u.mon.GLB", + "atmos.co2.tavg-h2m-hxy-u.mon.GLB", + "atmos.co2.tclm-u-hm-u.mon.GLB", + "atmos.epfy.tavg-p39-hy-air.day.GLB", + "atmos.epfy.tavg-p39-hy-air.mon.GLB", + "atmos.epfz.tavg-p39-hy-air.day.GLB", + "atmos.epfz.tavg-p39-hy-air.mon.GLB", + "atmos.evspsbl.tavg-u-hxy-lnd.day.GLB", + "atmos.hfls.tavg-u-hxy-u.day.GLB", + "atmos.hfss.tavg-u-hxy-u.day.GLB", + "atmos.hurs.tpt-h2m-hxy-u.3hr.GLB", + "atmos.huss.tavg-h2m-hxy-u.6hr.GLB", + "atmos.huss.tpt-h2m-hxy-u.1hr.GLB", + "atmos.intuadse.tavg-u-hxy-u.day.GLB", + "atmos.intuadse.tavg-u-hxy-u.mon.GLB", + "atmos.intuaw.tavg-u-hxy-u.day.GLB", + "atmos.intuaw.tavg-u-hxy-u.mon.GLB", + "atmos.intvadse.tavg-u-hxy-u.day.GLB", + "atmos.intvadse.tavg-u-hxy-u.mon.GLB", + "atmos.intvaw.tavg-u-hxy-u.day.GLB", + "atmos.intvaw.tavg-u-hxy-u.mon.GLB", + "atmos.pr17O.tavg-u-hxy-u.mon.GLB", + "atmos.pr18O.tavg-u-hxy-u.mon.GLB", + "atmos.pr2h.tavg-u-hxy-u.mon.GLB", + "atmos.prra.tavg-u-hxy-lnd.day.GLB", + "atmos.prra.tavg-u-hxy-u.6hr.GLB", + "atmos.prra.tavg-u-hxy-u.mon.GLB", + "atmos.prsn.tavg-u-hxy-u.6hr.GLB", + "atmos.prsn.tavg-u-hxy-u.day.GLB", + "atmos.prsn18O.tavg-u-hxy-u.mon.GLB", + "atmos.prsn2h.tavg-u-hxy-u.mon.GLB", + "atmos.ps.tavg-u-hxy-u.6hr.GLB", + "atmos.psl.tpt-u-hxy-u.1hr.GLB", + "atmos.rlds.tavg-u-hxy-u.3hr.GLB", + "atmos.rlds.tavg-u-hxy-u.6hr.GLB", + "atmos.rlds.tavg-u-hxy-u.day.GLB", + "atmos.rlus.tavg-u-hxy-u.day.GLB", + "atmos.rlut.tavg-u-hxy-u.day.GLB", + "atmos.rsds.tavg-u-hxy-u.1hr.GLB", + "atmos.rsds.tavg-u-hxy-u.3hr.GLB", + "atmos.rsds.tavg-u-hxy-u.6hr.GLB", + "atmos.rsdt.tavg-u-hxy-u.day.GLB", + "atmos.rsus.tavg-u-hxy-u.day.GLB", + "atmos.rsut.tavg-u-hxy-u.day.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.6hr.GLB", + "atmos.ta.tavg-p39-hy-air.day.GLB", + "atmos.ta.tavg-p39-hy-air.mon.GLB", + "atmos.tas.tavg-h2m-hxy-u.6hr.GLB", + "atmos.tauu.tavg-u-hxy-u.day.GLB", + "atmos.tauunoegw.tavg-p39-hy-air.day.GLB", + "atmos.tauunowgw.tavg-p39-hy-air.day.GLB", + "atmos.tauuogw.tavg-p39-hy-air.day.GLB", + "atmos.tauv.tavg-u-hxy-u.day.GLB", + "atmos.tauvnogw.tavg-p39-hy-air.day.GLB", + "atmos.tauvogw.tavg-p39-hy-air.day.GLB", + "atmos.tdps.tavg-h2m-hxy-u.mon.GLB", + "atmos.tntmp.tavg-p39-hy-air.day.GLB", + "atmos.tntmp.tavg-p39-hy-air.mon.GLB", + "atmos.tntrl.tavg-p39-hy-air.day.GLB", + "atmos.tntrl.tavg-p39-hy-air.mon.GLB", + "atmos.tntrs.tavg-p39-hy-air.day.GLB", + "atmos.tntrs.tavg-p39-hy-air.mon.GLB", + "atmos.ts.tavg-u-hxy-u.6hr.GLB", + "atmos.ts.tavg-u-hxy-u.day.GLB", + "atmos.ua.tavg-p39-hy-air.day.GLB", + "atmos.ua.tavg-p39-hy-air.mon.GLB", + "atmos.ua.tpt-h100m-hxy-u.1hr.GLB", + "atmos.uas.tpt-h10m-hxy-u.1hr.GLB", + "atmos.utendepfd.tavg-p39-hy-air.day.GLB", + "atmos.utendepfd.tavg-p39-hy-air.mon.GLB", + "atmos.utendnogw.tavg-p39-hy-air.day.GLB", + "atmos.utendnogw.tavg-p39-hy-air.mon.GLB", + "atmos.utendogw.tavg-p39-hy-air.day.GLB", + "atmos.utendogw.tavg-p39-hy-air.mon.GLB", + "atmos.utendvtem.tavg-p39-hy-air.day.GLB", + "atmos.utendwtem.tavg-p39-hy-air.day.GLB", + "atmos.va.tpt-h100m-hxy-u.1hr.GLB", + "atmos.vas.tpt-h10m-hxy-u.1hr.GLB", + "atmos.vtem.tavg-p39-hy-air.day.GLB", + "atmos.vtem.tavg-p39-hy-air.mon.GLB", + "atmos.wsg.tmax-h100m-hxy-u.1hr.GLB", + "atmos.wsg.tmax-h10m-hxy-u.1hr.GLB", + "atmos.wtem.tavg-p39-hy-air.day.GLB", + "atmos.wtem.tavg-p39-hy-air.mon.GLB", + "atmos.zg.tavg-p39-hy-air.day.GLB", + "atmos.zg.tavg-p39-hy-air.mon.GLB", + "atmosChem.meanage.tavg-p39-hy-air.mon.GLB", + "land.burntFractionAll.tavg-u-hxy-u.mon.GLB", + "land.cSoil.tavg-sl-hxy-lnd.mon.GLB", + "land.cSoil.tavg-u-hxy-lnd.mon.GLB", + "land.depthl.ti-u-hxy-u.fx.GLB", + "land.depthsl.ti-u-hxy-u.fx.GLB", + "land.mrro.tavg-u-hxy-lnd.day.GLB", + "land.mrrob.tavg-u-hxy-lnd.day.GLB", + "land.mrros.tavg-u-hxy-lnd.day.GLB", + "land.mrsfl.tavg-sl-hxy-lnd.day.GLB", + "land.mrsfl.tavg-sl-hxy-lnd.mon.GLB", + "land.mrsll.tavg-sl-hxy-lnd.day.GLB", + "land.mrsll.tavg-sl-hxy-lnd.mon.GLB", + "land.mrsol.tavg-sl-hxy-lnd.day.GLB", + "land.mrsol.tavg-sl-hxy-lnd.mon.GLB", + "land.rsds.tavg-u-hxy-lnd.mon.GLB", + "land.rsds.tavg-u-hxy-sn.mon.GLB", + "land.rsus.tavg-u-hxy-lnd.mon.GLB", + "land.rsus.tavg-u-hxy-sn.mon.GLB", + "land.sftgif.tavg-u-hxy-u.mon.GLB", + "land.sftlaf.ti-u-hxy-u.fx.GLB", + "land.tas.tavg-u-hxy-u.1hr.GLB", + "land.tsl.tavg-sl-hxy-lnd.day.GLB", + "land.tsl.tavg-sl-hxy-lnd.mon.GLB", + "landIce.acabf.tavg-u-hxy-is.mon.GLB", + "landIce.hfls.tavg-u-hxy-is.mon.GLB", + "landIce.hfss.tavg-u-hxy-is.mon.GLB", + "landIce.icem.tavg-u-hxy-is.mon.GLB", + "landIce.litemptop.tavg-u-hxy-is.mon.GLB", + "landIce.lithk.ti-u-hxy-u.fx.GLB", + "landIce.mrro.tavg-u-hxy-is.mon.GLB", + "landIce.orog.tavg-u-hxy-is.mon.GLB", + "landIce.prra.tavg-u-hxy-is.mon.GLB", + "landIce.prsn.tavg-u-hxy-is.mon.GLB", + "landIce.rlds.tavg-u-hxy-is.mon.GLB", + "landIce.rlus.tavg-u-hxy-is.mon.GLB", + "landIce.rsds.tavg-u-hxy-is.mon.GLB", + "landIce.rsus.tavg-u-hxy-is.mon.GLB", + "landIce.sbl.tavg-u-hxy-is.mon.GLB", + "landIce.sbl.tavg-u-hxy-lnd.mon.GLB", + "landIce.sbl.tavg-u-hxy-u.mon.GLB", + "landIce.sftflf.tavg-u-hxy-u.mon.GLB", + "landIce.sftflf.ti-u-hxy-u.fx.GLB", + "landIce.sftgrf.tavg-u-hxy-u.mon.GLB", + "landIce.sftgrf.ti-u-hxy-u.fx.GLB", + "landIce.snc.tavg-u-hxy-is.mon.GLB", + "landIce.snd.tavg-u-hxy-lnd.mon.GLB", + "landIce.snicem.tavg-u-hxy-is.mon.GLB", + "landIce.snm.tavg-u-hxy-is.mon.GLB", + "landIce.snm.tavg-u-hxy-lnd.mon.GLB", + "landIce.snrefr.tavg-u-hxy-is.mon.GLB", + "landIce.tas.tavg-u-hxy-is.mon.GLB", + "landIce.ts.tavg-u-hxy-is.mon.GLB", + "landIce.tsn.tavg-u-hxy-is.mon.GLB", + "landIce.tsn.tavg-u-hxy-lnd.mon.GLB", + "ocean.absscint.tavg-op4-hxy-sea.mon.GLB", + "ocean.agessc.tavg-ol-hxy-sea.mon.GLB", + "ocean.bigthetao.tavg-ol-hm-sea.mon.GLB", + "ocean.bigthetao.tavg-ol-hxy-sea.dec.GLB", + "ocean.bigthetao.tavg-op20bar-hxy-sea.day.GLB", + "ocean.chcint.tavg-op4-hxy-sea.mon.GLB", + "ocean.ficeberg.tavg-u-hxy-sea.mon.GLB", + "ocean.flandice.tavg-u-hxy-sea.mon.GLB", + "ocean.hfbasin.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpmadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpmdiff.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpsmadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfgeou.tavg-u-hxy-sea.mon.GLB", + "ocean.hfx.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfx.tavg-u-hxy-sea.day.GLB", + "ocean.hfx.tavg-u-hxy-sea.mon.GLB", + "ocean.hfy.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfy.tavg-u-hxy-sea.day.GLB", + "ocean.hfy.tavg-u-hxy-sea.mon.GLB", + "ocean.htovgyre.tavg-u-hyb-sea.mon.GLB", + "ocean.htovovrt.tavg-u-hyb-sea.mon.GLB", + "ocean.masscello.tavg-ol-hxy-sea.dec.GLB", + "ocean.masso.tavg-u-hm-sea.dec.GLB", + "ocean.masso.tavg-u-hm-sea.mon.GLB", + "ocean.mlotst.tavg-u-hxy-sea.day.GLB", + "ocean.mlotst.tmax-u-hxy-sea.mon.GLB", + "ocean.mlotst.tmin-u-hxy-sea.mon.GLB", + "ocean.mpw.tavg-u-hxy-sea.mon.GLB", + "ocean.mpw.tpt-u-hxy-sea.3hr.GLB", + "ocean.mpwswell.tavg-u-hxy-sea.mon.GLB", + "ocean.mpwswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.mpwwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.mpwwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.msftbarot.tavg-u-hxy-sea.mon.GLB", + "ocean.msftm.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftm.tavg-rho-hyb-sea.mon.GLB", + "ocean.msfty.tavg-ol-ht-sea.mon.GLB", + "ocean.msfty.tavg-rho-ht-sea.mon.GLB", + "ocean.obvfsq.tavg-ol-hxy-sea.mon.GLB", + "ocean.opottemptend.tavg-ol-hxy-sea.yr.GLB", + "ocean.pbo.tavg-u-hxy-sea.mon.GLB", + "ocean.pfscint.tavg-op4-hxy-sea.mon.GLB", + "ocean.phcint.tavg-op4-hxy-sea.mon.GLB", + "ocean.pso.tavg-u-hxy-sea.mon.GLB", + "ocean.rsds.tavg-u-hxy-ifs.mon.GLB", + "ocean.rsus.tavg-u-hxy-ifs.mon.GLB", + "ocean.scint.tavg-op4-hxy-sea.mon.GLB", + "ocean.sduo.tavg-u-hxy-sea.mon.GLB", + "ocean.sduo.tpt-u-hxy-sea.3hr.GLB", + "ocean.sdvo.tavg-u-hxy-sea.mon.GLB", + "ocean.sdvo.tpt-u-hxy-sea.3hr.GLB", + "ocean.sfx.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfx.tavg-u-hxy-sea.mon.GLB", + "ocean.sfy.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfy.tavg-u-hxy-sea.mon.GLB", + "ocean.sltbasin.tavg-u-hyb-sea.mon.GLB", + "ocean.sltovgyre.tavg-u-hyb-sea.mon.GLB", + "ocean.sltovovrt.tavg-u-hyb-sea.mon.GLB", + "ocean.so.tavg-ol-hm-sea.mon.GLB", + "ocean.so.tavg-ol-hxy-sea.dec.GLB", + "ocean.sob.tavg-u-hxy-sea.mon.GLB", + "ocean.sos.tavg-u-hm-sea.mon.GLB", + "ocean.sw17O.tavg-ol-hxy-sea.mon.GLB", + "ocean.sw18O.tavg-ol-hxy-sea.mon.GLB", + "ocean.sw2H.tavg-ol-hxy-sea.mon.GLB", + "ocean.swh.tavg-u-hxy-sea.mon.GLB", + "ocean.swh.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhmax.tmax-u-hxy-sea.mon.GLB", + "ocean.swhmax.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhswell.tavg-u-hxy-sea.mon.GLB", + "ocean.swhswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.swhwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.tauuo.tavg-u-hxy-sea.dec.GLB", + "ocean.tauvo.tavg-u-hxy-sea.dec.GLB", + "ocean.thetao.tavg-ol-hm-sea.mon.GLB", + "ocean.thetao.tavg-ol-hxy-sea.dec.GLB", + "ocean.thetao.tavg-op20bar-hxy-sea.day.GLB", + "ocean.thkcello.tavg-ol-hxy-sea.dec.GLB", + "ocean.tob.tavg-u-hxy-sea.mon.GLB", + "ocean.tos.tavg-u-hm-sea.mon.GLB", + "ocean.tos.tpt-u-hxy-sea.3hr.GLB", + "ocean.tossq.tavg-u-hxy-sea.day.GLB", + "ocean.uos.tavg-u-hxy-sea.day.GLB", + "ocean.volcello.tavg-ol-hxy-sea.dec.GLB", + "ocean.volcello.tavg-ol-hxy-sea.mon.GLB", + "ocean.volcello.tavg-ol-hxy-sea.yr.GLB", + "ocean.volcello.ti-ol-hxy-sea.fx.GLB", + "ocean.volo.tavg-u-hm-sea.dec.GLB", + "ocean.volo.tavg-u-hm-sea.mon.GLB", + "ocean.vos.tavg-u-hxy-sea.day.GLB", + "ocean.wdir.tavg-u-hxy-sea.mon.GLB", + "ocean.wdir.tpt-u-hxy-sea.3hr.GLB", + "ocean.wdirswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wdirswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wdirwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wdirwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.wfcorr.tavg-u-hxy-sea.mon.GLB", + "ocean.wfo.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdir.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdir.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpdirswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdirswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpdirwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdirwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpp.tavg-u-hxy-sea.mon.GLB", + "ocean.wpp.tpt-u-hxy-sea.3hr.GLB", + "ocean.wppswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wppswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wppwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wppwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.zossq.tavg-u-hxy-sea.mon.GLB", + "ocean.zostoga.tavg-u-hm-sea.day.GLB", + "ocnBgchem.chl.tavg-d0m-hxy-sea.day.GLB", + "ocnBgchem.chl.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.detoc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dfe.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissic.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissoc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dmso.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.dpco2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.dpo2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.expc.tavg-d1000m-hxy-sea.mon.GLB", + "ocnBgchem.expc.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.expcalc.tavg-d1000m-hxy-sea.mon.GLB", + "ocnBgchem.expcalc.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.fgco2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fric.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.froc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.graz.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.intpp.tavg-u-hxy-sea.day.GLB", + "ocnBgchem.intpp.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.nh4.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.no3.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.o2.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.ph.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phyc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phycalc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phydiat.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phymisc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phypico.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.po4.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.si.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.spco2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.talk.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zmeso.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zmicro.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zmisc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zooc.tavg-ol-hxy-sea.mon.GLB", + "seaIce.evspsbl.tavg-u-hxy-si.mon.GLB", + "seaIce.prra.tavg-u-hxy-si.mon.GLB", + "seaIce.prsn.tavg-u-hxy-si.mon.GLB", + "seaIce.rlds.tavg-u-hxy-si.day.GLB", + "seaIce.rlds.tavg-u-hxy-si.mon.GLB", + "seaIce.rlus.tavg-u-hxy-si.day.GLB", + "seaIce.rlus.tavg-u-hxy-si.mon.GLB", + "seaIce.rsds.tavg-u-hxy-si.day.GLB", + "seaIce.rsds.tavg-u-hxy-si.mon.GLB", + "seaIce.rsus.tavg-u-hxy-si.day.GLB", + "seaIce.rsus.tavg-u-hxy-si.mon.GLB", + "seaIce.sbl.tavg-u-hxy-si.mon.GLB", + "seaIce.siage.tavg-u-hxy-si.day.GLB", + "seaIce.siarea.tavg-u-hm-u.mon.NH", + "seaIce.siarea.tavg-u-hm-u.mon.SH", + "seaIce.siareaacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.siconca.tavg-u-hxy-u.day.GLB", + "seaIce.siconca.tavg-u-hxy-u.mon.GLB", + "seaIce.sidconcdyn.tavg-u-hxy-sea.mon.GLB", + "seaIce.sidconcth.tavg-u-hxy-sea.mon.GLB", + "seaIce.sidmassdyn.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthsi.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthwat.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmeltbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmeltlat.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmelttop.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassth.tavg-u-hxy-si.mon.GLB", + "seaIce.sieqthick.tavg-u-hxy-si.mon.GLB", + "seaIce.siextent.tavg-u-hm-u.mon.NH", + "seaIce.siextent.tavg-u-hm-u.mon.SH", + "seaIce.siflcondbot.tavg-u-hxy-si.day.GLB", + "seaIce.siflcondbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflcondtop.tavg-u-hxy-si.day.GLB", + "seaIce.siflcondtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sifllattop.tavg-u-hxy-si.day.GLB", + "seaIce.sifllattop.tavg-u-hxy-si.mon.GLB", + "seaIce.siflsensbot.tavg-u-hxy-si.day.GLB", + "seaIce.siflsensbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflsenstop.tavg-u-hxy-si.day.GLB", + "seaIce.siflsenstop.tavg-u-hxy-si.mon.GLB", + "seaIce.siflswdbot.tavg-u-hxy-si.day.GLB", + "seaIce.siflswdbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sihc.tavg-u-hxy-sea.day.GLB", + "seaIce.sihc.tavg-u-hxy-sea.mon.GLB", + "seaIce.siitdconc.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdsnconc.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdsnthick.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdthick.tavg-u-hxy-si.mon.GLB", + "seaIce.simassacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.simpconc.tavg-u-hxy-si.mon.GLB", + "seaIce.sirdgconc.tavg-u-hxy-si.mon.GLB", + "seaIce.sisaltmass.tavg-u-hxy-si.mon.GLB", + "seaIce.sisndmassdyn.tavg-u-hxy-si.mon.GLB", + "seaIce.sisndmasssi.tavg-u-hxy-si.mon.GLB", + "seaIce.sisndmasswind.tavg-u-hxy-si.mon.GLB", + "seaIce.sisnhc.tavg-u-hxy-si.day.GLB", + "seaIce.sisnhc.tavg-u-hxy-si.mon.GLB", + "seaIce.sisnmass.tavg-u-hm-u.mon.NH", + "seaIce.sisnmass.tavg-u-hm-u.mon.SH", + "seaIce.sisnmassacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.sispeed.tavg-u-hxy-si.day.GLB", + "seaIce.sispeed.tavg-u-hxy-si.mon.GLB", + "seaIce.sistressave.tpt-u-hxy-si.mon.GLB", + "seaIce.sistressmax.tpt-u-hxy-si.mon.GLB", + "seaIce.sistrxdtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sistrxubot.tavg-u-hxy-si.mon.GLB", + "seaIce.sistrydtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sistryubot.tavg-u-hxy-si.mon.GLB", + "seaIce.sitempsnic.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-si.day.GLB", + "seaIce.sitimefrac.tavg-u-hxy-sea.day.GLB", + "seaIce.siu.tavg-u-hxy-si.day.GLB", + "seaIce.siv.tavg-u-hxy-si.day.GLB", + "seaIce.sivol.tavg-u-hm-u.mon.NH", + "seaIce.sivol.tavg-u-hm-u.mon.SH", + "seaIce.snc.tavg-u-hxy-si.mon.GLB", + "seaIce.snd.tavg-u-hxy-sn.day.GLB", + "seaIce.snm.tavg-u-hxy-si.mon.GLB", + "seaIce.snw.tavg-u-hxy-si.mon.GLB", + "seaIce.ts.tavg-u-hxy-si.day.GLB" + ], + "Medium": [ + "atmos.hfls.tavg-u-hxy-is.mon.ATA", + "atmos.hfls.tavg-u-hxy-is.mon.GRL", + "atmos.hfss.tavg-u-hxy-is.mon.ATA", + "atmos.hfss.tavg-u-hxy-is.mon.GRL", + "atmos.prra.tavg-u-hxy-is.mon.ATA", + "atmos.prra.tavg-u-hxy-is.mon.GRL", + "atmos.prsn.tavg-u-hxy-is.mon.ATA", + "atmos.prsn.tavg-u-hxy-is.mon.GRL", + "atmos.ps.tpt-u-hxy-u.1hr.GLB", + "atmos.psitem.tavg-p39-hy-air.day.GLB", + "atmos.rlds.tavg-u-hxy-is.mon.ATA", + "atmos.rlds.tavg-u-hxy-is.mon.GRL", + "atmos.rlds.tavg-u-hxy-u.1hr.GLB", + "atmos.rlus.tavg-u-hxy-is.mon.ATA", + "atmos.rlus.tavg-u-hxy-is.mon.GRL", + "atmos.rsds.tavg-u-hxy-is.mon.ATA", + "atmos.rsds.tavg-u-hxy-is.mon.GRL", + "atmos.rsdsdiff.tavg-u-hxy-u.1hr.GLB", + "atmos.rsus.tavg-u-hxy-is.mon.ATA", + "atmos.rsus.tavg-u-hxy-is.mon.GRL", + "atmos.sfcWind.tavg-h10m-hxy-u.1hr.GLB", + "atmos.tas.tavg-h2m-hm-is.mon.ATA", + "atmos.tas.tavg-h2m-hm-is.mon.GRL", + "atmos.tauunoegw.tavg-p19-hxy-air.mon.GLB", + "atmos.tauunowgw.tavg-p19-hxy-air.mon.GLB", + "atmos.tauuogw.tavg-p19-hxy-air.mon.GLB", + "atmos.tauupbl.tavg-u-hxy-u.day.GLB", + "atmos.tauvnogw.tavg-p19-hxy-air.mon.GLB", + "atmos.tauvogw.tavg-p19-hxy-air.mon.GLB", + "atmos.tauvpbl.tavg-u-hxy-u.day.GLB", + "atmos.tntc.tavg-p39-hy-air.mon.GLB", + "atmos.tntnogw.tavg-p39-hy-air.mon.GLB", + "atmos.tntogw.tavg-p39-hy-air.mon.GLB", + "atmos.tntrlcs.tavg-p39-hy-air.mon.GLB", + "atmos.tntrscs.tavg-p39-hy-air.mon.GLB", + "atmos.tntscp.tavg-p39-hy-air.mon.GLB", + "atmos.ts.tavg-u-hxy-is.mon.ATA", + "atmos.ts.tavg-u-hxy-is.mon.GRL", + "atmos.ts.tavg-u-hxy-u.1hr.GLB", + "atmos.utendnogw.tavg-p19-hxy-air.day.GLB", + "atmos.utendnogw.tavg-p19-hxy-air.mon.GLB", + "atmos.utendogw.tavg-p19-hxy-air.day.GLB", + "atmos.utendogw.tavg-p19-hxy-air.mon.GLB", + "atmos.vtendnogw.tavg-p19-hxy-air.day.GLB", + "atmos.vtendnogw.tavg-p19-hxy-air.mon.GLB", + "atmos.vtendogw.tavg-p19-hxy-air.day.GLB", + "atmos.vtendogw.tavg-p19-hxy-air.mon.GLB", + "atmos.wsg.tmax-h100m-hxy-u.mon.GLB", + "atmos.wsg.tmax-h10m-hxy-u.mon.GLB", + "land.areacellg.ti-u-hxy-u.fx.ATA", + "land.areacellg.ti-u-hxy-u.fx.GRL", + "land.mrso.tavg-u-hxy-lnd.day.GLB", + "land.orog.tavg-u-hxy-is.mon.ATA", + "land.orog.tavg-u-hxy-is.mon.GRL", + "land.orog.tavg-u-hxy-is.yr.ATA", + "land.orog.tavg-u-hxy-is.yr.GRL", + "land.sftgif.tavg-u-hxy-u.yr.ATA", + "land.sftgif.tavg-u-hxy-u.yr.GRL", + "landIce.acabf.tavg-u-hxy-is.mon.ATA", + "landIce.acabf.tavg-u-hxy-is.mon.GRL", + "landIce.acabf.tavg-u-hxy-is.yr.ATA", + "landIce.acabf.tavg-u-hxy-is.yr.GRL", + "landIce.hfgeoubed.tavg-u-hxy-gis.yr.ATA", + "landIce.hfgeoubed.tavg-u-hxy-gis.yr.GRL", + "landIce.hfgeoubed.ti-u-hxy-gis.fx.ATA", + "landIce.hfgeoubed.ti-u-hxy-gis.fx.GRL", + "landIce.iareafl.tavg-u-hm-fis.yr.ATA", + "landIce.iareafl.tavg-u-hm-fis.yr.GRL", + "landIce.iareagr.tavg-u-hm-gis.yr.ATA", + "landIce.iareagr.tavg-u-hm-gis.yr.GRL", + "landIce.icem.tavg-u-hxy-is.mon.ATA", + "landIce.icem.tavg-u-hxy-is.mon.GRL", + "landIce.libmassbf.tavg-u-hxy-fis.mon.ATA", + "landIce.libmassbf.tavg-u-hxy-fis.mon.GRL", + "landIce.libmassbf.tavg-u-hxy-fis.yr.ATA", + "landIce.libmassbf.tavg-u-hxy-fis.yr.GRL", + "landIce.libmassbf.tavg-u-hxy-gis.mon.ATA", + "landIce.libmassbf.tavg-u-hxy-gis.mon.GRL", + "landIce.libmassbf.tavg-u-hxy-gis.yr.ATA", + "landIce.libmassbf.tavg-u-hxy-gis.yr.GRL", + "landIce.licalvf.tavg-u-hxy-is.mon.ATA", + "landIce.licalvf.tavg-u-hxy-is.mon.GRL", + "landIce.licalvf.tavg-u-hxy-is.yr.ATA", + "landIce.licalvf.tavg-u-hxy-is.yr.GRL", + "landIce.lifmassbf.tavg-u-hxy-is.mon.ATA", + "landIce.lifmassbf.tavg-u-hxy-is.mon.GRL", + "landIce.lifmassbf.tavg-u-hxy-is.yr.ATA", + "landIce.lifmassbf.tavg-u-hxy-is.yr.GRL", + "landIce.lim.tavg-u-hm-is.yr.ATA", + "landIce.lim.tavg-u-hm-is.yr.GRL", + "landIce.limnsw.tavg-u-hm-is.yr.ATA", + "landIce.limnsw.tavg-u-hm-is.yr.GRL", + "landIce.litempbot.tavg-u-hxy-fis.mon.ATA", + "landIce.litempbot.tavg-u-hxy-fis.mon.GRL", + "landIce.litempbot.tavg-u-hxy-fis.yr.ATA", + "landIce.litempbot.tavg-u-hxy-fis.yr.GRL", + "landIce.litempbot.tavg-u-hxy-gis.mon.ATA", + "landIce.litempbot.tavg-u-hxy-gis.mon.GRL", + "landIce.litempbot.tavg-u-hxy-gis.yr.ATA", + "landIce.litempbot.tavg-u-hxy-gis.yr.GRL", + "landIce.litemptop.tavg-u-hxy-is.mon.ATA", + "landIce.litemptop.tavg-u-hxy-is.mon.GRL", + "landIce.litemptop.tavg-u-hxy-is.yr.ATA", + "landIce.litemptop.tavg-u-hxy-is.yr.GRL", + "landIce.lithk.tavg-u-hxy-is.yr.ATA", + "landIce.lithk.tavg-u-hxy-is.yr.GRL", + "landIce.lithk.ti-u-hxy-is.fx.ATA", + "landIce.lithk.ti-u-hxy-is.fx.GRL", + "landIce.modelcellareai.tavg-u-hxy-u.yr.ATA", + "landIce.modelcellareai.tavg-u-hxy-u.yr.GRL", + "landIce.mrroLi.tavg-u-hxy-is.mon.ATA", + "landIce.mrroLi.tavg-u-hxy-is.mon.GRL", + "landIce.sbl.tavg-u-hxy-is.mon.ATA", + "landIce.sbl.tavg-u-hxy-is.mon.GRL", + "landIce.sftflf.tavg-u-hxy-u.yr.ATA", + "landIce.sftflf.tavg-u-hxy-u.yr.GRL", + "landIce.sftgrf.tavg-u-hxy-u.yr.ATA", + "landIce.sftgrf.tavg-u-hxy-u.yr.GRL", + "landIce.snc.tavg-u-hxy-is.mon.ATA", + "landIce.snc.tavg-u-hxy-is.mon.GRL", + "landIce.snc.tavg-u-hxy-is.yr.ATA", + "landIce.snc.tavg-u-hxy-is.yr.GRL", + "landIce.snicem.tavg-u-hxy-is.mon.ATA", + "landIce.snicem.tavg-u-hxy-is.mon.GRL", + "landIce.snm.tavg-u-hxy-is.mon.ATA", + "landIce.snm.tavg-u-hxy-is.mon.GRL", + "landIce.snrefr.tavg-u-hxy-is.mon.ATA", + "landIce.snrefr.tavg-u-hxy-is.mon.GRL", + "landIce.strbasemag.tavg-u-hxy-is.yr.ATA", + "landIce.strbasemag.tavg-u-hxy-is.yr.GRL", + "landIce.tendacabf.tavg-u-hm-is.yr.ATA", + "landIce.tendacabf.tavg-u-hm-is.yr.GRL", + "landIce.tendlibmassbf.tavg-u-hm-is.yr.ATA", + "landIce.tendlibmassbf.tavg-u-hm-is.yr.GRL", + "landIce.tendlicalvf.tavg-u-hm-is.yr.ATA", + "landIce.tendlicalvf.tavg-u-hm-is.yr.GRL", + "landIce.topg.tavg-u-hxy-gis.yr.ATA", + "landIce.topg.tavg-u-hxy-gis.yr.GRL", + "landIce.topg.ti-u-hxy-gis.fx.ATA", + "landIce.topg.ti-u-hxy-gis.fx.GRL", + "landIce.tsn.tavg-u-hxy-is.mon.ATA", + "landIce.tsn.tavg-u-hxy-is.mon.GRL", + "landIce.xvelbase.tavg-u-hxy-is.yr.ATA", + "landIce.xvelbase.tavg-u-hxy-is.yr.GRL", + "landIce.xvelmean.tavg-u-hxy-is.yr.ATA", + "landIce.xvelmean.tavg-u-hxy-is.yr.GRL", + "landIce.xvelsurf.tavg-u-hxy-is.yr.ATA", + "landIce.xvelsurf.tavg-u-hxy-is.yr.GRL", + "landIce.yvelbase.tavg-u-hxy-is.yr.ATA", + "landIce.yvelbase.tavg-u-hxy-is.yr.GRL", + "landIce.yvelmean.tavg-u-hxy-is.yr.ATA", + "landIce.yvelmean.tavg-u-hxy-is.yr.GRL", + "landIce.yvelsurf.tavg-u-hxy-is.yr.ATA", + "landIce.yvelsurf.tavg-u-hxy-is.yr.GRL", + "landIce.zvelbase.tavg-u-hxy-is.yr.ATA", + "landIce.zvelbase.tavg-u-hxy-is.yr.GRL", + "landIce.zvelsurf.tavg-u-hxy-is.yr.ATA", + "landIce.zvelsurf.tavg-u-hxy-is.yr.GRL", + "ocean.evspsbl.tavg-u-hxy-ifs.mon.GLB", + "ocean.ficeberg.tavg-ol-hxy-sea.mon.GLB", + "ocean.friver.tavg-u-hxy-sea.mon.GLB", + "ocean.hfacrossline.tavg-u-ht-sea.mon.GLB", + "ocean.hfevapds.tavg-u-hxy-ifs.mon.GLB", + "ocean.hfibthermds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfibthermds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfrainds.tavg-u-hxy-ifs.mon.GLB", + "ocean.hfrunoffds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfrunoffds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfsnthermds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfsnthermds.tavg-u-hxy-sea.mon.GLB", + "ocean.mfo.tavg-u-ht-sea.mon.GLB", + "ocean.sfacrossline.tavg-u-ht-sea.mon.GLB", + "ocean.sfdsi.tavg-u-hxy-sea.mon.GLB", + "ocean.sfriver.tavg-u-hxy-sea.mon.GLB", + "ocean.siflfwbot.tavg-u-hxy-sea.mon.GLB", + "ocean.so.tavg-ol-hxy-sea.day.GLB", + "ocean.t17d.tavg-u-hxy-sea.mon.GLB", + "ocean.t20d.tavg-u-hxy-sea.mon.GLB", + "ocean.tnkebto.tavg-u-hxy-sea.yr.GLB", + "ocean.vsf.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfcorr.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfevap.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfpr.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfriver.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfsit.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.arag.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.arag.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.calc.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.calc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chl.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.detoc.tavg-ol-hxy-sea.day.GLB", + "ocnBgchem.dissoc.tavg-ol-hxy-sea.day.GLB", + "ocnBgchem.exparagob.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.expc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.expcalc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.expcalcob.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.expcob.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.expfeob.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.expnob.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.exppob.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.expsiob.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.frfe.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.frn.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppcalc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppdiat.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppdiaz.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppmisc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppnano.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intpppico.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limfecalc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limfediat.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limfediaz.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limfemisc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limfepico.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limirrcalc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limirrdiat.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limirrdiaz.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limirrmisc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limirrpico.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limncalc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limndiat.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limndiaz.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limnmisc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limnpico.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.o2.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.o2sat.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.ph.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.pp.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.sialgc.tavg-u-hxy-si.mon.GLB", + "ocnBgchem.sichl.tavg-u-hxy-si.mon.GLB", + "ocnBgchem.sigpp.tavg-u-hxy-si.mon.GLB", + "ocnBgchem.sino3.tavg-u-hxy-si.mon.GLB", + "ocnBgchem.sisi.tavg-u-hxy-si.mon.GLB", + "seaIce.sfdsi.tavg-u-hxy-si.mon.GLB", + "seaIce.siage.tavg-u-hxy-si.mon.GLB", + "seaIce.siarea.tavg-u-hm-u.day.NH", + "seaIce.siarea.tavg-u-hm-u.day.SH", + "seaIce.sicompstren.tavg-u-hxy-si.mon.GLB", + "seaIce.sidivvel.tpt-u-hxy-si.mon.GLB", + "seaIce.sidmasstranx.tavg-u-hxy-u.mon.GLB", + "seaIce.sidmasstrany.tavg-u-hxy-u.mon.GLB", + "seaIce.sidragbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidragtop.tavg-u-hxy-si.mon.GLB", + "seaIce.siextent.tavg-u-hm-u.day.NH", + "seaIce.siextent.tavg-u-hm-u.day.SH", + "seaIce.sifb.tavg-u-hxy-si.day.GLB", + "seaIce.sifb.tavg-u-hxy-si.mon.GLB", + "seaIce.siflfwbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflfwdrain.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcecoriolx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcecorioly.tavg-u-hxy-si.mon.GLB", + "seaIce.siforceintstrx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforceintstry.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcetiltx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcetilty.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdconc.tavg-u-hxy-si.day.GLB", + "seaIce.siitdsnconc.tavg-u-hxy-si.day.GLB", + "seaIce.siitdsnthick.tavg-u-hxy-si.day.GLB", + "seaIce.siitdthick.tavg-u-hxy-si.day.GLB", + "seaIce.simpconc.tavg-u-hxy-si.day.GLB", + "seaIce.simpeffconc.tavg-u-hxy-si.day.GLB", + "seaIce.simpeffconc.tavg-u-hxy-si.mon.GLB", + "seaIce.simprefrozen.tavg-u-hxy-simp.day.GLB", + "seaIce.simprefrozen.tavg-u-hxy-simp.mon.GLB", + "seaIce.simpthick.tavg-u-hxy-si.day.GLB", + "seaIce.simpthick.tavg-u-hxy-simp.mon.GLB", + "seaIce.sirdgconc.tavg-u-hxy-si.day.GLB", + "seaIce.sisali.tavg-u-hxy-si.day.GLB", + "seaIce.sisali.tavg-u-hxy-si.mon.GLB", + "seaIce.sisaltmass.tavg-u-hxy-si.day.GLB", + "seaIce.sishearvel.tpt-u-hxy-si.mon.GLB", + "seaIce.sisnmass.tavg-u-hm-u.day.NH", + "seaIce.sisnmass.tavg-u-hm-u.day.SH", + "seaIce.sitempbot.tavg-u-hxy-si.day.GLB", + "seaIce.sitempbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sitempsnic.tavg-u-hxy-si.day.GLB", + "seaIce.sithick.tavg-u-hxy-sir.day.GLB", + "seaIce.sithick.tavg-u-hxy-sir.mon.GLB", + "seaIce.sivol.tavg-u-hm-u.day.NH", + "seaIce.sivol.tavg-u-hm-u.day.SH" + ], + "Low": [ + "aerosol.abs550aer.tavg-u-hxy-u.mon.GLB", + "atmosChem.flashrate.tavg-u-hxy-u.mon.GLB", + "ocean.difmxybo.tavg-ol-hxy-sea.yr.GLB", + "ocean.difmxylo.tavg-ol-hxy-sea.yr.GLB", + "ocean.diftrblo.tavg-ol-hxy-sea.yr.GLB", + "ocean.diftrelo.tavg-ol-hxy-sea.yr.GLB", + "ocean.difvho.tavg-ol-hxy-sea.yr.GLB", + "ocean.difvso.tavg-ol-hxy-sea.yr.GLB", + "ocean.dispkexyfo.tavg-u-hxy-sea.yr.GLB", + "ocean.dxto.ti-u-hxy-u.fx.GLB", + "ocean.dxuo.ti-u-hxy-u.fx.GLB", + "ocean.dxvo.ti-u-hxy-u.fx.GLB", + "ocean.dyto.ti-u-hxy-u.fx.GLB", + "ocean.dyuo.ti-u-hxy-u.fx.GLB", + "ocean.dyvo.ti-u-hxy-u.fx.GLB", + "ocean.mlotstsq.tavg-u-hxy-sea.mon.GLB", + "ocean.msftmmpa.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftmmpa.tavg-rho-hyb-sea.mon.GLB", + "ocean.msftmsmpa.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftypa.tavg-ol-ht-sea.mon.GLB", + "ocean.msftypa.tavg-rho-ht-sea.mon.GLB", + "ocean.ocontempdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontempmint.tavg-u-hxy-sea.yr.GLB", + "ocean.ocontemppadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemppmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemppsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemprmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemptend.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottempdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottempmint.tavg-u-hxy-sea.yr.GLB", + "ocean.opottemppadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemppmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemppsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemprmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemptend.tavg-ol-hxy-sea.dec.GLB", + "ocean.osaltdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpsmadvect.tavg-ol-hxy-sea.mon.GLB", + "ocean.osaltpsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltrmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osalttend.tavg-ol-hxy-sea.yr.GLB", + "ocean.rsdoabsorb.tavg-ol-hxy-sea.yr.GLB", + "ocean.somint.tavg-u-hxy-sea.yr.GLB", + "ocean.sossq.tavg-u-hxy-sea.mon.GLB", + "ocean.thkcelluo.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcellvo.tavg-ol-hxy-sea.mon.GLB", + "ocean.tnpeo.tavg-u-hxy-sea.yr.GLB", + "ocean.tossq.tavg-u-hxy-sea.mon.GLB" + ] + }, + "scenariomip26": { + "Core": [ + "atmos.areacella.ti-u-hxy-u.fx.GLB", + "atmos.cl.tavg-al-hxy-u.mon.GLB", + "atmos.cli.tavg-al-hxy-u.mon.GLB", + "atmos.clivi.tavg-u-hxy-u.mon.GLB", + "atmos.clt.tavg-u-hxy-u.day.GLB", + "atmos.clt.tavg-u-hxy-u.mon.GLB", + "atmos.clw.tavg-al-hxy-u.mon.GLB", + "atmos.clwvi.tavg-u-hxy-u.mon.GLB", + "atmos.evspsbl.tavg-u-hxy-u.mon.GLB", + "atmos.hfls.tavg-u-hxy-u.mon.GLB", + "atmos.hfss.tavg-u-hxy-u.mon.GLB", + "atmos.hur.tavg-p19-hxy-air.mon.GLB", + "atmos.hur.tavg-p19-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.6hr.GLB", + "atmos.hurs.tavg-h2m-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.mon.GLB", + "atmos.hus.tavg-p19-hxy-u.day.GLB", + "atmos.hus.tavg-p19-hxy-u.mon.GLB", + "atmos.huss.tavg-h2m-hxy-u.day.GLB", + "atmos.huss.tavg-h2m-hxy-u.mon.GLB", + "atmos.huss.tpt-h2m-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.1hr.GLB", + "atmos.pr.tavg-u-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.day.GLB", + "atmos.pr.tavg-u-hxy-u.mon.GLB", + "atmos.prc.tavg-u-hxy-u.mon.GLB", + "atmos.prsn.tavg-u-hxy-u.mon.GLB", + "atmos.prw.tavg-u-hxy-u.mon.GLB", + "atmos.ps.tavg-u-hxy-u.day.GLB", + "atmos.ps.tavg-u-hxy-u.mon.GLB", + "atmos.psl.tavg-u-hxy-u.day.GLB", + "atmos.psl.tavg-u-hxy-u.mon.GLB", + "atmos.rlds.tavg-u-hxy-u.mon.GLB", + "atmos.rldscs.tavg-u-hxy-u.mon.GLB", + "atmos.rlus.tavg-u-hxy-u.mon.GLB", + "atmos.rluscs.tavg-u-hxy-u.mon.GLB", + "atmos.rlut.tavg-u-hxy-u.mon.GLB", + "atmos.rlutcs.tavg-u-hxy-u.mon.GLB", + "atmos.rsds.tavg-u-hxy-u.day.GLB", + "atmos.rsds.tavg-u-hxy-u.mon.GLB", + "atmos.rsdscs.tavg-u-hxy-u.mon.GLB", + "atmos.rsdt.tavg-u-hxy-u.mon.GLB", + "atmos.rsus.tavg-u-hxy-u.mon.GLB", + "atmos.rsuscs.tavg-u-hxy-u.mon.GLB", + "atmos.rsut.tavg-u-hxy-u.mon.GLB", + "atmos.rsutcs.tavg-u-hxy-u.mon.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.day.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.mon.GLB", + "atmos.sftlf.ti-u-hxy-u.fx.GLB", + "atmos.ta.tavg-p19-hxy-air.day.GLB", + "atmos.ta.tavg-p19-hxy-air.mon.GLB", + "atmos.ta.tpt-p3-hxy-air.6hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.day.GLB", + "atmos.tas.tavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tmax-h2m-hxy-u.day.GLB", + "atmos.tas.tmaxavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tmin-h2m-hxy-u.day.GLB", + "atmos.tas.tminavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tpt-h2m-hxy-u.3hr.GLB", + "atmos.tauu.tavg-u-hxy-u.mon.GLB", + "atmos.tauv.tavg-u-hxy-u.mon.GLB", + "atmos.ts.tavg-u-hxy-u.mon.GLB", + "atmos.ua.tavg-p19-hxy-air.day.GLB", + "atmos.ua.tavg-p19-hxy-air.mon.GLB", + "atmos.ua.tpt-p3-hxy-air.6hr.GLB", + "atmos.uas.tavg-h10m-hxy-u.day.GLB", + "atmos.uas.tavg-h10m-hxy-u.mon.GLB", + "atmos.uas.tpt-h10m-hxy-u.3hr.GLB", + "atmos.va.tavg-p19-hxy-air.day.GLB", + "atmos.va.tavg-p19-hxy-air.mon.GLB", + "atmos.va.tpt-p3-hxy-air.6hr.GLB", + "atmos.vas.tavg-h10m-hxy-u.day.GLB", + "atmos.vas.tavg-h10m-hxy-u.mon.GLB", + "atmos.vas.tpt-h10m-hxy-u.3hr.GLB", + "atmos.wap.tavg-p19-hxy-air.mon.GLB", + "atmos.wap.tavg-p19-hxy-u.day.GLB", + "atmos.zg.tavg-p19-hxy-air.day.GLB", + "atmos.zg.tavg-p19-hxy-air.mon.GLB", + "land.evspsblsoi.tavg-u-hxy-lnd.mon.GLB", + "land.evspsblveg.tavg-u-hxy-lnd.mon.GLB", + "land.lai.tavg-u-hxy-lnd.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.mon.GLB", + "land.mrros.tavg-u-hxy-lnd.mon.GLB", + "land.mrso.tavg-u-hxy-lnd.mon.GLB", + "land.mrsofc.ti-u-hxy-lnd.fx.GLB", + "land.mrsol.tavg-d10cm-hxy-lnd.mon.GLB", + "land.orog.ti-u-hxy-u.fx.GLB", + "land.rootd.ti-u-hxy-lnd.fx.GLB", + "land.sftgif.ti-u-hxy-u.fx.GLB", + "land.slthick.ti-sl-hxy-lnd.fx.GLB", + "landIce.mrfso.tavg-u-hxy-lnd.mon.GLB", + "landIce.snc.tavg-u-hxy-lnd.mon.GLB", + "landIce.snw.tavg-u-hxy-lnd.mon.GLB", + "ocean.areacello.ti-u-hxy-u.fx.GLB", + "ocean.basin.ti-u-hxy-u.fx.GLB", + "ocean.bigthetao.tavg-ol-hxy-sea.mon.GLB", + "ocean.deptho.ti-u-hxy-sea.fx.GLB", + "ocean.hfds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfgeou.ti-u-hxy-sea.fx.GLB", + "ocean.masscello.tavg-ol-hxy-sea.mon.GLB", + "ocean.masscello.ti-ol-hxy-sea.fx.GLB", + "ocean.mlotst.tavg-u-hxy-sea.mon.GLB", + "ocean.sftof.ti-u-hxy-u.fx.GLB", + "ocean.so.tavg-ol-hxy-sea.mon.GLB", + "ocean.sos.tavg-u-hxy-sea.day.GLB", + "ocean.sos.tavg-u-hxy-sea.mon.GLB", + "ocean.tauuo.tavg-u-hxy-sea.mon.GLB", + "ocean.tauvo.tavg-u-hxy-sea.mon.GLB", + "ocean.thetao.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcello.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcello.ti-ol-hxy-sea.fx.GLB", + "ocean.tos.tavg-u-hxy-sea.day.GLB", + "ocean.tos.tavg-u-hxy-sea.mon.GLB", + "ocean.umo.tavg-ol-hxy-sea.mon.GLB", + "ocean.uo.tavg-ol-hxy-sea.mon.GLB", + "ocean.vmo.tavg-ol-hxy-sea.mon.GLB", + "ocean.vo.tavg-ol-hxy-sea.mon.GLB", + "ocean.wmo.tavg-ol-hxy-sea.mon.GLB", + "ocean.wo.tavg-ol-hxy-sea.mon.GLB", + "ocean.zos.tavg-u-hxy-sea.day.GLB", + "ocean.zos.tavg-u-hxy-sea.mon.GLB", + "ocean.zostoga.tavg-u-hm-sea.mon.GLB", + "seaIce.siconc.tavg-u-hxy-u.day.GLB", + "seaIce.siconc.tavg-u-hxy-u.mon.GLB", + "seaIce.simass.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-si.mon.GLB", + "seaIce.sitimefrac.tavg-u-hxy-sea.mon.GLB", + "seaIce.siu.tavg-u-hxy-si.mon.GLB", + "seaIce.siv.tavg-u-hxy-si.mon.GLB", + "seaIce.snd.tavg-u-hxy-sn.mon.GLB", + "seaIce.ts.tavg-u-hxy-si.mon.GLB" + ], + "High": [ + "aerosol.depdust.tavg-u-hxy-u.mon.GLB", + "atmos.co2.tavg-h2m-hxy-u.mon.GLB", + "atmos.epfy.tavg-p39-hy-air.day.GLB", + "atmos.epfy.tavg-p39-hy-air.mon.GLB", + "atmos.epfz.tavg-p39-hy-air.day.GLB", + "atmos.epfz.tavg-p39-hy-air.mon.GLB", + "atmos.hfls.tavg-u-hxy-u.day.GLB", + "atmos.hfss.tavg-u-hxy-u.day.GLB", + "atmos.huss.tavg-h2m-hxy-u.6hr.GLB", + "atmos.intuadse.tavg-u-hxy-u.day.GLB", + "atmos.intuadse.tavg-u-hxy-u.mon.GLB", + "atmos.intuaw.tavg-u-hxy-u.day.GLB", + "atmos.intuaw.tavg-u-hxy-u.mon.GLB", + "atmos.intvadse.tavg-u-hxy-u.day.GLB", + "atmos.intvadse.tavg-u-hxy-u.mon.GLB", + "atmos.intvaw.tavg-u-hxy-u.day.GLB", + "atmos.intvaw.tavg-u-hxy-u.mon.GLB", + "atmos.pr17O.tavg-u-hxy-u.mon.GLB", + "atmos.pr18O.tavg-u-hxy-u.mon.GLB", + "atmos.pr2h.tavg-u-hxy-u.mon.GLB", + "atmos.prra.tavg-u-hxy-lnd.day.GLB", + "atmos.prra.tavg-u-hxy-u.6hr.GLB", + "atmos.prra.tavg-u-hxy-u.mon.GLB", + "atmos.prsn.tavg-u-hxy-u.6hr.GLB", + "atmos.prsn.tavg-u-hxy-u.day.GLB", + "atmos.prsn18O.tavg-u-hxy-u.mon.GLB", + "atmos.prsn2h.tavg-u-hxy-u.mon.GLB", + "atmos.ps.tavg-u-hxy-u.6hr.GLB", + "atmos.psl.tpt-u-hxy-u.1hr.GLB", + "atmos.rlds.tavg-u-hxy-u.6hr.GLB", + "atmos.rlds.tavg-u-hxy-u.day.GLB", + "atmos.rlus.tavg-u-hxy-u.day.GLB", + "atmos.rlut.tavg-u-hxy-u.day.GLB", + "atmos.rsds.tavg-u-hxy-u.6hr.GLB", + "atmos.rsdt.tavg-u-hxy-u.day.GLB", + "atmos.rsus.tavg-u-hxy-u.day.GLB", + "atmos.rsut.tavg-u-hxy-u.day.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.6hr.GLB", + "atmos.ta.tavg-p39-hy-air.day.GLB", + "atmos.ta.tavg-p39-hy-air.mon.GLB", + "atmos.tas.tavg-h2m-hxy-u.6hr.GLB", + "atmos.tauu.tavg-u-hxy-u.day.GLB", + "atmos.tauunoegw.tavg-p39-hy-air.day.GLB", + "atmos.tauunowgw.tavg-p39-hy-air.day.GLB", + "atmos.tauuogw.tavg-p39-hy-air.day.GLB", + "atmos.tauv.tavg-u-hxy-u.day.GLB", + "atmos.tauvnogw.tavg-p39-hy-air.day.GLB", + "atmos.tauvogw.tavg-p39-hy-air.day.GLB", + "atmos.tdps.tavg-h2m-hxy-u.mon.GLB", + "atmos.tntmp.tavg-p39-hy-air.day.GLB", + "atmos.tntmp.tavg-p39-hy-air.mon.GLB", + "atmos.tntrl.tavg-p39-hy-air.day.GLB", + "atmos.tntrl.tavg-p39-hy-air.mon.GLB", + "atmos.tntrs.tavg-p39-hy-air.day.GLB", + "atmos.tntrs.tavg-p39-hy-air.mon.GLB", + "atmos.ts.tavg-u-hxy-u.6hr.GLB", + "atmos.ts.tavg-u-hxy-u.day.GLB", + "atmos.ua.tavg-p39-hy-air.day.GLB", + "atmos.ua.tavg-p39-hy-air.mon.GLB", + "atmos.ua.tpt-h100m-hxy-u.1hr.GLB", + "atmos.uas.tpt-h10m-hxy-u.1hr.GLB", + "atmos.utendepfd.tavg-p39-hy-air.day.GLB", + "atmos.utendepfd.tavg-p39-hy-air.mon.GLB", + "atmos.utendnogw.tavg-p39-hy-air.day.GLB", + "atmos.utendnogw.tavg-p39-hy-air.mon.GLB", + "atmos.utendogw.tavg-p39-hy-air.day.GLB", + "atmos.utendogw.tavg-p39-hy-air.mon.GLB", + "atmos.utendvtem.tavg-p39-hy-air.day.GLB", + "atmos.utendwtem.tavg-p39-hy-air.day.GLB", + "atmos.va.tpt-h100m-hxy-u.1hr.GLB", + "atmos.vas.tpt-h10m-hxy-u.1hr.GLB", + "atmos.vtem.tavg-p39-hy-air.day.GLB", + "atmos.vtem.tavg-p39-hy-air.mon.GLB", + "atmos.wtem.tavg-p39-hy-air.day.GLB", + "atmos.wtem.tavg-p39-hy-air.mon.GLB", + "atmos.zg.tavg-p39-hy-air.day.GLB", + "atmos.zg.tavg-p39-hy-air.mon.GLB", + "atmosChem.meanage.tavg-p39-hy-air.mon.GLB", + "land.burntFractionAll.tavg-u-hxy-u.mon.GLB", + "land.cSoil.tavg-sl-hxy-lnd.mon.GLB", + "land.cSoil.tavg-u-hxy-lnd.mon.GLB", + "land.depthl.ti-u-hxy-u.fx.GLB", + "land.depthsl.ti-u-hxy-u.fx.GLB", + "land.mrro.tavg-u-hxy-lnd.day.GLB", + "land.mrros.tavg-u-hxy-lnd.day.GLB", + "land.mrsfl.tavg-sl-hxy-lnd.day.GLB", + "land.mrsfl.tavg-sl-hxy-lnd.mon.GLB", + "land.mrsll.tavg-sl-hxy-lnd.day.GLB", + "land.mrsll.tavg-sl-hxy-lnd.mon.GLB", + "land.mrsol.tavg-sl-hxy-lnd.day.GLB", + "land.mrsol.tavg-sl-hxy-lnd.mon.GLB", + "land.rsds.tavg-u-hxy-lnd.mon.GLB", + "land.rsds.tavg-u-hxy-sn.mon.GLB", + "land.rsus.tavg-u-hxy-lnd.mon.GLB", + "land.rsus.tavg-u-hxy-sn.mon.GLB", + "land.sftgif.tavg-u-hxy-u.mon.GLB", + "land.sftlaf.ti-u-hxy-u.fx.GLB", + "land.tsl.tavg-sl-hxy-lnd.day.GLB", + "land.tsl.tavg-sl-hxy-lnd.mon.GLB", + "landIce.acabf.tavg-u-hxy-is.mon.GLB", + "landIce.hfls.tavg-u-hxy-is.mon.GLB", + "landIce.hfss.tavg-u-hxy-is.mon.GLB", + "landIce.icem.tavg-u-hxy-is.mon.GLB", + "landIce.litemptop.tavg-u-hxy-is.mon.GLB", + "landIce.lithk.ti-u-hxy-u.fx.GLB", + "landIce.mrro.tavg-u-hxy-is.mon.GLB", + "landIce.orog.tavg-u-hxy-is.mon.GLB", + "landIce.prra.tavg-u-hxy-is.mon.GLB", + "landIce.prsn.tavg-u-hxy-is.mon.GLB", + "landIce.rlds.tavg-u-hxy-is.mon.GLB", + "landIce.rlus.tavg-u-hxy-is.mon.GLB", + "landIce.rsds.tavg-u-hxy-is.mon.GLB", + "landIce.rsus.tavg-u-hxy-is.mon.GLB", + "landIce.sbl.tavg-u-hxy-is.mon.GLB", + "landIce.sbl.tavg-u-hxy-lnd.mon.GLB", + "landIce.sbl.tavg-u-hxy-u.mon.GLB", + "landIce.sftflf.tavg-u-hxy-u.mon.GLB", + "landIce.sftflf.ti-u-hxy-u.fx.GLB", + "landIce.sftgrf.tavg-u-hxy-u.mon.GLB", + "landIce.sftgrf.ti-u-hxy-u.fx.GLB", + "landIce.snc.tavg-u-hxy-is.mon.GLB", + "landIce.snd.tavg-u-hxy-lnd.mon.GLB", + "landIce.snicem.tavg-u-hxy-is.mon.GLB", + "landIce.snm.tavg-u-hxy-is.mon.GLB", + "landIce.snm.tavg-u-hxy-lnd.mon.GLB", + "landIce.snrefr.tavg-u-hxy-is.mon.GLB", + "landIce.tas.tavg-u-hxy-is.mon.GLB", + "landIce.ts.tavg-u-hxy-is.mon.GLB", + "landIce.tsn.tavg-u-hxy-is.mon.GLB", + "landIce.tsn.tavg-u-hxy-lnd.mon.GLB", + "ocean.absscint.tavg-op4-hxy-sea.mon.GLB", + "ocean.agessc.tavg-ol-hxy-sea.mon.GLB", + "ocean.bigthetao.tavg-ol-hm-sea.mon.GLB", + "ocean.bigthetao.tavg-ol-hxy-sea.dec.GLB", + "ocean.bigthetao.tavg-op20bar-hxy-sea.day.GLB", + "ocean.chcint.tavg-op4-hxy-sea.mon.GLB", + "ocean.ficeberg.tavg-u-hxy-sea.mon.GLB", + "ocean.flandice.tavg-u-hxy-sea.mon.GLB", + "ocean.hfbasin.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpmadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpmdiff.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpsmadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfgeou.tavg-u-hxy-sea.mon.GLB", + "ocean.hfx.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfx.tavg-u-hxy-sea.day.GLB", + "ocean.hfx.tavg-u-hxy-sea.mon.GLB", + "ocean.hfy.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfy.tavg-u-hxy-sea.day.GLB", + "ocean.hfy.tavg-u-hxy-sea.mon.GLB", + "ocean.htovgyre.tavg-u-hyb-sea.mon.GLB", + "ocean.htovovrt.tavg-u-hyb-sea.mon.GLB", + "ocean.masscello.tavg-ol-hxy-sea.dec.GLB", + "ocean.masso.tavg-u-hm-sea.dec.GLB", + "ocean.masso.tavg-u-hm-sea.mon.GLB", + "ocean.mlotst.tavg-u-hxy-sea.day.GLB", + "ocean.mlotst.tmax-u-hxy-sea.mon.GLB", + "ocean.mlotst.tmin-u-hxy-sea.mon.GLB", + "ocean.mpw.tavg-u-hxy-sea.mon.GLB", + "ocean.mpw.tpt-u-hxy-sea.3hr.GLB", + "ocean.mpwswell.tavg-u-hxy-sea.mon.GLB", + "ocean.mpwswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.mpwwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.mpwwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.msftbarot.tavg-u-hxy-sea.mon.GLB", + "ocean.msftm.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftm.tavg-rho-hyb-sea.mon.GLB", + "ocean.msfty.tavg-ol-ht-sea.mon.GLB", + "ocean.msfty.tavg-rho-ht-sea.mon.GLB", + "ocean.obvfsq.tavg-ol-hxy-sea.mon.GLB", + "ocean.opottemptend.tavg-ol-hxy-sea.yr.GLB", + "ocean.pbo.tavg-u-hxy-sea.mon.GLB", + "ocean.pfscint.tavg-op4-hxy-sea.mon.GLB", + "ocean.phcint.tavg-op4-hxy-sea.mon.GLB", + "ocean.pso.tavg-u-hxy-sea.mon.GLB", + "ocean.rsds.tavg-u-hxy-ifs.mon.GLB", + "ocean.rsus.tavg-u-hxy-ifs.mon.GLB", + "ocean.scint.tavg-op4-hxy-sea.mon.GLB", + "ocean.sduo.tavg-u-hxy-sea.mon.GLB", + "ocean.sduo.tpt-u-hxy-sea.3hr.GLB", + "ocean.sdvo.tavg-u-hxy-sea.mon.GLB", + "ocean.sdvo.tpt-u-hxy-sea.3hr.GLB", + "ocean.sfx.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfx.tavg-u-hxy-sea.mon.GLB", + "ocean.sfy.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfy.tavg-u-hxy-sea.mon.GLB", + "ocean.sltbasin.tavg-u-hyb-sea.mon.GLB", + "ocean.sltovgyre.tavg-u-hyb-sea.mon.GLB", + "ocean.sltovovrt.tavg-u-hyb-sea.mon.GLB", + "ocean.so.tavg-ol-hm-sea.mon.GLB", + "ocean.so.tavg-ol-hxy-sea.dec.GLB", + "ocean.sob.tavg-u-hxy-sea.mon.GLB", + "ocean.sos.tavg-u-hm-sea.mon.GLB", + "ocean.sw17O.tavg-ol-hxy-sea.mon.GLB", + "ocean.sw18O.tavg-ol-hxy-sea.mon.GLB", + "ocean.sw2H.tavg-ol-hxy-sea.mon.GLB", + "ocean.swh.tavg-u-hxy-sea.mon.GLB", + "ocean.swh.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhmax.tmax-u-hxy-sea.mon.GLB", + "ocean.swhmax.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhswell.tavg-u-hxy-sea.mon.GLB", + "ocean.swhswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.swhwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.tauuo.tavg-u-hxy-sea.dec.GLB", + "ocean.tauvo.tavg-u-hxy-sea.dec.GLB", + "ocean.thetao.tavg-ol-hm-sea.mon.GLB", + "ocean.thetao.tavg-ol-hxy-sea.dec.GLB", + "ocean.thetao.tavg-op20bar-hxy-sea.day.GLB", + "ocean.thkcello.tavg-ol-hxy-sea.dec.GLB", + "ocean.tob.tavg-u-hxy-sea.mon.GLB", + "ocean.tos.tavg-u-hm-sea.mon.GLB", + "ocean.tos.tpt-u-hxy-sea.3hr.GLB", + "ocean.tossq.tavg-u-hxy-sea.day.GLB", + "ocean.uos.tavg-u-hxy-sea.day.GLB", + "ocean.volcello.tavg-ol-hxy-sea.dec.GLB", + "ocean.volcello.tavg-ol-hxy-sea.mon.GLB", + "ocean.volcello.tavg-ol-hxy-sea.yr.GLB", + "ocean.volcello.ti-ol-hxy-sea.fx.GLB", + "ocean.volo.tavg-u-hm-sea.dec.GLB", + "ocean.volo.tavg-u-hm-sea.mon.GLB", + "ocean.vos.tavg-u-hxy-sea.day.GLB", + "ocean.wdir.tavg-u-hxy-sea.mon.GLB", + "ocean.wdir.tpt-u-hxy-sea.3hr.GLB", + "ocean.wdirswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wdirswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wdirwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wdirwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.wfcorr.tavg-u-hxy-sea.mon.GLB", + "ocean.wfo.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdir.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdir.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpdirswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdirswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpdirwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdirwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpp.tavg-u-hxy-sea.mon.GLB", + "ocean.wpp.tpt-u-hxy-sea.3hr.GLB", + "ocean.wppswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wppswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wppwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wppwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.zossq.tavg-u-hxy-sea.mon.GLB", + "ocean.zostoga.tavg-u-hm-sea.day.GLB", + "seaIce.evspsbl.tavg-u-hxy-si.mon.GLB", + "seaIce.prra.tavg-u-hxy-si.mon.GLB", + "seaIce.prsn.tavg-u-hxy-si.mon.GLB", + "seaIce.rlds.tavg-u-hxy-si.day.GLB", + "seaIce.rlds.tavg-u-hxy-si.mon.GLB", + "seaIce.rlus.tavg-u-hxy-si.day.GLB", + "seaIce.rlus.tavg-u-hxy-si.mon.GLB", + "seaIce.rsds.tavg-u-hxy-si.day.GLB", + "seaIce.rsds.tavg-u-hxy-si.mon.GLB", + "seaIce.rsus.tavg-u-hxy-si.day.GLB", + "seaIce.rsus.tavg-u-hxy-si.mon.GLB", + "seaIce.sbl.tavg-u-hxy-si.mon.GLB", + "seaIce.siage.tavg-u-hxy-si.day.GLB", + "seaIce.siarea.tavg-u-hm-u.mon.NH", + "seaIce.siarea.tavg-u-hm-u.mon.SH", + "seaIce.siareaacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.siconca.tavg-u-hxy-u.day.GLB", + "seaIce.siconca.tavg-u-hxy-u.mon.GLB", + "seaIce.sidconcdyn.tavg-u-hxy-sea.mon.GLB", + "seaIce.sidconcth.tavg-u-hxy-sea.mon.GLB", + "seaIce.sidmassdyn.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthsi.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthwat.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmeltbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmeltlat.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmelttop.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassth.tavg-u-hxy-si.mon.GLB", + "seaIce.sieqthick.tavg-u-hxy-si.mon.GLB", + "seaIce.siextent.tavg-u-hm-u.mon.NH", + "seaIce.siextent.tavg-u-hm-u.mon.SH", + "seaIce.siflcondbot.tavg-u-hxy-si.day.GLB", + "seaIce.siflcondbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflcondtop.tavg-u-hxy-si.day.GLB", + "seaIce.siflcondtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sifllattop.tavg-u-hxy-si.day.GLB", + "seaIce.sifllattop.tavg-u-hxy-si.mon.GLB", + "seaIce.siflsensbot.tavg-u-hxy-si.day.GLB", + "seaIce.siflsensbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflsenstop.tavg-u-hxy-si.day.GLB", + "seaIce.siflsenstop.tavg-u-hxy-si.mon.GLB", + "seaIce.siflswdbot.tavg-u-hxy-si.day.GLB", + "seaIce.siflswdbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sihc.tavg-u-hxy-sea.day.GLB", + "seaIce.sihc.tavg-u-hxy-sea.mon.GLB", + "seaIce.siitdconc.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdsnconc.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdsnthick.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdthick.tavg-u-hxy-si.mon.GLB", + "seaIce.simassacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.simpconc.tavg-u-hxy-si.mon.GLB", + "seaIce.sirdgconc.tavg-u-hxy-si.mon.GLB", + "seaIce.sisaltmass.tavg-u-hxy-si.mon.GLB", + "seaIce.sisndmassdyn.tavg-u-hxy-si.mon.GLB", + "seaIce.sisndmasssi.tavg-u-hxy-si.mon.GLB", + "seaIce.sisndmasswind.tavg-u-hxy-si.mon.GLB", + "seaIce.sisnhc.tavg-u-hxy-si.day.GLB", + "seaIce.sisnhc.tavg-u-hxy-si.mon.GLB", + "seaIce.sisnmass.tavg-u-hm-u.mon.NH", + "seaIce.sisnmass.tavg-u-hm-u.mon.SH", + "seaIce.sisnmassacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.sispeed.tavg-u-hxy-si.day.GLB", + "seaIce.sispeed.tavg-u-hxy-si.mon.GLB", + "seaIce.sistressave.tpt-u-hxy-si.mon.GLB", + "seaIce.sistressmax.tpt-u-hxy-si.mon.GLB", + "seaIce.sistrxdtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sistrxubot.tavg-u-hxy-si.mon.GLB", + "seaIce.sistrydtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sistryubot.tavg-u-hxy-si.mon.GLB", + "seaIce.sitempsnic.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-si.day.GLB", + "seaIce.sitimefrac.tavg-u-hxy-sea.day.GLB", + "seaIce.siu.tavg-u-hxy-si.day.GLB", + "seaIce.siv.tavg-u-hxy-si.day.GLB", + "seaIce.sivol.tavg-u-hm-u.mon.NH", + "seaIce.sivol.tavg-u-hm-u.mon.SH", + "seaIce.snc.tavg-u-hxy-si.mon.GLB", + "seaIce.snd.tavg-u-hxy-sn.day.GLB", + "seaIce.snm.tavg-u-hxy-si.mon.GLB", + "seaIce.snw.tavg-u-hxy-si.mon.GLB", + "seaIce.ts.tavg-u-hxy-si.day.GLB" + ], + "Medium": [ + "atmos.hfls.tavg-u-hxy-is.mon.ATA", + "atmos.hfls.tavg-u-hxy-is.mon.GRL", + "atmos.hfss.tavg-u-hxy-is.mon.ATA", + "atmos.hfss.tavg-u-hxy-is.mon.GRL", + "atmos.prra.tavg-u-hxy-is.mon.ATA", + "atmos.prra.tavg-u-hxy-is.mon.GRL", + "atmos.prsn.tavg-u-hxy-is.mon.ATA", + "atmos.prsn.tavg-u-hxy-is.mon.GRL", + "atmos.psitem.tavg-p39-hy-air.day.GLB", + "atmos.rlds.tavg-u-hxy-is.mon.ATA", + "atmos.rlds.tavg-u-hxy-is.mon.GRL", + "atmos.rlus.tavg-u-hxy-is.mon.ATA", + "atmos.rlus.tavg-u-hxy-is.mon.GRL", + "atmos.rsds.tavg-u-hxy-is.mon.ATA", + "atmos.rsds.tavg-u-hxy-is.mon.GRL", + "atmos.rsus.tavg-u-hxy-is.mon.ATA", + "atmos.rsus.tavg-u-hxy-is.mon.GRL", + "atmos.tas.tavg-h2m-hm-is.mon.ATA", + "atmos.tas.tavg-h2m-hm-is.mon.GRL", + "atmos.tauunoegw.tavg-p19-hxy-air.mon.GLB", + "atmos.tauunowgw.tavg-p19-hxy-air.mon.GLB", + "atmos.tauuogw.tavg-p19-hxy-air.mon.GLB", + "atmos.tauupbl.tavg-u-hxy-u.day.GLB", + "atmos.tauvnogw.tavg-p19-hxy-air.mon.GLB", + "atmos.tauvogw.tavg-p19-hxy-air.mon.GLB", + "atmos.tauvpbl.tavg-u-hxy-u.day.GLB", + "atmos.tntc.tavg-p39-hy-air.mon.GLB", + "atmos.tntnogw.tavg-p39-hy-air.mon.GLB", + "atmos.tntogw.tavg-p39-hy-air.mon.GLB", + "atmos.tntrlcs.tavg-p39-hy-air.mon.GLB", + "atmos.tntrscs.tavg-p39-hy-air.mon.GLB", + "atmos.tntscp.tavg-p39-hy-air.mon.GLB", + "atmos.ts.tavg-u-hxy-is.mon.ATA", + "atmos.ts.tavg-u-hxy-is.mon.GRL", + "atmos.utendnogw.tavg-p19-hxy-air.day.GLB", + "atmos.utendnogw.tavg-p19-hxy-air.mon.GLB", + "atmos.utendogw.tavg-p19-hxy-air.day.GLB", + "atmos.utendogw.tavg-p19-hxy-air.mon.GLB", + "atmos.vtendnogw.tavg-p19-hxy-air.day.GLB", + "atmos.vtendnogw.tavg-p19-hxy-air.mon.GLB", + "atmos.vtendogw.tavg-p19-hxy-air.day.GLB", + "atmos.vtendogw.tavg-p19-hxy-air.mon.GLB", + "land.areacellg.ti-u-hxy-u.fx.ATA", + "land.areacellg.ti-u-hxy-u.fx.GRL", + "land.orog.tavg-u-hxy-is.mon.ATA", + "land.orog.tavg-u-hxy-is.mon.GRL", + "land.orog.tavg-u-hxy-is.yr.ATA", + "land.orog.tavg-u-hxy-is.yr.GRL", + "land.sftgif.tavg-u-hxy-u.yr.ATA", + "land.sftgif.tavg-u-hxy-u.yr.GRL", + "landIce.acabf.tavg-u-hxy-is.mon.ATA", + "landIce.acabf.tavg-u-hxy-is.mon.GRL", + "landIce.acabf.tavg-u-hxy-is.yr.ATA", + "landIce.acabf.tavg-u-hxy-is.yr.GRL", + "landIce.hfgeoubed.tavg-u-hxy-gis.yr.ATA", + "landIce.hfgeoubed.tavg-u-hxy-gis.yr.GRL", + "landIce.hfgeoubed.ti-u-hxy-gis.fx.ATA", + "landIce.hfgeoubed.ti-u-hxy-gis.fx.GRL", + "landIce.iareafl.tavg-u-hm-fis.yr.ATA", + "landIce.iareafl.tavg-u-hm-fis.yr.GRL", + "landIce.iareagr.tavg-u-hm-gis.yr.ATA", + "landIce.iareagr.tavg-u-hm-gis.yr.GRL", + "landIce.icem.tavg-u-hxy-is.mon.ATA", + "landIce.icem.tavg-u-hxy-is.mon.GRL", + "landIce.libmassbf.tavg-u-hxy-fis.mon.ATA", + "landIce.libmassbf.tavg-u-hxy-fis.mon.GRL", + "landIce.libmassbf.tavg-u-hxy-fis.yr.ATA", + "landIce.libmassbf.tavg-u-hxy-fis.yr.GRL", + "landIce.libmassbf.tavg-u-hxy-gis.mon.ATA", + "landIce.libmassbf.tavg-u-hxy-gis.mon.GRL", + "landIce.libmassbf.tavg-u-hxy-gis.yr.ATA", + "landIce.libmassbf.tavg-u-hxy-gis.yr.GRL", + "landIce.licalvf.tavg-u-hxy-is.mon.ATA", + "landIce.licalvf.tavg-u-hxy-is.mon.GRL", + "landIce.licalvf.tavg-u-hxy-is.yr.ATA", + "landIce.licalvf.tavg-u-hxy-is.yr.GRL", + "landIce.lifmassbf.tavg-u-hxy-is.mon.ATA", + "landIce.lifmassbf.tavg-u-hxy-is.mon.GRL", + "landIce.lifmassbf.tavg-u-hxy-is.yr.ATA", + "landIce.lifmassbf.tavg-u-hxy-is.yr.GRL", + "landIce.lim.tavg-u-hm-is.yr.ATA", + "landIce.lim.tavg-u-hm-is.yr.GRL", + "landIce.limnsw.tavg-u-hm-is.yr.ATA", + "landIce.limnsw.tavg-u-hm-is.yr.GRL", + "landIce.litempbot.tavg-u-hxy-fis.mon.ATA", + "landIce.litempbot.tavg-u-hxy-fis.mon.GRL", + "landIce.litempbot.tavg-u-hxy-fis.yr.ATA", + "landIce.litempbot.tavg-u-hxy-fis.yr.GRL", + "landIce.litempbot.tavg-u-hxy-gis.mon.ATA", + "landIce.litempbot.tavg-u-hxy-gis.mon.GRL", + "landIce.litempbot.tavg-u-hxy-gis.yr.ATA", + "landIce.litempbot.tavg-u-hxy-gis.yr.GRL", + "landIce.litemptop.tavg-u-hxy-is.mon.ATA", + "landIce.litemptop.tavg-u-hxy-is.mon.GRL", + "landIce.litemptop.tavg-u-hxy-is.yr.ATA", + "landIce.litemptop.tavg-u-hxy-is.yr.GRL", + "landIce.lithk.tavg-u-hxy-is.yr.ATA", + "landIce.lithk.tavg-u-hxy-is.yr.GRL", + "landIce.lithk.ti-u-hxy-is.fx.ATA", + "landIce.lithk.ti-u-hxy-is.fx.GRL", + "landIce.modelcellareai.tavg-u-hxy-u.yr.ATA", + "landIce.modelcellareai.tavg-u-hxy-u.yr.GRL", + "landIce.mrroLi.tavg-u-hxy-is.mon.ATA", + "landIce.mrroLi.tavg-u-hxy-is.mon.GRL", + "landIce.sbl.tavg-u-hxy-is.mon.ATA", + "landIce.sbl.tavg-u-hxy-is.mon.GRL", + "landIce.sftflf.tavg-u-hxy-u.yr.ATA", + "landIce.sftflf.tavg-u-hxy-u.yr.GRL", + "landIce.sftgrf.tavg-u-hxy-u.yr.ATA", + "landIce.sftgrf.tavg-u-hxy-u.yr.GRL", + "landIce.snc.tavg-u-hxy-is.mon.ATA", + "landIce.snc.tavg-u-hxy-is.mon.GRL", + "landIce.snc.tavg-u-hxy-is.yr.ATA", + "landIce.snc.tavg-u-hxy-is.yr.GRL", + "landIce.snicem.tavg-u-hxy-is.mon.ATA", + "landIce.snicem.tavg-u-hxy-is.mon.GRL", + "landIce.snm.tavg-u-hxy-is.mon.ATA", + "landIce.snm.tavg-u-hxy-is.mon.GRL", + "landIce.snrefr.tavg-u-hxy-is.mon.ATA", + "landIce.snrefr.tavg-u-hxy-is.mon.GRL", + "landIce.strbasemag.tavg-u-hxy-is.yr.ATA", + "landIce.strbasemag.tavg-u-hxy-is.yr.GRL", + "landIce.tendacabf.tavg-u-hm-is.yr.ATA", + "landIce.tendacabf.tavg-u-hm-is.yr.GRL", + "landIce.tendlibmassbf.tavg-u-hm-is.yr.ATA", + "landIce.tendlibmassbf.tavg-u-hm-is.yr.GRL", + "landIce.tendlicalvf.tavg-u-hm-is.yr.ATA", + "landIce.tendlicalvf.tavg-u-hm-is.yr.GRL", + "landIce.topg.tavg-u-hxy-gis.yr.ATA", + "landIce.topg.tavg-u-hxy-gis.yr.GRL", + "landIce.topg.ti-u-hxy-gis.fx.ATA", + "landIce.topg.ti-u-hxy-gis.fx.GRL", + "landIce.tsn.tavg-u-hxy-is.mon.ATA", + "landIce.tsn.tavg-u-hxy-is.mon.GRL", + "landIce.xvelbase.tavg-u-hxy-is.yr.ATA", + "landIce.xvelbase.tavg-u-hxy-is.yr.GRL", + "landIce.xvelmean.tavg-u-hxy-is.yr.ATA", + "landIce.xvelmean.tavg-u-hxy-is.yr.GRL", + "landIce.xvelsurf.tavg-u-hxy-is.yr.ATA", + "landIce.xvelsurf.tavg-u-hxy-is.yr.GRL", + "landIce.yvelbase.tavg-u-hxy-is.yr.ATA", + "landIce.yvelbase.tavg-u-hxy-is.yr.GRL", + "landIce.yvelmean.tavg-u-hxy-is.yr.ATA", + "landIce.yvelmean.tavg-u-hxy-is.yr.GRL", + "landIce.yvelsurf.tavg-u-hxy-is.yr.ATA", + "landIce.yvelsurf.tavg-u-hxy-is.yr.GRL", + "landIce.zvelbase.tavg-u-hxy-is.yr.ATA", + "landIce.zvelbase.tavg-u-hxy-is.yr.GRL", + "landIce.zvelsurf.tavg-u-hxy-is.yr.ATA", + "landIce.zvelsurf.tavg-u-hxy-is.yr.GRL", + "ocean.evspsbl.tavg-u-hxy-ifs.mon.GLB", + "ocean.ficeberg.tavg-ol-hxy-sea.mon.GLB", + "ocean.friver.tavg-u-hxy-sea.mon.GLB", + "ocean.hfacrossline.tavg-u-ht-sea.mon.GLB", + "ocean.hfevapds.tavg-u-hxy-ifs.mon.GLB", + "ocean.hfibthermds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfibthermds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfrainds.tavg-u-hxy-ifs.mon.GLB", + "ocean.hfrunoffds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfrunoffds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfsnthermds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfsnthermds.tavg-u-hxy-sea.mon.GLB", + "ocean.mfo.tavg-u-ht-sea.mon.GLB", + "ocean.sfacrossline.tavg-u-ht-sea.mon.GLB", + "ocean.sfdsi.tavg-u-hxy-sea.mon.GLB", + "ocean.sfriver.tavg-u-hxy-sea.mon.GLB", + "ocean.siflfwbot.tavg-u-hxy-sea.mon.GLB", + "ocean.so.tavg-ol-hxy-sea.day.GLB", + "ocean.tnkebto.tavg-u-hxy-sea.yr.GLB", + "ocean.vsf.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfcorr.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfevap.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfpr.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfriver.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfsit.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.arag.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.arag.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.calc.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.calc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chl.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.dissic.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.o2.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.ph.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.talk.tavg-ol-hxy-sea.mon.GLB", + "seaIce.sfdsi.tavg-u-hxy-si.mon.GLB", + "seaIce.siage.tavg-u-hxy-si.mon.GLB", + "seaIce.siarea.tavg-u-hm-u.day.NH", + "seaIce.siarea.tavg-u-hm-u.day.SH", + "seaIce.sicompstren.tavg-u-hxy-si.mon.GLB", + "seaIce.sidivvel.tpt-u-hxy-si.mon.GLB", + "seaIce.sidmasstranx.tavg-u-hxy-u.mon.GLB", + "seaIce.sidmasstrany.tavg-u-hxy-u.mon.GLB", + "seaIce.sidragbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidragtop.tavg-u-hxy-si.mon.GLB", + "seaIce.siextent.tavg-u-hm-u.day.NH", + "seaIce.siextent.tavg-u-hm-u.day.SH", + "seaIce.sifb.tavg-u-hxy-si.day.GLB", + "seaIce.sifb.tavg-u-hxy-si.mon.GLB", + "seaIce.siflfwbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflfwdrain.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcecoriolx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcecorioly.tavg-u-hxy-si.mon.GLB", + "seaIce.siforceintstrx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforceintstry.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcetiltx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcetilty.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdconc.tavg-u-hxy-si.day.GLB", + "seaIce.siitdsnconc.tavg-u-hxy-si.day.GLB", + "seaIce.siitdsnthick.tavg-u-hxy-si.day.GLB", + "seaIce.siitdthick.tavg-u-hxy-si.day.GLB", + "seaIce.simpconc.tavg-u-hxy-si.day.GLB", + "seaIce.simpeffconc.tavg-u-hxy-si.day.GLB", + "seaIce.simpeffconc.tavg-u-hxy-si.mon.GLB", + "seaIce.simprefrozen.tavg-u-hxy-simp.day.GLB", + "seaIce.simprefrozen.tavg-u-hxy-simp.mon.GLB", + "seaIce.simpthick.tavg-u-hxy-si.day.GLB", + "seaIce.simpthick.tavg-u-hxy-simp.mon.GLB", + "seaIce.sirdgconc.tavg-u-hxy-si.day.GLB", + "seaIce.sisali.tavg-u-hxy-si.day.GLB", + "seaIce.sisali.tavg-u-hxy-si.mon.GLB", + "seaIce.sisaltmass.tavg-u-hxy-si.day.GLB", + "seaIce.sishearvel.tpt-u-hxy-si.mon.GLB", + "seaIce.sisnmass.tavg-u-hm-u.day.NH", + "seaIce.sisnmass.tavg-u-hm-u.day.SH", + "seaIce.sitempbot.tavg-u-hxy-si.day.GLB", + "seaIce.sitempbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sitempsnic.tavg-u-hxy-si.day.GLB", + "seaIce.sithick.tavg-u-hxy-sir.day.GLB", + "seaIce.sithick.tavg-u-hxy-sir.mon.GLB", + "seaIce.sivol.tavg-u-hm-u.day.NH", + "seaIce.sivol.tavg-u-hm-u.day.SH" + ], + "Low": [ + "ocean.difmxybo.tavg-ol-hxy-sea.yr.GLB", + "ocean.difmxylo.tavg-ol-hxy-sea.yr.GLB", + "ocean.diftrblo.tavg-ol-hxy-sea.yr.GLB", + "ocean.diftrelo.tavg-ol-hxy-sea.yr.GLB", + "ocean.difvho.tavg-ol-hxy-sea.yr.GLB", + "ocean.difvso.tavg-ol-hxy-sea.yr.GLB", + "ocean.dispkexyfo.tavg-u-hxy-sea.yr.GLB", + "ocean.dxto.ti-u-hxy-u.fx.GLB", + "ocean.dxuo.ti-u-hxy-u.fx.GLB", + "ocean.dxvo.ti-u-hxy-u.fx.GLB", + "ocean.dyto.ti-u-hxy-u.fx.GLB", + "ocean.dyuo.ti-u-hxy-u.fx.GLB", + "ocean.dyvo.ti-u-hxy-u.fx.GLB", + "ocean.mlotstsq.tavg-u-hxy-sea.mon.GLB", + "ocean.msftmmpa.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftmmpa.tavg-rho-hyb-sea.mon.GLB", + "ocean.msftmsmpa.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftypa.tavg-ol-ht-sea.mon.GLB", + "ocean.msftypa.tavg-rho-ht-sea.mon.GLB", + "ocean.ocontempdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontempmint.tavg-u-hxy-sea.yr.GLB", + "ocean.ocontemppadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemppmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemppsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemprmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemptend.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottempdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottempmint.tavg-u-hxy-sea.yr.GLB", + "ocean.opottemppadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemppmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemppsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemprmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemptend.tavg-ol-hxy-sea.dec.GLB", + "ocean.osaltdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpsmadvect.tavg-ol-hxy-sea.mon.GLB", + "ocean.osaltpsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltrmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osalttend.tavg-ol-hxy-sea.yr.GLB", + "ocean.rsdoabsorb.tavg-ol-hxy-sea.yr.GLB", + "ocean.somint.tavg-u-hxy-sea.yr.GLB", + "ocean.sossq.tavg-u-hxy-sea.mon.GLB", + "ocean.thkcelluo.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcellvo.tavg-ol-hxy-sea.mon.GLB", + "ocean.tnpeo.tavg-u-hxy-sea.yr.GLB", + "ocean.tossq.tavg-u-hxy-sea.mon.GLB" + ] + }, + "scenariomip27": { + "Core": [ + "atmos.areacella.ti-u-hxy-u.fx.GLB", + "atmos.cl.tavg-al-hxy-u.mon.GLB", + "atmos.cli.tavg-al-hxy-u.mon.GLB", + "atmos.clivi.tavg-u-hxy-u.mon.GLB", + "atmos.clt.tavg-u-hxy-u.day.GLB", + "atmos.clt.tavg-u-hxy-u.mon.GLB", + "atmos.clw.tavg-al-hxy-u.mon.GLB", + "atmos.clwvi.tavg-u-hxy-u.mon.GLB", + "atmos.evspsbl.tavg-u-hxy-u.mon.GLB", + "atmos.hfls.tavg-u-hxy-u.mon.GLB", + "atmos.hfss.tavg-u-hxy-u.mon.GLB", + "atmos.hur.tavg-p19-hxy-air.mon.GLB", + "atmos.hur.tavg-p19-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.6hr.GLB", + "atmos.hurs.tavg-h2m-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.mon.GLB", + "atmos.hus.tavg-p19-hxy-u.day.GLB", + "atmos.hus.tavg-p19-hxy-u.mon.GLB", + "atmos.huss.tavg-h2m-hxy-u.day.GLB", + "atmos.huss.tavg-h2m-hxy-u.mon.GLB", + "atmos.huss.tpt-h2m-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.1hr.GLB", + "atmos.pr.tavg-u-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.day.GLB", + "atmos.pr.tavg-u-hxy-u.mon.GLB", + "atmos.prc.tavg-u-hxy-u.mon.GLB", + "atmos.prsn.tavg-u-hxy-u.mon.GLB", + "atmos.prw.tavg-u-hxy-u.mon.GLB", + "atmos.ps.tavg-u-hxy-u.day.GLB", + "atmos.ps.tavg-u-hxy-u.mon.GLB", + "atmos.psl.tavg-u-hxy-u.day.GLB", + "atmos.psl.tavg-u-hxy-u.mon.GLB", + "atmos.rlds.tavg-u-hxy-u.mon.GLB", + "atmos.rldscs.tavg-u-hxy-u.mon.GLB", + "atmos.rlus.tavg-u-hxy-u.mon.GLB", + "atmos.rluscs.tavg-u-hxy-u.mon.GLB", + "atmos.rlut.tavg-u-hxy-u.mon.GLB", + "atmos.rlutcs.tavg-u-hxy-u.mon.GLB", + "atmos.rsds.tavg-u-hxy-u.day.GLB", + "atmos.rsds.tavg-u-hxy-u.mon.GLB", + "atmos.rsdscs.tavg-u-hxy-u.mon.GLB", + "atmos.rsdt.tavg-u-hxy-u.mon.GLB", + "atmos.rsus.tavg-u-hxy-u.mon.GLB", + "atmos.rsuscs.tavg-u-hxy-u.mon.GLB", + "atmos.rsut.tavg-u-hxy-u.mon.GLB", + "atmos.rsutcs.tavg-u-hxy-u.mon.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.day.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.mon.GLB", + "atmos.sftlf.ti-u-hxy-u.fx.GLB", + "atmos.ta.tavg-p19-hxy-air.day.GLB", + "atmos.ta.tavg-p19-hxy-air.mon.GLB", + "atmos.ta.tpt-p3-hxy-air.6hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.day.GLB", + "atmos.tas.tavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tmax-h2m-hxy-u.day.GLB", + "atmos.tas.tmaxavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tmin-h2m-hxy-u.day.GLB", + "atmos.tas.tminavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tpt-h2m-hxy-u.3hr.GLB", + "atmos.tauu.tavg-u-hxy-u.mon.GLB", + "atmos.tauv.tavg-u-hxy-u.mon.GLB", + "atmos.ts.tavg-u-hxy-u.mon.GLB", + "atmos.ua.tavg-p19-hxy-air.day.GLB", + "atmos.ua.tavg-p19-hxy-air.mon.GLB", + "atmos.ua.tpt-p3-hxy-air.6hr.GLB", + "atmos.uas.tavg-h10m-hxy-u.day.GLB", + "atmos.uas.tavg-h10m-hxy-u.mon.GLB", + "atmos.uas.tpt-h10m-hxy-u.3hr.GLB", + "atmos.va.tavg-p19-hxy-air.day.GLB", + "atmos.va.tavg-p19-hxy-air.mon.GLB", + "atmos.va.tpt-p3-hxy-air.6hr.GLB", + "atmos.vas.tavg-h10m-hxy-u.day.GLB", + "atmos.vas.tavg-h10m-hxy-u.mon.GLB", + "atmos.vas.tpt-h10m-hxy-u.3hr.GLB", + "atmos.wap.tavg-p19-hxy-air.mon.GLB", + "atmos.wap.tavg-p19-hxy-u.day.GLB", + "atmos.zg.tavg-p19-hxy-air.day.GLB", + "atmos.zg.tavg-p19-hxy-air.mon.GLB", + "land.evspsblsoi.tavg-u-hxy-lnd.mon.GLB", + "land.evspsblveg.tavg-u-hxy-lnd.mon.GLB", + "land.lai.tavg-u-hxy-lnd.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.mon.GLB", + "land.mrros.tavg-u-hxy-lnd.mon.GLB", + "land.mrso.tavg-u-hxy-lnd.mon.GLB", + "land.mrsofc.ti-u-hxy-lnd.fx.GLB", + "land.mrsol.tavg-d10cm-hxy-lnd.mon.GLB", + "land.orog.ti-u-hxy-u.fx.GLB", + "land.rootd.ti-u-hxy-lnd.fx.GLB", + "land.sftgif.ti-u-hxy-u.fx.GLB", + "land.slthick.ti-sl-hxy-lnd.fx.GLB", + "landIce.mrfso.tavg-u-hxy-lnd.mon.GLB", + "landIce.snc.tavg-u-hxy-lnd.mon.GLB", + "landIce.snw.tavg-u-hxy-lnd.mon.GLB", + "ocean.areacello.ti-u-hxy-u.fx.GLB", + "ocean.basin.ti-u-hxy-u.fx.GLB", + "ocean.bigthetao.tavg-ol-hxy-sea.mon.GLB", + "ocean.deptho.ti-u-hxy-sea.fx.GLB", + "ocean.hfds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfgeou.ti-u-hxy-sea.fx.GLB", + "ocean.masscello.tavg-ol-hxy-sea.mon.GLB", + "ocean.masscello.ti-ol-hxy-sea.fx.GLB", + "ocean.mlotst.tavg-u-hxy-sea.mon.GLB", + "ocean.sftof.ti-u-hxy-u.fx.GLB", + "ocean.so.tavg-ol-hxy-sea.mon.GLB", + "ocean.sos.tavg-u-hxy-sea.day.GLB", + "ocean.sos.tavg-u-hxy-sea.mon.GLB", + "ocean.tauuo.tavg-u-hxy-sea.mon.GLB", + "ocean.tauvo.tavg-u-hxy-sea.mon.GLB", + "ocean.thetao.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcello.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcello.ti-ol-hxy-sea.fx.GLB", + "ocean.tos.tavg-u-hxy-sea.day.GLB", + "ocean.tos.tavg-u-hxy-sea.mon.GLB", + "ocean.umo.tavg-ol-hxy-sea.mon.GLB", + "ocean.uo.tavg-ol-hxy-sea.mon.GLB", + "ocean.vmo.tavg-ol-hxy-sea.mon.GLB", + "ocean.vo.tavg-ol-hxy-sea.mon.GLB", + "ocean.wmo.tavg-ol-hxy-sea.mon.GLB", + "ocean.wo.tavg-ol-hxy-sea.mon.GLB", + "ocean.zos.tavg-u-hxy-sea.day.GLB", + "ocean.zos.tavg-u-hxy-sea.mon.GLB", + "ocean.zostoga.tavg-u-hm-sea.mon.GLB", + "seaIce.siconc.tavg-u-hxy-u.day.GLB", + "seaIce.siconc.tavg-u-hxy-u.mon.GLB", + "seaIce.simass.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-si.mon.GLB", + "seaIce.sitimefrac.tavg-u-hxy-sea.mon.GLB", + "seaIce.siu.tavg-u-hxy-si.mon.GLB", + "seaIce.siv.tavg-u-hxy-si.mon.GLB", + "seaIce.snd.tavg-u-hxy-sn.mon.GLB", + "seaIce.ts.tavg-u-hxy-si.mon.GLB" + ], + "High": [ + "aerosol.depdust.tavg-u-hxy-u.mon.GLB", + "atmos.co2.tavg-h2m-hxy-u.mon.GLB", + "atmos.hfls.tavg-u-hxy-u.day.GLB", + "atmos.hfss.tavg-u-hxy-u.day.GLB", + "atmos.huss.tavg-h2m-hxy-u.6hr.GLB", + "atmos.intuadse.tavg-u-hxy-u.day.GLB", + "atmos.intuadse.tavg-u-hxy-u.mon.GLB", + "atmos.intuaw.tavg-u-hxy-u.day.GLB", + "atmos.intuaw.tavg-u-hxy-u.mon.GLB", + "atmos.intvadse.tavg-u-hxy-u.day.GLB", + "atmos.intvadse.tavg-u-hxy-u.mon.GLB", + "atmos.intvaw.tavg-u-hxy-u.day.GLB", + "atmos.intvaw.tavg-u-hxy-u.mon.GLB", + "atmos.pr17O.tavg-u-hxy-u.mon.GLB", + "atmos.pr18O.tavg-u-hxy-u.mon.GLB", + "atmos.pr2h.tavg-u-hxy-u.mon.GLB", + "atmos.prra.tavg-u-hxy-lnd.day.GLB", + "atmos.prra.tavg-u-hxy-u.6hr.GLB", + "atmos.prra.tavg-u-hxy-u.mon.GLB", + "atmos.prsn.tavg-u-hxy-u.6hr.GLB", + "atmos.prsn.tavg-u-hxy-u.day.GLB", + "atmos.prsn18O.tavg-u-hxy-u.mon.GLB", + "atmos.prsn2h.tavg-u-hxy-u.mon.GLB", + "atmos.ps.tavg-u-hxy-u.6hr.GLB", + "atmos.psl.tpt-u-hxy-u.1hr.GLB", + "atmos.rlds.tavg-u-hxy-u.6hr.GLB", + "atmos.rlds.tavg-u-hxy-u.day.GLB", + "atmos.rlus.tavg-u-hxy-u.day.GLB", + "atmos.rlut.tavg-u-hxy-u.day.GLB", + "atmos.rsds.tavg-u-hxy-u.6hr.GLB", + "atmos.rsdt.tavg-u-hxy-u.day.GLB", + "atmos.rsus.tavg-u-hxy-u.day.GLB", + "atmos.rsut.tavg-u-hxy-u.day.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.6hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.6hr.GLB", + "atmos.tdps.tavg-h2m-hxy-u.mon.GLB", + "atmos.ts.tavg-u-hxy-u.6hr.GLB", + "atmos.ts.tavg-u-hxy-u.day.GLB", + "atmos.ua.tpt-h100m-hxy-u.1hr.GLB", + "atmos.uas.tpt-h10m-hxy-u.1hr.GLB", + "atmos.va.tpt-h100m-hxy-u.1hr.GLB", + "atmos.vas.tpt-h10m-hxy-u.1hr.GLB", + "land.burntFractionAll.tavg-u-hxy-u.mon.GLB", + "land.cSoil.tavg-sl-hxy-lnd.mon.GLB", + "land.cSoil.tavg-u-hxy-lnd.mon.GLB", + "land.depthl.ti-u-hxy-u.fx.GLB", + "land.depthsl.ti-u-hxy-u.fx.GLB", + "land.mrro.tavg-u-hxy-lnd.day.GLB", + "land.mrros.tavg-u-hxy-lnd.day.GLB", + "land.mrsfl.tavg-sl-hxy-lnd.day.GLB", + "land.mrsfl.tavg-sl-hxy-lnd.mon.GLB", + "land.mrsll.tavg-sl-hxy-lnd.day.GLB", + "land.mrsll.tavg-sl-hxy-lnd.mon.GLB", + "land.mrsol.tavg-sl-hxy-lnd.day.GLB", + "land.mrsol.tavg-sl-hxy-lnd.mon.GLB", + "land.rsds.tavg-u-hxy-lnd.mon.GLB", + "land.rsds.tavg-u-hxy-sn.mon.GLB", + "land.rsus.tavg-u-hxy-lnd.mon.GLB", + "land.rsus.tavg-u-hxy-sn.mon.GLB", + "land.sftgif.tavg-u-hxy-u.mon.GLB", + "land.sftlaf.ti-u-hxy-u.fx.GLB", + "land.tsl.tavg-sl-hxy-lnd.day.GLB", + "land.tsl.tavg-sl-hxy-lnd.mon.GLB", + "landIce.acabf.tavg-u-hxy-is.mon.GLB", + "landIce.hfls.tavg-u-hxy-is.mon.GLB", + "landIce.hfss.tavg-u-hxy-is.mon.GLB", + "landIce.icem.tavg-u-hxy-is.mon.GLB", + "landIce.litemptop.tavg-u-hxy-is.mon.GLB", + "landIce.lithk.ti-u-hxy-u.fx.GLB", + "landIce.mrro.tavg-u-hxy-is.mon.GLB", + "landIce.orog.tavg-u-hxy-is.mon.GLB", + "landIce.prra.tavg-u-hxy-is.mon.GLB", + "landIce.prsn.tavg-u-hxy-is.mon.GLB", + "landIce.rlds.tavg-u-hxy-is.mon.GLB", + "landIce.rlus.tavg-u-hxy-is.mon.GLB", + "landIce.rsds.tavg-u-hxy-is.mon.GLB", + "landIce.rsus.tavg-u-hxy-is.mon.GLB", + "landIce.sbl.tavg-u-hxy-is.mon.GLB", + "landIce.sbl.tavg-u-hxy-lnd.mon.GLB", + "landIce.sbl.tavg-u-hxy-u.mon.GLB", + "landIce.sftflf.tavg-u-hxy-u.mon.GLB", + "landIce.sftflf.ti-u-hxy-u.fx.GLB", + "landIce.sftgrf.tavg-u-hxy-u.mon.GLB", + "landIce.sftgrf.ti-u-hxy-u.fx.GLB", + "landIce.snc.tavg-u-hxy-is.mon.GLB", + "landIce.snd.tavg-u-hxy-lnd.mon.GLB", + "landIce.snicem.tavg-u-hxy-is.mon.GLB", + "landIce.snm.tavg-u-hxy-is.mon.GLB", + "landIce.snm.tavg-u-hxy-lnd.mon.GLB", + "landIce.snrefr.tavg-u-hxy-is.mon.GLB", + "landIce.tas.tavg-u-hxy-is.mon.GLB", + "landIce.ts.tavg-u-hxy-is.mon.GLB", + "landIce.tsn.tavg-u-hxy-is.mon.GLB", + "landIce.tsn.tavg-u-hxy-lnd.mon.GLB", + "ocean.absscint.tavg-op4-hxy-sea.mon.GLB", + "ocean.agessc.tavg-ol-hxy-sea.mon.GLB", + "ocean.bigthetao.tavg-ol-hm-sea.mon.GLB", + "ocean.bigthetao.tavg-ol-hxy-sea.dec.GLB", + "ocean.bigthetao.tavg-op20bar-hxy-sea.day.GLB", + "ocean.chcint.tavg-op4-hxy-sea.mon.GLB", + "ocean.ficeberg.tavg-u-hxy-sea.mon.GLB", + "ocean.flandice.tavg-u-hxy-sea.mon.GLB", + "ocean.hfbasin.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpmadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpmdiff.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpsmadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfgeou.tavg-u-hxy-sea.mon.GLB", + "ocean.hfx.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfx.tavg-u-hxy-sea.day.GLB", + "ocean.hfx.tavg-u-hxy-sea.mon.GLB", + "ocean.hfy.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfy.tavg-u-hxy-sea.day.GLB", + "ocean.hfy.tavg-u-hxy-sea.mon.GLB", + "ocean.htovgyre.tavg-u-hyb-sea.mon.GLB", + "ocean.htovovrt.tavg-u-hyb-sea.mon.GLB", + "ocean.masscello.tavg-ol-hxy-sea.dec.GLB", + "ocean.masso.tavg-u-hm-sea.dec.GLB", + "ocean.masso.tavg-u-hm-sea.mon.GLB", + "ocean.mlotst.tavg-u-hxy-sea.day.GLB", + "ocean.mlotst.tmax-u-hxy-sea.mon.GLB", + "ocean.mlotst.tmin-u-hxy-sea.mon.GLB", + "ocean.mpw.tavg-u-hxy-sea.mon.GLB", + "ocean.mpw.tpt-u-hxy-sea.3hr.GLB", + "ocean.mpwswell.tavg-u-hxy-sea.mon.GLB", + "ocean.mpwswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.mpwwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.mpwwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.msftbarot.tavg-u-hxy-sea.mon.GLB", + "ocean.msftm.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftm.tavg-rho-hyb-sea.mon.GLB", + "ocean.msfty.tavg-ol-ht-sea.mon.GLB", + "ocean.msfty.tavg-rho-ht-sea.mon.GLB", + "ocean.obvfsq.tavg-ol-hxy-sea.mon.GLB", + "ocean.opottemptend.tavg-ol-hxy-sea.yr.GLB", + "ocean.pbo.tavg-u-hxy-sea.mon.GLB", + "ocean.pfscint.tavg-op4-hxy-sea.mon.GLB", + "ocean.phcint.tavg-op4-hxy-sea.mon.GLB", + "ocean.pso.tavg-u-hxy-sea.mon.GLB", + "ocean.rsds.tavg-u-hxy-ifs.mon.GLB", + "ocean.rsus.tavg-u-hxy-ifs.mon.GLB", + "ocean.scint.tavg-op4-hxy-sea.mon.GLB", + "ocean.sduo.tavg-u-hxy-sea.mon.GLB", + "ocean.sduo.tpt-u-hxy-sea.3hr.GLB", + "ocean.sdvo.tavg-u-hxy-sea.mon.GLB", + "ocean.sdvo.tpt-u-hxy-sea.3hr.GLB", + "ocean.sfx.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfx.tavg-u-hxy-sea.mon.GLB", + "ocean.sfy.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfy.tavg-u-hxy-sea.mon.GLB", + "ocean.sltbasin.tavg-u-hyb-sea.mon.GLB", + "ocean.sltovgyre.tavg-u-hyb-sea.mon.GLB", + "ocean.sltovovrt.tavg-u-hyb-sea.mon.GLB", + "ocean.so.tavg-ol-hm-sea.mon.GLB", + "ocean.so.tavg-ol-hxy-sea.dec.GLB", + "ocean.sob.tavg-u-hxy-sea.mon.GLB", + "ocean.sos.tavg-u-hm-sea.mon.GLB", + "ocean.sw17O.tavg-ol-hxy-sea.mon.GLB", + "ocean.sw18O.tavg-ol-hxy-sea.mon.GLB", + "ocean.sw2H.tavg-ol-hxy-sea.mon.GLB", + "ocean.swh.tavg-u-hxy-sea.mon.GLB", + "ocean.swh.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhmax.tmax-u-hxy-sea.mon.GLB", + "ocean.swhmax.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhswell.tavg-u-hxy-sea.mon.GLB", + "ocean.swhswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.swhwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.tauuo.tavg-u-hxy-sea.dec.GLB", + "ocean.tauvo.tavg-u-hxy-sea.dec.GLB", + "ocean.thetao.tavg-ol-hm-sea.mon.GLB", + "ocean.thetao.tavg-ol-hxy-sea.dec.GLB", + "ocean.thetao.tavg-op20bar-hxy-sea.day.GLB", + "ocean.thkcello.tavg-ol-hxy-sea.dec.GLB", + "ocean.tob.tavg-u-hxy-sea.mon.GLB", + "ocean.tos.tavg-u-hm-sea.mon.GLB", + "ocean.tos.tpt-u-hxy-sea.3hr.GLB", + "ocean.tossq.tavg-u-hxy-sea.day.GLB", + "ocean.uos.tavg-u-hxy-sea.day.GLB", + "ocean.volcello.tavg-ol-hxy-sea.dec.GLB", + "ocean.volcello.tavg-ol-hxy-sea.mon.GLB", + "ocean.volcello.tavg-ol-hxy-sea.yr.GLB", + "ocean.volcello.ti-ol-hxy-sea.fx.GLB", + "ocean.volo.tavg-u-hm-sea.dec.GLB", + "ocean.volo.tavg-u-hm-sea.mon.GLB", + "ocean.vos.tavg-u-hxy-sea.day.GLB", + "ocean.wdir.tavg-u-hxy-sea.mon.GLB", + "ocean.wdir.tpt-u-hxy-sea.3hr.GLB", + "ocean.wdirswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wdirswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wdirwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wdirwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.wfcorr.tavg-u-hxy-sea.mon.GLB", + "ocean.wfo.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdir.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdir.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpdirswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdirswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpdirwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdirwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpp.tavg-u-hxy-sea.mon.GLB", + "ocean.wpp.tpt-u-hxy-sea.3hr.GLB", + "ocean.wppswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wppswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wppwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wppwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.zossq.tavg-u-hxy-sea.mon.GLB", + "ocean.zostoga.tavg-u-hm-sea.day.GLB", + "seaIce.evspsbl.tavg-u-hxy-si.mon.GLB", + "seaIce.prra.tavg-u-hxy-si.mon.GLB", + "seaIce.prsn.tavg-u-hxy-si.mon.GLB", + "seaIce.rlds.tavg-u-hxy-si.day.GLB", + "seaIce.rlds.tavg-u-hxy-si.mon.GLB", + "seaIce.rlus.tavg-u-hxy-si.day.GLB", + "seaIce.rlus.tavg-u-hxy-si.mon.GLB", + "seaIce.rsds.tavg-u-hxy-si.day.GLB", + "seaIce.rsds.tavg-u-hxy-si.mon.GLB", + "seaIce.rsus.tavg-u-hxy-si.day.GLB", + "seaIce.rsus.tavg-u-hxy-si.mon.GLB", + "seaIce.sbl.tavg-u-hxy-si.mon.GLB", + "seaIce.siage.tavg-u-hxy-si.day.GLB", + "seaIce.siarea.tavg-u-hm-u.mon.NH", + "seaIce.siarea.tavg-u-hm-u.mon.SH", + "seaIce.siareaacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.siconca.tavg-u-hxy-u.day.GLB", + "seaIce.siconca.tavg-u-hxy-u.mon.GLB", + "seaIce.sidconcdyn.tavg-u-hxy-sea.mon.GLB", + "seaIce.sidconcth.tavg-u-hxy-sea.mon.GLB", + "seaIce.sidmassdyn.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthsi.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthwat.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmeltbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmeltlat.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmelttop.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassth.tavg-u-hxy-si.mon.GLB", + "seaIce.sieqthick.tavg-u-hxy-si.mon.GLB", + "seaIce.siextent.tavg-u-hm-u.mon.NH", + "seaIce.siextent.tavg-u-hm-u.mon.SH", + "seaIce.siflcondbot.tavg-u-hxy-si.day.GLB", + "seaIce.siflcondbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflcondtop.tavg-u-hxy-si.day.GLB", + "seaIce.siflcondtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sifllattop.tavg-u-hxy-si.day.GLB", + "seaIce.sifllattop.tavg-u-hxy-si.mon.GLB", + "seaIce.siflsensbot.tavg-u-hxy-si.day.GLB", + "seaIce.siflsensbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflsenstop.tavg-u-hxy-si.day.GLB", + "seaIce.siflsenstop.tavg-u-hxy-si.mon.GLB", + "seaIce.siflswdbot.tavg-u-hxy-si.day.GLB", + "seaIce.siflswdbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sihc.tavg-u-hxy-sea.day.GLB", + "seaIce.sihc.tavg-u-hxy-sea.mon.GLB", + "seaIce.siitdconc.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdsnconc.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdsnthick.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdthick.tavg-u-hxy-si.mon.GLB", + "seaIce.simassacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.simpconc.tavg-u-hxy-si.mon.GLB", + "seaIce.sirdgconc.tavg-u-hxy-si.mon.GLB", + "seaIce.sisaltmass.tavg-u-hxy-si.mon.GLB", + "seaIce.sisndmassdyn.tavg-u-hxy-si.mon.GLB", + "seaIce.sisndmasssi.tavg-u-hxy-si.mon.GLB", + "seaIce.sisndmasswind.tavg-u-hxy-si.mon.GLB", + "seaIce.sisnhc.tavg-u-hxy-si.day.GLB", + "seaIce.sisnhc.tavg-u-hxy-si.mon.GLB", + "seaIce.sisnmass.tavg-u-hm-u.mon.NH", + "seaIce.sisnmass.tavg-u-hm-u.mon.SH", + "seaIce.sisnmassacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.sispeed.tavg-u-hxy-si.day.GLB", + "seaIce.sispeed.tavg-u-hxy-si.mon.GLB", + "seaIce.sistressave.tpt-u-hxy-si.mon.GLB", + "seaIce.sistressmax.tpt-u-hxy-si.mon.GLB", + "seaIce.sistrxdtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sistrxubot.tavg-u-hxy-si.mon.GLB", + "seaIce.sistrydtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sistryubot.tavg-u-hxy-si.mon.GLB", + "seaIce.sitempsnic.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-si.day.GLB", + "seaIce.sitimefrac.tavg-u-hxy-sea.day.GLB", + "seaIce.siu.tavg-u-hxy-si.day.GLB", + "seaIce.siv.tavg-u-hxy-si.day.GLB", + "seaIce.sivol.tavg-u-hm-u.mon.NH", + "seaIce.sivol.tavg-u-hm-u.mon.SH", + "seaIce.snc.tavg-u-hxy-si.mon.GLB", + "seaIce.snd.tavg-u-hxy-sn.day.GLB", + "seaIce.snm.tavg-u-hxy-si.mon.GLB", + "seaIce.snw.tavg-u-hxy-si.mon.GLB", + "seaIce.ts.tavg-u-hxy-si.day.GLB" + ], + "Medium": [ + "atmos.hfls.tavg-u-hxy-is.mon.ATA", + "atmos.hfls.tavg-u-hxy-is.mon.GRL", + "atmos.hfss.tavg-u-hxy-is.mon.ATA", + "atmos.hfss.tavg-u-hxy-is.mon.GRL", + "atmos.prra.tavg-u-hxy-is.mon.ATA", + "atmos.prra.tavg-u-hxy-is.mon.GRL", + "atmos.prsn.tavg-u-hxy-is.mon.ATA", + "atmos.prsn.tavg-u-hxy-is.mon.GRL", + "atmos.rlds.tavg-u-hxy-is.mon.ATA", + "atmos.rlds.tavg-u-hxy-is.mon.GRL", + "atmos.rlus.tavg-u-hxy-is.mon.ATA", + "atmos.rlus.tavg-u-hxy-is.mon.GRL", + "atmos.rsds.tavg-u-hxy-is.mon.ATA", + "atmos.rsds.tavg-u-hxy-is.mon.GRL", + "atmos.rsus.tavg-u-hxy-is.mon.ATA", + "atmos.rsus.tavg-u-hxy-is.mon.GRL", + "atmos.tas.tavg-h2m-hm-is.mon.ATA", + "atmos.tas.tavg-h2m-hm-is.mon.GRL", + "atmos.ts.tavg-u-hxy-is.mon.ATA", + "atmos.ts.tavg-u-hxy-is.mon.GRL", + "land.areacellg.ti-u-hxy-u.fx.ATA", + "land.areacellg.ti-u-hxy-u.fx.GRL", + "land.orog.tavg-u-hxy-is.mon.ATA", + "land.orog.tavg-u-hxy-is.mon.GRL", + "land.orog.tavg-u-hxy-is.yr.ATA", + "land.orog.tavg-u-hxy-is.yr.GRL", + "land.sftgif.tavg-u-hxy-u.yr.ATA", + "land.sftgif.tavg-u-hxy-u.yr.GRL", + "landIce.acabf.tavg-u-hxy-is.mon.ATA", + "landIce.acabf.tavg-u-hxy-is.mon.GRL", + "landIce.acabf.tavg-u-hxy-is.yr.ATA", + "landIce.acabf.tavg-u-hxy-is.yr.GRL", + "landIce.hfgeoubed.tavg-u-hxy-gis.yr.ATA", + "landIce.hfgeoubed.tavg-u-hxy-gis.yr.GRL", + "landIce.hfgeoubed.ti-u-hxy-gis.fx.ATA", + "landIce.hfgeoubed.ti-u-hxy-gis.fx.GRL", + "landIce.iareafl.tavg-u-hm-fis.yr.ATA", + "landIce.iareafl.tavg-u-hm-fis.yr.GRL", + "landIce.iareagr.tavg-u-hm-gis.yr.ATA", + "landIce.iareagr.tavg-u-hm-gis.yr.GRL", + "landIce.icem.tavg-u-hxy-is.mon.ATA", + "landIce.icem.tavg-u-hxy-is.mon.GRL", + "landIce.libmassbf.tavg-u-hxy-fis.mon.ATA", + "landIce.libmassbf.tavg-u-hxy-fis.mon.GRL", + "landIce.libmassbf.tavg-u-hxy-fis.yr.ATA", + "landIce.libmassbf.tavg-u-hxy-fis.yr.GRL", + "landIce.libmassbf.tavg-u-hxy-gis.mon.ATA", + "landIce.libmassbf.tavg-u-hxy-gis.mon.GRL", + "landIce.libmassbf.tavg-u-hxy-gis.yr.ATA", + "landIce.libmassbf.tavg-u-hxy-gis.yr.GRL", + "landIce.licalvf.tavg-u-hxy-is.mon.ATA", + "landIce.licalvf.tavg-u-hxy-is.mon.GRL", + "landIce.licalvf.tavg-u-hxy-is.yr.ATA", + "landIce.licalvf.tavg-u-hxy-is.yr.GRL", + "landIce.lifmassbf.tavg-u-hxy-is.mon.ATA", + "landIce.lifmassbf.tavg-u-hxy-is.mon.GRL", + "landIce.lifmassbf.tavg-u-hxy-is.yr.ATA", + "landIce.lifmassbf.tavg-u-hxy-is.yr.GRL", + "landIce.lim.tavg-u-hm-is.yr.ATA", + "landIce.lim.tavg-u-hm-is.yr.GRL", + "landIce.limnsw.tavg-u-hm-is.yr.ATA", + "landIce.limnsw.tavg-u-hm-is.yr.GRL", + "landIce.litempbot.tavg-u-hxy-fis.mon.ATA", + "landIce.litempbot.tavg-u-hxy-fis.mon.GRL", + "landIce.litempbot.tavg-u-hxy-fis.yr.ATA", + "landIce.litempbot.tavg-u-hxy-fis.yr.GRL", + "landIce.litempbot.tavg-u-hxy-gis.mon.ATA", + "landIce.litempbot.tavg-u-hxy-gis.mon.GRL", + "landIce.litempbot.tavg-u-hxy-gis.yr.ATA", + "landIce.litempbot.tavg-u-hxy-gis.yr.GRL", + "landIce.litemptop.tavg-u-hxy-is.mon.ATA", + "landIce.litemptop.tavg-u-hxy-is.mon.GRL", + "landIce.litemptop.tavg-u-hxy-is.yr.ATA", + "landIce.litemptop.tavg-u-hxy-is.yr.GRL", + "landIce.lithk.tavg-u-hxy-is.yr.ATA", + "landIce.lithk.tavg-u-hxy-is.yr.GRL", + "landIce.lithk.ti-u-hxy-is.fx.ATA", + "landIce.lithk.ti-u-hxy-is.fx.GRL", + "landIce.modelcellareai.tavg-u-hxy-u.yr.ATA", + "landIce.modelcellareai.tavg-u-hxy-u.yr.GRL", + "landIce.mrroLi.tavg-u-hxy-is.mon.ATA", + "landIce.mrroLi.tavg-u-hxy-is.mon.GRL", + "landIce.sbl.tavg-u-hxy-is.mon.ATA", + "landIce.sbl.tavg-u-hxy-is.mon.GRL", + "landIce.sftflf.tavg-u-hxy-u.yr.ATA", + "landIce.sftflf.tavg-u-hxy-u.yr.GRL", + "landIce.sftgrf.tavg-u-hxy-u.yr.ATA", + "landIce.sftgrf.tavg-u-hxy-u.yr.GRL", + "landIce.snc.tavg-u-hxy-is.mon.ATA", + "landIce.snc.tavg-u-hxy-is.mon.GRL", + "landIce.snc.tavg-u-hxy-is.yr.ATA", + "landIce.snc.tavg-u-hxy-is.yr.GRL", + "landIce.snicem.tavg-u-hxy-is.mon.ATA", + "landIce.snicem.tavg-u-hxy-is.mon.GRL", + "landIce.snm.tavg-u-hxy-is.mon.ATA", + "landIce.snm.tavg-u-hxy-is.mon.GRL", + "landIce.snrefr.tavg-u-hxy-is.mon.ATA", + "landIce.snrefr.tavg-u-hxy-is.mon.GRL", + "landIce.strbasemag.tavg-u-hxy-is.yr.ATA", + "landIce.strbasemag.tavg-u-hxy-is.yr.GRL", + "landIce.tendacabf.tavg-u-hm-is.yr.ATA", + "landIce.tendacabf.tavg-u-hm-is.yr.GRL", + "landIce.tendlibmassbf.tavg-u-hm-is.yr.ATA", + "landIce.tendlibmassbf.tavg-u-hm-is.yr.GRL", + "landIce.tendlicalvf.tavg-u-hm-is.yr.ATA", + "landIce.tendlicalvf.tavg-u-hm-is.yr.GRL", + "landIce.topg.tavg-u-hxy-gis.yr.ATA", + "landIce.topg.tavg-u-hxy-gis.yr.GRL", + "landIce.topg.ti-u-hxy-gis.fx.ATA", + "landIce.topg.ti-u-hxy-gis.fx.GRL", + "landIce.tsn.tavg-u-hxy-is.mon.ATA", + "landIce.tsn.tavg-u-hxy-is.mon.GRL", + "landIce.xvelbase.tavg-u-hxy-is.yr.ATA", + "landIce.xvelbase.tavg-u-hxy-is.yr.GRL", + "landIce.xvelmean.tavg-u-hxy-is.yr.ATA", + "landIce.xvelmean.tavg-u-hxy-is.yr.GRL", + "landIce.xvelsurf.tavg-u-hxy-is.yr.ATA", + "landIce.xvelsurf.tavg-u-hxy-is.yr.GRL", + "landIce.yvelbase.tavg-u-hxy-is.yr.ATA", + "landIce.yvelbase.tavg-u-hxy-is.yr.GRL", + "landIce.yvelmean.tavg-u-hxy-is.yr.ATA", + "landIce.yvelmean.tavg-u-hxy-is.yr.GRL", + "landIce.yvelsurf.tavg-u-hxy-is.yr.ATA", + "landIce.yvelsurf.tavg-u-hxy-is.yr.GRL", + "landIce.zvelbase.tavg-u-hxy-is.yr.ATA", + "landIce.zvelbase.tavg-u-hxy-is.yr.GRL", + "landIce.zvelsurf.tavg-u-hxy-is.yr.ATA", + "landIce.zvelsurf.tavg-u-hxy-is.yr.GRL", + "ocean.evspsbl.tavg-u-hxy-ifs.mon.GLB", + "ocean.ficeberg.tavg-ol-hxy-sea.mon.GLB", + "ocean.friver.tavg-u-hxy-sea.mon.GLB", + "ocean.hfacrossline.tavg-u-ht-sea.mon.GLB", + "ocean.hfevapds.tavg-u-hxy-ifs.mon.GLB", + "ocean.hfibthermds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfibthermds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfrainds.tavg-u-hxy-ifs.mon.GLB", + "ocean.hfrunoffds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfrunoffds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfsnthermds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfsnthermds.tavg-u-hxy-sea.mon.GLB", + "ocean.mfo.tavg-u-ht-sea.mon.GLB", + "ocean.sfacrossline.tavg-u-ht-sea.mon.GLB", + "ocean.sfdsi.tavg-u-hxy-sea.mon.GLB", + "ocean.sfriver.tavg-u-hxy-sea.mon.GLB", + "ocean.siflfwbot.tavg-u-hxy-sea.mon.GLB", + "ocean.so.tavg-ol-hxy-sea.day.GLB", + "ocean.tnkebto.tavg-u-hxy-sea.yr.GLB", + "ocean.vsf.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfcorr.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfevap.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfpr.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfriver.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfsit.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.arag.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.arag.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.calc.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.calc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chl.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.dissic.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.o2.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.ph.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.talk.tavg-ol-hxy-sea.mon.GLB", + "seaIce.sfdsi.tavg-u-hxy-si.mon.GLB", + "seaIce.siage.tavg-u-hxy-si.mon.GLB", + "seaIce.siarea.tavg-u-hm-u.day.NH", + "seaIce.siarea.tavg-u-hm-u.day.SH", + "seaIce.sicompstren.tavg-u-hxy-si.mon.GLB", + "seaIce.sidivvel.tpt-u-hxy-si.mon.GLB", + "seaIce.sidmasstranx.tavg-u-hxy-u.mon.GLB", + "seaIce.sidmasstrany.tavg-u-hxy-u.mon.GLB", + "seaIce.sidragbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidragtop.tavg-u-hxy-si.mon.GLB", + "seaIce.siextent.tavg-u-hm-u.day.NH", + "seaIce.siextent.tavg-u-hm-u.day.SH", + "seaIce.sifb.tavg-u-hxy-si.day.GLB", + "seaIce.sifb.tavg-u-hxy-si.mon.GLB", + "seaIce.siflfwbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflfwdrain.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcecoriolx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcecorioly.tavg-u-hxy-si.mon.GLB", + "seaIce.siforceintstrx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforceintstry.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcetiltx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcetilty.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdconc.tavg-u-hxy-si.day.GLB", + "seaIce.siitdsnconc.tavg-u-hxy-si.day.GLB", + "seaIce.siitdsnthick.tavg-u-hxy-si.day.GLB", + "seaIce.siitdthick.tavg-u-hxy-si.day.GLB", + "seaIce.simpconc.tavg-u-hxy-si.day.GLB", + "seaIce.simpeffconc.tavg-u-hxy-si.day.GLB", + "seaIce.simpeffconc.tavg-u-hxy-si.mon.GLB", + "seaIce.simprefrozen.tavg-u-hxy-simp.day.GLB", + "seaIce.simprefrozen.tavg-u-hxy-simp.mon.GLB", + "seaIce.simpthick.tavg-u-hxy-si.day.GLB", + "seaIce.simpthick.tavg-u-hxy-simp.mon.GLB", + "seaIce.sirdgconc.tavg-u-hxy-si.day.GLB", + "seaIce.sisali.tavg-u-hxy-si.day.GLB", + "seaIce.sisali.tavg-u-hxy-si.mon.GLB", + "seaIce.sisaltmass.tavg-u-hxy-si.day.GLB", + "seaIce.sishearvel.tpt-u-hxy-si.mon.GLB", + "seaIce.sisnmass.tavg-u-hm-u.day.NH", + "seaIce.sisnmass.tavg-u-hm-u.day.SH", + "seaIce.sitempbot.tavg-u-hxy-si.day.GLB", + "seaIce.sitempbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sitempsnic.tavg-u-hxy-si.day.GLB", + "seaIce.sithick.tavg-u-hxy-sir.day.GLB", + "seaIce.sithick.tavg-u-hxy-sir.mon.GLB", + "seaIce.sivol.tavg-u-hm-u.day.NH", + "seaIce.sivol.tavg-u-hm-u.day.SH" + ], + "Low": [ + "ocean.difmxybo.tavg-ol-hxy-sea.yr.GLB", + "ocean.difmxylo.tavg-ol-hxy-sea.yr.GLB", + "ocean.diftrblo.tavg-ol-hxy-sea.yr.GLB", + "ocean.diftrelo.tavg-ol-hxy-sea.yr.GLB", + "ocean.difvho.tavg-ol-hxy-sea.yr.GLB", + "ocean.difvso.tavg-ol-hxy-sea.yr.GLB", + "ocean.dispkexyfo.tavg-u-hxy-sea.yr.GLB", + "ocean.dxto.ti-u-hxy-u.fx.GLB", + "ocean.dxuo.ti-u-hxy-u.fx.GLB", + "ocean.dxvo.ti-u-hxy-u.fx.GLB", + "ocean.dyto.ti-u-hxy-u.fx.GLB", + "ocean.dyuo.ti-u-hxy-u.fx.GLB", + "ocean.dyvo.ti-u-hxy-u.fx.GLB", + "ocean.mlotstsq.tavg-u-hxy-sea.mon.GLB", + "ocean.msftmmpa.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftmmpa.tavg-rho-hyb-sea.mon.GLB", + "ocean.msftmsmpa.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftypa.tavg-ol-ht-sea.mon.GLB", + "ocean.msftypa.tavg-rho-ht-sea.mon.GLB", + "ocean.ocontempdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontempmint.tavg-u-hxy-sea.yr.GLB", + "ocean.ocontemppadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemppmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemppsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemprmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemptend.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottempdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottempmint.tavg-u-hxy-sea.yr.GLB", + "ocean.opottemppadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemppmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemppsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemprmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemptend.tavg-ol-hxy-sea.dec.GLB", + "ocean.osaltdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpsmadvect.tavg-ol-hxy-sea.mon.GLB", + "ocean.osaltpsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltrmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osalttend.tavg-ol-hxy-sea.yr.GLB", + "ocean.rsdoabsorb.tavg-ol-hxy-sea.yr.GLB", + "ocean.somint.tavg-u-hxy-sea.yr.GLB", + "ocean.sossq.tavg-u-hxy-sea.mon.GLB", + "ocean.thkcelluo.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcellvo.tavg-ol-hxy-sea.mon.GLB", + "ocean.tnpeo.tavg-u-hxy-sea.yr.GLB", + "ocean.tossq.tavg-u-hxy-sea.mon.GLB" + ] + }, + "scenariomip3": { + "Core": [ + "atmos.areacella.ti-u-hxy-u.fx.GLB", + "atmos.cl.tavg-al-hxy-u.mon.GLB", + "atmos.cli.tavg-al-hxy-u.mon.GLB", + "atmos.clivi.tavg-u-hxy-u.mon.GLB", + "atmos.clt.tavg-u-hxy-u.day.GLB", + "atmos.clt.tavg-u-hxy-u.mon.GLB", + "atmos.clw.tavg-al-hxy-u.mon.GLB", + "atmos.clwvi.tavg-u-hxy-u.mon.GLB", + "atmos.evspsbl.tavg-u-hxy-u.mon.GLB", + "atmos.hfls.tavg-u-hxy-u.mon.GLB", + "atmos.hfss.tavg-u-hxy-u.mon.GLB", + "atmos.hur.tavg-p19-hxy-air.mon.GLB", + "atmos.hur.tavg-p19-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.6hr.GLB", + "atmos.hurs.tavg-h2m-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.mon.GLB", + "atmos.hus.tavg-p19-hxy-u.day.GLB", + "atmos.hus.tavg-p19-hxy-u.mon.GLB", + "atmos.huss.tavg-h2m-hxy-u.day.GLB", + "atmos.huss.tavg-h2m-hxy-u.mon.GLB", + "atmos.huss.tpt-h2m-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.1hr.GLB", + "atmos.pr.tavg-u-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.day.GLB", + "atmos.pr.tavg-u-hxy-u.mon.GLB", + "atmos.prc.tavg-u-hxy-u.mon.GLB", + "atmos.prsn.tavg-u-hxy-u.mon.GLB", + "atmos.prw.tavg-u-hxy-u.mon.GLB", + "atmos.ps.tavg-u-hxy-u.day.GLB", + "atmos.ps.tavg-u-hxy-u.mon.GLB", + "atmos.psl.tavg-u-hxy-u.day.GLB", + "atmos.psl.tavg-u-hxy-u.mon.GLB", + "atmos.rlds.tavg-u-hxy-u.mon.GLB", + "atmos.rldscs.tavg-u-hxy-u.mon.GLB", + "atmos.rlus.tavg-u-hxy-u.mon.GLB", + "atmos.rluscs.tavg-u-hxy-u.mon.GLB", + "atmos.rlut.tavg-u-hxy-u.mon.GLB", + "atmos.rlutcs.tavg-u-hxy-u.mon.GLB", + "atmos.rsds.tavg-u-hxy-u.day.GLB", + "atmos.rsds.tavg-u-hxy-u.mon.GLB", + "atmos.rsdscs.tavg-u-hxy-u.mon.GLB", + "atmos.rsdt.tavg-u-hxy-u.mon.GLB", + "atmos.rsus.tavg-u-hxy-u.mon.GLB", + "atmos.rsuscs.tavg-u-hxy-u.mon.GLB", + "atmos.rsut.tavg-u-hxy-u.mon.GLB", + "atmos.rsutcs.tavg-u-hxy-u.mon.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.day.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.mon.GLB", + "atmos.sftlf.ti-u-hxy-u.fx.GLB", + "atmos.ta.tavg-p19-hxy-air.day.GLB", + "atmos.ta.tavg-p19-hxy-air.mon.GLB", + "atmos.ta.tpt-p3-hxy-air.6hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.day.GLB", + "atmos.tas.tavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tmax-h2m-hxy-u.day.GLB", + "atmos.tas.tmaxavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tmin-h2m-hxy-u.day.GLB", + "atmos.tas.tminavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tpt-h2m-hxy-u.3hr.GLB", + "atmos.tauu.tavg-u-hxy-u.mon.GLB", + "atmos.tauv.tavg-u-hxy-u.mon.GLB", + "atmos.ts.tavg-u-hxy-u.mon.GLB", + "atmos.ua.tavg-p19-hxy-air.day.GLB", + "atmos.ua.tavg-p19-hxy-air.mon.GLB", + "atmos.ua.tpt-p3-hxy-air.6hr.GLB", + "atmos.uas.tavg-h10m-hxy-u.day.GLB", + "atmos.uas.tavg-h10m-hxy-u.mon.GLB", + "atmos.uas.tpt-h10m-hxy-u.3hr.GLB", + "atmos.va.tavg-p19-hxy-air.day.GLB", + "atmos.va.tavg-p19-hxy-air.mon.GLB", + "atmos.va.tpt-p3-hxy-air.6hr.GLB", + "atmos.vas.tavg-h10m-hxy-u.day.GLB", + "atmos.vas.tavg-h10m-hxy-u.mon.GLB", + "atmos.vas.tpt-h10m-hxy-u.3hr.GLB", + "atmos.wap.tavg-p19-hxy-air.mon.GLB", + "atmos.wap.tavg-p19-hxy-u.day.GLB", + "atmos.zg.tavg-p19-hxy-air.day.GLB", + "atmos.zg.tavg-p19-hxy-air.mon.GLB", + "land.evspsblsoi.tavg-u-hxy-lnd.mon.GLB", + "land.evspsblveg.tavg-u-hxy-lnd.mon.GLB", + "land.lai.tavg-u-hxy-lnd.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.mon.GLB", + "land.mrros.tavg-u-hxy-lnd.mon.GLB", + "land.mrso.tavg-u-hxy-lnd.mon.GLB", + "land.mrsofc.ti-u-hxy-lnd.fx.GLB", + "land.mrsol.tavg-d10cm-hxy-lnd.mon.GLB", + "land.orog.ti-u-hxy-u.fx.GLB", + "land.rootd.ti-u-hxy-lnd.fx.GLB", + "land.sftgif.ti-u-hxy-u.fx.GLB", + "land.slthick.ti-sl-hxy-lnd.fx.GLB", + "landIce.mrfso.tavg-u-hxy-lnd.mon.GLB", + "landIce.snc.tavg-u-hxy-lnd.mon.GLB", + "landIce.snw.tavg-u-hxy-lnd.mon.GLB", + "ocean.areacello.ti-u-hxy-u.fx.GLB", + "ocean.basin.ti-u-hxy-u.fx.GLB", + "ocean.bigthetao.tavg-ol-hxy-sea.mon.GLB", + "ocean.deptho.ti-u-hxy-sea.fx.GLB", + "ocean.hfds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfgeou.ti-u-hxy-sea.fx.GLB", + "ocean.masscello.tavg-ol-hxy-sea.mon.GLB", + "ocean.masscello.ti-ol-hxy-sea.fx.GLB", + "ocean.mlotst.tavg-u-hxy-sea.mon.GLB", + "ocean.sftof.ti-u-hxy-u.fx.GLB", + "ocean.so.tavg-ol-hxy-sea.mon.GLB", + "ocean.sos.tavg-u-hxy-sea.day.GLB", + "ocean.sos.tavg-u-hxy-sea.mon.GLB", + "ocean.tauuo.tavg-u-hxy-sea.mon.GLB", + "ocean.tauvo.tavg-u-hxy-sea.mon.GLB", + "ocean.thetao.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcello.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcello.ti-ol-hxy-sea.fx.GLB", + "ocean.tos.tavg-u-hxy-sea.day.GLB", + "ocean.tos.tavg-u-hxy-sea.mon.GLB", + "ocean.umo.tavg-ol-hxy-sea.mon.GLB", + "ocean.uo.tavg-ol-hxy-sea.mon.GLB", + "ocean.vmo.tavg-ol-hxy-sea.mon.GLB", + "ocean.vo.tavg-ol-hxy-sea.mon.GLB", + "ocean.wmo.tavg-ol-hxy-sea.mon.GLB", + "ocean.wo.tavg-ol-hxy-sea.mon.GLB", + "ocean.zos.tavg-u-hxy-sea.day.GLB", + "ocean.zos.tavg-u-hxy-sea.mon.GLB", + "ocean.zostoga.tavg-u-hm-sea.mon.GLB", + "seaIce.siconc.tavg-u-hxy-u.day.GLB", + "seaIce.siconc.tavg-u-hxy-u.mon.GLB", + "seaIce.simass.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-si.mon.GLB", + "seaIce.sitimefrac.tavg-u-hxy-sea.mon.GLB", + "seaIce.siu.tavg-u-hxy-si.mon.GLB", + "seaIce.siv.tavg-u-hxy-si.mon.GLB", + "seaIce.snd.tavg-u-hxy-sn.mon.GLB", + "seaIce.ts.tavg-u-hxy-si.mon.GLB" + ], + "High": [ + "aerosol.depdust.tavg-u-hxy-u.mon.GLB", + "atmos.co2.tavg-h2m-hxy-u.mon.GLB", + "atmos.hfls.tavg-u-hxy-u.day.GLB", + "atmos.hfss.tavg-u-hxy-u.day.GLB", + "atmos.huss.tavg-h2m-hxy-u.6hr.GLB", + "atmos.intuadse.tavg-u-hxy-u.day.GLB", + "atmos.intuadse.tavg-u-hxy-u.mon.GLB", + "atmos.intuaw.tavg-u-hxy-u.day.GLB", + "atmos.intuaw.tavg-u-hxy-u.mon.GLB", + "atmos.intvadse.tavg-u-hxy-u.day.GLB", + "atmos.intvadse.tavg-u-hxy-u.mon.GLB", + "atmos.intvaw.tavg-u-hxy-u.day.GLB", + "atmos.intvaw.tavg-u-hxy-u.mon.GLB", + "atmos.pr17O.tavg-u-hxy-u.mon.GLB", + "atmos.pr18O.tavg-u-hxy-u.mon.GLB", + "atmos.pr2h.tavg-u-hxy-u.mon.GLB", + "atmos.prra.tavg-u-hxy-lnd.day.GLB", + "atmos.prra.tavg-u-hxy-u.6hr.GLB", + "atmos.prra.tavg-u-hxy-u.mon.GLB", + "atmos.prsn.tavg-u-hxy-u.6hr.GLB", + "atmos.prsn.tavg-u-hxy-u.day.GLB", + "atmos.prsn18O.tavg-u-hxy-u.mon.GLB", + "atmos.prsn2h.tavg-u-hxy-u.mon.GLB", + "atmos.ps.tavg-u-hxy-u.6hr.GLB", + "atmos.psl.tpt-u-hxy-u.1hr.GLB", + "atmos.rlds.tavg-u-hxy-u.6hr.GLB", + "atmos.rlds.tavg-u-hxy-u.day.GLB", + "atmos.rlus.tavg-u-hxy-u.day.GLB", + "atmos.rlut.tavg-u-hxy-u.day.GLB", + "atmos.rsds.tavg-u-hxy-u.6hr.GLB", + "atmos.rsdt.tavg-u-hxy-u.day.GLB", + "atmos.rsus.tavg-u-hxy-u.day.GLB", + "atmos.rsut.tavg-u-hxy-u.day.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.6hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.6hr.GLB", + "atmos.tdps.tavg-h2m-hxy-u.mon.GLB", + "atmos.ts.tavg-u-hxy-u.6hr.GLB", + "atmos.ts.tavg-u-hxy-u.day.GLB", + "atmos.ua.tpt-h100m-hxy-u.1hr.GLB", + "atmos.uas.tpt-h10m-hxy-u.1hr.GLB", + "atmos.va.tpt-h100m-hxy-u.1hr.GLB", + "atmos.vas.tpt-h10m-hxy-u.1hr.GLB", + "land.burntFractionAll.tavg-u-hxy-u.mon.GLB", + "land.cSoil.tavg-sl-hxy-lnd.mon.GLB", + "land.cSoil.tavg-u-hxy-lnd.mon.GLB", + "land.depthl.ti-u-hxy-u.fx.GLB", + "land.depthsl.ti-u-hxy-u.fx.GLB", + "land.mrro.tavg-u-hxy-lnd.day.GLB", + "land.mrros.tavg-u-hxy-lnd.day.GLB", + "land.mrsfl.tavg-sl-hxy-lnd.day.GLB", + "land.mrsfl.tavg-sl-hxy-lnd.mon.GLB", + "land.mrsll.tavg-sl-hxy-lnd.day.GLB", + "land.mrsll.tavg-sl-hxy-lnd.mon.GLB", + "land.mrsol.tavg-sl-hxy-lnd.day.GLB", + "land.mrsol.tavg-sl-hxy-lnd.mon.GLB", + "land.rsds.tavg-u-hxy-lnd.mon.GLB", + "land.rsds.tavg-u-hxy-sn.mon.GLB", + "land.rsus.tavg-u-hxy-lnd.mon.GLB", + "land.rsus.tavg-u-hxy-sn.mon.GLB", + "land.sftgif.tavg-u-hxy-u.mon.GLB", + "land.sftlaf.ti-u-hxy-u.fx.GLB", + "land.tsl.tavg-sl-hxy-lnd.day.GLB", + "land.tsl.tavg-sl-hxy-lnd.mon.GLB", + "landIce.acabf.tavg-u-hxy-is.mon.GLB", + "landIce.hfls.tavg-u-hxy-is.mon.GLB", + "landIce.hfss.tavg-u-hxy-is.mon.GLB", + "landIce.icem.tavg-u-hxy-is.mon.GLB", + "landIce.litemptop.tavg-u-hxy-is.mon.GLB", + "landIce.lithk.ti-u-hxy-u.fx.GLB", + "landIce.mrro.tavg-u-hxy-is.mon.GLB", + "landIce.orog.tavg-u-hxy-is.mon.GLB", + "landIce.prra.tavg-u-hxy-is.mon.GLB", + "landIce.prsn.tavg-u-hxy-is.mon.GLB", + "landIce.rlds.tavg-u-hxy-is.mon.GLB", + "landIce.rlus.tavg-u-hxy-is.mon.GLB", + "landIce.rsds.tavg-u-hxy-is.mon.GLB", + "landIce.rsus.tavg-u-hxy-is.mon.GLB", + "landIce.sbl.tavg-u-hxy-is.mon.GLB", + "landIce.sbl.tavg-u-hxy-lnd.mon.GLB", + "landIce.sbl.tavg-u-hxy-u.mon.GLB", + "landIce.sftflf.tavg-u-hxy-u.mon.GLB", + "landIce.sftflf.ti-u-hxy-u.fx.GLB", + "landIce.sftgrf.tavg-u-hxy-u.mon.GLB", + "landIce.sftgrf.ti-u-hxy-u.fx.GLB", + "landIce.snc.tavg-u-hxy-is.mon.GLB", + "landIce.snd.tavg-u-hxy-lnd.mon.GLB", + "landIce.snicem.tavg-u-hxy-is.mon.GLB", + "landIce.snm.tavg-u-hxy-is.mon.GLB", + "landIce.snm.tavg-u-hxy-lnd.mon.GLB", + "landIce.snrefr.tavg-u-hxy-is.mon.GLB", + "landIce.tas.tavg-u-hxy-is.mon.GLB", + "landIce.ts.tavg-u-hxy-is.mon.GLB", + "landIce.tsn.tavg-u-hxy-is.mon.GLB", + "landIce.tsn.tavg-u-hxy-lnd.mon.GLB", + "ocean.absscint.tavg-op4-hxy-sea.mon.GLB", + "ocean.agessc.tavg-ol-hxy-sea.mon.GLB", + "ocean.bigthetao.tavg-ol-hm-sea.mon.GLB", + "ocean.bigthetao.tavg-ol-hxy-sea.dec.GLB", + "ocean.bigthetao.tavg-op20bar-hxy-sea.day.GLB", + "ocean.chcint.tavg-op4-hxy-sea.mon.GLB", + "ocean.ficeberg.tavg-u-hxy-sea.mon.GLB", + "ocean.flandice.tavg-u-hxy-sea.mon.GLB", + "ocean.hfbasin.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpmadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpmdiff.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpsmadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfgeou.tavg-u-hxy-sea.mon.GLB", + "ocean.hfx.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfx.tavg-u-hxy-sea.day.GLB", + "ocean.hfx.tavg-u-hxy-sea.mon.GLB", + "ocean.hfy.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfy.tavg-u-hxy-sea.day.GLB", + "ocean.hfy.tavg-u-hxy-sea.mon.GLB", + "ocean.htovgyre.tavg-u-hyb-sea.mon.GLB", + "ocean.htovovrt.tavg-u-hyb-sea.mon.GLB", + "ocean.masscello.tavg-ol-hxy-sea.dec.GLB", + "ocean.masso.tavg-u-hm-sea.dec.GLB", + "ocean.masso.tavg-u-hm-sea.mon.GLB", + "ocean.mlotst.tavg-u-hxy-sea.day.GLB", + "ocean.mlotst.tmax-u-hxy-sea.mon.GLB", + "ocean.mlotst.tmin-u-hxy-sea.mon.GLB", + "ocean.mpw.tavg-u-hxy-sea.mon.GLB", + "ocean.mpw.tpt-u-hxy-sea.3hr.GLB", + "ocean.mpwswell.tavg-u-hxy-sea.mon.GLB", + "ocean.mpwswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.mpwwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.mpwwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.msftbarot.tavg-u-hxy-sea.mon.GLB", + "ocean.msftm.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftm.tavg-rho-hyb-sea.mon.GLB", + "ocean.msfty.tavg-ol-ht-sea.mon.GLB", + "ocean.msfty.tavg-rho-ht-sea.mon.GLB", + "ocean.obvfsq.tavg-ol-hxy-sea.mon.GLB", + "ocean.opottemptend.tavg-ol-hxy-sea.yr.GLB", + "ocean.pbo.tavg-u-hxy-sea.mon.GLB", + "ocean.pfscint.tavg-op4-hxy-sea.mon.GLB", + "ocean.phcint.tavg-op4-hxy-sea.mon.GLB", + "ocean.pso.tavg-u-hxy-sea.mon.GLB", + "ocean.rsds.tavg-u-hxy-ifs.mon.GLB", + "ocean.rsus.tavg-u-hxy-ifs.mon.GLB", + "ocean.scint.tavg-op4-hxy-sea.mon.GLB", + "ocean.sduo.tavg-u-hxy-sea.mon.GLB", + "ocean.sduo.tpt-u-hxy-sea.3hr.GLB", + "ocean.sdvo.tavg-u-hxy-sea.mon.GLB", + "ocean.sdvo.tpt-u-hxy-sea.3hr.GLB", + "ocean.sfx.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfx.tavg-u-hxy-sea.mon.GLB", + "ocean.sfy.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfy.tavg-u-hxy-sea.mon.GLB", + "ocean.sltbasin.tavg-u-hyb-sea.mon.GLB", + "ocean.sltovgyre.tavg-u-hyb-sea.mon.GLB", + "ocean.sltovovrt.tavg-u-hyb-sea.mon.GLB", + "ocean.so.tavg-ol-hm-sea.mon.GLB", + "ocean.so.tavg-ol-hxy-sea.dec.GLB", + "ocean.sob.tavg-u-hxy-sea.mon.GLB", + "ocean.sos.tavg-u-hm-sea.mon.GLB", + "ocean.sw17O.tavg-ol-hxy-sea.mon.GLB", + "ocean.sw18O.tavg-ol-hxy-sea.mon.GLB", + "ocean.sw2H.tavg-ol-hxy-sea.mon.GLB", + "ocean.swh.tavg-u-hxy-sea.mon.GLB", + "ocean.swh.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhmax.tmax-u-hxy-sea.mon.GLB", + "ocean.swhmax.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhswell.tavg-u-hxy-sea.mon.GLB", + "ocean.swhswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.swhwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.tauuo.tavg-u-hxy-sea.dec.GLB", + "ocean.tauvo.tavg-u-hxy-sea.dec.GLB", + "ocean.thetao.tavg-ol-hm-sea.mon.GLB", + "ocean.thetao.tavg-ol-hxy-sea.dec.GLB", + "ocean.thetao.tavg-op20bar-hxy-sea.day.GLB", + "ocean.thkcello.tavg-ol-hxy-sea.dec.GLB", + "ocean.tob.tavg-u-hxy-sea.mon.GLB", + "ocean.tos.tavg-u-hm-sea.mon.GLB", + "ocean.tos.tpt-u-hxy-sea.3hr.GLB", + "ocean.tossq.tavg-u-hxy-sea.day.GLB", + "ocean.uos.tavg-u-hxy-sea.day.GLB", + "ocean.volcello.tavg-ol-hxy-sea.dec.GLB", + "ocean.volcello.tavg-ol-hxy-sea.mon.GLB", + "ocean.volcello.tavg-ol-hxy-sea.yr.GLB", + "ocean.volcello.ti-ol-hxy-sea.fx.GLB", + "ocean.volo.tavg-u-hm-sea.dec.GLB", + "ocean.volo.tavg-u-hm-sea.mon.GLB", + "ocean.vos.tavg-u-hxy-sea.day.GLB", + "ocean.wdir.tavg-u-hxy-sea.mon.GLB", + "ocean.wdir.tpt-u-hxy-sea.3hr.GLB", + "ocean.wdirswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wdirswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wdirwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wdirwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.wfcorr.tavg-u-hxy-sea.mon.GLB", + "ocean.wfo.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdir.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdir.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpdirswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdirswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpdirwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdirwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpp.tavg-u-hxy-sea.mon.GLB", + "ocean.wpp.tpt-u-hxy-sea.3hr.GLB", + "ocean.wppswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wppswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wppwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wppwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.zossq.tavg-u-hxy-sea.mon.GLB", + "ocean.zostoga.tavg-u-hm-sea.day.GLB", + "seaIce.evspsbl.tavg-u-hxy-si.mon.GLB", + "seaIce.prra.tavg-u-hxy-si.mon.GLB", + "seaIce.prsn.tavg-u-hxy-si.mon.GLB", + "seaIce.rlds.tavg-u-hxy-si.day.GLB", + "seaIce.rlds.tavg-u-hxy-si.mon.GLB", + "seaIce.rlus.tavg-u-hxy-si.day.GLB", + "seaIce.rlus.tavg-u-hxy-si.mon.GLB", + "seaIce.rsds.tavg-u-hxy-si.day.GLB", + "seaIce.rsds.tavg-u-hxy-si.mon.GLB", + "seaIce.rsus.tavg-u-hxy-si.day.GLB", + "seaIce.rsus.tavg-u-hxy-si.mon.GLB", + "seaIce.sbl.tavg-u-hxy-si.mon.GLB", + "seaIce.siage.tavg-u-hxy-si.day.GLB", + "seaIce.siarea.tavg-u-hm-u.mon.NH", + "seaIce.siarea.tavg-u-hm-u.mon.SH", + "seaIce.siareaacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.siconca.tavg-u-hxy-u.day.GLB", + "seaIce.siconca.tavg-u-hxy-u.mon.GLB", + "seaIce.sidconcdyn.tavg-u-hxy-sea.mon.GLB", + "seaIce.sidconcth.tavg-u-hxy-sea.mon.GLB", + "seaIce.sidmassdyn.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthsi.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthwat.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmeltbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmeltlat.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmelttop.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassth.tavg-u-hxy-si.mon.GLB", + "seaIce.sieqthick.tavg-u-hxy-si.mon.GLB", + "seaIce.siextent.tavg-u-hm-u.mon.NH", + "seaIce.siextent.tavg-u-hm-u.mon.SH", + "seaIce.siflcondbot.tavg-u-hxy-si.day.GLB", + "seaIce.siflcondbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflcondtop.tavg-u-hxy-si.day.GLB", + "seaIce.siflcondtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sifllattop.tavg-u-hxy-si.day.GLB", + "seaIce.sifllattop.tavg-u-hxy-si.mon.GLB", + "seaIce.siflsensbot.tavg-u-hxy-si.day.GLB", + "seaIce.siflsensbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflsenstop.tavg-u-hxy-si.day.GLB", + "seaIce.siflsenstop.tavg-u-hxy-si.mon.GLB", + "seaIce.siflswdbot.tavg-u-hxy-si.day.GLB", + "seaIce.siflswdbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sihc.tavg-u-hxy-sea.day.GLB", + "seaIce.sihc.tavg-u-hxy-sea.mon.GLB", + "seaIce.siitdconc.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdsnconc.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdsnthick.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdthick.tavg-u-hxy-si.mon.GLB", + "seaIce.simassacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.simpconc.tavg-u-hxy-si.mon.GLB", + "seaIce.sirdgconc.tavg-u-hxy-si.mon.GLB", + "seaIce.sisaltmass.tavg-u-hxy-si.mon.GLB", + "seaIce.sisndmassdyn.tavg-u-hxy-si.mon.GLB", + "seaIce.sisndmasssi.tavg-u-hxy-si.mon.GLB", + "seaIce.sisndmasswind.tavg-u-hxy-si.mon.GLB", + "seaIce.sisnhc.tavg-u-hxy-si.day.GLB", + "seaIce.sisnhc.tavg-u-hxy-si.mon.GLB", + "seaIce.sisnmass.tavg-u-hm-u.mon.NH", + "seaIce.sisnmass.tavg-u-hm-u.mon.SH", + "seaIce.sisnmassacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.sispeed.tavg-u-hxy-si.day.GLB", + "seaIce.sispeed.tavg-u-hxy-si.mon.GLB", + "seaIce.sistressave.tpt-u-hxy-si.mon.GLB", + "seaIce.sistressmax.tpt-u-hxy-si.mon.GLB", + "seaIce.sistrxdtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sistrxubot.tavg-u-hxy-si.mon.GLB", + "seaIce.sistrydtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sistryubot.tavg-u-hxy-si.mon.GLB", + "seaIce.sitempsnic.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-si.day.GLB", + "seaIce.sitimefrac.tavg-u-hxy-sea.day.GLB", + "seaIce.siu.tavg-u-hxy-si.day.GLB", + "seaIce.siv.tavg-u-hxy-si.day.GLB", + "seaIce.sivol.tavg-u-hm-u.mon.NH", + "seaIce.sivol.tavg-u-hm-u.mon.SH", + "seaIce.snc.tavg-u-hxy-si.mon.GLB", + "seaIce.snd.tavg-u-hxy-sn.day.GLB", + "seaIce.snm.tavg-u-hxy-si.mon.GLB", + "seaIce.snw.tavg-u-hxy-si.mon.GLB", + "seaIce.ts.tavg-u-hxy-si.day.GLB" + ], + "Medium": [ + "atmos.hfls.tavg-u-hxy-is.mon.ATA", + "atmos.hfls.tavg-u-hxy-is.mon.GRL", + "atmos.hfss.tavg-u-hxy-is.mon.ATA", + "atmos.hfss.tavg-u-hxy-is.mon.GRL", + "atmos.prra.tavg-u-hxy-is.mon.ATA", + "atmos.prra.tavg-u-hxy-is.mon.GRL", + "atmos.prsn.tavg-u-hxy-is.mon.ATA", + "atmos.prsn.tavg-u-hxy-is.mon.GRL", + "atmos.rlds.tavg-u-hxy-is.mon.ATA", + "atmos.rlds.tavg-u-hxy-is.mon.GRL", + "atmos.rlus.tavg-u-hxy-is.mon.ATA", + "atmos.rlus.tavg-u-hxy-is.mon.GRL", + "atmos.rsds.tavg-u-hxy-is.mon.ATA", + "atmos.rsds.tavg-u-hxy-is.mon.GRL", + "atmos.rsus.tavg-u-hxy-is.mon.ATA", + "atmos.rsus.tavg-u-hxy-is.mon.GRL", + "atmos.tas.tavg-h2m-hm-is.mon.ATA", + "atmos.tas.tavg-h2m-hm-is.mon.GRL", + "atmos.ts.tavg-u-hxy-is.mon.ATA", + "atmos.ts.tavg-u-hxy-is.mon.GRL", + "land.areacellg.ti-u-hxy-u.fx.ATA", + "land.areacellg.ti-u-hxy-u.fx.GRL", + "land.orog.tavg-u-hxy-is.mon.ATA", + "land.orog.tavg-u-hxy-is.mon.GRL", + "land.orog.tavg-u-hxy-is.yr.ATA", + "land.orog.tavg-u-hxy-is.yr.GRL", + "land.sftgif.tavg-u-hxy-u.yr.ATA", + "land.sftgif.tavg-u-hxy-u.yr.GRL", + "landIce.acabf.tavg-u-hxy-is.mon.ATA", + "landIce.acabf.tavg-u-hxy-is.mon.GRL", + "landIce.acabf.tavg-u-hxy-is.yr.ATA", + "landIce.acabf.tavg-u-hxy-is.yr.GRL", + "landIce.hfgeoubed.tavg-u-hxy-gis.yr.ATA", + "landIce.hfgeoubed.tavg-u-hxy-gis.yr.GRL", + "landIce.hfgeoubed.ti-u-hxy-gis.fx.ATA", + "landIce.hfgeoubed.ti-u-hxy-gis.fx.GRL", + "landIce.iareafl.tavg-u-hm-fis.yr.ATA", + "landIce.iareafl.tavg-u-hm-fis.yr.GRL", + "landIce.iareagr.tavg-u-hm-gis.yr.ATA", + "landIce.iareagr.tavg-u-hm-gis.yr.GRL", + "landIce.icem.tavg-u-hxy-is.mon.ATA", + "landIce.icem.tavg-u-hxy-is.mon.GRL", + "landIce.libmassbf.tavg-u-hxy-fis.mon.ATA", + "landIce.libmassbf.tavg-u-hxy-fis.mon.GRL", + "landIce.libmassbf.tavg-u-hxy-fis.yr.ATA", + "landIce.libmassbf.tavg-u-hxy-fis.yr.GRL", + "landIce.libmassbf.tavg-u-hxy-gis.mon.ATA", + "landIce.libmassbf.tavg-u-hxy-gis.mon.GRL", + "landIce.libmassbf.tavg-u-hxy-gis.yr.ATA", + "landIce.libmassbf.tavg-u-hxy-gis.yr.GRL", + "landIce.licalvf.tavg-u-hxy-is.mon.ATA", + "landIce.licalvf.tavg-u-hxy-is.mon.GRL", + "landIce.licalvf.tavg-u-hxy-is.yr.ATA", + "landIce.licalvf.tavg-u-hxy-is.yr.GRL", + "landIce.lifmassbf.tavg-u-hxy-is.mon.ATA", + "landIce.lifmassbf.tavg-u-hxy-is.mon.GRL", + "landIce.lifmassbf.tavg-u-hxy-is.yr.ATA", + "landIce.lifmassbf.tavg-u-hxy-is.yr.GRL", + "landIce.lim.tavg-u-hm-is.yr.ATA", + "landIce.lim.tavg-u-hm-is.yr.GRL", + "landIce.limnsw.tavg-u-hm-is.yr.ATA", + "landIce.limnsw.tavg-u-hm-is.yr.GRL", + "landIce.litempbot.tavg-u-hxy-fis.mon.ATA", + "landIce.litempbot.tavg-u-hxy-fis.mon.GRL", + "landIce.litempbot.tavg-u-hxy-fis.yr.ATA", + "landIce.litempbot.tavg-u-hxy-fis.yr.GRL", + "landIce.litempbot.tavg-u-hxy-gis.mon.ATA", + "landIce.litempbot.tavg-u-hxy-gis.mon.GRL", + "landIce.litempbot.tavg-u-hxy-gis.yr.ATA", + "landIce.litempbot.tavg-u-hxy-gis.yr.GRL", + "landIce.litemptop.tavg-u-hxy-is.mon.ATA", + "landIce.litemptop.tavg-u-hxy-is.mon.GRL", + "landIce.litemptop.tavg-u-hxy-is.yr.ATA", + "landIce.litemptop.tavg-u-hxy-is.yr.GRL", + "landIce.lithk.tavg-u-hxy-is.yr.ATA", + "landIce.lithk.tavg-u-hxy-is.yr.GRL", + "landIce.lithk.ti-u-hxy-is.fx.ATA", + "landIce.lithk.ti-u-hxy-is.fx.GRL", + "landIce.modelcellareai.tavg-u-hxy-u.yr.ATA", + "landIce.modelcellareai.tavg-u-hxy-u.yr.GRL", + "landIce.mrroLi.tavg-u-hxy-is.mon.ATA", + "landIce.mrroLi.tavg-u-hxy-is.mon.GRL", + "landIce.sbl.tavg-u-hxy-is.mon.ATA", + "landIce.sbl.tavg-u-hxy-is.mon.GRL", + "landIce.sftflf.tavg-u-hxy-u.yr.ATA", + "landIce.sftflf.tavg-u-hxy-u.yr.GRL", + "landIce.sftgrf.tavg-u-hxy-u.yr.ATA", + "landIce.sftgrf.tavg-u-hxy-u.yr.GRL", + "landIce.snc.tavg-u-hxy-is.mon.ATA", + "landIce.snc.tavg-u-hxy-is.mon.GRL", + "landIce.snc.tavg-u-hxy-is.yr.ATA", + "landIce.snc.tavg-u-hxy-is.yr.GRL", + "landIce.snicem.tavg-u-hxy-is.mon.ATA", + "landIce.snicem.tavg-u-hxy-is.mon.GRL", + "landIce.snm.tavg-u-hxy-is.mon.ATA", + "landIce.snm.tavg-u-hxy-is.mon.GRL", + "landIce.snrefr.tavg-u-hxy-is.mon.ATA", + "landIce.snrefr.tavg-u-hxy-is.mon.GRL", + "landIce.strbasemag.tavg-u-hxy-is.yr.ATA", + "landIce.strbasemag.tavg-u-hxy-is.yr.GRL", + "landIce.tendacabf.tavg-u-hm-is.yr.ATA", + "landIce.tendacabf.tavg-u-hm-is.yr.GRL", + "landIce.tendlibmassbf.tavg-u-hm-is.yr.ATA", + "landIce.tendlibmassbf.tavg-u-hm-is.yr.GRL", + "landIce.tendlicalvf.tavg-u-hm-is.yr.ATA", + "landIce.tendlicalvf.tavg-u-hm-is.yr.GRL", + "landIce.topg.tavg-u-hxy-gis.yr.ATA", + "landIce.topg.tavg-u-hxy-gis.yr.GRL", + "landIce.topg.ti-u-hxy-gis.fx.ATA", + "landIce.topg.ti-u-hxy-gis.fx.GRL", + "landIce.tsn.tavg-u-hxy-is.mon.ATA", + "landIce.tsn.tavg-u-hxy-is.mon.GRL", + "landIce.xvelbase.tavg-u-hxy-is.yr.ATA", + "landIce.xvelbase.tavg-u-hxy-is.yr.GRL", + "landIce.xvelmean.tavg-u-hxy-is.yr.ATA", + "landIce.xvelmean.tavg-u-hxy-is.yr.GRL", + "landIce.xvelsurf.tavg-u-hxy-is.yr.ATA", + "landIce.xvelsurf.tavg-u-hxy-is.yr.GRL", + "landIce.yvelbase.tavg-u-hxy-is.yr.ATA", + "landIce.yvelbase.tavg-u-hxy-is.yr.GRL", + "landIce.yvelmean.tavg-u-hxy-is.yr.ATA", + "landIce.yvelmean.tavg-u-hxy-is.yr.GRL", + "landIce.yvelsurf.tavg-u-hxy-is.yr.ATA", + "landIce.yvelsurf.tavg-u-hxy-is.yr.GRL", + "landIce.zvelbase.tavg-u-hxy-is.yr.ATA", + "landIce.zvelbase.tavg-u-hxy-is.yr.GRL", + "landIce.zvelsurf.tavg-u-hxy-is.yr.ATA", + "landIce.zvelsurf.tavg-u-hxy-is.yr.GRL", + "ocean.evspsbl.tavg-u-hxy-ifs.mon.GLB", + "ocean.ficeberg.tavg-ol-hxy-sea.mon.GLB", + "ocean.friver.tavg-u-hxy-sea.mon.GLB", + "ocean.hfacrossline.tavg-u-ht-sea.mon.GLB", + "ocean.hfevapds.tavg-u-hxy-ifs.mon.GLB", + "ocean.hfibthermds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfibthermds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfrainds.tavg-u-hxy-ifs.mon.GLB", + "ocean.hfrunoffds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfrunoffds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfsnthermds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfsnthermds.tavg-u-hxy-sea.mon.GLB", + "ocean.mfo.tavg-u-ht-sea.mon.GLB", + "ocean.sfacrossline.tavg-u-ht-sea.mon.GLB", + "ocean.sfdsi.tavg-u-hxy-sea.mon.GLB", + "ocean.sfriver.tavg-u-hxy-sea.mon.GLB", + "ocean.siflfwbot.tavg-u-hxy-sea.mon.GLB", + "ocean.so.tavg-ol-hxy-sea.day.GLB", + "ocean.tnkebto.tavg-u-hxy-sea.yr.GLB", + "ocean.vsf.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfcorr.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfevap.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfpr.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfriver.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfsit.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.arag.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.arag.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.calc.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.calc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chl.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.dissic.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.o2.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.ph.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.talk.tavg-ol-hxy-sea.mon.GLB", + "seaIce.sfdsi.tavg-u-hxy-si.mon.GLB", + "seaIce.siage.tavg-u-hxy-si.mon.GLB", + "seaIce.siarea.tavg-u-hm-u.day.NH", + "seaIce.siarea.tavg-u-hm-u.day.SH", + "seaIce.sicompstren.tavg-u-hxy-si.mon.GLB", + "seaIce.sidivvel.tpt-u-hxy-si.mon.GLB", + "seaIce.sidmasstranx.tavg-u-hxy-u.mon.GLB", + "seaIce.sidmasstrany.tavg-u-hxy-u.mon.GLB", + "seaIce.sidragbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidragtop.tavg-u-hxy-si.mon.GLB", + "seaIce.siextent.tavg-u-hm-u.day.NH", + "seaIce.siextent.tavg-u-hm-u.day.SH", + "seaIce.sifb.tavg-u-hxy-si.day.GLB", + "seaIce.sifb.tavg-u-hxy-si.mon.GLB", + "seaIce.siflfwbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflfwdrain.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcecoriolx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcecorioly.tavg-u-hxy-si.mon.GLB", + "seaIce.siforceintstrx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforceintstry.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcetiltx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcetilty.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdconc.tavg-u-hxy-si.day.GLB", + "seaIce.siitdsnconc.tavg-u-hxy-si.day.GLB", + "seaIce.siitdsnthick.tavg-u-hxy-si.day.GLB", + "seaIce.siitdthick.tavg-u-hxy-si.day.GLB", + "seaIce.simpconc.tavg-u-hxy-si.day.GLB", + "seaIce.simpeffconc.tavg-u-hxy-si.day.GLB", + "seaIce.simpeffconc.tavg-u-hxy-si.mon.GLB", + "seaIce.simprefrozen.tavg-u-hxy-simp.day.GLB", + "seaIce.simprefrozen.tavg-u-hxy-simp.mon.GLB", + "seaIce.simpthick.tavg-u-hxy-si.day.GLB", + "seaIce.simpthick.tavg-u-hxy-simp.mon.GLB", + "seaIce.sirdgconc.tavg-u-hxy-si.day.GLB", + "seaIce.sisali.tavg-u-hxy-si.day.GLB", + "seaIce.sisali.tavg-u-hxy-si.mon.GLB", + "seaIce.sisaltmass.tavg-u-hxy-si.day.GLB", + "seaIce.sishearvel.tpt-u-hxy-si.mon.GLB", + "seaIce.sisnmass.tavg-u-hm-u.day.NH", + "seaIce.sisnmass.tavg-u-hm-u.day.SH", + "seaIce.sitempbot.tavg-u-hxy-si.day.GLB", + "seaIce.sitempbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sitempsnic.tavg-u-hxy-si.day.GLB", + "seaIce.sithick.tavg-u-hxy-sir.day.GLB", + "seaIce.sithick.tavg-u-hxy-sir.mon.GLB", + "seaIce.sivol.tavg-u-hm-u.day.NH", + "seaIce.sivol.tavg-u-hm-u.day.SH" + ], + "Low": [ + "ocean.difmxybo.tavg-ol-hxy-sea.yr.GLB", + "ocean.difmxylo.tavg-ol-hxy-sea.yr.GLB", + "ocean.diftrblo.tavg-ol-hxy-sea.yr.GLB", + "ocean.diftrelo.tavg-ol-hxy-sea.yr.GLB", + "ocean.difvho.tavg-ol-hxy-sea.yr.GLB", + "ocean.difvso.tavg-ol-hxy-sea.yr.GLB", + "ocean.dispkexyfo.tavg-u-hxy-sea.yr.GLB", + "ocean.dxto.ti-u-hxy-u.fx.GLB", + "ocean.dxuo.ti-u-hxy-u.fx.GLB", + "ocean.dxvo.ti-u-hxy-u.fx.GLB", + "ocean.dyto.ti-u-hxy-u.fx.GLB", + "ocean.dyuo.ti-u-hxy-u.fx.GLB", + "ocean.dyvo.ti-u-hxy-u.fx.GLB", + "ocean.mlotstsq.tavg-u-hxy-sea.mon.GLB", + "ocean.msftmmpa.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftmmpa.tavg-rho-hyb-sea.mon.GLB", + "ocean.msftmsmpa.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftypa.tavg-ol-ht-sea.mon.GLB", + "ocean.msftypa.tavg-rho-ht-sea.mon.GLB", + "ocean.ocontempdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontempmint.tavg-u-hxy-sea.yr.GLB", + "ocean.ocontemppadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemppmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemppsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemprmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemptend.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottempdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottempmint.tavg-u-hxy-sea.yr.GLB", + "ocean.opottemppadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemppmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemppsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemprmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemptend.tavg-ol-hxy-sea.dec.GLB", + "ocean.osaltdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpsmadvect.tavg-ol-hxy-sea.mon.GLB", + "ocean.osaltpsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltrmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osalttend.tavg-ol-hxy-sea.yr.GLB", + "ocean.rsdoabsorb.tavg-ol-hxy-sea.yr.GLB", + "ocean.somint.tavg-u-hxy-sea.yr.GLB", + "ocean.sossq.tavg-u-hxy-sea.mon.GLB", + "ocean.thkcelluo.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcellvo.tavg-ol-hxy-sea.mon.GLB", + "ocean.tnpeo.tavg-u-hxy-sea.yr.GLB", + "ocean.tossq.tavg-u-hxy-sea.mon.GLB" + ] + }, + "scenariomip4": { + "Core": [ + "atmos.areacella.ti-u-hxy-u.fx.GLB", + "atmos.cl.tavg-al-hxy-u.mon.GLB", + "atmos.cli.tavg-al-hxy-u.mon.GLB", + "atmos.clivi.tavg-u-hxy-u.mon.GLB", + "atmos.clt.tavg-u-hxy-u.day.GLB", + "atmos.clt.tavg-u-hxy-u.mon.GLB", + "atmos.clw.tavg-al-hxy-u.mon.GLB", + "atmos.clwvi.tavg-u-hxy-u.mon.GLB", + "atmos.evspsbl.tavg-u-hxy-u.mon.GLB", + "atmos.hfls.tavg-u-hxy-u.mon.GLB", + "atmos.hfss.tavg-u-hxy-u.mon.GLB", + "atmos.hur.tavg-p19-hxy-air.mon.GLB", + "atmos.hur.tavg-p19-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.6hr.GLB", + "atmos.hurs.tavg-h2m-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.mon.GLB", + "atmos.hus.tavg-p19-hxy-u.day.GLB", + "atmos.hus.tavg-p19-hxy-u.mon.GLB", + "atmos.huss.tavg-h2m-hxy-u.day.GLB", + "atmos.huss.tavg-h2m-hxy-u.mon.GLB", + "atmos.huss.tpt-h2m-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.1hr.GLB", + "atmos.pr.tavg-u-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.day.GLB", + "atmos.pr.tavg-u-hxy-u.mon.GLB", + "atmos.prc.tavg-u-hxy-u.mon.GLB", + "atmos.prsn.tavg-u-hxy-u.mon.GLB", + "atmos.prw.tavg-u-hxy-u.mon.GLB", + "atmos.ps.tavg-u-hxy-u.day.GLB", + "atmos.ps.tavg-u-hxy-u.mon.GLB", + "atmos.psl.tavg-u-hxy-u.day.GLB", + "atmos.psl.tavg-u-hxy-u.mon.GLB", + "atmos.rlds.tavg-u-hxy-u.mon.GLB", + "atmos.rldscs.tavg-u-hxy-u.mon.GLB", + "atmos.rlus.tavg-u-hxy-u.mon.GLB", + "atmos.rluscs.tavg-u-hxy-u.mon.GLB", + "atmos.rlut.tavg-u-hxy-u.mon.GLB", + "atmos.rlutcs.tavg-u-hxy-u.mon.GLB", + "atmos.rsds.tavg-u-hxy-u.day.GLB", + "atmos.rsds.tavg-u-hxy-u.mon.GLB", + "atmos.rsdscs.tavg-u-hxy-u.mon.GLB", + "atmos.rsdt.tavg-u-hxy-u.mon.GLB", + "atmos.rsus.tavg-u-hxy-u.mon.GLB", + "atmos.rsuscs.tavg-u-hxy-u.mon.GLB", + "atmos.rsut.tavg-u-hxy-u.mon.GLB", + "atmos.rsutcs.tavg-u-hxy-u.mon.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.day.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.mon.GLB", + "atmos.sftlf.ti-u-hxy-u.fx.GLB", + "atmos.ta.tavg-p19-hxy-air.day.GLB", + "atmos.ta.tavg-p19-hxy-air.mon.GLB", + "atmos.ta.tpt-p3-hxy-air.6hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.day.GLB", + "atmos.tas.tavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tmax-h2m-hxy-u.day.GLB", + "atmos.tas.tmaxavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tmin-h2m-hxy-u.day.GLB", + "atmos.tas.tminavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tpt-h2m-hxy-u.3hr.GLB", + "atmos.tauu.tavg-u-hxy-u.mon.GLB", + "atmos.tauv.tavg-u-hxy-u.mon.GLB", + "atmos.ts.tavg-u-hxy-u.mon.GLB", + "atmos.ua.tavg-p19-hxy-air.day.GLB", + "atmos.ua.tavg-p19-hxy-air.mon.GLB", + "atmos.ua.tpt-p3-hxy-air.6hr.GLB", + "atmos.uas.tavg-h10m-hxy-u.day.GLB", + "atmos.uas.tavg-h10m-hxy-u.mon.GLB", + "atmos.uas.tpt-h10m-hxy-u.3hr.GLB", + "atmos.va.tavg-p19-hxy-air.day.GLB", + "atmos.va.tavg-p19-hxy-air.mon.GLB", + "atmos.va.tpt-p3-hxy-air.6hr.GLB", + "atmos.vas.tavg-h10m-hxy-u.day.GLB", + "atmos.vas.tavg-h10m-hxy-u.mon.GLB", + "atmos.vas.tpt-h10m-hxy-u.3hr.GLB", + "atmos.wap.tavg-p19-hxy-air.mon.GLB", + "atmos.wap.tavg-p19-hxy-u.day.GLB", + "atmos.zg.tavg-p19-hxy-air.day.GLB", + "atmos.zg.tavg-p19-hxy-air.mon.GLB", + "land.evspsblsoi.tavg-u-hxy-lnd.mon.GLB", + "land.evspsblveg.tavg-u-hxy-lnd.mon.GLB", + "land.lai.tavg-u-hxy-lnd.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.mon.GLB", + "land.mrros.tavg-u-hxy-lnd.mon.GLB", + "land.mrso.tavg-u-hxy-lnd.mon.GLB", + "land.mrsofc.ti-u-hxy-lnd.fx.GLB", + "land.mrsol.tavg-d10cm-hxy-lnd.mon.GLB", + "land.orog.ti-u-hxy-u.fx.GLB", + "land.rootd.ti-u-hxy-lnd.fx.GLB", + "land.sftgif.ti-u-hxy-u.fx.GLB", + "land.slthick.ti-sl-hxy-lnd.fx.GLB", + "landIce.mrfso.tavg-u-hxy-lnd.mon.GLB", + "landIce.snc.tavg-u-hxy-lnd.mon.GLB", + "landIce.snw.tavg-u-hxy-lnd.mon.GLB", + "ocean.areacello.ti-u-hxy-u.fx.GLB", + "ocean.basin.ti-u-hxy-u.fx.GLB", + "ocean.bigthetao.tavg-ol-hxy-sea.mon.GLB", + "ocean.deptho.ti-u-hxy-sea.fx.GLB", + "ocean.hfds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfgeou.ti-u-hxy-sea.fx.GLB", + "ocean.masscello.tavg-ol-hxy-sea.mon.GLB", + "ocean.masscello.ti-ol-hxy-sea.fx.GLB", + "ocean.mlotst.tavg-u-hxy-sea.mon.GLB", + "ocean.sftof.ti-u-hxy-u.fx.GLB", + "ocean.so.tavg-ol-hxy-sea.mon.GLB", + "ocean.sos.tavg-u-hxy-sea.day.GLB", + "ocean.sos.tavg-u-hxy-sea.mon.GLB", + "ocean.tauuo.tavg-u-hxy-sea.mon.GLB", + "ocean.tauvo.tavg-u-hxy-sea.mon.GLB", + "ocean.thetao.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcello.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcello.ti-ol-hxy-sea.fx.GLB", + "ocean.tos.tavg-u-hxy-sea.day.GLB", + "ocean.tos.tavg-u-hxy-sea.mon.GLB", + "ocean.umo.tavg-ol-hxy-sea.mon.GLB", + "ocean.uo.tavg-ol-hxy-sea.mon.GLB", + "ocean.vmo.tavg-ol-hxy-sea.mon.GLB", + "ocean.vo.tavg-ol-hxy-sea.mon.GLB", + "ocean.wmo.tavg-ol-hxy-sea.mon.GLB", + "ocean.wo.tavg-ol-hxy-sea.mon.GLB", + "ocean.zos.tavg-u-hxy-sea.day.GLB", + "ocean.zos.tavg-u-hxy-sea.mon.GLB", + "ocean.zostoga.tavg-u-hm-sea.mon.GLB", + "seaIce.siconc.tavg-u-hxy-u.day.GLB", + "seaIce.siconc.tavg-u-hxy-u.mon.GLB", + "seaIce.simass.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-si.mon.GLB", + "seaIce.sitimefrac.tavg-u-hxy-sea.mon.GLB", + "seaIce.siu.tavg-u-hxy-si.mon.GLB", + "seaIce.siv.tavg-u-hxy-si.mon.GLB", + "seaIce.snd.tavg-u-hxy-sn.mon.GLB", + "seaIce.ts.tavg-u-hxy-si.mon.GLB" + ], + "High": [ + "aerosol.abs550aer.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550bc.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550dust.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550no3.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550oa.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550so4.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550ss.tavg-u-hxy-u.mon.GLB", + "aerosol.airmass.tavg-al-hxy-u.mon.GLB", + "aerosol.aoanh.tavg-al-hxy-u.mon.NH", + "aerosol.bry.tavg-p39-hy-air.mon.GLB", + "aerosol.bs550aer.tpt-al-hxy-u.6hr.GLB", + "aerosol.c2h6.tavg-al-hxy-u.mon.GLB", + "aerosol.c3h6.tavg-al-hxy-u.mon.GLB", + "aerosol.c3h8.tavg-al-hxy-u.mon.GLB", + "aerosol.ccldncl.tavg-u-hxy-ccl.mon.GLB", + "aerosol.ccn.tavg-u-hxy-ccl.mon.30S-90S", + "aerosol.ccn.tavg-u-hxy-ccl.mon.GLB", + "aerosol.ccn1.tavg-al-hxy-u.mon.30S-90S", + "aerosol.ccn1.tavg-al-hxy-u.mon.GLB", + "aerosol.ccnp02.tavg-al-hxy-u.mon.30S-90S", + "aerosol.ccnp02.tavg-al-hxy-u.mon.GLB", + "aerosol.cdnc.tavg-al-hxy-u.mon.30S-90S", + "aerosol.cdnc.tavg-al-hxy-u.mon.GLB", + "aerosol.cfc114.tavg-al-hxy-u.mon.GLB", + "aerosol.ch3coch3.tavg-al-hxy-u.mon.GLB", + "aerosol.cheaqpso4.tavg-al-hxy-u.mon.GLB", + "aerosol.chegpso4.tavg-al-hxy-u.mon.GLB", + "aerosol.chepasoa.tavg-u-hxy-u.mon.GLB", + "aerosol.chepsoa.tavg-u-hxy-u.mon.GLB", + "aerosol.cly.tavg-p39-hy-air.mon.GLB", + "aerosol.co.tavg-al-hxy-u.mon.GLB", + "aerosol.co.tavg-h2m-hxy-u.day.GLB", + "aerosol.cod.tavg-u-hxy-u.day.GLB", + "aerosol.cod.tavg-u-hxy-u.mon.30S-90S", + "aerosol.cod.tavg-u-hxy-u.mon.GLB", + "aerosol.conccn.tavg-al-hxy-u.mon.GLB", + "aerosol.conccn.tpt-u-hs-u.3hr.GLB", + "aerosol.depdust.tavg-u-hxy-u.mon.GLB", + "aerosol.drybc.tavg-u-hxy-u.mon.GLB", + "aerosol.drydust.tavg-u-hxy-u.mon.GLB", + "aerosol.dryno3.tavg-u-hxy-u.mon.GLB", + "aerosol.dryo3.tavg-u-hxy-u.mon.GLB", + "aerosol.dryoa.tavg-u-hxy-u.mon.GLB", + "aerosol.dryso2.tavg-u-hxy-u.mon.GLB", + "aerosol.dryso4.tavg-u-hxy-u.mon.GLB", + "aerosol.dryss.tavg-u-hxy-u.mon.GLB", + "aerosol.ec550aer.tavg-al-hxy-u.mon.GLB", + "aerosol.ec550aer.tpt-u-hxy-u.6hr.GLB", + "aerosol.emiaco.tavg-u-hxy-u.mon.GLB", + "aerosol.emianox.tavg-u-hxy-u.mon.GLB", + "aerosol.emiaoa.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbbc.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbch4.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbco.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbdms.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbnh3.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbnox.tavg-u-hxy-u.mon.GLB", + "aerosol.emibboa.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbso2.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbvoc.tavg-u-hxy-u.mon.GLB", + "aerosol.emibc.tavg-u-hxy-u.mon.GLB", + "aerosol.emibvoc.tavg-u-hxy-u.mon.GLB", + "aerosol.emico.tavg-u-hxy-u.mon.GLB", + "aerosol.emidms.tavg-u-hxy-u.mon.30S-90S", + "aerosol.emidms.tavg-u-hxy-u.mon.GLB", + "aerosol.emidust.tavg-u-hxy-u.mon.GLB", + "aerosol.emiisop.tavg-u-hxy-u.mon.GLB", + "aerosol.emilnox.tavg-al-hxy-u.mon.GLB", + "aerosol.eminh3.tavg-u-hxy-u.mon.GLB", + "aerosol.eminox.tavg-u-hxy-u.mon.GLB", + "aerosol.emioa.tavg-u-hxy-u.mon.GLB", + "aerosol.emiso2.tavg-u-hxy-u.mon.GLB", + "aerosol.emiso4.tavg-u-hxy-u.mon.GLB", + "aerosol.emiss.tavg-u-hxy-u.mon.30S-90S", + "aerosol.emiss.tavg-u-hxy-u.mon.GLB", + "aerosol.emivoc.tavg-u-hxy-u.mon.GLB", + "aerosol.h2o.tavg-al-hxy-u.mon.GLB", + "aerosol.h2o.tavg-p39-hy-air.mon.GLB", + "aerosol.hcfc22.tavg-al-hxy-u.mon.GLB", + "aerosol.hcho.tavg-al-hxy-u.mon.GLB", + "aerosol.hcl.tavg-al-hxy-u.mon.GLB", + "aerosol.hcl.tavg-p39-hy-air.mon.GLB", + "aerosol.hfc125.tavg-al-hxy-u.mon.GLB", + "aerosol.hfc134a.tavg-al-hxy-u.mon.GLB", + "aerosol.hno3.tavg-al-hxy-u.mon.GLB", + "aerosol.hno3.tavg-p39-hy-air.mon.GLB", + "aerosol.ho2.tavg-p39-hy-air.mon.GLB", + "aerosol.isop.tavg-al-hxy-u.mon.GLB", + "aerosol.jno2.tavg-al-hxy-u.mon.GLB", + "aerosol.lossch4.tavg-al-hxy-u.mon.GLB", + "aerosol.lossco.tavg-al-hxy-u.mon.GLB", + "aerosol.lossn2o.tavg-al-hxy-u.mon.GLB", + "aerosol.lwp.tavg-u-hxy-u.mon.GLB", + "aerosol.mmraerh2o.tavg-al-hxy-u.mon.GLB", + "aerosol.mmraerh2o.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmraerh2o.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrbc.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrbc.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrbc.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrbc.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrdust.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrdust.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrdust.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrdust.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrnh4.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrnh4.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrnh4.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrnh4.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrno3.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrno3.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrno3.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrno3.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmroa.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmroa.tavg-al-hxy-u.mon.GLB", + "aerosol.mmroa.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmroa.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrpm1.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrpm1.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrpm2p5.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrpm2p5.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrso4.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrso4.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrso4.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrso4.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrsoa.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrsoa.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrsoa.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrss.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrss.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrss.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrss.tpt-h2m-hs-u.3hr.GLB", + "aerosol.nh50.tavg-al-hxy-u.mon.GLB", + "aerosol.no.tavg-al-hxy-u.mon.GLB", + "aerosol.no2.tavg-al-hxy-u.mon.GLB", + "aerosol.no2.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.noy.tavg-p39-hy-air.mon.GLB", + "aerosol.o3.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.o3.tmax-h2m-hxy-u.day.GLB", + "aerosol.o3loss.tavg-al-hxy-u.mon.GLB", + "aerosol.o3prod.tavg-al-hxy-u.mon.GLB", + "aerosol.od443aer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550aer.tavg-u-hxy-u.day.GLB", + "aerosol.od550aer.tavg-u-hxy-u.mon.30S-90S", + "aerosol.od550aer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550aerh2o.tavg-u-hxy-u.mon.GLB", + "aerosol.od550bb.tavg-u-hxy-u.mon.GLB", + "aerosol.od550bc.tavg-u-hxy-u.mon.GLB", + "aerosol.od550csaer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550dust.tavg-u-hxy-u.mon.GLB", + "aerosol.od550lt1aer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550no3.tavg-u-hxy-u.mon.GLB", + "aerosol.od550oa.tavg-u-hxy-u.mon.GLB", + "aerosol.od550so4.tavg-u-hxy-u.mon.GLB", + "aerosol.od550soa.tavg-u-hxy-u.mon.GLB", + "aerosol.od550ss.tavg-u-hxy-u.mon.GLB", + "aerosol.od865aer.tavg-u-hxy-u.mon.GLB", + "aerosol.oh.tavg-al-hxy-u.mon.GLB", + "aerosol.oh.tavg-p39-hy-air.mon.GLB", + "aerosol.pan.tavg-al-hxy-u.mon.GLB", + "aerosol.photo1d.tavg-al-hxy-u.mon.GLB", + "aerosol.pod0.tsum-u-hxy-u.mon.GLB", + "aerosol.reffccwctop.tavg-u-hxy-cl.mon.GLB", + "aerosol.reffclwtop.tavg-u-hxy-cl.mon.30S-90S", + "aerosol.reffclwtop.tavg-u-hxy-cl.mon.GLB", + "aerosol.rluscsaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rlutaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rlutcsaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rsutaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rsutcsaf.tavg-u-hxy-u.mon.GLB", + "aerosol.sfpm1.tavg-h2m-hxy-u.day.GLB", + "aerosol.sfpm10.tavg-al-hxy-u.mon.30S-90S", + "aerosol.sfpm10.tavg-al-hxy-u.mon.GLB", + "aerosol.sfpm10.tavg-h2m-hxy-u.day.GLB", + "aerosol.sfpm25.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.sfpm25.tavg-h2m-hxy-u.day.GLB", + "aerosol.so2.tavg-al-hxy-u.mon.30S-90S", + "aerosol.so2.tavg-al-hxy-u.mon.GLB", + "aerosol.so2.tavg-h2m-hxy-u.day.GLB", + "aerosol.so2.tpt-h2m-hs-u.3hr.GLB", + "aerosol.tatp.tavg-u-hxy-u.mon.GLB", + "aerosol.toz.tavg-u-hxy-u.day.GLB", + "aerosol.toz.tavg-u-hxy-u.mon.GLB", + "aerosol.tropoz.tavg-u-hxy-u.mon.GLB", + "aerosol.ttop.tavg-u-hxy-cl.mon.GLB", + "aerosol.ua.tavg-10hPa-hxy-air.day.GLB", + "aerosol.vt100.tavg-100hPa-hy-air.mon.GLB", + "aerosol.wa.tavg-al-hxy-u.mon.GLB", + "aerosol.wetbc.tavg-u-hxy-u.mon.GLB", + "aerosol.wetdust.tavg-u-hxy-u.mon.GLB", + "aerosol.wetoa.tavg-u-hxy-u.mon.GLB", + "aerosol.wetso2.tavg-u-hxy-u.mon.GLB", + "aerosol.wetso4.tavg-u-hxy-u.mon.GLB", + "aerosol.wetss.tavg-u-hxy-u.mon.GLB", + "aerosol.zg.tavg-10hPa-hxy-air.day.GLB", + "atmos.albisccp.tavg-u-hxy-cl.mon.30S-90S", + "atmos.bldep.tavg-u-hxy-u.mon.GLB", + "atmos.bldep.tmax-u-hxy-u.day.GLB", + "atmos.bldep.tmin-u-hxy-u.day.GLB", + "atmos.bldep.tpt-u-hxy-u.3hr.GLB", + "atmos.cl.tavg-al-hxy-u.day.GLB", + "atmos.cl.tavg-al-hxy-u.mon.30S-90S", + "atmos.clc.tavg-al-hxy-u.mon.30S-90S", + "atmos.clc.tavg-al-hxy-u.mon.GLB", + "atmos.clcalipso.tavg-220hPa-hxy-air.mon.30S-90S", + "atmos.clcalipso.tavg-220hPa-hxy-air.mon.GLB", + "atmos.clcalipso.tavg-560hPa-hxy-air.mon.30S-90S", + "atmos.clcalipso.tavg-560hPa-hxy-air.mon.GLB", + "atmos.clcalipso.tavg-840hPa-hxy-air.mon.30S-90S", + "atmos.clcalipso.tavg-840hPa-hxy-air.mon.GLB", + "atmos.clcalipso.tavg-h40-hxy-air.mon.30S-90S", + "atmos.clcalipso.tavg-h40-hxy-air.mon.GLB", + "atmos.cldnci.tavg-u-hxy-cl.mon.GLB", + "atmos.cldncl.tavg-u-hxy-cl.mon.GLB", + "atmos.cldnvi.tavg-u-hxy-u.day.GLB", + "atmos.cldnvi.tavg-u-hxy-u.mon.GLB", + "atmos.cli.tavg-al-hxy-u.day.GLB", + "atmos.cli.tavg-al-hxy-u.mon.30S-90S", + "atmos.clic.tavg-al-hxy-u.mon.30S-90S", + "atmos.clis.tavg-al-hxy-u.mon.30S-90S", + "atmos.clisccp.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clisccp.tavg-p7c-hxy-air.mon.GLB", + "atmos.clivi.tavg-u-hxy-u.3hr.GLB", + "atmos.clivi.tavg-u-hxy-u.day.GLB", + "atmos.clivi.tavg-u-hxy-u.mon.30S-90S", + "atmos.clivimodis.tavg-u-hxy-u.mon.30S-90S", + "atmos.clivimodis.tavg-u-hxy-u.mon.GLB", + "atmos.clmodis.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clmodis.tavg-p7c-hxy-air.mon.GLB", + "atmos.clmodisice.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clmodisice.tavg-p7c-hxy-air.mon.GLB", + "atmos.clmodisiceReff.tavg-u-hxy-u.mon.GLB", + "atmos.clmodisliquid.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clmodisliquid.tavg-p7c-hxy-air.mon.GLB", + "atmos.clmodisliquidReff.tavg-u-hxy-u.mon.GLB", + "atmos.cls.tavg-al-hxy-u.mon.30S-90S", + "atmos.clt.tavg-u-hxy-lnd.day.GLB", + "atmos.clt.tavg-u-hxy-u.1hr.30S-90S", + "atmos.clt.tavg-u-hxy-u.3hr.GLB", + "atmos.clt.tavg-u-hxy-u.mon.30S-90S", + "atmos.cltc.tavg-u-hxy-u.mon.GLB", + "atmos.cltcalipso.tavg-u-hxy-u.day.GLB", + "atmos.cltcalipso.tavg-u-hxy-u.mon.30S-90S", + "atmos.cltcalipso.tavg-u-hxy-u.mon.GLB", + "atmos.cltcalipso.tpt-u-hxy-u.3hr.GLB", + "atmos.cltisccp.tavg-u-hxy-u.day.GLB", + "atmos.cltisccp.tavg-u-hxy-u.mon.30S-90S", + "atmos.cltisccp.tavg-u-hxy-u.mon.GLB", + "atmos.cltmodis.tavg-u-hxy-u.mon.30S-90S", + "atmos.cltmodis.tavg-u-hxy-u.mon.GLB", + "atmos.clw.tavg-al-hxy-u.day.GLB", + "atmos.clw.tavg-al-hxy-u.mon.30S-90S", + "atmos.clwc.tavg-al-hxy-u.mon.30S-90S", + "atmos.clws.tavg-al-hxy-u.mon.30S-90S", + "atmos.clwvi.tavg-u-hxy-u.3hr.GLB", + "atmos.clwvi.tavg-u-hxy-u.day.GLB", + "atmos.clwvi.tavg-u-hxy-u.mon.30S-90S", + "atmos.clwvimodis.tavg-u-hxy-u.mon.30S-90S", + "atmos.clwvimodis.tavg-u-hxy-u.mon.GLB", + "atmos.co2.tavg-al-hxy-u.mon.GLB", + "atmos.co2.tavg-h2m-hxy-u.mon.GLB", + "atmos.co2.tavg-p19-hxy-air.mon.GLB", + "atmos.co2.tclm-p19-hxy-air.mon.GLB", + "atmos.co2.tclm-u-hm-u.mon.GLB", + "atmos.co23D.tavg-al-hxy-u.mon.GLB", + "atmos.co2mass.tavg-u-hm-u.mon.GLB", + "atmos.dmc.tavg-alh-hxy-u.mon.30S-90S", + "atmos.edt.tavg-al-hxy-u.mon.30S-90S", + "atmos.epfy.tavg-p39-hy-air.day.GLB", + "atmos.epfy.tavg-p39-hy-air.mon.GLB", + "atmos.epfz.tavg-p39-hy-air.day.GLB", + "atmos.epfz.tavg-p39-hy-air.mon.GLB", + "atmos.evspsbl.tavg-u-hxy-lnd.day.GLB", + "atmos.evu.tavg-al-hxy-u.mon.30S-90S", + "atmos.fco2antt.tavg-u-hxy-u.mon.GLB", + "atmos.fco2fos.tavg-u-hxy-u.mon.GLB", + "atmos.fco2nat.tavg-u-hxy-u.mon.GLB", + "atmos.hfls.tavg-u-hxy-is.mon.GRL", + "atmos.hfls.tavg-u-hxy-u.3hr.GLB", + "atmos.hfls.tavg-u-hxy-u.day.GLB", + "atmos.hfls.tavg-u-hxy-u.mon.30S-90S", + "atmos.hfss.tavg-u-hxy-u.3hr.GLB", + "atmos.hfss.tavg-u-hxy-u.day.GLB", + "atmos.hfss.tavg-u-hxy-u.mon.30S-90S", + "atmos.hur.tavg-al-hxy-u.mon.30S-90S", + "atmos.hur.tavg-al-hxy-u.mon.GLB", + "atmos.hur.tavg-p19-hxy-air.mon.30S-90S", + "atmos.hurs.tavg-h2m-hxy-u.1hr.30S-90S", + "atmos.hurs.tavg-h2m-hxy-u.mon.30S-90S", + "atmos.hurs.tmax-h2m-hxy-u.day.GLB", + "atmos.hurs.tmin-h2m-hxy-u.day.GLB", + "atmos.hurs.tpt-h2m-hxy-u.3hr.GLB", + "atmos.hus.tavg-al-hxy-u.mon.30S-90S", + "atmos.hus.tavg-al-hxy-u.mon.GLB", + "atmos.hus.tavg-p19-hxy-u.mon.30S-90S", + "atmos.hus.tpt-al-hxy-u.6hr.GLB", + "atmos.hus.tpt-p7h-hxy-air.6hr.GLB", + "atmos.huss.tavg-h2m-hxy-u.6hr.GLB", + "atmos.huss.tavg-h2m-hxy-u.mon.30S-90S", + "atmos.huss.tpt-h2m-hxy-u.1hr.GLB", + "atmos.intuadse.tavg-u-hxy-u.day.GLB", + "atmos.intuadse.tavg-u-hxy-u.mon.GLB", + "atmos.intuaw.tavg-u-hxy-u.day.GLB", + "atmos.intuaw.tavg-u-hxy-u.mon.GLB", + "atmos.intuaw.tpt-u-hxy-u.6hr.GLB", + "atmos.intvadse.tavg-u-hxy-u.day.GLB", + "atmos.intvadse.tavg-u-hxy-u.mon.GLB", + "atmos.intvaw.tavg-u-hxy-u.day.GLB", + "atmos.intvaw.tavg-u-hxy-u.mon.GLB", + "atmos.intvaw.tpt-u-hxy-u.6hr.GLB", + "atmos.loadbc.tavg-u-hxy-u.day.GLB", + "atmos.loadoa.tavg-u-hxy-u.day.GLB", + "atmos.loadpoa.tavg-u-hxy-u.day.GLB", + "atmos.mc.tavg-alh-hxy-u.mon.GLB", + "atmos.mcd.tavg-alh-hxy-u.mon.30S-90S", + "atmos.mcu.tavg-alh-hxy-u.mon.30S-90S", + "atmos.mcu.tavg-alh-hxy-u.mon.GLB", + "atmos.pctisccp.tavg-u-hxy-cl.day.GLB", + "atmos.pctisccp.tavg-u-hxy-cl.mon.30S-90S", + "atmos.pctisccp.tavg-u-hxy-cl.mon.GLB", + "atmos.pfull.tavg-al-hxy-u.day.GLB", + "atmos.pfull.tavg-al-hxy-u.mon.GLB", + "atmos.pfull.tclm-al-hxy-u.mon.30S-90S", + "atmos.phalf.tavg-alh-hxy-u.mon.GLB", + "atmos.pr.tavg-u-hxy-u.1hr.30S-90S", + "atmos.pr.tavg-u-hxy-u.mon.30S-90S", + "atmos.pr.tmax-u-hxy-u.day.GLB", + "atmos.pr.tpt-u-hxy-u.6hr.GLB", + "atmos.pr17O.tavg-u-hxy-u.mon.GLB", + "atmos.pr18O.tavg-u-hxy-u.mon.GLB", + "atmos.pr2h.tavg-u-hxy-u.mon.GLB", + "atmos.prc.tavg-u-hxy-u.day.GLB", + "atmos.prc.tavg-u-hxy-u.mon.30S-90S", + "atmos.prra.tavg-u-hxy-is.mon.GRL", + "atmos.prra.tavg-u-hxy-lnd.day.GLB", + "atmos.prra.tavg-u-hxy-u.6hr.GLB", + "atmos.prra.tavg-u-hxy-u.mon.30S-90S", + "atmos.prra.tavg-u-hxy-u.mon.GLB", + "atmos.prsn.tavg-u-hxy-is.mon.GRL", + "atmos.prsn.tavg-u-hxy-u.3hr.GLB", + "atmos.prsn.tavg-u-hxy-u.6hr.GLB", + "atmos.prsn.tavg-u-hxy-u.day.GLB", + "atmos.prsn.tavg-u-hxy-u.mon.30S-90S", + "atmos.prsn18O.tavg-u-hxy-u.mon.GLB", + "atmos.prsn2h.tavg-u-hxy-u.mon.GLB", + "atmos.prw.tavg-u-hxy-u.3hr.GLB", + "atmos.prw.tavg-u-hxy-u.day.GLB", + "atmos.prw.tavg-u-hxy-u.mon.30S-90S", + "atmos.prw.tpt-u-hxy-u.6hr.GLB", + "atmos.ps.tavg-u-hxy-u.1hr.GLB", + "atmos.ps.tavg-u-hxy-u.6hr.GLB", + "atmos.ps.tavg-u-hxy-u.mon.30S-90S", + "atmos.ps.tpt-u-hxy-u.1hr.30S-90S", + "atmos.ps.tpt-u-hxy-u.3hr.GLB", + "atmos.ps.tpt-u-hxy-u.6hr.GLB", + "atmos.psl.tavg-u-hxy-u.mon.30S-90S", + "atmos.psl.tpt-u-hxy-u.1hr.GLB", + "atmos.psl.tpt-u-hxy-u.6hr.GLB", + "atmos.ptp.tavg-u-hxy-u.mon.GLB", + "atmos.reffcclwtop.tavg-u-hxy-ccl.mon.GLB", + "atmos.reffclic.tavg-al-hxy-ccl.mon.30S-90S", + "atmos.reffclic.tavg-al-hxy-ccl.mon.GLB", + "atmos.reffclis.tavg-al-hxy-scl.mon.30S-90S", + "atmos.reffclis.tavg-al-hxy-scl.mon.GLB", + "atmos.reffclwc.tavg-al-hxy-ccl.mon.30S-90S", + "atmos.reffclwc.tavg-al-hxy-ccl.mon.GLB", + "atmos.reffclws.tavg-al-hxy-scl.mon.30S-90S", + "atmos.reffclws.tavg-al-hxy-scl.mon.GLB", + "atmos.reffsclwtop.tavg-u-hxy-scl.mon.GLB", + "atmos.rld.tavg-alh-hxy-u.mon.GLB", + "atmos.rld4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rldcs.tavg-alh-hxy-u.mon.GLB", + "atmos.rldcs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rlds.tavg-u-hxy-u.1hr.30S-90S", + "atmos.rlds.tavg-u-hxy-u.1hr.GLB", + "atmos.rlds.tavg-u-hxy-u.3hr.GLB", + "atmos.rlds.tavg-u-hxy-u.6hr.GLB", + "atmos.rlds.tavg-u-hxy-u.day.GLB", + "atmos.rlds.tavg-u-hxy-u.mon.30S-90S", + "atmos.rldscs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rls.tavg-u-hxy-u.mon.GLB", + "atmos.rlu.tavg-alh-hxy-u.mon.GLB", + "atmos.rlu4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rlucs.tavg-alh-hxy-u.mon.GLB", + "atmos.rlucs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rlus.tavg-u-hxy-u.3hr.GLB", + "atmos.rlus.tavg-u-hxy-u.day.GLB", + "atmos.rlus.tavg-u-hxy-u.mon.30S-90S", + "atmos.rlut.tavg-u-hxy-u.3hr.GLB", + "atmos.rlut.tavg-u-hxy-u.day.GLB", + "atmos.rlut.tavg-u-hxy-u.mon.30S-90S", + "atmos.rlut4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rlutcs.tavg-u-hxy-u.3hr.GLB", + "atmos.rlutcs.tavg-u-hxy-u.day.GLB", + "atmos.rlutcs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rlutcs4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rsd.tavg-alh-hxy-u.mon.GLB", + "atmos.rsd4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsdcs.tavg-alh-hxy-u.mon.GLB", + "atmos.rsdcs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsds.tavg-u-hxy-u.1hr.30S-90S", + "atmos.rsds.tavg-u-hxy-u.1hr.GLB", + "atmos.rsds.tavg-u-hxy-u.3hr.GLB", + "atmos.rsds.tavg-u-hxy-u.6hr.GLB", + "atmos.rsds.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsdscs.tavg-u-hxy-u.day.GLB", + "atmos.rsdscs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsdt.tavg-u-hxy-u.day.GLB", + "atmos.rsdt.tavg-u-hxy-u.mon.30S-90S", + "atmos.rss.tavg-u-hxy-u.mon.GLB", + "atmos.rsu.tavg-alh-hxy-u.mon.GLB", + "atmos.rsu4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsucs.tavg-alh-hxy-u.mon.GLB", + "atmos.rsucs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsus.tavg-u-hxy-u.3hr.GLB", + "atmos.rsus.tavg-u-hxy-u.day.GLB", + "atmos.rsus.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsuscs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsut.tavg-u-hxy-u.3hr.GLB", + "atmos.rsut.tavg-u-hxy-u.day.GLB", + "atmos.rsut.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsut4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rsutcs.tavg-u-hxy-u.3hr.GLB", + "atmos.rsutcs.tavg-u-hxy-u.day.GLB", + "atmos.rsutcs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsutcs4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rtmt.tavg-u-hxy-u.mon.GLB", + "atmos.rv850.tpt-850hPa-hxy-air.6hr.GLB", + "atmos.scldncl.tavg-u-hxy-scl.mon.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.1hr.30S-90S", + "atmos.sfcWind.tavg-h10m-hxy-u.6hr.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.mon.30S-90S", + "atmos.sfcWind.tmax-h10m-hxy-u.day.GLB", + "atmos.ta.tavg-700hPa-hxy-air.day.GLB", + "atmos.ta.tavg-al-hxy-u.mon.30S-90S", + "atmos.ta.tavg-al-hxy-u.mon.GLB", + "atmos.ta.tavg-p19-hxy-air.mon.30S-90S", + "atmos.ta.tavg-p39-hy-air.day.GLB", + "atmos.ta.tavg-p39-hy-air.mon.GLB", + "atmos.ta.tpt-al-hxy-u.6hr.GLB", + "atmos.ta.tpt-p5u-hxy-u.6hr.GLB", + "atmos.ta.tpt-p7h-hxy-air.6hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.1hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.6hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.mon.30S-90S", + "atmos.tas.tmaxavg-h2m-hxy-u.mon.30S-90S", + "atmos.tas.tminavg-h2m-hxy-u.mon.30S-90S", + "atmos.tauu.tavg-u-hxy-u.day.GLB", + "atmos.tauunoegw.tavg-p39-hy-air.day.GLB", + "atmos.tauunowgw.tavg-p39-hy-air.day.GLB", + "atmos.tauuogw.tavg-p39-hy-air.day.GLB", + "atmos.tauv.tavg-u-hxy-u.day.GLB", + "atmos.tauvnogw.tavg-p39-hy-air.day.GLB", + "atmos.tauvogw.tavg-p39-hy-air.day.GLB", + "atmos.tdps.tavg-h2m-hxy-u.mon.GLB", + "atmos.tnt.tavg-al-hxy-u.mon.GLB", + "atmos.tntmp.tavg-p39-hy-air.day.GLB", + "atmos.tntmp.tavg-p39-hy-air.mon.GLB", + "atmos.tntrl.tavg-al-hxy-u.mon.GLB", + "atmos.tntrl.tavg-p39-hy-air.day.GLB", + "atmos.tntrl.tavg-p39-hy-air.mon.GLB", + "atmos.tntrs.tavg-al-hxy-u.mon.GLB", + "atmos.tntrs.tavg-p39-hy-air.day.GLB", + "atmos.tntrs.tavg-p39-hy-air.mon.GLB", + "atmos.ts.tavg-u-hxy-u.6hr.GLB", + "atmos.ts.tavg-u-hxy-u.day.GLB", + "atmos.ts.tavg-u-hxy-u.mon.30S-90S", + "atmos.ts.tpt-u-hxy-u.3hr.GLB", + "atmos.ts.tpt-u-hxy-u.6hr.GLB", + "atmos.ua.tavg-al-hxy-u.mon.GLB", + "atmos.ua.tavg-p19-hxy-air.mon.30S-90S", + "atmos.ua.tavg-p39-hy-air.day.GLB", + "atmos.ua.tavg-p39-hy-air.mon.GLB", + "atmos.ua.tpt-al-hxy-u.6hr.GLB", + "atmos.ua.tpt-h100m-hxy-u.1hr.GLB", + "atmos.ua.tpt-p5u-hxy-air.6hr.GLB", + "atmos.ua.tpt-p7h-hxy-air.6hr.GLB", + "atmos.uas.tavg-h10m-hxy-u.mon.30S-90S", + "atmos.uas.tpt-h10m-hxy-u.1hr.GLB", + "atmos.uas.tpt-h10m-hxy-u.6hr.GLB", + "atmos.utendepfd.tavg-p39-hy-air.day.GLB", + "atmos.utendepfd.tavg-p39-hy-air.mon.GLB", + "atmos.utendnogw.tavg-p39-hy-air.day.GLB", + "atmos.utendnogw.tavg-p39-hy-air.mon.GLB", + "atmos.utendogw.tavg-p39-hy-air.day.GLB", + "atmos.utendogw.tavg-p39-hy-air.mon.GLB", + "atmos.utendvtem.tavg-p39-hy-air.day.GLB", + "atmos.utendwtem.tavg-p39-hy-air.day.GLB", + "atmos.va.tavg-al-hxy-u.mon.GLB", + "atmos.va.tavg-p19-hxy-air.mon.30S-90S", + "atmos.va.tavg-p39-hy-air.mon.GLB", + "atmos.va.tpt-al-hxy-u.6hr.GLB", + "atmos.va.tpt-h100m-hxy-u.1hr.GLB", + "atmos.va.tpt-p5u-hxy-air.6hr.GLB", + "atmos.va.tpt-p7h-hxy-air.6hr.GLB", + "atmos.vas.tavg-h10m-hxy-u.mon.30S-90S", + "atmos.vas.tpt-h10m-hxy-u.1hr.GLB", + "atmos.vas.tpt-h10m-hxy-u.6hr.GLB", + "atmos.vtem.tavg-p39-hy-air.day.GLB", + "atmos.vtem.tavg-p39-hy-air.mon.GLB", + "atmos.wap.tavg-p19-hxy-air.mon.30S-90S", + "atmos.wsg.tmax-h100m-hxy-u.1hr.GLB", + "atmos.wsg.tmax-h10m-hxy-u.1hr.GLB", + "atmos.wtem.tavg-p39-hy-air.day.GLB", + "atmos.wtem.tavg-p39-hy-air.mon.GLB", + "atmos.zg.tavg-1000hPa-hxy-air.day.GLB", + "atmos.zg.tavg-500hPa-hxy-air.day.GLB", + "atmos.zg.tavg-al-hxy-u.mon.GLB", + "atmos.zg.tavg-p19-hxy-air.mon.30S-90S", + "atmos.zg.tavg-p39-hy-air.day.GLB", + "atmos.zg.tavg-p39-hy-air.mon.GLB", + "atmos.zg.tpt-500hPa-hxy-air.6hr.GLB", + "atmos.zg.tpt-al-hxy-u.6hr.GLB", + "atmos.zg.tpt-p3-hxy-air.6hr.GLB", + "atmos.zg.tpt-p7h-hxy-air.6hr.GLB", + "atmos.ztp.tavg-u-hxy-u.mon.GLB", + "atmosChem.c2h4.tavg-al-hxy-u.mon.GLB", + "atmosChem.c2h5oh.tavg-al-hxy-u.mon.GLB", + "atmosChem.c4h10.tavg-al-hxy-u.mon.GLB", + "atmosChem.cfc11.tavg-u-hm-u.mon.GLB", + "atmosChem.cfc113.tavg-u-hm-u.mon.GLB", + "atmosChem.cfc12.tavg-u-hm-u.mon.GLB", + "atmosChem.ch3oh.tavg-al-hxy-u.mon.GLB", + "atmosChem.ch4.tavg-al-hxy-u.mon.GLB", + "atmosChem.ch4.tavg-p39-hy-air.mon.GLB", + "atmosChem.ch4losssoil.tavg-u-hxy-u.mon.GLB", + "atmosChem.ch4ref.ti-al-hxy-u.fx.GLB", + "atmosChem.chegph2oo1d.tavg-al-hxy-u.mon.GLB", + "atmosChem.chepnh4.tavg-al-hxy-u.mon.GLB", + "atmosChem.chepno3.tavg-al-hxy-u.mon.GLB", + "atmosChem.dms.tavg-al-hxy-u.mon.30S-90S", + "atmosChem.dms.tavg-al-hxy-u.mon.GLB", + "atmosChem.do3chm.tavg-al-hxy-u.mon.GLB", + "atmosChem.dryh2.tavg-u-hxy-u.mon.GLB", + "atmosChem.dryhno3.tavg-u-hxy-u.mon.GLB", + "atmosChem.drynh3.tavg-u-hxy-u.mon.GLB", + "atmosChem.drynh4.tavg-u-hxy-u.mon.GLB", + "atmosChem.drynoy.tavg-u-hxy-u.mon.GLB", + "atmosChem.e90inst.tpt-al-hxy-u.mon.GLB", + "atmosChem.emiach4.tavg-u-hxy-u.mon.GLB", + "atmosChem.emiavnox.tavg-al-hxy-u.mon.GLB", + "atmosChem.emic2h4.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic2h5oh.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic2h6.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic3h6.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic3h8.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic4h10.tavg-u-hxy-u.mon.GLB", + "atmosChem.emich3oh.tavg-u-hxy-u.mon.GLB", + "atmosChem.emich4.tavg-u-hxy-u.mon.GLB", + "atmosChem.emih2.tavg-u-hxy-u.mon.GLB", + "atmosChem.emilkch4.tavg-u-hxy-u.mon.GLB", + "atmosChem.h2.tavg-al-hxy-u.mon.GLB", + "atmosChem.h2loss.tavg-al-hxy-u.mon.GLB", + "atmosChem.h2prod.tavg-al-hxy-u.mon.GLB", + "atmosChem.hcfc22.tavg-u-hm-u.mon.GLB", + "atmosChem.meanage.tavg-al-hxy-u.mon.GLB", + "atmosChem.meanage.tavg-p39-hy-air.mon.GLB", + "atmosChem.n2o.tavg-al-hxy-u.mon.GLB", + "atmosChem.n2o.tavg-p39-hy-air.mon.GLB", + "atmosChem.o3.tavg-al-hxy-u.mon.GLB", + "atmosChem.o3.tavg-p19-hxy-air.mon.GLB", + "atmosChem.o3.tavg-p39-hy-air.mon.GLB", + "atmosChem.o3.tpt-al-hxy-u.mon.GLB", + "atmosChem.o3ref.tclm-al-hxy-u.fx.GLB", + "atmosChem.o3ref.ti-al-hxy-u.fx.GLB", + "atmosChem.o3ste.tavg-al-hxy-u.mon.GLB", + "atmosChem.rlutch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rlutcsch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rlutcso3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rluto3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsutch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsutcsch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsutcso3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsuto3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.stratch4loss.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropch4loss.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropch4lossoh.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropdo3chm.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropo3ste.tavg-al-hxy-u.mon.GLB", + "atmosChem.wethno3.tavg-al-hxy-u.mon.GLB", + "atmosChem.wetnh3.tavg-u-hxy-u.mon.GLB", + "atmosChem.wetnh4.tavg-u-hxy-u.mon.GLB", + "atmosChem.wetno3.tavg-al-hxy-u.mon.GLB", + "atmosChem.wetnoy.tavg-u-hxy-u.mon.GLB", + "land.albc.tavg-u-hxy-veg.mon.GLB", + "land.areacellr.ti-u-hxy-u.fx.GLB", + "land.baresoilFrac.tavg-u-hxy-u.mon.GLB", + "land.burntFractionAll.tavg-u-hxy-u.mon.GLB", + "land.cGeologicStorage.tavg-u-hxy-u.mon.GLB", + "land.cLand.tavg-u-hxy-lnd.mon.GLB", + "land.cLeaf.tavg-u-hxy-lnd.mon.GLB", + "land.cLitter.tavg-u-hxy-lnd.mon.GLB", + "land.cnc.tavg-u-hxy-u.mon.GLB", + "land.cProduct.tavg-u-hxy-lnd.mon.GLB", + "land.cRoot.tavg-u-hxy-lnd.mon.GLB", + "land.cropFrac.tavg-u-hxy-u.mon.GLB", + "land.cSoil.tavg-d100cm-hxy-lnd.mon.GLB", + "land.cSoil.tavg-sl-hxy-lnd.mon.GLB", + "land.cSoil.tavg-u-hxy-lnd.mon.GLB", + "land.cStem.tavg-u-hxy-lnd.mon.GLB", + "land.cVeg.tavg-u-hxy-lnd.mon.GLB", + "land.dcw.tavg-u-hxy-lnd.day.GLB", + "land.depthl.ti-u-hxy-u.fx.GLB", + "land.depthsl.ti-u-hxy-u.fx.GLB", + "land.dslw.tavg-u-hxy-lnd.day.GLB", + "land.evspsblpot.tavg-u-hxy-lnd.day.GLB", + "land.evspsblpot.tavg-u-hxy-lnd.mon.GLB", + "land.evspsblsoi.tavg-u-hxy-u.day.GLB", + "land.evspsblveg.tavg-u-hxy-u.day.GLB", + "land.fAnthDisturb.tavg-u-hxy-lnd.mon.GLB", + "land.fBNF.tavg-u-hxy-lnd.mon.GLB", + "land.fCLandToOcean.tavg-u-hxy-lnd.mon.GLB", + "land.fDeforestToAtmos.tavg-u-hxy-lnd.mon.GLB", + "land.fDeforestToProduct.tavg-u-hxy-lnd.mon.GLB", + "land.fFire.tavg-u-hxy-lnd.mon.GLB", + "land.fFireAll.tavg-u-hxy-lnd.mon.GLB", + "land.fFireNat.tavg-u-hxy-lnd.mon.GLB", + "land.fHarvestToAtmos.tavg-u-hxy-lnd.mon.GLB", + "land.fHarvestToGeologicStorage.tavg-u-hxy-lnd.mon.GLB", + "land.fHarvestToProduct.tavg-u-hxy-lnd.mon.GLB", + "land.fLitterSoil.tavg-u-hxy-lnd.mon.GLB", + "land.fLuc.tavg-u-hxy-lnd.mon.GLB", + "land.fN2O.tavg-u-hxy-lnd.mon.GLB", + "land.fNAnthDisturb.tavg-u-hxy-lnd.mon.GLB", + "land.fNdep.tavg-u-hxy-lnd.mon.GLB", + "land.fNfert.tavg-u-hxy-lnd.mon.GLB", + "land.fNgas.tavg-u-hxy-lnd.mon.GLB", + "land.fNgasFire.tavg-u-hxy-lnd.mon.GLB", + "land.fNLandToOcean.tavg-u-hxy-lnd.mon.GLB", + "land.fNleach.tavg-u-hxy-lnd.mon.GLB", + "land.fNLitterSoil.tavg-u-hxy-lnd.mon.GLB", + "land.fNloss.tavg-u-hxy-lnd.mon.GLB", + "land.fNnetmin.tavg-u-hxy-lnd.mon.GLB", + "land.fNOx.tavg-u-hxy-lnd.mon.GLB", + "land.fNProduct.tavg-u-hxy-lnd.mon.GLB", + "land.fNup.tavg-u-hxy-lnd.mon.GLB", + "land.fNVegLitter.tavg-u-hxy-lnd.mon.GLB", + "land.fNVegSoil.tavg-u-hxy-lnd.mon.GLB", + "land.fProductDecomp.tavg-u-hxy-lnd.mon.GLB", + "land.fVegLitter.tavg-u-hxy-lnd.mon.GLB", + "land.fVegSoil.tavg-u-hxy-lnd.mon.GLB", + "land.gpp.tavg-u-hxy-lnd.mon.GLB", + "land.gppVgt.tavg-u-hxy-multi.day.GLB", + "land.grassFrac.tavg-u-hxy-u.mon.GLB", + "land.laiVgt.tavg-u-hxy-multi.day.GLB", + "land.landCoverFrac.tavg-u-hxy-u.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.day.GLB", + "land.mrrob.tavg-u-hxy-lnd.day.GLB", + "land.mrros.tavg-u-hxy-lnd.day.GLB", + "land.mrsfl.tavg-sl-hxy-lnd.day.GLB", + "land.mrsfl.tavg-sl-hxy-lnd.mon.GLB", + "land.mrsll.tavg-sl-hxy-lnd.day.GLB", + "land.mrsll.tavg-sl-hxy-lnd.mon.GLB", + "land.mrso.tavg-u-hxy-lnd.day.GLB", + "land.mrsol.tavg-d10cm-hxy-lnd.day.GLB", + "land.mrsol.tavg-sl-hxy-lnd.day.GLB", + "land.mrsol.tavg-sl-hxy-lnd.mon.GLB", + "land.mrsol.tpt-d10cm-hxy-lnd.3hr.GLB", + "land.mrsow.tavg-u-hxy-lnd.day.GLB", + "land.mrtws.tavg-u-hxy-lnd.day.GLB", + "land.mrtws.tavg-u-hxy-lnd.mon.GLB", + "land.nbp.tavg-u-hxy-lnd.mon.GLB", + "land.nep.tavg-u-hxy-lnd.mon.GLB", + "land.nLand.tavg-u-hxy-lnd.mon.GLB", + "land.nLitter.tavg-u-hxy-lnd.mon.GLB", + "land.nMineral.tavg-u-hxy-lnd.mon.GLB", + "land.npp.tavg-u-hxy-lnd.mon.GLB", + "land.nProduct.tavg-u-hxy-lnd.mon.GLB", + "land.nSoil.tavg-u-hxy-lnd.mon.GLB", + "land.nVeg.tavg-u-hxy-lnd.mon.GLB", + "land.orog.ti-u-hxy-u.fx.30S-90S", + "land.pastureFrac.tavg-u-hxy-u.mon.GLB", + "land.prveg.tavg-u-hxy-lnd.mon.GLB", + "land.ra.tavg-u-hxy-lnd.mon.GLB", + "land.residualFrac.tavg-u-hxy-u.mon.GLB", + "land.rh.tavg-u-hxy-lnd.mon.GLB", + "land.rivi.tavg-u-hxy-lnd.day.GLB", + "land.rivo.tavg-u-hxy-lnd.day.GLB", + "land.rsds.tavg-u-hxy-lnd.mon.GLB", + "land.rsds.tavg-u-hxy-sn.mon.GLB", + "land.rsus.tavg-u-hxy-lnd.mon.GLB", + "land.rsus.tavg-u-hxy-sn.mon.GLB", + "land.sftgif.tavg-u-hxy-u.mon.GLB", + "land.sftlaf.ti-u-hxy-u.fx.GLB", + "land.shrubFrac.tavg-u-hxy-u.mon.GLB", + "land.srfrad.tavg-u-hxy-u.3hr.GLB", + "land.tas.tavg-u-hxy-u.1hr.30S-90S", + "land.tas.tavg-u-hxy-u.1hr.GLB", + "land.tran.tavg-u-hxy-lnd.mon.GLB", + "land.treeFrac.tavg-u-hxy-u.mon.GLB", + "land.tsl.tavg-sl-hxy-lnd.day.GLB", + "land.tsl.tavg-sl-hxy-lnd.mon.GLB", + "land.tslsi.tavg-u-hxy-u.day.GLB", + "land.tslsi.tpt-u-hxy-lsi.3hr.GLB", + "land.vegFrac.tavg-u-hxy-u.mon.GLB", + "land.vegHeight.tavg-u-hxy-tree.mon.GLB", + "land.vegHeight.tavg-u-hxy-veg.mon.GLB", + "land.wetlandCH4.tavg-u-hxy-lnd.mon.GLB", + "land.wtd.tavg-u-hxy-lnd.day.GLB", + "landIce.acabf.tavg-u-hxy-is.mon.GLB", + "landIce.hfdsn.tavg-u-hxy-lnd.mon.GLB", + "landIce.hfgeoubed.ti-u-hxy-gis.fx.GRL", + "landIce.hfls.tavg-u-hxy-is.mon.GLB", + "landIce.hfss.tavg-u-hxy-is.mon.GLB", + "landIce.icem.tavg-u-hxy-is.mon.GLB", + "landIce.litemptop.tavg-u-hxy-is.mon.GLB", + "landIce.lithk.ti-u-hxy-is.fx.GRL", + "landIce.lithk.ti-u-hxy-u.fx.GLB", + "landIce.mrro.tavg-u-hxy-is.mon.GLB", + "landIce.orog.tavg-u-hxy-is.mon.GLB", + "landIce.pflw.tavg-u-hxy-lnd.mon.GLB", + "landIce.prra.tavg-u-hxy-is.mon.GLB", + "landIce.prsn.tavg-u-hxy-is.mon.GLB", + "landIce.rlds.tavg-u-hxy-is.mon.GLB", + "landIce.rlus.tavg-u-hxy-is.mon.GLB", + "landIce.rsds.tavg-u-hxy-is.mon.GLB", + "landIce.rsus.tavg-u-hxy-is.mon.GLB", + "landIce.sbl.tavg-u-hxy-is.mon.GLB", + "landIce.sbl.tavg-u-hxy-lnd.mon.GLB", + "landIce.sbl.tavg-u-hxy-u.mon.GLB", + "landIce.sftflf.tavg-u-hxy-u.mon.GLB", + "landIce.sftflf.ti-u-hxy-u.fx.GLB", + "landIce.sftgrf.tavg-u-hxy-u.mon.GLB", + "landIce.sftgrf.ti-u-hxy-u.fx.GLB", + "landIce.snc.tavg-u-hxy-is.mon.GLB", + "landIce.snd.tavg-u-hxy-lnd.mon.GLB", + "landIce.snicem.tavg-u-hxy-is.mon.GLB", + "landIce.snicem.tavg-u-hxy-is.mon.GRL", + "landIce.snm.tavg-u-hxy-is.mon.GLB", + "landIce.snm.tavg-u-hxy-lnd.mon.GLB", + "landIce.snrefr.tavg-u-hxy-is.mon.GLB", + "landIce.snw.tavg-u-hxy-lnd.day.GLB", + "landIce.sootsn.tavg-u-hxy-lnd.mon.GLB", + "landIce.tas.tavg-u-hxy-is.mon.GLB", + "landIce.topg.ti-u-hxy-gis.fx.GRL", + "landIce.tpf.tavg-u-hxy-lnd.mon.GLB", + "landIce.ts.tavg-u-hxy-is.mon.GLB", + "landIce.tsn.tavg-u-hxy-is.mon.GLB", + "landIce.tsn.tavg-u-hxy-lnd.mon.GLB", + "ocean.absscint.tavg-op4-hxy-sea.mon.GLB", + "ocean.agessc.tavg-ol-hxy-sea.mon.GLB", + "ocean.bigthetao.tavg-ol-hm-sea.mon.GLB", + "ocean.bigthetao.tavg-ol-hxy-sea.dec.GLB", + "ocean.bigthetao.tavg-op20bar-hxy-sea.day.GLB", + "ocean.chcint.tavg-op4-hxy-sea.mon.GLB", + "ocean.ficeberg.tavg-ol-hxy-sea.3hr.GLB", + "ocean.ficeberg.tavg-ol-hxy-sea.mon.GLB", + "ocean.ficeberg.tavg-u-hxy-sea.mon.GLB", + "ocean.flandice.tavg-u-hxy-sea.3hr.GLB", + "ocean.flandice.tavg-u-hxy-sea.mon.GLB", + "ocean.friver.tavg-u-hxy-sea.3hr.GLB", + "ocean.friver.tavg-u-hxy-sea.mon.GLB", + "ocean.hfbasin.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpmadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpmdiff.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpsmadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfds.tavg-u-hxy-sea.3hr.GLB", + "ocean.hfds.tavg-u-hxy-sea.mon.30S-90S", + "ocean.hfgeou.tavg-u-hxy-sea.mon.GLB", + "ocean.hfrunoffds.tavg-ol-hxy-sea.3hr.GLB", + "ocean.hfx.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfx.tavg-u-hxy-sea.day.GLB", + "ocean.hfx.tavg-u-hxy-sea.mon.GLB", + "ocean.hfy.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfy.tavg-u-hxy-sea.day.GLB", + "ocean.hfy.tavg-u-hxy-sea.mon.GLB", + "ocean.htovgyre.tavg-u-hyb-sea.mon.GLB", + "ocean.htovovrt.tavg-u-hyb-sea.mon.GLB", + "ocean.masscello.tavg-ol-hxy-sea.dec.GLB", + "ocean.masso.tavg-u-hm-sea.dec.GLB", + "ocean.masso.tavg-u-hm-sea.mon.GLB", + "ocean.mlotst.tavg-u-hxy-sea.day.GLB", + "ocean.mlotst.tavg-u-hxy-sea.mon.30S-90S", + "ocean.mlotst.tmax-u-hxy-sea.mon.GLB", + "ocean.mlotst.tmin-u-hxy-sea.mon.GLB", + "ocean.mpw.tavg-u-hxy-sea.mon.GLB", + "ocean.mpw.tpt-u-hxy-sea.3hr.GLB", + "ocean.mpwswell.tavg-u-hxy-sea.mon.GLB", + "ocean.mpwswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.mpwwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.mpwwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.msftbarot.tavg-u-hxy-sea.mon.GLB", + "ocean.msftm.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftm.tavg-rho-hyb-sea.mon.GLB", + "ocean.msfty.tavg-ol-ht-sea.mon.GLB", + "ocean.msfty.tavg-rho-ht-sea.mon.GLB", + "ocean.obvfsq.tavg-ol-hxy-sea.mon.GLB", + "ocean.opottemptend.tavg-ol-hxy-sea.yr.GLB", + "ocean.pbo.tavg-u-hxy-sea.mon.GLB", + "ocean.pfscint.tavg-op4-hxy-sea.mon.GLB", + "ocean.phcint.tavg-op4-hxy-sea.mon.GLB", + "ocean.pso.tavg-u-hxy-sea.mon.GLB", + "ocean.rsds.tavg-u-hxy-ifs.mon.GLB", + "ocean.rsntds.tavg-u-hxy-sea.3hr.GLB", + "ocean.rsus.tavg-u-hxy-ifs.mon.GLB", + "ocean.scint.tavg-op4-hxy-sea.mon.GLB", + "ocean.sduo.tavg-u-hxy-sea.mon.GLB", + "ocean.sduo.tpt-u-hxy-sea.3hr.GLB", + "ocean.sdvo.tavg-u-hxy-sea.mon.GLB", + "ocean.sdvo.tpt-u-hxy-sea.3hr.GLB", + "ocean.sfdsi.tavg-u-hxy-sea.3hr.GLB", + "ocean.sfx.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfx.tavg-u-hxy-sea.mon.GLB", + "ocean.sfy.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfy.tavg-u-hxy-sea.mon.GLB", + "ocean.sltbasin.tavg-u-hyb-sea.mon.GLB", + "ocean.sltovgyre.tavg-u-hyb-sea.mon.GLB", + "ocean.sltovovrt.tavg-u-hyb-sea.mon.GLB", + "ocean.so.tavg-ol-hm-sea.mon.GLB", + "ocean.so.tavg-ol-hxy-sea.dec.GLB", + "ocean.so.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.sob.tavg-u-hxy-sea.mon.GLB", + "ocean.sos.tavg-u-hm-sea.mon.30S-90S", + "ocean.sos.tavg-u-hm-sea.mon.GLB", + "ocean.sw17O.tavg-ol-hxy-sea.mon.GLB", + "ocean.sw18O.tavg-ol-hxy-sea.mon.GLB", + "ocean.sw2H.tavg-ol-hxy-sea.mon.GLB", + "ocean.swh.tavg-u-hxy-sea.mon.GLB", + "ocean.swh.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhmax.tmax-u-hxy-sea.mon.GLB", + "ocean.swhmax.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhswell.tavg-u-hxy-sea.mon.GLB", + "ocean.swhswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.swhwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.tauuo.tavg-u-hxy-sea.3hr.GLB", + "ocean.tauuo.tavg-u-hxy-sea.dec.GLB", + "ocean.tauvo.tavg-u-hxy-sea.3hr.GLB", + "ocean.tauvo.tavg-u-hxy-sea.dec.GLB", + "ocean.thetao.tavg-ol-hm-sea.mon.GLB", + "ocean.thetao.tavg-ol-hxy-sea.dec.GLB", + "ocean.thetao.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.thetao.tavg-op20bar-hxy-sea.day.GLB", + "ocean.thkcello.tavg-ol-hxy-sea.dec.GLB", + "ocean.tob.tavg-u-hxy-sea.mon.GLB", + "ocean.tos.tavg-u-hm-sea.mon.GLB", + "ocean.tos.tavg-u-hxy-sea.mon.30S-90S", + "ocean.tos.tpt-u-hxy-sea.3hr.GLB", + "ocean.tossq.tavg-u-hxy-sea.day.GLB", + "ocean.umo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.uo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.uos.tavg-u-hxy-sea.day.GLB", + "ocean.vmo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.vo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.volcello.tavg-ol-hxy-sea.dec.GLB", + "ocean.volcello.tavg-ol-hxy-sea.mon.GLB", + "ocean.volcello.tavg-ol-hxy-sea.yr.GLB", + "ocean.volcello.ti-ol-hxy-sea.fx.GLB", + "ocean.volo.tavg-u-hm-sea.dec.GLB", + "ocean.volo.tavg-u-hm-sea.mon.GLB", + "ocean.vos.tavg-u-hxy-sea.day.GLB", + "ocean.wdir.tavg-u-hxy-sea.mon.GLB", + "ocean.wdir.tpt-u-hxy-sea.3hr.GLB", + "ocean.wdirswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wdirswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wdirwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wdirwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.wfcorr.tavg-u-hxy-sea.mon.GLB", + "ocean.wfo.tavg-u-hxy-sea.3hr.GLB", + "ocean.wfo.tavg-u-hxy-sea.mon.GLB", + "ocean.wmo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.wo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.wpdir.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdir.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpdirswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdirswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpdirwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdirwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpp.tavg-u-hxy-sea.mon.GLB", + "ocean.wpp.tpt-u-hxy-sea.3hr.GLB", + "ocean.wppswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wppswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wppwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wppwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.zos.tavg-u-hxy-sea.mon.30S-90S", + "ocean.zossq.tavg-u-hxy-sea.mon.GLB", + "ocean.zostoga.tavg-u-hm-sea.day.GLB", + "ocnBgchem.bacc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.calc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chl.tavg-d0m-hxy-sea.day.GLB", + "ocnBgchem.chl.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chl.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chlcalc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chldiat.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chldiat.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chldiaz.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chldiaz.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chlmisc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chlmisc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chlpico.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chlpico.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.detoc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dfe.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.dfe.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.dfe.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissic.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.dissic.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissoc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dmso.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.dmso.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.dpco2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.dpo2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.expc.tavg-d1000m-hxy-sea.mon.GLB", + "ocnBgchem.expc.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.expc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.expcalc.tavg-d1000m-hxy-sea.mon.GLB", + "ocnBgchem.expcalc.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.expcalc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.fgco2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fric.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.froc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fsfe.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fsn.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.graz.tavg-ol-hxy-sea.mon.30S-90S", + "ocnBgchem.graz.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.icfriver.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intdic.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intdoc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intparag.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbfe.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbn.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbp.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbsi.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpcalcite.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpn2.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpoc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpp.tavg-u-hxy-sea.day.GLB", + "ocnBgchem.intpp.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpp.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppcalc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppdiat.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppdiaz.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppmisc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppnitrate.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpppico.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.nh4.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.nh4.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.no3.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.no3.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.o2.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.ocfriver.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.ph.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.ph.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phyc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phyc.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.phyc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phycalc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phycalc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phydiat.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phydiat.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phydiaz.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phydiaz.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phymisc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phymisc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phypico.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phypico.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.po4.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.pp.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.si.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.spco2.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.spco2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.talk.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zmeso.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zmeso.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zmicro.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zmicro.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zmisc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zmisc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zooc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zooc.tavg-ol-hxy-sea.mon.GLB", + "seaIce.evspsbl.tavg-u-hxy-si.mon.GLB", + "seaIce.prra.tavg-u-hxy-si.mon.GLB", + "seaIce.prsn.tavg-u-hxy-si.mon.GLB", + "seaIce.rlds.tavg-u-hxy-si.day.GLB", + "seaIce.rlds.tavg-u-hxy-si.mon.GLB", + "seaIce.rlus.tavg-u-hxy-si.day.GLB", + "seaIce.rlus.tavg-u-hxy-si.mon.GLB", + "seaIce.rsds.tavg-u-hxy-si.day.GLB", + "seaIce.rsds.tavg-u-hxy-si.mon.GLB", + "seaIce.rsus.tavg-u-hxy-si.day.GLB", + "seaIce.rsus.tavg-u-hxy-si.mon.GLB", + "seaIce.sbl.tavg-u-hxy-si.mon.GLB", + "seaIce.siage.tavg-u-hxy-si.day.GLB", + "seaIce.siage.tavg-u-hxy-si.mon.30S-90S", + "seaIce.siarea.tavg-u-hm-u.mon.NH", + "seaIce.siarea.tavg-u-hm-u.mon.SH", + "seaIce.siareaacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.siconc.tavg-u-hxy-u.mon.30S-90S", + "seaIce.siconca.tavg-u-hxy-u.day.GLB", + "seaIce.siconca.tavg-u-hxy-u.mon.GLB", + "seaIce.sidconcdyn.tavg-u-hxy-sea.mon.GLB", + "seaIce.sidconcth.tavg-u-hxy-sea.mon.GLB", + "seaIce.sidmassdyn.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthsi.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthwat.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmeltbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmeltlat.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmelttop.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassth.tavg-u-hxy-si.mon.GLB", + "seaIce.sieqthick.tavg-u-hxy-si.mon.GLB", + "seaIce.siextent.tavg-u-hm-u.mon.NH", + "seaIce.siextent.tavg-u-hm-u.mon.SH", + "seaIce.siflcondbot.tavg-u-hxy-si.day.GLB", + "seaIce.siflcondbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflcondtop.tavg-u-hxy-si.day.GLB", + "seaIce.siflcondtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sifllattop.tavg-u-hxy-si.day.GLB", + "seaIce.sifllattop.tavg-u-hxy-si.mon.GLB", + "seaIce.siflsensbot.tavg-u-hxy-si.day.GLB", + "seaIce.siflsensbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflsenstop.tavg-u-hxy-si.day.GLB", + "seaIce.siflsenstop.tavg-u-hxy-si.mon.GLB", + "seaIce.siflswdbot.tavg-u-hxy-si.day.GLB", + "seaIce.siflswdbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sihc.tavg-u-hxy-sea.day.GLB", + "seaIce.sihc.tavg-u-hxy-sea.mon.GLB", + "seaIce.siitdconc.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdsnconc.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdsnthick.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdthick.tavg-u-hxy-si.mon.GLB", + "seaIce.simassacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.simpconc.tavg-u-hxy-si.mon.GLB", + "seaIce.sirdgconc.tavg-u-hxy-si.mon.GLB", + "seaIce.sisaltmass.tavg-u-hxy-si.mon.GLB", + "seaIce.sisndmassdyn.tavg-u-hxy-si.mon.GLB", + "seaIce.sisndmasssi.tavg-u-hxy-si.mon.GLB", + "seaIce.sisndmasswind.tavg-u-hxy-si.mon.GLB", + "seaIce.sisnhc.tavg-u-hxy-si.day.GLB", + "seaIce.sisnhc.tavg-u-hxy-si.mon.GLB", + "seaIce.sisnmass.tavg-u-hm-u.mon.NH", + "seaIce.sisnmass.tavg-u-hm-u.mon.SH", + "seaIce.sisnmassacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.sispeed.tavg-u-hxy-si.day.GLB", + "seaIce.sispeed.tavg-u-hxy-si.mon.GLB", + "seaIce.sistressave.tpt-u-hxy-si.mon.GLB", + "seaIce.sistressmax.tpt-u-hxy-si.mon.GLB", + "seaIce.sistrxdtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sistrxubot.tavg-u-hxy-si.mon.GLB", + "seaIce.sistrydtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sistryubot.tavg-u-hxy-si.mon.GLB", + "seaIce.sitempsnic.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-si.day.GLB", + "seaIce.sithick.tavg-u-hxy-si.mon.30S-90S", + "seaIce.sitimefrac.tavg-u-hxy-sea.day.GLB", + "seaIce.sitimefrac.tavg-u-hxy-sea.mon.30S-90S", + "seaIce.siu.tavg-u-hxy-si.day.GLB", + "seaIce.siu.tavg-u-hxy-si.mon.30S-90S", + "seaIce.siv.tavg-u-hxy-si.day.GLB", + "seaIce.siv.tavg-u-hxy-si.mon.30S-90S", + "seaIce.sivol.tavg-u-hm-u.mon.NH", + "seaIce.sivol.tavg-u-hm-u.mon.SH", + "seaIce.snc.tavg-u-hxy-si.mon.GLB", + "seaIce.snd.tavg-u-hxy-sn.day.GLB", + "seaIce.snd.tavg-u-hxy-sn.mon.30S-90S", + "seaIce.snm.tavg-u-hxy-si.mon.GLB", + "seaIce.snw.tavg-u-hxy-si.mon.GLB", + "seaIce.ts.tavg-u-hxy-si.day.GLB", + "seaIce.ts.tavg-u-hxy-si.mon.30S-90S" + ], + "Medium": [ + "atmos.bldep.tavg-u-hxy-u.1hr.GLB", + "atmos.clic.tpt-al-hxy-u.3hr.GLB", + "atmos.clis.tpt-al-hxy-u.3hr.GLB", + "atmos.clivi.tpt-u-hxy-u.3hr.GLB", + "atmos.clt.tpt-u-hxy-u.3hr.GLB", + "atmos.clwc.tpt-al-hxy-u.3hr.GLB", + "atmos.clws.tpt-al-hxy-u.3hr.GLB", + "atmos.clwvi.tpt-u-hxy-u.3hr.GLB", + "atmos.dtauc.tpt-al-hxy-ccl.3hr.GLB", + "atmos.dtaus.tpt-al-hxy-scl.3hr.GLB", + "atmos.hfdsnb.tavg-u-hxy-lnd.day.GLB", + "atmos.hfls.tavg-u-hxy-is.mon.ATA", + "atmos.hfls.tavg-u-hxy-u.1hr.GLB", + "atmos.hfss.tavg-u-hxy-is.mon.ATA", + "atmos.hfss.tavg-u-hxy-is.mon.GRL", + "atmos.hfss.tavg-u-hxy-u.1hr.GLB", + "atmos.hur.tavg-700hPa-hxy-air.day.GLB", + "atmos.hur.tpt-100hPa-hxy-u.6hr.GLB", + "atmos.hur.tpt-500hPa-hxy-air.6hr.GLB", + "atmos.hur.tpt-850hPa-hxy-air.6hr.GLB", + "atmos.hurs.tavg-h2m-hxy-u.1hr.GLB", + "atmos.hus.tpt-al-hxy-u.3hr.GLB", + "atmos.hus.tpt-p6-hxy-air.3hr.GLB", + "atmos.noaahi2m.tavg-h2m-hxy-u.day.GLB", + "atmos.noaahi2m.tmax-h2m-hxy-u.day.GLB", + "atmos.pfull.tpt-al-hxy-u.3hr.GLB", + "atmos.pr.tpt-u-hxy-u.3hr.GLB", + "atmos.prra.tavg-u-hxy-is.mon.ATA", + "atmos.prrsn.tavg-u-hxy-lnd.day.GLB", + "atmos.prsn.tavg-u-hxy-is.mon.ATA", + "atmos.prsnc.tavg-u-hxy-lnd.day.GLB", + "atmos.prsnsn.tavg-u-hxy-lnd.day.GLB", + "atmos.prw.tpt-u-hxy-u.3hr.GLB", + "atmos.ps.tpt-u-hxy-u.1hr.GLB", + "atmos.psitem.tavg-p39-hy-air.day.GLB", + "atmos.reffclic.tpt-al-hxy-ccl.3hr.GLB", + "atmos.reffclis.tpt-al-hxy-scl.3hr.GLB", + "atmos.reffclwc.tpt-al-hxy-ccl.3hr.GLB", + "atmos.reffclws.tpt-al-hxy-scl.3hr.GLB", + "atmos.rlds.tavg-u-hxy-is.mon.ATA", + "atmos.rlds.tavg-u-hxy-is.mon.GRL", + "atmos.rlds.tpt-u-hxy-u.3hr.GLB", + "atmos.rldscs.tavg-u-hxy-u.day.GLB", + "atmos.rldscs.tpt-u-hxy-u.3hr.GLB", + "atmos.rls.tavg-u-hxy-u.day.GLB", + "atmos.rlus.tavg-u-hxy-is.mon.ATA", + "atmos.rlus.tavg-u-hxy-is.mon.GRL", + "atmos.rlus.tavg-u-hxy-u.1hr.GLB", + "atmos.rlut.tpt-u-hxy-u.3hr.GLB", + "atmos.rlutcs.tpt-u-hxy-u.3hr.GLB", + "atmos.rsds.tavg-u-hxy-is.mon.ATA", + "atmos.rsds.tavg-u-hxy-is.mon.GRL", + "atmos.rsds.tpt-u-hxy-u.3hr.GLB", + "atmos.rsdscs.tpt-u-hxy-u.3hr.GLB", + "atmos.rsdsdiff.tavg-u-hxy-u.1hr.GLB", + "atmos.rsdsdiff.tavg-u-hxy-u.day.GLB", + "atmos.rss.tavg-u-hxy-u.day.GLB", + "atmos.rsus.tavg-u-hxy-is.mon.ATA", + "atmos.rsus.tavg-u-hxy-is.mon.GRL", + "atmos.rsus.tavg-u-hxy-u.1hr.GLB", + "atmos.rsut.tpt-u-hxy-u.3hr.GLB", + "atmos.rsutcs.tpt-u-hxy-u.3hr.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.1hr.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.3hr.GLB", + "atmos.snmsl.tavg-u-hxy-lnd.day.GLB", + "atmos.snrefr.tavg-u-hxy-lnd.day.GLB", + "atmos.snwc.tavg-u-hxy-lnd.day.GLB", + "atmos.ta.tpt-al-hxy-u.3hr.GLB", + "atmos.ta.tpt-p6-hxy-air.3hr.GLB", + "atmos.tas.tavg-h2m-hm-is.mon.ATA", + "atmos.tas.tavg-h2m-hm-is.mon.GRL", + "atmos.tauunoegw.tavg-p19-hxy-air.mon.GLB", + "atmos.tauunowgw.tavg-p19-hxy-air.mon.GLB", + "atmos.tauuogw.tavg-p19-hxy-air.mon.GLB", + "atmos.tauupbl.tavg-u-hxy-u.day.GLB", + "atmos.tauvnogw.tavg-p19-hxy-air.mon.GLB", + "atmos.tauvogw.tavg-p19-hxy-air.mon.GLB", + "atmos.tauvpbl.tavg-u-hxy-u.day.GLB", + "atmos.tntc.tavg-p39-hy-air.mon.GLB", + "atmos.tntnogw.tavg-p39-hy-air.mon.GLB", + "atmos.tntogw.tavg-p39-hy-air.mon.GLB", + "atmos.tntrlcs.tavg-p39-hy-air.mon.GLB", + "atmos.tntrscs.tavg-p39-hy-air.mon.GLB", + "atmos.tntscp.tavg-p39-hy-air.mon.GLB", + "atmos.ts.tavg-u-hxy-is.mon.ATA", + "atmos.ts.tavg-u-hxy-is.mon.GRL", + "atmos.ts.tavg-u-hxy-sn.day.GLB", + "atmos.ts.tavg-u-hxy-u.1hr.GLB", + "atmos.ua.tavg-h100m-hxy-u.3hr.GLB", + "atmos.ua.tpt-200hPa-hxy-u.6hr.GLB", + "atmos.ua.tpt-p6-hxy-air.3hr.GLB", + "atmos.utendnogw.tavg-p19-hxy-air.day.GLB", + "atmos.utendnogw.tavg-p19-hxy-air.mon.GLB", + "atmos.utendogw.tavg-p19-hxy-air.day.GLB", + "atmos.utendogw.tavg-p19-hxy-air.mon.GLB", + "atmos.va.tavg-h100m-hxy-u.3hr.GLB", + "atmos.va.tpt-200hPa-hxy-u.6hr.GLB", + "atmos.va.tpt-p6-hxy-air.3hr.GLB", + "atmos.vtendnogw.tavg-p19-hxy-air.day.GLB", + "atmos.vtendnogw.tavg-p19-hxy-air.mon.GLB", + "atmos.vtendogw.tavg-p19-hxy-air.day.GLB", + "atmos.vtendogw.tavg-p19-hxy-air.mon.GLB", + "atmos.wap.tpt-p6-hxy-air.3hr.GLB", + "atmos.wbgt.tavg-h2m-hxy-u.day.GLB", + "atmos.wbgt.tmax-h2m-hxy-u.day.GLB", + "atmos.wsg.tmax-h100m-hxy-u.mon.GLB", + "atmos.wsg.tmax-h10m-hxy-u.mon.GLB", + "atmos.zg.tpt-700hPa-hxy-u.6hr.GLB", + "atmos.zg.tpt-925hPa-hxy-u.6hr.GLB", + "atmosChem.flashrate.tavg-u-hxy-u.day.GLB", + "land.areacellg.ti-u-hxy-u.fx.ATA", + "land.areacellg.ti-u-hxy-u.fx.GRL", + "land.baresoilFrac.tavg-u-hxy-u.yr.GLB", + "land.cLitterCwd.tavg-u-hxy-lnd.mon.GLB", + "land.cLitterLut.tpt-u-hxy-multi.yr.GLB", + "land.cLitterSubSurf.tavg-u-hxy-lnd.mon.GLB", + "land.cLitterSurf.tavg-u-hxy-lnd.mon.GLB", + "land.cOther.tavg-u-hxy-lnd.mon.GLB", + "land.cProductLut.tpt-u-hxy-multi.yr.GLB", + "land.cropFrac.tavg-u-hxy-u.yr.GLB", + "land.cropFracC3.tavg-u-hxy-u.mon.GLB", + "land.cropFracC4.tavg-u-hxy-u.mon.GLB", + "land.cSoilLut.tpt-u-hxy-multi.yr.GLB", + "land.cSoilPools.tavg-u-hxy-lnd.mon.GLB", + "land.cVeg.tavg-u-hxy-ng.mon.GLB", + "land.cVeg.tavg-u-hxy-shb.mon.GLB", + "land.cVeg.tavg-u-hxy-tree.mon.GLB", + "land.cVegLut.tpt-u-hxy-multi.yr.GLB", + "land.dgw.tavg-u-hxy-lnd.day.GLB", + "land.drivw.tavg-u-hxy-lnd.day.GLB", + "land.dsn.tavg-u-hxy-lnd.day.GLB", + "land.dsw.tavg-u-hxy-lnd.day.GLB", + "land.esn.tavg-u-hxy-sn.day.GLB", + "land.evspsblsoi.tavg-u-hxy-u.3hr.GLB", + "land.evspsblveg.tavg-u-hxy-u.3hr.GLB", + "land.fLitterFire.tavg-u-hxy-lnd.mon.GLB", + "land.fLulccAtmLut.tavg-u-hxy-multi.mon.GLB", + "land.fNgasNonFire.tavg-u-hxy-lnd.mon.GLB", + "land.fracInLut.tsum-u-hxy-lnd.yr.GLB", + "land.fracLut.tpt-u-hxy-u.mon.GLB", + "land.fracLut.tpt-u-hxy-u.yr.GLB", + "land.fracOutLut.tsum-u-hxy-lnd.yr.GLB", + "land.fVegFire.tavg-u-hxy-lnd.mon.GLB", + "land.fVegLitterMortality.tavg-u-hxy-lnd.mon.GLB", + "land.fVegLitterSenescence.tavg-u-hxy-lnd.mon.GLB", + "land.fVegSoilMortality.tavg-u-hxy-lnd.mon.GLB", + "land.fVegSoilSenescence.tavg-u-hxy-lnd.mon.GLB", + "land.gpp.tavg-u-hxy-ng.mon.GLB", + "land.gpp.tavg-u-hxy-shb.mon.GLB", + "land.gpp.tavg-u-hxy-tree.mon.GLB", + "land.gppLut.tavg-u-hxy-multi.mon.GLB", + "land.grassFrac.tavg-u-hxy-u.yr.GLB", + "land.grassFracC3.tavg-u-hxy-u.mon.GLB", + "land.grassFracC4.tavg-u-hxy-u.mon.GLB", + "land.hfdsl.tavg-u-hxy-lnd.3hr.GLB", + "land.hflsLut.tavg-u-hxy-multi.mon.GLB", + "land.hfssLut.tavg-u-hxy-multi.mon.GLB", + "land.irrDem.tavg-u-hxy-u.day.GLB", + "land.irrGw.tavg-u-hxy-u.day.GLB", + "land.irrLut.tavg-u-hxy-multi.mon.GLB", + "land.irrLut.tavg-u-hxy-u.day.GLB", + "land.irrSurf.tavg-u-hxy-u.day.GLB", + "land.laiLut.tavg-u-hxy-multi.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.3hr.GLB", + "land.mrros.tavg-u-hxy-lnd.3hr.GLB", + "land.mrsol.tavg-d100cm-hxy-lnd.3hr.GLB", + "land.mrsolLut.tavg-d10cm-hxy-multi.mon.GLB", + "land.nbpLut.tavg-u-hxy-multi.mon.GLB", + "land.nLeaf.tavg-u-hxy-lnd.mon.GLB", + "land.nLitterCwd.tavg-u-hxy-lnd.mon.GLB", + "land.nLitterSubSurf.tavg-u-hxy-lnd.mon.GLB", + "land.nLitterSurf.tavg-u-hxy-lnd.mon.GLB", + "land.nMineralNH4.tavg-u-hxy-lnd.mon.GLB", + "land.nMineralNO3.tavg-u-hxy-lnd.mon.GLB", + "land.nOther.tavg-u-hxy-lnd.mon.GLB", + "land.npp.tavg-u-hxy-ng.mon.GLB", + "land.npp.tavg-u-hxy-shb.mon.GLB", + "land.npp.tavg-u-hxy-tree.mon.GLB", + "land.nppLeaf.tavg-u-hxy-lnd.mon.GLB", + "land.nppLut.tavg-u-hxy-multi.mon.GLB", + "land.nppOther.tavg-u-hxy-lnd.mon.GLB", + "land.nppRoot.tavg-u-hxy-lnd.mon.GLB", + "land.nppStem.tavg-u-hxy-lnd.mon.GLB", + "land.nppVgt.tavg-u-hxy-multi.day.GLB", + "land.nRoot.tavg-u-hxy-lnd.mon.GLB", + "land.nStem.tavg-u-hxy-lnd.mon.GLB", + "land.orog.tavg-u-hxy-is.mon.ATA", + "land.orog.tavg-u-hxy-is.mon.GRL", + "land.orog.tavg-u-hxy-is.yr.ATA", + "land.orog.tavg-u-hxy-is.yr.GRL", + "land.pastureFracC3.tavg-u-hxy-u.mon.GLB", + "land.pastureFracC4.tavg-u-hxy-u.mon.GLB", + "land.qgwr.tavg-u-hxy-lnd.day.GLB", + "land.ra.tavg-u-hxy-ng.mon.GLB", + "land.ra.tavg-u-hxy-shb.mon.GLB", + "land.ra.tavg-u-hxy-tree.mon.GLB", + "land.raLeaf.tavg-u-hxy-lnd.mon.GLB", + "land.raLut.tavg-u-hxy-multi.mon.GLB", + "land.raOther.tavg-u-hxy-lnd.mon.GLB", + "land.raRoot.tavg-u-hxy-lnd.mon.GLB", + "land.raStem.tavg-u-hxy-lnd.mon.GLB", + "land.raVgt.tavg-u-hxy-multi.day.GLB", + "land.rh.tavg-u-hxy-ng.mon.GLB", + "land.rh.tavg-u-hxy-shb.mon.GLB", + "land.rh.tavg-u-hxy-tree.mon.GLB", + "land.rhLitter.tavg-u-hxy-lnd.mon.GLB", + "land.rhLut.tavg-u-hxy-multi.mon.GLB", + "land.rhSoil.tavg-u-hxy-lnd.mon.GLB", + "land.rhVgt.tavg-u-hxy-multi.day.GLB", + "land.rzwc.tavg-u-hxy-lnd.day.GLB", + "land.sftgif.tavg-u-hxy-u.yr.ATA", + "land.sftgif.tavg-u-hxy-u.yr.GRL", + "land.shrubFrac.tavg-u-hxy-u.yr.GLB", + "land.sw.tavg-u-hxy-lnd.day.GLB", + "land.sweLut.tavg-u-hxy-multi.mon.GLB", + "land.tasLut.tavg-h2m-hxy-multi.mon.GLB", + "land.tran.tavg-u-hxy-u.3hr.GLB", + "land.treeFrac.tavg-u-hxy-u.yr.GLB", + "land.treeFracBdlDcd.tavg-u-hxy-u.mon.GLB", + "land.treeFracBdlEvg.tavg-u-hxy-u.mon.GLB", + "land.treeFracNdlDcd.tavg-u-hxy-u.mon.GLB", + "land.treeFracNdlEvg.tavg-u-hxy-u.mon.GLB", + "land.tsLut.tavg-u-hxy-multi.mon.GLB", + "land.vegHeight.tavg-u-hxy-ng.mon.GLB", + "land.vegHeight.tavg-u-hxy-shb.mon.GLB", + "land.wetlandCH4cons.tavg-u-hxy-lnd.mon.GLB", + "land.wetlandCH4prod.tavg-u-hxy-lnd.mon.GLB", + "land.wetlandFrac.tavg-u-hxy-u.mon.GLB", + "landIce.acabf.tavg-u-hxy-is.mon.ATA", + "landIce.acabf.tavg-u-hxy-is.mon.GRL", + "landIce.acabf.tavg-u-hxy-is.yr.ATA", + "landIce.acabf.tavg-u-hxy-is.yr.GRL", + "landIce.agesno.tavg-u-hxy-lnd.mon.GLB", + "landIce.hfdsn.tavg-u-hxy-lnd.day.GLB", + "landIce.hfgeoubed.tavg-u-hxy-gis.yr.ATA", + "landIce.hfgeoubed.tavg-u-hxy-gis.yr.GRL", + "landIce.hfgeoubed.ti-u-hxy-gis.fx.ATA", + "landIce.iareafl.tavg-u-hm-fis.yr.ATA", + "landIce.iareafl.tavg-u-hm-fis.yr.GRL", + "landIce.iareagr.tavg-u-hm-gis.yr.ATA", + "landIce.iareagr.tavg-u-hm-gis.yr.GRL", + "landIce.icem.tavg-u-hxy-is.mon.ATA", + "landIce.icem.tavg-u-hxy-is.mon.GRL", + "landIce.libmassbf.tavg-u-hxy-fis.mon.ATA", + "landIce.libmassbf.tavg-u-hxy-fis.mon.GRL", + "landIce.libmassbf.tavg-u-hxy-fis.yr.ATA", + "landIce.libmassbf.tavg-u-hxy-fis.yr.GRL", + "landIce.libmassbf.tavg-u-hxy-gis.mon.ATA", + "landIce.libmassbf.tavg-u-hxy-gis.mon.GRL", + "landIce.libmassbf.tavg-u-hxy-gis.yr.ATA", + "landIce.libmassbf.tavg-u-hxy-gis.yr.GRL", + "landIce.licalvf.tavg-u-hxy-is.mon.ATA", + "landIce.licalvf.tavg-u-hxy-is.mon.GRL", + "landIce.licalvf.tavg-u-hxy-is.yr.ATA", + "landIce.licalvf.tavg-u-hxy-is.yr.GRL", + "landIce.lifmassbf.tavg-u-hxy-is.mon.ATA", + "landIce.lifmassbf.tavg-u-hxy-is.mon.GRL", + "landIce.lifmassbf.tavg-u-hxy-is.yr.ATA", + "landIce.lifmassbf.tavg-u-hxy-is.yr.GRL", + "landIce.lim.tavg-u-hm-is.yr.ATA", + "landIce.lim.tavg-u-hm-is.yr.GRL", + "landIce.limnsw.tavg-u-hm-is.yr.ATA", + "landIce.limnsw.tavg-u-hm-is.yr.GRL", + "landIce.litempbot.tavg-u-hxy-fis.mon.ATA", + "landIce.litempbot.tavg-u-hxy-fis.mon.GRL", + "landIce.litempbot.tavg-u-hxy-fis.yr.ATA", + "landIce.litempbot.tavg-u-hxy-fis.yr.GRL", + "landIce.litempbot.tavg-u-hxy-gis.mon.ATA", + "landIce.litempbot.tavg-u-hxy-gis.mon.GRL", + "landIce.litempbot.tavg-u-hxy-gis.yr.ATA", + "landIce.litempbot.tavg-u-hxy-gis.yr.GRL", + "landIce.litemptop.tavg-u-hxy-is.mon.ATA", + "landIce.litemptop.tavg-u-hxy-is.mon.GRL", + "landIce.litemptop.tavg-u-hxy-is.yr.ATA", + "landIce.litemptop.tavg-u-hxy-is.yr.GRL", + "landIce.lithk.tavg-u-hxy-is.yr.ATA", + "landIce.lithk.tavg-u-hxy-is.yr.GRL", + "landIce.lithk.ti-u-hxy-is.fx.ATA", + "landIce.lwsnl.tavg-u-hxy-lnd.day.GLB", + "landIce.lwsnl.tavg-u-hxy-lnd.mon.GLB", + "landIce.modelcellareai.tavg-u-hxy-u.yr.ATA", + "landIce.modelcellareai.tavg-u-hxy-u.yr.GRL", + "landIce.mrroLi.tavg-u-hxy-is.mon.ATA", + "landIce.mrroLi.tavg-u-hxy-is.mon.GRL", + "landIce.pflw.tavg-u-hxy-lnd.day.GLB", + "landIce.sbl.tavg-u-hxy-is.mon.ATA", + "landIce.sbl.tavg-u-hxy-is.mon.GRL", + "landIce.sbl.tavg-u-hxy-u.day.GLB", + "landIce.sftflf.tavg-u-hxy-u.yr.ATA", + "landIce.sftflf.tavg-u-hxy-u.yr.GRL", + "landIce.sftgrf.tavg-u-hxy-u.yr.ATA", + "landIce.sftgrf.tavg-u-hxy-u.yr.GRL", + "landIce.snc.tavg-u-hxy-is.mon.ATA", + "landIce.snc.tavg-u-hxy-is.mon.GRL", + "landIce.snc.tavg-u-hxy-is.yr.ATA", + "landIce.snc.tavg-u-hxy-is.yr.GRL", + "landIce.snc.tavg-u-hxy-lnd.day.GLB", + "landIce.snd.tavg-u-hxy-lnd.day.GLB", + "landIce.snicem.tavg-u-hxy-is.mon.ATA", + "landIce.snm.tavg-u-hxy-is.mon.ATA", + "landIce.snm.tavg-u-hxy-is.mon.GRL", + "landIce.snm.tavg-u-hxy-lnd.day.GLB", + "landIce.snrefr.tavg-u-hxy-is.mon.ATA", + "landIce.snrefr.tavg-u-hxy-is.mon.GRL", + "landIce.strbasemag.tavg-u-hxy-is.yr.ATA", + "landIce.strbasemag.tavg-u-hxy-is.yr.GRL", + "landIce.tendacabf.tavg-u-hm-is.yr.ATA", + "landIce.tendacabf.tavg-u-hm-is.yr.GRL", + "landIce.tendlibmassbf.tavg-u-hm-is.yr.ATA", + "landIce.tendlibmassbf.tavg-u-hm-is.yr.GRL", + "landIce.tendlicalvf.tavg-u-hm-is.yr.ATA", + "landIce.tendlicalvf.tavg-u-hm-is.yr.GRL", + "landIce.topg.tavg-u-hxy-gis.yr.ATA", + "landIce.topg.tavg-u-hxy-gis.yr.GRL", + "landIce.topg.ti-u-hxy-gis.fx.ATA", + "landIce.tpf.tavg-u-hxy-lnd.day.GLB", + "landIce.tsn.tavg-u-hxy-is.mon.ATA", + "landIce.tsn.tavg-u-hxy-is.mon.GRL", + "landIce.tsn.tavg-u-hxy-lnd.day.GLB", + "landIce.xvelbase.tavg-u-hxy-is.yr.ATA", + "landIce.xvelbase.tavg-u-hxy-is.yr.GRL", + "landIce.xvelmean.tavg-u-hxy-is.yr.ATA", + "landIce.xvelmean.tavg-u-hxy-is.yr.GRL", + "landIce.xvelsurf.tavg-u-hxy-is.yr.ATA", + "landIce.xvelsurf.tavg-u-hxy-is.yr.GRL", + "landIce.yvelbase.tavg-u-hxy-is.yr.ATA", + "landIce.yvelbase.tavg-u-hxy-is.yr.GRL", + "landIce.yvelmean.tavg-u-hxy-is.yr.ATA", + "landIce.yvelmean.tavg-u-hxy-is.yr.GRL", + "landIce.yvelsurf.tavg-u-hxy-is.yr.ATA", + "landIce.yvelsurf.tavg-u-hxy-is.yr.GRL", + "landIce.zvelbase.tavg-u-hxy-is.yr.ATA", + "landIce.zvelbase.tavg-u-hxy-is.yr.GRL", + "landIce.zvelsurf.tavg-u-hxy-is.yr.ATA", + "landIce.zvelsurf.tavg-u-hxy-is.yr.GRL", + "ocean.evspsbl.tavg-u-hxy-ifs.mon.GLB", + "ocean.hfacrossline.tavg-u-ht-sea.mon.GLB", + "ocean.hfevapds.tavg-u-hxy-ifs.mon.GLB", + "ocean.hfibthermds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfibthermds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfrainds.tavg-u-hxy-ifs.mon.GLB", + "ocean.hfrunoffds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfrunoffds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfsnthermds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfsnthermds.tavg-u-hxy-sea.mon.GLB", + "ocean.mfo.tavg-u-ht-sea.mon.GLB", + "ocean.sf6.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfacrossline.tavg-u-ht-sea.mon.GLB", + "ocean.sfdsi.tavg-u-hxy-sea.mon.GLB", + "ocean.sfriver.tavg-u-hxy-sea.mon.GLB", + "ocean.siflfwbot.tavg-u-hxy-sea.mon.GLB", + "ocean.so.tavg-ol-hxy-sea.day.GLB", + "ocean.t17d.tavg-u-hxy-sea.mon.GLB", + "ocean.t20d.tavg-u-hxy-sea.mon.GLB", + "ocean.tnkebto.tavg-u-hxy-sea.yr.GLB", + "ocean.vsf.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfcorr.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfevap.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfpr.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfriver.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfsit.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.arag.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.arag.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.calc.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.calc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chl.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.chlcalc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.detoc.tavg-ol-hxy-sea.day.GLB", + "ocnBgchem.dissoc.tavg-ol-hxy-sea.day.GLB", + "ocnBgchem.dmso.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.epn.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.epp.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.exparagob.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.expcalcob.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.expcob.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.expfeob.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.expnob.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.exppob.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.expsiob.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fgdms.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.frfe.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.frn.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppcalc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppdiat.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppdiaz.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppmisc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppnano.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppnitrate.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intpppico.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limfecalc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limfediat.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limfediaz.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limfemisc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limfepico.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limirrcalc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limirrdiat.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limirrdiaz.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limirrmisc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limirrpico.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limncalc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limndiat.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limndiaz.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limnmisc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limnpico.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.o2.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.o2sat.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.ph.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.pp.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.sialgc.tavg-u-hxy-si.mon.GLB", + "ocnBgchem.sichl.tavg-u-hxy-si.mon.GLB", + "ocnBgchem.sigpp.tavg-u-hxy-si.mon.GLB", + "ocnBgchem.sino3.tavg-u-hxy-si.mon.GLB", + "ocnBgchem.sisi.tavg-u-hxy-si.mon.GLB", + "seaIce.sfdsi.tavg-u-hxy-si.mon.GLB", + "seaIce.siage.tavg-u-hxy-si.mon.GLB", + "seaIce.siarea.tavg-u-hm-u.day.NH", + "seaIce.siarea.tavg-u-hm-u.day.SH", + "seaIce.sicompstren.tavg-u-hxy-si.mon.GLB", + "seaIce.sidivvel.tpt-u-hxy-si.mon.GLB", + "seaIce.sidmasstranx.tavg-u-hxy-u.mon.GLB", + "seaIce.sidmasstrany.tavg-u-hxy-u.mon.GLB", + "seaIce.sidragbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidragtop.tavg-u-hxy-si.mon.GLB", + "seaIce.siextent.tavg-u-hm-u.day.NH", + "seaIce.siextent.tavg-u-hm-u.day.SH", + "seaIce.sifb.tavg-u-hxy-si.day.GLB", + "seaIce.sifb.tavg-u-hxy-si.mon.GLB", + "seaIce.siflfwbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflfwdrain.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcecoriolx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcecorioly.tavg-u-hxy-si.mon.GLB", + "seaIce.siforceintstrx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforceintstry.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcetiltx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcetilty.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdconc.tavg-u-hxy-si.day.GLB", + "seaIce.siitdsnconc.tavg-u-hxy-si.day.GLB", + "seaIce.siitdsnthick.tavg-u-hxy-si.day.GLB", + "seaIce.siitdthick.tavg-u-hxy-si.day.GLB", + "seaIce.simpconc.tavg-u-hxy-si.day.GLB", + "seaIce.simpeffconc.tavg-u-hxy-si.day.GLB", + "seaIce.simpeffconc.tavg-u-hxy-si.mon.GLB", + "seaIce.simprefrozen.tavg-u-hxy-simp.day.GLB", + "seaIce.simprefrozen.tavg-u-hxy-simp.mon.GLB", + "seaIce.simpthick.tavg-u-hxy-si.day.GLB", + "seaIce.simpthick.tavg-u-hxy-simp.mon.GLB", + "seaIce.sirdgconc.tavg-u-hxy-si.day.GLB", + "seaIce.sisali.tavg-u-hxy-si.day.GLB", + "seaIce.sisali.tavg-u-hxy-si.mon.GLB", + "seaIce.sisaltmass.tavg-u-hxy-si.day.GLB", + "seaIce.sishearvel.tpt-u-hxy-si.mon.GLB", + "seaIce.sisnmass.tavg-u-hm-u.day.NH", + "seaIce.sisnmass.tavg-u-hm-u.day.SH", + "seaIce.sitempbot.tavg-u-hxy-si.day.GLB", + "seaIce.sitempbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sitempsnic.tavg-u-hxy-si.day.GLB", + "seaIce.sithick.tavg-u-hxy-sir.day.GLB", + "seaIce.sithick.tavg-u-hxy-sir.mon.GLB", + "seaIce.sivol.tavg-u-hm-u.day.NH", + "seaIce.sivol.tavg-u-hm-u.day.SH" + ], + "Low": [ + "aerosol.sfpm1.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.sfpm10.tavg-h2m-hxy-u.1hr.GLB", + "atmos.hurs.tmin-h2m-hxy-crp.day.GLB", + "atmos.pr.tavg-u-hxy-crp.day.GLB", + "atmos.tas.tmax-h2m-hxy-crp.day.GLB", + "atmos.tas.tmin-h2m-hxy-crp.day.GLB", + "atmosChem.drynh3.tavg-u-hxy-u.day.GLB", + "atmosChem.drynh4.tavg-u-hxy-u.day.GLB", + "atmosChem.drynoy.tavg-u-hxy-u.day.GLB", + "atmosChem.flashrate.tavg-u-hxy-u.mon.GLB", + "atmosChem.wetnh3.tavg-u-hxy-u.day.GLB", + "atmosChem.wetnh4.tavg-u-hxy-u.day.GLB", + "atmosChem.wetnoy.tavg-u-hxy-u.day.GLB", + "land.c13Land.tavg-u-hxy-lnd.mon.GLB", + "land.c13Litter.tavg-u-hxy-lnd.mon.GLB", + "land.c13Soil.tavg-u-hxy-lnd.mon.GLB", + "land.c13Veg.tavg-u-hxy-lnd.mon.GLB", + "land.c14Land.tavg-u-hxy-lnd.mon.GLB", + "land.c14Litter.tavg-u-hxy-lnd.mon.GLB", + "land.c14Soil.tavg-u-hxy-lnd.mon.GLB", + "land.c14Veg.tavg-u-hxy-lnd.mon.GLB", + "land.c3PftFrac.tavg-u-hxy-u.mon.GLB", + "land.c4PftFrac.tavg-u-hxy-u.mon.GLB", + "land.gppc13.tavg-u-hxy-lnd.mon.GLB", + "land.gppc14.tavg-u-hxy-lnd.mon.GLB", + "land.lai.tavg-u-hxy-lnd.day.GLB", + "land.netAtmosLandC13Flux.tavg-u-hxy-lnd.mon.GLB", + "land.netAtmosLandC14Flux.tavg-u-hxy-lnd.mon.GLB", + "land.rac13.tavg-u-hxy-lnd.mon.GLB", + "land.rac14.tavg-u-hxy-lnd.mon.GLB", + "land.rhc13.tavg-u-hxy-lnd.mon.GLB", + "land.rhc14.tavg-u-hxy-lnd.mon.GLB", + "ocean.difmxybo.tavg-ol-hxy-sea.yr.GLB", + "ocean.difmxylo.tavg-ol-hxy-sea.yr.GLB", + "ocean.diftrblo.tavg-ol-hxy-sea.yr.GLB", + "ocean.diftrelo.tavg-ol-hxy-sea.yr.GLB", + "ocean.difvho.tavg-ol-hxy-sea.yr.GLB", + "ocean.difvso.tavg-ol-hxy-sea.yr.GLB", + "ocean.dispkexyfo.tavg-u-hxy-sea.yr.GLB", + "ocean.dxto.ti-u-hxy-u.fx.GLB", + "ocean.dxuo.ti-u-hxy-u.fx.GLB", + "ocean.dxvo.ti-u-hxy-u.fx.GLB", + "ocean.dyto.ti-u-hxy-u.fx.GLB", + "ocean.dyuo.ti-u-hxy-u.fx.GLB", + "ocean.dyvo.ti-u-hxy-u.fx.GLB", + "ocean.mlotstsq.tavg-u-hxy-sea.mon.GLB", + "ocean.msftmmpa.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftmmpa.tavg-rho-hyb-sea.mon.GLB", + "ocean.msftmsmpa.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftypa.tavg-ol-ht-sea.mon.GLB", + "ocean.msftypa.tavg-rho-ht-sea.mon.GLB", + "ocean.ocontempdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontempmint.tavg-u-hxy-sea.yr.GLB", + "ocean.ocontemppadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemppmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemppsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemprmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemptend.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottempdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottempmint.tavg-u-hxy-sea.yr.GLB", + "ocean.opottemppadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemppmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemppsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemprmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemptend.tavg-ol-hxy-sea.dec.GLB", + "ocean.osaltdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpsmadvect.tavg-ol-hxy-sea.mon.GLB", + "ocean.osaltpsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltrmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osalttend.tavg-ol-hxy-sea.yr.GLB", + "ocean.rsdo.tavg-ol-hxy-sea.day.GLB", + "ocean.rsdoabsorb.tavg-ol-hxy-sea.yr.GLB", + "ocean.somint.tavg-u-hxy-sea.yr.GLB", + "ocean.sossq.tavg-u-hxy-sea.mon.GLB", + "ocean.thkcelluo.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcellvo.tavg-ol-hxy-sea.mon.GLB", + "ocean.tnpeo.tavg-u-hxy-sea.yr.GLB", + "ocean.tossq.tavg-u-hxy-sea.mon.GLB", + "ocean.wo.tavg-ol-hxy-sea.day.GLB", + "ocnBgchem.dissi13c.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.dissi13c.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissi14c.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissi14cabio.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.dissi14cabio.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.expcob.tavg-u-hxy-sea.day.GLB", + "ocnBgchem.fg13co2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fg14co2abio.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intpoc.tavg-u-hxy-sea.day.GLB", + "ocnBgchem.o2.tavg-d0m-hxy-sea.day.GLB", + "ocnBgchem.o2min.tavg-u-hxy-sea.day.GLB", + "ocnBgchem.phyc.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.phycalc.tavg-ol-hxy-sea.day.GLB", + "ocnBgchem.phydiat.tavg-d0m-hxy-sea.day.GLB", + "ocnBgchem.phydiaz.tavg-d0m-hxy-sea.day.GLB", + "ocnBgchem.phymisc.tavg-d0m-hxy-sea.day.GLB", + "ocnBgchem.phynano.tavg-u-hxy-sea.day.GLB", + "ocnBgchem.phypico.tavg-ol-hxy-sea.day.GLB", + "ocnBgchem.zmeso.tavg-ol-hxy-sea.day.GLB", + "ocnBgchem.zmicro.tavg-ol-hxy-sea.day.GLB", + "ocnBgchem.zooc.tavg-ol-hxy-sea.day.GLB" + ] + }, + "scenariomip5": { + "Core": [ + "atmos.areacella.ti-u-hxy-u.fx.GLB", + "atmos.cl.tavg-al-hxy-u.mon.GLB", + "atmos.cli.tavg-al-hxy-u.mon.GLB", + "atmos.clivi.tavg-u-hxy-u.mon.GLB", + "atmos.clt.tavg-u-hxy-u.day.GLB", + "atmos.clt.tavg-u-hxy-u.mon.GLB", + "atmos.clw.tavg-al-hxy-u.mon.GLB", + "atmos.clwvi.tavg-u-hxy-u.mon.GLB", + "atmos.evspsbl.tavg-u-hxy-u.mon.GLB", + "atmos.hfls.tavg-u-hxy-u.mon.GLB", + "atmos.hfss.tavg-u-hxy-u.mon.GLB", + "atmos.hur.tavg-p19-hxy-air.mon.GLB", + "atmos.hur.tavg-p19-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.6hr.GLB", + "atmos.hurs.tavg-h2m-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.mon.GLB", + "atmos.hus.tavg-p19-hxy-u.day.GLB", + "atmos.hus.tavg-p19-hxy-u.mon.GLB", + "atmos.huss.tavg-h2m-hxy-u.day.GLB", + "atmos.huss.tavg-h2m-hxy-u.mon.GLB", + "atmos.huss.tpt-h2m-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.1hr.GLB", + "atmos.pr.tavg-u-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.day.GLB", + "atmos.pr.tavg-u-hxy-u.mon.GLB", + "atmos.prc.tavg-u-hxy-u.mon.GLB", + "atmos.prsn.tavg-u-hxy-u.mon.GLB", + "atmos.prw.tavg-u-hxy-u.mon.GLB", + "atmos.ps.tavg-u-hxy-u.day.GLB", + "atmos.ps.tavg-u-hxy-u.mon.GLB", + "atmos.psl.tavg-u-hxy-u.day.GLB", + "atmos.psl.tavg-u-hxy-u.mon.GLB", + "atmos.rlds.tavg-u-hxy-u.mon.GLB", + "atmos.rldscs.tavg-u-hxy-u.mon.GLB", + "atmos.rlus.tavg-u-hxy-u.mon.GLB", + "atmos.rluscs.tavg-u-hxy-u.mon.GLB", + "atmos.rlut.tavg-u-hxy-u.mon.GLB", + "atmos.rlutcs.tavg-u-hxy-u.mon.GLB", + "atmos.rsds.tavg-u-hxy-u.day.GLB", + "atmos.rsds.tavg-u-hxy-u.mon.GLB", + "atmos.rsdscs.tavg-u-hxy-u.mon.GLB", + "atmos.rsdt.tavg-u-hxy-u.mon.GLB", + "atmos.rsus.tavg-u-hxy-u.mon.GLB", + "atmos.rsuscs.tavg-u-hxy-u.mon.GLB", + "atmos.rsut.tavg-u-hxy-u.mon.GLB", + "atmos.rsutcs.tavg-u-hxy-u.mon.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.day.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.mon.GLB", + "atmos.sftlf.ti-u-hxy-u.fx.GLB", + "atmos.ta.tavg-p19-hxy-air.day.GLB", + "atmos.ta.tavg-p19-hxy-air.mon.GLB", + "atmos.ta.tpt-p3-hxy-air.6hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.day.GLB", + "atmos.tas.tavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tmax-h2m-hxy-u.day.GLB", + "atmos.tas.tmaxavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tmin-h2m-hxy-u.day.GLB", + "atmos.tas.tminavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tpt-h2m-hxy-u.3hr.GLB", + "atmos.tauu.tavg-u-hxy-u.mon.GLB", + "atmos.tauv.tavg-u-hxy-u.mon.GLB", + "atmos.ts.tavg-u-hxy-u.mon.GLB", + "atmos.ua.tavg-p19-hxy-air.day.GLB", + "atmos.ua.tavg-p19-hxy-air.mon.GLB", + "atmos.ua.tpt-p3-hxy-air.6hr.GLB", + "atmos.uas.tavg-h10m-hxy-u.day.GLB", + "atmos.uas.tavg-h10m-hxy-u.mon.GLB", + "atmos.uas.tpt-h10m-hxy-u.3hr.GLB", + "atmos.va.tavg-p19-hxy-air.day.GLB", + "atmos.va.tavg-p19-hxy-air.mon.GLB", + "atmos.va.tpt-p3-hxy-air.6hr.GLB", + "atmos.vas.tavg-h10m-hxy-u.day.GLB", + "atmos.vas.tavg-h10m-hxy-u.mon.GLB", + "atmos.vas.tpt-h10m-hxy-u.3hr.GLB", + "atmos.wap.tavg-p19-hxy-air.mon.GLB", + "atmos.wap.tavg-p19-hxy-u.day.GLB", + "atmos.zg.tavg-p19-hxy-air.day.GLB", + "atmos.zg.tavg-p19-hxy-air.mon.GLB", + "land.evspsblsoi.tavg-u-hxy-lnd.mon.GLB", + "land.evspsblveg.tavg-u-hxy-lnd.mon.GLB", + "land.lai.tavg-u-hxy-lnd.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.mon.GLB", + "land.mrros.tavg-u-hxy-lnd.mon.GLB", + "land.mrso.tavg-u-hxy-lnd.mon.GLB", + "land.mrsofc.ti-u-hxy-lnd.fx.GLB", + "land.mrsol.tavg-d10cm-hxy-lnd.mon.GLB", + "land.orog.ti-u-hxy-u.fx.GLB", + "land.rootd.ti-u-hxy-lnd.fx.GLB", + "land.sftgif.ti-u-hxy-u.fx.GLB", + "land.slthick.ti-sl-hxy-lnd.fx.GLB", + "landIce.mrfso.tavg-u-hxy-lnd.mon.GLB", + "landIce.snc.tavg-u-hxy-lnd.mon.GLB", + "landIce.snw.tavg-u-hxy-lnd.mon.GLB", + "ocean.areacello.ti-u-hxy-u.fx.GLB", + "ocean.basin.ti-u-hxy-u.fx.GLB", + "ocean.bigthetao.tavg-ol-hxy-sea.mon.GLB", + "ocean.deptho.ti-u-hxy-sea.fx.GLB", + "ocean.hfds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfgeou.ti-u-hxy-sea.fx.GLB", + "ocean.masscello.tavg-ol-hxy-sea.mon.GLB", + "ocean.masscello.ti-ol-hxy-sea.fx.GLB", + "ocean.mlotst.tavg-u-hxy-sea.mon.GLB", + "ocean.sftof.ti-u-hxy-u.fx.GLB", + "ocean.so.tavg-ol-hxy-sea.mon.GLB", + "ocean.sos.tavg-u-hxy-sea.day.GLB", + "ocean.sos.tavg-u-hxy-sea.mon.GLB", + "ocean.tauuo.tavg-u-hxy-sea.mon.GLB", + "ocean.tauvo.tavg-u-hxy-sea.mon.GLB", + "ocean.thetao.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcello.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcello.ti-ol-hxy-sea.fx.GLB", + "ocean.tos.tavg-u-hxy-sea.day.GLB", + "ocean.tos.tavg-u-hxy-sea.mon.GLB", + "ocean.umo.tavg-ol-hxy-sea.mon.GLB", + "ocean.uo.tavg-ol-hxy-sea.mon.GLB", + "ocean.vmo.tavg-ol-hxy-sea.mon.GLB", + "ocean.vo.tavg-ol-hxy-sea.mon.GLB", + "ocean.wmo.tavg-ol-hxy-sea.mon.GLB", + "ocean.wo.tavg-ol-hxy-sea.mon.GLB", + "ocean.zos.tavg-u-hxy-sea.day.GLB", + "ocean.zos.tavg-u-hxy-sea.mon.GLB", + "ocean.zostoga.tavg-u-hm-sea.mon.GLB", + "seaIce.siconc.tavg-u-hxy-u.day.GLB", + "seaIce.siconc.tavg-u-hxy-u.mon.GLB", + "seaIce.simass.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-si.mon.GLB", + "seaIce.sitimefrac.tavg-u-hxy-sea.mon.GLB", + "seaIce.siu.tavg-u-hxy-si.mon.GLB", + "seaIce.siv.tavg-u-hxy-si.mon.GLB", + "seaIce.snd.tavg-u-hxy-sn.mon.GLB", + "seaIce.ts.tavg-u-hxy-si.mon.GLB" + ], + "High": [ + "aerosol.abs550aer.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550bc.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550dust.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550no3.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550oa.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550so4.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550ss.tavg-u-hxy-u.mon.GLB", + "aerosol.airmass.tavg-al-hxy-u.mon.GLB", + "aerosol.aoanh.tavg-al-hxy-u.mon.NH", + "aerosol.bry.tavg-p39-hy-air.mon.GLB", + "aerosol.bs550aer.tpt-al-hxy-u.6hr.GLB", + "aerosol.c2h6.tavg-al-hxy-u.mon.GLB", + "aerosol.c3h6.tavg-al-hxy-u.mon.GLB", + "aerosol.c3h8.tavg-al-hxy-u.mon.GLB", + "aerosol.ccldncl.tavg-u-hxy-ccl.mon.GLB", + "aerosol.ccn.tavg-u-hxy-ccl.mon.30S-90S", + "aerosol.ccn.tavg-u-hxy-ccl.mon.GLB", + "aerosol.ccn1.tavg-al-hxy-u.mon.30S-90S", + "aerosol.ccn1.tavg-al-hxy-u.mon.GLB", + "aerosol.ccnp02.tavg-al-hxy-u.mon.30S-90S", + "aerosol.ccnp02.tavg-al-hxy-u.mon.GLB", + "aerosol.cdnc.tavg-al-hxy-u.mon.30S-90S", + "aerosol.cdnc.tavg-al-hxy-u.mon.GLB", + "aerosol.cfc114.tavg-al-hxy-u.mon.GLB", + "aerosol.ch3coch3.tavg-al-hxy-u.mon.GLB", + "aerosol.cheaqpso4.tavg-al-hxy-u.mon.GLB", + "aerosol.chegpso4.tavg-al-hxy-u.mon.GLB", + "aerosol.chepasoa.tavg-u-hxy-u.mon.GLB", + "aerosol.chepsoa.tavg-u-hxy-u.mon.GLB", + "aerosol.cly.tavg-p39-hy-air.mon.GLB", + "aerosol.co.tavg-al-hxy-u.mon.GLB", + "aerosol.co.tavg-h2m-hxy-u.day.GLB", + "aerosol.cod.tavg-u-hxy-u.day.GLB", + "aerosol.cod.tavg-u-hxy-u.mon.30S-90S", + "aerosol.cod.tavg-u-hxy-u.mon.GLB", + "aerosol.conccn.tavg-al-hxy-u.mon.GLB", + "aerosol.conccn.tpt-u-hs-u.3hr.GLB", + "aerosol.depdust.tavg-u-hxy-u.mon.GLB", + "aerosol.drybc.tavg-u-hxy-u.mon.GLB", + "aerosol.drydust.tavg-u-hxy-u.mon.GLB", + "aerosol.dryno3.tavg-u-hxy-u.mon.GLB", + "aerosol.dryo3.tavg-u-hxy-u.mon.GLB", + "aerosol.dryoa.tavg-u-hxy-u.mon.GLB", + "aerosol.dryso2.tavg-u-hxy-u.mon.GLB", + "aerosol.dryso4.tavg-u-hxy-u.mon.GLB", + "aerosol.dryss.tavg-u-hxy-u.mon.GLB", + "aerosol.ec550aer.tavg-al-hxy-u.mon.GLB", + "aerosol.ec550aer.tpt-u-hxy-u.6hr.GLB", + "aerosol.emiaco.tavg-u-hxy-u.mon.GLB", + "aerosol.emianox.tavg-u-hxy-u.mon.GLB", + "aerosol.emiaoa.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbbc.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbch4.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbco.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbdms.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbnh3.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbnox.tavg-u-hxy-u.mon.GLB", + "aerosol.emibboa.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbso2.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbvoc.tavg-u-hxy-u.mon.GLB", + "aerosol.emibc.tavg-u-hxy-u.mon.GLB", + "aerosol.emibvoc.tavg-u-hxy-u.mon.GLB", + "aerosol.emico.tavg-u-hxy-u.mon.GLB", + "aerosol.emidms.tavg-u-hxy-u.mon.30S-90S", + "aerosol.emidms.tavg-u-hxy-u.mon.GLB", + "aerosol.emidust.tavg-u-hxy-u.mon.GLB", + "aerosol.emiisop.tavg-u-hxy-u.mon.GLB", + "aerosol.emilnox.tavg-al-hxy-u.mon.GLB", + "aerosol.eminh3.tavg-u-hxy-u.mon.GLB", + "aerosol.eminox.tavg-u-hxy-u.mon.GLB", + "aerosol.emioa.tavg-u-hxy-u.mon.GLB", + "aerosol.emiso2.tavg-u-hxy-u.mon.GLB", + "aerosol.emiso4.tavg-u-hxy-u.mon.GLB", + "aerosol.emiss.tavg-u-hxy-u.mon.30S-90S", + "aerosol.emiss.tavg-u-hxy-u.mon.GLB", + "aerosol.emivoc.tavg-u-hxy-u.mon.GLB", + "aerosol.h2o.tavg-al-hxy-u.mon.GLB", + "aerosol.h2o.tavg-p39-hy-air.mon.GLB", + "aerosol.hcfc22.tavg-al-hxy-u.mon.GLB", + "aerosol.hcho.tavg-al-hxy-u.mon.GLB", + "aerosol.hcl.tavg-al-hxy-u.mon.GLB", + "aerosol.hcl.tavg-p39-hy-air.mon.GLB", + "aerosol.hfc125.tavg-al-hxy-u.mon.GLB", + "aerosol.hfc134a.tavg-al-hxy-u.mon.GLB", + "aerosol.hno3.tavg-al-hxy-u.mon.GLB", + "aerosol.hno3.tavg-p39-hy-air.mon.GLB", + "aerosol.ho2.tavg-p39-hy-air.mon.GLB", + "aerosol.isop.tavg-al-hxy-u.mon.GLB", + "aerosol.jno2.tavg-al-hxy-u.mon.GLB", + "aerosol.lossch4.tavg-al-hxy-u.mon.GLB", + "aerosol.lossco.tavg-al-hxy-u.mon.GLB", + "aerosol.lossn2o.tavg-al-hxy-u.mon.GLB", + "aerosol.lwp.tavg-u-hxy-u.mon.GLB", + "aerosol.mmraerh2o.tavg-al-hxy-u.mon.GLB", + "aerosol.mmraerh2o.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmraerh2o.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrbc.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrbc.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrbc.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrbc.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrdust.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrdust.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrdust.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrdust.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrnh4.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrnh4.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrnh4.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrnh4.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrno3.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrno3.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrno3.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrno3.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmroa.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmroa.tavg-al-hxy-u.mon.GLB", + "aerosol.mmroa.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmroa.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrpm1.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrpm1.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrpm2p5.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrpm2p5.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrso4.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrso4.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrso4.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrso4.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrsoa.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrsoa.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrsoa.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrss.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrss.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrss.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrss.tpt-h2m-hs-u.3hr.GLB", + "aerosol.nh50.tavg-al-hxy-u.mon.GLB", + "aerosol.no.tavg-al-hxy-u.mon.GLB", + "aerosol.no2.tavg-al-hxy-u.mon.GLB", + "aerosol.no2.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.noy.tavg-p39-hy-air.mon.GLB", + "aerosol.o3.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.o3.tmax-h2m-hxy-u.day.GLB", + "aerosol.o3loss.tavg-al-hxy-u.mon.GLB", + "aerosol.o3prod.tavg-al-hxy-u.mon.GLB", + "aerosol.od443aer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550aer.tavg-u-hxy-u.day.GLB", + "aerosol.od550aer.tavg-u-hxy-u.mon.30S-90S", + "aerosol.od550aer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550aerh2o.tavg-u-hxy-u.mon.GLB", + "aerosol.od550bb.tavg-u-hxy-u.mon.GLB", + "aerosol.od550bc.tavg-u-hxy-u.mon.GLB", + "aerosol.od550csaer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550dust.tavg-u-hxy-u.mon.GLB", + "aerosol.od550lt1aer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550no3.tavg-u-hxy-u.mon.GLB", + "aerosol.od550oa.tavg-u-hxy-u.mon.GLB", + "aerosol.od550so4.tavg-u-hxy-u.mon.GLB", + "aerosol.od550soa.tavg-u-hxy-u.mon.GLB", + "aerosol.od550ss.tavg-u-hxy-u.mon.GLB", + "aerosol.od865aer.tavg-u-hxy-u.mon.GLB", + "aerosol.oh.tavg-al-hxy-u.mon.GLB", + "aerosol.oh.tavg-p39-hy-air.mon.GLB", + "aerosol.pan.tavg-al-hxy-u.mon.GLB", + "aerosol.photo1d.tavg-al-hxy-u.mon.GLB", + "aerosol.pod0.tsum-u-hxy-u.mon.GLB", + "aerosol.reffccwctop.tavg-u-hxy-cl.mon.GLB", + "aerosol.reffclwtop.tavg-u-hxy-cl.mon.30S-90S", + "aerosol.reffclwtop.tavg-u-hxy-cl.mon.GLB", + "aerosol.rluscsaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rlutaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rlutcsaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rsutaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rsutcsaf.tavg-u-hxy-u.mon.GLB", + "aerosol.sfpm1.tavg-h2m-hxy-u.day.GLB", + "aerosol.sfpm10.tavg-al-hxy-u.mon.30S-90S", + "aerosol.sfpm10.tavg-al-hxy-u.mon.GLB", + "aerosol.sfpm10.tavg-h2m-hxy-u.day.GLB", + "aerosol.sfpm25.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.sfpm25.tavg-h2m-hxy-u.day.GLB", + "aerosol.so2.tavg-al-hxy-u.mon.30S-90S", + "aerosol.so2.tavg-al-hxy-u.mon.GLB", + "aerosol.so2.tavg-h2m-hxy-u.day.GLB", + "aerosol.so2.tpt-h2m-hs-u.3hr.GLB", + "aerosol.tatp.tavg-u-hxy-u.mon.GLB", + "aerosol.toz.tavg-u-hxy-u.day.GLB", + "aerosol.toz.tavg-u-hxy-u.mon.GLB", + "aerosol.tropoz.tavg-u-hxy-u.mon.GLB", + "aerosol.ttop.tavg-u-hxy-cl.mon.GLB", + "aerosol.ua.tavg-10hPa-hxy-air.day.GLB", + "aerosol.vt100.tavg-100hPa-hy-air.mon.GLB", + "aerosol.wa.tavg-al-hxy-u.mon.GLB", + "aerosol.wetbc.tavg-u-hxy-u.mon.GLB", + "aerosol.wetdust.tavg-u-hxy-u.mon.GLB", + "aerosol.wetoa.tavg-u-hxy-u.mon.GLB", + "aerosol.wetso2.tavg-u-hxy-u.mon.GLB", + "aerosol.wetso4.tavg-u-hxy-u.mon.GLB", + "aerosol.wetss.tavg-u-hxy-u.mon.GLB", + "aerosol.zg.tavg-10hPa-hxy-air.day.GLB", + "atmos.albisccp.tavg-u-hxy-cl.mon.30S-90S", + "atmos.bldep.tavg-u-hxy-u.mon.GLB", + "atmos.bldep.tmax-u-hxy-u.day.GLB", + "atmos.bldep.tmin-u-hxy-u.day.GLB", + "atmos.bldep.tpt-u-hxy-u.3hr.GLB", + "atmos.cl.tavg-al-hxy-u.day.GLB", + "atmos.cl.tavg-al-hxy-u.mon.30S-90S", + "atmos.clc.tavg-al-hxy-u.mon.30S-90S", + "atmos.clc.tavg-al-hxy-u.mon.GLB", + "atmos.clcalipso.tavg-220hPa-hxy-air.mon.30S-90S", + "atmos.clcalipso.tavg-220hPa-hxy-air.mon.GLB", + "atmos.clcalipso.tavg-560hPa-hxy-air.mon.30S-90S", + "atmos.clcalipso.tavg-560hPa-hxy-air.mon.GLB", + "atmos.clcalipso.tavg-840hPa-hxy-air.mon.30S-90S", + "atmos.clcalipso.tavg-840hPa-hxy-air.mon.GLB", + "atmos.clcalipso.tavg-h40-hxy-air.mon.30S-90S", + "atmos.clcalipso.tavg-h40-hxy-air.mon.GLB", + "atmos.cldnci.tavg-u-hxy-cl.mon.GLB", + "atmos.cldncl.tavg-u-hxy-cl.mon.GLB", + "atmos.cldnvi.tavg-u-hxy-u.day.GLB", + "atmos.cldnvi.tavg-u-hxy-u.mon.GLB", + "atmos.cli.tavg-al-hxy-u.day.GLB", + "atmos.cli.tavg-al-hxy-u.mon.30S-90S", + "atmos.clic.tavg-al-hxy-u.mon.30S-90S", + "atmos.clis.tavg-al-hxy-u.mon.30S-90S", + "atmos.clisccp.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clisccp.tavg-p7c-hxy-air.mon.GLB", + "atmos.clivi.tavg-u-hxy-u.3hr.GLB", + "atmos.clivi.tavg-u-hxy-u.day.GLB", + "atmos.clivi.tavg-u-hxy-u.mon.30S-90S", + "atmos.clivimodis.tavg-u-hxy-u.mon.30S-90S", + "atmos.clivimodis.tavg-u-hxy-u.mon.GLB", + "atmos.clmodis.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clmodis.tavg-p7c-hxy-air.mon.GLB", + "atmos.clmodisice.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clmodisice.tavg-p7c-hxy-air.mon.GLB", + "atmos.clmodisiceReff.tavg-u-hxy-u.mon.GLB", + "atmos.clmodisliquid.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clmodisliquid.tavg-p7c-hxy-air.mon.GLB", + "atmos.clmodisliquidReff.tavg-u-hxy-u.mon.GLB", + "atmos.cls.tavg-al-hxy-u.mon.30S-90S", + "atmos.clt.tavg-u-hxy-lnd.day.GLB", + "atmos.clt.tavg-u-hxy-u.1hr.30S-90S", + "atmos.clt.tavg-u-hxy-u.3hr.GLB", + "atmos.clt.tavg-u-hxy-u.mon.30S-90S", + "atmos.cltc.tavg-u-hxy-u.mon.GLB", + "atmos.cltcalipso.tavg-u-hxy-u.day.GLB", + "atmos.cltcalipso.tavg-u-hxy-u.mon.30S-90S", + "atmos.cltcalipso.tavg-u-hxy-u.mon.GLB", + "atmos.cltcalipso.tpt-u-hxy-u.3hr.GLB", + "atmos.cltisccp.tavg-u-hxy-u.day.GLB", + "atmos.cltisccp.tavg-u-hxy-u.mon.30S-90S", + "atmos.cltisccp.tavg-u-hxy-u.mon.GLB", + "atmos.cltmodis.tavg-u-hxy-u.mon.30S-90S", + "atmos.cltmodis.tavg-u-hxy-u.mon.GLB", + "atmos.clw.tavg-al-hxy-u.day.GLB", + "atmos.clw.tavg-al-hxy-u.mon.30S-90S", + "atmos.clwc.tavg-al-hxy-u.mon.30S-90S", + "atmos.clws.tavg-al-hxy-u.mon.30S-90S", + "atmos.clwvi.tavg-u-hxy-u.3hr.GLB", + "atmos.clwvi.tavg-u-hxy-u.day.GLB", + "atmos.clwvi.tavg-u-hxy-u.mon.30S-90S", + "atmos.clwvimodis.tavg-u-hxy-u.mon.30S-90S", + "atmos.clwvimodis.tavg-u-hxy-u.mon.GLB", + "atmos.co2.tavg-al-hxy-u.mon.GLB", + "atmos.co2.tavg-h2m-hxy-u.mon.GLB", + "atmos.co2.tavg-p19-hxy-air.mon.GLB", + "atmos.co2.tclm-p19-hxy-air.mon.GLB", + "atmos.co2.tclm-u-hm-u.mon.GLB", + "atmos.co23D.tavg-al-hxy-u.mon.GLB", + "atmos.co2mass.tavg-u-hm-u.mon.GLB", + "atmos.dmc.tavg-alh-hxy-u.mon.30S-90S", + "atmos.edt.tavg-al-hxy-u.mon.30S-90S", + "atmos.epfy.tavg-p39-hy-air.day.GLB", + "atmos.epfy.tavg-p39-hy-air.mon.GLB", + "atmos.epfz.tavg-p39-hy-air.day.GLB", + "atmos.epfz.tavg-p39-hy-air.mon.GLB", + "atmos.evspsbl.tavg-u-hxy-lnd.day.GLB", + "atmos.evu.tavg-al-hxy-u.mon.30S-90S", + "atmos.fco2antt.tavg-u-hxy-u.mon.GLB", + "atmos.fco2fos.tavg-u-hxy-u.mon.GLB", + "atmos.fco2nat.tavg-u-hxy-u.mon.GLB", + "atmos.hfls.tavg-u-hxy-is.mon.GRL", + "atmos.hfls.tavg-u-hxy-u.3hr.GLB", + "atmos.hfls.tavg-u-hxy-u.day.GLB", + "atmos.hfls.tavg-u-hxy-u.mon.30S-90S", + "atmos.hfss.tavg-u-hxy-u.3hr.GLB", + "atmos.hfss.tavg-u-hxy-u.day.GLB", + "atmos.hfss.tavg-u-hxy-u.mon.30S-90S", + "atmos.hur.tavg-al-hxy-u.mon.30S-90S", + "atmos.hur.tavg-al-hxy-u.mon.GLB", + "atmos.hur.tavg-p19-hxy-air.mon.30S-90S", + "atmos.hurs.tavg-h2m-hxy-u.1hr.30S-90S", + "atmos.hurs.tavg-h2m-hxy-u.mon.30S-90S", + "atmos.hurs.tmax-h2m-hxy-u.day.GLB", + "atmos.hurs.tmin-h2m-hxy-u.day.GLB", + "atmos.hurs.tpt-h2m-hxy-u.3hr.GLB", + "atmos.hus.tavg-al-hxy-u.mon.30S-90S", + "atmos.hus.tavg-al-hxy-u.mon.GLB", + "atmos.hus.tavg-p19-hxy-u.mon.30S-90S", + "atmos.hus.tpt-al-hxy-u.6hr.GLB", + "atmos.hus.tpt-p7h-hxy-air.6hr.GLB", + "atmos.huss.tavg-h2m-hxy-u.6hr.GLB", + "atmos.huss.tavg-h2m-hxy-u.mon.30S-90S", + "atmos.huss.tpt-h2m-hxy-u.1hr.GLB", + "atmos.intuadse.tavg-u-hxy-u.day.GLB", + "atmos.intuadse.tavg-u-hxy-u.mon.GLB", + "atmos.intuaw.tavg-u-hxy-u.day.GLB", + "atmos.intuaw.tavg-u-hxy-u.mon.GLB", + "atmos.intuaw.tpt-u-hxy-u.6hr.GLB", + "atmos.intvadse.tavg-u-hxy-u.day.GLB", + "atmos.intvadse.tavg-u-hxy-u.mon.GLB", + "atmos.intvaw.tavg-u-hxy-u.day.GLB", + "atmos.intvaw.tavg-u-hxy-u.mon.GLB", + "atmos.intvaw.tpt-u-hxy-u.6hr.GLB", + "atmos.loadbc.tavg-u-hxy-u.day.GLB", + "atmos.loadoa.tavg-u-hxy-u.day.GLB", + "atmos.loadpoa.tavg-u-hxy-u.day.GLB", + "atmos.mc.tavg-alh-hxy-u.mon.GLB", + "atmos.mcd.tavg-alh-hxy-u.mon.30S-90S", + "atmos.mcu.tavg-alh-hxy-u.mon.30S-90S", + "atmos.mcu.tavg-alh-hxy-u.mon.GLB", + "atmos.pctisccp.tavg-u-hxy-cl.day.GLB", + "atmos.pctisccp.tavg-u-hxy-cl.mon.30S-90S", + "atmos.pctisccp.tavg-u-hxy-cl.mon.GLB", + "atmos.pfull.tavg-al-hxy-u.day.GLB", + "atmos.pfull.tavg-al-hxy-u.mon.GLB", + "atmos.pfull.tclm-al-hxy-u.mon.30S-90S", + "atmos.phalf.tavg-alh-hxy-u.mon.GLB", + "atmos.pr.tavg-u-hxy-u.1hr.30S-90S", + "atmos.pr.tavg-u-hxy-u.mon.30S-90S", + "atmos.pr.tmax-u-hxy-u.day.GLB", + "atmos.pr.tpt-u-hxy-u.6hr.GLB", + "atmos.pr17O.tavg-u-hxy-u.mon.GLB", + "atmos.pr18O.tavg-u-hxy-u.mon.GLB", + "atmos.pr2h.tavg-u-hxy-u.mon.GLB", + "atmos.prc.tavg-u-hxy-u.day.GLB", + "atmos.prc.tavg-u-hxy-u.mon.30S-90S", + "atmos.prra.tavg-u-hxy-is.mon.GRL", + "atmos.prra.tavg-u-hxy-lnd.day.GLB", + "atmos.prra.tavg-u-hxy-u.6hr.GLB", + "atmos.prra.tavg-u-hxy-u.mon.30S-90S", + "atmos.prra.tavg-u-hxy-u.mon.GLB", + "atmos.prsn.tavg-u-hxy-is.mon.GRL", + "atmos.prsn.tavg-u-hxy-u.3hr.GLB", + "atmos.prsn.tavg-u-hxy-u.6hr.GLB", + "atmos.prsn.tavg-u-hxy-u.day.GLB", + "atmos.prsn.tavg-u-hxy-u.mon.30S-90S", + "atmos.prsn18O.tavg-u-hxy-u.mon.GLB", + "atmos.prsn2h.tavg-u-hxy-u.mon.GLB", + "atmos.prw.tavg-u-hxy-u.3hr.GLB", + "atmos.prw.tavg-u-hxy-u.day.GLB", + "atmos.prw.tavg-u-hxy-u.mon.30S-90S", + "atmos.prw.tpt-u-hxy-u.6hr.GLB", + "atmos.ps.tavg-u-hxy-u.1hr.GLB", + "atmos.ps.tavg-u-hxy-u.6hr.GLB", + "atmos.ps.tavg-u-hxy-u.mon.30S-90S", + "atmos.ps.tpt-u-hxy-u.1hr.30S-90S", + "atmos.ps.tpt-u-hxy-u.3hr.GLB", + "atmos.ps.tpt-u-hxy-u.6hr.GLB", + "atmos.psl.tavg-u-hxy-u.mon.30S-90S", + "atmos.psl.tpt-u-hxy-u.1hr.GLB", + "atmos.psl.tpt-u-hxy-u.6hr.GLB", + "atmos.ptp.tavg-u-hxy-u.mon.GLB", + "atmos.reffcclwtop.tavg-u-hxy-ccl.mon.GLB", + "atmos.reffclic.tavg-al-hxy-ccl.mon.30S-90S", + "atmos.reffclic.tavg-al-hxy-ccl.mon.GLB", + "atmos.reffclis.tavg-al-hxy-scl.mon.30S-90S", + "atmos.reffclis.tavg-al-hxy-scl.mon.GLB", + "atmos.reffclwc.tavg-al-hxy-ccl.mon.30S-90S", + "atmos.reffclwc.tavg-al-hxy-ccl.mon.GLB", + "atmos.reffclws.tavg-al-hxy-scl.mon.30S-90S", + "atmos.reffclws.tavg-al-hxy-scl.mon.GLB", + "atmos.reffsclwtop.tavg-u-hxy-scl.mon.GLB", + "atmos.rld.tavg-alh-hxy-u.mon.GLB", + "atmos.rld4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rldcs.tavg-alh-hxy-u.mon.GLB", + "atmos.rldcs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rlds.tavg-u-hxy-u.1hr.30S-90S", + "atmos.rlds.tavg-u-hxy-u.1hr.GLB", + "atmos.rlds.tavg-u-hxy-u.3hr.GLB", + "atmos.rlds.tavg-u-hxy-u.6hr.GLB", + "atmos.rlds.tavg-u-hxy-u.day.GLB", + "atmos.rlds.tavg-u-hxy-u.mon.30S-90S", + "atmos.rldscs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rls.tavg-u-hxy-u.mon.GLB", + "atmos.rlu.tavg-alh-hxy-u.mon.GLB", + "atmos.rlu4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rlucs.tavg-alh-hxy-u.mon.GLB", + "atmos.rlucs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rlus.tavg-u-hxy-u.3hr.GLB", + "atmos.rlus.tavg-u-hxy-u.day.GLB", + "atmos.rlus.tavg-u-hxy-u.mon.30S-90S", + "atmos.rlut.tavg-u-hxy-u.3hr.GLB", + "atmos.rlut.tavg-u-hxy-u.day.GLB", + "atmos.rlut.tavg-u-hxy-u.mon.30S-90S", + "atmos.rlut4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rlutcs.tavg-u-hxy-u.3hr.GLB", + "atmos.rlutcs.tavg-u-hxy-u.day.GLB", + "atmos.rlutcs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rlutcs4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rsd.tavg-alh-hxy-u.mon.GLB", + "atmos.rsd4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsdcs.tavg-alh-hxy-u.mon.GLB", + "atmos.rsdcs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsds.tavg-u-hxy-u.1hr.30S-90S", + "atmos.rsds.tavg-u-hxy-u.1hr.GLB", + "atmos.rsds.tavg-u-hxy-u.3hr.GLB", + "atmos.rsds.tavg-u-hxy-u.6hr.GLB", + "atmos.rsds.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsdscs.tavg-u-hxy-u.day.GLB", + "atmos.rsdscs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsdt.tavg-u-hxy-u.day.GLB", + "atmos.rsdt.tavg-u-hxy-u.mon.30S-90S", + "atmos.rss.tavg-u-hxy-u.mon.GLB", + "atmos.rsu.tavg-alh-hxy-u.mon.GLB", + "atmos.rsu4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsucs.tavg-alh-hxy-u.mon.GLB", + "atmos.rsucs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsus.tavg-u-hxy-u.3hr.GLB", + "atmos.rsus.tavg-u-hxy-u.day.GLB", + "atmos.rsus.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsuscs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsut.tavg-u-hxy-u.3hr.GLB", + "atmos.rsut.tavg-u-hxy-u.day.GLB", + "atmos.rsut.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsut4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rsutcs.tavg-u-hxy-u.3hr.GLB", + "atmos.rsutcs.tavg-u-hxy-u.day.GLB", + "atmos.rsutcs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsutcs4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rtmt.tavg-u-hxy-u.mon.GLB", + "atmos.rv850.tpt-850hPa-hxy-air.6hr.GLB", + "atmos.scldncl.tavg-u-hxy-scl.mon.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.1hr.30S-90S", + "atmos.sfcWind.tavg-h10m-hxy-u.6hr.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.mon.30S-90S", + "atmos.sfcWind.tmax-h10m-hxy-u.day.GLB", + "atmos.ta.tavg-700hPa-hxy-air.day.GLB", + "atmos.ta.tavg-al-hxy-u.mon.30S-90S", + "atmos.ta.tavg-al-hxy-u.mon.GLB", + "atmos.ta.tavg-p19-hxy-air.mon.30S-90S", + "atmos.ta.tavg-p39-hy-air.day.GLB", + "atmos.ta.tavg-p39-hy-air.mon.GLB", + "atmos.ta.tpt-al-hxy-u.6hr.GLB", + "atmos.ta.tpt-p5u-hxy-u.6hr.GLB", + "atmos.ta.tpt-p7h-hxy-air.6hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.1hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.6hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.mon.30S-90S", + "atmos.tas.tmaxavg-h2m-hxy-u.mon.30S-90S", + "atmos.tas.tminavg-h2m-hxy-u.mon.30S-90S", + "atmos.tauu.tavg-u-hxy-u.day.GLB", + "atmos.tauunoegw.tavg-p39-hy-air.day.GLB", + "atmos.tauunowgw.tavg-p39-hy-air.day.GLB", + "atmos.tauuogw.tavg-p39-hy-air.day.GLB", + "atmos.tauv.tavg-u-hxy-u.day.GLB", + "atmos.tauvnogw.tavg-p39-hy-air.day.GLB", + "atmos.tauvogw.tavg-p39-hy-air.day.GLB", + "atmos.tdps.tavg-h2m-hxy-u.mon.GLB", + "atmos.tnt.tavg-al-hxy-u.mon.GLB", + "atmos.tntmp.tavg-p39-hy-air.day.GLB", + "atmos.tntmp.tavg-p39-hy-air.mon.GLB", + "atmos.tntrl.tavg-al-hxy-u.mon.GLB", + "atmos.tntrl.tavg-p39-hy-air.day.GLB", + "atmos.tntrl.tavg-p39-hy-air.mon.GLB", + "atmos.tntrs.tavg-al-hxy-u.mon.GLB", + "atmos.tntrs.tavg-p39-hy-air.day.GLB", + "atmos.tntrs.tavg-p39-hy-air.mon.GLB", + "atmos.ts.tavg-u-hxy-u.6hr.GLB", + "atmos.ts.tavg-u-hxy-u.day.GLB", + "atmos.ts.tavg-u-hxy-u.mon.30S-90S", + "atmos.ts.tpt-u-hxy-u.3hr.GLB", + "atmos.ts.tpt-u-hxy-u.6hr.GLB", + "atmos.ua.tavg-al-hxy-u.mon.GLB", + "atmos.ua.tavg-p19-hxy-air.mon.30S-90S", + "atmos.ua.tavg-p39-hy-air.day.GLB", + "atmos.ua.tavg-p39-hy-air.mon.GLB", + "atmos.ua.tpt-al-hxy-u.6hr.GLB", + "atmos.ua.tpt-h100m-hxy-u.1hr.GLB", + "atmos.ua.tpt-p5u-hxy-air.6hr.GLB", + "atmos.ua.tpt-p7h-hxy-air.6hr.GLB", + "atmos.uas.tavg-h10m-hxy-u.mon.30S-90S", + "atmos.uas.tpt-h10m-hxy-u.1hr.GLB", + "atmos.uas.tpt-h10m-hxy-u.6hr.GLB", + "atmos.utendepfd.tavg-p39-hy-air.day.GLB", + "atmos.utendepfd.tavg-p39-hy-air.mon.GLB", + "atmos.utendnogw.tavg-p39-hy-air.day.GLB", + "atmos.utendnogw.tavg-p39-hy-air.mon.GLB", + "atmos.utendogw.tavg-p39-hy-air.day.GLB", + "atmos.utendogw.tavg-p39-hy-air.mon.GLB", + "atmos.utendvtem.tavg-p39-hy-air.day.GLB", + "atmos.utendwtem.tavg-p39-hy-air.day.GLB", + "atmos.va.tavg-al-hxy-u.mon.GLB", + "atmos.va.tavg-p19-hxy-air.mon.30S-90S", + "atmos.va.tavg-p39-hy-air.mon.GLB", + "atmos.va.tpt-al-hxy-u.6hr.GLB", + "atmos.va.tpt-h100m-hxy-u.1hr.GLB", + "atmos.va.tpt-p5u-hxy-air.6hr.GLB", + "atmos.va.tpt-p7h-hxy-air.6hr.GLB", + "atmos.vas.tavg-h10m-hxy-u.mon.30S-90S", + "atmos.vas.tpt-h10m-hxy-u.1hr.GLB", + "atmos.vas.tpt-h10m-hxy-u.6hr.GLB", + "atmos.vtem.tavg-p39-hy-air.day.GLB", + "atmos.vtem.tavg-p39-hy-air.mon.GLB", + "atmos.wap.tavg-p19-hxy-air.mon.30S-90S", + "atmos.wsg.tmax-h100m-hxy-u.1hr.GLB", + "atmos.wsg.tmax-h10m-hxy-u.1hr.GLB", + "atmos.wtem.tavg-p39-hy-air.day.GLB", + "atmos.wtem.tavg-p39-hy-air.mon.GLB", + "atmos.zg.tavg-1000hPa-hxy-air.day.GLB", + "atmos.zg.tavg-500hPa-hxy-air.day.GLB", + "atmos.zg.tavg-al-hxy-u.mon.GLB", + "atmos.zg.tavg-p19-hxy-air.mon.30S-90S", + "atmos.zg.tavg-p39-hy-air.day.GLB", + "atmos.zg.tavg-p39-hy-air.mon.GLB", + "atmos.zg.tpt-500hPa-hxy-air.6hr.GLB", + "atmos.zg.tpt-al-hxy-u.6hr.GLB", + "atmos.zg.tpt-p3-hxy-air.6hr.GLB", + "atmos.zg.tpt-p7h-hxy-air.6hr.GLB", + "atmos.ztp.tavg-u-hxy-u.mon.GLB", + "atmosChem.c2h4.tavg-al-hxy-u.mon.GLB", + "atmosChem.c2h5oh.tavg-al-hxy-u.mon.GLB", + "atmosChem.c4h10.tavg-al-hxy-u.mon.GLB", + "atmosChem.cfc11.tavg-u-hm-u.mon.GLB", + "atmosChem.cfc113.tavg-u-hm-u.mon.GLB", + "atmosChem.cfc12.tavg-u-hm-u.mon.GLB", + "atmosChem.ch3oh.tavg-al-hxy-u.mon.GLB", + "atmosChem.ch4.tavg-al-hxy-u.mon.GLB", + "atmosChem.ch4.tavg-p39-hy-air.mon.GLB", + "atmosChem.ch4losssoil.tavg-u-hxy-u.mon.GLB", + "atmosChem.ch4ref.ti-al-hxy-u.fx.GLB", + "atmosChem.chegph2oo1d.tavg-al-hxy-u.mon.GLB", + "atmosChem.chepnh4.tavg-al-hxy-u.mon.GLB", + "atmosChem.chepno3.tavg-al-hxy-u.mon.GLB", + "atmosChem.dms.tavg-al-hxy-u.mon.30S-90S", + "atmosChem.dms.tavg-al-hxy-u.mon.GLB", + "atmosChem.do3chm.tavg-al-hxy-u.mon.GLB", + "atmosChem.dryh2.tavg-u-hxy-u.mon.GLB", + "atmosChem.dryhno3.tavg-u-hxy-u.mon.GLB", + "atmosChem.drynh3.tavg-u-hxy-u.mon.GLB", + "atmosChem.drynh4.tavg-u-hxy-u.mon.GLB", + "atmosChem.drynoy.tavg-u-hxy-u.mon.GLB", + "atmosChem.e90inst.tpt-al-hxy-u.mon.GLB", + "atmosChem.emiach4.tavg-u-hxy-u.mon.GLB", + "atmosChem.emiavnox.tavg-al-hxy-u.mon.GLB", + "atmosChem.emic2h4.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic2h5oh.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic2h6.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic3h6.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic3h8.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic4h10.tavg-u-hxy-u.mon.GLB", + "atmosChem.emich3oh.tavg-u-hxy-u.mon.GLB", + "atmosChem.emich4.tavg-u-hxy-u.mon.GLB", + "atmosChem.emih2.tavg-u-hxy-u.mon.GLB", + "atmosChem.emilkch4.tavg-u-hxy-u.mon.GLB", + "atmosChem.h2.tavg-al-hxy-u.mon.GLB", + "atmosChem.h2loss.tavg-al-hxy-u.mon.GLB", + "atmosChem.h2prod.tavg-al-hxy-u.mon.GLB", + "atmosChem.hcfc22.tavg-u-hm-u.mon.GLB", + "atmosChem.meanage.tavg-al-hxy-u.mon.GLB", + "atmosChem.meanage.tavg-p39-hy-air.mon.GLB", + "atmosChem.n2o.tavg-al-hxy-u.mon.GLB", + "atmosChem.n2o.tavg-p39-hy-air.mon.GLB", + "atmosChem.o3.tavg-al-hxy-u.mon.GLB", + "atmosChem.o3.tavg-p19-hxy-air.mon.GLB", + "atmosChem.o3.tavg-p39-hy-air.mon.GLB", + "atmosChem.o3.tpt-al-hxy-u.mon.GLB", + "atmosChem.o3ref.tclm-al-hxy-u.fx.GLB", + "atmosChem.o3ref.ti-al-hxy-u.fx.GLB", + "atmosChem.o3ste.tavg-al-hxy-u.mon.GLB", + "atmosChem.rlutch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rlutcsch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rlutcso3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rluto3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsutch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsutcsch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsutcso3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsuto3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.stratch4loss.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropch4loss.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropch4lossoh.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropdo3chm.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropo3ste.tavg-al-hxy-u.mon.GLB", + "atmosChem.wethno3.tavg-al-hxy-u.mon.GLB", + "atmosChem.wetnh3.tavg-u-hxy-u.mon.GLB", + "atmosChem.wetnh4.tavg-u-hxy-u.mon.GLB", + "atmosChem.wetno3.tavg-al-hxy-u.mon.GLB", + "atmosChem.wetnoy.tavg-u-hxy-u.mon.GLB", + "land.albc.tavg-u-hxy-veg.mon.GLB", + "land.areacellr.ti-u-hxy-u.fx.GLB", + "land.baresoilFrac.tavg-u-hxy-u.mon.GLB", + "land.burntFractionAll.tavg-u-hxy-u.mon.GLB", + "land.cGeologicStorage.tavg-u-hxy-u.mon.GLB", + "land.cLand.tavg-u-hxy-lnd.mon.GLB", + "land.cLeaf.tavg-u-hxy-lnd.mon.GLB", + "land.cLitter.tavg-u-hxy-lnd.mon.GLB", + "land.cnc.tavg-u-hxy-u.mon.GLB", + "land.cProduct.tavg-u-hxy-lnd.mon.GLB", + "land.cRoot.tavg-u-hxy-lnd.mon.GLB", + "land.cropFrac.tavg-u-hxy-u.mon.GLB", + "land.cSoil.tavg-d100cm-hxy-lnd.mon.GLB", + "land.cSoil.tavg-sl-hxy-lnd.mon.GLB", + "land.cSoil.tavg-u-hxy-lnd.mon.GLB", + "land.cStem.tavg-u-hxy-lnd.mon.GLB", + "land.cVeg.tavg-u-hxy-lnd.mon.GLB", + "land.dcw.tavg-u-hxy-lnd.day.GLB", + "land.depthl.ti-u-hxy-u.fx.GLB", + "land.depthsl.ti-u-hxy-u.fx.GLB", + "land.dslw.tavg-u-hxy-lnd.day.GLB", + "land.evspsblpot.tavg-u-hxy-lnd.day.GLB", + "land.evspsblpot.tavg-u-hxy-lnd.mon.GLB", + "land.evspsblsoi.tavg-u-hxy-u.day.GLB", + "land.evspsblveg.tavg-u-hxy-u.day.GLB", + "land.fAnthDisturb.tavg-u-hxy-lnd.mon.GLB", + "land.fBNF.tavg-u-hxy-lnd.mon.GLB", + "land.fCLandToOcean.tavg-u-hxy-lnd.mon.GLB", + "land.fDeforestToAtmos.tavg-u-hxy-lnd.mon.GLB", + "land.fDeforestToProduct.tavg-u-hxy-lnd.mon.GLB", + "land.fFire.tavg-u-hxy-lnd.mon.GLB", + "land.fFireAll.tavg-u-hxy-lnd.mon.GLB", + "land.fFireNat.tavg-u-hxy-lnd.mon.GLB", + "land.fHarvestToAtmos.tavg-u-hxy-lnd.mon.GLB", + "land.fHarvestToGeologicStorage.tavg-u-hxy-lnd.mon.GLB", + "land.fHarvestToProduct.tavg-u-hxy-lnd.mon.GLB", + "land.fLitterSoil.tavg-u-hxy-lnd.mon.GLB", + "land.fLuc.tavg-u-hxy-lnd.mon.GLB", + "land.fN2O.tavg-u-hxy-lnd.mon.GLB", + "land.fNAnthDisturb.tavg-u-hxy-lnd.mon.GLB", + "land.fNdep.tavg-u-hxy-lnd.mon.GLB", + "land.fNfert.tavg-u-hxy-lnd.mon.GLB", + "land.fNgas.tavg-u-hxy-lnd.mon.GLB", + "land.fNgasFire.tavg-u-hxy-lnd.mon.GLB", + "land.fNLandToOcean.tavg-u-hxy-lnd.mon.GLB", + "land.fNleach.tavg-u-hxy-lnd.mon.GLB", + "land.fNLitterSoil.tavg-u-hxy-lnd.mon.GLB", + "land.fNloss.tavg-u-hxy-lnd.mon.GLB", + "land.fNnetmin.tavg-u-hxy-lnd.mon.GLB", + "land.fNOx.tavg-u-hxy-lnd.mon.GLB", + "land.fNProduct.tavg-u-hxy-lnd.mon.GLB", + "land.fNup.tavg-u-hxy-lnd.mon.GLB", + "land.fNVegLitter.tavg-u-hxy-lnd.mon.GLB", + "land.fNVegSoil.tavg-u-hxy-lnd.mon.GLB", + "land.fProductDecomp.tavg-u-hxy-lnd.mon.GLB", + "land.fVegLitter.tavg-u-hxy-lnd.mon.GLB", + "land.fVegSoil.tavg-u-hxy-lnd.mon.GLB", + "land.gpp.tavg-u-hxy-lnd.mon.GLB", + "land.gppVgt.tavg-u-hxy-multi.day.GLB", + "land.grassFrac.tavg-u-hxy-u.mon.GLB", + "land.laiVgt.tavg-u-hxy-multi.day.GLB", + "land.landCoverFrac.tavg-u-hxy-u.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.day.GLB", + "land.mrrob.tavg-u-hxy-lnd.day.GLB", + "land.mrros.tavg-u-hxy-lnd.day.GLB", + "land.mrsfl.tavg-sl-hxy-lnd.day.GLB", + "land.mrsfl.tavg-sl-hxy-lnd.mon.GLB", + "land.mrsll.tavg-sl-hxy-lnd.day.GLB", + "land.mrsll.tavg-sl-hxy-lnd.mon.GLB", + "land.mrso.tavg-u-hxy-lnd.day.GLB", + "land.mrsol.tavg-d10cm-hxy-lnd.day.GLB", + "land.mrsol.tavg-sl-hxy-lnd.day.GLB", + "land.mrsol.tavg-sl-hxy-lnd.mon.GLB", + "land.mrsol.tpt-d10cm-hxy-lnd.3hr.GLB", + "land.mrsow.tavg-u-hxy-lnd.day.GLB", + "land.mrtws.tavg-u-hxy-lnd.day.GLB", + "land.mrtws.tavg-u-hxy-lnd.mon.GLB", + "land.nbp.tavg-u-hxy-lnd.mon.GLB", + "land.nep.tavg-u-hxy-lnd.mon.GLB", + "land.nLand.tavg-u-hxy-lnd.mon.GLB", + "land.nLitter.tavg-u-hxy-lnd.mon.GLB", + "land.nMineral.tavg-u-hxy-lnd.mon.GLB", + "land.npp.tavg-u-hxy-lnd.mon.GLB", + "land.nProduct.tavg-u-hxy-lnd.mon.GLB", + "land.nSoil.tavg-u-hxy-lnd.mon.GLB", + "land.nVeg.tavg-u-hxy-lnd.mon.GLB", + "land.orog.ti-u-hxy-u.fx.30S-90S", + "land.pastureFrac.tavg-u-hxy-u.mon.GLB", + "land.prveg.tavg-u-hxy-lnd.mon.GLB", + "land.ra.tavg-u-hxy-lnd.mon.GLB", + "land.residualFrac.tavg-u-hxy-u.mon.GLB", + "land.rh.tavg-u-hxy-lnd.mon.GLB", + "land.rivi.tavg-u-hxy-lnd.day.GLB", + "land.rivo.tavg-u-hxy-lnd.day.GLB", + "land.rsds.tavg-u-hxy-lnd.mon.GLB", + "land.rsds.tavg-u-hxy-sn.mon.GLB", + "land.rsus.tavg-u-hxy-lnd.mon.GLB", + "land.rsus.tavg-u-hxy-sn.mon.GLB", + "land.sftgif.tavg-u-hxy-u.mon.GLB", + "land.sftlaf.ti-u-hxy-u.fx.GLB", + "land.shrubFrac.tavg-u-hxy-u.mon.GLB", + "land.srfrad.tavg-u-hxy-u.3hr.GLB", + "land.tas.tavg-u-hxy-u.1hr.30S-90S", + "land.tas.tavg-u-hxy-u.1hr.GLB", + "land.tran.tavg-u-hxy-lnd.mon.GLB", + "land.treeFrac.tavg-u-hxy-u.mon.GLB", + "land.tsl.tavg-sl-hxy-lnd.day.GLB", + "land.tsl.tavg-sl-hxy-lnd.mon.GLB", + "land.tslsi.tavg-u-hxy-u.day.GLB", + "land.tslsi.tpt-u-hxy-lsi.3hr.GLB", + "land.vegFrac.tavg-u-hxy-u.mon.GLB", + "land.vegHeight.tavg-u-hxy-tree.mon.GLB", + "land.vegHeight.tavg-u-hxy-veg.mon.GLB", + "land.wetlandCH4.tavg-u-hxy-lnd.mon.GLB", + "land.wtd.tavg-u-hxy-lnd.day.GLB", + "landIce.acabf.tavg-u-hxy-is.mon.GLB", + "landIce.hfdsn.tavg-u-hxy-lnd.mon.GLB", + "landIce.hfgeoubed.ti-u-hxy-gis.fx.GRL", + "landIce.hfls.tavg-u-hxy-is.mon.GLB", + "landIce.hfss.tavg-u-hxy-is.mon.GLB", + "landIce.icem.tavg-u-hxy-is.mon.GLB", + "landIce.litemptop.tavg-u-hxy-is.mon.GLB", + "landIce.lithk.ti-u-hxy-is.fx.GRL", + "landIce.lithk.ti-u-hxy-u.fx.GLB", + "landIce.mrro.tavg-u-hxy-is.mon.GLB", + "landIce.orog.tavg-u-hxy-is.mon.GLB", + "landIce.pflw.tavg-u-hxy-lnd.mon.GLB", + "landIce.prra.tavg-u-hxy-is.mon.GLB", + "landIce.prsn.tavg-u-hxy-is.mon.GLB", + "landIce.rlds.tavg-u-hxy-is.mon.GLB", + "landIce.rlus.tavg-u-hxy-is.mon.GLB", + "landIce.rsds.tavg-u-hxy-is.mon.GLB", + "landIce.rsus.tavg-u-hxy-is.mon.GLB", + "landIce.sbl.tavg-u-hxy-is.mon.GLB", + "landIce.sbl.tavg-u-hxy-lnd.mon.GLB", + "landIce.sbl.tavg-u-hxy-u.mon.GLB", + "landIce.sftflf.tavg-u-hxy-u.mon.GLB", + "landIce.sftflf.ti-u-hxy-u.fx.GLB", + "landIce.sftgrf.tavg-u-hxy-u.mon.GLB", + "landIce.sftgrf.ti-u-hxy-u.fx.GLB", + "landIce.snc.tavg-u-hxy-is.mon.GLB", + "landIce.snd.tavg-u-hxy-lnd.mon.GLB", + "landIce.snicem.tavg-u-hxy-is.mon.GLB", + "landIce.snicem.tavg-u-hxy-is.mon.GRL", + "landIce.snm.tavg-u-hxy-is.mon.GLB", + "landIce.snm.tavg-u-hxy-lnd.mon.GLB", + "landIce.snrefr.tavg-u-hxy-is.mon.GLB", + "landIce.snw.tavg-u-hxy-lnd.day.GLB", + "landIce.sootsn.tavg-u-hxy-lnd.mon.GLB", + "landIce.tas.tavg-u-hxy-is.mon.GLB", + "landIce.topg.ti-u-hxy-gis.fx.GRL", + "landIce.tpf.tavg-u-hxy-lnd.mon.GLB", + "landIce.ts.tavg-u-hxy-is.mon.GLB", + "landIce.tsn.tavg-u-hxy-is.mon.GLB", + "landIce.tsn.tavg-u-hxy-lnd.mon.GLB", + "ocean.absscint.tavg-op4-hxy-sea.mon.GLB", + "ocean.agessc.tavg-ol-hxy-sea.mon.GLB", + "ocean.bigthetao.tavg-ol-hm-sea.mon.GLB", + "ocean.bigthetao.tavg-ol-hxy-sea.dec.GLB", + "ocean.bigthetao.tavg-op20bar-hxy-sea.day.GLB", + "ocean.chcint.tavg-op4-hxy-sea.mon.GLB", + "ocean.ficeberg.tavg-ol-hxy-sea.3hr.GLB", + "ocean.ficeberg.tavg-ol-hxy-sea.mon.GLB", + "ocean.ficeberg.tavg-u-hxy-sea.mon.GLB", + "ocean.flandice.tavg-u-hxy-sea.3hr.GLB", + "ocean.flandice.tavg-u-hxy-sea.mon.GLB", + "ocean.friver.tavg-u-hxy-sea.3hr.GLB", + "ocean.friver.tavg-u-hxy-sea.mon.GLB", + "ocean.hfbasin.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpmadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpmdiff.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpsmadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfds.tavg-u-hxy-sea.3hr.GLB", + "ocean.hfds.tavg-u-hxy-sea.mon.30S-90S", + "ocean.hfgeou.tavg-u-hxy-sea.mon.GLB", + "ocean.hfrunoffds.tavg-ol-hxy-sea.3hr.GLB", + "ocean.hfx.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfx.tavg-u-hxy-sea.day.GLB", + "ocean.hfx.tavg-u-hxy-sea.mon.GLB", + "ocean.hfy.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfy.tavg-u-hxy-sea.day.GLB", + "ocean.hfy.tavg-u-hxy-sea.mon.GLB", + "ocean.htovgyre.tavg-u-hyb-sea.mon.GLB", + "ocean.htovovrt.tavg-u-hyb-sea.mon.GLB", + "ocean.masscello.tavg-ol-hxy-sea.dec.GLB", + "ocean.masso.tavg-u-hm-sea.dec.GLB", + "ocean.masso.tavg-u-hm-sea.mon.GLB", + "ocean.mlotst.tavg-u-hxy-sea.day.GLB", + "ocean.mlotst.tavg-u-hxy-sea.mon.30S-90S", + "ocean.mlotst.tmax-u-hxy-sea.mon.GLB", + "ocean.mlotst.tmin-u-hxy-sea.mon.GLB", + "ocean.mpw.tavg-u-hxy-sea.mon.GLB", + "ocean.mpw.tpt-u-hxy-sea.3hr.GLB", + "ocean.mpwswell.tavg-u-hxy-sea.mon.GLB", + "ocean.mpwswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.mpwwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.mpwwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.msftbarot.tavg-u-hxy-sea.mon.GLB", + "ocean.msftm.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftm.tavg-rho-hyb-sea.mon.GLB", + "ocean.msfty.tavg-ol-ht-sea.mon.GLB", + "ocean.msfty.tavg-rho-ht-sea.mon.GLB", + "ocean.obvfsq.tavg-ol-hxy-sea.mon.GLB", + "ocean.opottemptend.tavg-ol-hxy-sea.yr.GLB", + "ocean.pbo.tavg-u-hxy-sea.mon.GLB", + "ocean.pfscint.tavg-op4-hxy-sea.mon.GLB", + "ocean.phcint.tavg-op4-hxy-sea.mon.GLB", + "ocean.pso.tavg-u-hxy-sea.mon.GLB", + "ocean.rsds.tavg-u-hxy-ifs.mon.GLB", + "ocean.rsntds.tavg-u-hxy-sea.3hr.GLB", + "ocean.rsus.tavg-u-hxy-ifs.mon.GLB", + "ocean.scint.tavg-op4-hxy-sea.mon.GLB", + "ocean.sduo.tavg-u-hxy-sea.mon.GLB", + "ocean.sduo.tpt-u-hxy-sea.3hr.GLB", + "ocean.sdvo.tavg-u-hxy-sea.mon.GLB", + "ocean.sdvo.tpt-u-hxy-sea.3hr.GLB", + "ocean.sfdsi.tavg-u-hxy-sea.3hr.GLB", + "ocean.sfx.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfx.tavg-u-hxy-sea.mon.GLB", + "ocean.sfy.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfy.tavg-u-hxy-sea.mon.GLB", + "ocean.sltbasin.tavg-u-hyb-sea.mon.GLB", + "ocean.sltovgyre.tavg-u-hyb-sea.mon.GLB", + "ocean.sltovovrt.tavg-u-hyb-sea.mon.GLB", + "ocean.so.tavg-ol-hm-sea.mon.GLB", + "ocean.so.tavg-ol-hxy-sea.dec.GLB", + "ocean.so.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.sob.tavg-u-hxy-sea.mon.GLB", + "ocean.sos.tavg-u-hm-sea.mon.30S-90S", + "ocean.sos.tavg-u-hm-sea.mon.GLB", + "ocean.sw17O.tavg-ol-hxy-sea.mon.GLB", + "ocean.sw18O.tavg-ol-hxy-sea.mon.GLB", + "ocean.sw2H.tavg-ol-hxy-sea.mon.GLB", + "ocean.swh.tavg-u-hxy-sea.mon.GLB", + "ocean.swh.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhmax.tmax-u-hxy-sea.mon.GLB", + "ocean.swhmax.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhswell.tavg-u-hxy-sea.mon.GLB", + "ocean.swhswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.swhwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.tauuo.tavg-u-hxy-sea.3hr.GLB", + "ocean.tauuo.tavg-u-hxy-sea.dec.GLB", + "ocean.tauvo.tavg-u-hxy-sea.3hr.GLB", + "ocean.tauvo.tavg-u-hxy-sea.dec.GLB", + "ocean.thetao.tavg-ol-hm-sea.mon.GLB", + "ocean.thetao.tavg-ol-hxy-sea.dec.GLB", + "ocean.thetao.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.thetao.tavg-op20bar-hxy-sea.day.GLB", + "ocean.thkcello.tavg-ol-hxy-sea.dec.GLB", + "ocean.tob.tavg-u-hxy-sea.mon.GLB", + "ocean.tos.tavg-u-hm-sea.mon.GLB", + "ocean.tos.tavg-u-hxy-sea.mon.30S-90S", + "ocean.tos.tpt-u-hxy-sea.3hr.GLB", + "ocean.tossq.tavg-u-hxy-sea.day.GLB", + "ocean.umo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.uo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.uos.tavg-u-hxy-sea.day.GLB", + "ocean.vmo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.vo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.volcello.tavg-ol-hxy-sea.dec.GLB", + "ocean.volcello.tavg-ol-hxy-sea.mon.GLB", + "ocean.volcello.tavg-ol-hxy-sea.yr.GLB", + "ocean.volcello.ti-ol-hxy-sea.fx.GLB", + "ocean.volo.tavg-u-hm-sea.dec.GLB", + "ocean.volo.tavg-u-hm-sea.mon.GLB", + "ocean.vos.tavg-u-hxy-sea.day.GLB", + "ocean.wdir.tavg-u-hxy-sea.mon.GLB", + "ocean.wdir.tpt-u-hxy-sea.3hr.GLB", + "ocean.wdirswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wdirswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wdirwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wdirwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.wfcorr.tavg-u-hxy-sea.mon.GLB", + "ocean.wfo.tavg-u-hxy-sea.3hr.GLB", + "ocean.wfo.tavg-u-hxy-sea.mon.GLB", + "ocean.wmo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.wo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.wpdir.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdir.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpdirswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdirswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpdirwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdirwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpp.tavg-u-hxy-sea.mon.GLB", + "ocean.wpp.tpt-u-hxy-sea.3hr.GLB", + "ocean.wppswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wppswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wppwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wppwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.zos.tavg-u-hxy-sea.mon.30S-90S", + "ocean.zossq.tavg-u-hxy-sea.mon.GLB", + "ocean.zostoga.tavg-u-hm-sea.day.GLB", + "ocnBgchem.bacc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.calc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chl.tavg-d0m-hxy-sea.day.GLB", + "ocnBgchem.chl.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chl.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chlcalc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chldiat.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chldiat.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chldiaz.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chldiaz.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chlmisc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chlmisc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chlpico.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chlpico.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.detoc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dfe.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.dfe.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.dfe.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissic.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.dissic.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissoc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dmso.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.dmso.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.dpco2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.dpo2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.expc.tavg-d1000m-hxy-sea.mon.GLB", + "ocnBgchem.expc.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.expc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.expcalc.tavg-d1000m-hxy-sea.mon.GLB", + "ocnBgchem.expcalc.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.expcalc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.fgco2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fric.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.froc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fsfe.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fsn.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.graz.tavg-ol-hxy-sea.mon.30S-90S", + "ocnBgchem.graz.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.icfriver.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intdic.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intdoc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intparag.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbfe.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbn.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbp.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbsi.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpcalcite.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpn2.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpoc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpp.tavg-u-hxy-sea.day.GLB", + "ocnBgchem.intpp.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpp.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppcalc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppdiat.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppdiaz.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppmisc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppnitrate.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpppico.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.nh4.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.nh4.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.no3.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.no3.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.o2.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.ocfriver.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.ph.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.ph.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phyc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phyc.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.phyc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phycalc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phycalc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phydiat.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phydiat.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phydiaz.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phydiaz.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phymisc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phymisc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phypico.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phypico.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.po4.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.pp.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.si.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.spco2.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.spco2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.talk.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zmeso.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zmeso.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zmicro.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zmicro.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zmisc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zmisc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zooc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zooc.tavg-ol-hxy-sea.mon.GLB", + "seaIce.evspsbl.tavg-u-hxy-si.mon.GLB", + "seaIce.prra.tavg-u-hxy-si.mon.GLB", + "seaIce.prsn.tavg-u-hxy-si.mon.GLB", + "seaIce.rlds.tavg-u-hxy-si.day.GLB", + "seaIce.rlds.tavg-u-hxy-si.mon.GLB", + "seaIce.rlus.tavg-u-hxy-si.day.GLB", + "seaIce.rlus.tavg-u-hxy-si.mon.GLB", + "seaIce.rsds.tavg-u-hxy-si.day.GLB", + "seaIce.rsds.tavg-u-hxy-si.mon.GLB", + "seaIce.rsus.tavg-u-hxy-si.day.GLB", + "seaIce.rsus.tavg-u-hxy-si.mon.GLB", + "seaIce.sbl.tavg-u-hxy-si.mon.GLB", + "seaIce.siage.tavg-u-hxy-si.day.GLB", + "seaIce.siage.tavg-u-hxy-si.mon.30S-90S", + "seaIce.siarea.tavg-u-hm-u.mon.NH", + "seaIce.siarea.tavg-u-hm-u.mon.SH", + "seaIce.siareaacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.siconc.tavg-u-hxy-u.mon.30S-90S", + "seaIce.siconca.tavg-u-hxy-u.day.GLB", + "seaIce.siconca.tavg-u-hxy-u.mon.GLB", + "seaIce.sidconcdyn.tavg-u-hxy-sea.mon.GLB", + "seaIce.sidconcth.tavg-u-hxy-sea.mon.GLB", + "seaIce.sidmassdyn.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthsi.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthwat.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmeltbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmeltlat.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmelttop.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassth.tavg-u-hxy-si.mon.GLB", + "seaIce.sieqthick.tavg-u-hxy-si.mon.GLB", + "seaIce.siextent.tavg-u-hm-u.mon.NH", + "seaIce.siextent.tavg-u-hm-u.mon.SH", + "seaIce.siflcondbot.tavg-u-hxy-si.day.GLB", + "seaIce.siflcondbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflcondtop.tavg-u-hxy-si.day.GLB", + "seaIce.siflcondtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sifllattop.tavg-u-hxy-si.day.GLB", + "seaIce.sifllattop.tavg-u-hxy-si.mon.GLB", + "seaIce.siflsensbot.tavg-u-hxy-si.day.GLB", + "seaIce.siflsensbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflsenstop.tavg-u-hxy-si.day.GLB", + "seaIce.siflsenstop.tavg-u-hxy-si.mon.GLB", + "seaIce.siflswdbot.tavg-u-hxy-si.day.GLB", + "seaIce.siflswdbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sihc.tavg-u-hxy-sea.day.GLB", + "seaIce.sihc.tavg-u-hxy-sea.mon.GLB", + "seaIce.siitdconc.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdsnconc.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdsnthick.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdthick.tavg-u-hxy-si.mon.GLB", + "seaIce.simassacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.simpconc.tavg-u-hxy-si.mon.GLB", + "seaIce.sirdgconc.tavg-u-hxy-si.mon.GLB", + "seaIce.sisaltmass.tavg-u-hxy-si.mon.GLB", + "seaIce.sisndmassdyn.tavg-u-hxy-si.mon.GLB", + "seaIce.sisndmasssi.tavg-u-hxy-si.mon.GLB", + "seaIce.sisndmasswind.tavg-u-hxy-si.mon.GLB", + "seaIce.sisnhc.tavg-u-hxy-si.day.GLB", + "seaIce.sisnhc.tavg-u-hxy-si.mon.GLB", + "seaIce.sisnmass.tavg-u-hm-u.mon.NH", + "seaIce.sisnmass.tavg-u-hm-u.mon.SH", + "seaIce.sisnmassacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.sispeed.tavg-u-hxy-si.day.GLB", + "seaIce.sispeed.tavg-u-hxy-si.mon.GLB", + "seaIce.sistressave.tpt-u-hxy-si.mon.GLB", + "seaIce.sistressmax.tpt-u-hxy-si.mon.GLB", + "seaIce.sistrxdtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sistrxubot.tavg-u-hxy-si.mon.GLB", + "seaIce.sistrydtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sistryubot.tavg-u-hxy-si.mon.GLB", + "seaIce.sitempsnic.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-si.day.GLB", + "seaIce.sithick.tavg-u-hxy-si.mon.30S-90S", + "seaIce.sitimefrac.tavg-u-hxy-sea.day.GLB", + "seaIce.sitimefrac.tavg-u-hxy-sea.mon.30S-90S", + "seaIce.siu.tavg-u-hxy-si.day.GLB", + "seaIce.siu.tavg-u-hxy-si.mon.30S-90S", + "seaIce.siv.tavg-u-hxy-si.day.GLB", + "seaIce.siv.tavg-u-hxy-si.mon.30S-90S", + "seaIce.sivol.tavg-u-hm-u.mon.NH", + "seaIce.sivol.tavg-u-hm-u.mon.SH", + "seaIce.snc.tavg-u-hxy-si.mon.GLB", + "seaIce.snd.tavg-u-hxy-sn.day.GLB", + "seaIce.snd.tavg-u-hxy-sn.mon.30S-90S", + "seaIce.snm.tavg-u-hxy-si.mon.GLB", + "seaIce.snw.tavg-u-hxy-si.mon.GLB", + "seaIce.ts.tavg-u-hxy-si.day.GLB", + "seaIce.ts.tavg-u-hxy-si.mon.30S-90S" + ], + "Medium": [ + "atmos.bldep.tavg-u-hxy-u.1hr.GLB", + "atmos.clic.tpt-al-hxy-u.3hr.GLB", + "atmos.clis.tpt-al-hxy-u.3hr.GLB", + "atmos.clivi.tpt-u-hxy-u.3hr.GLB", + "atmos.clt.tpt-u-hxy-u.3hr.GLB", + "atmos.clwc.tpt-al-hxy-u.3hr.GLB", + "atmos.clws.tpt-al-hxy-u.3hr.GLB", + "atmos.clwvi.tpt-u-hxy-u.3hr.GLB", + "atmos.dtauc.tpt-al-hxy-ccl.3hr.GLB", + "atmos.dtaus.tpt-al-hxy-scl.3hr.GLB", + "atmos.hfdsnb.tavg-u-hxy-lnd.day.GLB", + "atmos.hfls.tavg-u-hxy-is.mon.ATA", + "atmos.hfls.tavg-u-hxy-u.1hr.GLB", + "atmos.hfss.tavg-u-hxy-is.mon.ATA", + "atmos.hfss.tavg-u-hxy-is.mon.GRL", + "atmos.hfss.tavg-u-hxy-u.1hr.GLB", + "atmos.hur.tavg-700hPa-hxy-air.day.GLB", + "atmos.hur.tpt-100hPa-hxy-u.6hr.GLB", + "atmos.hur.tpt-500hPa-hxy-air.6hr.GLB", + "atmos.hur.tpt-850hPa-hxy-air.6hr.GLB", + "atmos.hurs.tavg-h2m-hxy-u.1hr.GLB", + "atmos.hus.tpt-al-hxy-u.3hr.GLB", + "atmos.hus.tpt-p6-hxy-air.3hr.GLB", + "atmos.noaahi2m.tavg-h2m-hxy-u.day.GLB", + "atmos.noaahi2m.tmax-h2m-hxy-u.day.GLB", + "atmos.pfull.tpt-al-hxy-u.3hr.GLB", + "atmos.pr.tpt-u-hxy-u.3hr.GLB", + "atmos.prra.tavg-u-hxy-is.mon.ATA", + "atmos.prrsn.tavg-u-hxy-lnd.day.GLB", + "atmos.prsn.tavg-u-hxy-is.mon.ATA", + "atmos.prsnc.tavg-u-hxy-lnd.day.GLB", + "atmos.prsnsn.tavg-u-hxy-lnd.day.GLB", + "atmos.prw.tpt-u-hxy-u.3hr.GLB", + "atmos.ps.tpt-u-hxy-u.1hr.GLB", + "atmos.psitem.tavg-p39-hy-air.day.GLB", + "atmos.reffclic.tpt-al-hxy-ccl.3hr.GLB", + "atmos.reffclis.tpt-al-hxy-scl.3hr.GLB", + "atmos.reffclwc.tpt-al-hxy-ccl.3hr.GLB", + "atmos.reffclws.tpt-al-hxy-scl.3hr.GLB", + "atmos.rlds.tavg-u-hxy-is.mon.ATA", + "atmos.rlds.tavg-u-hxy-is.mon.GRL", + "atmos.rlds.tpt-u-hxy-u.3hr.GLB", + "atmos.rldscs.tavg-u-hxy-u.day.GLB", + "atmos.rldscs.tpt-u-hxy-u.3hr.GLB", + "atmos.rls.tavg-u-hxy-u.day.GLB", + "atmos.rlus.tavg-u-hxy-is.mon.ATA", + "atmos.rlus.tavg-u-hxy-is.mon.GRL", + "atmos.rlus.tavg-u-hxy-u.1hr.GLB", + "atmos.rlut.tpt-u-hxy-u.3hr.GLB", + "atmos.rlutcs.tpt-u-hxy-u.3hr.GLB", + "atmos.rsds.tavg-u-hxy-is.mon.ATA", + "atmos.rsds.tavg-u-hxy-is.mon.GRL", + "atmos.rsds.tpt-u-hxy-u.3hr.GLB", + "atmos.rsdscs.tpt-u-hxy-u.3hr.GLB", + "atmos.rsdsdiff.tavg-u-hxy-u.1hr.GLB", + "atmos.rsdsdiff.tavg-u-hxy-u.day.GLB", + "atmos.rss.tavg-u-hxy-u.day.GLB", + "atmos.rsus.tavg-u-hxy-is.mon.ATA", + "atmos.rsus.tavg-u-hxy-is.mon.GRL", + "atmos.rsus.tavg-u-hxy-u.1hr.GLB", + "atmos.rsut.tpt-u-hxy-u.3hr.GLB", + "atmos.rsutcs.tpt-u-hxy-u.3hr.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.1hr.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.3hr.GLB", + "atmos.snmsl.tavg-u-hxy-lnd.day.GLB", + "atmos.snrefr.tavg-u-hxy-lnd.day.GLB", + "atmos.snwc.tavg-u-hxy-lnd.day.GLB", + "atmos.ta.tpt-al-hxy-u.3hr.GLB", + "atmos.ta.tpt-p6-hxy-air.3hr.GLB", + "atmos.tas.tavg-h2m-hm-is.mon.ATA", + "atmos.tas.tavg-h2m-hm-is.mon.GRL", + "atmos.tauunoegw.tavg-p19-hxy-air.mon.GLB", + "atmos.tauunowgw.tavg-p19-hxy-air.mon.GLB", + "atmos.tauuogw.tavg-p19-hxy-air.mon.GLB", + "atmos.tauupbl.tavg-u-hxy-u.day.GLB", + "atmos.tauvnogw.tavg-p19-hxy-air.mon.GLB", + "atmos.tauvogw.tavg-p19-hxy-air.mon.GLB", + "atmos.tauvpbl.tavg-u-hxy-u.day.GLB", + "atmos.tntc.tavg-p39-hy-air.mon.GLB", + "atmos.tntnogw.tavg-p39-hy-air.mon.GLB", + "atmos.tntogw.tavg-p39-hy-air.mon.GLB", + "atmos.tntrlcs.tavg-p39-hy-air.mon.GLB", + "atmos.tntrscs.tavg-p39-hy-air.mon.GLB", + "atmos.tntscp.tavg-p39-hy-air.mon.GLB", + "atmos.ts.tavg-u-hxy-is.mon.ATA", + "atmos.ts.tavg-u-hxy-is.mon.GRL", + "atmos.ts.tavg-u-hxy-sn.day.GLB", + "atmos.ts.tavg-u-hxy-u.1hr.GLB", + "atmos.ua.tavg-h100m-hxy-u.3hr.GLB", + "atmos.ua.tpt-200hPa-hxy-u.6hr.GLB", + "atmos.ua.tpt-p6-hxy-air.3hr.GLB", + "atmos.utendnogw.tavg-p19-hxy-air.day.GLB", + "atmos.utendnogw.tavg-p19-hxy-air.mon.GLB", + "atmos.utendogw.tavg-p19-hxy-air.day.GLB", + "atmos.utendogw.tavg-p19-hxy-air.mon.GLB", + "atmos.va.tavg-h100m-hxy-u.3hr.GLB", + "atmos.va.tpt-200hPa-hxy-u.6hr.GLB", + "atmos.va.tpt-p6-hxy-air.3hr.GLB", + "atmos.vtendnogw.tavg-p19-hxy-air.day.GLB", + "atmos.vtendnogw.tavg-p19-hxy-air.mon.GLB", + "atmos.vtendogw.tavg-p19-hxy-air.day.GLB", + "atmos.vtendogw.tavg-p19-hxy-air.mon.GLB", + "atmos.wap.tpt-p6-hxy-air.3hr.GLB", + "atmos.wbgt.tavg-h2m-hxy-u.day.GLB", + "atmos.wbgt.tmax-h2m-hxy-u.day.GLB", + "atmos.wsg.tmax-h100m-hxy-u.mon.GLB", + "atmos.wsg.tmax-h10m-hxy-u.mon.GLB", + "atmos.zg.tpt-700hPa-hxy-u.6hr.GLB", + "atmos.zg.tpt-925hPa-hxy-u.6hr.GLB", + "atmosChem.flashrate.tavg-u-hxy-u.day.GLB", + "land.areacellg.ti-u-hxy-u.fx.ATA", + "land.areacellg.ti-u-hxy-u.fx.GRL", + "land.baresoilFrac.tavg-u-hxy-u.yr.GLB", + "land.cLitterCwd.tavg-u-hxy-lnd.mon.GLB", + "land.cLitterLut.tpt-u-hxy-multi.yr.GLB", + "land.cLitterSubSurf.tavg-u-hxy-lnd.mon.GLB", + "land.cLitterSurf.tavg-u-hxy-lnd.mon.GLB", + "land.cOther.tavg-u-hxy-lnd.mon.GLB", + "land.cProductLut.tpt-u-hxy-multi.yr.GLB", + "land.cropFrac.tavg-u-hxy-u.yr.GLB", + "land.cropFracC3.tavg-u-hxy-u.mon.GLB", + "land.cropFracC4.tavg-u-hxy-u.mon.GLB", + "land.cSoilLut.tpt-u-hxy-multi.yr.GLB", + "land.cSoilPools.tavg-u-hxy-lnd.mon.GLB", + "land.cVeg.tavg-u-hxy-ng.mon.GLB", + "land.cVeg.tavg-u-hxy-shb.mon.GLB", + "land.cVeg.tavg-u-hxy-tree.mon.GLB", + "land.cVegLut.tpt-u-hxy-multi.yr.GLB", + "land.dgw.tavg-u-hxy-lnd.day.GLB", + "land.drivw.tavg-u-hxy-lnd.day.GLB", + "land.dsn.tavg-u-hxy-lnd.day.GLB", + "land.dsw.tavg-u-hxy-lnd.day.GLB", + "land.esn.tavg-u-hxy-sn.day.GLB", + "land.evspsblsoi.tavg-u-hxy-u.3hr.GLB", + "land.evspsblveg.tavg-u-hxy-u.3hr.GLB", + "land.fLitterFire.tavg-u-hxy-lnd.mon.GLB", + "land.fLulccAtmLut.tavg-u-hxy-multi.mon.GLB", + "land.fNgasNonFire.tavg-u-hxy-lnd.mon.GLB", + "land.fracInLut.tsum-u-hxy-lnd.yr.GLB", + "land.fracLut.tpt-u-hxy-u.mon.GLB", + "land.fracLut.tpt-u-hxy-u.yr.GLB", + "land.fracOutLut.tsum-u-hxy-lnd.yr.GLB", + "land.fVegFire.tavg-u-hxy-lnd.mon.GLB", + "land.fVegLitterMortality.tavg-u-hxy-lnd.mon.GLB", + "land.fVegLitterSenescence.tavg-u-hxy-lnd.mon.GLB", + "land.fVegSoilMortality.tavg-u-hxy-lnd.mon.GLB", + "land.fVegSoilSenescence.tavg-u-hxy-lnd.mon.GLB", + "land.gpp.tavg-u-hxy-ng.mon.GLB", + "land.gpp.tavg-u-hxy-shb.mon.GLB", + "land.gpp.tavg-u-hxy-tree.mon.GLB", + "land.gppLut.tavg-u-hxy-multi.mon.GLB", + "land.grassFrac.tavg-u-hxy-u.yr.GLB", + "land.grassFracC3.tavg-u-hxy-u.mon.GLB", + "land.grassFracC4.tavg-u-hxy-u.mon.GLB", + "land.hfdsl.tavg-u-hxy-lnd.3hr.GLB", + "land.hflsLut.tavg-u-hxy-multi.mon.GLB", + "land.hfssLut.tavg-u-hxy-multi.mon.GLB", + "land.irrDem.tavg-u-hxy-u.day.GLB", + "land.irrGw.tavg-u-hxy-u.day.GLB", + "land.irrLut.tavg-u-hxy-multi.mon.GLB", + "land.irrLut.tavg-u-hxy-u.day.GLB", + "land.irrSurf.tavg-u-hxy-u.day.GLB", + "land.laiLut.tavg-u-hxy-multi.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.3hr.GLB", + "land.mrros.tavg-u-hxy-lnd.3hr.GLB", + "land.mrsol.tavg-d100cm-hxy-lnd.3hr.GLB", + "land.mrsolLut.tavg-d10cm-hxy-multi.mon.GLB", + "land.nbpLut.tavg-u-hxy-multi.mon.GLB", + "land.nLeaf.tavg-u-hxy-lnd.mon.GLB", + "land.nLitterCwd.tavg-u-hxy-lnd.mon.GLB", + "land.nLitterSubSurf.tavg-u-hxy-lnd.mon.GLB", + "land.nLitterSurf.tavg-u-hxy-lnd.mon.GLB", + "land.nMineralNH4.tavg-u-hxy-lnd.mon.GLB", + "land.nMineralNO3.tavg-u-hxy-lnd.mon.GLB", + "land.nOther.tavg-u-hxy-lnd.mon.GLB", + "land.npp.tavg-u-hxy-ng.mon.GLB", + "land.npp.tavg-u-hxy-shb.mon.GLB", + "land.npp.tavg-u-hxy-tree.mon.GLB", + "land.nppLeaf.tavg-u-hxy-lnd.mon.GLB", + "land.nppLut.tavg-u-hxy-multi.mon.GLB", + "land.nppOther.tavg-u-hxy-lnd.mon.GLB", + "land.nppRoot.tavg-u-hxy-lnd.mon.GLB", + "land.nppStem.tavg-u-hxy-lnd.mon.GLB", + "land.nppVgt.tavg-u-hxy-multi.day.GLB", + "land.nRoot.tavg-u-hxy-lnd.mon.GLB", + "land.nStem.tavg-u-hxy-lnd.mon.GLB", + "land.orog.tavg-u-hxy-is.mon.ATA", + "land.orog.tavg-u-hxy-is.mon.GRL", + "land.orog.tavg-u-hxy-is.yr.ATA", + "land.orog.tavg-u-hxy-is.yr.GRL", + "land.pastureFracC3.tavg-u-hxy-u.mon.GLB", + "land.pastureFracC4.tavg-u-hxy-u.mon.GLB", + "land.qgwr.tavg-u-hxy-lnd.day.GLB", + "land.ra.tavg-u-hxy-ng.mon.GLB", + "land.ra.tavg-u-hxy-shb.mon.GLB", + "land.ra.tavg-u-hxy-tree.mon.GLB", + "land.raLeaf.tavg-u-hxy-lnd.mon.GLB", + "land.raLut.tavg-u-hxy-multi.mon.GLB", + "land.raOther.tavg-u-hxy-lnd.mon.GLB", + "land.raRoot.tavg-u-hxy-lnd.mon.GLB", + "land.raStem.tavg-u-hxy-lnd.mon.GLB", + "land.raVgt.tavg-u-hxy-multi.day.GLB", + "land.rh.tavg-u-hxy-ng.mon.GLB", + "land.rh.tavg-u-hxy-shb.mon.GLB", + "land.rh.tavg-u-hxy-tree.mon.GLB", + "land.rhLitter.tavg-u-hxy-lnd.mon.GLB", + "land.rhLut.tavg-u-hxy-multi.mon.GLB", + "land.rhSoil.tavg-u-hxy-lnd.mon.GLB", + "land.rhVgt.tavg-u-hxy-multi.day.GLB", + "land.rzwc.tavg-u-hxy-lnd.day.GLB", + "land.sftgif.tavg-u-hxy-u.yr.ATA", + "land.sftgif.tavg-u-hxy-u.yr.GRL", + "land.shrubFrac.tavg-u-hxy-u.yr.GLB", + "land.sw.tavg-u-hxy-lnd.day.GLB", + "land.sweLut.tavg-u-hxy-multi.mon.GLB", + "land.tasLut.tavg-h2m-hxy-multi.mon.GLB", + "land.tran.tavg-u-hxy-u.3hr.GLB", + "land.treeFrac.tavg-u-hxy-u.yr.GLB", + "land.treeFracBdlDcd.tavg-u-hxy-u.mon.GLB", + "land.treeFracBdlEvg.tavg-u-hxy-u.mon.GLB", + "land.treeFracNdlDcd.tavg-u-hxy-u.mon.GLB", + "land.treeFracNdlEvg.tavg-u-hxy-u.mon.GLB", + "land.tsLut.tavg-u-hxy-multi.mon.GLB", + "land.vegHeight.tavg-u-hxy-ng.mon.GLB", + "land.vegHeight.tavg-u-hxy-shb.mon.GLB", + "land.wetlandCH4cons.tavg-u-hxy-lnd.mon.GLB", + "land.wetlandCH4prod.tavg-u-hxy-lnd.mon.GLB", + "land.wetlandFrac.tavg-u-hxy-u.mon.GLB", + "landIce.acabf.tavg-u-hxy-is.mon.ATA", + "landIce.acabf.tavg-u-hxy-is.mon.GRL", + "landIce.acabf.tavg-u-hxy-is.yr.ATA", + "landIce.acabf.tavg-u-hxy-is.yr.GRL", + "landIce.agesno.tavg-u-hxy-lnd.mon.GLB", + "landIce.hfdsn.tavg-u-hxy-lnd.day.GLB", + "landIce.hfgeoubed.tavg-u-hxy-gis.yr.ATA", + "landIce.hfgeoubed.tavg-u-hxy-gis.yr.GRL", + "landIce.hfgeoubed.ti-u-hxy-gis.fx.ATA", + "landIce.iareafl.tavg-u-hm-fis.yr.ATA", + "landIce.iareafl.tavg-u-hm-fis.yr.GRL", + "landIce.iareagr.tavg-u-hm-gis.yr.ATA", + "landIce.iareagr.tavg-u-hm-gis.yr.GRL", + "landIce.icem.tavg-u-hxy-is.mon.ATA", + "landIce.icem.tavg-u-hxy-is.mon.GRL", + "landIce.libmassbf.tavg-u-hxy-fis.mon.ATA", + "landIce.libmassbf.tavg-u-hxy-fis.mon.GRL", + "landIce.libmassbf.tavg-u-hxy-fis.yr.ATA", + "landIce.libmassbf.tavg-u-hxy-fis.yr.GRL", + "landIce.libmassbf.tavg-u-hxy-gis.mon.ATA", + "landIce.libmassbf.tavg-u-hxy-gis.mon.GRL", + "landIce.libmassbf.tavg-u-hxy-gis.yr.ATA", + "landIce.libmassbf.tavg-u-hxy-gis.yr.GRL", + "landIce.licalvf.tavg-u-hxy-is.mon.ATA", + "landIce.licalvf.tavg-u-hxy-is.mon.GRL", + "landIce.licalvf.tavg-u-hxy-is.yr.ATA", + "landIce.licalvf.tavg-u-hxy-is.yr.GRL", + "landIce.lifmassbf.tavg-u-hxy-is.mon.ATA", + "landIce.lifmassbf.tavg-u-hxy-is.mon.GRL", + "landIce.lifmassbf.tavg-u-hxy-is.yr.ATA", + "landIce.lifmassbf.tavg-u-hxy-is.yr.GRL", + "landIce.lim.tavg-u-hm-is.yr.ATA", + "landIce.lim.tavg-u-hm-is.yr.GRL", + "landIce.limnsw.tavg-u-hm-is.yr.ATA", + "landIce.limnsw.tavg-u-hm-is.yr.GRL", + "landIce.litempbot.tavg-u-hxy-fis.mon.ATA", + "landIce.litempbot.tavg-u-hxy-fis.mon.GRL", + "landIce.litempbot.tavg-u-hxy-fis.yr.ATA", + "landIce.litempbot.tavg-u-hxy-fis.yr.GRL", + "landIce.litempbot.tavg-u-hxy-gis.mon.ATA", + "landIce.litempbot.tavg-u-hxy-gis.mon.GRL", + "landIce.litempbot.tavg-u-hxy-gis.yr.ATA", + "landIce.litempbot.tavg-u-hxy-gis.yr.GRL", + "landIce.litemptop.tavg-u-hxy-is.mon.ATA", + "landIce.litemptop.tavg-u-hxy-is.mon.GRL", + "landIce.litemptop.tavg-u-hxy-is.yr.ATA", + "landIce.litemptop.tavg-u-hxy-is.yr.GRL", + "landIce.lithk.tavg-u-hxy-is.yr.ATA", + "landIce.lithk.tavg-u-hxy-is.yr.GRL", + "landIce.lithk.ti-u-hxy-is.fx.ATA", + "landIce.lwsnl.tavg-u-hxy-lnd.day.GLB", + "landIce.lwsnl.tavg-u-hxy-lnd.mon.GLB", + "landIce.modelcellareai.tavg-u-hxy-u.yr.ATA", + "landIce.modelcellareai.tavg-u-hxy-u.yr.GRL", + "landIce.mrroLi.tavg-u-hxy-is.mon.ATA", + "landIce.mrroLi.tavg-u-hxy-is.mon.GRL", + "landIce.pflw.tavg-u-hxy-lnd.day.GLB", + "landIce.sbl.tavg-u-hxy-is.mon.ATA", + "landIce.sbl.tavg-u-hxy-is.mon.GRL", + "landIce.sbl.tavg-u-hxy-u.day.GLB", + "landIce.sftflf.tavg-u-hxy-u.yr.ATA", + "landIce.sftflf.tavg-u-hxy-u.yr.GRL", + "landIce.sftgrf.tavg-u-hxy-u.yr.ATA", + "landIce.sftgrf.tavg-u-hxy-u.yr.GRL", + "landIce.snc.tavg-u-hxy-is.mon.ATA", + "landIce.snc.tavg-u-hxy-is.mon.GRL", + "landIce.snc.tavg-u-hxy-is.yr.ATA", + "landIce.snc.tavg-u-hxy-is.yr.GRL", + "landIce.snc.tavg-u-hxy-lnd.day.GLB", + "landIce.snd.tavg-u-hxy-lnd.day.GLB", + "landIce.snicem.tavg-u-hxy-is.mon.ATA", + "landIce.snm.tavg-u-hxy-is.mon.ATA", + "landIce.snm.tavg-u-hxy-is.mon.GRL", + "landIce.snm.tavg-u-hxy-lnd.day.GLB", + "landIce.snrefr.tavg-u-hxy-is.mon.ATA", + "landIce.snrefr.tavg-u-hxy-is.mon.GRL", + "landIce.strbasemag.tavg-u-hxy-is.yr.ATA", + "landIce.strbasemag.tavg-u-hxy-is.yr.GRL", + "landIce.tendacabf.tavg-u-hm-is.yr.ATA", + "landIce.tendacabf.tavg-u-hm-is.yr.GRL", + "landIce.tendlibmassbf.tavg-u-hm-is.yr.ATA", + "landIce.tendlibmassbf.tavg-u-hm-is.yr.GRL", + "landIce.tendlicalvf.tavg-u-hm-is.yr.ATA", + "landIce.tendlicalvf.tavg-u-hm-is.yr.GRL", + "landIce.topg.tavg-u-hxy-gis.yr.ATA", + "landIce.topg.tavg-u-hxy-gis.yr.GRL", + "landIce.topg.ti-u-hxy-gis.fx.ATA", + "landIce.tpf.tavg-u-hxy-lnd.day.GLB", + "landIce.tsn.tavg-u-hxy-is.mon.ATA", + "landIce.tsn.tavg-u-hxy-is.mon.GRL", + "landIce.tsn.tavg-u-hxy-lnd.day.GLB", + "landIce.xvelbase.tavg-u-hxy-is.yr.ATA", + "landIce.xvelbase.tavg-u-hxy-is.yr.GRL", + "landIce.xvelmean.tavg-u-hxy-is.yr.ATA", + "landIce.xvelmean.tavg-u-hxy-is.yr.GRL", + "landIce.xvelsurf.tavg-u-hxy-is.yr.ATA", + "landIce.xvelsurf.tavg-u-hxy-is.yr.GRL", + "landIce.yvelbase.tavg-u-hxy-is.yr.ATA", + "landIce.yvelbase.tavg-u-hxy-is.yr.GRL", + "landIce.yvelmean.tavg-u-hxy-is.yr.ATA", + "landIce.yvelmean.tavg-u-hxy-is.yr.GRL", + "landIce.yvelsurf.tavg-u-hxy-is.yr.ATA", + "landIce.yvelsurf.tavg-u-hxy-is.yr.GRL", + "landIce.zvelbase.tavg-u-hxy-is.yr.ATA", + "landIce.zvelbase.tavg-u-hxy-is.yr.GRL", + "landIce.zvelsurf.tavg-u-hxy-is.yr.ATA", + "landIce.zvelsurf.tavg-u-hxy-is.yr.GRL", + "ocean.evspsbl.tavg-u-hxy-ifs.mon.GLB", + "ocean.hfacrossline.tavg-u-ht-sea.mon.GLB", + "ocean.hfevapds.tavg-u-hxy-ifs.mon.GLB", + "ocean.hfibthermds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfibthermds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfrainds.tavg-u-hxy-ifs.mon.GLB", + "ocean.hfrunoffds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfrunoffds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfsnthermds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfsnthermds.tavg-u-hxy-sea.mon.GLB", + "ocean.mfo.tavg-u-ht-sea.mon.GLB", + "ocean.sf6.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfacrossline.tavg-u-ht-sea.mon.GLB", + "ocean.sfdsi.tavg-u-hxy-sea.mon.GLB", + "ocean.sfriver.tavg-u-hxy-sea.mon.GLB", + "ocean.siflfwbot.tavg-u-hxy-sea.mon.GLB", + "ocean.so.tavg-ol-hxy-sea.day.GLB", + "ocean.t17d.tavg-u-hxy-sea.mon.GLB", + "ocean.t20d.tavg-u-hxy-sea.mon.GLB", + "ocean.tnkebto.tavg-u-hxy-sea.yr.GLB", + "ocean.vsf.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfcorr.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfevap.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfpr.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfriver.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfsit.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.arag.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.arag.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.calc.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.calc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chl.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.chlcalc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.detoc.tavg-ol-hxy-sea.day.GLB", + "ocnBgchem.dissoc.tavg-ol-hxy-sea.day.GLB", + "ocnBgchem.dmso.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.epn.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.epp.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.exparagob.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.expcalcob.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.expcob.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.expfeob.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.expnob.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.exppob.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.expsiob.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fgdms.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.frfe.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.frn.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppcalc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppdiat.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppdiaz.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppmisc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppnano.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppnitrate.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intpppico.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limfecalc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limfediat.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limfediaz.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limfemisc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limfepico.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limirrcalc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limirrdiat.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limirrdiaz.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limirrmisc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limirrpico.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limncalc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limndiat.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limndiaz.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limnmisc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limnpico.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.o2.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.o2sat.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.ph.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.pp.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.sialgc.tavg-u-hxy-si.mon.GLB", + "ocnBgchem.sichl.tavg-u-hxy-si.mon.GLB", + "ocnBgchem.sigpp.tavg-u-hxy-si.mon.GLB", + "ocnBgchem.sino3.tavg-u-hxy-si.mon.GLB", + "ocnBgchem.sisi.tavg-u-hxy-si.mon.GLB", + "seaIce.sfdsi.tavg-u-hxy-si.mon.GLB", + "seaIce.siage.tavg-u-hxy-si.mon.GLB", + "seaIce.siarea.tavg-u-hm-u.day.NH", + "seaIce.siarea.tavg-u-hm-u.day.SH", + "seaIce.sicompstren.tavg-u-hxy-si.mon.GLB", + "seaIce.sidivvel.tpt-u-hxy-si.mon.GLB", + "seaIce.sidmasstranx.tavg-u-hxy-u.mon.GLB", + "seaIce.sidmasstrany.tavg-u-hxy-u.mon.GLB", + "seaIce.sidragbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidragtop.tavg-u-hxy-si.mon.GLB", + "seaIce.siextent.tavg-u-hm-u.day.NH", + "seaIce.siextent.tavg-u-hm-u.day.SH", + "seaIce.sifb.tavg-u-hxy-si.day.GLB", + "seaIce.sifb.tavg-u-hxy-si.mon.GLB", + "seaIce.siflfwbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflfwdrain.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcecoriolx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcecorioly.tavg-u-hxy-si.mon.GLB", + "seaIce.siforceintstrx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforceintstry.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcetiltx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcetilty.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdconc.tavg-u-hxy-si.day.GLB", + "seaIce.siitdsnconc.tavg-u-hxy-si.day.GLB", + "seaIce.siitdsnthick.tavg-u-hxy-si.day.GLB", + "seaIce.siitdthick.tavg-u-hxy-si.day.GLB", + "seaIce.simpconc.tavg-u-hxy-si.day.GLB", + "seaIce.simpeffconc.tavg-u-hxy-si.day.GLB", + "seaIce.simpeffconc.tavg-u-hxy-si.mon.GLB", + "seaIce.simprefrozen.tavg-u-hxy-simp.day.GLB", + "seaIce.simprefrozen.tavg-u-hxy-simp.mon.GLB", + "seaIce.simpthick.tavg-u-hxy-si.day.GLB", + "seaIce.simpthick.tavg-u-hxy-simp.mon.GLB", + "seaIce.sirdgconc.tavg-u-hxy-si.day.GLB", + "seaIce.sisali.tavg-u-hxy-si.day.GLB", + "seaIce.sisali.tavg-u-hxy-si.mon.GLB", + "seaIce.sisaltmass.tavg-u-hxy-si.day.GLB", + "seaIce.sishearvel.tpt-u-hxy-si.mon.GLB", + "seaIce.sisnmass.tavg-u-hm-u.day.NH", + "seaIce.sisnmass.tavg-u-hm-u.day.SH", + "seaIce.sitempbot.tavg-u-hxy-si.day.GLB", + "seaIce.sitempbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sitempsnic.tavg-u-hxy-si.day.GLB", + "seaIce.sithick.tavg-u-hxy-sir.day.GLB", + "seaIce.sithick.tavg-u-hxy-sir.mon.GLB", + "seaIce.sivol.tavg-u-hm-u.day.NH", + "seaIce.sivol.tavg-u-hm-u.day.SH" + ], + "Low": [ + "aerosol.sfpm1.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.sfpm10.tavg-h2m-hxy-u.1hr.GLB", + "atmos.hurs.tmin-h2m-hxy-crp.day.GLB", + "atmos.pr.tavg-u-hxy-crp.day.GLB", + "atmos.tas.tmax-h2m-hxy-crp.day.GLB", + "atmos.tas.tmin-h2m-hxy-crp.day.GLB", + "atmosChem.drynh3.tavg-u-hxy-u.day.GLB", + "atmosChem.drynh4.tavg-u-hxy-u.day.GLB", + "atmosChem.drynoy.tavg-u-hxy-u.day.GLB", + "atmosChem.flashrate.tavg-u-hxy-u.mon.GLB", + "atmosChem.wetnh3.tavg-u-hxy-u.day.GLB", + "atmosChem.wetnh4.tavg-u-hxy-u.day.GLB", + "atmosChem.wetnoy.tavg-u-hxy-u.day.GLB", + "land.c13Land.tavg-u-hxy-lnd.mon.GLB", + "land.c13Litter.tavg-u-hxy-lnd.mon.GLB", + "land.c13Soil.tavg-u-hxy-lnd.mon.GLB", + "land.c13Veg.tavg-u-hxy-lnd.mon.GLB", + "land.c14Land.tavg-u-hxy-lnd.mon.GLB", + "land.c14Litter.tavg-u-hxy-lnd.mon.GLB", + "land.c14Soil.tavg-u-hxy-lnd.mon.GLB", + "land.c14Veg.tavg-u-hxy-lnd.mon.GLB", + "land.c3PftFrac.tavg-u-hxy-u.mon.GLB", + "land.c4PftFrac.tavg-u-hxy-u.mon.GLB", + "land.gppc13.tavg-u-hxy-lnd.mon.GLB", + "land.gppc14.tavg-u-hxy-lnd.mon.GLB", + "land.lai.tavg-u-hxy-lnd.day.GLB", + "land.netAtmosLandC13Flux.tavg-u-hxy-lnd.mon.GLB", + "land.netAtmosLandC14Flux.tavg-u-hxy-lnd.mon.GLB", + "land.rac13.tavg-u-hxy-lnd.mon.GLB", + "land.rac14.tavg-u-hxy-lnd.mon.GLB", + "land.rhc13.tavg-u-hxy-lnd.mon.GLB", + "land.rhc14.tavg-u-hxy-lnd.mon.GLB", + "ocean.difmxybo.tavg-ol-hxy-sea.yr.GLB", + "ocean.difmxylo.tavg-ol-hxy-sea.yr.GLB", + "ocean.diftrblo.tavg-ol-hxy-sea.yr.GLB", + "ocean.diftrelo.tavg-ol-hxy-sea.yr.GLB", + "ocean.difvho.tavg-ol-hxy-sea.yr.GLB", + "ocean.difvso.tavg-ol-hxy-sea.yr.GLB", + "ocean.dispkexyfo.tavg-u-hxy-sea.yr.GLB", + "ocean.dxto.ti-u-hxy-u.fx.GLB", + "ocean.dxuo.ti-u-hxy-u.fx.GLB", + "ocean.dxvo.ti-u-hxy-u.fx.GLB", + "ocean.dyto.ti-u-hxy-u.fx.GLB", + "ocean.dyuo.ti-u-hxy-u.fx.GLB", + "ocean.dyvo.ti-u-hxy-u.fx.GLB", + "ocean.mlotstsq.tavg-u-hxy-sea.mon.GLB", + "ocean.msftmmpa.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftmmpa.tavg-rho-hyb-sea.mon.GLB", + "ocean.msftmsmpa.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftypa.tavg-ol-ht-sea.mon.GLB", + "ocean.msftypa.tavg-rho-ht-sea.mon.GLB", + "ocean.ocontempdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontempmint.tavg-u-hxy-sea.yr.GLB", + "ocean.ocontemppadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemppmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemppsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemprmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemptend.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottempdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottempmint.tavg-u-hxy-sea.yr.GLB", + "ocean.opottemppadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemppmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemppsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemprmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemptend.tavg-ol-hxy-sea.dec.GLB", + "ocean.osaltdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpsmadvect.tavg-ol-hxy-sea.mon.GLB", + "ocean.osaltpsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltrmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osalttend.tavg-ol-hxy-sea.yr.GLB", + "ocean.rsdo.tavg-ol-hxy-sea.day.GLB", + "ocean.rsdoabsorb.tavg-ol-hxy-sea.yr.GLB", + "ocean.somint.tavg-u-hxy-sea.yr.GLB", + "ocean.sossq.tavg-u-hxy-sea.mon.GLB", + "ocean.thkcelluo.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcellvo.tavg-ol-hxy-sea.mon.GLB", + "ocean.tnpeo.tavg-u-hxy-sea.yr.GLB", + "ocean.tossq.tavg-u-hxy-sea.mon.GLB", + "ocean.wo.tavg-ol-hxy-sea.day.GLB", + "ocnBgchem.dissi13c.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.dissi13c.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissi14c.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissi14cabio.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.dissi14cabio.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.expcob.tavg-u-hxy-sea.day.GLB", + "ocnBgchem.fg13co2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fg14co2abio.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intpoc.tavg-u-hxy-sea.day.GLB", + "ocnBgchem.o2.tavg-d0m-hxy-sea.day.GLB", + "ocnBgchem.o2min.tavg-u-hxy-sea.day.GLB", + "ocnBgchem.phyc.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.phycalc.tavg-ol-hxy-sea.day.GLB", + "ocnBgchem.phydiat.tavg-d0m-hxy-sea.day.GLB", + "ocnBgchem.phydiaz.tavg-d0m-hxy-sea.day.GLB", + "ocnBgchem.phymisc.tavg-d0m-hxy-sea.day.GLB", + "ocnBgchem.phynano.tavg-u-hxy-sea.day.GLB", + "ocnBgchem.phypico.tavg-ol-hxy-sea.day.GLB", + "ocnBgchem.zmeso.tavg-ol-hxy-sea.day.GLB", + "ocnBgchem.zmicro.tavg-ol-hxy-sea.day.GLB", + "ocnBgchem.zooc.tavg-ol-hxy-sea.day.GLB" + ] + }, + "scenariomip6": { + "Core": [ + "atmos.areacella.ti-u-hxy-u.fx.GLB", + "atmos.cl.tavg-al-hxy-u.mon.GLB", + "atmos.cli.tavg-al-hxy-u.mon.GLB", + "atmos.clivi.tavg-u-hxy-u.mon.GLB", + "atmos.clt.tavg-u-hxy-u.day.GLB", + "atmos.clt.tavg-u-hxy-u.mon.GLB", + "atmos.clw.tavg-al-hxy-u.mon.GLB", + "atmos.clwvi.tavg-u-hxy-u.mon.GLB", + "atmos.evspsbl.tavg-u-hxy-u.mon.GLB", + "atmos.hfls.tavg-u-hxy-u.mon.GLB", + "atmos.hfss.tavg-u-hxy-u.mon.GLB", + "atmos.hur.tavg-p19-hxy-air.mon.GLB", + "atmos.hur.tavg-p19-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.6hr.GLB", + "atmos.hurs.tavg-h2m-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.mon.GLB", + "atmos.hus.tavg-p19-hxy-u.day.GLB", + "atmos.hus.tavg-p19-hxy-u.mon.GLB", + "atmos.huss.tavg-h2m-hxy-u.day.GLB", + "atmos.huss.tavg-h2m-hxy-u.mon.GLB", + "atmos.huss.tpt-h2m-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.1hr.GLB", + "atmos.pr.tavg-u-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.day.GLB", + "atmos.pr.tavg-u-hxy-u.mon.GLB", + "atmos.prc.tavg-u-hxy-u.mon.GLB", + "atmos.prsn.tavg-u-hxy-u.mon.GLB", + "atmos.prw.tavg-u-hxy-u.mon.GLB", + "atmos.ps.tavg-u-hxy-u.day.GLB", + "atmos.ps.tavg-u-hxy-u.mon.GLB", + "atmos.psl.tavg-u-hxy-u.day.GLB", + "atmos.psl.tavg-u-hxy-u.mon.GLB", + "atmos.rlds.tavg-u-hxy-u.mon.GLB", + "atmos.rldscs.tavg-u-hxy-u.mon.GLB", + "atmos.rlus.tavg-u-hxy-u.mon.GLB", + "atmos.rluscs.tavg-u-hxy-u.mon.GLB", + "atmos.rlut.tavg-u-hxy-u.mon.GLB", + "atmos.rlutcs.tavg-u-hxy-u.mon.GLB", + "atmos.rsds.tavg-u-hxy-u.day.GLB", + "atmos.rsds.tavg-u-hxy-u.mon.GLB", + "atmos.rsdscs.tavg-u-hxy-u.mon.GLB", + "atmos.rsdt.tavg-u-hxy-u.mon.GLB", + "atmos.rsus.tavg-u-hxy-u.mon.GLB", + "atmos.rsuscs.tavg-u-hxy-u.mon.GLB", + "atmos.rsut.tavg-u-hxy-u.mon.GLB", + "atmos.rsutcs.tavg-u-hxy-u.mon.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.day.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.mon.GLB", + "atmos.sftlf.ti-u-hxy-u.fx.GLB", + "atmos.ta.tavg-p19-hxy-air.day.GLB", + "atmos.ta.tavg-p19-hxy-air.mon.GLB", + "atmos.ta.tpt-p3-hxy-air.6hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.day.GLB", + "atmos.tas.tavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tmax-h2m-hxy-u.day.GLB", + "atmos.tas.tmaxavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tmin-h2m-hxy-u.day.GLB", + "atmos.tas.tminavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tpt-h2m-hxy-u.3hr.GLB", + "atmos.tauu.tavg-u-hxy-u.mon.GLB", + "atmos.tauv.tavg-u-hxy-u.mon.GLB", + "atmos.ts.tavg-u-hxy-u.mon.GLB", + "atmos.ua.tavg-p19-hxy-air.day.GLB", + "atmos.ua.tavg-p19-hxy-air.mon.GLB", + "atmos.ua.tpt-p3-hxy-air.6hr.GLB", + "atmos.uas.tavg-h10m-hxy-u.day.GLB", + "atmos.uas.tavg-h10m-hxy-u.mon.GLB", + "atmos.uas.tpt-h10m-hxy-u.3hr.GLB", + "atmos.va.tavg-p19-hxy-air.day.GLB", + "atmos.va.tavg-p19-hxy-air.mon.GLB", + "atmos.va.tpt-p3-hxy-air.6hr.GLB", + "atmos.vas.tavg-h10m-hxy-u.day.GLB", + "atmos.vas.tavg-h10m-hxy-u.mon.GLB", + "atmos.vas.tpt-h10m-hxy-u.3hr.GLB", + "atmos.wap.tavg-p19-hxy-air.mon.GLB", + "atmos.wap.tavg-p19-hxy-u.day.GLB", + "atmos.zg.tavg-p19-hxy-air.day.GLB", + "atmos.zg.tavg-p19-hxy-air.mon.GLB", + "land.evspsblsoi.tavg-u-hxy-lnd.mon.GLB", + "land.evspsblveg.tavg-u-hxy-lnd.mon.GLB", + "land.lai.tavg-u-hxy-lnd.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.mon.GLB", + "land.mrros.tavg-u-hxy-lnd.mon.GLB", + "land.mrso.tavg-u-hxy-lnd.mon.GLB", + "land.mrsofc.ti-u-hxy-lnd.fx.GLB", + "land.mrsol.tavg-d10cm-hxy-lnd.mon.GLB", + "land.orog.ti-u-hxy-u.fx.GLB", + "land.rootd.ti-u-hxy-lnd.fx.GLB", + "land.sftgif.ti-u-hxy-u.fx.GLB", + "land.slthick.ti-sl-hxy-lnd.fx.GLB", + "landIce.mrfso.tavg-u-hxy-lnd.mon.GLB", + "landIce.snc.tavg-u-hxy-lnd.mon.GLB", + "landIce.snw.tavg-u-hxy-lnd.mon.GLB", + "ocean.areacello.ti-u-hxy-u.fx.GLB", + "ocean.basin.ti-u-hxy-u.fx.GLB", + "ocean.bigthetao.tavg-ol-hxy-sea.mon.GLB", + "ocean.deptho.ti-u-hxy-sea.fx.GLB", + "ocean.hfds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfgeou.ti-u-hxy-sea.fx.GLB", + "ocean.masscello.tavg-ol-hxy-sea.mon.GLB", + "ocean.masscello.ti-ol-hxy-sea.fx.GLB", + "ocean.mlotst.tavg-u-hxy-sea.mon.GLB", + "ocean.sftof.ti-u-hxy-u.fx.GLB", + "ocean.so.tavg-ol-hxy-sea.mon.GLB", + "ocean.sos.tavg-u-hxy-sea.day.GLB", + "ocean.sos.tavg-u-hxy-sea.mon.GLB", + "ocean.tauuo.tavg-u-hxy-sea.mon.GLB", + "ocean.tauvo.tavg-u-hxy-sea.mon.GLB", + "ocean.thetao.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcello.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcello.ti-ol-hxy-sea.fx.GLB", + "ocean.tos.tavg-u-hxy-sea.day.GLB", + "ocean.tos.tavg-u-hxy-sea.mon.GLB", + "ocean.umo.tavg-ol-hxy-sea.mon.GLB", + "ocean.uo.tavg-ol-hxy-sea.mon.GLB", + "ocean.vmo.tavg-ol-hxy-sea.mon.GLB", + "ocean.vo.tavg-ol-hxy-sea.mon.GLB", + "ocean.wmo.tavg-ol-hxy-sea.mon.GLB", + "ocean.wo.tavg-ol-hxy-sea.mon.GLB", + "ocean.zos.tavg-u-hxy-sea.day.GLB", + "ocean.zos.tavg-u-hxy-sea.mon.GLB", + "ocean.zostoga.tavg-u-hm-sea.mon.GLB", + "seaIce.siconc.tavg-u-hxy-u.day.GLB", + "seaIce.siconc.tavg-u-hxy-u.mon.GLB", + "seaIce.simass.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-si.mon.GLB", + "seaIce.sitimefrac.tavg-u-hxy-sea.mon.GLB", + "seaIce.siu.tavg-u-hxy-si.mon.GLB", + "seaIce.siv.tavg-u-hxy-si.mon.GLB", + "seaIce.snd.tavg-u-hxy-sn.mon.GLB", + "seaIce.ts.tavg-u-hxy-si.mon.GLB" + ], + "High": [ + "aerosol.abs550aer.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550bc.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550dust.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550no3.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550oa.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550so4.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550ss.tavg-u-hxy-u.mon.GLB", + "aerosol.airmass.tavg-al-hxy-u.mon.GLB", + "aerosol.aoanh.tavg-al-hxy-u.mon.NH", + "aerosol.bry.tavg-p39-hy-air.mon.GLB", + "aerosol.bs550aer.tpt-al-hxy-u.6hr.GLB", + "aerosol.c2h6.tavg-al-hxy-u.mon.GLB", + "aerosol.c3h6.tavg-al-hxy-u.mon.GLB", + "aerosol.c3h8.tavg-al-hxy-u.mon.GLB", + "aerosol.ccldncl.tavg-u-hxy-ccl.mon.GLB", + "aerosol.ccn.tavg-u-hxy-ccl.mon.30S-90S", + "aerosol.ccn.tavg-u-hxy-ccl.mon.GLB", + "aerosol.ccn1.tavg-al-hxy-u.mon.30S-90S", + "aerosol.ccn1.tavg-al-hxy-u.mon.GLB", + "aerosol.ccnp02.tavg-al-hxy-u.mon.30S-90S", + "aerosol.ccnp02.tavg-al-hxy-u.mon.GLB", + "aerosol.cdnc.tavg-al-hxy-u.mon.30S-90S", + "aerosol.cdnc.tavg-al-hxy-u.mon.GLB", + "aerosol.cfc114.tavg-al-hxy-u.mon.GLB", + "aerosol.ch3coch3.tavg-al-hxy-u.mon.GLB", + "aerosol.cheaqpso4.tavg-al-hxy-u.mon.GLB", + "aerosol.chegpso4.tavg-al-hxy-u.mon.GLB", + "aerosol.chepasoa.tavg-u-hxy-u.mon.GLB", + "aerosol.chepsoa.tavg-u-hxy-u.mon.GLB", + "aerosol.cly.tavg-p39-hy-air.mon.GLB", + "aerosol.co.tavg-al-hxy-u.mon.GLB", + "aerosol.co.tavg-h2m-hxy-u.day.GLB", + "aerosol.cod.tavg-u-hxy-u.day.GLB", + "aerosol.cod.tavg-u-hxy-u.mon.30S-90S", + "aerosol.cod.tavg-u-hxy-u.mon.GLB", + "aerosol.conccn.tavg-al-hxy-u.mon.GLB", + "aerosol.conccn.tpt-u-hs-u.3hr.GLB", + "aerosol.depdust.tavg-u-hxy-u.mon.GLB", + "aerosol.drybc.tavg-u-hxy-u.mon.GLB", + "aerosol.drydust.tavg-u-hxy-u.mon.GLB", + "aerosol.dryno3.tavg-u-hxy-u.mon.GLB", + "aerosol.dryo3.tavg-u-hxy-u.mon.GLB", + "aerosol.dryoa.tavg-u-hxy-u.mon.GLB", + "aerosol.dryso2.tavg-u-hxy-u.mon.GLB", + "aerosol.dryso4.tavg-u-hxy-u.mon.GLB", + "aerosol.dryss.tavg-u-hxy-u.mon.GLB", + "aerosol.ec550aer.tavg-al-hxy-u.mon.GLB", + "aerosol.ec550aer.tpt-u-hxy-u.6hr.GLB", + "aerosol.emiaco.tavg-u-hxy-u.mon.GLB", + "aerosol.emianox.tavg-u-hxy-u.mon.GLB", + "aerosol.emiaoa.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbbc.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbch4.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbco.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbdms.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbnh3.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbnox.tavg-u-hxy-u.mon.GLB", + "aerosol.emibboa.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbso2.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbvoc.tavg-u-hxy-u.mon.GLB", + "aerosol.emibc.tavg-u-hxy-u.mon.GLB", + "aerosol.emibvoc.tavg-u-hxy-u.mon.GLB", + "aerosol.emico.tavg-u-hxy-u.mon.GLB", + "aerosol.emidms.tavg-u-hxy-u.mon.30S-90S", + "aerosol.emidms.tavg-u-hxy-u.mon.GLB", + "aerosol.emidust.tavg-u-hxy-u.mon.GLB", + "aerosol.emiisop.tavg-u-hxy-u.mon.GLB", + "aerosol.emilnox.tavg-al-hxy-u.mon.GLB", + "aerosol.eminh3.tavg-u-hxy-u.mon.GLB", + "aerosol.eminox.tavg-u-hxy-u.mon.GLB", + "aerosol.emioa.tavg-u-hxy-u.mon.GLB", + "aerosol.emiso2.tavg-u-hxy-u.mon.GLB", + "aerosol.emiso4.tavg-u-hxy-u.mon.GLB", + "aerosol.emiss.tavg-u-hxy-u.mon.30S-90S", + "aerosol.emiss.tavg-u-hxy-u.mon.GLB", + "aerosol.emivoc.tavg-u-hxy-u.mon.GLB", + "aerosol.h2o.tavg-al-hxy-u.mon.GLB", + "aerosol.h2o.tavg-p39-hy-air.mon.GLB", + "aerosol.hcfc22.tavg-al-hxy-u.mon.GLB", + "aerosol.hcho.tavg-al-hxy-u.mon.GLB", + "aerosol.hcl.tavg-al-hxy-u.mon.GLB", + "aerosol.hcl.tavg-p39-hy-air.mon.GLB", + "aerosol.hfc125.tavg-al-hxy-u.mon.GLB", + "aerosol.hfc134a.tavg-al-hxy-u.mon.GLB", + "aerosol.hno3.tavg-al-hxy-u.mon.GLB", + "aerosol.hno3.tavg-p39-hy-air.mon.GLB", + "aerosol.ho2.tavg-p39-hy-air.mon.GLB", + "aerosol.isop.tavg-al-hxy-u.mon.GLB", + "aerosol.jno2.tavg-al-hxy-u.mon.GLB", + "aerosol.lossch4.tavg-al-hxy-u.mon.GLB", + "aerosol.lossco.tavg-al-hxy-u.mon.GLB", + "aerosol.lossn2o.tavg-al-hxy-u.mon.GLB", + "aerosol.lwp.tavg-u-hxy-u.mon.GLB", + "aerosol.mmraerh2o.tavg-al-hxy-u.mon.GLB", + "aerosol.mmraerh2o.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmraerh2o.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrbc.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrbc.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrbc.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrbc.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrdust.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrdust.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrdust.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrdust.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrnh4.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrnh4.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrnh4.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrnh4.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrno3.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrno3.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrno3.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrno3.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmroa.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmroa.tavg-al-hxy-u.mon.GLB", + "aerosol.mmroa.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmroa.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrpm1.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrpm1.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrpm2p5.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrpm2p5.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrso4.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrso4.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrso4.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrso4.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrsoa.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrsoa.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrsoa.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrss.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrss.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrss.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrss.tpt-h2m-hs-u.3hr.GLB", + "aerosol.nh50.tavg-al-hxy-u.mon.GLB", + "aerosol.no.tavg-al-hxy-u.mon.GLB", + "aerosol.no2.tavg-al-hxy-u.mon.GLB", + "aerosol.no2.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.noy.tavg-p39-hy-air.mon.GLB", + "aerosol.o3.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.o3.tmax-h2m-hxy-u.day.GLB", + "aerosol.o3loss.tavg-al-hxy-u.mon.GLB", + "aerosol.o3prod.tavg-al-hxy-u.mon.GLB", + "aerosol.od443aer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550aer.tavg-u-hxy-u.day.GLB", + "aerosol.od550aer.tavg-u-hxy-u.mon.30S-90S", + "aerosol.od550aer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550aerh2o.tavg-u-hxy-u.mon.GLB", + "aerosol.od550bb.tavg-u-hxy-u.mon.GLB", + "aerosol.od550bc.tavg-u-hxy-u.mon.GLB", + "aerosol.od550csaer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550dust.tavg-u-hxy-u.mon.GLB", + "aerosol.od550lt1aer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550no3.tavg-u-hxy-u.mon.GLB", + "aerosol.od550oa.tavg-u-hxy-u.mon.GLB", + "aerosol.od550so4.tavg-u-hxy-u.mon.GLB", + "aerosol.od550soa.tavg-u-hxy-u.mon.GLB", + "aerosol.od550ss.tavg-u-hxy-u.mon.GLB", + "aerosol.od865aer.tavg-u-hxy-u.mon.GLB", + "aerosol.oh.tavg-al-hxy-u.mon.GLB", + "aerosol.oh.tavg-p39-hy-air.mon.GLB", + "aerosol.pan.tavg-al-hxy-u.mon.GLB", + "aerosol.photo1d.tavg-al-hxy-u.mon.GLB", + "aerosol.pod0.tsum-u-hxy-u.mon.GLB", + "aerosol.reffccwctop.tavg-u-hxy-cl.mon.GLB", + "aerosol.reffclwtop.tavg-u-hxy-cl.mon.30S-90S", + "aerosol.reffclwtop.tavg-u-hxy-cl.mon.GLB", + "aerosol.rluscsaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rlutaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rlutcsaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rsutaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rsutcsaf.tavg-u-hxy-u.mon.GLB", + "aerosol.sfpm1.tavg-h2m-hxy-u.day.GLB", + "aerosol.sfpm10.tavg-al-hxy-u.mon.30S-90S", + "aerosol.sfpm10.tavg-al-hxy-u.mon.GLB", + "aerosol.sfpm10.tavg-h2m-hxy-u.day.GLB", + "aerosol.sfpm25.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.sfpm25.tavg-h2m-hxy-u.day.GLB", + "aerosol.so2.tavg-al-hxy-u.mon.30S-90S", + "aerosol.so2.tavg-al-hxy-u.mon.GLB", + "aerosol.so2.tavg-h2m-hxy-u.day.GLB", + "aerosol.so2.tpt-h2m-hs-u.3hr.GLB", + "aerosol.tatp.tavg-u-hxy-u.mon.GLB", + "aerosol.toz.tavg-u-hxy-u.day.GLB", + "aerosol.toz.tavg-u-hxy-u.mon.GLB", + "aerosol.tropoz.tavg-u-hxy-u.mon.GLB", + "aerosol.ttop.tavg-u-hxy-cl.mon.GLB", + "aerosol.ua.tavg-10hPa-hxy-air.day.GLB", + "aerosol.vt100.tavg-100hPa-hy-air.mon.GLB", + "aerosol.wa.tavg-al-hxy-u.mon.GLB", + "aerosol.wetbc.tavg-u-hxy-u.mon.GLB", + "aerosol.wetdust.tavg-u-hxy-u.mon.GLB", + "aerosol.wetoa.tavg-u-hxy-u.mon.GLB", + "aerosol.wetso2.tavg-u-hxy-u.mon.GLB", + "aerosol.wetso4.tavg-u-hxy-u.mon.GLB", + "aerosol.wetss.tavg-u-hxy-u.mon.GLB", + "aerosol.zg.tavg-10hPa-hxy-air.day.GLB", + "atmos.albisccp.tavg-u-hxy-cl.mon.30S-90S", + "atmos.bldep.tavg-u-hxy-u.mon.GLB", + "atmos.bldep.tmax-u-hxy-u.day.GLB", + "atmos.bldep.tmin-u-hxy-u.day.GLB", + "atmos.bldep.tpt-u-hxy-u.3hr.GLB", + "atmos.cl.tavg-al-hxy-u.day.GLB", + "atmos.cl.tavg-al-hxy-u.mon.30S-90S", + "atmos.clc.tavg-al-hxy-u.mon.30S-90S", + "atmos.clc.tavg-al-hxy-u.mon.GLB", + "atmos.clcalipso.tavg-220hPa-hxy-air.mon.30S-90S", + "atmos.clcalipso.tavg-220hPa-hxy-air.mon.GLB", + "atmos.clcalipso.tavg-560hPa-hxy-air.mon.30S-90S", + "atmos.clcalipso.tavg-560hPa-hxy-air.mon.GLB", + "atmos.clcalipso.tavg-840hPa-hxy-air.mon.30S-90S", + "atmos.clcalipso.tavg-840hPa-hxy-air.mon.GLB", + "atmos.clcalipso.tavg-h40-hxy-air.mon.30S-90S", + "atmos.clcalipso.tavg-h40-hxy-air.mon.GLB", + "atmos.cldnci.tavg-u-hxy-cl.mon.GLB", + "atmos.cldncl.tavg-u-hxy-cl.mon.GLB", + "atmos.cldnvi.tavg-u-hxy-u.day.GLB", + "atmos.cldnvi.tavg-u-hxy-u.mon.GLB", + "atmos.cli.tavg-al-hxy-u.day.GLB", + "atmos.cli.tavg-al-hxy-u.mon.30S-90S", + "atmos.clic.tavg-al-hxy-u.mon.30S-90S", + "atmos.clis.tavg-al-hxy-u.mon.30S-90S", + "atmos.clisccp.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clisccp.tavg-p7c-hxy-air.mon.GLB", + "atmos.clivi.tavg-u-hxy-u.3hr.GLB", + "atmos.clivi.tavg-u-hxy-u.day.GLB", + "atmos.clivi.tavg-u-hxy-u.mon.30S-90S", + "atmos.clivimodis.tavg-u-hxy-u.mon.30S-90S", + "atmos.clivimodis.tavg-u-hxy-u.mon.GLB", + "atmos.clmodis.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clmodis.tavg-p7c-hxy-air.mon.GLB", + "atmos.clmodisice.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clmodisice.tavg-p7c-hxy-air.mon.GLB", + "atmos.clmodisiceReff.tavg-u-hxy-u.mon.GLB", + "atmos.clmodisliquid.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clmodisliquid.tavg-p7c-hxy-air.mon.GLB", + "atmos.clmodisliquidReff.tavg-u-hxy-u.mon.GLB", + "atmos.cls.tavg-al-hxy-u.mon.30S-90S", + "atmos.clt.tavg-u-hxy-lnd.day.GLB", + "atmos.clt.tavg-u-hxy-u.1hr.30S-90S", + "atmos.clt.tavg-u-hxy-u.3hr.GLB", + "atmos.clt.tavg-u-hxy-u.mon.30S-90S", + "atmos.cltc.tavg-u-hxy-u.mon.GLB", + "atmos.cltcalipso.tavg-u-hxy-u.day.GLB", + "atmos.cltcalipso.tavg-u-hxy-u.mon.30S-90S", + "atmos.cltcalipso.tavg-u-hxy-u.mon.GLB", + "atmos.cltcalipso.tpt-u-hxy-u.3hr.GLB", + "atmos.cltisccp.tavg-u-hxy-u.day.GLB", + "atmos.cltisccp.tavg-u-hxy-u.mon.30S-90S", + "atmos.cltisccp.tavg-u-hxy-u.mon.GLB", + "atmos.cltmodis.tavg-u-hxy-u.mon.30S-90S", + "atmos.cltmodis.tavg-u-hxy-u.mon.GLB", + "atmos.clw.tavg-al-hxy-u.day.GLB", + "atmos.clw.tavg-al-hxy-u.mon.30S-90S", + "atmos.clwc.tavg-al-hxy-u.mon.30S-90S", + "atmos.clws.tavg-al-hxy-u.mon.30S-90S", + "atmos.clwvi.tavg-u-hxy-u.3hr.GLB", + "atmos.clwvi.tavg-u-hxy-u.day.GLB", + "atmos.clwvi.tavg-u-hxy-u.mon.30S-90S", + "atmos.clwvimodis.tavg-u-hxy-u.mon.30S-90S", + "atmos.clwvimodis.tavg-u-hxy-u.mon.GLB", + "atmos.co2.tavg-al-hxy-u.mon.GLB", + "atmos.co2.tavg-h2m-hxy-u.mon.GLB", + "atmos.co2.tavg-p19-hxy-air.mon.GLB", + "atmos.co2.tclm-p19-hxy-air.mon.GLB", + "atmos.co2.tclm-u-hm-u.mon.GLB", + "atmos.co23D.tavg-al-hxy-u.mon.GLB", + "atmos.co2mass.tavg-u-hm-u.mon.GLB", + "atmos.dmc.tavg-alh-hxy-u.mon.30S-90S", + "atmos.edt.tavg-al-hxy-u.mon.30S-90S", + "atmos.evspsbl.tavg-u-hxy-lnd.day.GLB", + "atmos.evu.tavg-al-hxy-u.mon.30S-90S", + "atmos.fco2antt.tavg-u-hxy-u.mon.GLB", + "atmos.fco2fos.tavg-u-hxy-u.mon.GLB", + "atmos.fco2nat.tavg-u-hxy-u.mon.GLB", + "atmos.hfls.tavg-u-hxy-is.mon.GRL", + "atmos.hfls.tavg-u-hxy-u.3hr.GLB", + "atmos.hfls.tavg-u-hxy-u.day.GLB", + "atmos.hfls.tavg-u-hxy-u.mon.30S-90S", + "atmos.hfss.tavg-u-hxy-u.3hr.GLB", + "atmos.hfss.tavg-u-hxy-u.day.GLB", + "atmos.hfss.tavg-u-hxy-u.mon.30S-90S", + "atmos.hur.tavg-al-hxy-u.mon.30S-90S", + "atmos.hur.tavg-al-hxy-u.mon.GLB", + "atmos.hur.tavg-p19-hxy-air.mon.30S-90S", + "atmos.hurs.tavg-h2m-hxy-u.1hr.30S-90S", + "atmos.hurs.tavg-h2m-hxy-u.mon.30S-90S", + "atmos.hurs.tmax-h2m-hxy-u.day.GLB", + "atmos.hurs.tmin-h2m-hxy-u.day.GLB", + "atmos.hurs.tpt-h2m-hxy-u.3hr.GLB", + "atmos.hus.tavg-al-hxy-u.mon.30S-90S", + "atmos.hus.tavg-al-hxy-u.mon.GLB", + "atmos.hus.tavg-p19-hxy-u.mon.30S-90S", + "atmos.hus.tpt-al-hxy-u.6hr.GLB", + "atmos.hus.tpt-p7h-hxy-air.6hr.GLB", + "atmos.huss.tavg-h2m-hxy-u.6hr.GLB", + "atmos.huss.tavg-h2m-hxy-u.mon.30S-90S", + "atmos.huss.tpt-h2m-hxy-u.1hr.GLB", + "atmos.intuadse.tavg-u-hxy-u.day.GLB", + "atmos.intuadse.tavg-u-hxy-u.mon.GLB", + "atmos.intuaw.tavg-u-hxy-u.day.GLB", + "atmos.intuaw.tavg-u-hxy-u.mon.GLB", + "atmos.intuaw.tpt-u-hxy-u.6hr.GLB", + "atmos.intvadse.tavg-u-hxy-u.day.GLB", + "atmos.intvadse.tavg-u-hxy-u.mon.GLB", + "atmos.intvaw.tavg-u-hxy-u.day.GLB", + "atmos.intvaw.tavg-u-hxy-u.mon.GLB", + "atmos.intvaw.tpt-u-hxy-u.6hr.GLB", + "atmos.loadbc.tavg-u-hxy-u.day.GLB", + "atmos.loadoa.tavg-u-hxy-u.day.GLB", + "atmos.loadpoa.tavg-u-hxy-u.day.GLB", + "atmos.mc.tavg-alh-hxy-u.mon.GLB", + "atmos.mcd.tavg-alh-hxy-u.mon.30S-90S", + "atmos.mcu.tavg-alh-hxy-u.mon.30S-90S", + "atmos.mcu.tavg-alh-hxy-u.mon.GLB", + "atmos.pctisccp.tavg-u-hxy-cl.day.GLB", + "atmos.pctisccp.tavg-u-hxy-cl.mon.30S-90S", + "atmos.pctisccp.tavg-u-hxy-cl.mon.GLB", + "atmos.pfull.tavg-al-hxy-u.day.GLB", + "atmos.pfull.tavg-al-hxy-u.mon.GLB", + "atmos.pfull.tclm-al-hxy-u.mon.30S-90S", + "atmos.phalf.tavg-alh-hxy-u.mon.GLB", + "atmos.pr.tavg-u-hxy-u.1hr.30S-90S", + "atmos.pr.tavg-u-hxy-u.mon.30S-90S", + "atmos.pr.tmax-u-hxy-u.day.GLB", + "atmos.pr.tpt-u-hxy-u.6hr.GLB", + "atmos.pr17O.tavg-u-hxy-u.mon.GLB", + "atmos.pr18O.tavg-u-hxy-u.mon.GLB", + "atmos.pr2h.tavg-u-hxy-u.mon.GLB", + "atmos.prc.tavg-u-hxy-u.day.GLB", + "atmos.prc.tavg-u-hxy-u.mon.30S-90S", + "atmos.prra.tavg-u-hxy-is.mon.GRL", + "atmos.prra.tavg-u-hxy-lnd.day.GLB", + "atmos.prra.tavg-u-hxy-u.6hr.GLB", + "atmos.prra.tavg-u-hxy-u.mon.30S-90S", + "atmos.prra.tavg-u-hxy-u.mon.GLB", + "atmos.prsn.tavg-u-hxy-is.mon.GRL", + "atmos.prsn.tavg-u-hxy-u.3hr.GLB", + "atmos.prsn.tavg-u-hxy-u.6hr.GLB", + "atmos.prsn.tavg-u-hxy-u.day.GLB", + "atmos.prsn.tavg-u-hxy-u.mon.30S-90S", + "atmos.prsn18O.tavg-u-hxy-u.mon.GLB", + "atmos.prsn2h.tavg-u-hxy-u.mon.GLB", + "atmos.prw.tavg-u-hxy-u.3hr.GLB", + "atmos.prw.tavg-u-hxy-u.day.GLB", + "atmos.prw.tavg-u-hxy-u.mon.30S-90S", + "atmos.prw.tpt-u-hxy-u.6hr.GLB", + "atmos.ps.tavg-u-hxy-u.1hr.GLB", + "atmos.ps.tavg-u-hxy-u.6hr.GLB", + "atmos.ps.tavg-u-hxy-u.mon.30S-90S", + "atmos.ps.tpt-u-hxy-u.1hr.30S-90S", + "atmos.ps.tpt-u-hxy-u.3hr.GLB", + "atmos.ps.tpt-u-hxy-u.6hr.GLB", + "atmos.psl.tavg-u-hxy-u.mon.30S-90S", + "atmos.psl.tpt-u-hxy-u.1hr.GLB", + "atmos.psl.tpt-u-hxy-u.6hr.GLB", + "atmos.ptp.tavg-u-hxy-u.mon.GLB", + "atmos.reffcclwtop.tavg-u-hxy-ccl.mon.GLB", + "atmos.reffclic.tavg-al-hxy-ccl.mon.30S-90S", + "atmos.reffclic.tavg-al-hxy-ccl.mon.GLB", + "atmos.reffclis.tavg-al-hxy-scl.mon.30S-90S", + "atmos.reffclis.tavg-al-hxy-scl.mon.GLB", + "atmos.reffclwc.tavg-al-hxy-ccl.mon.30S-90S", + "atmos.reffclwc.tavg-al-hxy-ccl.mon.GLB", + "atmos.reffclws.tavg-al-hxy-scl.mon.30S-90S", + "atmos.reffclws.tavg-al-hxy-scl.mon.GLB", + "atmos.reffsclwtop.tavg-u-hxy-scl.mon.GLB", + "atmos.rld.tavg-alh-hxy-u.mon.GLB", + "atmos.rld4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rldcs.tavg-alh-hxy-u.mon.GLB", + "atmos.rldcs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rlds.tavg-u-hxy-u.1hr.30S-90S", + "atmos.rlds.tavg-u-hxy-u.1hr.GLB", + "atmos.rlds.tavg-u-hxy-u.3hr.GLB", + "atmos.rlds.tavg-u-hxy-u.6hr.GLB", + "atmos.rlds.tavg-u-hxy-u.day.GLB", + "atmos.rlds.tavg-u-hxy-u.mon.30S-90S", + "atmos.rldscs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rls.tavg-u-hxy-u.mon.GLB", + "atmos.rlu.tavg-alh-hxy-u.mon.GLB", + "atmos.rlu4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rlucs.tavg-alh-hxy-u.mon.GLB", + "atmos.rlucs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rlus.tavg-u-hxy-u.3hr.GLB", + "atmos.rlus.tavg-u-hxy-u.day.GLB", + "atmos.rlus.tavg-u-hxy-u.mon.30S-90S", + "atmos.rlut.tavg-u-hxy-u.3hr.GLB", + "atmos.rlut.tavg-u-hxy-u.day.GLB", + "atmos.rlut.tavg-u-hxy-u.mon.30S-90S", + "atmos.rlut4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rlutcs.tavg-u-hxy-u.3hr.GLB", + "atmos.rlutcs.tavg-u-hxy-u.day.GLB", + "atmos.rlutcs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rlutcs4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rsd.tavg-alh-hxy-u.mon.GLB", + "atmos.rsd4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsdcs.tavg-alh-hxy-u.mon.GLB", + "atmos.rsdcs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsds.tavg-u-hxy-u.1hr.30S-90S", + "atmos.rsds.tavg-u-hxy-u.1hr.GLB", + "atmos.rsds.tavg-u-hxy-u.3hr.GLB", + "atmos.rsds.tavg-u-hxy-u.6hr.GLB", + "atmos.rsds.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsdscs.tavg-u-hxy-u.day.GLB", + "atmos.rsdscs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsdt.tavg-u-hxy-u.day.GLB", + "atmos.rsdt.tavg-u-hxy-u.mon.30S-90S", + "atmos.rss.tavg-u-hxy-u.mon.GLB", + "atmos.rsu.tavg-alh-hxy-u.mon.GLB", + "atmos.rsu4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsucs.tavg-alh-hxy-u.mon.GLB", + "atmos.rsucs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsus.tavg-u-hxy-u.3hr.GLB", + "atmos.rsus.tavg-u-hxy-u.day.GLB", + "atmos.rsus.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsuscs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsut.tavg-u-hxy-u.3hr.GLB", + "atmos.rsut.tavg-u-hxy-u.day.GLB", + "atmos.rsut.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsut4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rsutcs.tavg-u-hxy-u.3hr.GLB", + "atmos.rsutcs.tavg-u-hxy-u.day.GLB", + "atmos.rsutcs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsutcs4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rtmt.tavg-u-hxy-u.mon.GLB", + "atmos.rv850.tpt-850hPa-hxy-air.6hr.GLB", + "atmos.scldncl.tavg-u-hxy-scl.mon.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.1hr.30S-90S", + "atmos.sfcWind.tavg-h10m-hxy-u.6hr.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.mon.30S-90S", + "atmos.sfcWind.tmax-h10m-hxy-u.day.GLB", + "atmos.ta.tavg-700hPa-hxy-air.day.GLB", + "atmos.ta.tavg-al-hxy-u.mon.30S-90S", + "atmos.ta.tavg-al-hxy-u.mon.GLB", + "atmos.ta.tavg-p19-hxy-air.mon.30S-90S", + "atmos.ta.tavg-p39-hy-air.mon.GLB", + "atmos.ta.tpt-al-hxy-u.6hr.GLB", + "atmos.ta.tpt-p5u-hxy-u.6hr.GLB", + "atmos.ta.tpt-p7h-hxy-air.6hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.1hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.6hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.mon.30S-90S", + "atmos.tas.tmaxavg-h2m-hxy-u.mon.30S-90S", + "atmos.tas.tminavg-h2m-hxy-u.mon.30S-90S", + "atmos.tdps.tavg-h2m-hxy-u.mon.GLB", + "atmos.tnt.tavg-al-hxy-u.mon.GLB", + "atmos.tntrl.tavg-al-hxy-u.mon.GLB", + "atmos.tntrs.tavg-al-hxy-u.mon.GLB", + "atmos.ts.tavg-u-hxy-u.6hr.GLB", + "atmos.ts.tavg-u-hxy-u.day.GLB", + "atmos.ts.tavg-u-hxy-u.mon.30S-90S", + "atmos.ts.tpt-u-hxy-u.3hr.GLB", + "atmos.ts.tpt-u-hxy-u.6hr.GLB", + "atmos.ua.tavg-al-hxy-u.mon.GLB", + "atmos.ua.tavg-p19-hxy-air.mon.30S-90S", + "atmos.ua.tavg-p39-hy-air.mon.GLB", + "atmos.ua.tpt-al-hxy-u.6hr.GLB", + "atmos.ua.tpt-h100m-hxy-u.1hr.GLB", + "atmos.ua.tpt-p5u-hxy-air.6hr.GLB", + "atmos.ua.tpt-p7h-hxy-air.6hr.GLB", + "atmos.uas.tavg-h10m-hxy-u.mon.30S-90S", + "atmos.uas.tpt-h10m-hxy-u.1hr.GLB", + "atmos.uas.tpt-h10m-hxy-u.6hr.GLB", + "atmos.va.tavg-al-hxy-u.mon.GLB", + "atmos.va.tavg-p19-hxy-air.mon.30S-90S", + "atmos.va.tavg-p39-hy-air.mon.GLB", + "atmos.va.tpt-al-hxy-u.6hr.GLB", + "atmos.va.tpt-h100m-hxy-u.1hr.GLB", + "atmos.va.tpt-p5u-hxy-air.6hr.GLB", + "atmos.va.tpt-p7h-hxy-air.6hr.GLB", + "atmos.vas.tavg-h10m-hxy-u.mon.30S-90S", + "atmos.vas.tpt-h10m-hxy-u.1hr.GLB", + "atmos.vas.tpt-h10m-hxy-u.6hr.GLB", + "atmos.wap.tavg-p19-hxy-air.mon.30S-90S", + "atmos.wsg.tmax-h100m-hxy-u.1hr.GLB", + "atmos.wsg.tmax-h10m-hxy-u.1hr.GLB", + "atmos.zg.tavg-1000hPa-hxy-air.day.GLB", + "atmos.zg.tavg-500hPa-hxy-air.day.GLB", + "atmos.zg.tavg-al-hxy-u.mon.GLB", + "atmos.zg.tavg-p19-hxy-air.mon.30S-90S", + "atmos.zg.tavg-p39-hy-air.mon.GLB", + "atmos.zg.tpt-500hPa-hxy-air.6hr.GLB", + "atmos.zg.tpt-al-hxy-u.6hr.GLB", + "atmos.zg.tpt-p3-hxy-air.6hr.GLB", + "atmos.zg.tpt-p7h-hxy-air.6hr.GLB", + "atmos.ztp.tavg-u-hxy-u.mon.GLB", + "atmosChem.c2h4.tavg-al-hxy-u.mon.GLB", + "atmosChem.c2h5oh.tavg-al-hxy-u.mon.GLB", + "atmosChem.c4h10.tavg-al-hxy-u.mon.GLB", + "atmosChem.cfc11.tavg-u-hm-u.mon.GLB", + "atmosChem.cfc113.tavg-u-hm-u.mon.GLB", + "atmosChem.cfc12.tavg-u-hm-u.mon.GLB", + "atmosChem.ch3oh.tavg-al-hxy-u.mon.GLB", + "atmosChem.ch4.tavg-al-hxy-u.mon.GLB", + "atmosChem.ch4.tavg-p39-hy-air.mon.GLB", + "atmosChem.ch4losssoil.tavg-u-hxy-u.mon.GLB", + "atmosChem.ch4ref.ti-al-hxy-u.fx.GLB", + "atmosChem.chegph2oo1d.tavg-al-hxy-u.mon.GLB", + "atmosChem.chepnh4.tavg-al-hxy-u.mon.GLB", + "atmosChem.chepno3.tavg-al-hxy-u.mon.GLB", + "atmosChem.dms.tavg-al-hxy-u.mon.30S-90S", + "atmosChem.dms.tavg-al-hxy-u.mon.GLB", + "atmosChem.do3chm.tavg-al-hxy-u.mon.GLB", + "atmosChem.dryh2.tavg-u-hxy-u.mon.GLB", + "atmosChem.dryhno3.tavg-u-hxy-u.mon.GLB", + "atmosChem.drynh3.tavg-u-hxy-u.mon.GLB", + "atmosChem.drynh4.tavg-u-hxy-u.mon.GLB", + "atmosChem.drynoy.tavg-u-hxy-u.mon.GLB", + "atmosChem.e90inst.tpt-al-hxy-u.mon.GLB", + "atmosChem.emiach4.tavg-u-hxy-u.mon.GLB", + "atmosChem.emiavnox.tavg-al-hxy-u.mon.GLB", + "atmosChem.emic2h4.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic2h5oh.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic2h6.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic3h6.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic3h8.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic4h10.tavg-u-hxy-u.mon.GLB", + "atmosChem.emich3oh.tavg-u-hxy-u.mon.GLB", + "atmosChem.emich4.tavg-u-hxy-u.mon.GLB", + "atmosChem.emih2.tavg-u-hxy-u.mon.GLB", + "atmosChem.emilkch4.tavg-u-hxy-u.mon.GLB", + "atmosChem.h2.tavg-al-hxy-u.mon.GLB", + "atmosChem.h2loss.tavg-al-hxy-u.mon.GLB", + "atmosChem.h2prod.tavg-al-hxy-u.mon.GLB", + "atmosChem.hcfc22.tavg-u-hm-u.mon.GLB", + "atmosChem.meanage.tavg-al-hxy-u.mon.GLB", + "atmosChem.meanage.tavg-p39-hy-air.mon.GLB", + "atmosChem.n2o.tavg-al-hxy-u.mon.GLB", + "atmosChem.n2o.tavg-p39-hy-air.mon.GLB", + "atmosChem.o3.tavg-al-hxy-u.mon.GLB", + "atmosChem.o3.tavg-p19-hxy-air.mon.GLB", + "atmosChem.o3.tavg-p39-hy-air.mon.GLB", + "atmosChem.o3.tpt-al-hxy-u.mon.GLB", + "atmosChem.o3ref.tclm-al-hxy-u.fx.GLB", + "atmosChem.o3ref.ti-al-hxy-u.fx.GLB", + "atmosChem.o3ste.tavg-al-hxy-u.mon.GLB", + "atmosChem.rlutch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rlutcsch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rlutcso3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rluto3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsutch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsutcsch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsutcso3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsuto3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.stratch4loss.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropch4loss.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropch4lossoh.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropdo3chm.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropo3ste.tavg-al-hxy-u.mon.GLB", + "atmosChem.wethno3.tavg-al-hxy-u.mon.GLB", + "atmosChem.wetnh3.tavg-u-hxy-u.mon.GLB", + "atmosChem.wetnh4.tavg-u-hxy-u.mon.GLB", + "atmosChem.wetno3.tavg-al-hxy-u.mon.GLB", + "atmosChem.wetnoy.tavg-u-hxy-u.mon.GLB", + "land.albc.tavg-u-hxy-veg.mon.GLB", + "land.areacellr.ti-u-hxy-u.fx.GLB", + "land.baresoilFrac.tavg-u-hxy-u.mon.GLB", + "land.burntFractionAll.tavg-u-hxy-u.mon.GLB", + "land.cGeologicStorage.tavg-u-hxy-u.mon.GLB", + "land.cLand.tavg-u-hxy-lnd.mon.GLB", + "land.cLeaf.tavg-u-hxy-lnd.mon.GLB", + "land.cLitter.tavg-u-hxy-lnd.mon.GLB", + "land.cnc.tavg-u-hxy-u.mon.GLB", + "land.cProduct.tavg-u-hxy-lnd.mon.GLB", + "land.cRoot.tavg-u-hxy-lnd.mon.GLB", + "land.cropFrac.tavg-u-hxy-u.mon.GLB", + "land.cSoil.tavg-d100cm-hxy-lnd.mon.GLB", + "land.cSoil.tavg-sl-hxy-lnd.mon.GLB", + "land.cSoil.tavg-u-hxy-lnd.mon.GLB", + "land.cStem.tavg-u-hxy-lnd.mon.GLB", + "land.cVeg.tavg-u-hxy-lnd.mon.GLB", + "land.dcw.tavg-u-hxy-lnd.day.GLB", + "land.depthl.ti-u-hxy-u.fx.GLB", + "land.depthsl.ti-u-hxy-u.fx.GLB", + "land.dslw.tavg-u-hxy-lnd.day.GLB", + "land.evspsblpot.tavg-u-hxy-lnd.day.GLB", + "land.evspsblpot.tavg-u-hxy-lnd.mon.GLB", + "land.evspsblsoi.tavg-u-hxy-u.day.GLB", + "land.evspsblveg.tavg-u-hxy-u.day.GLB", + "land.fAnthDisturb.tavg-u-hxy-lnd.mon.GLB", + "land.fBNF.tavg-u-hxy-lnd.mon.GLB", + "land.fCLandToOcean.tavg-u-hxy-lnd.mon.GLB", + "land.fDeforestToAtmos.tavg-u-hxy-lnd.mon.GLB", + "land.fDeforestToProduct.tavg-u-hxy-lnd.mon.GLB", + "land.fFire.tavg-u-hxy-lnd.mon.GLB", + "land.fFireAll.tavg-u-hxy-lnd.mon.GLB", + "land.fFireNat.tavg-u-hxy-lnd.mon.GLB", + "land.fHarvestToAtmos.tavg-u-hxy-lnd.mon.GLB", + "land.fHarvestToGeologicStorage.tavg-u-hxy-lnd.mon.GLB", + "land.fHarvestToProduct.tavg-u-hxy-lnd.mon.GLB", + "land.fLitterSoil.tavg-u-hxy-lnd.mon.GLB", + "land.fLuc.tavg-u-hxy-lnd.mon.GLB", + "land.fN2O.tavg-u-hxy-lnd.mon.GLB", + "land.fNAnthDisturb.tavg-u-hxy-lnd.mon.GLB", + "land.fNdep.tavg-u-hxy-lnd.mon.GLB", + "land.fNfert.tavg-u-hxy-lnd.mon.GLB", + "land.fNgas.tavg-u-hxy-lnd.mon.GLB", + "land.fNgasFire.tavg-u-hxy-lnd.mon.GLB", + "land.fNLandToOcean.tavg-u-hxy-lnd.mon.GLB", + "land.fNleach.tavg-u-hxy-lnd.mon.GLB", + "land.fNLitterSoil.tavg-u-hxy-lnd.mon.GLB", + "land.fNloss.tavg-u-hxy-lnd.mon.GLB", + "land.fNnetmin.tavg-u-hxy-lnd.mon.GLB", + "land.fNOx.tavg-u-hxy-lnd.mon.GLB", + "land.fNProduct.tavg-u-hxy-lnd.mon.GLB", + "land.fNup.tavg-u-hxy-lnd.mon.GLB", + "land.fNVegLitter.tavg-u-hxy-lnd.mon.GLB", + "land.fNVegSoil.tavg-u-hxy-lnd.mon.GLB", + "land.fProductDecomp.tavg-u-hxy-lnd.mon.GLB", + "land.fVegLitter.tavg-u-hxy-lnd.mon.GLB", + "land.fVegSoil.tavg-u-hxy-lnd.mon.GLB", + "land.gpp.tavg-u-hxy-lnd.mon.GLB", + "land.gppVgt.tavg-u-hxy-multi.day.GLB", + "land.grassFrac.tavg-u-hxy-u.mon.GLB", + "land.laiVgt.tavg-u-hxy-multi.day.GLB", + "land.landCoverFrac.tavg-u-hxy-u.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.day.GLB", + "land.mrrob.tavg-u-hxy-lnd.day.GLB", + "land.mrros.tavg-u-hxy-lnd.day.GLB", + "land.mrsfl.tavg-sl-hxy-lnd.day.GLB", + "land.mrsfl.tavg-sl-hxy-lnd.mon.GLB", + "land.mrsll.tavg-sl-hxy-lnd.day.GLB", + "land.mrsll.tavg-sl-hxy-lnd.mon.GLB", + "land.mrso.tavg-u-hxy-lnd.day.GLB", + "land.mrsol.tavg-d10cm-hxy-lnd.day.GLB", + "land.mrsol.tavg-sl-hxy-lnd.day.GLB", + "land.mrsol.tavg-sl-hxy-lnd.mon.GLB", + "land.mrsol.tpt-d10cm-hxy-lnd.3hr.GLB", + "land.mrsow.tavg-u-hxy-lnd.day.GLB", + "land.mrtws.tavg-u-hxy-lnd.day.GLB", + "land.mrtws.tavg-u-hxy-lnd.mon.GLB", + "land.nbp.tavg-u-hxy-lnd.mon.GLB", + "land.nep.tavg-u-hxy-lnd.mon.GLB", + "land.nLand.tavg-u-hxy-lnd.mon.GLB", + "land.nLitter.tavg-u-hxy-lnd.mon.GLB", + "land.nMineral.tavg-u-hxy-lnd.mon.GLB", + "land.npp.tavg-u-hxy-lnd.mon.GLB", + "land.nProduct.tavg-u-hxy-lnd.mon.GLB", + "land.nSoil.tavg-u-hxy-lnd.mon.GLB", + "land.nVeg.tavg-u-hxy-lnd.mon.GLB", + "land.orog.ti-u-hxy-u.fx.30S-90S", + "land.pastureFrac.tavg-u-hxy-u.mon.GLB", + "land.prveg.tavg-u-hxy-lnd.mon.GLB", + "land.ra.tavg-u-hxy-lnd.mon.GLB", + "land.residualFrac.tavg-u-hxy-u.mon.GLB", + "land.rh.tavg-u-hxy-lnd.mon.GLB", + "land.rivi.tavg-u-hxy-lnd.day.GLB", + "land.rivo.tavg-u-hxy-lnd.day.GLB", + "land.rsds.tavg-u-hxy-lnd.mon.GLB", + "land.rsds.tavg-u-hxy-sn.mon.GLB", + "land.rsus.tavg-u-hxy-lnd.mon.GLB", + "land.rsus.tavg-u-hxy-sn.mon.GLB", + "land.sftgif.tavg-u-hxy-u.mon.GLB", + "land.sftlaf.ti-u-hxy-u.fx.GLB", + "land.shrubFrac.tavg-u-hxy-u.mon.GLB", + "land.srfrad.tavg-u-hxy-u.3hr.GLB", + "land.tas.tavg-u-hxy-u.1hr.30S-90S", + "land.tas.tavg-u-hxy-u.1hr.GLB", + "land.tran.tavg-u-hxy-lnd.mon.GLB", + "land.treeFrac.tavg-u-hxy-u.mon.GLB", + "land.tsl.tavg-sl-hxy-lnd.day.GLB", + "land.tsl.tavg-sl-hxy-lnd.mon.GLB", + "land.tslsi.tavg-u-hxy-u.day.GLB", + "land.tslsi.tpt-u-hxy-lsi.3hr.GLB", + "land.vegFrac.tavg-u-hxy-u.mon.GLB", + "land.vegHeight.tavg-u-hxy-tree.mon.GLB", + "land.vegHeight.tavg-u-hxy-veg.mon.GLB", + "land.wetlandCH4.tavg-u-hxy-lnd.mon.GLB", + "land.wtd.tavg-u-hxy-lnd.day.GLB", + "landIce.acabf.tavg-u-hxy-is.mon.GLB", + "landIce.hfdsn.tavg-u-hxy-lnd.mon.GLB", + "landIce.hfgeoubed.ti-u-hxy-gis.fx.GRL", + "landIce.hfls.tavg-u-hxy-is.mon.GLB", + "landIce.hfss.tavg-u-hxy-is.mon.GLB", + "landIce.icem.tavg-u-hxy-is.mon.GLB", + "landIce.litemptop.tavg-u-hxy-is.mon.GLB", + "landIce.lithk.ti-u-hxy-is.fx.GRL", + "landIce.lithk.ti-u-hxy-u.fx.GLB", + "landIce.mrro.tavg-u-hxy-is.mon.GLB", + "landIce.orog.tavg-u-hxy-is.mon.GLB", + "landIce.pflw.tavg-u-hxy-lnd.mon.GLB", + "landIce.prra.tavg-u-hxy-is.mon.GLB", + "landIce.prsn.tavg-u-hxy-is.mon.GLB", + "landIce.rlds.tavg-u-hxy-is.mon.GLB", + "landIce.rlus.tavg-u-hxy-is.mon.GLB", + "landIce.rsds.tavg-u-hxy-is.mon.GLB", + "landIce.rsus.tavg-u-hxy-is.mon.GLB", + "landIce.sbl.tavg-u-hxy-is.mon.GLB", + "landIce.sbl.tavg-u-hxy-lnd.mon.GLB", + "landIce.sbl.tavg-u-hxy-u.mon.GLB", + "landIce.sftflf.tavg-u-hxy-u.mon.GLB", + "landIce.sftflf.ti-u-hxy-u.fx.GLB", + "landIce.sftgrf.tavg-u-hxy-u.mon.GLB", + "landIce.sftgrf.ti-u-hxy-u.fx.GLB", + "landIce.snc.tavg-u-hxy-is.mon.GLB", + "landIce.snd.tavg-u-hxy-lnd.mon.GLB", + "landIce.snicem.tavg-u-hxy-is.mon.GLB", + "landIce.snicem.tavg-u-hxy-is.mon.GRL", + "landIce.snm.tavg-u-hxy-is.mon.GLB", + "landIce.snm.tavg-u-hxy-lnd.mon.GLB", + "landIce.snrefr.tavg-u-hxy-is.mon.GLB", + "landIce.snw.tavg-u-hxy-lnd.day.GLB", + "landIce.sootsn.tavg-u-hxy-lnd.mon.GLB", + "landIce.tas.tavg-u-hxy-is.mon.GLB", + "landIce.topg.ti-u-hxy-gis.fx.GRL", + "landIce.tpf.tavg-u-hxy-lnd.mon.GLB", + "landIce.ts.tavg-u-hxy-is.mon.GLB", + "landIce.tsn.tavg-u-hxy-is.mon.GLB", + "landIce.tsn.tavg-u-hxy-lnd.mon.GLB", + "ocean.absscint.tavg-op4-hxy-sea.mon.GLB", + "ocean.agessc.tavg-ol-hxy-sea.mon.GLB", + "ocean.bigthetao.tavg-ol-hm-sea.mon.GLB", + "ocean.bigthetao.tavg-ol-hxy-sea.dec.GLB", + "ocean.bigthetao.tavg-op20bar-hxy-sea.day.GLB", + "ocean.chcint.tavg-op4-hxy-sea.mon.GLB", + "ocean.ficeberg.tavg-ol-hxy-sea.3hr.GLB", + "ocean.ficeberg.tavg-ol-hxy-sea.mon.GLB", + "ocean.ficeberg.tavg-u-hxy-sea.mon.GLB", + "ocean.flandice.tavg-u-hxy-sea.3hr.GLB", + "ocean.flandice.tavg-u-hxy-sea.mon.GLB", + "ocean.friver.tavg-u-hxy-sea.3hr.GLB", + "ocean.friver.tavg-u-hxy-sea.mon.GLB", + "ocean.hfbasin.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpmadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpmdiff.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpsmadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfds.tavg-u-hxy-sea.3hr.GLB", + "ocean.hfds.tavg-u-hxy-sea.mon.30S-90S", + "ocean.hfgeou.tavg-u-hxy-sea.mon.GLB", + "ocean.hfrunoffds.tavg-ol-hxy-sea.3hr.GLB", + "ocean.hfx.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfx.tavg-u-hxy-sea.day.GLB", + "ocean.hfx.tavg-u-hxy-sea.mon.GLB", + "ocean.hfy.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfy.tavg-u-hxy-sea.day.GLB", + "ocean.hfy.tavg-u-hxy-sea.mon.GLB", + "ocean.htovgyre.tavg-u-hyb-sea.mon.GLB", + "ocean.htovovrt.tavg-u-hyb-sea.mon.GLB", + "ocean.masscello.tavg-ol-hxy-sea.dec.GLB", + "ocean.masso.tavg-u-hm-sea.dec.GLB", + "ocean.masso.tavg-u-hm-sea.mon.GLB", + "ocean.mlotst.tavg-u-hxy-sea.day.GLB", + "ocean.mlotst.tavg-u-hxy-sea.mon.30S-90S", + "ocean.mlotst.tmax-u-hxy-sea.mon.GLB", + "ocean.mlotst.tmin-u-hxy-sea.mon.GLB", + "ocean.mpw.tavg-u-hxy-sea.mon.GLB", + "ocean.mpw.tpt-u-hxy-sea.3hr.GLB", + "ocean.mpwswell.tavg-u-hxy-sea.mon.GLB", + "ocean.mpwswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.mpwwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.mpwwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.msftbarot.tavg-u-hxy-sea.mon.GLB", + "ocean.msftm.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftm.tavg-rho-hyb-sea.mon.GLB", + "ocean.msfty.tavg-ol-ht-sea.mon.GLB", + "ocean.msfty.tavg-rho-ht-sea.mon.GLB", + "ocean.obvfsq.tavg-ol-hxy-sea.mon.GLB", + "ocean.opottemptend.tavg-ol-hxy-sea.yr.GLB", + "ocean.pbo.tavg-u-hxy-sea.mon.GLB", + "ocean.pfscint.tavg-op4-hxy-sea.mon.GLB", + "ocean.phcint.tavg-op4-hxy-sea.mon.GLB", + "ocean.pso.tavg-u-hxy-sea.mon.GLB", + "ocean.rsds.tavg-u-hxy-ifs.mon.GLB", + "ocean.rsntds.tavg-u-hxy-sea.3hr.GLB", + "ocean.rsus.tavg-u-hxy-ifs.mon.GLB", + "ocean.scint.tavg-op4-hxy-sea.mon.GLB", + "ocean.sduo.tavg-u-hxy-sea.mon.GLB", + "ocean.sduo.tpt-u-hxy-sea.3hr.GLB", + "ocean.sdvo.tavg-u-hxy-sea.mon.GLB", + "ocean.sdvo.tpt-u-hxy-sea.3hr.GLB", + "ocean.sfdsi.tavg-u-hxy-sea.3hr.GLB", + "ocean.sfx.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfx.tavg-u-hxy-sea.mon.GLB", + "ocean.sfy.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfy.tavg-u-hxy-sea.mon.GLB", + "ocean.sltbasin.tavg-u-hyb-sea.mon.GLB", + "ocean.sltovgyre.tavg-u-hyb-sea.mon.GLB", + "ocean.sltovovrt.tavg-u-hyb-sea.mon.GLB", + "ocean.so.tavg-ol-hm-sea.mon.GLB", + "ocean.so.tavg-ol-hxy-sea.dec.GLB", + "ocean.so.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.sob.tavg-u-hxy-sea.mon.GLB", + "ocean.sos.tavg-u-hm-sea.mon.30S-90S", + "ocean.sos.tavg-u-hm-sea.mon.GLB", + "ocean.sw17O.tavg-ol-hxy-sea.mon.GLB", + "ocean.sw18O.tavg-ol-hxy-sea.mon.GLB", + "ocean.sw2H.tavg-ol-hxy-sea.mon.GLB", + "ocean.swh.tavg-u-hxy-sea.mon.GLB", + "ocean.swh.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhmax.tmax-u-hxy-sea.mon.GLB", + "ocean.swhmax.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhswell.tavg-u-hxy-sea.mon.GLB", + "ocean.swhswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.swhwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.tauuo.tavg-u-hxy-sea.3hr.GLB", + "ocean.tauuo.tavg-u-hxy-sea.dec.GLB", + "ocean.tauvo.tavg-u-hxy-sea.3hr.GLB", + "ocean.tauvo.tavg-u-hxy-sea.dec.GLB", + "ocean.thetao.tavg-ol-hm-sea.mon.GLB", + "ocean.thetao.tavg-ol-hxy-sea.dec.GLB", + "ocean.thetao.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.thetao.tavg-op20bar-hxy-sea.day.GLB", + "ocean.thkcello.tavg-ol-hxy-sea.dec.GLB", + "ocean.tob.tavg-u-hxy-sea.mon.GLB", + "ocean.tos.tavg-u-hm-sea.mon.GLB", + "ocean.tos.tavg-u-hxy-sea.mon.30S-90S", + "ocean.tos.tpt-u-hxy-sea.3hr.GLB", + "ocean.tossq.tavg-u-hxy-sea.day.GLB", + "ocean.umo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.uo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.uos.tavg-u-hxy-sea.day.GLB", + "ocean.vmo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.vo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.volcello.tavg-ol-hxy-sea.dec.GLB", + "ocean.volcello.tavg-ol-hxy-sea.mon.GLB", + "ocean.volcello.tavg-ol-hxy-sea.yr.GLB", + "ocean.volcello.ti-ol-hxy-sea.fx.GLB", + "ocean.volo.tavg-u-hm-sea.dec.GLB", + "ocean.volo.tavg-u-hm-sea.mon.GLB", + "ocean.vos.tavg-u-hxy-sea.day.GLB", + "ocean.wdir.tavg-u-hxy-sea.mon.GLB", + "ocean.wdir.tpt-u-hxy-sea.3hr.GLB", + "ocean.wdirswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wdirswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wdirwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wdirwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.wfcorr.tavg-u-hxy-sea.mon.GLB", + "ocean.wfo.tavg-u-hxy-sea.3hr.GLB", + "ocean.wfo.tavg-u-hxy-sea.mon.GLB", + "ocean.wmo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.wo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.wpdir.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdir.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpdirswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdirswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpdirwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdirwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpp.tavg-u-hxy-sea.mon.GLB", + "ocean.wpp.tpt-u-hxy-sea.3hr.GLB", + "ocean.wppswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wppswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wppwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wppwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.zos.tavg-u-hxy-sea.mon.30S-90S", + "ocean.zossq.tavg-u-hxy-sea.mon.GLB", + "ocean.zostoga.tavg-u-hm-sea.day.GLB", + "ocnBgchem.bacc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.calc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chl.tavg-d0m-hxy-sea.day.GLB", + "ocnBgchem.chl.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chl.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chlcalc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chldiat.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chldiat.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chldiaz.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chldiaz.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chlmisc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chlmisc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chlpico.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chlpico.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.detoc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dfe.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.dfe.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.dfe.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissic.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.dissic.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissoc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dmso.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.dmso.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.dpco2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.dpo2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.expc.tavg-d1000m-hxy-sea.mon.GLB", + "ocnBgchem.expc.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.expc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.expcalc.tavg-d1000m-hxy-sea.mon.GLB", + "ocnBgchem.expcalc.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.expcalc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.fgco2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fric.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.froc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fsfe.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fsn.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.graz.tavg-ol-hxy-sea.mon.30S-90S", + "ocnBgchem.graz.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.icfriver.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intdic.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intdoc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intparag.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbfe.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbn.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbp.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbsi.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpcalcite.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpn2.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpoc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpp.tavg-u-hxy-sea.day.GLB", + "ocnBgchem.intpp.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpp.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppcalc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppdiat.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppdiaz.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppmisc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppnitrate.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpppico.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.nh4.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.nh4.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.no3.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.no3.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.o2.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.ocfriver.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.ph.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.ph.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phyc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phyc.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.phyc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phycalc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phycalc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phydiat.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phydiat.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phydiaz.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phydiaz.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phymisc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phymisc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phypico.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phypico.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.po4.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.pp.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.si.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.spco2.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.spco2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.talk.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zmeso.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zmeso.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zmicro.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zmicro.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zmisc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zmisc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zooc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zooc.tavg-ol-hxy-sea.mon.GLB", + "seaIce.evspsbl.tavg-u-hxy-si.mon.GLB", + "seaIce.prra.tavg-u-hxy-si.mon.GLB", + "seaIce.prsn.tavg-u-hxy-si.mon.GLB", + "seaIce.rlds.tavg-u-hxy-si.day.GLB", + "seaIce.rlds.tavg-u-hxy-si.mon.GLB", + "seaIce.rlus.tavg-u-hxy-si.day.GLB", + "seaIce.rlus.tavg-u-hxy-si.mon.GLB", + "seaIce.rsds.tavg-u-hxy-si.day.GLB", + "seaIce.rsds.tavg-u-hxy-si.mon.GLB", + "seaIce.rsus.tavg-u-hxy-si.day.GLB", + "seaIce.rsus.tavg-u-hxy-si.mon.GLB", + "seaIce.sbl.tavg-u-hxy-si.mon.GLB", + "seaIce.siage.tavg-u-hxy-si.day.GLB", + "seaIce.siage.tavg-u-hxy-si.mon.30S-90S", + "seaIce.siarea.tavg-u-hm-u.mon.NH", + "seaIce.siarea.tavg-u-hm-u.mon.SH", + "seaIce.siareaacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.siconc.tavg-u-hxy-u.mon.30S-90S", + "seaIce.siconca.tavg-u-hxy-u.day.GLB", + "seaIce.siconca.tavg-u-hxy-u.mon.GLB", + "seaIce.sidconcdyn.tavg-u-hxy-sea.mon.GLB", + "seaIce.sidconcth.tavg-u-hxy-sea.mon.GLB", + "seaIce.sidmassdyn.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthsi.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthwat.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmeltbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmeltlat.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmelttop.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassth.tavg-u-hxy-si.mon.GLB", + "seaIce.sieqthick.tavg-u-hxy-si.mon.GLB", + "seaIce.siextent.tavg-u-hm-u.mon.NH", + "seaIce.siextent.tavg-u-hm-u.mon.SH", + "seaIce.siflcondbot.tavg-u-hxy-si.day.GLB", + "seaIce.siflcondbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflcondtop.tavg-u-hxy-si.day.GLB", + "seaIce.siflcondtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sifllattop.tavg-u-hxy-si.day.GLB", + "seaIce.sifllattop.tavg-u-hxy-si.mon.GLB", + "seaIce.siflsensbot.tavg-u-hxy-si.day.GLB", + "seaIce.siflsensbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflsenstop.tavg-u-hxy-si.day.GLB", + "seaIce.siflsenstop.tavg-u-hxy-si.mon.GLB", + "seaIce.siflswdbot.tavg-u-hxy-si.day.GLB", + "seaIce.siflswdbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sihc.tavg-u-hxy-sea.day.GLB", + "seaIce.sihc.tavg-u-hxy-sea.mon.GLB", + "seaIce.siitdconc.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdsnconc.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdsnthick.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdthick.tavg-u-hxy-si.mon.GLB", + "seaIce.simassacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.simpconc.tavg-u-hxy-si.mon.GLB", + "seaIce.sirdgconc.tavg-u-hxy-si.mon.GLB", + "seaIce.sisaltmass.tavg-u-hxy-si.mon.GLB", + "seaIce.sisndmassdyn.tavg-u-hxy-si.mon.GLB", + "seaIce.sisndmasssi.tavg-u-hxy-si.mon.GLB", + "seaIce.sisndmasswind.tavg-u-hxy-si.mon.GLB", + "seaIce.sisnhc.tavg-u-hxy-si.day.GLB", + "seaIce.sisnhc.tavg-u-hxy-si.mon.GLB", + "seaIce.sisnmass.tavg-u-hm-u.mon.NH", + "seaIce.sisnmass.tavg-u-hm-u.mon.SH", + "seaIce.sisnmassacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.sispeed.tavg-u-hxy-si.day.GLB", + "seaIce.sispeed.tavg-u-hxy-si.mon.GLB", + "seaIce.sistressave.tpt-u-hxy-si.mon.GLB", + "seaIce.sistressmax.tpt-u-hxy-si.mon.GLB", + "seaIce.sistrxdtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sistrxubot.tavg-u-hxy-si.mon.GLB", + "seaIce.sistrydtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sistryubot.tavg-u-hxy-si.mon.GLB", + "seaIce.sitempsnic.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-si.day.GLB", + "seaIce.sithick.tavg-u-hxy-si.mon.30S-90S", + "seaIce.sitimefrac.tavg-u-hxy-sea.day.GLB", + "seaIce.sitimefrac.tavg-u-hxy-sea.mon.30S-90S", + "seaIce.siu.tavg-u-hxy-si.day.GLB", + "seaIce.siu.tavg-u-hxy-si.mon.30S-90S", + "seaIce.siv.tavg-u-hxy-si.day.GLB", + "seaIce.siv.tavg-u-hxy-si.mon.30S-90S", + "seaIce.sivol.tavg-u-hm-u.mon.NH", + "seaIce.sivol.tavg-u-hm-u.mon.SH", + "seaIce.snc.tavg-u-hxy-si.mon.GLB", + "seaIce.snd.tavg-u-hxy-sn.day.GLB", + "seaIce.snd.tavg-u-hxy-sn.mon.30S-90S", + "seaIce.snm.tavg-u-hxy-si.mon.GLB", + "seaIce.snw.tavg-u-hxy-si.mon.GLB", + "seaIce.ts.tavg-u-hxy-si.day.GLB", + "seaIce.ts.tavg-u-hxy-si.mon.30S-90S" + ], + "Medium": [ + "atmos.bldep.tavg-u-hxy-u.1hr.GLB", + "atmos.clic.tpt-al-hxy-u.3hr.GLB", + "atmos.clis.tpt-al-hxy-u.3hr.GLB", + "atmos.clivi.tpt-u-hxy-u.3hr.GLB", + "atmos.clt.tpt-u-hxy-u.3hr.GLB", + "atmos.clwc.tpt-al-hxy-u.3hr.GLB", + "atmos.clws.tpt-al-hxy-u.3hr.GLB", + "atmos.clwvi.tpt-u-hxy-u.3hr.GLB", + "atmos.dtauc.tpt-al-hxy-ccl.3hr.GLB", + "atmos.dtaus.tpt-al-hxy-scl.3hr.GLB", + "atmos.hfdsnb.tavg-u-hxy-lnd.day.GLB", + "atmos.hfls.tavg-u-hxy-is.mon.ATA", + "atmos.hfls.tavg-u-hxy-u.1hr.GLB", + "atmos.hfss.tavg-u-hxy-is.mon.ATA", + "atmos.hfss.tavg-u-hxy-is.mon.GRL", + "atmos.hfss.tavg-u-hxy-u.1hr.GLB", + "atmos.hur.tavg-700hPa-hxy-air.day.GLB", + "atmos.hur.tpt-100hPa-hxy-u.6hr.GLB", + "atmos.hur.tpt-500hPa-hxy-air.6hr.GLB", + "atmos.hur.tpt-850hPa-hxy-air.6hr.GLB", + "atmos.hurs.tavg-h2m-hxy-u.1hr.GLB", + "atmos.hus.tpt-al-hxy-u.3hr.GLB", + "atmos.hus.tpt-p6-hxy-air.3hr.GLB", + "atmos.noaahi2m.tavg-h2m-hxy-u.day.GLB", + "atmos.noaahi2m.tmax-h2m-hxy-u.day.GLB", + "atmos.pfull.tpt-al-hxy-u.3hr.GLB", + "atmos.pr.tpt-u-hxy-u.3hr.GLB", + "atmos.prra.tavg-u-hxy-is.mon.ATA", + "atmos.prrsn.tavg-u-hxy-lnd.day.GLB", + "atmos.prsn.tavg-u-hxy-is.mon.ATA", + "atmos.prsnc.tavg-u-hxy-lnd.day.GLB", + "atmos.prsnsn.tavg-u-hxy-lnd.day.GLB", + "atmos.prw.tpt-u-hxy-u.3hr.GLB", + "atmos.ps.tpt-u-hxy-u.1hr.GLB", + "atmos.reffclic.tpt-al-hxy-ccl.3hr.GLB", + "atmos.reffclis.tpt-al-hxy-scl.3hr.GLB", + "atmos.reffclwc.tpt-al-hxy-ccl.3hr.GLB", + "atmos.reffclws.tpt-al-hxy-scl.3hr.GLB", + "atmos.rlds.tavg-u-hxy-is.mon.ATA", + "atmos.rlds.tavg-u-hxy-is.mon.GRL", + "atmos.rlds.tpt-u-hxy-u.3hr.GLB", + "atmos.rldscs.tavg-u-hxy-u.day.GLB", + "atmos.rldscs.tpt-u-hxy-u.3hr.GLB", + "atmos.rls.tavg-u-hxy-u.day.GLB", + "atmos.rlus.tavg-u-hxy-is.mon.ATA", + "atmos.rlus.tavg-u-hxy-is.mon.GRL", + "atmos.rlus.tavg-u-hxy-u.1hr.GLB", + "atmos.rlut.tpt-u-hxy-u.3hr.GLB", + "atmos.rlutcs.tpt-u-hxy-u.3hr.GLB", + "atmos.rsds.tavg-u-hxy-is.mon.ATA", + "atmos.rsds.tavg-u-hxy-is.mon.GRL", + "atmos.rsds.tpt-u-hxy-u.3hr.GLB", + "atmos.rsdscs.tpt-u-hxy-u.3hr.GLB", + "atmos.rsdsdiff.tavg-u-hxy-u.1hr.GLB", + "atmos.rsdsdiff.tavg-u-hxy-u.day.GLB", + "atmos.rss.tavg-u-hxy-u.day.GLB", + "atmos.rsus.tavg-u-hxy-is.mon.ATA", + "atmos.rsus.tavg-u-hxy-is.mon.GRL", + "atmos.rsus.tavg-u-hxy-u.1hr.GLB", + "atmos.rsut.tpt-u-hxy-u.3hr.GLB", + "atmos.rsutcs.tpt-u-hxy-u.3hr.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.1hr.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.3hr.GLB", + "atmos.snmsl.tavg-u-hxy-lnd.day.GLB", + "atmos.snrefr.tavg-u-hxy-lnd.day.GLB", + "atmos.snwc.tavg-u-hxy-lnd.day.GLB", + "atmos.ta.tpt-al-hxy-u.3hr.GLB", + "atmos.ta.tpt-p6-hxy-air.3hr.GLB", + "atmos.tas.tavg-h2m-hm-is.mon.ATA", + "atmos.tas.tavg-h2m-hm-is.mon.GRL", + "atmos.ts.tavg-u-hxy-is.mon.ATA", + "atmos.ts.tavg-u-hxy-is.mon.GRL", + "atmos.ts.tavg-u-hxy-sn.day.GLB", + "atmos.ts.tavg-u-hxy-u.1hr.GLB", + "atmos.ua.tavg-h100m-hxy-u.3hr.GLB", + "atmos.ua.tpt-200hPa-hxy-u.6hr.GLB", + "atmos.ua.tpt-p6-hxy-air.3hr.GLB", + "atmos.va.tavg-h100m-hxy-u.3hr.GLB", + "atmos.va.tpt-200hPa-hxy-u.6hr.GLB", + "atmos.va.tpt-p6-hxy-air.3hr.GLB", + "atmos.wap.tpt-p6-hxy-air.3hr.GLB", + "atmos.wbgt.tavg-h2m-hxy-u.day.GLB", + "atmos.wbgt.tmax-h2m-hxy-u.day.GLB", + "atmos.wsg.tmax-h100m-hxy-u.mon.GLB", + "atmos.wsg.tmax-h10m-hxy-u.mon.GLB", + "atmos.zg.tpt-700hPa-hxy-u.6hr.GLB", + "atmos.zg.tpt-925hPa-hxy-u.6hr.GLB", + "atmosChem.flashrate.tavg-u-hxy-u.day.GLB", + "land.areacellg.ti-u-hxy-u.fx.ATA", + "land.areacellg.ti-u-hxy-u.fx.GRL", + "land.baresoilFrac.tavg-u-hxy-u.yr.GLB", + "land.cLitterCwd.tavg-u-hxy-lnd.mon.GLB", + "land.cLitterLut.tpt-u-hxy-multi.yr.GLB", + "land.cLitterSubSurf.tavg-u-hxy-lnd.mon.GLB", + "land.cLitterSurf.tavg-u-hxy-lnd.mon.GLB", + "land.cOther.tavg-u-hxy-lnd.mon.GLB", + "land.cProductLut.tpt-u-hxy-multi.yr.GLB", + "land.cropFrac.tavg-u-hxy-u.yr.GLB", + "land.cropFracC3.tavg-u-hxy-u.mon.GLB", + "land.cropFracC4.tavg-u-hxy-u.mon.GLB", + "land.cSoilLut.tpt-u-hxy-multi.yr.GLB", + "land.cSoilPools.tavg-u-hxy-lnd.mon.GLB", + "land.cVeg.tavg-u-hxy-ng.mon.GLB", + "land.cVeg.tavg-u-hxy-shb.mon.GLB", + "land.cVeg.tavg-u-hxy-tree.mon.GLB", + "land.cVegLut.tpt-u-hxy-multi.yr.GLB", + "land.dgw.tavg-u-hxy-lnd.day.GLB", + "land.drivw.tavg-u-hxy-lnd.day.GLB", + "land.dsn.tavg-u-hxy-lnd.day.GLB", + "land.dsw.tavg-u-hxy-lnd.day.GLB", + "land.esn.tavg-u-hxy-sn.day.GLB", + "land.evspsblsoi.tavg-u-hxy-u.3hr.GLB", + "land.evspsblveg.tavg-u-hxy-u.3hr.GLB", + "land.fLitterFire.tavg-u-hxy-lnd.mon.GLB", + "land.fLulccAtmLut.tavg-u-hxy-multi.mon.GLB", + "land.fNgasNonFire.tavg-u-hxy-lnd.mon.GLB", + "land.fracInLut.tsum-u-hxy-lnd.yr.GLB", + "land.fracLut.tpt-u-hxy-u.mon.GLB", + "land.fracLut.tpt-u-hxy-u.yr.GLB", + "land.fracOutLut.tsum-u-hxy-lnd.yr.GLB", + "land.fVegFire.tavg-u-hxy-lnd.mon.GLB", + "land.fVegLitterMortality.tavg-u-hxy-lnd.mon.GLB", + "land.fVegLitterSenescence.tavg-u-hxy-lnd.mon.GLB", + "land.fVegSoilMortality.tavg-u-hxy-lnd.mon.GLB", + "land.fVegSoilSenescence.tavg-u-hxy-lnd.mon.GLB", + "land.gpp.tavg-u-hxy-ng.mon.GLB", + "land.gpp.tavg-u-hxy-shb.mon.GLB", + "land.gpp.tavg-u-hxy-tree.mon.GLB", + "land.gppLut.tavg-u-hxy-multi.mon.GLB", + "land.grassFrac.tavg-u-hxy-u.yr.GLB", + "land.grassFracC3.tavg-u-hxy-u.mon.GLB", + "land.grassFracC4.tavg-u-hxy-u.mon.GLB", + "land.hfdsl.tavg-u-hxy-lnd.3hr.GLB", + "land.hflsLut.tavg-u-hxy-multi.mon.GLB", + "land.hfssLut.tavg-u-hxy-multi.mon.GLB", + "land.irrDem.tavg-u-hxy-u.day.GLB", + "land.irrGw.tavg-u-hxy-u.day.GLB", + "land.irrLut.tavg-u-hxy-multi.mon.GLB", + "land.irrLut.tavg-u-hxy-u.day.GLB", + "land.irrSurf.tavg-u-hxy-u.day.GLB", + "land.laiLut.tavg-u-hxy-multi.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.3hr.GLB", + "land.mrros.tavg-u-hxy-lnd.3hr.GLB", + "land.mrsol.tavg-d100cm-hxy-lnd.3hr.GLB", + "land.mrsolLut.tavg-d10cm-hxy-multi.mon.GLB", + "land.nbpLut.tavg-u-hxy-multi.mon.GLB", + "land.nLeaf.tavg-u-hxy-lnd.mon.GLB", + "land.nLitterCwd.tavg-u-hxy-lnd.mon.GLB", + "land.nLitterSubSurf.tavg-u-hxy-lnd.mon.GLB", + "land.nLitterSurf.tavg-u-hxy-lnd.mon.GLB", + "land.nMineralNH4.tavg-u-hxy-lnd.mon.GLB", + "land.nMineralNO3.tavg-u-hxy-lnd.mon.GLB", + "land.nOther.tavg-u-hxy-lnd.mon.GLB", + "land.npp.tavg-u-hxy-ng.mon.GLB", + "land.npp.tavg-u-hxy-shb.mon.GLB", + "land.npp.tavg-u-hxy-tree.mon.GLB", + "land.nppLeaf.tavg-u-hxy-lnd.mon.GLB", + "land.nppLut.tavg-u-hxy-multi.mon.GLB", + "land.nppOther.tavg-u-hxy-lnd.mon.GLB", + "land.nppRoot.tavg-u-hxy-lnd.mon.GLB", + "land.nppStem.tavg-u-hxy-lnd.mon.GLB", + "land.nppVgt.tavg-u-hxy-multi.day.GLB", + "land.nRoot.tavg-u-hxy-lnd.mon.GLB", + "land.nStem.tavg-u-hxy-lnd.mon.GLB", + "land.orog.tavg-u-hxy-is.mon.ATA", + "land.orog.tavg-u-hxy-is.mon.GRL", + "land.orog.tavg-u-hxy-is.yr.ATA", + "land.orog.tavg-u-hxy-is.yr.GRL", + "land.pastureFracC3.tavg-u-hxy-u.mon.GLB", + "land.pastureFracC4.tavg-u-hxy-u.mon.GLB", + "land.qgwr.tavg-u-hxy-lnd.day.GLB", + "land.ra.tavg-u-hxy-ng.mon.GLB", + "land.ra.tavg-u-hxy-shb.mon.GLB", + "land.ra.tavg-u-hxy-tree.mon.GLB", + "land.raLeaf.tavg-u-hxy-lnd.mon.GLB", + "land.raLut.tavg-u-hxy-multi.mon.GLB", + "land.raOther.tavg-u-hxy-lnd.mon.GLB", + "land.raRoot.tavg-u-hxy-lnd.mon.GLB", + "land.raStem.tavg-u-hxy-lnd.mon.GLB", + "land.raVgt.tavg-u-hxy-multi.day.GLB", + "land.rh.tavg-u-hxy-ng.mon.GLB", + "land.rh.tavg-u-hxy-shb.mon.GLB", + "land.rh.tavg-u-hxy-tree.mon.GLB", + "land.rhLitter.tavg-u-hxy-lnd.mon.GLB", + "land.rhLut.tavg-u-hxy-multi.mon.GLB", + "land.rhSoil.tavg-u-hxy-lnd.mon.GLB", + "land.rhVgt.tavg-u-hxy-multi.day.GLB", + "land.rzwc.tavg-u-hxy-lnd.day.GLB", + "land.sftgif.tavg-u-hxy-u.yr.ATA", + "land.sftgif.tavg-u-hxy-u.yr.GRL", + "land.shrubFrac.tavg-u-hxy-u.yr.GLB", + "land.sw.tavg-u-hxy-lnd.day.GLB", + "land.sweLut.tavg-u-hxy-multi.mon.GLB", + "land.tasLut.tavg-h2m-hxy-multi.mon.GLB", + "land.tran.tavg-u-hxy-u.3hr.GLB", + "land.treeFrac.tavg-u-hxy-u.yr.GLB", + "land.treeFracBdlDcd.tavg-u-hxy-u.mon.GLB", + "land.treeFracBdlEvg.tavg-u-hxy-u.mon.GLB", + "land.treeFracNdlDcd.tavg-u-hxy-u.mon.GLB", + "land.treeFracNdlEvg.tavg-u-hxy-u.mon.GLB", + "land.tsLut.tavg-u-hxy-multi.mon.GLB", + "land.vegHeight.tavg-u-hxy-ng.mon.GLB", + "land.vegHeight.tavg-u-hxy-shb.mon.GLB", + "land.wetlandCH4cons.tavg-u-hxy-lnd.mon.GLB", + "land.wetlandCH4prod.tavg-u-hxy-lnd.mon.GLB", + "land.wetlandFrac.tavg-u-hxy-u.mon.GLB", + "landIce.acabf.tavg-u-hxy-is.mon.ATA", + "landIce.acabf.tavg-u-hxy-is.mon.GRL", + "landIce.acabf.tavg-u-hxy-is.yr.ATA", + "landIce.acabf.tavg-u-hxy-is.yr.GRL", + "landIce.agesno.tavg-u-hxy-lnd.mon.GLB", + "landIce.hfdsn.tavg-u-hxy-lnd.day.GLB", + "landIce.hfgeoubed.tavg-u-hxy-gis.yr.ATA", + "landIce.hfgeoubed.tavg-u-hxy-gis.yr.GRL", + "landIce.hfgeoubed.ti-u-hxy-gis.fx.ATA", + "landIce.iareafl.tavg-u-hm-fis.yr.ATA", + "landIce.iareafl.tavg-u-hm-fis.yr.GRL", + "landIce.iareagr.tavg-u-hm-gis.yr.ATA", + "landIce.iareagr.tavg-u-hm-gis.yr.GRL", + "landIce.icem.tavg-u-hxy-is.mon.ATA", + "landIce.icem.tavg-u-hxy-is.mon.GRL", + "landIce.libmassbf.tavg-u-hxy-fis.mon.ATA", + "landIce.libmassbf.tavg-u-hxy-fis.mon.GRL", + "landIce.libmassbf.tavg-u-hxy-fis.yr.ATA", + "landIce.libmassbf.tavg-u-hxy-fis.yr.GRL", + "landIce.libmassbf.tavg-u-hxy-gis.mon.ATA", + "landIce.libmassbf.tavg-u-hxy-gis.mon.GRL", + "landIce.libmassbf.tavg-u-hxy-gis.yr.ATA", + "landIce.libmassbf.tavg-u-hxy-gis.yr.GRL", + "landIce.licalvf.tavg-u-hxy-is.mon.ATA", + "landIce.licalvf.tavg-u-hxy-is.mon.GRL", + "landIce.licalvf.tavg-u-hxy-is.yr.ATA", + "landIce.licalvf.tavg-u-hxy-is.yr.GRL", + "landIce.lifmassbf.tavg-u-hxy-is.mon.ATA", + "landIce.lifmassbf.tavg-u-hxy-is.mon.GRL", + "landIce.lifmassbf.tavg-u-hxy-is.yr.ATA", + "landIce.lifmassbf.tavg-u-hxy-is.yr.GRL", + "landIce.lim.tavg-u-hm-is.yr.ATA", + "landIce.lim.tavg-u-hm-is.yr.GRL", + "landIce.limnsw.tavg-u-hm-is.yr.ATA", + "landIce.limnsw.tavg-u-hm-is.yr.GRL", + "landIce.litempbot.tavg-u-hxy-fis.mon.ATA", + "landIce.litempbot.tavg-u-hxy-fis.mon.GRL", + "landIce.litempbot.tavg-u-hxy-fis.yr.ATA", + "landIce.litempbot.tavg-u-hxy-fis.yr.GRL", + "landIce.litempbot.tavg-u-hxy-gis.mon.ATA", + "landIce.litempbot.tavg-u-hxy-gis.mon.GRL", + "landIce.litempbot.tavg-u-hxy-gis.yr.ATA", + "landIce.litempbot.tavg-u-hxy-gis.yr.GRL", + "landIce.litemptop.tavg-u-hxy-is.mon.ATA", + "landIce.litemptop.tavg-u-hxy-is.mon.GRL", + "landIce.litemptop.tavg-u-hxy-is.yr.ATA", + "landIce.litemptop.tavg-u-hxy-is.yr.GRL", + "landIce.lithk.tavg-u-hxy-is.yr.ATA", + "landIce.lithk.tavg-u-hxy-is.yr.GRL", + "landIce.lithk.ti-u-hxy-is.fx.ATA", + "landIce.lwsnl.tavg-u-hxy-lnd.day.GLB", + "landIce.lwsnl.tavg-u-hxy-lnd.mon.GLB", + "landIce.modelcellareai.tavg-u-hxy-u.yr.ATA", + "landIce.modelcellareai.tavg-u-hxy-u.yr.GRL", + "landIce.mrroLi.tavg-u-hxy-is.mon.ATA", + "landIce.mrroLi.tavg-u-hxy-is.mon.GRL", + "landIce.pflw.tavg-u-hxy-lnd.day.GLB", + "landIce.sbl.tavg-u-hxy-is.mon.ATA", + "landIce.sbl.tavg-u-hxy-is.mon.GRL", + "landIce.sbl.tavg-u-hxy-u.day.GLB", + "landIce.sftflf.tavg-u-hxy-u.yr.ATA", + "landIce.sftflf.tavg-u-hxy-u.yr.GRL", + "landIce.sftgrf.tavg-u-hxy-u.yr.ATA", + "landIce.sftgrf.tavg-u-hxy-u.yr.GRL", + "landIce.snc.tavg-u-hxy-is.mon.ATA", + "landIce.snc.tavg-u-hxy-is.mon.GRL", + "landIce.snc.tavg-u-hxy-is.yr.ATA", + "landIce.snc.tavg-u-hxy-is.yr.GRL", + "landIce.snc.tavg-u-hxy-lnd.day.GLB", + "landIce.snd.tavg-u-hxy-lnd.day.GLB", + "landIce.snicem.tavg-u-hxy-is.mon.ATA", + "landIce.snm.tavg-u-hxy-is.mon.ATA", + "landIce.snm.tavg-u-hxy-is.mon.GRL", + "landIce.snm.tavg-u-hxy-lnd.day.GLB", + "landIce.snrefr.tavg-u-hxy-is.mon.ATA", + "landIce.snrefr.tavg-u-hxy-is.mon.GRL", + "landIce.strbasemag.tavg-u-hxy-is.yr.ATA", + "landIce.strbasemag.tavg-u-hxy-is.yr.GRL", + "landIce.tendacabf.tavg-u-hm-is.yr.ATA", + "landIce.tendacabf.tavg-u-hm-is.yr.GRL", + "landIce.tendlibmassbf.tavg-u-hm-is.yr.ATA", + "landIce.tendlibmassbf.tavg-u-hm-is.yr.GRL", + "landIce.tendlicalvf.tavg-u-hm-is.yr.ATA", + "landIce.tendlicalvf.tavg-u-hm-is.yr.GRL", + "landIce.topg.tavg-u-hxy-gis.yr.ATA", + "landIce.topg.tavg-u-hxy-gis.yr.GRL", + "landIce.topg.ti-u-hxy-gis.fx.ATA", + "landIce.tpf.tavg-u-hxy-lnd.day.GLB", + "landIce.tsn.tavg-u-hxy-is.mon.ATA", + "landIce.tsn.tavg-u-hxy-is.mon.GRL", + "landIce.tsn.tavg-u-hxy-lnd.day.GLB", + "landIce.xvelbase.tavg-u-hxy-is.yr.ATA", + "landIce.xvelbase.tavg-u-hxy-is.yr.GRL", + "landIce.xvelmean.tavg-u-hxy-is.yr.ATA", + "landIce.xvelmean.tavg-u-hxy-is.yr.GRL", + "landIce.xvelsurf.tavg-u-hxy-is.yr.ATA", + "landIce.xvelsurf.tavg-u-hxy-is.yr.GRL", + "landIce.yvelbase.tavg-u-hxy-is.yr.ATA", + "landIce.yvelbase.tavg-u-hxy-is.yr.GRL", + "landIce.yvelmean.tavg-u-hxy-is.yr.ATA", + "landIce.yvelmean.tavg-u-hxy-is.yr.GRL", + "landIce.yvelsurf.tavg-u-hxy-is.yr.ATA", + "landIce.yvelsurf.tavg-u-hxy-is.yr.GRL", + "landIce.zvelbase.tavg-u-hxy-is.yr.ATA", + "landIce.zvelbase.tavg-u-hxy-is.yr.GRL", + "landIce.zvelsurf.tavg-u-hxy-is.yr.ATA", + "landIce.zvelsurf.tavg-u-hxy-is.yr.GRL", + "ocean.evspsbl.tavg-u-hxy-ifs.mon.GLB", + "ocean.hfacrossline.tavg-u-ht-sea.mon.GLB", + "ocean.hfevapds.tavg-u-hxy-ifs.mon.GLB", + "ocean.hfibthermds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfibthermds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfrainds.tavg-u-hxy-ifs.mon.GLB", + "ocean.hfrunoffds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfrunoffds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfsnthermds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfsnthermds.tavg-u-hxy-sea.mon.GLB", + "ocean.mfo.tavg-u-ht-sea.mon.GLB", + "ocean.sf6.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfacrossline.tavg-u-ht-sea.mon.GLB", + "ocean.sfdsi.tavg-u-hxy-sea.mon.GLB", + "ocean.sfriver.tavg-u-hxy-sea.mon.GLB", + "ocean.siflfwbot.tavg-u-hxy-sea.mon.GLB", + "ocean.so.tavg-ol-hxy-sea.day.GLB", + "ocean.t17d.tavg-u-hxy-sea.mon.GLB", + "ocean.t20d.tavg-u-hxy-sea.mon.GLB", + "ocean.tnkebto.tavg-u-hxy-sea.yr.GLB", + "ocean.vsf.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfcorr.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfevap.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfpr.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfriver.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfsit.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.arag.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.arag.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.calc.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.calc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chl.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.chlcalc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.detoc.tavg-ol-hxy-sea.day.GLB", + "ocnBgchem.dissoc.tavg-ol-hxy-sea.day.GLB", + "ocnBgchem.dmso.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.epn.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.epp.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.exparagob.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.expcalcob.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.expcob.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.expfeob.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.expnob.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.exppob.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.expsiob.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fgdms.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.frfe.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.frn.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppcalc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppdiat.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppdiaz.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppmisc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppnano.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppnitrate.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intpppico.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limfecalc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limfediat.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limfediaz.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limfemisc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limfepico.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limirrcalc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limirrdiat.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limirrdiaz.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limirrmisc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limirrpico.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limncalc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limndiat.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limndiaz.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limnmisc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limnpico.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.o2.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.o2sat.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.ph.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.pp.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.sialgc.tavg-u-hxy-si.mon.GLB", + "ocnBgchem.sichl.tavg-u-hxy-si.mon.GLB", + "ocnBgchem.sigpp.tavg-u-hxy-si.mon.GLB", + "ocnBgchem.sino3.tavg-u-hxy-si.mon.GLB", + "ocnBgchem.sisi.tavg-u-hxy-si.mon.GLB", + "seaIce.sfdsi.tavg-u-hxy-si.mon.GLB", + "seaIce.siage.tavg-u-hxy-si.mon.GLB", + "seaIce.siarea.tavg-u-hm-u.day.NH", + "seaIce.siarea.tavg-u-hm-u.day.SH", + "seaIce.sicompstren.tavg-u-hxy-si.mon.GLB", + "seaIce.sidivvel.tpt-u-hxy-si.mon.GLB", + "seaIce.sidmasstranx.tavg-u-hxy-u.mon.GLB", + "seaIce.sidmasstrany.tavg-u-hxy-u.mon.GLB", + "seaIce.sidragbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidragtop.tavg-u-hxy-si.mon.GLB", + "seaIce.siextent.tavg-u-hm-u.day.NH", + "seaIce.siextent.tavg-u-hm-u.day.SH", + "seaIce.sifb.tavg-u-hxy-si.day.GLB", + "seaIce.sifb.tavg-u-hxy-si.mon.GLB", + "seaIce.siflfwbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflfwdrain.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcecoriolx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcecorioly.tavg-u-hxy-si.mon.GLB", + "seaIce.siforceintstrx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforceintstry.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcetiltx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcetilty.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdconc.tavg-u-hxy-si.day.GLB", + "seaIce.siitdsnconc.tavg-u-hxy-si.day.GLB", + "seaIce.siitdsnthick.tavg-u-hxy-si.day.GLB", + "seaIce.siitdthick.tavg-u-hxy-si.day.GLB", + "seaIce.simpconc.tavg-u-hxy-si.day.GLB", + "seaIce.simpeffconc.tavg-u-hxy-si.day.GLB", + "seaIce.simpeffconc.tavg-u-hxy-si.mon.GLB", + "seaIce.simprefrozen.tavg-u-hxy-simp.day.GLB", + "seaIce.simprefrozen.tavg-u-hxy-simp.mon.GLB", + "seaIce.simpthick.tavg-u-hxy-si.day.GLB", + "seaIce.simpthick.tavg-u-hxy-simp.mon.GLB", + "seaIce.sirdgconc.tavg-u-hxy-si.day.GLB", + "seaIce.sisali.tavg-u-hxy-si.day.GLB", + "seaIce.sisali.tavg-u-hxy-si.mon.GLB", + "seaIce.sisaltmass.tavg-u-hxy-si.day.GLB", + "seaIce.sishearvel.tpt-u-hxy-si.mon.GLB", + "seaIce.sisnmass.tavg-u-hm-u.day.NH", + "seaIce.sisnmass.tavg-u-hm-u.day.SH", + "seaIce.sitempbot.tavg-u-hxy-si.day.GLB", + "seaIce.sitempbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sitempsnic.tavg-u-hxy-si.day.GLB", + "seaIce.sithick.tavg-u-hxy-sir.day.GLB", + "seaIce.sithick.tavg-u-hxy-sir.mon.GLB", + "seaIce.sivol.tavg-u-hm-u.day.NH", + "seaIce.sivol.tavg-u-hm-u.day.SH" + ], + "Low": [ + "aerosol.sfpm1.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.sfpm10.tavg-h2m-hxy-u.1hr.GLB", + "atmos.hurs.tmin-h2m-hxy-crp.day.GLB", + "atmos.pr.tavg-u-hxy-crp.day.GLB", + "atmos.tas.tmax-h2m-hxy-crp.day.GLB", + "atmos.tas.tmin-h2m-hxy-crp.day.GLB", + "atmosChem.drynh3.tavg-u-hxy-u.day.GLB", + "atmosChem.drynh4.tavg-u-hxy-u.day.GLB", + "atmosChem.drynoy.tavg-u-hxy-u.day.GLB", + "atmosChem.flashrate.tavg-u-hxy-u.mon.GLB", + "atmosChem.wetnh3.tavg-u-hxy-u.day.GLB", + "atmosChem.wetnh4.tavg-u-hxy-u.day.GLB", + "atmosChem.wetnoy.tavg-u-hxy-u.day.GLB", + "land.c13Land.tavg-u-hxy-lnd.mon.GLB", + "land.c13Litter.tavg-u-hxy-lnd.mon.GLB", + "land.c13Soil.tavg-u-hxy-lnd.mon.GLB", + "land.c13Veg.tavg-u-hxy-lnd.mon.GLB", + "land.c14Land.tavg-u-hxy-lnd.mon.GLB", + "land.c14Litter.tavg-u-hxy-lnd.mon.GLB", + "land.c14Soil.tavg-u-hxy-lnd.mon.GLB", + "land.c14Veg.tavg-u-hxy-lnd.mon.GLB", + "land.c3PftFrac.tavg-u-hxy-u.mon.GLB", + "land.c4PftFrac.tavg-u-hxy-u.mon.GLB", + "land.gppc13.tavg-u-hxy-lnd.mon.GLB", + "land.gppc14.tavg-u-hxy-lnd.mon.GLB", + "land.lai.tavg-u-hxy-lnd.day.GLB", + "land.netAtmosLandC13Flux.tavg-u-hxy-lnd.mon.GLB", + "land.netAtmosLandC14Flux.tavg-u-hxy-lnd.mon.GLB", + "land.rac13.tavg-u-hxy-lnd.mon.GLB", + "land.rac14.tavg-u-hxy-lnd.mon.GLB", + "land.rhc13.tavg-u-hxy-lnd.mon.GLB", + "land.rhc14.tavg-u-hxy-lnd.mon.GLB", + "ocean.difmxybo.tavg-ol-hxy-sea.yr.GLB", + "ocean.difmxylo.tavg-ol-hxy-sea.yr.GLB", + "ocean.diftrblo.tavg-ol-hxy-sea.yr.GLB", + "ocean.diftrelo.tavg-ol-hxy-sea.yr.GLB", + "ocean.difvho.tavg-ol-hxy-sea.yr.GLB", + "ocean.difvso.tavg-ol-hxy-sea.yr.GLB", + "ocean.dispkexyfo.tavg-u-hxy-sea.yr.GLB", + "ocean.dxto.ti-u-hxy-u.fx.GLB", + "ocean.dxuo.ti-u-hxy-u.fx.GLB", + "ocean.dxvo.ti-u-hxy-u.fx.GLB", + "ocean.dyto.ti-u-hxy-u.fx.GLB", + "ocean.dyuo.ti-u-hxy-u.fx.GLB", + "ocean.dyvo.ti-u-hxy-u.fx.GLB", + "ocean.mlotstsq.tavg-u-hxy-sea.mon.GLB", + "ocean.msftmmpa.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftmmpa.tavg-rho-hyb-sea.mon.GLB", + "ocean.msftmsmpa.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftypa.tavg-ol-ht-sea.mon.GLB", + "ocean.msftypa.tavg-rho-ht-sea.mon.GLB", + "ocean.ocontempdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontempmint.tavg-u-hxy-sea.yr.GLB", + "ocean.ocontemppadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemppmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemppsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemprmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemptend.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottempdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottempmint.tavg-u-hxy-sea.yr.GLB", + "ocean.opottemppadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemppmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemppsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemprmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemptend.tavg-ol-hxy-sea.dec.GLB", + "ocean.osaltdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpsmadvect.tavg-ol-hxy-sea.mon.GLB", + "ocean.osaltpsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltrmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osalttend.tavg-ol-hxy-sea.yr.GLB", + "ocean.rsdo.tavg-ol-hxy-sea.day.GLB", + "ocean.rsdoabsorb.tavg-ol-hxy-sea.yr.GLB", + "ocean.somint.tavg-u-hxy-sea.yr.GLB", + "ocean.sossq.tavg-u-hxy-sea.mon.GLB", + "ocean.thkcelluo.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcellvo.tavg-ol-hxy-sea.mon.GLB", + "ocean.tnpeo.tavg-u-hxy-sea.yr.GLB", + "ocean.tossq.tavg-u-hxy-sea.mon.GLB", + "ocean.wo.tavg-ol-hxy-sea.day.GLB", + "ocnBgchem.dissi13c.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.dissi13c.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissi14c.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissi14cabio.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.dissi14cabio.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.expcob.tavg-u-hxy-sea.day.GLB", + "ocnBgchem.fg13co2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fg14co2abio.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intpoc.tavg-u-hxy-sea.day.GLB", + "ocnBgchem.o2.tavg-d0m-hxy-sea.day.GLB", + "ocnBgchem.o2min.tavg-u-hxy-sea.day.GLB", + "ocnBgchem.phyc.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.phycalc.tavg-ol-hxy-sea.day.GLB", + "ocnBgchem.phydiat.tavg-d0m-hxy-sea.day.GLB", + "ocnBgchem.phydiaz.tavg-d0m-hxy-sea.day.GLB", + "ocnBgchem.phymisc.tavg-d0m-hxy-sea.day.GLB", + "ocnBgchem.phynano.tavg-u-hxy-sea.day.GLB", + "ocnBgchem.phypico.tavg-ol-hxy-sea.day.GLB", + "ocnBgchem.zmeso.tavg-ol-hxy-sea.day.GLB", + "ocnBgchem.zmicro.tavg-ol-hxy-sea.day.GLB", + "ocnBgchem.zooc.tavg-ol-hxy-sea.day.GLB" + ] + }, + "scenariomip7": { + "Core": [ + "atmos.areacella.ti-u-hxy-u.fx.GLB", + "atmos.cl.tavg-al-hxy-u.mon.GLB", + "atmos.cli.tavg-al-hxy-u.mon.GLB", + "atmos.clivi.tavg-u-hxy-u.mon.GLB", + "atmos.clt.tavg-u-hxy-u.day.GLB", + "atmos.clt.tavg-u-hxy-u.mon.GLB", + "atmos.clw.tavg-al-hxy-u.mon.GLB", + "atmos.clwvi.tavg-u-hxy-u.mon.GLB", + "atmos.evspsbl.tavg-u-hxy-u.mon.GLB", + "atmos.hfls.tavg-u-hxy-u.mon.GLB", + "atmos.hfss.tavg-u-hxy-u.mon.GLB", + "atmos.hur.tavg-p19-hxy-air.mon.GLB", + "atmos.hur.tavg-p19-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.6hr.GLB", + "atmos.hurs.tavg-h2m-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.mon.GLB", + "atmos.hus.tavg-p19-hxy-u.day.GLB", + "atmos.hus.tavg-p19-hxy-u.mon.GLB", + "atmos.huss.tavg-h2m-hxy-u.day.GLB", + "atmos.huss.tavg-h2m-hxy-u.mon.GLB", + "atmos.huss.tpt-h2m-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.1hr.GLB", + "atmos.pr.tavg-u-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.day.GLB", + "atmos.pr.tavg-u-hxy-u.mon.GLB", + "atmos.prc.tavg-u-hxy-u.mon.GLB", + "atmos.prsn.tavg-u-hxy-u.mon.GLB", + "atmos.prw.tavg-u-hxy-u.mon.GLB", + "atmos.ps.tavg-u-hxy-u.day.GLB", + "atmos.ps.tavg-u-hxy-u.mon.GLB", + "atmos.psl.tavg-u-hxy-u.day.GLB", + "atmos.psl.tavg-u-hxy-u.mon.GLB", + "atmos.rlds.tavg-u-hxy-u.mon.GLB", + "atmos.rldscs.tavg-u-hxy-u.mon.GLB", + "atmos.rlus.tavg-u-hxy-u.mon.GLB", + "atmos.rluscs.tavg-u-hxy-u.mon.GLB", + "atmos.rlut.tavg-u-hxy-u.mon.GLB", + "atmos.rlutcs.tavg-u-hxy-u.mon.GLB", + "atmos.rsds.tavg-u-hxy-u.day.GLB", + "atmos.rsds.tavg-u-hxy-u.mon.GLB", + "atmos.rsdscs.tavg-u-hxy-u.mon.GLB", + "atmos.rsdt.tavg-u-hxy-u.mon.GLB", + "atmos.rsus.tavg-u-hxy-u.mon.GLB", + "atmos.rsuscs.tavg-u-hxy-u.mon.GLB", + "atmos.rsut.tavg-u-hxy-u.mon.GLB", + "atmos.rsutcs.tavg-u-hxy-u.mon.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.day.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.mon.GLB", + "atmos.sftlf.ti-u-hxy-u.fx.GLB", + "atmos.ta.tavg-p19-hxy-air.day.GLB", + "atmos.ta.tavg-p19-hxy-air.mon.GLB", + "atmos.ta.tpt-p3-hxy-air.6hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.day.GLB", + "atmos.tas.tavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tmax-h2m-hxy-u.day.GLB", + "atmos.tas.tmaxavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tmin-h2m-hxy-u.day.GLB", + "atmos.tas.tminavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tpt-h2m-hxy-u.3hr.GLB", + "atmos.tauu.tavg-u-hxy-u.mon.GLB", + "atmos.tauv.tavg-u-hxy-u.mon.GLB", + "atmos.ts.tavg-u-hxy-u.mon.GLB", + "atmos.ua.tavg-p19-hxy-air.day.GLB", + "atmos.ua.tavg-p19-hxy-air.mon.GLB", + "atmos.ua.tpt-p3-hxy-air.6hr.GLB", + "atmos.uas.tavg-h10m-hxy-u.day.GLB", + "atmos.uas.tavg-h10m-hxy-u.mon.GLB", + "atmos.uas.tpt-h10m-hxy-u.3hr.GLB", + "atmos.va.tavg-p19-hxy-air.day.GLB", + "atmos.va.tavg-p19-hxy-air.mon.GLB", + "atmos.va.tpt-p3-hxy-air.6hr.GLB", + "atmos.vas.tavg-h10m-hxy-u.day.GLB", + "atmos.vas.tavg-h10m-hxy-u.mon.GLB", + "atmos.vas.tpt-h10m-hxy-u.3hr.GLB", + "atmos.wap.tavg-p19-hxy-air.mon.GLB", + "atmos.wap.tavg-p19-hxy-u.day.GLB", + "atmos.zg.tavg-p19-hxy-air.day.GLB", + "atmos.zg.tavg-p19-hxy-air.mon.GLB", + "land.evspsblsoi.tavg-u-hxy-lnd.mon.GLB", + "land.evspsblveg.tavg-u-hxy-lnd.mon.GLB", + "land.lai.tavg-u-hxy-lnd.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.mon.GLB", + "land.mrros.tavg-u-hxy-lnd.mon.GLB", + "land.mrso.tavg-u-hxy-lnd.mon.GLB", + "land.mrsofc.ti-u-hxy-lnd.fx.GLB", + "land.mrsol.tavg-d10cm-hxy-lnd.mon.GLB", + "land.orog.ti-u-hxy-u.fx.GLB", + "land.rootd.ti-u-hxy-lnd.fx.GLB", + "land.sftgif.ti-u-hxy-u.fx.GLB", + "land.slthick.ti-sl-hxy-lnd.fx.GLB", + "landIce.mrfso.tavg-u-hxy-lnd.mon.GLB", + "landIce.snc.tavg-u-hxy-lnd.mon.GLB", + "landIce.snw.tavg-u-hxy-lnd.mon.GLB", + "ocean.areacello.ti-u-hxy-u.fx.GLB", + "ocean.basin.ti-u-hxy-u.fx.GLB", + "ocean.bigthetao.tavg-ol-hxy-sea.mon.GLB", + "ocean.deptho.ti-u-hxy-sea.fx.GLB", + "ocean.hfds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfgeou.ti-u-hxy-sea.fx.GLB", + "ocean.masscello.tavg-ol-hxy-sea.mon.GLB", + "ocean.masscello.ti-ol-hxy-sea.fx.GLB", + "ocean.mlotst.tavg-u-hxy-sea.mon.GLB", + "ocean.sftof.ti-u-hxy-u.fx.GLB", + "ocean.so.tavg-ol-hxy-sea.mon.GLB", + "ocean.sos.tavg-u-hxy-sea.day.GLB", + "ocean.sos.tavg-u-hxy-sea.mon.GLB", + "ocean.tauuo.tavg-u-hxy-sea.mon.GLB", + "ocean.tauvo.tavg-u-hxy-sea.mon.GLB", + "ocean.thetao.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcello.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcello.ti-ol-hxy-sea.fx.GLB", + "ocean.tos.tavg-u-hxy-sea.day.GLB", + "ocean.tos.tavg-u-hxy-sea.mon.GLB", + "ocean.umo.tavg-ol-hxy-sea.mon.GLB", + "ocean.uo.tavg-ol-hxy-sea.mon.GLB", + "ocean.vmo.tavg-ol-hxy-sea.mon.GLB", + "ocean.vo.tavg-ol-hxy-sea.mon.GLB", + "ocean.wmo.tavg-ol-hxy-sea.mon.GLB", + "ocean.wo.tavg-ol-hxy-sea.mon.GLB", + "ocean.zos.tavg-u-hxy-sea.day.GLB", + "ocean.zos.tavg-u-hxy-sea.mon.GLB", + "ocean.zostoga.tavg-u-hm-sea.mon.GLB", + "seaIce.siconc.tavg-u-hxy-u.day.GLB", + "seaIce.siconc.tavg-u-hxy-u.mon.GLB", + "seaIce.simass.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-si.mon.GLB", + "seaIce.sitimefrac.tavg-u-hxy-sea.mon.GLB", + "seaIce.siu.tavg-u-hxy-si.mon.GLB", + "seaIce.siv.tavg-u-hxy-si.mon.GLB", + "seaIce.snd.tavg-u-hxy-sn.mon.GLB", + "seaIce.ts.tavg-u-hxy-si.mon.GLB" + ], + "High": [ + "aerosol.abs550aer.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550bc.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550dust.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550no3.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550oa.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550so4.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550ss.tavg-u-hxy-u.mon.GLB", + "aerosol.airmass.tavg-al-hxy-u.mon.GLB", + "aerosol.aoanh.tavg-al-hxy-u.mon.NH", + "aerosol.bry.tavg-p39-hy-air.mon.GLB", + "aerosol.bs550aer.tpt-al-hxy-u.6hr.GLB", + "aerosol.c2h6.tavg-al-hxy-u.mon.GLB", + "aerosol.c3h6.tavg-al-hxy-u.mon.GLB", + "aerosol.c3h8.tavg-al-hxy-u.mon.GLB", + "aerosol.ccldncl.tavg-u-hxy-ccl.mon.GLB", + "aerosol.ccn.tavg-u-hxy-ccl.mon.30S-90S", + "aerosol.ccn.tavg-u-hxy-ccl.mon.GLB", + "aerosol.ccn1.tavg-al-hxy-u.mon.30S-90S", + "aerosol.ccn1.tavg-al-hxy-u.mon.GLB", + "aerosol.ccnp02.tavg-al-hxy-u.mon.30S-90S", + "aerosol.ccnp02.tavg-al-hxy-u.mon.GLB", + "aerosol.cdnc.tavg-al-hxy-u.mon.30S-90S", + "aerosol.cdnc.tavg-al-hxy-u.mon.GLB", + "aerosol.cfc114.tavg-al-hxy-u.mon.GLB", + "aerosol.ch3coch3.tavg-al-hxy-u.mon.GLB", + "aerosol.cheaqpso4.tavg-al-hxy-u.mon.GLB", + "aerosol.chegpso4.tavg-al-hxy-u.mon.GLB", + "aerosol.chepasoa.tavg-u-hxy-u.mon.GLB", + "aerosol.chepsoa.tavg-u-hxy-u.mon.GLB", + "aerosol.cly.tavg-p39-hy-air.mon.GLB", + "aerosol.co.tavg-al-hxy-u.mon.GLB", + "aerosol.co.tavg-h2m-hxy-u.day.GLB", + "aerosol.cod.tavg-u-hxy-u.day.GLB", + "aerosol.cod.tavg-u-hxy-u.mon.30S-90S", + "aerosol.cod.tavg-u-hxy-u.mon.GLB", + "aerosol.conccn.tavg-al-hxy-u.mon.GLB", + "aerosol.conccn.tpt-u-hs-u.3hr.GLB", + "aerosol.depdust.tavg-u-hxy-u.mon.GLB", + "aerosol.drybc.tavg-u-hxy-u.mon.GLB", + "aerosol.drydust.tavg-u-hxy-u.mon.GLB", + "aerosol.dryno3.tavg-u-hxy-u.mon.GLB", + "aerosol.dryo3.tavg-u-hxy-u.mon.GLB", + "aerosol.dryoa.tavg-u-hxy-u.mon.GLB", + "aerosol.dryso2.tavg-u-hxy-u.mon.GLB", + "aerosol.dryso4.tavg-u-hxy-u.mon.GLB", + "aerosol.dryss.tavg-u-hxy-u.mon.GLB", + "aerosol.ec550aer.tavg-al-hxy-u.mon.GLB", + "aerosol.ec550aer.tpt-u-hxy-u.6hr.GLB", + "aerosol.emiaco.tavg-u-hxy-u.mon.GLB", + "aerosol.emianox.tavg-u-hxy-u.mon.GLB", + "aerosol.emiaoa.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbbc.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbch4.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbco.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbdms.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbnh3.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbnox.tavg-u-hxy-u.mon.GLB", + "aerosol.emibboa.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbso2.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbvoc.tavg-u-hxy-u.mon.GLB", + "aerosol.emibc.tavg-u-hxy-u.mon.GLB", + "aerosol.emibvoc.tavg-u-hxy-u.mon.GLB", + "aerosol.emico.tavg-u-hxy-u.mon.GLB", + "aerosol.emidms.tavg-u-hxy-u.mon.30S-90S", + "aerosol.emidms.tavg-u-hxy-u.mon.GLB", + "aerosol.emidust.tavg-u-hxy-u.mon.GLB", + "aerosol.emiisop.tavg-u-hxy-u.mon.GLB", + "aerosol.emilnox.tavg-al-hxy-u.mon.GLB", + "aerosol.eminh3.tavg-u-hxy-u.mon.GLB", + "aerosol.eminox.tavg-u-hxy-u.mon.GLB", + "aerosol.emioa.tavg-u-hxy-u.mon.GLB", + "aerosol.emiso2.tavg-u-hxy-u.mon.GLB", + "aerosol.emiso4.tavg-u-hxy-u.mon.GLB", + "aerosol.emiss.tavg-u-hxy-u.mon.30S-90S", + "aerosol.emiss.tavg-u-hxy-u.mon.GLB", + "aerosol.emivoc.tavg-u-hxy-u.mon.GLB", + "aerosol.h2o.tavg-al-hxy-u.mon.GLB", + "aerosol.h2o.tavg-p39-hy-air.mon.GLB", + "aerosol.hcfc22.tavg-al-hxy-u.mon.GLB", + "aerosol.hcho.tavg-al-hxy-u.mon.GLB", + "aerosol.hcl.tavg-al-hxy-u.mon.GLB", + "aerosol.hcl.tavg-p39-hy-air.mon.GLB", + "aerosol.hfc125.tavg-al-hxy-u.mon.GLB", + "aerosol.hfc134a.tavg-al-hxy-u.mon.GLB", + "aerosol.hno3.tavg-al-hxy-u.mon.GLB", + "aerosol.hno3.tavg-p39-hy-air.mon.GLB", + "aerosol.ho2.tavg-p39-hy-air.mon.GLB", + "aerosol.isop.tavg-al-hxy-u.mon.GLB", + "aerosol.jno2.tavg-al-hxy-u.mon.GLB", + "aerosol.lossch4.tavg-al-hxy-u.mon.GLB", + "aerosol.lossco.tavg-al-hxy-u.mon.GLB", + "aerosol.lossn2o.tavg-al-hxy-u.mon.GLB", + "aerosol.lwp.tavg-u-hxy-u.mon.GLB", + "aerosol.mmraerh2o.tavg-al-hxy-u.mon.GLB", + "aerosol.mmraerh2o.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmraerh2o.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrbc.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrbc.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrbc.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrbc.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrdust.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrdust.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrdust.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrdust.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrnh4.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrnh4.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrnh4.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrnh4.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrno3.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrno3.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrno3.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrno3.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmroa.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmroa.tavg-al-hxy-u.mon.GLB", + "aerosol.mmroa.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmroa.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrpm1.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrpm1.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrpm2p5.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrpm2p5.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrso4.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrso4.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrso4.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrso4.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrsoa.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrsoa.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrsoa.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrss.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrss.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrss.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrss.tpt-h2m-hs-u.3hr.GLB", + "aerosol.nh50.tavg-al-hxy-u.mon.GLB", + "aerosol.no.tavg-al-hxy-u.mon.GLB", + "aerosol.no2.tavg-al-hxy-u.mon.GLB", + "aerosol.no2.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.noy.tavg-p39-hy-air.mon.GLB", + "aerosol.o3.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.o3.tmax-h2m-hxy-u.day.GLB", + "aerosol.o3loss.tavg-al-hxy-u.mon.GLB", + "aerosol.o3prod.tavg-al-hxy-u.mon.GLB", + "aerosol.od443aer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550aer.tavg-u-hxy-u.day.GLB", + "aerosol.od550aer.tavg-u-hxy-u.mon.30S-90S", + "aerosol.od550aer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550aerh2o.tavg-u-hxy-u.mon.GLB", + "aerosol.od550bb.tavg-u-hxy-u.mon.GLB", + "aerosol.od550bc.tavg-u-hxy-u.mon.GLB", + "aerosol.od550csaer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550dust.tavg-u-hxy-u.mon.GLB", + "aerosol.od550lt1aer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550no3.tavg-u-hxy-u.mon.GLB", + "aerosol.od550oa.tavg-u-hxy-u.mon.GLB", + "aerosol.od550so4.tavg-u-hxy-u.mon.GLB", + "aerosol.od550soa.tavg-u-hxy-u.mon.GLB", + "aerosol.od550ss.tavg-u-hxy-u.mon.GLB", + "aerosol.od865aer.tavg-u-hxy-u.mon.GLB", + "aerosol.oh.tavg-al-hxy-u.mon.GLB", + "aerosol.oh.tavg-p39-hy-air.mon.GLB", + "aerosol.pan.tavg-al-hxy-u.mon.GLB", + "aerosol.photo1d.tavg-al-hxy-u.mon.GLB", + "aerosol.pod0.tsum-u-hxy-u.mon.GLB", + "aerosol.reffccwctop.tavg-u-hxy-cl.mon.GLB", + "aerosol.reffclwtop.tavg-u-hxy-cl.mon.30S-90S", + "aerosol.reffclwtop.tavg-u-hxy-cl.mon.GLB", + "aerosol.rluscsaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rlutaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rlutcsaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rsutaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rsutcsaf.tavg-u-hxy-u.mon.GLB", + "aerosol.sfpm1.tavg-h2m-hxy-u.day.GLB", + "aerosol.sfpm10.tavg-al-hxy-u.mon.30S-90S", + "aerosol.sfpm10.tavg-al-hxy-u.mon.GLB", + "aerosol.sfpm10.tavg-h2m-hxy-u.day.GLB", + "aerosol.sfpm25.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.sfpm25.tavg-h2m-hxy-u.day.GLB", + "aerosol.so2.tavg-al-hxy-u.mon.30S-90S", + "aerosol.so2.tavg-al-hxy-u.mon.GLB", + "aerosol.so2.tavg-h2m-hxy-u.day.GLB", + "aerosol.so2.tpt-h2m-hs-u.3hr.GLB", + "aerosol.tatp.tavg-u-hxy-u.mon.GLB", + "aerosol.toz.tavg-u-hxy-u.day.GLB", + "aerosol.toz.tavg-u-hxy-u.mon.GLB", + "aerosol.tropoz.tavg-u-hxy-u.mon.GLB", + "aerosol.ttop.tavg-u-hxy-cl.mon.GLB", + "aerosol.ua.tavg-10hPa-hxy-air.day.GLB", + "aerosol.vt100.tavg-100hPa-hy-air.mon.GLB", + "aerosol.wa.tavg-al-hxy-u.mon.GLB", + "aerosol.wetbc.tavg-u-hxy-u.mon.GLB", + "aerosol.wetdust.tavg-u-hxy-u.mon.GLB", + "aerosol.wetoa.tavg-u-hxy-u.mon.GLB", + "aerosol.wetso2.tavg-u-hxy-u.mon.GLB", + "aerosol.wetso4.tavg-u-hxy-u.mon.GLB", + "aerosol.wetss.tavg-u-hxy-u.mon.GLB", + "aerosol.zg.tavg-10hPa-hxy-air.day.GLB", + "atmos.albisccp.tavg-u-hxy-cl.mon.30S-90S", + "atmos.bldep.tavg-u-hxy-u.mon.GLB", + "atmos.bldep.tmax-u-hxy-u.day.GLB", + "atmos.bldep.tmin-u-hxy-u.day.GLB", + "atmos.bldep.tpt-u-hxy-u.3hr.GLB", + "atmos.cl.tavg-al-hxy-u.day.GLB", + "atmos.cl.tavg-al-hxy-u.mon.30S-90S", + "atmos.clc.tavg-al-hxy-u.mon.30S-90S", + "atmos.clc.tavg-al-hxy-u.mon.GLB", + "atmos.clcalipso.tavg-220hPa-hxy-air.mon.30S-90S", + "atmos.clcalipso.tavg-220hPa-hxy-air.mon.GLB", + "atmos.clcalipso.tavg-560hPa-hxy-air.mon.30S-90S", + "atmos.clcalipso.tavg-560hPa-hxy-air.mon.GLB", + "atmos.clcalipso.tavg-840hPa-hxy-air.mon.30S-90S", + "atmos.clcalipso.tavg-840hPa-hxy-air.mon.GLB", + "atmos.clcalipso.tavg-h40-hxy-air.mon.30S-90S", + "atmos.clcalipso.tavg-h40-hxy-air.mon.GLB", + "atmos.cldnci.tavg-u-hxy-cl.mon.GLB", + "atmos.cldncl.tavg-u-hxy-cl.mon.GLB", + "atmos.cldnvi.tavg-u-hxy-u.day.GLB", + "atmos.cldnvi.tavg-u-hxy-u.mon.GLB", + "atmos.cli.tavg-al-hxy-u.day.GLB", + "atmos.cli.tavg-al-hxy-u.mon.30S-90S", + "atmos.clic.tavg-al-hxy-u.mon.30S-90S", + "atmos.clis.tavg-al-hxy-u.mon.30S-90S", + "atmos.clisccp.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clisccp.tavg-p7c-hxy-air.mon.GLB", + "atmos.clivi.tavg-u-hxy-u.3hr.GLB", + "atmos.clivi.tavg-u-hxy-u.day.GLB", + "atmos.clivi.tavg-u-hxy-u.mon.30S-90S", + "atmos.clivimodis.tavg-u-hxy-u.mon.30S-90S", + "atmos.clivimodis.tavg-u-hxy-u.mon.GLB", + "atmos.clmodis.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clmodis.tavg-p7c-hxy-air.mon.GLB", + "atmos.clmodisice.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clmodisice.tavg-p7c-hxy-air.mon.GLB", + "atmos.clmodisiceReff.tavg-u-hxy-u.mon.GLB", + "atmos.clmodisliquid.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clmodisliquid.tavg-p7c-hxy-air.mon.GLB", + "atmos.clmodisliquidReff.tavg-u-hxy-u.mon.GLB", + "atmos.cls.tavg-al-hxy-u.mon.30S-90S", + "atmos.clt.tavg-u-hxy-lnd.day.GLB", + "atmos.clt.tavg-u-hxy-u.1hr.30S-90S", + "atmos.clt.tavg-u-hxy-u.3hr.GLB", + "atmos.clt.tavg-u-hxy-u.mon.30S-90S", + "atmos.cltc.tavg-u-hxy-u.mon.GLB", + "atmos.cltcalipso.tavg-u-hxy-u.day.GLB", + "atmos.cltcalipso.tavg-u-hxy-u.mon.30S-90S", + "atmos.cltcalipso.tavg-u-hxy-u.mon.GLB", + "atmos.cltcalipso.tpt-u-hxy-u.3hr.GLB", + "atmos.cltisccp.tavg-u-hxy-u.day.GLB", + "atmos.cltisccp.tavg-u-hxy-u.mon.30S-90S", + "atmos.cltisccp.tavg-u-hxy-u.mon.GLB", + "atmos.cltmodis.tavg-u-hxy-u.mon.30S-90S", + "atmos.cltmodis.tavg-u-hxy-u.mon.GLB", + "atmos.clw.tavg-al-hxy-u.day.GLB", + "atmos.clw.tavg-al-hxy-u.mon.30S-90S", + "atmos.clwc.tavg-al-hxy-u.mon.30S-90S", + "atmos.clws.tavg-al-hxy-u.mon.30S-90S", + "atmos.clwvi.tavg-u-hxy-u.3hr.GLB", + "atmos.clwvi.tavg-u-hxy-u.day.GLB", + "atmos.clwvi.tavg-u-hxy-u.mon.30S-90S", + "atmos.clwvimodis.tavg-u-hxy-u.mon.30S-90S", + "atmos.clwvimodis.tavg-u-hxy-u.mon.GLB", + "atmos.co2.tavg-al-hxy-u.mon.GLB", + "atmos.co2.tavg-h2m-hxy-u.mon.GLB", + "atmos.co2.tavg-p19-hxy-air.mon.GLB", + "atmos.co2.tclm-p19-hxy-air.mon.GLB", + "atmos.co2.tclm-u-hm-u.mon.GLB", + "atmos.co23D.tavg-al-hxy-u.mon.GLB", + "atmos.co2mass.tavg-u-hm-u.mon.GLB", + "atmos.dmc.tavg-alh-hxy-u.mon.30S-90S", + "atmos.edt.tavg-al-hxy-u.mon.30S-90S", + "atmos.evspsbl.tavg-u-hxy-lnd.day.GLB", + "atmos.evu.tavg-al-hxy-u.mon.30S-90S", + "atmos.fco2antt.tavg-u-hxy-u.mon.GLB", + "atmos.fco2fos.tavg-u-hxy-u.mon.GLB", + "atmos.fco2nat.tavg-u-hxy-u.mon.GLB", + "atmos.hfls.tavg-u-hxy-is.mon.GRL", + "atmos.hfls.tavg-u-hxy-u.3hr.GLB", + "atmos.hfls.tavg-u-hxy-u.day.GLB", + "atmos.hfls.tavg-u-hxy-u.mon.30S-90S", + "atmos.hfss.tavg-u-hxy-u.3hr.GLB", + "atmos.hfss.tavg-u-hxy-u.day.GLB", + "atmos.hfss.tavg-u-hxy-u.mon.30S-90S", + "atmos.hur.tavg-al-hxy-u.mon.30S-90S", + "atmos.hur.tavg-al-hxy-u.mon.GLB", + "atmos.hur.tavg-p19-hxy-air.mon.30S-90S", + "atmos.hurs.tavg-h2m-hxy-u.1hr.30S-90S", + "atmos.hurs.tavg-h2m-hxy-u.mon.30S-90S", + "atmos.hurs.tmax-h2m-hxy-u.day.GLB", + "atmos.hurs.tmin-h2m-hxy-u.day.GLB", + "atmos.hurs.tpt-h2m-hxy-u.3hr.GLB", + "atmos.hus.tavg-al-hxy-u.mon.30S-90S", + "atmos.hus.tavg-al-hxy-u.mon.GLB", + "atmos.hus.tavg-p19-hxy-u.mon.30S-90S", + "atmos.hus.tpt-al-hxy-u.6hr.GLB", + "atmos.hus.tpt-p7h-hxy-air.6hr.GLB", + "atmos.huss.tavg-h2m-hxy-u.6hr.GLB", + "atmos.huss.tavg-h2m-hxy-u.mon.30S-90S", + "atmos.huss.tpt-h2m-hxy-u.1hr.GLB", + "atmos.intuadse.tavg-u-hxy-u.day.GLB", + "atmos.intuadse.tavg-u-hxy-u.mon.GLB", + "atmos.intuaw.tavg-u-hxy-u.day.GLB", + "atmos.intuaw.tavg-u-hxy-u.mon.GLB", + "atmos.intuaw.tpt-u-hxy-u.6hr.GLB", + "atmos.intvadse.tavg-u-hxy-u.day.GLB", + "atmos.intvadse.tavg-u-hxy-u.mon.GLB", + "atmos.intvaw.tavg-u-hxy-u.day.GLB", + "atmos.intvaw.tavg-u-hxy-u.mon.GLB", + "atmos.intvaw.tpt-u-hxy-u.6hr.GLB", + "atmos.loadbc.tavg-u-hxy-u.day.GLB", + "atmos.loadoa.tavg-u-hxy-u.day.GLB", + "atmos.loadpoa.tavg-u-hxy-u.day.GLB", + "atmos.mc.tavg-alh-hxy-u.mon.GLB", + "atmos.mcd.tavg-alh-hxy-u.mon.30S-90S", + "atmos.mcu.tavg-alh-hxy-u.mon.30S-90S", + "atmos.mcu.tavg-alh-hxy-u.mon.GLB", + "atmos.pctisccp.tavg-u-hxy-cl.day.GLB", + "atmos.pctisccp.tavg-u-hxy-cl.mon.30S-90S", + "atmos.pctisccp.tavg-u-hxy-cl.mon.GLB", + "atmos.pfull.tavg-al-hxy-u.day.GLB", + "atmos.pfull.tavg-al-hxy-u.mon.GLB", + "atmos.pfull.tclm-al-hxy-u.mon.30S-90S", + "atmos.phalf.tavg-alh-hxy-u.mon.GLB", + "atmos.pr.tavg-u-hxy-u.1hr.30S-90S", + "atmos.pr.tavg-u-hxy-u.mon.30S-90S", + "atmos.pr.tmax-u-hxy-u.day.GLB", + "atmos.pr.tpt-u-hxy-u.6hr.GLB", + "atmos.pr17O.tavg-u-hxy-u.mon.GLB", + "atmos.pr18O.tavg-u-hxy-u.mon.GLB", + "atmos.pr2h.tavg-u-hxy-u.mon.GLB", + "atmos.prc.tavg-u-hxy-u.day.GLB", + "atmos.prc.tavg-u-hxy-u.mon.30S-90S", + "atmos.prra.tavg-u-hxy-is.mon.GRL", + "atmos.prra.tavg-u-hxy-lnd.day.GLB", + "atmos.prra.tavg-u-hxy-u.6hr.GLB", + "atmos.prra.tavg-u-hxy-u.mon.30S-90S", + "atmos.prra.tavg-u-hxy-u.mon.GLB", + "atmos.prsn.tavg-u-hxy-is.mon.GRL", + "atmos.prsn.tavg-u-hxy-u.3hr.GLB", + "atmos.prsn.tavg-u-hxy-u.6hr.GLB", + "atmos.prsn.tavg-u-hxy-u.day.GLB", + "atmos.prsn.tavg-u-hxy-u.mon.30S-90S", + "atmos.prsn18O.tavg-u-hxy-u.mon.GLB", + "atmos.prsn2h.tavg-u-hxy-u.mon.GLB", + "atmos.prw.tavg-u-hxy-u.3hr.GLB", + "atmos.prw.tavg-u-hxy-u.day.GLB", + "atmos.prw.tavg-u-hxy-u.mon.30S-90S", + "atmos.prw.tpt-u-hxy-u.6hr.GLB", + "atmos.ps.tavg-u-hxy-u.1hr.GLB", + "atmos.ps.tavg-u-hxy-u.6hr.GLB", + "atmos.ps.tavg-u-hxy-u.mon.30S-90S", + "atmos.ps.tpt-u-hxy-u.1hr.30S-90S", + "atmos.ps.tpt-u-hxy-u.3hr.GLB", + "atmos.ps.tpt-u-hxy-u.6hr.GLB", + "atmos.psl.tavg-u-hxy-u.mon.30S-90S", + "atmos.psl.tpt-u-hxy-u.1hr.GLB", + "atmos.psl.tpt-u-hxy-u.6hr.GLB", + "atmos.ptp.tavg-u-hxy-u.mon.GLB", + "atmos.reffcclwtop.tavg-u-hxy-ccl.mon.GLB", + "atmos.reffclic.tavg-al-hxy-ccl.mon.30S-90S", + "atmos.reffclic.tavg-al-hxy-ccl.mon.GLB", + "atmos.reffclis.tavg-al-hxy-scl.mon.30S-90S", + "atmos.reffclis.tavg-al-hxy-scl.mon.GLB", + "atmos.reffclwc.tavg-al-hxy-ccl.mon.30S-90S", + "atmos.reffclwc.tavg-al-hxy-ccl.mon.GLB", + "atmos.reffclws.tavg-al-hxy-scl.mon.30S-90S", + "atmos.reffclws.tavg-al-hxy-scl.mon.GLB", + "atmos.reffsclwtop.tavg-u-hxy-scl.mon.GLB", + "atmos.rld.tavg-alh-hxy-u.mon.GLB", + "atmos.rld4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rldcs.tavg-alh-hxy-u.mon.GLB", + "atmos.rldcs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rlds.tavg-u-hxy-u.1hr.30S-90S", + "atmos.rlds.tavg-u-hxy-u.1hr.GLB", + "atmos.rlds.tavg-u-hxy-u.3hr.GLB", + "atmos.rlds.tavg-u-hxy-u.6hr.GLB", + "atmos.rlds.tavg-u-hxy-u.day.GLB", + "atmos.rlds.tavg-u-hxy-u.mon.30S-90S", + "atmos.rldscs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rls.tavg-u-hxy-u.mon.GLB", + "atmos.rlu.tavg-alh-hxy-u.mon.GLB", + "atmos.rlu4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rlucs.tavg-alh-hxy-u.mon.GLB", + "atmos.rlucs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rlus.tavg-u-hxy-u.3hr.GLB", + "atmos.rlus.tavg-u-hxy-u.day.GLB", + "atmos.rlus.tavg-u-hxy-u.mon.30S-90S", + "atmos.rlut.tavg-u-hxy-u.3hr.GLB", + "atmos.rlut.tavg-u-hxy-u.day.GLB", + "atmos.rlut.tavg-u-hxy-u.mon.30S-90S", + "atmos.rlut4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rlutcs.tavg-u-hxy-u.3hr.GLB", + "atmos.rlutcs.tavg-u-hxy-u.day.GLB", + "atmos.rlutcs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rlutcs4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rsd.tavg-alh-hxy-u.mon.GLB", + "atmos.rsd4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsdcs.tavg-alh-hxy-u.mon.GLB", + "atmos.rsdcs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsds.tavg-u-hxy-u.1hr.30S-90S", + "atmos.rsds.tavg-u-hxy-u.1hr.GLB", + "atmos.rsds.tavg-u-hxy-u.3hr.GLB", + "atmos.rsds.tavg-u-hxy-u.6hr.GLB", + "atmos.rsds.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsdscs.tavg-u-hxy-u.day.GLB", + "atmos.rsdscs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsdt.tavg-u-hxy-u.day.GLB", + "atmos.rsdt.tavg-u-hxy-u.mon.30S-90S", + "atmos.rss.tavg-u-hxy-u.mon.GLB", + "atmos.rsu.tavg-alh-hxy-u.mon.GLB", + "atmos.rsu4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsucs.tavg-alh-hxy-u.mon.GLB", + "atmos.rsucs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsus.tavg-u-hxy-u.3hr.GLB", + "atmos.rsus.tavg-u-hxy-u.day.GLB", + "atmos.rsus.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsuscs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsut.tavg-u-hxy-u.3hr.GLB", + "atmos.rsut.tavg-u-hxy-u.day.GLB", + "atmos.rsut.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsut4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rsutcs.tavg-u-hxy-u.3hr.GLB", + "atmos.rsutcs.tavg-u-hxy-u.day.GLB", + "atmos.rsutcs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsutcs4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rtmt.tavg-u-hxy-u.mon.GLB", + "atmos.rv850.tpt-850hPa-hxy-air.6hr.GLB", + "atmos.scldncl.tavg-u-hxy-scl.mon.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.1hr.30S-90S", + "atmos.sfcWind.tavg-h10m-hxy-u.6hr.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.mon.30S-90S", + "atmos.sfcWind.tmax-h10m-hxy-u.day.GLB", + "atmos.ta.tavg-700hPa-hxy-air.day.GLB", + "atmos.ta.tavg-al-hxy-u.mon.30S-90S", + "atmos.ta.tavg-al-hxy-u.mon.GLB", + "atmos.ta.tavg-p19-hxy-air.mon.30S-90S", + "atmos.ta.tavg-p39-hy-air.mon.GLB", + "atmos.ta.tpt-al-hxy-u.6hr.GLB", + "atmos.ta.tpt-p5u-hxy-u.6hr.GLB", + "atmos.ta.tpt-p7h-hxy-air.6hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.1hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.6hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.mon.30S-90S", + "atmos.tas.tmaxavg-h2m-hxy-u.mon.30S-90S", + "atmos.tas.tminavg-h2m-hxy-u.mon.30S-90S", + "atmos.tdps.tavg-h2m-hxy-u.mon.GLB", + "atmos.tnt.tavg-al-hxy-u.mon.GLB", + "atmos.tntrl.tavg-al-hxy-u.mon.GLB", + "atmos.tntrs.tavg-al-hxy-u.mon.GLB", + "atmos.ts.tavg-u-hxy-u.6hr.GLB", + "atmos.ts.tavg-u-hxy-u.day.GLB", + "atmos.ts.tavg-u-hxy-u.mon.30S-90S", + "atmos.ts.tpt-u-hxy-u.3hr.GLB", + "atmos.ts.tpt-u-hxy-u.6hr.GLB", + "atmos.ua.tavg-al-hxy-u.mon.GLB", + "atmos.ua.tavg-p19-hxy-air.mon.30S-90S", + "atmos.ua.tavg-p39-hy-air.mon.GLB", + "atmos.ua.tpt-al-hxy-u.6hr.GLB", + "atmos.ua.tpt-h100m-hxy-u.1hr.GLB", + "atmos.ua.tpt-p5u-hxy-air.6hr.GLB", + "atmos.ua.tpt-p7h-hxy-air.6hr.GLB", + "atmos.uas.tavg-h10m-hxy-u.mon.30S-90S", + "atmos.uas.tpt-h10m-hxy-u.1hr.GLB", + "atmos.uas.tpt-h10m-hxy-u.6hr.GLB", + "atmos.va.tavg-al-hxy-u.mon.GLB", + "atmos.va.tavg-p19-hxy-air.mon.30S-90S", + "atmos.va.tavg-p39-hy-air.mon.GLB", + "atmos.va.tpt-al-hxy-u.6hr.GLB", + "atmos.va.tpt-h100m-hxy-u.1hr.GLB", + "atmos.va.tpt-p5u-hxy-air.6hr.GLB", + "atmos.va.tpt-p7h-hxy-air.6hr.GLB", + "atmos.vas.tavg-h10m-hxy-u.mon.30S-90S", + "atmos.vas.tpt-h10m-hxy-u.1hr.GLB", + "atmos.vas.tpt-h10m-hxy-u.6hr.GLB", + "atmos.wap.tavg-p19-hxy-air.mon.30S-90S", + "atmos.wsg.tmax-h100m-hxy-u.1hr.GLB", + "atmos.wsg.tmax-h10m-hxy-u.1hr.GLB", + "atmos.zg.tavg-1000hPa-hxy-air.day.GLB", + "atmos.zg.tavg-500hPa-hxy-air.day.GLB", + "atmos.zg.tavg-al-hxy-u.mon.GLB", + "atmos.zg.tavg-p19-hxy-air.mon.30S-90S", + "atmos.zg.tavg-p39-hy-air.mon.GLB", + "atmos.zg.tpt-500hPa-hxy-air.6hr.GLB", + "atmos.zg.tpt-al-hxy-u.6hr.GLB", + "atmos.zg.tpt-p3-hxy-air.6hr.GLB", + "atmos.zg.tpt-p7h-hxy-air.6hr.GLB", + "atmos.ztp.tavg-u-hxy-u.mon.GLB", + "atmosChem.c2h4.tavg-al-hxy-u.mon.GLB", + "atmosChem.c2h5oh.tavg-al-hxy-u.mon.GLB", + "atmosChem.c4h10.tavg-al-hxy-u.mon.GLB", + "atmosChem.cfc11.tavg-u-hm-u.mon.GLB", + "atmosChem.cfc113.tavg-u-hm-u.mon.GLB", + "atmosChem.cfc12.tavg-u-hm-u.mon.GLB", + "atmosChem.ch3oh.tavg-al-hxy-u.mon.GLB", + "atmosChem.ch4.tavg-al-hxy-u.mon.GLB", + "atmosChem.ch4.tavg-p39-hy-air.mon.GLB", + "atmosChem.ch4losssoil.tavg-u-hxy-u.mon.GLB", + "atmosChem.ch4ref.ti-al-hxy-u.fx.GLB", + "atmosChem.chegph2oo1d.tavg-al-hxy-u.mon.GLB", + "atmosChem.chepnh4.tavg-al-hxy-u.mon.GLB", + "atmosChem.chepno3.tavg-al-hxy-u.mon.GLB", + "atmosChem.dms.tavg-al-hxy-u.mon.30S-90S", + "atmosChem.dms.tavg-al-hxy-u.mon.GLB", + "atmosChem.do3chm.tavg-al-hxy-u.mon.GLB", + "atmosChem.dryh2.tavg-u-hxy-u.mon.GLB", + "atmosChem.dryhno3.tavg-u-hxy-u.mon.GLB", + "atmosChem.drynh3.tavg-u-hxy-u.mon.GLB", + "atmosChem.drynh4.tavg-u-hxy-u.mon.GLB", + "atmosChem.drynoy.tavg-u-hxy-u.mon.GLB", + "atmosChem.e90inst.tpt-al-hxy-u.mon.GLB", + "atmosChem.emiach4.tavg-u-hxy-u.mon.GLB", + "atmosChem.emiavnox.tavg-al-hxy-u.mon.GLB", + "atmosChem.emic2h4.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic2h5oh.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic2h6.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic3h6.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic3h8.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic4h10.tavg-u-hxy-u.mon.GLB", + "atmosChem.emich3oh.tavg-u-hxy-u.mon.GLB", + "atmosChem.emich4.tavg-u-hxy-u.mon.GLB", + "atmosChem.emih2.tavg-u-hxy-u.mon.GLB", + "atmosChem.emilkch4.tavg-u-hxy-u.mon.GLB", + "atmosChem.h2.tavg-al-hxy-u.mon.GLB", + "atmosChem.h2loss.tavg-al-hxy-u.mon.GLB", + "atmosChem.h2prod.tavg-al-hxy-u.mon.GLB", + "atmosChem.hcfc22.tavg-u-hm-u.mon.GLB", + "atmosChem.meanage.tavg-al-hxy-u.mon.GLB", + "atmosChem.meanage.tavg-p39-hy-air.mon.GLB", + "atmosChem.n2o.tavg-al-hxy-u.mon.GLB", + "atmosChem.n2o.tavg-p39-hy-air.mon.GLB", + "atmosChem.o3.tavg-al-hxy-u.mon.GLB", + "atmosChem.o3.tavg-p19-hxy-air.mon.GLB", + "atmosChem.o3.tavg-p39-hy-air.mon.GLB", + "atmosChem.o3.tpt-al-hxy-u.mon.GLB", + "atmosChem.o3ref.tclm-al-hxy-u.fx.GLB", + "atmosChem.o3ref.ti-al-hxy-u.fx.GLB", + "atmosChem.o3ste.tavg-al-hxy-u.mon.GLB", + "atmosChem.rlutch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rlutcsch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rlutcso3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rluto3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsutch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsutcsch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsutcso3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsuto3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.stratch4loss.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropch4loss.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropch4lossoh.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropdo3chm.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropo3ste.tavg-al-hxy-u.mon.GLB", + "atmosChem.wethno3.tavg-al-hxy-u.mon.GLB", + "atmosChem.wetnh3.tavg-u-hxy-u.mon.GLB", + "atmosChem.wetnh4.tavg-u-hxy-u.mon.GLB", + "atmosChem.wetno3.tavg-al-hxy-u.mon.GLB", + "atmosChem.wetnoy.tavg-u-hxy-u.mon.GLB", + "land.albc.tavg-u-hxy-veg.mon.GLB", + "land.areacellr.ti-u-hxy-u.fx.GLB", + "land.baresoilFrac.tavg-u-hxy-u.mon.GLB", + "land.burntFractionAll.tavg-u-hxy-u.mon.GLB", + "land.cGeologicStorage.tavg-u-hxy-u.mon.GLB", + "land.cLand.tavg-u-hxy-lnd.mon.GLB", + "land.cLeaf.tavg-u-hxy-lnd.mon.GLB", + "land.cLitter.tavg-u-hxy-lnd.mon.GLB", + "land.cnc.tavg-u-hxy-u.mon.GLB", + "land.cProduct.tavg-u-hxy-lnd.mon.GLB", + "land.cRoot.tavg-u-hxy-lnd.mon.GLB", + "land.cropFrac.tavg-u-hxy-u.mon.GLB", + "land.cSoil.tavg-d100cm-hxy-lnd.mon.GLB", + "land.cSoil.tavg-sl-hxy-lnd.mon.GLB", + "land.cSoil.tavg-u-hxy-lnd.mon.GLB", + "land.cStem.tavg-u-hxy-lnd.mon.GLB", + "land.cVeg.tavg-u-hxy-lnd.mon.GLB", + "land.dcw.tavg-u-hxy-lnd.day.GLB", + "land.depthl.ti-u-hxy-u.fx.GLB", + "land.depthsl.ti-u-hxy-u.fx.GLB", + "land.dslw.tavg-u-hxy-lnd.day.GLB", + "land.evspsblpot.tavg-u-hxy-lnd.day.GLB", + "land.evspsblpot.tavg-u-hxy-lnd.mon.GLB", + "land.evspsblsoi.tavg-u-hxy-u.day.GLB", + "land.evspsblveg.tavg-u-hxy-u.day.GLB", + "land.fAnthDisturb.tavg-u-hxy-lnd.mon.GLB", + "land.fBNF.tavg-u-hxy-lnd.mon.GLB", + "land.fCLandToOcean.tavg-u-hxy-lnd.mon.GLB", + "land.fDeforestToAtmos.tavg-u-hxy-lnd.mon.GLB", + "land.fDeforestToProduct.tavg-u-hxy-lnd.mon.GLB", + "land.fFire.tavg-u-hxy-lnd.mon.GLB", + "land.fFireAll.tavg-u-hxy-lnd.mon.GLB", + "land.fFireNat.tavg-u-hxy-lnd.mon.GLB", + "land.fHarvestToAtmos.tavg-u-hxy-lnd.mon.GLB", + "land.fHarvestToGeologicStorage.tavg-u-hxy-lnd.mon.GLB", + "land.fHarvestToProduct.tavg-u-hxy-lnd.mon.GLB", + "land.fLitterSoil.tavg-u-hxy-lnd.mon.GLB", + "land.fLuc.tavg-u-hxy-lnd.mon.GLB", + "land.fN2O.tavg-u-hxy-lnd.mon.GLB", + "land.fNAnthDisturb.tavg-u-hxy-lnd.mon.GLB", + "land.fNdep.tavg-u-hxy-lnd.mon.GLB", + "land.fNfert.tavg-u-hxy-lnd.mon.GLB", + "land.fNgas.tavg-u-hxy-lnd.mon.GLB", + "land.fNgasFire.tavg-u-hxy-lnd.mon.GLB", + "land.fNLandToOcean.tavg-u-hxy-lnd.mon.GLB", + "land.fNleach.tavg-u-hxy-lnd.mon.GLB", + "land.fNLitterSoil.tavg-u-hxy-lnd.mon.GLB", + "land.fNloss.tavg-u-hxy-lnd.mon.GLB", + "land.fNnetmin.tavg-u-hxy-lnd.mon.GLB", + "land.fNOx.tavg-u-hxy-lnd.mon.GLB", + "land.fNProduct.tavg-u-hxy-lnd.mon.GLB", + "land.fNup.tavg-u-hxy-lnd.mon.GLB", + "land.fNVegLitter.tavg-u-hxy-lnd.mon.GLB", + "land.fNVegSoil.tavg-u-hxy-lnd.mon.GLB", + "land.fProductDecomp.tavg-u-hxy-lnd.mon.GLB", + "land.fVegLitter.tavg-u-hxy-lnd.mon.GLB", + "land.fVegSoil.tavg-u-hxy-lnd.mon.GLB", + "land.gpp.tavg-u-hxy-lnd.mon.GLB", + "land.gppVgt.tavg-u-hxy-multi.day.GLB", + "land.grassFrac.tavg-u-hxy-u.mon.GLB", + "land.laiVgt.tavg-u-hxy-multi.day.GLB", + "land.landCoverFrac.tavg-u-hxy-u.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.day.GLB", + "land.mrrob.tavg-u-hxy-lnd.day.GLB", + "land.mrros.tavg-u-hxy-lnd.day.GLB", + "land.mrsfl.tavg-sl-hxy-lnd.day.GLB", + "land.mrsfl.tavg-sl-hxy-lnd.mon.GLB", + "land.mrsll.tavg-sl-hxy-lnd.day.GLB", + "land.mrsll.tavg-sl-hxy-lnd.mon.GLB", + "land.mrso.tavg-u-hxy-lnd.day.GLB", + "land.mrsol.tavg-d10cm-hxy-lnd.day.GLB", + "land.mrsol.tavg-sl-hxy-lnd.day.GLB", + "land.mrsol.tavg-sl-hxy-lnd.mon.GLB", + "land.mrsol.tpt-d10cm-hxy-lnd.3hr.GLB", + "land.mrsow.tavg-u-hxy-lnd.day.GLB", + "land.mrtws.tavg-u-hxy-lnd.day.GLB", + "land.mrtws.tavg-u-hxy-lnd.mon.GLB", + "land.nbp.tavg-u-hxy-lnd.mon.GLB", + "land.nep.tavg-u-hxy-lnd.mon.GLB", + "land.nLand.tavg-u-hxy-lnd.mon.GLB", + "land.nLitter.tavg-u-hxy-lnd.mon.GLB", + "land.nMineral.tavg-u-hxy-lnd.mon.GLB", + "land.npp.tavg-u-hxy-lnd.mon.GLB", + "land.nProduct.tavg-u-hxy-lnd.mon.GLB", + "land.nSoil.tavg-u-hxy-lnd.mon.GLB", + "land.nVeg.tavg-u-hxy-lnd.mon.GLB", + "land.orog.ti-u-hxy-u.fx.30S-90S", + "land.pastureFrac.tavg-u-hxy-u.mon.GLB", + "land.prveg.tavg-u-hxy-lnd.mon.GLB", + "land.ra.tavg-u-hxy-lnd.mon.GLB", + "land.residualFrac.tavg-u-hxy-u.mon.GLB", + "land.rh.tavg-u-hxy-lnd.mon.GLB", + "land.rivi.tavg-u-hxy-lnd.day.GLB", + "land.rivo.tavg-u-hxy-lnd.day.GLB", + "land.rsds.tavg-u-hxy-lnd.mon.GLB", + "land.rsds.tavg-u-hxy-sn.mon.GLB", + "land.rsus.tavg-u-hxy-lnd.mon.GLB", + "land.rsus.tavg-u-hxy-sn.mon.GLB", + "land.sftgif.tavg-u-hxy-u.mon.GLB", + "land.sftlaf.ti-u-hxy-u.fx.GLB", + "land.shrubFrac.tavg-u-hxy-u.mon.GLB", + "land.srfrad.tavg-u-hxy-u.3hr.GLB", + "land.tas.tavg-u-hxy-u.1hr.30S-90S", + "land.tas.tavg-u-hxy-u.1hr.GLB", + "land.tran.tavg-u-hxy-lnd.mon.GLB", + "land.treeFrac.tavg-u-hxy-u.mon.GLB", + "land.tsl.tavg-sl-hxy-lnd.day.GLB", + "land.tsl.tavg-sl-hxy-lnd.mon.GLB", + "land.tslsi.tavg-u-hxy-u.day.GLB", + "land.tslsi.tpt-u-hxy-lsi.3hr.GLB", + "land.vegFrac.tavg-u-hxy-u.mon.GLB", + "land.vegHeight.tavg-u-hxy-tree.mon.GLB", + "land.vegHeight.tavg-u-hxy-veg.mon.GLB", + "land.wetlandCH4.tavg-u-hxy-lnd.mon.GLB", + "land.wtd.tavg-u-hxy-lnd.day.GLB", + "landIce.acabf.tavg-u-hxy-is.mon.GLB", + "landIce.hfdsn.tavg-u-hxy-lnd.mon.GLB", + "landIce.hfgeoubed.ti-u-hxy-gis.fx.GRL", + "landIce.hfls.tavg-u-hxy-is.mon.GLB", + "landIce.hfss.tavg-u-hxy-is.mon.GLB", + "landIce.icem.tavg-u-hxy-is.mon.GLB", + "landIce.litemptop.tavg-u-hxy-is.mon.GLB", + "landIce.lithk.ti-u-hxy-is.fx.GRL", + "landIce.lithk.ti-u-hxy-u.fx.GLB", + "landIce.mrro.tavg-u-hxy-is.mon.GLB", + "landIce.orog.tavg-u-hxy-is.mon.GLB", + "landIce.pflw.tavg-u-hxy-lnd.mon.GLB", + "landIce.prra.tavg-u-hxy-is.mon.GLB", + "landIce.prsn.tavg-u-hxy-is.mon.GLB", + "landIce.rlds.tavg-u-hxy-is.mon.GLB", + "landIce.rlus.tavg-u-hxy-is.mon.GLB", + "landIce.rsds.tavg-u-hxy-is.mon.GLB", + "landIce.rsus.tavg-u-hxy-is.mon.GLB", + "landIce.sbl.tavg-u-hxy-is.mon.GLB", + "landIce.sbl.tavg-u-hxy-lnd.mon.GLB", + "landIce.sbl.tavg-u-hxy-u.mon.GLB", + "landIce.sftflf.tavg-u-hxy-u.mon.GLB", + "landIce.sftflf.ti-u-hxy-u.fx.GLB", + "landIce.sftgrf.tavg-u-hxy-u.mon.GLB", + "landIce.sftgrf.ti-u-hxy-u.fx.GLB", + "landIce.snc.tavg-u-hxy-is.mon.GLB", + "landIce.snd.tavg-u-hxy-lnd.mon.GLB", + "landIce.snicem.tavg-u-hxy-is.mon.GLB", + "landIce.snicem.tavg-u-hxy-is.mon.GRL", + "landIce.snm.tavg-u-hxy-is.mon.GLB", + "landIce.snm.tavg-u-hxy-lnd.mon.GLB", + "landIce.snrefr.tavg-u-hxy-is.mon.GLB", + "landIce.snw.tavg-u-hxy-lnd.day.GLB", + "landIce.sootsn.tavg-u-hxy-lnd.mon.GLB", + "landIce.tas.tavg-u-hxy-is.mon.GLB", + "landIce.topg.ti-u-hxy-gis.fx.GRL", + "landIce.tpf.tavg-u-hxy-lnd.mon.GLB", + "landIce.ts.tavg-u-hxy-is.mon.GLB", + "landIce.tsn.tavg-u-hxy-is.mon.GLB", + "landIce.tsn.tavg-u-hxy-lnd.mon.GLB", + "ocean.absscint.tavg-op4-hxy-sea.mon.GLB", + "ocean.agessc.tavg-ol-hxy-sea.mon.GLB", + "ocean.bigthetao.tavg-ol-hm-sea.mon.GLB", + "ocean.bigthetao.tavg-ol-hxy-sea.dec.GLB", + "ocean.bigthetao.tavg-op20bar-hxy-sea.day.GLB", + "ocean.chcint.tavg-op4-hxy-sea.mon.GLB", + "ocean.ficeberg.tavg-ol-hxy-sea.3hr.GLB", + "ocean.ficeberg.tavg-ol-hxy-sea.mon.GLB", + "ocean.ficeberg.tavg-u-hxy-sea.mon.GLB", + "ocean.flandice.tavg-u-hxy-sea.3hr.GLB", + "ocean.flandice.tavg-u-hxy-sea.mon.GLB", + "ocean.friver.tavg-u-hxy-sea.3hr.GLB", + "ocean.friver.tavg-u-hxy-sea.mon.GLB", + "ocean.hfbasin.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpmadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpmdiff.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpsmadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfds.tavg-u-hxy-sea.3hr.GLB", + "ocean.hfds.tavg-u-hxy-sea.mon.30S-90S", + "ocean.hfgeou.tavg-u-hxy-sea.mon.GLB", + "ocean.hfrunoffds.tavg-ol-hxy-sea.3hr.GLB", + "ocean.hfx.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfx.tavg-u-hxy-sea.day.GLB", + "ocean.hfx.tavg-u-hxy-sea.mon.GLB", + "ocean.hfy.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfy.tavg-u-hxy-sea.day.GLB", + "ocean.hfy.tavg-u-hxy-sea.mon.GLB", + "ocean.htovgyre.tavg-u-hyb-sea.mon.GLB", + "ocean.htovovrt.tavg-u-hyb-sea.mon.GLB", + "ocean.masscello.tavg-ol-hxy-sea.dec.GLB", + "ocean.masso.tavg-u-hm-sea.dec.GLB", + "ocean.masso.tavg-u-hm-sea.mon.GLB", + "ocean.mlotst.tavg-u-hxy-sea.day.GLB", + "ocean.mlotst.tavg-u-hxy-sea.mon.30S-90S", + "ocean.mlotst.tmax-u-hxy-sea.mon.GLB", + "ocean.mlotst.tmin-u-hxy-sea.mon.GLB", + "ocean.mpw.tavg-u-hxy-sea.mon.GLB", + "ocean.mpw.tpt-u-hxy-sea.3hr.GLB", + "ocean.mpwswell.tavg-u-hxy-sea.mon.GLB", + "ocean.mpwswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.mpwwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.mpwwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.msftbarot.tavg-u-hxy-sea.mon.GLB", + "ocean.msftm.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftm.tavg-rho-hyb-sea.mon.GLB", + "ocean.msfty.tavg-ol-ht-sea.mon.GLB", + "ocean.msfty.tavg-rho-ht-sea.mon.GLB", + "ocean.obvfsq.tavg-ol-hxy-sea.mon.GLB", + "ocean.opottemptend.tavg-ol-hxy-sea.yr.GLB", + "ocean.pbo.tavg-u-hxy-sea.mon.GLB", + "ocean.pfscint.tavg-op4-hxy-sea.mon.GLB", + "ocean.phcint.tavg-op4-hxy-sea.mon.GLB", + "ocean.pso.tavg-u-hxy-sea.mon.GLB", + "ocean.rsds.tavg-u-hxy-ifs.mon.GLB", + "ocean.rsntds.tavg-u-hxy-sea.3hr.GLB", + "ocean.rsus.tavg-u-hxy-ifs.mon.GLB", + "ocean.scint.tavg-op4-hxy-sea.mon.GLB", + "ocean.sduo.tavg-u-hxy-sea.mon.GLB", + "ocean.sduo.tpt-u-hxy-sea.3hr.GLB", + "ocean.sdvo.tavg-u-hxy-sea.mon.GLB", + "ocean.sdvo.tpt-u-hxy-sea.3hr.GLB", + "ocean.sfdsi.tavg-u-hxy-sea.3hr.GLB", + "ocean.sfx.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfx.tavg-u-hxy-sea.mon.GLB", + "ocean.sfy.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfy.tavg-u-hxy-sea.mon.GLB", + "ocean.sltbasin.tavg-u-hyb-sea.mon.GLB", + "ocean.sltovgyre.tavg-u-hyb-sea.mon.GLB", + "ocean.sltovovrt.tavg-u-hyb-sea.mon.GLB", + "ocean.so.tavg-ol-hm-sea.mon.GLB", + "ocean.so.tavg-ol-hxy-sea.dec.GLB", + "ocean.so.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.sob.tavg-u-hxy-sea.mon.GLB", + "ocean.sos.tavg-u-hm-sea.mon.30S-90S", + "ocean.sos.tavg-u-hm-sea.mon.GLB", + "ocean.sw17O.tavg-ol-hxy-sea.mon.GLB", + "ocean.sw18O.tavg-ol-hxy-sea.mon.GLB", + "ocean.sw2H.tavg-ol-hxy-sea.mon.GLB", + "ocean.swh.tavg-u-hxy-sea.mon.GLB", + "ocean.swh.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhmax.tmax-u-hxy-sea.mon.GLB", + "ocean.swhmax.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhswell.tavg-u-hxy-sea.mon.GLB", + "ocean.swhswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.swhwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.tauuo.tavg-u-hxy-sea.3hr.GLB", + "ocean.tauuo.tavg-u-hxy-sea.dec.GLB", + "ocean.tauvo.tavg-u-hxy-sea.3hr.GLB", + "ocean.tauvo.tavg-u-hxy-sea.dec.GLB", + "ocean.thetao.tavg-ol-hm-sea.mon.GLB", + "ocean.thetao.tavg-ol-hxy-sea.dec.GLB", + "ocean.thetao.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.thetao.tavg-op20bar-hxy-sea.day.GLB", + "ocean.thkcello.tavg-ol-hxy-sea.dec.GLB", + "ocean.tob.tavg-u-hxy-sea.mon.GLB", + "ocean.tos.tavg-u-hm-sea.mon.GLB", + "ocean.tos.tavg-u-hxy-sea.mon.30S-90S", + "ocean.tos.tpt-u-hxy-sea.3hr.GLB", + "ocean.tossq.tavg-u-hxy-sea.day.GLB", + "ocean.umo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.uo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.uos.tavg-u-hxy-sea.day.GLB", + "ocean.vmo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.vo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.volcello.tavg-ol-hxy-sea.dec.GLB", + "ocean.volcello.tavg-ol-hxy-sea.mon.GLB", + "ocean.volcello.tavg-ol-hxy-sea.yr.GLB", + "ocean.volcello.ti-ol-hxy-sea.fx.GLB", + "ocean.volo.tavg-u-hm-sea.dec.GLB", + "ocean.volo.tavg-u-hm-sea.mon.GLB", + "ocean.vos.tavg-u-hxy-sea.day.GLB", + "ocean.wdir.tavg-u-hxy-sea.mon.GLB", + "ocean.wdir.tpt-u-hxy-sea.3hr.GLB", + "ocean.wdirswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wdirswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wdirwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wdirwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.wfcorr.tavg-u-hxy-sea.mon.GLB", + "ocean.wfo.tavg-u-hxy-sea.3hr.GLB", + "ocean.wfo.tavg-u-hxy-sea.mon.GLB", + "ocean.wmo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.wo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.wpdir.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdir.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpdirswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdirswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpdirwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdirwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpp.tavg-u-hxy-sea.mon.GLB", + "ocean.wpp.tpt-u-hxy-sea.3hr.GLB", + "ocean.wppswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wppswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wppwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wppwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.zos.tavg-u-hxy-sea.mon.30S-90S", + "ocean.zossq.tavg-u-hxy-sea.mon.GLB", + "ocean.zostoga.tavg-u-hm-sea.day.GLB", + "ocnBgchem.bacc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.calc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chl.tavg-d0m-hxy-sea.day.GLB", + "ocnBgchem.chl.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chl.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chlcalc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chldiat.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chldiat.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chldiaz.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chldiaz.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chlmisc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chlmisc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chlpico.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chlpico.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.detoc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dfe.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.dfe.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.dfe.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissic.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.dissic.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissoc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dmso.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.dmso.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.dpco2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.dpo2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.expc.tavg-d1000m-hxy-sea.mon.GLB", + "ocnBgchem.expc.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.expc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.expcalc.tavg-d1000m-hxy-sea.mon.GLB", + "ocnBgchem.expcalc.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.expcalc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.fgco2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fric.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.froc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fsfe.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fsn.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.graz.tavg-ol-hxy-sea.mon.30S-90S", + "ocnBgchem.graz.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.icfriver.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intdic.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intdoc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intparag.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbfe.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbn.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbp.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbsi.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpcalcite.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpn2.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpoc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpp.tavg-u-hxy-sea.day.GLB", + "ocnBgchem.intpp.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpp.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppcalc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppdiat.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppdiaz.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppmisc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppnitrate.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpppico.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.nh4.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.nh4.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.no3.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.no3.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.o2.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.ocfriver.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.ph.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.ph.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phyc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phyc.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.phyc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phycalc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phycalc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phydiat.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phydiat.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phydiaz.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phydiaz.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phymisc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phymisc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phypico.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phypico.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.po4.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.pp.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.si.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.spco2.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.spco2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.talk.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zmeso.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zmeso.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zmicro.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zmicro.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zmisc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zmisc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zooc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zooc.tavg-ol-hxy-sea.mon.GLB", + "seaIce.evspsbl.tavg-u-hxy-si.mon.GLB", + "seaIce.prra.tavg-u-hxy-si.mon.GLB", + "seaIce.prsn.tavg-u-hxy-si.mon.GLB", + "seaIce.rlds.tavg-u-hxy-si.day.GLB", + "seaIce.rlds.tavg-u-hxy-si.mon.GLB", + "seaIce.rlus.tavg-u-hxy-si.day.GLB", + "seaIce.rlus.tavg-u-hxy-si.mon.GLB", + "seaIce.rsds.tavg-u-hxy-si.day.GLB", + "seaIce.rsds.tavg-u-hxy-si.mon.GLB", + "seaIce.rsus.tavg-u-hxy-si.day.GLB", + "seaIce.rsus.tavg-u-hxy-si.mon.GLB", + "seaIce.sbl.tavg-u-hxy-si.mon.GLB", + "seaIce.siage.tavg-u-hxy-si.day.GLB", + "seaIce.siage.tavg-u-hxy-si.mon.30S-90S", + "seaIce.siarea.tavg-u-hm-u.mon.NH", + "seaIce.siarea.tavg-u-hm-u.mon.SH", + "seaIce.siareaacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.siconc.tavg-u-hxy-u.mon.30S-90S", + "seaIce.siconca.tavg-u-hxy-u.day.GLB", + "seaIce.siconca.tavg-u-hxy-u.mon.GLB", + "seaIce.sidconcdyn.tavg-u-hxy-sea.mon.GLB", + "seaIce.sidconcth.tavg-u-hxy-sea.mon.GLB", + "seaIce.sidmassdyn.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthsi.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthwat.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmeltbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmeltlat.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmelttop.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassth.tavg-u-hxy-si.mon.GLB", + "seaIce.sieqthick.tavg-u-hxy-si.mon.GLB", + "seaIce.siextent.tavg-u-hm-u.mon.NH", + "seaIce.siextent.tavg-u-hm-u.mon.SH", + "seaIce.siflcondbot.tavg-u-hxy-si.day.GLB", + "seaIce.siflcondbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflcondtop.tavg-u-hxy-si.day.GLB", + "seaIce.siflcondtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sifllattop.tavg-u-hxy-si.day.GLB", + "seaIce.sifllattop.tavg-u-hxy-si.mon.GLB", + "seaIce.siflsensbot.tavg-u-hxy-si.day.GLB", + "seaIce.siflsensbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflsenstop.tavg-u-hxy-si.day.GLB", + "seaIce.siflsenstop.tavg-u-hxy-si.mon.GLB", + "seaIce.siflswdbot.tavg-u-hxy-si.day.GLB", + "seaIce.siflswdbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sihc.tavg-u-hxy-sea.day.GLB", + "seaIce.sihc.tavg-u-hxy-sea.mon.GLB", + "seaIce.siitdconc.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdsnconc.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdsnthick.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdthick.tavg-u-hxy-si.mon.GLB", + "seaIce.simassacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.simpconc.tavg-u-hxy-si.mon.GLB", + "seaIce.sirdgconc.tavg-u-hxy-si.mon.GLB", + "seaIce.sisaltmass.tavg-u-hxy-si.mon.GLB", + "seaIce.sisndmassdyn.tavg-u-hxy-si.mon.GLB", + "seaIce.sisndmasssi.tavg-u-hxy-si.mon.GLB", + "seaIce.sisndmasswind.tavg-u-hxy-si.mon.GLB", + "seaIce.sisnhc.tavg-u-hxy-si.day.GLB", + "seaIce.sisnhc.tavg-u-hxy-si.mon.GLB", + "seaIce.sisnmass.tavg-u-hm-u.mon.NH", + "seaIce.sisnmass.tavg-u-hm-u.mon.SH", + "seaIce.sisnmassacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.sispeed.tavg-u-hxy-si.day.GLB", + "seaIce.sispeed.tavg-u-hxy-si.mon.GLB", + "seaIce.sistressave.tpt-u-hxy-si.mon.GLB", + "seaIce.sistressmax.tpt-u-hxy-si.mon.GLB", + "seaIce.sistrxdtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sistrxubot.tavg-u-hxy-si.mon.GLB", + "seaIce.sistrydtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sistryubot.tavg-u-hxy-si.mon.GLB", + "seaIce.sitempsnic.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-si.day.GLB", + "seaIce.sithick.tavg-u-hxy-si.mon.30S-90S", + "seaIce.sitimefrac.tavg-u-hxy-sea.day.GLB", + "seaIce.sitimefrac.tavg-u-hxy-sea.mon.30S-90S", + "seaIce.siu.tavg-u-hxy-si.day.GLB", + "seaIce.siu.tavg-u-hxy-si.mon.30S-90S", + "seaIce.siv.tavg-u-hxy-si.day.GLB", + "seaIce.siv.tavg-u-hxy-si.mon.30S-90S", + "seaIce.sivol.tavg-u-hm-u.mon.NH", + "seaIce.sivol.tavg-u-hm-u.mon.SH", + "seaIce.snc.tavg-u-hxy-si.mon.GLB", + "seaIce.snd.tavg-u-hxy-sn.day.GLB", + "seaIce.snd.tavg-u-hxy-sn.mon.30S-90S", + "seaIce.snm.tavg-u-hxy-si.mon.GLB", + "seaIce.snw.tavg-u-hxy-si.mon.GLB", + "seaIce.ts.tavg-u-hxy-si.day.GLB", + "seaIce.ts.tavg-u-hxy-si.mon.30S-90S" + ], + "Medium": [ + "atmos.bldep.tavg-u-hxy-u.1hr.GLB", + "atmos.clic.tpt-al-hxy-u.3hr.GLB", + "atmos.clis.tpt-al-hxy-u.3hr.GLB", + "atmos.clivi.tpt-u-hxy-u.3hr.GLB", + "atmos.clt.tpt-u-hxy-u.3hr.GLB", + "atmos.clwc.tpt-al-hxy-u.3hr.GLB", + "atmos.clws.tpt-al-hxy-u.3hr.GLB", + "atmos.clwvi.tpt-u-hxy-u.3hr.GLB", + "atmos.dtauc.tpt-al-hxy-ccl.3hr.GLB", + "atmos.dtaus.tpt-al-hxy-scl.3hr.GLB", + "atmos.hfdsnb.tavg-u-hxy-lnd.day.GLB", + "atmos.hfls.tavg-u-hxy-is.mon.ATA", + "atmos.hfls.tavg-u-hxy-u.1hr.GLB", + "atmos.hfss.tavg-u-hxy-is.mon.ATA", + "atmos.hfss.tavg-u-hxy-is.mon.GRL", + "atmos.hfss.tavg-u-hxy-u.1hr.GLB", + "atmos.hur.tavg-700hPa-hxy-air.day.GLB", + "atmos.hur.tpt-100hPa-hxy-u.6hr.GLB", + "atmos.hur.tpt-500hPa-hxy-air.6hr.GLB", + "atmos.hur.tpt-850hPa-hxy-air.6hr.GLB", + "atmos.hurs.tavg-h2m-hxy-u.1hr.GLB", + "atmos.hus.tpt-al-hxy-u.3hr.GLB", + "atmos.hus.tpt-p6-hxy-air.3hr.GLB", + "atmos.noaahi2m.tavg-h2m-hxy-u.day.GLB", + "atmos.noaahi2m.tmax-h2m-hxy-u.day.GLB", + "atmos.pfull.tpt-al-hxy-u.3hr.GLB", + "atmos.pr.tpt-u-hxy-u.3hr.GLB", + "atmos.prra.tavg-u-hxy-is.mon.ATA", + "atmos.prrsn.tavg-u-hxy-lnd.day.GLB", + "atmos.prsn.tavg-u-hxy-is.mon.ATA", + "atmos.prsnc.tavg-u-hxy-lnd.day.GLB", + "atmos.prsnsn.tavg-u-hxy-lnd.day.GLB", + "atmos.prw.tpt-u-hxy-u.3hr.GLB", + "atmos.ps.tpt-u-hxy-u.1hr.GLB", + "atmos.reffclic.tpt-al-hxy-ccl.3hr.GLB", + "atmos.reffclis.tpt-al-hxy-scl.3hr.GLB", + "atmos.reffclwc.tpt-al-hxy-ccl.3hr.GLB", + "atmos.reffclws.tpt-al-hxy-scl.3hr.GLB", + "atmos.rlds.tavg-u-hxy-is.mon.ATA", + "atmos.rlds.tavg-u-hxy-is.mon.GRL", + "atmos.rlds.tpt-u-hxy-u.3hr.GLB", + "atmos.rldscs.tavg-u-hxy-u.day.GLB", + "atmos.rldscs.tpt-u-hxy-u.3hr.GLB", + "atmos.rls.tavg-u-hxy-u.day.GLB", + "atmos.rlus.tavg-u-hxy-is.mon.ATA", + "atmos.rlus.tavg-u-hxy-is.mon.GRL", + "atmos.rlus.tavg-u-hxy-u.1hr.GLB", + "atmos.rlut.tpt-u-hxy-u.3hr.GLB", + "atmos.rlutcs.tpt-u-hxy-u.3hr.GLB", + "atmos.rsds.tavg-u-hxy-is.mon.ATA", + "atmos.rsds.tavg-u-hxy-is.mon.GRL", + "atmos.rsds.tpt-u-hxy-u.3hr.GLB", + "atmos.rsdscs.tpt-u-hxy-u.3hr.GLB", + "atmos.rsdsdiff.tavg-u-hxy-u.1hr.GLB", + "atmos.rsdsdiff.tavg-u-hxy-u.day.GLB", + "atmos.rss.tavg-u-hxy-u.day.GLB", + "atmos.rsus.tavg-u-hxy-is.mon.ATA", + "atmos.rsus.tavg-u-hxy-is.mon.GRL", + "atmos.rsus.tavg-u-hxy-u.1hr.GLB", + "atmos.rsut.tpt-u-hxy-u.3hr.GLB", + "atmos.rsutcs.tpt-u-hxy-u.3hr.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.1hr.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.3hr.GLB", + "atmos.snmsl.tavg-u-hxy-lnd.day.GLB", + "atmos.snrefr.tavg-u-hxy-lnd.day.GLB", + "atmos.snwc.tavg-u-hxy-lnd.day.GLB", + "atmos.ta.tpt-al-hxy-u.3hr.GLB", + "atmos.ta.tpt-p6-hxy-air.3hr.GLB", + "atmos.tas.tavg-h2m-hm-is.mon.ATA", + "atmos.tas.tavg-h2m-hm-is.mon.GRL", + "atmos.ts.tavg-u-hxy-is.mon.ATA", + "atmos.ts.tavg-u-hxy-is.mon.GRL", + "atmos.ts.tavg-u-hxy-sn.day.GLB", + "atmos.ts.tavg-u-hxy-u.1hr.GLB", + "atmos.ua.tavg-h100m-hxy-u.3hr.GLB", + "atmos.ua.tpt-200hPa-hxy-u.6hr.GLB", + "atmos.ua.tpt-p6-hxy-air.3hr.GLB", + "atmos.va.tavg-h100m-hxy-u.3hr.GLB", + "atmos.va.tpt-200hPa-hxy-u.6hr.GLB", + "atmos.va.tpt-p6-hxy-air.3hr.GLB", + "atmos.wap.tpt-p6-hxy-air.3hr.GLB", + "atmos.wbgt.tavg-h2m-hxy-u.day.GLB", + "atmos.wbgt.tmax-h2m-hxy-u.day.GLB", + "atmos.wsg.tmax-h100m-hxy-u.mon.GLB", + "atmos.wsg.tmax-h10m-hxy-u.mon.GLB", + "atmos.zg.tpt-700hPa-hxy-u.6hr.GLB", + "atmos.zg.tpt-925hPa-hxy-u.6hr.GLB", + "atmosChem.flashrate.tavg-u-hxy-u.day.GLB", + "land.areacellg.ti-u-hxy-u.fx.ATA", + "land.areacellg.ti-u-hxy-u.fx.GRL", + "land.baresoilFrac.tavg-u-hxy-u.yr.GLB", + "land.cLitterCwd.tavg-u-hxy-lnd.mon.GLB", + "land.cLitterLut.tpt-u-hxy-multi.yr.GLB", + "land.cLitterSubSurf.tavg-u-hxy-lnd.mon.GLB", + "land.cLitterSurf.tavg-u-hxy-lnd.mon.GLB", + "land.cOther.tavg-u-hxy-lnd.mon.GLB", + "land.cProductLut.tpt-u-hxy-multi.yr.GLB", + "land.cropFrac.tavg-u-hxy-u.yr.GLB", + "land.cropFracC3.tavg-u-hxy-u.mon.GLB", + "land.cropFracC4.tavg-u-hxy-u.mon.GLB", + "land.cSoilLut.tpt-u-hxy-multi.yr.GLB", + "land.cSoilPools.tavg-u-hxy-lnd.mon.GLB", + "land.cVeg.tavg-u-hxy-ng.mon.GLB", + "land.cVeg.tavg-u-hxy-shb.mon.GLB", + "land.cVeg.tavg-u-hxy-tree.mon.GLB", + "land.cVegLut.tpt-u-hxy-multi.yr.GLB", + "land.dgw.tavg-u-hxy-lnd.day.GLB", + "land.drivw.tavg-u-hxy-lnd.day.GLB", + "land.dsn.tavg-u-hxy-lnd.day.GLB", + "land.dsw.tavg-u-hxy-lnd.day.GLB", + "land.esn.tavg-u-hxy-sn.day.GLB", + "land.evspsblsoi.tavg-u-hxy-u.3hr.GLB", + "land.evspsblveg.tavg-u-hxy-u.3hr.GLB", + "land.fLitterFire.tavg-u-hxy-lnd.mon.GLB", + "land.fLulccAtmLut.tavg-u-hxy-multi.mon.GLB", + "land.fNgasNonFire.tavg-u-hxy-lnd.mon.GLB", + "land.fracInLut.tsum-u-hxy-lnd.yr.GLB", + "land.fracLut.tpt-u-hxy-u.mon.GLB", + "land.fracLut.tpt-u-hxy-u.yr.GLB", + "land.fracOutLut.tsum-u-hxy-lnd.yr.GLB", + "land.fVegFire.tavg-u-hxy-lnd.mon.GLB", + "land.fVegLitterMortality.tavg-u-hxy-lnd.mon.GLB", + "land.fVegLitterSenescence.tavg-u-hxy-lnd.mon.GLB", + "land.fVegSoilMortality.tavg-u-hxy-lnd.mon.GLB", + "land.fVegSoilSenescence.tavg-u-hxy-lnd.mon.GLB", + "land.gpp.tavg-u-hxy-ng.mon.GLB", + "land.gpp.tavg-u-hxy-shb.mon.GLB", + "land.gpp.tavg-u-hxy-tree.mon.GLB", + "land.gppLut.tavg-u-hxy-multi.mon.GLB", + "land.grassFrac.tavg-u-hxy-u.yr.GLB", + "land.grassFracC3.tavg-u-hxy-u.mon.GLB", + "land.grassFracC4.tavg-u-hxy-u.mon.GLB", + "land.hfdsl.tavg-u-hxy-lnd.3hr.GLB", + "land.hflsLut.tavg-u-hxy-multi.mon.GLB", + "land.hfssLut.tavg-u-hxy-multi.mon.GLB", + "land.irrDem.tavg-u-hxy-u.day.GLB", + "land.irrGw.tavg-u-hxy-u.day.GLB", + "land.irrLut.tavg-u-hxy-multi.mon.GLB", + "land.irrLut.tavg-u-hxy-u.day.GLB", + "land.irrSurf.tavg-u-hxy-u.day.GLB", + "land.laiLut.tavg-u-hxy-multi.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.3hr.GLB", + "land.mrros.tavg-u-hxy-lnd.3hr.GLB", + "land.mrsol.tavg-d100cm-hxy-lnd.3hr.GLB", + "land.mrsolLut.tavg-d10cm-hxy-multi.mon.GLB", + "land.nbpLut.tavg-u-hxy-multi.mon.GLB", + "land.nLeaf.tavg-u-hxy-lnd.mon.GLB", + "land.nLitterCwd.tavg-u-hxy-lnd.mon.GLB", + "land.nLitterSubSurf.tavg-u-hxy-lnd.mon.GLB", + "land.nLitterSurf.tavg-u-hxy-lnd.mon.GLB", + "land.nMineralNH4.tavg-u-hxy-lnd.mon.GLB", + "land.nMineralNO3.tavg-u-hxy-lnd.mon.GLB", + "land.nOther.tavg-u-hxy-lnd.mon.GLB", + "land.npp.tavg-u-hxy-ng.mon.GLB", + "land.npp.tavg-u-hxy-shb.mon.GLB", + "land.npp.tavg-u-hxy-tree.mon.GLB", + "land.nppLeaf.tavg-u-hxy-lnd.mon.GLB", + "land.nppLut.tavg-u-hxy-multi.mon.GLB", + "land.nppOther.tavg-u-hxy-lnd.mon.GLB", + "land.nppRoot.tavg-u-hxy-lnd.mon.GLB", + "land.nppStem.tavg-u-hxy-lnd.mon.GLB", + "land.nppVgt.tavg-u-hxy-multi.day.GLB", + "land.nRoot.tavg-u-hxy-lnd.mon.GLB", + "land.nStem.tavg-u-hxy-lnd.mon.GLB", + "land.orog.tavg-u-hxy-is.mon.ATA", + "land.orog.tavg-u-hxy-is.mon.GRL", + "land.orog.tavg-u-hxy-is.yr.ATA", + "land.orog.tavg-u-hxy-is.yr.GRL", + "land.pastureFracC3.tavg-u-hxy-u.mon.GLB", + "land.pastureFracC4.tavg-u-hxy-u.mon.GLB", + "land.qgwr.tavg-u-hxy-lnd.day.GLB", + "land.ra.tavg-u-hxy-ng.mon.GLB", + "land.ra.tavg-u-hxy-shb.mon.GLB", + "land.ra.tavg-u-hxy-tree.mon.GLB", + "land.raLeaf.tavg-u-hxy-lnd.mon.GLB", + "land.raLut.tavg-u-hxy-multi.mon.GLB", + "land.raOther.tavg-u-hxy-lnd.mon.GLB", + "land.raRoot.tavg-u-hxy-lnd.mon.GLB", + "land.raStem.tavg-u-hxy-lnd.mon.GLB", + "land.raVgt.tavg-u-hxy-multi.day.GLB", + "land.rh.tavg-u-hxy-ng.mon.GLB", + "land.rh.tavg-u-hxy-shb.mon.GLB", + "land.rh.tavg-u-hxy-tree.mon.GLB", + "land.rhLitter.tavg-u-hxy-lnd.mon.GLB", + "land.rhLut.tavg-u-hxy-multi.mon.GLB", + "land.rhSoil.tavg-u-hxy-lnd.mon.GLB", + "land.rhVgt.tavg-u-hxy-multi.day.GLB", + "land.rzwc.tavg-u-hxy-lnd.day.GLB", + "land.sftgif.tavg-u-hxy-u.yr.ATA", + "land.sftgif.tavg-u-hxy-u.yr.GRL", + "land.shrubFrac.tavg-u-hxy-u.yr.GLB", + "land.sw.tavg-u-hxy-lnd.day.GLB", + "land.sweLut.tavg-u-hxy-multi.mon.GLB", + "land.tasLut.tavg-h2m-hxy-multi.mon.GLB", + "land.tran.tavg-u-hxy-u.3hr.GLB", + "land.treeFrac.tavg-u-hxy-u.yr.GLB", + "land.treeFracBdlDcd.tavg-u-hxy-u.mon.GLB", + "land.treeFracBdlEvg.tavg-u-hxy-u.mon.GLB", + "land.treeFracNdlDcd.tavg-u-hxy-u.mon.GLB", + "land.treeFracNdlEvg.tavg-u-hxy-u.mon.GLB", + "land.tsLut.tavg-u-hxy-multi.mon.GLB", + "land.vegHeight.tavg-u-hxy-ng.mon.GLB", + "land.vegHeight.tavg-u-hxy-shb.mon.GLB", + "land.wetlandCH4cons.tavg-u-hxy-lnd.mon.GLB", + "land.wetlandCH4prod.tavg-u-hxy-lnd.mon.GLB", + "land.wetlandFrac.tavg-u-hxy-u.mon.GLB", + "landIce.acabf.tavg-u-hxy-is.mon.ATA", + "landIce.acabf.tavg-u-hxy-is.mon.GRL", + "landIce.acabf.tavg-u-hxy-is.yr.ATA", + "landIce.acabf.tavg-u-hxy-is.yr.GRL", + "landIce.agesno.tavg-u-hxy-lnd.mon.GLB", + "landIce.hfdsn.tavg-u-hxy-lnd.day.GLB", + "landIce.hfgeoubed.tavg-u-hxy-gis.yr.ATA", + "landIce.hfgeoubed.tavg-u-hxy-gis.yr.GRL", + "landIce.hfgeoubed.ti-u-hxy-gis.fx.ATA", + "landIce.iareafl.tavg-u-hm-fis.yr.ATA", + "landIce.iareafl.tavg-u-hm-fis.yr.GRL", + "landIce.iareagr.tavg-u-hm-gis.yr.ATA", + "landIce.iareagr.tavg-u-hm-gis.yr.GRL", + "landIce.icem.tavg-u-hxy-is.mon.ATA", + "landIce.icem.tavg-u-hxy-is.mon.GRL", + "landIce.libmassbf.tavg-u-hxy-fis.mon.ATA", + "landIce.libmassbf.tavg-u-hxy-fis.mon.GRL", + "landIce.libmassbf.tavg-u-hxy-fis.yr.ATA", + "landIce.libmassbf.tavg-u-hxy-fis.yr.GRL", + "landIce.libmassbf.tavg-u-hxy-gis.mon.ATA", + "landIce.libmassbf.tavg-u-hxy-gis.mon.GRL", + "landIce.libmassbf.tavg-u-hxy-gis.yr.ATA", + "landIce.libmassbf.tavg-u-hxy-gis.yr.GRL", + "landIce.licalvf.tavg-u-hxy-is.mon.ATA", + "landIce.licalvf.tavg-u-hxy-is.mon.GRL", + "landIce.licalvf.tavg-u-hxy-is.yr.ATA", + "landIce.licalvf.tavg-u-hxy-is.yr.GRL", + "landIce.lifmassbf.tavg-u-hxy-is.mon.ATA", + "landIce.lifmassbf.tavg-u-hxy-is.mon.GRL", + "landIce.lifmassbf.tavg-u-hxy-is.yr.ATA", + "landIce.lifmassbf.tavg-u-hxy-is.yr.GRL", + "landIce.lim.tavg-u-hm-is.yr.ATA", + "landIce.lim.tavg-u-hm-is.yr.GRL", + "landIce.limnsw.tavg-u-hm-is.yr.ATA", + "landIce.limnsw.tavg-u-hm-is.yr.GRL", + "landIce.litempbot.tavg-u-hxy-fis.mon.ATA", + "landIce.litempbot.tavg-u-hxy-fis.mon.GRL", + "landIce.litempbot.tavg-u-hxy-fis.yr.ATA", + "landIce.litempbot.tavg-u-hxy-fis.yr.GRL", + "landIce.litempbot.tavg-u-hxy-gis.mon.ATA", + "landIce.litempbot.tavg-u-hxy-gis.mon.GRL", + "landIce.litempbot.tavg-u-hxy-gis.yr.ATA", + "landIce.litempbot.tavg-u-hxy-gis.yr.GRL", + "landIce.litemptop.tavg-u-hxy-is.mon.ATA", + "landIce.litemptop.tavg-u-hxy-is.mon.GRL", + "landIce.litemptop.tavg-u-hxy-is.yr.ATA", + "landIce.litemptop.tavg-u-hxy-is.yr.GRL", + "landIce.lithk.tavg-u-hxy-is.yr.ATA", + "landIce.lithk.tavg-u-hxy-is.yr.GRL", + "landIce.lithk.ti-u-hxy-is.fx.ATA", + "landIce.lwsnl.tavg-u-hxy-lnd.day.GLB", + "landIce.lwsnl.tavg-u-hxy-lnd.mon.GLB", + "landIce.modelcellareai.tavg-u-hxy-u.yr.ATA", + "landIce.modelcellareai.tavg-u-hxy-u.yr.GRL", + "landIce.mrroLi.tavg-u-hxy-is.mon.ATA", + "landIce.mrroLi.tavg-u-hxy-is.mon.GRL", + "landIce.pflw.tavg-u-hxy-lnd.day.GLB", + "landIce.sbl.tavg-u-hxy-is.mon.ATA", + "landIce.sbl.tavg-u-hxy-is.mon.GRL", + "landIce.sbl.tavg-u-hxy-u.day.GLB", + "landIce.sftflf.tavg-u-hxy-u.yr.ATA", + "landIce.sftflf.tavg-u-hxy-u.yr.GRL", + "landIce.sftgrf.tavg-u-hxy-u.yr.ATA", + "landIce.sftgrf.tavg-u-hxy-u.yr.GRL", + "landIce.snc.tavg-u-hxy-is.mon.ATA", + "landIce.snc.tavg-u-hxy-is.mon.GRL", + "landIce.snc.tavg-u-hxy-is.yr.ATA", + "landIce.snc.tavg-u-hxy-is.yr.GRL", + "landIce.snc.tavg-u-hxy-lnd.day.GLB", + "landIce.snd.tavg-u-hxy-lnd.day.GLB", + "landIce.snicem.tavg-u-hxy-is.mon.ATA", + "landIce.snm.tavg-u-hxy-is.mon.ATA", + "landIce.snm.tavg-u-hxy-is.mon.GRL", + "landIce.snm.tavg-u-hxy-lnd.day.GLB", + "landIce.snrefr.tavg-u-hxy-is.mon.ATA", + "landIce.snrefr.tavg-u-hxy-is.mon.GRL", + "landIce.strbasemag.tavg-u-hxy-is.yr.ATA", + "landIce.strbasemag.tavg-u-hxy-is.yr.GRL", + "landIce.tendacabf.tavg-u-hm-is.yr.ATA", + "landIce.tendacabf.tavg-u-hm-is.yr.GRL", + "landIce.tendlibmassbf.tavg-u-hm-is.yr.ATA", + "landIce.tendlibmassbf.tavg-u-hm-is.yr.GRL", + "landIce.tendlicalvf.tavg-u-hm-is.yr.ATA", + "landIce.tendlicalvf.tavg-u-hm-is.yr.GRL", + "landIce.topg.tavg-u-hxy-gis.yr.ATA", + "landIce.topg.tavg-u-hxy-gis.yr.GRL", + "landIce.topg.ti-u-hxy-gis.fx.ATA", + "landIce.tpf.tavg-u-hxy-lnd.day.GLB", + "landIce.tsn.tavg-u-hxy-is.mon.ATA", + "landIce.tsn.tavg-u-hxy-is.mon.GRL", + "landIce.tsn.tavg-u-hxy-lnd.day.GLB", + "landIce.xvelbase.tavg-u-hxy-is.yr.ATA", + "landIce.xvelbase.tavg-u-hxy-is.yr.GRL", + "landIce.xvelmean.tavg-u-hxy-is.yr.ATA", + "landIce.xvelmean.tavg-u-hxy-is.yr.GRL", + "landIce.xvelsurf.tavg-u-hxy-is.yr.ATA", + "landIce.xvelsurf.tavg-u-hxy-is.yr.GRL", + "landIce.yvelbase.tavg-u-hxy-is.yr.ATA", + "landIce.yvelbase.tavg-u-hxy-is.yr.GRL", + "landIce.yvelmean.tavg-u-hxy-is.yr.ATA", + "landIce.yvelmean.tavg-u-hxy-is.yr.GRL", + "landIce.yvelsurf.tavg-u-hxy-is.yr.ATA", + "landIce.yvelsurf.tavg-u-hxy-is.yr.GRL", + "landIce.zvelbase.tavg-u-hxy-is.yr.ATA", + "landIce.zvelbase.tavg-u-hxy-is.yr.GRL", + "landIce.zvelsurf.tavg-u-hxy-is.yr.ATA", + "landIce.zvelsurf.tavg-u-hxy-is.yr.GRL", + "ocean.evspsbl.tavg-u-hxy-ifs.mon.GLB", + "ocean.hfacrossline.tavg-u-ht-sea.mon.GLB", + "ocean.hfevapds.tavg-u-hxy-ifs.mon.GLB", + "ocean.hfibthermds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfibthermds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfrainds.tavg-u-hxy-ifs.mon.GLB", + "ocean.hfrunoffds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfrunoffds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfsnthermds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfsnthermds.tavg-u-hxy-sea.mon.GLB", + "ocean.mfo.tavg-u-ht-sea.mon.GLB", + "ocean.sf6.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfacrossline.tavg-u-ht-sea.mon.GLB", + "ocean.sfdsi.tavg-u-hxy-sea.mon.GLB", + "ocean.sfriver.tavg-u-hxy-sea.mon.GLB", + "ocean.siflfwbot.tavg-u-hxy-sea.mon.GLB", + "ocean.so.tavg-ol-hxy-sea.day.GLB", + "ocean.t17d.tavg-u-hxy-sea.mon.GLB", + "ocean.t20d.tavg-u-hxy-sea.mon.GLB", + "ocean.tnkebto.tavg-u-hxy-sea.yr.GLB", + "ocean.vsf.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfcorr.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfevap.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfpr.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfriver.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfsit.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.arag.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.arag.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.calc.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.calc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chl.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.chlcalc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.detoc.tavg-ol-hxy-sea.day.GLB", + "ocnBgchem.dissoc.tavg-ol-hxy-sea.day.GLB", + "ocnBgchem.dmso.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.epn.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.epp.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.exparagob.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.expcalcob.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.expcob.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.expfeob.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.expnob.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.exppob.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.expsiob.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fgdms.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.frfe.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.frn.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppcalc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppdiat.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppdiaz.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppmisc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppnano.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppnitrate.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intpppico.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limfecalc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limfediat.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limfediaz.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limfemisc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limfepico.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limirrcalc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limirrdiat.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limirrdiaz.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limirrmisc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limirrpico.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limncalc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limndiat.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limndiaz.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limnmisc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limnpico.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.o2.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.o2sat.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.ph.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.pp.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.sialgc.tavg-u-hxy-si.mon.GLB", + "ocnBgchem.sichl.tavg-u-hxy-si.mon.GLB", + "ocnBgchem.sigpp.tavg-u-hxy-si.mon.GLB", + "ocnBgchem.sino3.tavg-u-hxy-si.mon.GLB", + "ocnBgchem.sisi.tavg-u-hxy-si.mon.GLB", + "seaIce.sfdsi.tavg-u-hxy-si.mon.GLB", + "seaIce.siage.tavg-u-hxy-si.mon.GLB", + "seaIce.siarea.tavg-u-hm-u.day.NH", + "seaIce.siarea.tavg-u-hm-u.day.SH", + "seaIce.sicompstren.tavg-u-hxy-si.mon.GLB", + "seaIce.sidivvel.tpt-u-hxy-si.mon.GLB", + "seaIce.sidmasstranx.tavg-u-hxy-u.mon.GLB", + "seaIce.sidmasstrany.tavg-u-hxy-u.mon.GLB", + "seaIce.sidragbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidragtop.tavg-u-hxy-si.mon.GLB", + "seaIce.siextent.tavg-u-hm-u.day.NH", + "seaIce.siextent.tavg-u-hm-u.day.SH", + "seaIce.sifb.tavg-u-hxy-si.day.GLB", + "seaIce.sifb.tavg-u-hxy-si.mon.GLB", + "seaIce.siflfwbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflfwdrain.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcecoriolx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcecorioly.tavg-u-hxy-si.mon.GLB", + "seaIce.siforceintstrx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforceintstry.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcetiltx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcetilty.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdconc.tavg-u-hxy-si.day.GLB", + "seaIce.siitdsnconc.tavg-u-hxy-si.day.GLB", + "seaIce.siitdsnthick.tavg-u-hxy-si.day.GLB", + "seaIce.siitdthick.tavg-u-hxy-si.day.GLB", + "seaIce.simpconc.tavg-u-hxy-si.day.GLB", + "seaIce.simpeffconc.tavg-u-hxy-si.day.GLB", + "seaIce.simpeffconc.tavg-u-hxy-si.mon.GLB", + "seaIce.simprefrozen.tavg-u-hxy-simp.day.GLB", + "seaIce.simprefrozen.tavg-u-hxy-simp.mon.GLB", + "seaIce.simpthick.tavg-u-hxy-si.day.GLB", + "seaIce.simpthick.tavg-u-hxy-simp.mon.GLB", + "seaIce.sirdgconc.tavg-u-hxy-si.day.GLB", + "seaIce.sisali.tavg-u-hxy-si.day.GLB", + "seaIce.sisali.tavg-u-hxy-si.mon.GLB", + "seaIce.sisaltmass.tavg-u-hxy-si.day.GLB", + "seaIce.sishearvel.tpt-u-hxy-si.mon.GLB", + "seaIce.sisnmass.tavg-u-hm-u.day.NH", + "seaIce.sisnmass.tavg-u-hm-u.day.SH", + "seaIce.sitempbot.tavg-u-hxy-si.day.GLB", + "seaIce.sitempbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sitempsnic.tavg-u-hxy-si.day.GLB", + "seaIce.sithick.tavg-u-hxy-sir.day.GLB", + "seaIce.sithick.tavg-u-hxy-sir.mon.GLB", + "seaIce.sivol.tavg-u-hm-u.day.NH", + "seaIce.sivol.tavg-u-hm-u.day.SH" + ], + "Low": [ + "aerosol.sfpm1.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.sfpm10.tavg-h2m-hxy-u.1hr.GLB", + "atmos.hurs.tmin-h2m-hxy-crp.day.GLB", + "atmos.pr.tavg-u-hxy-crp.day.GLB", + "atmos.tas.tmax-h2m-hxy-crp.day.GLB", + "atmos.tas.tmin-h2m-hxy-crp.day.GLB", + "atmosChem.drynh3.tavg-u-hxy-u.day.GLB", + "atmosChem.drynh4.tavg-u-hxy-u.day.GLB", + "atmosChem.drynoy.tavg-u-hxy-u.day.GLB", + "atmosChem.flashrate.tavg-u-hxy-u.mon.GLB", + "atmosChem.wetnh3.tavg-u-hxy-u.day.GLB", + "atmosChem.wetnh4.tavg-u-hxy-u.day.GLB", + "atmosChem.wetnoy.tavg-u-hxy-u.day.GLB", + "land.c13Land.tavg-u-hxy-lnd.mon.GLB", + "land.c13Litter.tavg-u-hxy-lnd.mon.GLB", + "land.c13Soil.tavg-u-hxy-lnd.mon.GLB", + "land.c13Veg.tavg-u-hxy-lnd.mon.GLB", + "land.c14Land.tavg-u-hxy-lnd.mon.GLB", + "land.c14Litter.tavg-u-hxy-lnd.mon.GLB", + "land.c14Soil.tavg-u-hxy-lnd.mon.GLB", + "land.c14Veg.tavg-u-hxy-lnd.mon.GLB", + "land.c3PftFrac.tavg-u-hxy-u.mon.GLB", + "land.c4PftFrac.tavg-u-hxy-u.mon.GLB", + "land.gppc13.tavg-u-hxy-lnd.mon.GLB", + "land.gppc14.tavg-u-hxy-lnd.mon.GLB", + "land.lai.tavg-u-hxy-lnd.day.GLB", + "land.netAtmosLandC13Flux.tavg-u-hxy-lnd.mon.GLB", + "land.netAtmosLandC14Flux.tavg-u-hxy-lnd.mon.GLB", + "land.rac13.tavg-u-hxy-lnd.mon.GLB", + "land.rac14.tavg-u-hxy-lnd.mon.GLB", + "land.rhc13.tavg-u-hxy-lnd.mon.GLB", + "land.rhc14.tavg-u-hxy-lnd.mon.GLB", + "ocean.difmxybo.tavg-ol-hxy-sea.yr.GLB", + "ocean.difmxylo.tavg-ol-hxy-sea.yr.GLB", + "ocean.diftrblo.tavg-ol-hxy-sea.yr.GLB", + "ocean.diftrelo.tavg-ol-hxy-sea.yr.GLB", + "ocean.difvho.tavg-ol-hxy-sea.yr.GLB", + "ocean.difvso.tavg-ol-hxy-sea.yr.GLB", + "ocean.dispkexyfo.tavg-u-hxy-sea.yr.GLB", + "ocean.dxto.ti-u-hxy-u.fx.GLB", + "ocean.dxuo.ti-u-hxy-u.fx.GLB", + "ocean.dxvo.ti-u-hxy-u.fx.GLB", + "ocean.dyto.ti-u-hxy-u.fx.GLB", + "ocean.dyuo.ti-u-hxy-u.fx.GLB", + "ocean.dyvo.ti-u-hxy-u.fx.GLB", + "ocean.mlotstsq.tavg-u-hxy-sea.mon.GLB", + "ocean.msftmmpa.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftmmpa.tavg-rho-hyb-sea.mon.GLB", + "ocean.msftmsmpa.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftypa.tavg-ol-ht-sea.mon.GLB", + "ocean.msftypa.tavg-rho-ht-sea.mon.GLB", + "ocean.ocontempdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontempmint.tavg-u-hxy-sea.yr.GLB", + "ocean.ocontemppadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemppmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemppsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemprmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemptend.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottempdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottempmint.tavg-u-hxy-sea.yr.GLB", + "ocean.opottemppadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemppmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemppsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemprmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemptend.tavg-ol-hxy-sea.dec.GLB", + "ocean.osaltdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpsmadvect.tavg-ol-hxy-sea.mon.GLB", + "ocean.osaltpsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltrmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osalttend.tavg-ol-hxy-sea.yr.GLB", + "ocean.rsdo.tavg-ol-hxy-sea.day.GLB", + "ocean.rsdoabsorb.tavg-ol-hxy-sea.yr.GLB", + "ocean.somint.tavg-u-hxy-sea.yr.GLB", + "ocean.sossq.tavg-u-hxy-sea.mon.GLB", + "ocean.thkcelluo.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcellvo.tavg-ol-hxy-sea.mon.GLB", + "ocean.tnpeo.tavg-u-hxy-sea.yr.GLB", + "ocean.tossq.tavg-u-hxy-sea.mon.GLB", + "ocean.wo.tavg-ol-hxy-sea.day.GLB", + "ocnBgchem.dissi13c.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.dissi13c.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissi14c.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissi14cabio.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.dissi14cabio.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.expcob.tavg-u-hxy-sea.day.GLB", + "ocnBgchem.fg13co2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fg14co2abio.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intpoc.tavg-u-hxy-sea.day.GLB", + "ocnBgchem.o2.tavg-d0m-hxy-sea.day.GLB", + "ocnBgchem.o2min.tavg-u-hxy-sea.day.GLB", + "ocnBgchem.phyc.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.phycalc.tavg-ol-hxy-sea.day.GLB", + "ocnBgchem.phydiat.tavg-d0m-hxy-sea.day.GLB", + "ocnBgchem.phydiaz.tavg-d0m-hxy-sea.day.GLB", + "ocnBgchem.phymisc.tavg-d0m-hxy-sea.day.GLB", + "ocnBgchem.phynano.tavg-u-hxy-sea.day.GLB", + "ocnBgchem.phypico.tavg-ol-hxy-sea.day.GLB", + "ocnBgchem.zmeso.tavg-ol-hxy-sea.day.GLB", + "ocnBgchem.zmicro.tavg-ol-hxy-sea.day.GLB", + "ocnBgchem.zooc.tavg-ol-hxy-sea.day.GLB" + ] + }, + "scenariomip8": { + "Core": [ + "atmos.areacella.ti-u-hxy-u.fx.GLB", + "atmos.cl.tavg-al-hxy-u.mon.GLB", + "atmos.cli.tavg-al-hxy-u.mon.GLB", + "atmos.clivi.tavg-u-hxy-u.mon.GLB", + "atmos.clt.tavg-u-hxy-u.day.GLB", + "atmos.clt.tavg-u-hxy-u.mon.GLB", + "atmos.clw.tavg-al-hxy-u.mon.GLB", + "atmos.clwvi.tavg-u-hxy-u.mon.GLB", + "atmos.evspsbl.tavg-u-hxy-u.mon.GLB", + "atmos.hfls.tavg-u-hxy-u.mon.GLB", + "atmos.hfss.tavg-u-hxy-u.mon.GLB", + "atmos.hur.tavg-p19-hxy-air.mon.GLB", + "atmos.hur.tavg-p19-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.6hr.GLB", + "atmos.hurs.tavg-h2m-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.mon.GLB", + "atmos.hus.tavg-p19-hxy-u.day.GLB", + "atmos.hus.tavg-p19-hxy-u.mon.GLB", + "atmos.huss.tavg-h2m-hxy-u.day.GLB", + "atmos.huss.tavg-h2m-hxy-u.mon.GLB", + "atmos.huss.tpt-h2m-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.1hr.GLB", + "atmos.pr.tavg-u-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.day.GLB", + "atmos.pr.tavg-u-hxy-u.mon.GLB", + "atmos.prc.tavg-u-hxy-u.mon.GLB", + "atmos.prsn.tavg-u-hxy-u.mon.GLB", + "atmos.prw.tavg-u-hxy-u.mon.GLB", + "atmos.ps.tavg-u-hxy-u.day.GLB", + "atmos.ps.tavg-u-hxy-u.mon.GLB", + "atmos.psl.tavg-u-hxy-u.day.GLB", + "atmos.psl.tavg-u-hxy-u.mon.GLB", + "atmos.rlds.tavg-u-hxy-u.mon.GLB", + "atmos.rldscs.tavg-u-hxy-u.mon.GLB", + "atmos.rlus.tavg-u-hxy-u.mon.GLB", + "atmos.rluscs.tavg-u-hxy-u.mon.GLB", + "atmos.rlut.tavg-u-hxy-u.mon.GLB", + "atmos.rlutcs.tavg-u-hxy-u.mon.GLB", + "atmos.rsds.tavg-u-hxy-u.day.GLB", + "atmos.rsds.tavg-u-hxy-u.mon.GLB", + "atmos.rsdscs.tavg-u-hxy-u.mon.GLB", + "atmos.rsdt.tavg-u-hxy-u.mon.GLB", + "atmos.rsus.tavg-u-hxy-u.mon.GLB", + "atmos.rsuscs.tavg-u-hxy-u.mon.GLB", + "atmos.rsut.tavg-u-hxy-u.mon.GLB", + "atmos.rsutcs.tavg-u-hxy-u.mon.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.day.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.mon.GLB", + "atmos.sftlf.ti-u-hxy-u.fx.GLB", + "atmos.ta.tavg-p19-hxy-air.day.GLB", + "atmos.ta.tavg-p19-hxy-air.mon.GLB", + "atmos.ta.tpt-p3-hxy-air.6hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.day.GLB", + "atmos.tas.tavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tmax-h2m-hxy-u.day.GLB", + "atmos.tas.tmaxavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tmin-h2m-hxy-u.day.GLB", + "atmos.tas.tminavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tpt-h2m-hxy-u.3hr.GLB", + "atmos.tauu.tavg-u-hxy-u.mon.GLB", + "atmos.tauv.tavg-u-hxy-u.mon.GLB", + "atmos.ts.tavg-u-hxy-u.mon.GLB", + "atmos.ua.tavg-p19-hxy-air.day.GLB", + "atmos.ua.tavg-p19-hxy-air.mon.GLB", + "atmos.ua.tpt-p3-hxy-air.6hr.GLB", + "atmos.uas.tavg-h10m-hxy-u.day.GLB", + "atmos.uas.tavg-h10m-hxy-u.mon.GLB", + "atmos.uas.tpt-h10m-hxy-u.3hr.GLB", + "atmos.va.tavg-p19-hxy-air.day.GLB", + "atmos.va.tavg-p19-hxy-air.mon.GLB", + "atmos.va.tpt-p3-hxy-air.6hr.GLB", + "atmos.vas.tavg-h10m-hxy-u.day.GLB", + "atmos.vas.tavg-h10m-hxy-u.mon.GLB", + "atmos.vas.tpt-h10m-hxy-u.3hr.GLB", + "atmos.wap.tavg-p19-hxy-air.mon.GLB", + "atmos.wap.tavg-p19-hxy-u.day.GLB", + "atmos.zg.tavg-p19-hxy-air.day.GLB", + "atmos.zg.tavg-p19-hxy-air.mon.GLB", + "land.evspsblsoi.tavg-u-hxy-lnd.mon.GLB", + "land.evspsblveg.tavg-u-hxy-lnd.mon.GLB", + "land.lai.tavg-u-hxy-lnd.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.mon.GLB", + "land.mrros.tavg-u-hxy-lnd.mon.GLB", + "land.mrso.tavg-u-hxy-lnd.mon.GLB", + "land.mrsofc.ti-u-hxy-lnd.fx.GLB", + "land.mrsol.tavg-d10cm-hxy-lnd.mon.GLB", + "land.orog.ti-u-hxy-u.fx.GLB", + "land.rootd.ti-u-hxy-lnd.fx.GLB", + "land.sftgif.ti-u-hxy-u.fx.GLB", + "land.slthick.ti-sl-hxy-lnd.fx.GLB", + "landIce.mrfso.tavg-u-hxy-lnd.mon.GLB", + "landIce.snc.tavg-u-hxy-lnd.mon.GLB", + "landIce.snw.tavg-u-hxy-lnd.mon.GLB", + "ocean.areacello.ti-u-hxy-u.fx.GLB", + "ocean.basin.ti-u-hxy-u.fx.GLB", + "ocean.bigthetao.tavg-ol-hxy-sea.mon.GLB", + "ocean.deptho.ti-u-hxy-sea.fx.GLB", + "ocean.hfds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfgeou.ti-u-hxy-sea.fx.GLB", + "ocean.masscello.tavg-ol-hxy-sea.mon.GLB", + "ocean.masscello.ti-ol-hxy-sea.fx.GLB", + "ocean.mlotst.tavg-u-hxy-sea.mon.GLB", + "ocean.sftof.ti-u-hxy-u.fx.GLB", + "ocean.so.tavg-ol-hxy-sea.mon.GLB", + "ocean.sos.tavg-u-hxy-sea.day.GLB", + "ocean.sos.tavg-u-hxy-sea.mon.GLB", + "ocean.tauuo.tavg-u-hxy-sea.mon.GLB", + "ocean.tauvo.tavg-u-hxy-sea.mon.GLB", + "ocean.thetao.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcello.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcello.ti-ol-hxy-sea.fx.GLB", + "ocean.tos.tavg-u-hxy-sea.day.GLB", + "ocean.tos.tavg-u-hxy-sea.mon.GLB", + "ocean.umo.tavg-ol-hxy-sea.mon.GLB", + "ocean.uo.tavg-ol-hxy-sea.mon.GLB", + "ocean.vmo.tavg-ol-hxy-sea.mon.GLB", + "ocean.vo.tavg-ol-hxy-sea.mon.GLB", + "ocean.wmo.tavg-ol-hxy-sea.mon.GLB", + "ocean.wo.tavg-ol-hxy-sea.mon.GLB", + "ocean.zos.tavg-u-hxy-sea.day.GLB", + "ocean.zos.tavg-u-hxy-sea.mon.GLB", + "ocean.zostoga.tavg-u-hm-sea.mon.GLB", + "seaIce.siconc.tavg-u-hxy-u.day.GLB", + "seaIce.siconc.tavg-u-hxy-u.mon.GLB", + "seaIce.simass.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-si.mon.GLB", + "seaIce.sitimefrac.tavg-u-hxy-sea.mon.GLB", + "seaIce.siu.tavg-u-hxy-si.mon.GLB", + "seaIce.siv.tavg-u-hxy-si.mon.GLB", + "seaIce.snd.tavg-u-hxy-sn.mon.GLB", + "seaIce.ts.tavg-u-hxy-si.mon.GLB" + ], + "High": [ + "aerosol.abs550aer.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550bc.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550dust.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550no3.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550oa.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550so4.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550ss.tavg-u-hxy-u.mon.GLB", + "aerosol.airmass.tavg-al-hxy-u.mon.GLB", + "aerosol.aoanh.tavg-al-hxy-u.mon.NH", + "aerosol.bry.tavg-p39-hy-air.mon.GLB", + "aerosol.bs550aer.tpt-al-hxy-u.6hr.GLB", + "aerosol.c2h6.tavg-al-hxy-u.mon.GLB", + "aerosol.c3h6.tavg-al-hxy-u.mon.GLB", + "aerosol.c3h8.tavg-al-hxy-u.mon.GLB", + "aerosol.ccldncl.tavg-u-hxy-ccl.mon.GLB", + "aerosol.ccn.tavg-u-hxy-ccl.mon.30S-90S", + "aerosol.ccn.tavg-u-hxy-ccl.mon.GLB", + "aerosol.ccn1.tavg-al-hxy-u.mon.30S-90S", + "aerosol.ccn1.tavg-al-hxy-u.mon.GLB", + "aerosol.ccnp02.tavg-al-hxy-u.mon.30S-90S", + "aerosol.ccnp02.tavg-al-hxy-u.mon.GLB", + "aerosol.cdnc.tavg-al-hxy-u.mon.30S-90S", + "aerosol.cdnc.tavg-al-hxy-u.mon.GLB", + "aerosol.cfc114.tavg-al-hxy-u.mon.GLB", + "aerosol.ch3coch3.tavg-al-hxy-u.mon.GLB", + "aerosol.cheaqpso4.tavg-al-hxy-u.mon.GLB", + "aerosol.chegpso4.tavg-al-hxy-u.mon.GLB", + "aerosol.chepasoa.tavg-u-hxy-u.mon.GLB", + "aerosol.chepsoa.tavg-u-hxy-u.mon.GLB", + "aerosol.cly.tavg-p39-hy-air.mon.GLB", + "aerosol.co.tavg-al-hxy-u.mon.GLB", + "aerosol.co.tavg-h2m-hxy-u.day.GLB", + "aerosol.cod.tavg-u-hxy-u.day.GLB", + "aerosol.cod.tavg-u-hxy-u.mon.30S-90S", + "aerosol.cod.tavg-u-hxy-u.mon.GLB", + "aerosol.conccn.tavg-al-hxy-u.mon.GLB", + "aerosol.conccn.tpt-u-hs-u.3hr.GLB", + "aerosol.depdust.tavg-u-hxy-u.mon.GLB", + "aerosol.drybc.tavg-u-hxy-u.mon.GLB", + "aerosol.drydust.tavg-u-hxy-u.mon.GLB", + "aerosol.dryno3.tavg-u-hxy-u.mon.GLB", + "aerosol.dryo3.tavg-u-hxy-u.mon.GLB", + "aerosol.dryoa.tavg-u-hxy-u.mon.GLB", + "aerosol.dryso2.tavg-u-hxy-u.mon.GLB", + "aerosol.dryso4.tavg-u-hxy-u.mon.GLB", + "aerosol.dryss.tavg-u-hxy-u.mon.GLB", + "aerosol.ec550aer.tavg-al-hxy-u.mon.GLB", + "aerosol.ec550aer.tpt-u-hxy-u.6hr.GLB", + "aerosol.emiaco.tavg-u-hxy-u.mon.GLB", + "aerosol.emianox.tavg-u-hxy-u.mon.GLB", + "aerosol.emiaoa.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbbc.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbch4.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbco.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbdms.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbnh3.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbnox.tavg-u-hxy-u.mon.GLB", + "aerosol.emibboa.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbso2.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbvoc.tavg-u-hxy-u.mon.GLB", + "aerosol.emibc.tavg-u-hxy-u.mon.GLB", + "aerosol.emibvoc.tavg-u-hxy-u.mon.GLB", + "aerosol.emico.tavg-u-hxy-u.mon.GLB", + "aerosol.emidms.tavg-u-hxy-u.mon.30S-90S", + "aerosol.emidms.tavg-u-hxy-u.mon.GLB", + "aerosol.emidust.tavg-u-hxy-u.mon.GLB", + "aerosol.emiisop.tavg-u-hxy-u.mon.GLB", + "aerosol.emilnox.tavg-al-hxy-u.mon.GLB", + "aerosol.eminh3.tavg-u-hxy-u.mon.GLB", + "aerosol.eminox.tavg-u-hxy-u.mon.GLB", + "aerosol.emioa.tavg-u-hxy-u.mon.GLB", + "aerosol.emiso2.tavg-u-hxy-u.mon.GLB", + "aerosol.emiso4.tavg-u-hxy-u.mon.GLB", + "aerosol.emiss.tavg-u-hxy-u.mon.30S-90S", + "aerosol.emiss.tavg-u-hxy-u.mon.GLB", + "aerosol.emivoc.tavg-u-hxy-u.mon.GLB", + "aerosol.h2o.tavg-al-hxy-u.mon.GLB", + "aerosol.h2o.tavg-p39-hy-air.mon.GLB", + "aerosol.hcfc22.tavg-al-hxy-u.mon.GLB", + "aerosol.hcho.tavg-al-hxy-u.mon.GLB", + "aerosol.hcl.tavg-al-hxy-u.mon.GLB", + "aerosol.hcl.tavg-p39-hy-air.mon.GLB", + "aerosol.hfc125.tavg-al-hxy-u.mon.GLB", + "aerosol.hfc134a.tavg-al-hxy-u.mon.GLB", + "aerosol.hno3.tavg-al-hxy-u.mon.GLB", + "aerosol.hno3.tavg-p39-hy-air.mon.GLB", + "aerosol.ho2.tavg-p39-hy-air.mon.GLB", + "aerosol.isop.tavg-al-hxy-u.mon.GLB", + "aerosol.jno2.tavg-al-hxy-u.mon.GLB", + "aerosol.lossch4.tavg-al-hxy-u.mon.GLB", + "aerosol.lossco.tavg-al-hxy-u.mon.GLB", + "aerosol.lossn2o.tavg-al-hxy-u.mon.GLB", + "aerosol.lwp.tavg-u-hxy-u.mon.GLB", + "aerosol.mmraerh2o.tavg-al-hxy-u.mon.GLB", + "aerosol.mmraerh2o.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmraerh2o.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrbc.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrbc.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrbc.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrbc.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrdust.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrdust.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrdust.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrdust.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrnh4.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrnh4.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrnh4.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrnh4.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrno3.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrno3.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrno3.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrno3.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmroa.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmroa.tavg-al-hxy-u.mon.GLB", + "aerosol.mmroa.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmroa.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrpm1.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrpm1.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrpm2p5.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrpm2p5.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrso4.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrso4.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrso4.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrso4.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrsoa.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrsoa.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrsoa.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrss.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrss.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrss.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrss.tpt-h2m-hs-u.3hr.GLB", + "aerosol.nh50.tavg-al-hxy-u.mon.GLB", + "aerosol.no.tavg-al-hxy-u.mon.GLB", + "aerosol.no2.tavg-al-hxy-u.mon.GLB", + "aerosol.no2.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.noy.tavg-p39-hy-air.mon.GLB", + "aerosol.o3.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.o3.tmax-h2m-hxy-u.day.GLB", + "aerosol.o3loss.tavg-al-hxy-u.mon.GLB", + "aerosol.o3prod.tavg-al-hxy-u.mon.GLB", + "aerosol.od443aer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550aer.tavg-u-hxy-u.day.GLB", + "aerosol.od550aer.tavg-u-hxy-u.mon.30S-90S", + "aerosol.od550aer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550aerh2o.tavg-u-hxy-u.mon.GLB", + "aerosol.od550bb.tavg-u-hxy-u.mon.GLB", + "aerosol.od550bc.tavg-u-hxy-u.mon.GLB", + "aerosol.od550csaer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550dust.tavg-u-hxy-u.mon.GLB", + "aerosol.od550lt1aer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550no3.tavg-u-hxy-u.mon.GLB", + "aerosol.od550oa.tavg-u-hxy-u.mon.GLB", + "aerosol.od550so4.tavg-u-hxy-u.mon.GLB", + "aerosol.od550soa.tavg-u-hxy-u.mon.GLB", + "aerosol.od550ss.tavg-u-hxy-u.mon.GLB", + "aerosol.od865aer.tavg-u-hxy-u.mon.GLB", + "aerosol.oh.tavg-al-hxy-u.mon.GLB", + "aerosol.oh.tavg-p39-hy-air.mon.GLB", + "aerosol.pan.tavg-al-hxy-u.mon.GLB", + "aerosol.photo1d.tavg-al-hxy-u.mon.GLB", + "aerosol.pod0.tsum-u-hxy-u.mon.GLB", + "aerosol.reffccwctop.tavg-u-hxy-cl.mon.GLB", + "aerosol.reffclwtop.tavg-u-hxy-cl.mon.30S-90S", + "aerosol.reffclwtop.tavg-u-hxy-cl.mon.GLB", + "aerosol.rluscsaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rlutaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rlutcsaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rsutaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rsutcsaf.tavg-u-hxy-u.mon.GLB", + "aerosol.sfpm1.tavg-h2m-hxy-u.day.GLB", + "aerosol.sfpm10.tavg-al-hxy-u.mon.30S-90S", + "aerosol.sfpm10.tavg-al-hxy-u.mon.GLB", + "aerosol.sfpm10.tavg-h2m-hxy-u.day.GLB", + "aerosol.sfpm25.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.sfpm25.tavg-h2m-hxy-u.day.GLB", + "aerosol.so2.tavg-al-hxy-u.mon.30S-90S", + "aerosol.so2.tavg-al-hxy-u.mon.GLB", + "aerosol.so2.tavg-h2m-hxy-u.day.GLB", + "aerosol.so2.tpt-h2m-hs-u.3hr.GLB", + "aerosol.tatp.tavg-u-hxy-u.mon.GLB", + "aerosol.toz.tavg-u-hxy-u.day.GLB", + "aerosol.toz.tavg-u-hxy-u.mon.GLB", + "aerosol.tropoz.tavg-u-hxy-u.mon.GLB", + "aerosol.ttop.tavg-u-hxy-cl.mon.GLB", + "aerosol.ua.tavg-10hPa-hxy-air.day.GLB", + "aerosol.vt100.tavg-100hPa-hy-air.mon.GLB", + "aerosol.wa.tavg-al-hxy-u.mon.GLB", + "aerosol.wetbc.tavg-u-hxy-u.mon.GLB", + "aerosol.wetdust.tavg-u-hxy-u.mon.GLB", + "aerosol.wetoa.tavg-u-hxy-u.mon.GLB", + "aerosol.wetso2.tavg-u-hxy-u.mon.GLB", + "aerosol.wetso4.tavg-u-hxy-u.mon.GLB", + "aerosol.wetss.tavg-u-hxy-u.mon.GLB", + "aerosol.zg.tavg-10hPa-hxy-air.day.GLB", + "atmos.albisccp.tavg-u-hxy-cl.mon.30S-90S", + "atmos.bldep.tavg-u-hxy-u.mon.GLB", + "atmos.bldep.tmax-u-hxy-u.day.GLB", + "atmos.bldep.tmin-u-hxy-u.day.GLB", + "atmos.bldep.tpt-u-hxy-u.3hr.GLB", + "atmos.cl.tavg-al-hxy-u.day.GLB", + "atmos.cl.tavg-al-hxy-u.mon.30S-90S", + "atmos.clc.tavg-al-hxy-u.mon.30S-90S", + "atmos.clc.tavg-al-hxy-u.mon.GLB", + "atmos.clcalipso.tavg-220hPa-hxy-air.mon.30S-90S", + "atmos.clcalipso.tavg-220hPa-hxy-air.mon.GLB", + "atmos.clcalipso.tavg-560hPa-hxy-air.mon.30S-90S", + "atmos.clcalipso.tavg-560hPa-hxy-air.mon.GLB", + "atmos.clcalipso.tavg-840hPa-hxy-air.mon.30S-90S", + "atmos.clcalipso.tavg-840hPa-hxy-air.mon.GLB", + "atmos.clcalipso.tavg-h40-hxy-air.mon.30S-90S", + "atmos.clcalipso.tavg-h40-hxy-air.mon.GLB", + "atmos.cldnci.tavg-u-hxy-cl.mon.GLB", + "atmos.cldncl.tavg-u-hxy-cl.mon.GLB", + "atmos.cldnvi.tavg-u-hxy-u.day.GLB", + "atmos.cldnvi.tavg-u-hxy-u.mon.GLB", + "atmos.cli.tavg-al-hxy-u.day.GLB", + "atmos.cli.tavg-al-hxy-u.mon.30S-90S", + "atmos.clic.tavg-al-hxy-u.mon.30S-90S", + "atmos.clis.tavg-al-hxy-u.mon.30S-90S", + "atmos.clisccp.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clisccp.tavg-p7c-hxy-air.mon.GLB", + "atmos.clivi.tavg-u-hxy-u.3hr.GLB", + "atmos.clivi.tavg-u-hxy-u.day.GLB", + "atmos.clivi.tavg-u-hxy-u.mon.30S-90S", + "atmos.clivimodis.tavg-u-hxy-u.mon.30S-90S", + "atmos.clivimodis.tavg-u-hxy-u.mon.GLB", + "atmos.clmodis.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clmodis.tavg-p7c-hxy-air.mon.GLB", + "atmos.clmodisice.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clmodisice.tavg-p7c-hxy-air.mon.GLB", + "atmos.clmodisiceReff.tavg-u-hxy-u.mon.GLB", + "atmos.clmodisliquid.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clmodisliquid.tavg-p7c-hxy-air.mon.GLB", + "atmos.clmodisliquidReff.tavg-u-hxy-u.mon.GLB", + "atmos.cls.tavg-al-hxy-u.mon.30S-90S", + "atmos.clt.tavg-u-hxy-lnd.day.GLB", + "atmos.clt.tavg-u-hxy-u.1hr.30S-90S", + "atmos.clt.tavg-u-hxy-u.3hr.GLB", + "atmos.clt.tavg-u-hxy-u.mon.30S-90S", + "atmos.cltc.tavg-u-hxy-u.mon.GLB", + "atmos.cltcalipso.tavg-u-hxy-u.day.GLB", + "atmos.cltcalipso.tavg-u-hxy-u.mon.30S-90S", + "atmos.cltcalipso.tavg-u-hxy-u.mon.GLB", + "atmos.cltcalipso.tpt-u-hxy-u.3hr.GLB", + "atmos.cltisccp.tavg-u-hxy-u.day.GLB", + "atmos.cltisccp.tavg-u-hxy-u.mon.30S-90S", + "atmos.cltisccp.tavg-u-hxy-u.mon.GLB", + "atmos.cltmodis.tavg-u-hxy-u.mon.30S-90S", + "atmos.cltmodis.tavg-u-hxy-u.mon.GLB", + "atmos.clw.tavg-al-hxy-u.day.GLB", + "atmos.clw.tavg-al-hxy-u.mon.30S-90S", + "atmos.clwc.tavg-al-hxy-u.mon.30S-90S", + "atmos.clws.tavg-al-hxy-u.mon.30S-90S", + "atmos.clwvi.tavg-u-hxy-u.3hr.GLB", + "atmos.clwvi.tavg-u-hxy-u.day.GLB", + "atmos.clwvi.tavg-u-hxy-u.mon.30S-90S", + "atmos.clwvimodis.tavg-u-hxy-u.mon.30S-90S", + "atmos.clwvimodis.tavg-u-hxy-u.mon.GLB", + "atmos.co2.tavg-al-hxy-u.mon.GLB", + "atmos.co2.tavg-h2m-hxy-u.mon.GLB", + "atmos.co2.tavg-p19-hxy-air.mon.GLB", + "atmos.co2.tclm-p19-hxy-air.mon.GLB", + "atmos.co2.tclm-u-hm-u.mon.GLB", + "atmos.co23D.tavg-al-hxy-u.mon.GLB", + "atmos.co2mass.tavg-u-hm-u.mon.GLB", + "atmos.dmc.tavg-alh-hxy-u.mon.30S-90S", + "atmos.edt.tavg-al-hxy-u.mon.30S-90S", + "atmos.epfy.tavg-p39-hy-air.day.GLB", + "atmos.epfy.tavg-p39-hy-air.mon.GLB", + "atmos.epfz.tavg-p39-hy-air.day.GLB", + "atmos.epfz.tavg-p39-hy-air.mon.GLB", + "atmos.evspsbl.tavg-u-hxy-lnd.day.GLB", + "atmos.evu.tavg-al-hxy-u.mon.30S-90S", + "atmos.fco2antt.tavg-u-hxy-u.mon.GLB", + "atmos.fco2fos.tavg-u-hxy-u.mon.GLB", + "atmos.fco2nat.tavg-u-hxy-u.mon.GLB", + "atmos.hfls.tavg-u-hxy-is.mon.GRL", + "atmos.hfls.tavg-u-hxy-u.3hr.GLB", + "atmos.hfls.tavg-u-hxy-u.day.GLB", + "atmos.hfls.tavg-u-hxy-u.mon.30S-90S", + "atmos.hfss.tavg-u-hxy-u.3hr.GLB", + "atmos.hfss.tavg-u-hxy-u.day.GLB", + "atmos.hfss.tavg-u-hxy-u.mon.30S-90S", + "atmos.hur.tavg-al-hxy-u.mon.30S-90S", + "atmos.hur.tavg-al-hxy-u.mon.GLB", + "atmos.hur.tavg-p19-hxy-air.mon.30S-90S", + "atmos.hurs.tavg-h2m-hxy-u.1hr.30S-90S", + "atmos.hurs.tavg-h2m-hxy-u.mon.30S-90S", + "atmos.hurs.tmax-h2m-hxy-u.day.GLB", + "atmos.hurs.tmin-h2m-hxy-u.day.GLB", + "atmos.hurs.tpt-h2m-hxy-u.3hr.GLB", + "atmos.hus.tavg-al-hxy-u.mon.30S-90S", + "atmos.hus.tavg-al-hxy-u.mon.GLB", + "atmos.hus.tavg-p19-hxy-u.mon.30S-90S", + "atmos.hus.tpt-al-hxy-u.6hr.GLB", + "atmos.hus.tpt-p7h-hxy-air.6hr.GLB", + "atmos.huss.tavg-h2m-hxy-u.6hr.GLB", + "atmos.huss.tavg-h2m-hxy-u.mon.30S-90S", + "atmos.huss.tpt-h2m-hxy-u.1hr.GLB", + "atmos.intuadse.tavg-u-hxy-u.day.GLB", + "atmos.intuadse.tavg-u-hxy-u.mon.GLB", + "atmos.intuaw.tavg-u-hxy-u.day.GLB", + "atmos.intuaw.tavg-u-hxy-u.mon.GLB", + "atmos.intuaw.tpt-u-hxy-u.6hr.GLB", + "atmos.intvadse.tavg-u-hxy-u.day.GLB", + "atmos.intvadse.tavg-u-hxy-u.mon.GLB", + "atmos.intvaw.tavg-u-hxy-u.day.GLB", + "atmos.intvaw.tavg-u-hxy-u.mon.GLB", + "atmos.intvaw.tpt-u-hxy-u.6hr.GLB", + "atmos.loadbc.tavg-u-hxy-u.day.GLB", + "atmos.loadoa.tavg-u-hxy-u.day.GLB", + "atmos.loadpoa.tavg-u-hxy-u.day.GLB", + "atmos.mc.tavg-alh-hxy-u.mon.GLB", + "atmos.mcd.tavg-alh-hxy-u.mon.30S-90S", + "atmos.mcu.tavg-alh-hxy-u.mon.30S-90S", + "atmos.mcu.tavg-alh-hxy-u.mon.GLB", + "atmos.pctisccp.tavg-u-hxy-cl.day.GLB", + "atmos.pctisccp.tavg-u-hxy-cl.mon.30S-90S", + "atmos.pctisccp.tavg-u-hxy-cl.mon.GLB", + "atmos.pfull.tavg-al-hxy-u.day.GLB", + "atmos.pfull.tavg-al-hxy-u.mon.GLB", + "atmos.pfull.tclm-al-hxy-u.mon.30S-90S", + "atmos.phalf.tavg-alh-hxy-u.mon.GLB", + "atmos.pr.tavg-u-hxy-u.1hr.30S-90S", + "atmos.pr.tavg-u-hxy-u.mon.30S-90S", + "atmos.pr.tmax-u-hxy-u.day.GLB", + "atmos.pr.tmax-u-hxy-u.mon.GLB", + "atmos.pr.tpt-u-hxy-u.6hr.GLB", + "atmos.pr17O.tavg-u-hxy-u.mon.GLB", + "atmos.pr18O.tavg-u-hxy-u.mon.GLB", + "atmos.pr2h.tavg-u-hxy-u.mon.GLB", + "atmos.prc.tavg-u-hxy-u.day.GLB", + "atmos.prc.tavg-u-hxy-u.mon.30S-90S", + "atmos.prra.tavg-u-hxy-is.mon.GRL", + "atmos.prra.tavg-u-hxy-lnd.day.GLB", + "atmos.prra.tavg-u-hxy-u.6hr.GLB", + "atmos.prra.tavg-u-hxy-u.mon.30S-90S", + "atmos.prra.tavg-u-hxy-u.mon.GLB", + "atmos.prsn.tavg-u-hxy-is.mon.GRL", + "atmos.prsn.tavg-u-hxy-u.3hr.GLB", + "atmos.prsn.tavg-u-hxy-u.6hr.GLB", + "atmos.prsn.tavg-u-hxy-u.day.GLB", + "atmos.prsn.tavg-u-hxy-u.mon.30S-90S", + "atmos.prsn18O.tavg-u-hxy-u.mon.GLB", + "atmos.prsn2h.tavg-u-hxy-u.mon.GLB", + "atmos.prw.tavg-u-hxy-u.3hr.GLB", + "atmos.prw.tavg-u-hxy-u.day.GLB", + "atmos.prw.tavg-u-hxy-u.mon.30S-90S", + "atmos.prw.tpt-u-hxy-u.6hr.GLB", + "atmos.ps.tavg-u-hxy-u.1hr.GLB", + "atmos.ps.tavg-u-hxy-u.6hr.GLB", + "atmos.ps.tavg-u-hxy-u.mon.30S-90S", + "atmos.ps.tpt-u-hxy-u.1hr.30S-90S", + "atmos.ps.tpt-u-hxy-u.3hr.GLB", + "atmos.ps.tpt-u-hxy-u.6hr.GLB", + "atmos.psl.tavg-u-hxy-u.mon.30S-90S", + "atmos.psl.tpt-u-hxy-u.1hr.GLB", + "atmos.psl.tpt-u-hxy-u.6hr.GLB", + "atmos.ptp.tavg-u-hxy-u.mon.GLB", + "atmos.reffcclwtop.tavg-u-hxy-ccl.mon.GLB", + "atmos.reffclic.tavg-al-hxy-ccl.mon.30S-90S", + "atmos.reffclic.tavg-al-hxy-ccl.mon.GLB", + "atmos.reffclis.tavg-al-hxy-scl.mon.30S-90S", + "atmos.reffclis.tavg-al-hxy-scl.mon.GLB", + "atmos.reffclwc.tavg-al-hxy-ccl.mon.30S-90S", + "atmos.reffclwc.tavg-al-hxy-ccl.mon.GLB", + "atmos.reffclws.tavg-al-hxy-scl.mon.30S-90S", + "atmos.reffclws.tavg-al-hxy-scl.mon.GLB", + "atmos.reffsclwtop.tavg-u-hxy-scl.mon.GLB", + "atmos.rld.tavg-alh-hxy-u.mon.GLB", + "atmos.rld4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rldcs.tavg-alh-hxy-u.mon.GLB", + "atmos.rldcs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rlds.tavg-u-hxy-u.1hr.30S-90S", + "atmos.rlds.tavg-u-hxy-u.1hr.GLB", + "atmos.rlds.tavg-u-hxy-u.3hr.GLB", + "atmos.rlds.tavg-u-hxy-u.6hr.GLB", + "atmos.rlds.tavg-u-hxy-u.day.GLB", + "atmos.rlds.tavg-u-hxy-u.mon.30S-90S", + "atmos.rldscs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rls.tavg-u-hxy-u.mon.GLB", + "atmos.rlu.tavg-alh-hxy-u.mon.GLB", + "atmos.rlu4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rlucs.tavg-alh-hxy-u.mon.GLB", + "atmos.rlucs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rlus.tavg-u-hxy-u.3hr.GLB", + "atmos.rlus.tavg-u-hxy-u.day.GLB", + "atmos.rlus.tavg-u-hxy-u.mon.30S-90S", + "atmos.rlut.tavg-u-hxy-u.3hr.GLB", + "atmos.rlut.tavg-u-hxy-u.day.GLB", + "atmos.rlut.tavg-u-hxy-u.mon.30S-90S", + "atmos.rlut4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rlutcs.tavg-u-hxy-u.3hr.GLB", + "atmos.rlutcs.tavg-u-hxy-u.day.GLB", + "atmos.rlutcs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rlutcs4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rsd.tavg-alh-hxy-u.mon.GLB", + "atmos.rsd4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsdcs.tavg-alh-hxy-u.mon.GLB", + "atmos.rsdcs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsds.tavg-u-hxy-u.1hr.30S-90S", + "atmos.rsds.tavg-u-hxy-u.1hr.GLB", + "atmos.rsds.tavg-u-hxy-u.3hr.GLB", + "atmos.rsds.tavg-u-hxy-u.6hr.GLB", + "atmos.rsds.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsdscs.tavg-u-hxy-u.day.GLB", + "atmos.rsdscs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsdt.tavg-u-hxy-u.day.GLB", + "atmos.rsdt.tavg-u-hxy-u.mon.30S-90S", + "atmos.rss.tavg-u-hxy-u.mon.GLB", + "atmos.rsu.tavg-alh-hxy-u.mon.GLB", + "atmos.rsu4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsucs.tavg-alh-hxy-u.mon.GLB", + "atmos.rsucs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsus.tavg-u-hxy-u.3hr.GLB", + "atmos.rsus.tavg-u-hxy-u.day.GLB", + "atmos.rsus.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsuscs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsut.tavg-u-hxy-u.3hr.GLB", + "atmos.rsut.tavg-u-hxy-u.day.GLB", + "atmos.rsut.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsut4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rsutcs.tavg-u-hxy-u.3hr.GLB", + "atmos.rsutcs.tavg-u-hxy-u.day.GLB", + "atmos.rsutcs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsutcs4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rtmt.tavg-u-hxy-u.mon.GLB", + "atmos.rv850.tpt-850hPa-hxy-air.6hr.GLB", + "atmos.scldncl.tavg-u-hxy-scl.mon.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.1hr.30S-90S", + "atmos.sfcWind.tavg-h10m-hxy-u.6hr.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.mon.30S-90S", + "atmos.sfcWind.tmax-h10m-hxy-u.day.GLB", + "atmos.sfcWind.tmaxavg-h10m-hxy-u.mon.GLB", + "atmos.ta.tavg-700hPa-hxy-air.day.GLB", + "atmos.ta.tavg-850hPa-hxy-air.day.GLB", + "atmos.ta.tavg-al-hxy-u.mon.30S-90S", + "atmos.ta.tavg-al-hxy-u.mon.GLB", + "atmos.ta.tavg-p19-hxy-air.mon.30S-90S", + "atmos.ta.tavg-p39-hy-air.day.GLB", + "atmos.ta.tavg-p39-hy-air.mon.GLB", + "atmos.ta.tpt-al-hxy-u.6hr.GLB", + "atmos.ta.tpt-p5u-hxy-u.6hr.GLB", + "atmos.ta.tpt-p7h-hxy-air.6hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.1hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.6hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.mon.30S-90S", + "atmos.tas.tmaxavg-h2m-hxy-u.mon.30S-90S", + "atmos.tas.tminavg-h2m-hxy-u.mon.30S-90S", + "atmos.tauu.tavg-u-hxy-u.day.GLB", + "atmos.tauunoegw.tavg-p39-hy-air.day.GLB", + "atmos.tauunowgw.tavg-p39-hy-air.day.GLB", + "atmos.tauuogw.tavg-p39-hy-air.day.GLB", + "atmos.tauv.tavg-u-hxy-u.day.GLB", + "atmos.tauvnogw.tavg-p39-hy-air.day.GLB", + "atmos.tauvogw.tavg-p39-hy-air.day.GLB", + "atmos.tdps.tavg-h2m-hxy-u.mon.GLB", + "atmos.tnt.tavg-al-hxy-u.mon.GLB", + "atmos.tntmp.tavg-p39-hy-air.day.GLB", + "atmos.tntmp.tavg-p39-hy-air.mon.GLB", + "atmos.tntrl.tavg-al-hxy-u.mon.GLB", + "atmos.tntrl.tavg-p39-hy-air.day.GLB", + "atmos.tntrl.tavg-p39-hy-air.mon.GLB", + "atmos.tntrs.tavg-al-hxy-u.mon.GLB", + "atmos.tntrs.tavg-p39-hy-air.day.GLB", + "atmos.tntrs.tavg-p39-hy-air.mon.GLB", + "atmos.ts.tavg-u-hxy-u.6hr.GLB", + "atmos.ts.tavg-u-hxy-u.day.GLB", + "atmos.ts.tavg-u-hxy-u.mon.30S-90S", + "atmos.ts.tpt-u-hxy-u.3hr.GLB", + "atmos.ts.tpt-u-hxy-u.6hr.GLB", + "atmos.ua.tavg-al-hxy-u.mon.GLB", + "atmos.ua.tavg-p19-hxy-air.mon.30S-90S", + "atmos.ua.tavg-p39-hy-air.day.GLB", + "atmos.ua.tavg-p39-hy-air.mon.GLB", + "atmos.ua.tpt-al-hxy-u.6hr.GLB", + "atmos.ua.tpt-h100m-hxy-u.1hr.GLB", + "atmos.ua.tpt-p5u-hxy-air.6hr.GLB", + "atmos.ua.tpt-p7h-hxy-air.6hr.GLB", + "atmos.uas.tavg-h10m-hxy-u.mon.30S-90S", + "atmos.uas.tpt-h10m-hxy-u.1hr.GLB", + "atmos.uas.tpt-h10m-hxy-u.6hr.GLB", + "atmos.utendepfd.tavg-p39-hy-air.day.GLB", + "atmos.utendepfd.tavg-p39-hy-air.mon.GLB", + "atmos.utendnogw.tavg-p39-hy-air.day.GLB", + "atmos.utendnogw.tavg-p39-hy-air.mon.GLB", + "atmos.utendogw.tavg-p39-hy-air.day.GLB", + "atmos.utendogw.tavg-p39-hy-air.mon.GLB", + "atmos.utendvtem.tavg-p39-hy-air.day.GLB", + "atmos.utendwtem.tavg-p39-hy-air.day.GLB", + "atmos.va.tavg-al-hxy-u.mon.GLB", + "atmos.va.tavg-p19-hxy-air.mon.30S-90S", + "atmos.va.tavg-p39-hy-air.mon.GLB", + "atmos.va.tpt-al-hxy-u.6hr.GLB", + "atmos.va.tpt-h100m-hxy-u.1hr.GLB", + "atmos.va.tpt-p5u-hxy-air.6hr.GLB", + "atmos.va.tpt-p7h-hxy-air.6hr.GLB", + "atmos.vas.tavg-h10m-hxy-u.mon.30S-90S", + "atmos.vas.tpt-h10m-hxy-u.1hr.GLB", + "atmos.vas.tpt-h10m-hxy-u.6hr.GLB", + "atmos.vtem.tavg-p39-hy-air.day.GLB", + "atmos.vtem.tavg-p39-hy-air.mon.GLB", + "atmos.wap.tavg-p19-hxy-air.mon.30S-90S", + "atmos.wsg.tmax-h100m-hxy-u.1hr.GLB", + "atmos.wsg.tmax-h10m-hxy-u.1hr.GLB", + "atmos.wtem.tavg-p39-hy-air.day.GLB", + "atmos.wtem.tavg-p39-hy-air.mon.GLB", + "atmos.zg.tavg-1000hPa-hxy-air.day.GLB", + "atmos.zg.tavg-500hPa-hxy-air.day.GLB", + "atmos.zg.tavg-al-hxy-u.mon.GLB", + "atmos.zg.tavg-p19-hxy-air.mon.30S-90S", + "atmos.zg.tavg-p39-hy-air.day.GLB", + "atmos.zg.tavg-p39-hy-air.mon.GLB", + "atmos.zg.tpt-500hPa-hxy-air.6hr.GLB", + "atmos.zg.tpt-al-hxy-u.6hr.GLB", + "atmos.zg.tpt-p3-hxy-air.6hr.GLB", + "atmos.zg.tpt-p7h-hxy-air.6hr.GLB", + "atmos.ztp.tavg-u-hxy-u.mon.GLB", + "atmosChem.c2h4.tavg-al-hxy-u.mon.GLB", + "atmosChem.c2h5oh.tavg-al-hxy-u.mon.GLB", + "atmosChem.c4h10.tavg-al-hxy-u.mon.GLB", + "atmosChem.cfc11.tavg-u-hm-u.mon.GLB", + "atmosChem.cfc113.tavg-u-hm-u.mon.GLB", + "atmosChem.cfc12.tavg-u-hm-u.mon.GLB", + "atmosChem.ch3oh.tavg-al-hxy-u.mon.GLB", + "atmosChem.ch4.tavg-al-hxy-u.mon.GLB", + "atmosChem.ch4.tavg-p39-hy-air.mon.GLB", + "atmosChem.ch4losssoil.tavg-u-hxy-u.mon.GLB", + "atmosChem.ch4ref.ti-al-hxy-u.fx.GLB", + "atmosChem.chegph2oo1d.tavg-al-hxy-u.mon.GLB", + "atmosChem.chepnh4.tavg-al-hxy-u.mon.GLB", + "atmosChem.chepno3.tavg-al-hxy-u.mon.GLB", + "atmosChem.dms.tavg-al-hxy-u.mon.30S-90S", + "atmosChem.dms.tavg-al-hxy-u.mon.GLB", + "atmosChem.do3chm.tavg-al-hxy-u.mon.GLB", + "atmosChem.dryh2.tavg-u-hxy-u.mon.GLB", + "atmosChem.dryhno3.tavg-u-hxy-u.mon.GLB", + "atmosChem.drynh3.tavg-u-hxy-u.mon.GLB", + "atmosChem.drynh4.tavg-u-hxy-u.mon.GLB", + "atmosChem.drynoy.tavg-u-hxy-u.mon.GLB", + "atmosChem.e90inst.tpt-al-hxy-u.mon.GLB", + "atmosChem.emiach4.tavg-u-hxy-u.mon.GLB", + "atmosChem.emiavnox.tavg-al-hxy-u.mon.GLB", + "atmosChem.emic2h4.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic2h5oh.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic2h6.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic3h6.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic3h8.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic4h10.tavg-u-hxy-u.mon.GLB", + "atmosChem.emich3oh.tavg-u-hxy-u.mon.GLB", + "atmosChem.emich4.tavg-u-hxy-u.mon.GLB", + "atmosChem.emih2.tavg-u-hxy-u.mon.GLB", + "atmosChem.emilkch4.tavg-u-hxy-u.mon.GLB", + "atmosChem.h2.tavg-al-hxy-u.mon.GLB", + "atmosChem.h2loss.tavg-al-hxy-u.mon.GLB", + "atmosChem.h2prod.tavg-al-hxy-u.mon.GLB", + "atmosChem.hcfc22.tavg-u-hm-u.mon.GLB", + "atmosChem.meanage.tavg-al-hxy-u.mon.GLB", + "atmosChem.meanage.tavg-p39-hy-air.mon.GLB", + "atmosChem.n2o.tavg-al-hxy-u.mon.GLB", + "atmosChem.n2o.tavg-p39-hy-air.mon.GLB", + "atmosChem.o3.tavg-al-hxy-u.mon.GLB", + "atmosChem.o3.tavg-p19-hxy-air.mon.GLB", + "atmosChem.o3.tavg-p39-hy-air.mon.GLB", + "atmosChem.o3.tpt-al-hxy-u.mon.GLB", + "atmosChem.o3ref.tclm-al-hxy-u.fx.GLB", + "atmosChem.o3ref.ti-al-hxy-u.fx.GLB", + "atmosChem.o3ste.tavg-al-hxy-u.mon.GLB", + "atmosChem.rlutch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rlutcsch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rlutcso3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rluto3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsutch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsutcsch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsutcso3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsuto3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.stratch4loss.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropch4loss.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropch4lossoh.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropdo3chm.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropo3ste.tavg-al-hxy-u.mon.GLB", + "atmosChem.wethno3.tavg-al-hxy-u.mon.GLB", + "atmosChem.wetnh3.tavg-u-hxy-u.mon.GLB", + "atmosChem.wetnh4.tavg-u-hxy-u.mon.GLB", + "atmosChem.wetno3.tavg-al-hxy-u.mon.GLB", + "atmosChem.wetnoy.tavg-u-hxy-u.mon.GLB", + "land.albc.tavg-u-hxy-veg.mon.GLB", + "land.areacellr.ti-u-hxy-u.fx.GLB", + "land.baresoilFrac.tavg-u-hxy-u.mon.GLB", + "land.burntFractionAll.tavg-u-hxy-u.mon.GLB", + "land.cGeologicStorage.tavg-u-hxy-u.mon.GLB", + "land.cLand.tavg-u-hxy-lnd.mon.GLB", + "land.cLeaf.tavg-u-hxy-lnd.mon.GLB", + "land.cLitter.tavg-u-hxy-lnd.mon.GLB", + "land.cnc.tavg-u-hxy-u.mon.GLB", + "land.cProduct.tavg-u-hxy-lnd.mon.GLB", + "land.cRoot.tavg-u-hxy-lnd.mon.GLB", + "land.cropFrac.tavg-u-hxy-u.mon.GLB", + "land.cSoil.tavg-d100cm-hxy-lnd.mon.GLB", + "land.cSoil.tavg-sl-hxy-lnd.mon.GLB", + "land.cSoil.tavg-u-hxy-lnd.mon.GLB", + "land.cStem.tavg-u-hxy-lnd.mon.GLB", + "land.cVeg.tavg-u-hxy-lnd.mon.GLB", + "land.dcw.tavg-u-hxy-lnd.day.GLB", + "land.depthl.ti-u-hxy-u.fx.GLB", + "land.depthsl.ti-u-hxy-u.fx.GLB", + "land.dslw.tavg-u-hxy-lnd.day.GLB", + "land.evspsblpot.tavg-u-hxy-lnd.day.GLB", + "land.evspsblpot.tavg-u-hxy-lnd.mon.GLB", + "land.evspsblsoi.tavg-u-hxy-u.day.GLB", + "land.evspsblveg.tavg-u-hxy-u.day.GLB", + "land.fAnthDisturb.tavg-u-hxy-lnd.mon.GLB", + "land.fBNF.tavg-u-hxy-lnd.mon.GLB", + "land.fCLandToOcean.tavg-u-hxy-lnd.mon.GLB", + "land.fDeforestToAtmos.tavg-u-hxy-lnd.mon.GLB", + "land.fDeforestToProduct.tavg-u-hxy-lnd.mon.GLB", + "land.fFire.tavg-u-hxy-lnd.mon.GLB", + "land.fFireAll.tavg-u-hxy-lnd.mon.GLB", + "land.fFireNat.tavg-u-hxy-lnd.mon.GLB", + "land.fHarvestToAtmos.tavg-u-hxy-lnd.mon.GLB", + "land.fHarvestToGeologicStorage.tavg-u-hxy-lnd.mon.GLB", + "land.fHarvestToProduct.tavg-u-hxy-lnd.mon.GLB", + "land.fLitterSoil.tavg-u-hxy-lnd.mon.GLB", + "land.fLuc.tavg-u-hxy-lnd.mon.GLB", + "land.fN2O.tavg-u-hxy-lnd.mon.GLB", + "land.fNAnthDisturb.tavg-u-hxy-lnd.mon.GLB", + "land.fNdep.tavg-u-hxy-lnd.mon.GLB", + "land.fNfert.tavg-u-hxy-lnd.mon.GLB", + "land.fNgas.tavg-u-hxy-lnd.mon.GLB", + "land.fNgasFire.tavg-u-hxy-lnd.mon.GLB", + "land.fNLandToOcean.tavg-u-hxy-lnd.mon.GLB", + "land.fNleach.tavg-u-hxy-lnd.mon.GLB", + "land.fNLitterSoil.tavg-u-hxy-lnd.mon.GLB", + "land.fNloss.tavg-u-hxy-lnd.mon.GLB", + "land.fNnetmin.tavg-u-hxy-lnd.mon.GLB", + "land.fNOx.tavg-u-hxy-lnd.mon.GLB", + "land.fNProduct.tavg-u-hxy-lnd.mon.GLB", + "land.fNup.tavg-u-hxy-lnd.mon.GLB", + "land.fNVegLitter.tavg-u-hxy-lnd.mon.GLB", + "land.fNVegSoil.tavg-u-hxy-lnd.mon.GLB", + "land.fProductDecomp.tavg-u-hxy-lnd.mon.GLB", + "land.fVegLitter.tavg-u-hxy-lnd.mon.GLB", + "land.fVegSoil.tavg-u-hxy-lnd.mon.GLB", + "land.gpp.tavg-u-hxy-lnd.mon.GLB", + "land.gppVgt.tavg-u-hxy-multi.day.GLB", + "land.grassFrac.tavg-u-hxy-u.mon.GLB", + "land.laiVgt.tavg-u-hxy-multi.day.GLB", + "land.landCoverFrac.tavg-u-hxy-u.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.day.GLB", + "land.mrrob.tavg-u-hxy-lnd.day.GLB", + "land.mrros.tavg-u-hxy-lnd.day.GLB", + "land.mrsfl.tavg-sl-hxy-lnd.day.GLB", + "land.mrsfl.tavg-sl-hxy-lnd.mon.GLB", + "land.mrsll.tavg-sl-hxy-lnd.day.GLB", + "land.mrsll.tavg-sl-hxy-lnd.mon.GLB", + "land.mrso.tavg-u-hxy-lnd.day.GLB", + "land.mrsol.tavg-d10cm-hxy-lnd.day.GLB", + "land.mrsol.tavg-sl-hxy-lnd.day.GLB", + "land.mrsol.tavg-sl-hxy-lnd.mon.GLB", + "land.mrsol.tpt-d10cm-hxy-lnd.3hr.GLB", + "land.mrsow.tavg-u-hxy-lnd.day.GLB", + "land.mrtws.tavg-u-hxy-lnd.day.GLB", + "land.mrtws.tavg-u-hxy-lnd.mon.GLB", + "land.nbp.tavg-u-hxy-lnd.mon.GLB", + "land.nep.tavg-u-hxy-lnd.mon.GLB", + "land.nLand.tavg-u-hxy-lnd.mon.GLB", + "land.nLitter.tavg-u-hxy-lnd.mon.GLB", + "land.nMineral.tavg-u-hxy-lnd.mon.GLB", + "land.npp.tavg-u-hxy-lnd.mon.GLB", + "land.nProduct.tavg-u-hxy-lnd.mon.GLB", + "land.nSoil.tavg-u-hxy-lnd.mon.GLB", + "land.nVeg.tavg-u-hxy-lnd.mon.GLB", + "land.orog.ti-u-hxy-u.fx.30S-90S", + "land.pastureFrac.tavg-u-hxy-u.mon.GLB", + "land.prveg.tavg-u-hxy-lnd.mon.GLB", + "land.ra.tavg-u-hxy-lnd.mon.GLB", + "land.residualFrac.tavg-u-hxy-u.mon.GLB", + "land.rh.tavg-u-hxy-lnd.mon.GLB", + "land.rivi.tavg-u-hxy-lnd.day.GLB", + "land.rivo.tavg-u-hxy-lnd.day.GLB", + "land.rsds.tavg-u-hxy-lnd.mon.GLB", + "land.rsds.tavg-u-hxy-sn.mon.GLB", + "land.rsus.tavg-u-hxy-lnd.mon.GLB", + "land.rsus.tavg-u-hxy-sn.mon.GLB", + "land.sftgif.tavg-u-hxy-u.mon.GLB", + "land.sftlaf.ti-u-hxy-u.fx.GLB", + "land.shrubFrac.tavg-u-hxy-u.mon.GLB", + "land.srfrad.tavg-u-hxy-u.3hr.GLB", + "land.tas.tavg-u-hxy-u.1hr.30S-90S", + "land.tas.tavg-u-hxy-u.1hr.GLB", + "land.tran.tavg-u-hxy-lnd.mon.GLB", + "land.treeFrac.tavg-u-hxy-u.mon.GLB", + "land.tsl.tavg-sl-hxy-lnd.day.GLB", + "land.tsl.tavg-sl-hxy-lnd.mon.GLB", + "land.tslsi.tavg-u-hxy-u.day.GLB", + "land.tslsi.tpt-u-hxy-lsi.3hr.GLB", + "land.vegFrac.tavg-u-hxy-u.mon.GLB", + "land.vegHeight.tavg-u-hxy-tree.mon.GLB", + "land.vegHeight.tavg-u-hxy-veg.mon.GLB", + "land.wetlandCH4.tavg-u-hxy-lnd.mon.GLB", + "land.wtd.tavg-u-hxy-lnd.day.GLB", + "landIce.acabf.tavg-u-hxy-is.mon.GLB", + "landIce.hfdsn.tavg-u-hxy-lnd.mon.GLB", + "landIce.hfgeoubed.ti-u-hxy-gis.fx.GRL", + "landIce.hfls.tavg-u-hxy-is.mon.GLB", + "landIce.hfss.tavg-u-hxy-is.mon.GLB", + "landIce.icem.tavg-u-hxy-is.mon.GLB", + "landIce.litemptop.tavg-u-hxy-is.mon.GLB", + "landIce.lithk.ti-u-hxy-is.fx.GRL", + "landIce.lithk.ti-u-hxy-u.fx.GLB", + "landIce.mrro.tavg-u-hxy-is.mon.GLB", + "landIce.orog.tavg-u-hxy-is.mon.GLB", + "landIce.pflw.tavg-u-hxy-lnd.mon.GLB", + "landIce.prra.tavg-u-hxy-is.mon.GLB", + "landIce.prsn.tavg-u-hxy-is.mon.GLB", + "landIce.rlds.tavg-u-hxy-is.mon.GLB", + "landIce.rlus.tavg-u-hxy-is.mon.GLB", + "landIce.rsds.tavg-u-hxy-is.mon.GLB", + "landIce.rsus.tavg-u-hxy-is.mon.GLB", + "landIce.sbl.tavg-u-hxy-is.mon.GLB", + "landIce.sbl.tavg-u-hxy-lnd.mon.GLB", + "landIce.sbl.tavg-u-hxy-u.mon.GLB", + "landIce.sftflf.tavg-u-hxy-u.mon.GLB", + "landIce.sftflf.ti-u-hxy-u.fx.GLB", + "landIce.sftgrf.tavg-u-hxy-u.mon.GLB", + "landIce.sftgrf.ti-u-hxy-u.fx.GLB", + "landIce.snc.tavg-u-hxy-is.mon.GLB", + "landIce.snd.tavg-u-hxy-lnd.mon.GLB", + "landIce.snicem.tavg-u-hxy-is.mon.GLB", + "landIce.snicem.tavg-u-hxy-is.mon.GRL", + "landIce.snm.tavg-u-hxy-is.mon.GLB", + "landIce.snm.tavg-u-hxy-lnd.mon.GLB", + "landIce.snrefr.tavg-u-hxy-is.mon.GLB", + "landIce.snw.tavg-u-hxy-lnd.day.GLB", + "landIce.sootsn.tavg-u-hxy-lnd.mon.GLB", + "landIce.tas.tavg-u-hxy-is.mon.GLB", + "landIce.topg.ti-u-hxy-gis.fx.GRL", + "landIce.tpf.tavg-u-hxy-lnd.mon.GLB", + "landIce.ts.tavg-u-hxy-is.mon.GLB", + "landIce.tsn.tavg-u-hxy-is.mon.GLB", + "landIce.tsn.tavg-u-hxy-lnd.mon.GLB", + "ocean.absscint.tavg-op4-hxy-sea.mon.GLB", + "ocean.agessc.tavg-ol-hxy-sea.mon.GLB", + "ocean.bigthetao.tavg-ol-hm-sea.mon.GLB", + "ocean.bigthetao.tavg-ol-hxy-sea.dec.GLB", + "ocean.bigthetao.tavg-op20bar-hxy-sea.day.GLB", + "ocean.chcint.tavg-op4-hxy-sea.mon.GLB", + "ocean.ficeberg.tavg-ol-hxy-sea.3hr.GLB", + "ocean.ficeberg.tavg-ol-hxy-sea.mon.GLB", + "ocean.ficeberg.tavg-u-hxy-sea.mon.GLB", + "ocean.flandice.tavg-u-hxy-sea.3hr.GLB", + "ocean.flandice.tavg-u-hxy-sea.mon.GLB", + "ocean.friver.tavg-u-hxy-sea.3hr.GLB", + "ocean.friver.tavg-u-hxy-sea.mon.GLB", + "ocean.hfbasin.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpmadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpmdiff.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpsmadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfds.tavg-u-hxy-sea.3hr.GLB", + "ocean.hfds.tavg-u-hxy-sea.mon.30S-90S", + "ocean.hfgeou.tavg-u-hxy-sea.mon.GLB", + "ocean.hfrunoffds.tavg-ol-hxy-sea.3hr.GLB", + "ocean.hfx.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfx.tavg-u-hxy-sea.day.GLB", + "ocean.hfx.tavg-u-hxy-sea.mon.GLB", + "ocean.hfy.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfy.tavg-u-hxy-sea.day.GLB", + "ocean.hfy.tavg-u-hxy-sea.mon.GLB", + "ocean.htovgyre.tavg-u-hyb-sea.mon.GLB", + "ocean.htovovrt.tavg-u-hyb-sea.mon.GLB", + "ocean.masscello.tavg-ol-hxy-sea.dec.GLB", + "ocean.masso.tavg-u-hm-sea.dec.GLB", + "ocean.masso.tavg-u-hm-sea.mon.GLB", + "ocean.mlotst.tavg-u-hxy-sea.day.GLB", + "ocean.mlotst.tavg-u-hxy-sea.mon.30S-90S", + "ocean.mlotst.tmax-u-hxy-sea.mon.GLB", + "ocean.mlotst.tmin-u-hxy-sea.mon.GLB", + "ocean.mpw.tavg-u-hxy-sea.mon.GLB", + "ocean.mpw.tpt-u-hxy-sea.3hr.GLB", + "ocean.mpwswell.tavg-u-hxy-sea.mon.GLB", + "ocean.mpwswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.mpwwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.mpwwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.msftbarot.tavg-u-hxy-sea.mon.GLB", + "ocean.msftm.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftm.tavg-rho-hyb-sea.mon.GLB", + "ocean.msfty.tavg-ol-ht-sea.mon.GLB", + "ocean.msfty.tavg-rho-ht-sea.mon.GLB", + "ocean.obvfsq.tavg-ol-hxy-sea.mon.GLB", + "ocean.opottemptend.tavg-ol-hxy-sea.yr.GLB", + "ocean.pbo.tavg-u-hxy-sea.mon.GLB", + "ocean.pfscint.tavg-op4-hxy-sea.mon.GLB", + "ocean.phcint.tavg-op4-hxy-sea.mon.GLB", + "ocean.pso.tavg-u-hxy-sea.mon.GLB", + "ocean.rsds.tavg-u-hxy-ifs.mon.GLB", + "ocean.rsntds.tavg-u-hxy-sea.3hr.GLB", + "ocean.rsus.tavg-u-hxy-ifs.mon.GLB", + "ocean.scint.tavg-op4-hxy-sea.mon.GLB", + "ocean.sduo.tavg-u-hxy-sea.mon.GLB", + "ocean.sduo.tpt-u-hxy-sea.3hr.GLB", + "ocean.sdvo.tavg-u-hxy-sea.mon.GLB", + "ocean.sdvo.tpt-u-hxy-sea.3hr.GLB", + "ocean.sfdsi.tavg-u-hxy-sea.3hr.GLB", + "ocean.sfx.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfx.tavg-u-hxy-sea.mon.GLB", + "ocean.sfy.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfy.tavg-u-hxy-sea.mon.GLB", + "ocean.sltbasin.tavg-u-hyb-sea.mon.GLB", + "ocean.sltovgyre.tavg-u-hyb-sea.mon.GLB", + "ocean.sltovovrt.tavg-u-hyb-sea.mon.GLB", + "ocean.so.tavg-ol-hm-sea.mon.GLB", + "ocean.so.tavg-ol-hxy-sea.dec.GLB", + "ocean.so.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.sob.tavg-u-hxy-sea.mon.GLB", + "ocean.sos.tavg-u-hm-sea.mon.30S-90S", + "ocean.sos.tavg-u-hm-sea.mon.GLB", + "ocean.sw17O.tavg-ol-hxy-sea.mon.GLB", + "ocean.sw18O.tavg-ol-hxy-sea.mon.GLB", + "ocean.sw2H.tavg-ol-hxy-sea.mon.GLB", + "ocean.swh.tavg-u-hxy-sea.mon.GLB", + "ocean.swh.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhmax.tmax-u-hxy-sea.mon.GLB", + "ocean.swhmax.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhswell.tavg-u-hxy-sea.mon.GLB", + "ocean.swhswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.swhwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.t20d.tavg-u-hxy-sea.mon.GLB", + "ocean.tauuo.tavg-u-hxy-sea.3hr.GLB", + "ocean.tauuo.tavg-u-hxy-sea.dec.GLB", + "ocean.tauvo.tavg-u-hxy-sea.3hr.GLB", + "ocean.tauvo.tavg-u-hxy-sea.dec.GLB", + "ocean.thetao.tavg-d2000m-hxy-sea.mon.GLB", + "ocean.thetao.tavg-d300m-hxy-sea.mon.GLB", + "ocean.thetao.tavg-d700m-hxy-sea.mon.GLB", + "ocean.thetao.tavg-ol-hm-sea.mon.GLB", + "ocean.thetao.tavg-ol-hxy-sea.dec.GLB", + "ocean.thetao.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.thetao.tavg-op20bar-hxy-sea.day.GLB", + "ocean.thetaot.tavg-u-hxy-sea.mon.GLB", + "ocean.thkcello.tavg-ol-hxy-sea.dec.GLB", + "ocean.tob.tavg-u-hxy-sea.mon.GLB", + "ocean.tos.tavg-u-hm-sea.mon.GLB", + "ocean.tos.tavg-u-hxy-sea.mon.30S-90S", + "ocean.tos.tpt-u-hxy-sea.3hr.GLB", + "ocean.tossq.tavg-u-hxy-sea.day.GLB", + "ocean.umo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.uo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.uos.tavg-u-hxy-sea.day.GLB", + "ocean.vmo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.vo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.volcello.tavg-ol-hxy-sea.dec.GLB", + "ocean.volcello.tavg-ol-hxy-sea.mon.GLB", + "ocean.volcello.tavg-ol-hxy-sea.yr.GLB", + "ocean.volcello.ti-ol-hxy-sea.fx.GLB", + "ocean.volo.tavg-u-hm-sea.dec.GLB", + "ocean.volo.tavg-u-hm-sea.mon.GLB", + "ocean.vos.tavg-u-hxy-sea.day.GLB", + "ocean.vsf.tavg-u-hxy-sea.mon.GLB", + "ocean.wdir.tavg-u-hxy-sea.mon.GLB", + "ocean.wdir.tpt-u-hxy-sea.3hr.GLB", + "ocean.wdirswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wdirswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wdirwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wdirwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.wfcorr.tavg-u-hxy-sea.mon.GLB", + "ocean.wfo.tavg-u-hxy-sea.3hr.GLB", + "ocean.wfo.tavg-u-hxy-sea.mon.GLB", + "ocean.wmo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.wo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.wpdir.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdir.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpdirswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdirswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpdirwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdirwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpp.tavg-u-hxy-sea.mon.GLB", + "ocean.wpp.tpt-u-hxy-sea.3hr.GLB", + "ocean.wppswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wppswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wppwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wppwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.zfullo.tavg-ol-hxy-sea.yr.GLB", + "ocean.zos.tavg-u-hxy-sea.mon.30S-90S", + "ocean.zossq.tavg-u-hxy-sea.mon.GLB", + "ocean.zostoga.tavg-u-hm-sea.day.GLB", + "ocnBgchem.bacc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.calc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chl.tavg-d0m-hxy-sea.day.GLB", + "ocnBgchem.chl.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chl.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.chl.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chlcalc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chldiat.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chldiat.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chldiaz.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chldiaz.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chlmisc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chlmisc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chlpico.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chlpico.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.detoc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dfe.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.dfe.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.dfe.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissic.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.dissic.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissoc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dmso.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.dmso.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.dpco2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.dpo2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.expc.tavg-d1000m-hxy-sea.mon.GLB", + "ocnBgchem.expc.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.expc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.expcalc.tavg-d1000m-hxy-sea.mon.GLB", + "ocnBgchem.expcalc.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.expcalc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.fgco2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fric.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.froc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fsfe.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fsn.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.graz.tavg-ol-hxy-sea.mon.30S-90S", + "ocnBgchem.graz.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.icfriver.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intdic.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intdoc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intparag.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbfe.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbn.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbp.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbsi.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpcalcite.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpn2.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpoc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpp.tavg-u-hxy-sea.day.GLB", + "ocnBgchem.intpp.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpp.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppcalc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppdiat.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppdiaz.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppmisc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppnitrate.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpppico.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.nh4.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.nh4.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.no3.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.no3.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.o2.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.ocfriver.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.ph.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.ph.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phyc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phyc.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.phyc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phycalc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phycalc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phydiat.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phydiat.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phydiaz.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phydiaz.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phymisc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phymisc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phypico.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phypico.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.po4.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.pp.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.si.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.spco2.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.spco2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.talk.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zmeso.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zmeso.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zmicro.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zmicro.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zmisc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zmisc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zooc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zooc.tavg-ol-hxy-sea.mon.GLB", + "seaIce.evspsbl.tavg-u-hxy-si.mon.GLB", + "seaIce.prra.tavg-u-hxy-si.mon.GLB", + "seaIce.prsn.tavg-u-hxy-si.mon.GLB", + "seaIce.rlds.tavg-u-hxy-si.day.GLB", + "seaIce.rlds.tavg-u-hxy-si.mon.GLB", + "seaIce.rlus.tavg-u-hxy-si.day.GLB", + "seaIce.rlus.tavg-u-hxy-si.mon.GLB", + "seaIce.rsds.tavg-u-hxy-si.day.GLB", + "seaIce.rsds.tavg-u-hxy-si.mon.GLB", + "seaIce.rsus.tavg-u-hxy-si.day.GLB", + "seaIce.rsus.tavg-u-hxy-si.mon.GLB", + "seaIce.sbl.tavg-u-hxy-si.mon.GLB", + "seaIce.siage.tavg-u-hxy-si.day.GLB", + "seaIce.siage.tavg-u-hxy-si.mon.30S-90S", + "seaIce.siarea.tavg-u-hm-u.mon.NH", + "seaIce.siarea.tavg-u-hm-u.mon.SH", + "seaIce.siareaacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.siconc.tavg-u-hxy-u.mon.30S-90S", + "seaIce.siconca.tavg-u-hxy-u.day.GLB", + "seaIce.siconca.tavg-u-hxy-u.mon.GLB", + "seaIce.sidconcdyn.tavg-u-hxy-sea.mon.GLB", + "seaIce.sidconcth.tavg-u-hxy-sea.mon.GLB", + "seaIce.sidmassdyn.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthsi.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthwat.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmeltbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmeltlat.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmelttop.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassth.tavg-u-hxy-si.mon.GLB", + "seaIce.sieqthick.tavg-u-hxy-si.mon.GLB", + "seaIce.siextent.tavg-u-hm-u.mon.NH", + "seaIce.siextent.tavg-u-hm-u.mon.SH", + "seaIce.siflcondbot.tavg-u-hxy-si.day.GLB", + "seaIce.siflcondbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflcondtop.tavg-u-hxy-si.day.GLB", + "seaIce.siflcondtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sifllattop.tavg-u-hxy-si.day.GLB", + "seaIce.sifllattop.tavg-u-hxy-si.mon.GLB", + "seaIce.siflsensbot.tavg-u-hxy-si.day.GLB", + "seaIce.siflsensbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflsenstop.tavg-u-hxy-si.day.GLB", + "seaIce.siflsenstop.tavg-u-hxy-si.mon.GLB", + "seaIce.siflswdbot.tavg-u-hxy-si.day.GLB", + "seaIce.siflswdbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sihc.tavg-u-hxy-sea.day.GLB", + "seaIce.sihc.tavg-u-hxy-sea.mon.GLB", + "seaIce.siitdconc.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdsnconc.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdsnthick.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdthick.tavg-u-hxy-si.mon.GLB", + "seaIce.simassacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.simpconc.tavg-u-hxy-si.mon.GLB", + "seaIce.sirdgconc.tavg-u-hxy-si.mon.GLB", + "seaIce.sisaltmass.tavg-u-hxy-si.mon.GLB", + "seaIce.sisndmassdyn.tavg-u-hxy-si.mon.GLB", + "seaIce.sisndmasssi.tavg-u-hxy-si.mon.GLB", + "seaIce.sisndmasswind.tavg-u-hxy-si.mon.GLB", + "seaIce.sisnhc.tavg-u-hxy-si.day.GLB", + "seaIce.sisnhc.tavg-u-hxy-si.mon.GLB", + "seaIce.sisnmass.tavg-u-hm-u.mon.NH", + "seaIce.sisnmass.tavg-u-hm-u.mon.SH", + "seaIce.sisnmassacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.sispeed.tavg-u-hxy-si.day.GLB", + "seaIce.sispeed.tavg-u-hxy-si.mon.GLB", + "seaIce.sistressave.tpt-u-hxy-si.mon.GLB", + "seaIce.sistressmax.tpt-u-hxy-si.mon.GLB", + "seaIce.sistrxdtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sistrxubot.tavg-u-hxy-si.mon.GLB", + "seaIce.sistrydtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sistryubot.tavg-u-hxy-si.mon.GLB", + "seaIce.sitempsnic.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-si.day.GLB", + "seaIce.sithick.tavg-u-hxy-si.mon.30S-90S", + "seaIce.sitimefrac.tavg-u-hxy-sea.day.GLB", + "seaIce.sitimefrac.tavg-u-hxy-sea.mon.30S-90S", + "seaIce.siu.tavg-u-hxy-si.day.GLB", + "seaIce.siu.tavg-u-hxy-si.mon.30S-90S", + "seaIce.siv.tavg-u-hxy-si.day.GLB", + "seaIce.siv.tavg-u-hxy-si.mon.30S-90S", + "seaIce.sivol.tavg-u-hm-u.mon.NH", + "seaIce.sivol.tavg-u-hm-u.mon.SH", + "seaIce.snc.tavg-u-hxy-si.mon.GLB", + "seaIce.snd.tavg-u-hxy-sn.day.GLB", + "seaIce.snd.tavg-u-hxy-sn.mon.30S-90S", + "seaIce.snm.tavg-u-hxy-si.mon.GLB", + "seaIce.snw.tavg-u-hxy-si.mon.GLB", + "seaIce.ts.tavg-u-hxy-si.day.GLB", + "seaIce.ts.tavg-u-hxy-si.mon.30S-90S" + ], + "Medium": [ + "atmos.bldep.tavg-u-hxy-u.1hr.GLB", + "atmos.clic.tpt-al-hxy-u.3hr.GLB", + "atmos.clis.tpt-al-hxy-u.3hr.GLB", + "atmos.clivi.tpt-u-hxy-u.3hr.GLB", + "atmos.clt.tpt-u-hxy-u.3hr.GLB", + "atmos.clwc.tpt-al-hxy-u.3hr.GLB", + "atmos.clws.tpt-al-hxy-u.3hr.GLB", + "atmos.clwvi.tpt-u-hxy-u.3hr.GLB", + "atmos.dtauc.tpt-al-hxy-ccl.3hr.GLB", + "atmos.dtaus.tpt-al-hxy-scl.3hr.GLB", + "atmos.hfdsnb.tavg-u-hxy-lnd.day.GLB", + "atmos.hfls.tavg-u-hxy-is.mon.ATA", + "atmos.hfls.tavg-u-hxy-u.1hr.GLB", + "atmos.hfss.tavg-u-hxy-is.mon.ATA", + "atmos.hfss.tavg-u-hxy-is.mon.GRL", + "atmos.hfss.tavg-u-hxy-u.1hr.GLB", + "atmos.hur.tavg-700hPa-hxy-air.day.GLB", + "atmos.hur.tpt-100hPa-hxy-u.6hr.GLB", + "atmos.hur.tpt-500hPa-hxy-air.6hr.GLB", + "atmos.hur.tpt-850hPa-hxy-air.6hr.GLB", + "atmos.hurs.tavg-h2m-hxy-u.1hr.GLB", + "atmos.hus.tpt-al-hxy-u.3hr.GLB", + "atmos.hus.tpt-p6-hxy-air.3hr.GLB", + "atmos.noaahi2m.tavg-h2m-hxy-u.day.GLB", + "atmos.noaahi2m.tmax-h2m-hxy-u.day.GLB", + "atmos.pfull.tpt-al-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.6hr.GLB", + "atmos.pr.tmax-u-hxy-u.6hr.GLB", + "atmos.pr.tpt-u-hxy-u.3hr.GLB", + "atmos.prra.tavg-u-hxy-is.mon.ATA", + "atmos.prrsn.tavg-u-hxy-lnd.day.GLB", + "atmos.prsn.tavg-u-hxy-is.mon.ATA", + "atmos.prsnc.tavg-u-hxy-lnd.day.GLB", + "atmos.prsnsn.tavg-u-hxy-lnd.day.GLB", + "atmos.prw.tpt-u-hxy-u.3hr.GLB", + "atmos.ps.tpt-u-hxy-u.1hr.GLB", + "atmos.psitem.tavg-p39-hy-air.day.GLB", + "atmos.psl.tavg-u-hxy-u.6hr.GLB", + "atmos.reffclic.tpt-al-hxy-ccl.3hr.GLB", + "atmos.reffclis.tpt-al-hxy-scl.3hr.GLB", + "atmos.reffclwc.tpt-al-hxy-ccl.3hr.GLB", + "atmos.reffclws.tpt-al-hxy-scl.3hr.GLB", + "atmos.rlds.tavg-u-hxy-is.mon.ATA", + "atmos.rlds.tavg-u-hxy-is.mon.GRL", + "atmos.rlds.tpt-u-hxy-u.3hr.GLB", + "atmos.rldscs.tavg-u-hxy-u.day.GLB", + "atmos.rldscs.tpt-u-hxy-u.3hr.GLB", + "atmos.rls.tavg-u-hxy-u.day.GLB", + "atmos.rlus.tavg-u-hxy-is.mon.ATA", + "atmos.rlus.tavg-u-hxy-is.mon.GRL", + "atmos.rlus.tavg-u-hxy-u.1hr.GLB", + "atmos.rlut.tpt-u-hxy-u.3hr.GLB", + "atmos.rlutcs.tpt-u-hxy-u.3hr.GLB", + "atmos.rsds.tavg-u-hxy-is.mon.ATA", + "atmos.rsds.tavg-u-hxy-is.mon.GRL", + "atmos.rsds.tpt-u-hxy-u.3hr.GLB", + "atmos.rsdscs.tpt-u-hxy-u.3hr.GLB", + "atmos.rsdsdiff.tavg-u-hxy-u.1hr.GLB", + "atmos.rsdsdiff.tavg-u-hxy-u.day.GLB", + "atmos.rss.tavg-u-hxy-u.day.GLB", + "atmos.rsus.tavg-u-hxy-is.mon.ATA", + "atmos.rsus.tavg-u-hxy-is.mon.GRL", + "atmos.rsus.tavg-u-hxy-u.1hr.GLB", + "atmos.rsut.tpt-u-hxy-u.3hr.GLB", + "atmos.rsutcs.tpt-u-hxy-u.3hr.GLB", + "atmos.rv850.tavg-850hPa-hxy-air.6hr.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.1hr.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.3hr.GLB", + "atmos.snmsl.tavg-u-hxy-lnd.day.GLB", + "atmos.snrefr.tavg-u-hxy-lnd.day.GLB", + "atmos.snwc.tavg-u-hxy-lnd.day.GLB", + "atmos.ta.tpt-al-hxy-u.3hr.GLB", + "atmos.ta.tpt-p6-hxy-air.3hr.GLB", + "atmos.tas.tavg-h2m-hm-is.mon.ATA", + "atmos.tas.tavg-h2m-hm-is.mon.GRL", + "atmos.tauunoegw.tavg-p19-hxy-air.mon.GLB", + "atmos.tauunowgw.tavg-p19-hxy-air.mon.GLB", + "atmos.tauuogw.tavg-p19-hxy-air.mon.GLB", + "atmos.tauupbl.tavg-u-hxy-u.day.GLB", + "atmos.tauvnogw.tavg-p19-hxy-air.mon.GLB", + "atmos.tauvogw.tavg-p19-hxy-air.mon.GLB", + "atmos.tauvpbl.tavg-u-hxy-u.day.GLB", + "atmos.tdps.tavg-h2m-hxy-u.day.GLB", + "atmos.tntc.tavg-p39-hy-air.mon.GLB", + "atmos.tntnogw.tavg-p39-hy-air.mon.GLB", + "atmos.tntogw.tavg-p39-hy-air.mon.GLB", + "atmos.tntrlcs.tavg-p39-hy-air.mon.GLB", + "atmos.tntrscs.tavg-p39-hy-air.mon.GLB", + "atmos.tntscp.tavg-p39-hy-air.mon.GLB", + "atmos.ts.tavg-u-hxy-is.mon.ATA", + "atmos.ts.tavg-u-hxy-is.mon.GRL", + "atmos.ts.tavg-u-hxy-sn.day.GLB", + "atmos.ts.tavg-u-hxy-u.1hr.GLB", + "atmos.ua.tavg-h100m-hxy-u.3hr.GLB", + "atmos.ua.tpt-200hPa-hxy-u.6hr.GLB", + "atmos.ua.tpt-p6-hxy-air.3hr.GLB", + "atmos.uas.tavg-h10m-hxy-u.6hr.GLB", + "atmos.utendnogw.tavg-p19-hxy-air.day.GLB", + "atmos.utendnogw.tavg-p19-hxy-air.mon.GLB", + "atmos.utendogw.tavg-p19-hxy-air.day.GLB", + "atmos.utendogw.tavg-p19-hxy-air.mon.GLB", + "atmos.va.tavg-h100m-hxy-u.3hr.GLB", + "atmos.va.tpt-200hPa-hxy-u.6hr.GLB", + "atmos.va.tpt-p6-hxy-air.3hr.GLB", + "atmos.vas.tavg-h10m-hxy-u.6hr.GLB", + "atmos.vtendnogw.tavg-p19-hxy-air.day.GLB", + "atmos.vtendnogw.tavg-p19-hxy-air.mon.GLB", + "atmos.vtendogw.tavg-p19-hxy-air.day.GLB", + "atmos.vtendogw.tavg-p19-hxy-air.mon.GLB", + "atmos.wap.tpt-p6-hxy-air.3hr.GLB", + "atmos.wbgt.tavg-h2m-hxy-u.day.GLB", + "atmos.wbgt.tmax-h2m-hxy-u.day.GLB", + "atmos.wsg.tmax-h100m-hxy-u.mon.GLB", + "atmos.wsg.tmax-h10m-hxy-u.mon.GLB", + "atmos.zg.tavg-1000hPa-hxy-air.6hr.GLB", + "atmos.zg.tpt-700hPa-hxy-u.6hr.GLB", + "atmos.zg.tpt-925hPa-hxy-u.6hr.GLB", + "atmosChem.flashrate.tavg-u-hxy-u.day.GLB", + "land.areacellg.ti-u-hxy-u.fx.ATA", + "land.areacellg.ti-u-hxy-u.fx.GRL", + "land.baresoilFrac.tavg-u-hxy-u.yr.GLB", + "land.cLitterCwd.tavg-u-hxy-lnd.mon.GLB", + "land.cLitterLut.tpt-u-hxy-multi.yr.GLB", + "land.cLitterSubSurf.tavg-u-hxy-lnd.mon.GLB", + "land.cLitterSurf.tavg-u-hxy-lnd.mon.GLB", + "land.cOther.tavg-u-hxy-lnd.mon.GLB", + "land.cProductLut.tpt-u-hxy-multi.yr.GLB", + "land.cropFrac.tavg-u-hxy-u.yr.GLB", + "land.cropFracC3.tavg-u-hxy-u.mon.GLB", + "land.cropFracC4.tavg-u-hxy-u.mon.GLB", + "land.cSoilLut.tpt-u-hxy-multi.yr.GLB", + "land.cSoilPools.tavg-u-hxy-lnd.mon.GLB", + "land.cVeg.tavg-u-hxy-ng.mon.GLB", + "land.cVeg.tavg-u-hxy-shb.mon.GLB", + "land.cVeg.tavg-u-hxy-tree.mon.GLB", + "land.cVegLut.tpt-u-hxy-multi.yr.GLB", + "land.dgw.tavg-u-hxy-lnd.day.GLB", + "land.drivw.tavg-u-hxy-lnd.day.GLB", + "land.dsn.tavg-u-hxy-lnd.day.GLB", + "land.dsw.tavg-u-hxy-lnd.day.GLB", + "land.esn.tavg-u-hxy-sn.day.GLB", + "land.evspsblsoi.tavg-u-hxy-u.3hr.GLB", + "land.evspsblveg.tavg-u-hxy-u.3hr.GLB", + "land.fLitterFire.tavg-u-hxy-lnd.mon.GLB", + "land.fLulccAtmLut.tavg-u-hxy-multi.mon.GLB", + "land.fNgasNonFire.tavg-u-hxy-lnd.mon.GLB", + "land.fracInLut.tsum-u-hxy-lnd.yr.GLB", + "land.fracLut.tpt-u-hxy-u.mon.GLB", + "land.fracLut.tpt-u-hxy-u.yr.GLB", + "land.fracOutLut.tsum-u-hxy-lnd.yr.GLB", + "land.fVegFire.tavg-u-hxy-lnd.mon.GLB", + "land.fVegLitterMortality.tavg-u-hxy-lnd.mon.GLB", + "land.fVegLitterSenescence.tavg-u-hxy-lnd.mon.GLB", + "land.fVegSoilMortality.tavg-u-hxy-lnd.mon.GLB", + "land.fVegSoilSenescence.tavg-u-hxy-lnd.mon.GLB", + "land.gpp.tavg-u-hxy-ng.mon.GLB", + "land.gpp.tavg-u-hxy-shb.mon.GLB", + "land.gpp.tavg-u-hxy-tree.mon.GLB", + "land.gppLut.tavg-u-hxy-multi.mon.GLB", + "land.grassFrac.tavg-u-hxy-u.yr.GLB", + "land.grassFracC3.tavg-u-hxy-u.mon.GLB", + "land.grassFracC4.tavg-u-hxy-u.mon.GLB", + "land.hfdsl.tavg-u-hxy-lnd.3hr.GLB", + "land.hflsLut.tavg-u-hxy-multi.mon.GLB", + "land.hfssLut.tavg-u-hxy-multi.mon.GLB", + "land.irrDem.tavg-u-hxy-u.day.GLB", + "land.irrGw.tavg-u-hxy-u.day.GLB", + "land.irrLut.tavg-u-hxy-multi.mon.GLB", + "land.irrLut.tavg-u-hxy-u.day.GLB", + "land.irrSurf.tavg-u-hxy-u.day.GLB", + "land.laiLut.tavg-u-hxy-multi.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.3hr.GLB", + "land.mrros.tavg-u-hxy-lnd.3hr.GLB", + "land.mrsol.tavg-d100cm-hxy-lnd.3hr.GLB", + "land.mrsolLut.tavg-d10cm-hxy-multi.mon.GLB", + "land.nbpLut.tavg-u-hxy-multi.mon.GLB", + "land.nLeaf.tavg-u-hxy-lnd.mon.GLB", + "land.nLitterCwd.tavg-u-hxy-lnd.mon.GLB", + "land.nLitterSubSurf.tavg-u-hxy-lnd.mon.GLB", + "land.nLitterSurf.tavg-u-hxy-lnd.mon.GLB", + "land.nMineralNH4.tavg-u-hxy-lnd.mon.GLB", + "land.nMineralNO3.tavg-u-hxy-lnd.mon.GLB", + "land.nOther.tavg-u-hxy-lnd.mon.GLB", + "land.npp.tavg-u-hxy-ng.mon.GLB", + "land.npp.tavg-u-hxy-shb.mon.GLB", + "land.npp.tavg-u-hxy-tree.mon.GLB", + "land.nppLeaf.tavg-u-hxy-lnd.mon.GLB", + "land.nppLut.tavg-u-hxy-multi.mon.GLB", + "land.nppOther.tavg-u-hxy-lnd.mon.GLB", + "land.nppRoot.tavg-u-hxy-lnd.mon.GLB", + "land.nppStem.tavg-u-hxy-lnd.mon.GLB", + "land.nppVgt.tavg-u-hxy-multi.day.GLB", + "land.nRoot.tavg-u-hxy-lnd.mon.GLB", + "land.nStem.tavg-u-hxy-lnd.mon.GLB", + "land.orog.tavg-u-hxy-is.mon.ATA", + "land.orog.tavg-u-hxy-is.mon.GRL", + "land.orog.tavg-u-hxy-is.yr.ATA", + "land.orog.tavg-u-hxy-is.yr.GRL", + "land.pastureFracC3.tavg-u-hxy-u.mon.GLB", + "land.pastureFracC4.tavg-u-hxy-u.mon.GLB", + "land.qgwr.tavg-u-hxy-lnd.day.GLB", + "land.ra.tavg-u-hxy-ng.mon.GLB", + "land.ra.tavg-u-hxy-shb.mon.GLB", + "land.ra.tavg-u-hxy-tree.mon.GLB", + "land.raLeaf.tavg-u-hxy-lnd.mon.GLB", + "land.raLut.tavg-u-hxy-multi.mon.GLB", + "land.raOther.tavg-u-hxy-lnd.mon.GLB", + "land.raRoot.tavg-u-hxy-lnd.mon.GLB", + "land.raStem.tavg-u-hxy-lnd.mon.GLB", + "land.raVgt.tavg-u-hxy-multi.day.GLB", + "land.residualFrac.tavg-u-hxy-u.yr.GLB", + "land.rh.tavg-u-hxy-ng.mon.GLB", + "land.rh.tavg-u-hxy-shb.mon.GLB", + "land.rh.tavg-u-hxy-tree.mon.GLB", + "land.rhLitter.tavg-u-hxy-lnd.mon.GLB", + "land.rhLut.tavg-u-hxy-multi.mon.GLB", + "land.rhSoil.tavg-u-hxy-lnd.mon.GLB", + "land.rhVgt.tavg-u-hxy-multi.day.GLB", + "land.rzwc.tavg-u-hxy-lnd.day.GLB", + "land.sftgif.tavg-u-hxy-u.yr.ATA", + "land.sftgif.tavg-u-hxy-u.yr.GRL", + "land.shrubFrac.tavg-u-hxy-u.yr.GLB", + "land.sw.tavg-u-hxy-lnd.day.GLB", + "land.sweLut.tavg-u-hxy-multi.mon.GLB", + "land.tasLut.tavg-h2m-hxy-multi.mon.GLB", + "land.tran.tavg-u-hxy-u.3hr.GLB", + "land.treeFrac.tavg-u-hxy-u.yr.GLB", + "land.treeFracBdlDcd.tavg-u-hxy-u.mon.GLB", + "land.treeFracBdlEvg.tavg-u-hxy-u.mon.GLB", + "land.treeFracNdlDcd.tavg-u-hxy-u.mon.GLB", + "land.treeFracNdlEvg.tavg-u-hxy-u.mon.GLB", + "land.tsLut.tavg-u-hxy-multi.mon.GLB", + "land.vegFrac.tavg-u-hxy-u.yr.GLB", + "land.vegHeight.tavg-u-hxy-ng.mon.GLB", + "land.vegHeight.tavg-u-hxy-shb.mon.GLB", + "land.wetlandCH4cons.tavg-u-hxy-lnd.mon.GLB", + "land.wetlandCH4prod.tavg-u-hxy-lnd.mon.GLB", + "land.wetlandFrac.tavg-u-hxy-u.mon.GLB", + "landIce.acabf.tavg-u-hxy-is.mon.ATA", + "landIce.acabf.tavg-u-hxy-is.mon.GRL", + "landIce.acabf.tavg-u-hxy-is.yr.ATA", + "landIce.acabf.tavg-u-hxy-is.yr.GRL", + "landIce.agesno.tavg-u-hxy-lnd.mon.GLB", + "landIce.hfdsn.tavg-u-hxy-lnd.day.GLB", + "landIce.hfgeoubed.tavg-u-hxy-gis.yr.ATA", + "landIce.hfgeoubed.tavg-u-hxy-gis.yr.GRL", + "landIce.hfgeoubed.ti-u-hxy-gis.fx.ATA", + "landIce.iareafl.tavg-u-hm-fis.yr.ATA", + "landIce.iareafl.tavg-u-hm-fis.yr.GRL", + "landIce.iareagr.tavg-u-hm-gis.yr.ATA", + "landIce.iareagr.tavg-u-hm-gis.yr.GRL", + "landIce.icem.tavg-u-hxy-is.mon.ATA", + "landIce.icem.tavg-u-hxy-is.mon.GRL", + "landIce.libmassbf.tavg-u-hxy-fis.mon.ATA", + "landIce.libmassbf.tavg-u-hxy-fis.mon.GRL", + "landIce.libmassbf.tavg-u-hxy-fis.yr.ATA", + "landIce.libmassbf.tavg-u-hxy-fis.yr.GRL", + "landIce.libmassbf.tavg-u-hxy-gis.mon.ATA", + "landIce.libmassbf.tavg-u-hxy-gis.mon.GRL", + "landIce.libmassbf.tavg-u-hxy-gis.yr.ATA", + "landIce.libmassbf.tavg-u-hxy-gis.yr.GRL", + "landIce.licalvf.tavg-u-hxy-is.mon.ATA", + "landIce.licalvf.tavg-u-hxy-is.mon.GRL", + "landIce.licalvf.tavg-u-hxy-is.yr.ATA", + "landIce.licalvf.tavg-u-hxy-is.yr.GRL", + "landIce.lifmassbf.tavg-u-hxy-is.mon.ATA", + "landIce.lifmassbf.tavg-u-hxy-is.mon.GRL", + "landIce.lifmassbf.tavg-u-hxy-is.yr.ATA", + "landIce.lifmassbf.tavg-u-hxy-is.yr.GRL", + "landIce.lim.tavg-u-hm-is.yr.ATA", + "landIce.lim.tavg-u-hm-is.yr.GRL", + "landIce.limnsw.tavg-u-hm-is.yr.ATA", + "landIce.limnsw.tavg-u-hm-is.yr.GRL", + "landIce.litempbot.tavg-u-hxy-fis.mon.ATA", + "landIce.litempbot.tavg-u-hxy-fis.mon.GRL", + "landIce.litempbot.tavg-u-hxy-fis.yr.ATA", + "landIce.litempbot.tavg-u-hxy-fis.yr.GRL", + "landIce.litempbot.tavg-u-hxy-gis.mon.ATA", + "landIce.litempbot.tavg-u-hxy-gis.mon.GRL", + "landIce.litempbot.tavg-u-hxy-gis.yr.ATA", + "landIce.litempbot.tavg-u-hxy-gis.yr.GRL", + "landIce.litemptop.tavg-u-hxy-is.mon.ATA", + "landIce.litemptop.tavg-u-hxy-is.mon.GRL", + "landIce.litemptop.tavg-u-hxy-is.yr.ATA", + "landIce.litemptop.tavg-u-hxy-is.yr.GRL", + "landIce.lithk.tavg-u-hxy-is.yr.ATA", + "landIce.lithk.tavg-u-hxy-is.yr.GRL", + "landIce.lithk.ti-u-hxy-is.fx.ATA", + "landIce.lwsnl.tavg-u-hxy-lnd.day.GLB", + "landIce.lwsnl.tavg-u-hxy-lnd.mon.GLB", + "landIce.modelcellareai.tavg-u-hxy-u.yr.ATA", + "landIce.modelcellareai.tavg-u-hxy-u.yr.GRL", + "landIce.mrroLi.tavg-u-hxy-is.mon.ATA", + "landIce.mrroLi.tavg-u-hxy-is.mon.GRL", + "landIce.pflw.tavg-u-hxy-lnd.day.GLB", + "landIce.sbl.tavg-u-hxy-is.mon.ATA", + "landIce.sbl.tavg-u-hxy-is.mon.GRL", + "landIce.sbl.tavg-u-hxy-u.day.GLB", + "landIce.sftflf.tavg-u-hxy-u.yr.ATA", + "landIce.sftflf.tavg-u-hxy-u.yr.GRL", + "landIce.sftgrf.tavg-u-hxy-u.yr.ATA", + "landIce.sftgrf.tavg-u-hxy-u.yr.GRL", + "landIce.snc.tavg-u-hxy-is.mon.ATA", + "landIce.snc.tavg-u-hxy-is.mon.GRL", + "landIce.snc.tavg-u-hxy-is.yr.ATA", + "landIce.snc.tavg-u-hxy-is.yr.GRL", + "landIce.snc.tavg-u-hxy-lnd.day.GLB", + "landIce.snd.tavg-u-hxy-lnd.day.GLB", + "landIce.snicem.tavg-u-hxy-is.mon.ATA", + "landIce.snm.tavg-u-hxy-is.mon.ATA", + "landIce.snm.tavg-u-hxy-is.mon.GRL", + "landIce.snm.tavg-u-hxy-lnd.day.GLB", + "landIce.snrefr.tavg-u-hxy-is.mon.ATA", + "landIce.snrefr.tavg-u-hxy-is.mon.GRL", + "landIce.strbasemag.tavg-u-hxy-is.yr.ATA", + "landIce.strbasemag.tavg-u-hxy-is.yr.GRL", + "landIce.tendacabf.tavg-u-hm-is.yr.ATA", + "landIce.tendacabf.tavg-u-hm-is.yr.GRL", + "landIce.tendlibmassbf.tavg-u-hm-is.yr.ATA", + "landIce.tendlibmassbf.tavg-u-hm-is.yr.GRL", + "landIce.tendlicalvf.tavg-u-hm-is.yr.ATA", + "landIce.tendlicalvf.tavg-u-hm-is.yr.GRL", + "landIce.topg.tavg-u-hxy-gis.yr.ATA", + "landIce.topg.tavg-u-hxy-gis.yr.GRL", + "landIce.topg.ti-u-hxy-gis.fx.ATA", + "landIce.tpf.tavg-u-hxy-lnd.day.GLB", + "landIce.tsn.tavg-u-hxy-is.mon.ATA", + "landIce.tsn.tavg-u-hxy-is.mon.GRL", + "landIce.tsn.tavg-u-hxy-lnd.day.GLB", + "landIce.xvelbase.tavg-u-hxy-is.yr.ATA", + "landIce.xvelbase.tavg-u-hxy-is.yr.GRL", + "landIce.xvelmean.tavg-u-hxy-is.yr.ATA", + "landIce.xvelmean.tavg-u-hxy-is.yr.GRL", + "landIce.xvelsurf.tavg-u-hxy-is.yr.ATA", + "landIce.xvelsurf.tavg-u-hxy-is.yr.GRL", + "landIce.yvelbase.tavg-u-hxy-is.yr.ATA", + "landIce.yvelbase.tavg-u-hxy-is.yr.GRL", + "landIce.yvelmean.tavg-u-hxy-is.yr.ATA", + "landIce.yvelmean.tavg-u-hxy-is.yr.GRL", + "landIce.yvelsurf.tavg-u-hxy-is.yr.ATA", + "landIce.yvelsurf.tavg-u-hxy-is.yr.GRL", + "landIce.zvelbase.tavg-u-hxy-is.yr.ATA", + "landIce.zvelbase.tavg-u-hxy-is.yr.GRL", + "landIce.zvelsurf.tavg-u-hxy-is.yr.ATA", + "landIce.zvelsurf.tavg-u-hxy-is.yr.GRL", + "ocean.evspsbl.tavg-u-hxy-ifs.mon.GLB", + "ocean.hfacrossline.tavg-u-ht-sea.mon.GLB", + "ocean.hfevapds.tavg-u-hxy-ifs.mon.GLB", + "ocean.hfibthermds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfibthermds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfrainds.tavg-u-hxy-ifs.mon.GLB", + "ocean.hfrunoffds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfrunoffds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfsnthermds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfsnthermds.tavg-u-hxy-sea.mon.GLB", + "ocean.mfo.tavg-u-ht-sea.mon.GLB", + "ocean.msftmmpa.tavg-ol-hyb-sea.mon.GLB", + "ocean.sf6.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfacrossline.tavg-u-ht-sea.mon.GLB", + "ocean.sfdsi.tavg-u-hxy-sea.mon.GLB", + "ocean.sfriver.tavg-u-hxy-sea.mon.GLB", + "ocean.siflfwbot.tavg-u-hxy-sea.mon.GLB", + "ocean.so.tavg-ol-hxy-sea.day.GLB", + "ocean.t17d.tavg-u-hxy-sea.mon.GLB", + "ocean.t20d.tavg-u-hxy-sea.day.GLB", + "ocean.tnkebto.tavg-u-hxy-sea.yr.GLB", + "ocean.vsfcorr.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfevap.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfpr.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfriver.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfsit.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.arag.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.arag.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.calc.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.calc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chl.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.chlcalc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.co3.tavg-d0m-hxy-sea.day.GLB", + "ocnBgchem.co3.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.co3satarag.tavg-d0m-hxy-sea.day.GLB", + "ocnBgchem.co3satarag.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.detoc.tavg-ol-hxy-sea.day.GLB", + "ocnBgchem.dissoc.tavg-ol-hxy-sea.day.GLB", + "ocnBgchem.dmso.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.epn.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.epp.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.epsi.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.exparagob.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.expcalcob.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.expcob.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.expfeob.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.expnob.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.exppob.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.expsiob.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fgdms.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.frfe.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.frn.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppcalc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppdiat.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppdiaz.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppmisc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppnano.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppnitrate.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intpppico.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limfecalc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limfediat.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limfediaz.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limfemisc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limfepico.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limirrcalc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limirrdiat.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limirrdiaz.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limirrmisc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limirrpico.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limncalc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limndiat.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limndiaz.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limnmisc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limnpico.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.no3.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.o2.tavg-d0m-hxy-sea.day.GLB", + "ocnBgchem.o2.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.o2.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.o2sat.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.ph.tavg-d0m-hxy-sea.day.GLB", + "ocnBgchem.ph.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.phyc.tavg-d0m-hxy-sea.day.GLB", + "ocnBgchem.phyc.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.pp.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.pp.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.si.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.sialgc.tavg-u-hxy-si.mon.GLB", + "ocnBgchem.sichl.tavg-u-hxy-si.mon.GLB", + "ocnBgchem.sigpp.tavg-u-hxy-si.mon.GLB", + "ocnBgchem.sino3.tavg-u-hxy-si.mon.GLB", + "ocnBgchem.sisi.tavg-u-hxy-si.mon.GLB", + "seaIce.sfdsi.tavg-u-hxy-si.mon.GLB", + "seaIce.siage.tavg-u-hxy-si.mon.GLB", + "seaIce.siarea.tavg-u-hm-u.day.NH", + "seaIce.siarea.tavg-u-hm-u.day.SH", + "seaIce.sicompstren.tavg-u-hxy-si.mon.GLB", + "seaIce.sidivvel.tpt-u-hxy-si.mon.GLB", + "seaIce.sidmasstranx.tavg-u-hxy-u.mon.GLB", + "seaIce.sidmasstrany.tavg-u-hxy-u.mon.GLB", + "seaIce.sidragbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidragtop.tavg-u-hxy-si.mon.GLB", + "seaIce.siextent.tavg-u-hm-u.day.NH", + "seaIce.siextent.tavg-u-hm-u.day.SH", + "seaIce.sifb.tavg-u-hxy-si.day.GLB", + "seaIce.sifb.tavg-u-hxy-si.mon.GLB", + "seaIce.siflfwbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflfwdrain.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcecoriolx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcecorioly.tavg-u-hxy-si.mon.GLB", + "seaIce.siforceintstrx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforceintstry.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcetiltx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcetilty.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdconc.tavg-u-hxy-si.day.GLB", + "seaIce.siitdsnconc.tavg-u-hxy-si.day.GLB", + "seaIce.siitdsnthick.tavg-u-hxy-si.day.GLB", + "seaIce.siitdthick.tavg-u-hxy-si.day.GLB", + "seaIce.simpconc.tavg-u-hxy-si.day.GLB", + "seaIce.simpeffconc.tavg-u-hxy-si.day.GLB", + "seaIce.simpeffconc.tavg-u-hxy-si.mon.GLB", + "seaIce.simprefrozen.tavg-u-hxy-simp.day.GLB", + "seaIce.simprefrozen.tavg-u-hxy-simp.mon.GLB", + "seaIce.simpthick.tavg-u-hxy-si.day.GLB", + "seaIce.simpthick.tavg-u-hxy-simp.mon.GLB", + "seaIce.sirdgconc.tavg-u-hxy-si.day.GLB", + "seaIce.sisali.tavg-u-hxy-si.day.GLB", + "seaIce.sisali.tavg-u-hxy-si.mon.GLB", + "seaIce.sisaltmass.tavg-u-hxy-si.day.GLB", + "seaIce.sishearvel.tpt-u-hxy-si.mon.GLB", + "seaIce.sisnmass.tavg-u-hm-u.day.NH", + "seaIce.sisnmass.tavg-u-hm-u.day.SH", + "seaIce.sitempbot.tavg-u-hxy-si.day.GLB", + "seaIce.sitempbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sitempsnic.tavg-u-hxy-si.day.GLB", + "seaIce.sithick.tavg-u-hxy-sir.day.GLB", + "seaIce.sithick.tavg-u-hxy-sir.mon.GLB", + "seaIce.sivol.tavg-u-hm-u.day.NH", + "seaIce.sivol.tavg-u-hm-u.day.SH" + ], + "Low": [ + "aerosol.sfpm1.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.sfpm10.tavg-h2m-hxy-u.1hr.GLB", + "atmos.hurs.tmin-h2m-hxy-crp.day.GLB", + "atmos.pr.tavg-u-hxy-crp.day.GLB", + "atmos.tas.tmax-h2m-hxy-crp.day.GLB", + "atmos.tas.tmin-h2m-hxy-crp.day.GLB", + "atmosChem.drynh3.tavg-u-hxy-u.day.GLB", + "atmosChem.drynh4.tavg-u-hxy-u.day.GLB", + "atmosChem.drynoy.tavg-u-hxy-u.day.GLB", + "atmosChem.flashrate.tavg-u-hxy-u.mon.GLB", + "atmosChem.wetnh3.tavg-u-hxy-u.day.GLB", + "atmosChem.wetnh4.tavg-u-hxy-u.day.GLB", + "atmosChem.wetnoy.tavg-u-hxy-u.day.GLB", + "land.c13Land.tavg-u-hxy-lnd.mon.GLB", + "land.c13Litter.tavg-u-hxy-lnd.mon.GLB", + "land.c13Soil.tavg-u-hxy-lnd.mon.GLB", + "land.c13Veg.tavg-u-hxy-lnd.mon.GLB", + "land.c14Land.tavg-u-hxy-lnd.mon.GLB", + "land.c14Litter.tavg-u-hxy-lnd.mon.GLB", + "land.c14Soil.tavg-u-hxy-lnd.mon.GLB", + "land.c14Veg.tavg-u-hxy-lnd.mon.GLB", + "land.c3PftFrac.tavg-u-hxy-u.mon.GLB", + "land.c4PftFrac.tavg-u-hxy-u.mon.GLB", + "land.gppc13.tavg-u-hxy-lnd.mon.GLB", + "land.gppc14.tavg-u-hxy-lnd.mon.GLB", + "land.lai.tavg-u-hxy-lnd.day.GLB", + "land.netAtmosLandC13Flux.tavg-u-hxy-lnd.mon.GLB", + "land.netAtmosLandC14Flux.tavg-u-hxy-lnd.mon.GLB", + "land.rac13.tavg-u-hxy-lnd.mon.GLB", + "land.rac14.tavg-u-hxy-lnd.mon.GLB", + "land.rhc13.tavg-u-hxy-lnd.mon.GLB", + "land.rhc14.tavg-u-hxy-lnd.mon.GLB", + "ocean.difmxybo.tavg-ol-hxy-sea.yr.GLB", + "ocean.difmxylo.tavg-ol-hxy-sea.yr.GLB", + "ocean.diftrblo.tavg-ol-hxy-sea.yr.GLB", + "ocean.diftrelo.tavg-ol-hxy-sea.yr.GLB", + "ocean.difvho.tavg-ol-hxy-sea.yr.GLB", + "ocean.difvso.tavg-ol-hxy-sea.yr.GLB", + "ocean.dispkexyfo.tavg-u-hxy-sea.yr.GLB", + "ocean.dxto.ti-u-hxy-u.fx.GLB", + "ocean.dxuo.ti-u-hxy-u.fx.GLB", + "ocean.dxvo.ti-u-hxy-u.fx.GLB", + "ocean.dyto.ti-u-hxy-u.fx.GLB", + "ocean.dyuo.ti-u-hxy-u.fx.GLB", + "ocean.dyvo.ti-u-hxy-u.fx.GLB", + "ocean.mlotstsq.tavg-u-hxy-sea.mon.GLB", + "ocean.msftmmpa.tavg-rho-hyb-sea.mon.GLB", + "ocean.msftmsmpa.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftypa.tavg-ol-ht-sea.mon.GLB", + "ocean.msftypa.tavg-rho-ht-sea.mon.GLB", + "ocean.ocontempdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontempmint.tavg-u-hxy-sea.yr.GLB", + "ocean.ocontemppadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemppmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemppsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemprmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemptend.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottempdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottempmint.tavg-u-hxy-sea.yr.GLB", + "ocean.opottemppadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemppmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemppsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemprmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemptend.tavg-ol-hxy-sea.dec.GLB", + "ocean.osaltdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpsmadvect.tavg-ol-hxy-sea.mon.GLB", + "ocean.osaltpsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltrmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osalttend.tavg-ol-hxy-sea.yr.GLB", + "ocean.rsdo.tavg-ol-hxy-sea.day.GLB", + "ocean.rsdoabsorb.tavg-ol-hxy-sea.yr.GLB", + "ocean.somint.tavg-u-hxy-sea.yr.GLB", + "ocean.sossq.tavg-u-hxy-sea.mon.GLB", + "ocean.thkcelluo.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcellvo.tavg-ol-hxy-sea.mon.GLB", + "ocean.tnpeo.tavg-u-hxy-sea.yr.GLB", + "ocean.tossq.tavg-u-hxy-sea.mon.GLB", + "ocean.wo.tavg-ol-hxy-sea.day.GLB", + "ocnBgchem.dissi13c.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.dissi13c.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissi14c.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissi14cabio.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.dissi14cabio.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.expcob.tavg-u-hxy-sea.day.GLB", + "ocnBgchem.fg13co2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fg14co2abio.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intpoc.tavg-u-hxy-sea.day.GLB", + "ocnBgchem.o2min.tavg-u-hxy-sea.day.GLB", + "ocnBgchem.phycalc.tavg-ol-hxy-sea.day.GLB", + "ocnBgchem.phydiat.tavg-d0m-hxy-sea.day.GLB", + "ocnBgchem.phydiaz.tavg-d0m-hxy-sea.day.GLB", + "ocnBgchem.phymisc.tavg-d0m-hxy-sea.day.GLB", + "ocnBgchem.phynano.tavg-u-hxy-sea.day.GLB", + "ocnBgchem.phypico.tavg-ol-hxy-sea.day.GLB", + "ocnBgchem.zmeso.tavg-ol-hxy-sea.day.GLB", + "ocnBgchem.zmicro.tavg-ol-hxy-sea.day.GLB", + "ocnBgchem.zooc.tavg-ol-hxy-sea.day.GLB" + ] + }, + "scenariomip9": { + "Core": [ + "atmos.areacella.ti-u-hxy-u.fx.GLB", + "atmos.cl.tavg-al-hxy-u.mon.GLB", + "atmos.cli.tavg-al-hxy-u.mon.GLB", + "atmos.clivi.tavg-u-hxy-u.mon.GLB", + "atmos.clt.tavg-u-hxy-u.day.GLB", + "atmos.clt.tavg-u-hxy-u.mon.GLB", + "atmos.clw.tavg-al-hxy-u.mon.GLB", + "atmos.clwvi.tavg-u-hxy-u.mon.GLB", + "atmos.evspsbl.tavg-u-hxy-u.mon.GLB", + "atmos.hfls.tavg-u-hxy-u.mon.GLB", + "atmos.hfss.tavg-u-hxy-u.mon.GLB", + "atmos.hur.tavg-p19-hxy-air.mon.GLB", + "atmos.hur.tavg-p19-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.6hr.GLB", + "atmos.hurs.tavg-h2m-hxy-u.day.GLB", + "atmos.hurs.tavg-h2m-hxy-u.mon.GLB", + "atmos.hus.tavg-p19-hxy-u.day.GLB", + "atmos.hus.tavg-p19-hxy-u.mon.GLB", + "atmos.huss.tavg-h2m-hxy-u.day.GLB", + "atmos.huss.tavg-h2m-hxy-u.mon.GLB", + "atmos.huss.tpt-h2m-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.1hr.GLB", + "atmos.pr.tavg-u-hxy-u.3hr.GLB", + "atmos.pr.tavg-u-hxy-u.day.GLB", + "atmos.pr.tavg-u-hxy-u.mon.GLB", + "atmos.prc.tavg-u-hxy-u.mon.GLB", + "atmos.prsn.tavg-u-hxy-u.mon.GLB", + "atmos.prw.tavg-u-hxy-u.mon.GLB", + "atmos.ps.tavg-u-hxy-u.day.GLB", + "atmos.ps.tavg-u-hxy-u.mon.GLB", + "atmos.psl.tavg-u-hxy-u.day.GLB", + "atmos.psl.tavg-u-hxy-u.mon.GLB", + "atmos.rlds.tavg-u-hxy-u.mon.GLB", + "atmos.rldscs.tavg-u-hxy-u.mon.GLB", + "atmos.rlus.tavg-u-hxy-u.mon.GLB", + "atmos.rluscs.tavg-u-hxy-u.mon.GLB", + "atmos.rlut.tavg-u-hxy-u.mon.GLB", + "atmos.rlutcs.tavg-u-hxy-u.mon.GLB", + "atmos.rsds.tavg-u-hxy-u.day.GLB", + "atmos.rsds.tavg-u-hxy-u.mon.GLB", + "atmos.rsdscs.tavg-u-hxy-u.mon.GLB", + "atmos.rsdt.tavg-u-hxy-u.mon.GLB", + "atmos.rsus.tavg-u-hxy-u.mon.GLB", + "atmos.rsuscs.tavg-u-hxy-u.mon.GLB", + "atmos.rsut.tavg-u-hxy-u.mon.GLB", + "atmos.rsutcs.tavg-u-hxy-u.mon.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.day.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.mon.GLB", + "atmos.sftlf.ti-u-hxy-u.fx.GLB", + "atmos.ta.tavg-p19-hxy-air.day.GLB", + "atmos.ta.tavg-p19-hxy-air.mon.GLB", + "atmos.ta.tpt-p3-hxy-air.6hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.day.GLB", + "atmos.tas.tavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tmax-h2m-hxy-u.day.GLB", + "atmos.tas.tmaxavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tmin-h2m-hxy-u.day.GLB", + "atmos.tas.tminavg-h2m-hxy-u.mon.GLB", + "atmos.tas.tpt-h2m-hxy-u.3hr.GLB", + "atmos.tauu.tavg-u-hxy-u.mon.GLB", + "atmos.tauv.tavg-u-hxy-u.mon.GLB", + "atmos.ts.tavg-u-hxy-u.mon.GLB", + "atmos.ua.tavg-p19-hxy-air.day.GLB", + "atmos.ua.tavg-p19-hxy-air.mon.GLB", + "atmos.ua.tpt-p3-hxy-air.6hr.GLB", + "atmos.uas.tavg-h10m-hxy-u.day.GLB", + "atmos.uas.tavg-h10m-hxy-u.mon.GLB", + "atmos.uas.tpt-h10m-hxy-u.3hr.GLB", + "atmos.va.tavg-p19-hxy-air.day.GLB", + "atmos.va.tavg-p19-hxy-air.mon.GLB", + "atmos.va.tpt-p3-hxy-air.6hr.GLB", + "atmos.vas.tavg-h10m-hxy-u.day.GLB", + "atmos.vas.tavg-h10m-hxy-u.mon.GLB", + "atmos.vas.tpt-h10m-hxy-u.3hr.GLB", + "atmos.wap.tavg-p19-hxy-air.mon.GLB", + "atmos.wap.tavg-p19-hxy-u.day.GLB", + "atmos.zg.tavg-p19-hxy-air.day.GLB", + "atmos.zg.tavg-p19-hxy-air.mon.GLB", + "land.evspsblsoi.tavg-u-hxy-lnd.mon.GLB", + "land.evspsblveg.tavg-u-hxy-lnd.mon.GLB", + "land.lai.tavg-u-hxy-lnd.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.mon.GLB", + "land.mrros.tavg-u-hxy-lnd.mon.GLB", + "land.mrso.tavg-u-hxy-lnd.mon.GLB", + "land.mrsofc.ti-u-hxy-lnd.fx.GLB", + "land.mrsol.tavg-d10cm-hxy-lnd.mon.GLB", + "land.orog.ti-u-hxy-u.fx.GLB", + "land.rootd.ti-u-hxy-lnd.fx.GLB", + "land.sftgif.ti-u-hxy-u.fx.GLB", + "land.slthick.ti-sl-hxy-lnd.fx.GLB", + "landIce.mrfso.tavg-u-hxy-lnd.mon.GLB", + "landIce.snc.tavg-u-hxy-lnd.mon.GLB", + "landIce.snw.tavg-u-hxy-lnd.mon.GLB", + "ocean.areacello.ti-u-hxy-u.fx.GLB", + "ocean.basin.ti-u-hxy-u.fx.GLB", + "ocean.bigthetao.tavg-ol-hxy-sea.mon.GLB", + "ocean.deptho.ti-u-hxy-sea.fx.GLB", + "ocean.hfds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfgeou.ti-u-hxy-sea.fx.GLB", + "ocean.masscello.tavg-ol-hxy-sea.mon.GLB", + "ocean.masscello.ti-ol-hxy-sea.fx.GLB", + "ocean.mlotst.tavg-u-hxy-sea.mon.GLB", + "ocean.sftof.ti-u-hxy-u.fx.GLB", + "ocean.so.tavg-ol-hxy-sea.mon.GLB", + "ocean.sos.tavg-u-hxy-sea.day.GLB", + "ocean.sos.tavg-u-hxy-sea.mon.GLB", + "ocean.tauuo.tavg-u-hxy-sea.mon.GLB", + "ocean.tauvo.tavg-u-hxy-sea.mon.GLB", + "ocean.thetao.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcello.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcello.ti-ol-hxy-sea.fx.GLB", + "ocean.tos.tavg-u-hxy-sea.day.GLB", + "ocean.tos.tavg-u-hxy-sea.mon.GLB", + "ocean.umo.tavg-ol-hxy-sea.mon.GLB", + "ocean.uo.tavg-ol-hxy-sea.mon.GLB", + "ocean.vmo.tavg-ol-hxy-sea.mon.GLB", + "ocean.vo.tavg-ol-hxy-sea.mon.GLB", + "ocean.wmo.tavg-ol-hxy-sea.mon.GLB", + "ocean.wo.tavg-ol-hxy-sea.mon.GLB", + "ocean.zos.tavg-u-hxy-sea.day.GLB", + "ocean.zos.tavg-u-hxy-sea.mon.GLB", + "ocean.zostoga.tavg-u-hm-sea.mon.GLB", + "seaIce.siconc.tavg-u-hxy-u.day.GLB", + "seaIce.siconc.tavg-u-hxy-u.mon.GLB", + "seaIce.simass.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-si.mon.GLB", + "seaIce.sitimefrac.tavg-u-hxy-sea.mon.GLB", + "seaIce.siu.tavg-u-hxy-si.mon.GLB", + "seaIce.siv.tavg-u-hxy-si.mon.GLB", + "seaIce.snd.tavg-u-hxy-sn.mon.GLB", + "seaIce.ts.tavg-u-hxy-si.mon.GLB" + ], + "High": [ + "aerosol.abs550aer.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550bc.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550dust.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550no3.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550oa.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550so4.tavg-u-hxy-u.mon.GLB", + "aerosol.abs550ss.tavg-u-hxy-u.mon.GLB", + "aerosol.airmass.tavg-al-hxy-u.mon.GLB", + "aerosol.aoanh.tavg-al-hxy-u.mon.NH", + "aerosol.bry.tavg-p39-hy-air.mon.GLB", + "aerosol.bs550aer.tpt-al-hxy-u.6hr.GLB", + "aerosol.c2h6.tavg-al-hxy-u.mon.GLB", + "aerosol.c3h6.tavg-al-hxy-u.mon.GLB", + "aerosol.c3h8.tavg-al-hxy-u.mon.GLB", + "aerosol.ccldncl.tavg-u-hxy-ccl.mon.GLB", + "aerosol.ccn.tavg-u-hxy-ccl.mon.30S-90S", + "aerosol.ccn.tavg-u-hxy-ccl.mon.GLB", + "aerosol.ccn1.tavg-al-hxy-u.mon.30S-90S", + "aerosol.ccn1.tavg-al-hxy-u.mon.GLB", + "aerosol.ccnp02.tavg-al-hxy-u.mon.30S-90S", + "aerosol.ccnp02.tavg-al-hxy-u.mon.GLB", + "aerosol.cdnc.tavg-al-hxy-u.mon.30S-90S", + "aerosol.cdnc.tavg-al-hxy-u.mon.GLB", + "aerosol.cfc114.tavg-al-hxy-u.mon.GLB", + "aerosol.ch3coch3.tavg-al-hxy-u.mon.GLB", + "aerosol.cheaqpso4.tavg-al-hxy-u.mon.GLB", + "aerosol.chegpso4.tavg-al-hxy-u.mon.GLB", + "aerosol.chepasoa.tavg-u-hxy-u.mon.GLB", + "aerosol.chepsoa.tavg-u-hxy-u.mon.GLB", + "aerosol.cly.tavg-p39-hy-air.mon.GLB", + "aerosol.co.tavg-al-hxy-u.mon.GLB", + "aerosol.co.tavg-h2m-hxy-u.day.GLB", + "aerosol.cod.tavg-u-hxy-u.day.GLB", + "aerosol.cod.tavg-u-hxy-u.mon.30S-90S", + "aerosol.cod.tavg-u-hxy-u.mon.GLB", + "aerosol.conccn.tavg-al-hxy-u.mon.GLB", + "aerosol.conccn.tpt-u-hs-u.3hr.GLB", + "aerosol.depdust.tavg-u-hxy-u.mon.GLB", + "aerosol.drybc.tavg-u-hxy-u.mon.GLB", + "aerosol.drydust.tavg-u-hxy-u.mon.GLB", + "aerosol.dryno3.tavg-u-hxy-u.mon.GLB", + "aerosol.dryo3.tavg-u-hxy-u.mon.GLB", + "aerosol.dryoa.tavg-u-hxy-u.mon.GLB", + "aerosol.dryso2.tavg-u-hxy-u.mon.GLB", + "aerosol.dryso4.tavg-u-hxy-u.mon.GLB", + "aerosol.dryss.tavg-u-hxy-u.mon.GLB", + "aerosol.ec550aer.tavg-al-hxy-u.mon.GLB", + "aerosol.ec550aer.tpt-u-hxy-u.6hr.GLB", + "aerosol.emiaco.tavg-u-hxy-u.mon.GLB", + "aerosol.emianox.tavg-u-hxy-u.mon.GLB", + "aerosol.emiaoa.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbbc.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbch4.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbco.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbdms.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbnh3.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbnox.tavg-u-hxy-u.mon.GLB", + "aerosol.emibboa.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbso2.tavg-u-hxy-u.mon.GLB", + "aerosol.emibbvoc.tavg-u-hxy-u.mon.GLB", + "aerosol.emibc.tavg-u-hxy-u.mon.GLB", + "aerosol.emibvoc.tavg-u-hxy-u.mon.GLB", + "aerosol.emico.tavg-u-hxy-u.mon.GLB", + "aerosol.emidms.tavg-u-hxy-u.mon.30S-90S", + "aerosol.emidms.tavg-u-hxy-u.mon.GLB", + "aerosol.emidust.tavg-u-hxy-u.mon.GLB", + "aerosol.emiisop.tavg-u-hxy-u.mon.GLB", + "aerosol.emilnox.tavg-al-hxy-u.mon.GLB", + "aerosol.eminh3.tavg-u-hxy-u.mon.GLB", + "aerosol.eminox.tavg-u-hxy-u.mon.GLB", + "aerosol.emioa.tavg-u-hxy-u.mon.GLB", + "aerosol.emiso2.tavg-u-hxy-u.mon.GLB", + "aerosol.emiso4.tavg-u-hxy-u.mon.GLB", + "aerosol.emiss.tavg-u-hxy-u.mon.30S-90S", + "aerosol.emiss.tavg-u-hxy-u.mon.GLB", + "aerosol.emivoc.tavg-u-hxy-u.mon.GLB", + "aerosol.h2o.tavg-al-hxy-u.mon.GLB", + "aerosol.h2o.tavg-p39-hy-air.mon.GLB", + "aerosol.hcfc22.tavg-al-hxy-u.mon.GLB", + "aerosol.hcho.tavg-al-hxy-u.mon.GLB", + "aerosol.hcl.tavg-al-hxy-u.mon.GLB", + "aerosol.hcl.tavg-p39-hy-air.mon.GLB", + "aerosol.hfc125.tavg-al-hxy-u.mon.GLB", + "aerosol.hfc134a.tavg-al-hxy-u.mon.GLB", + "aerosol.hno3.tavg-al-hxy-u.mon.GLB", + "aerosol.hno3.tavg-p39-hy-air.mon.GLB", + "aerosol.ho2.tavg-p39-hy-air.mon.GLB", + "aerosol.isop.tavg-al-hxy-u.mon.GLB", + "aerosol.jno2.tavg-al-hxy-u.mon.GLB", + "aerosol.lossch4.tavg-al-hxy-u.mon.GLB", + "aerosol.lossco.tavg-al-hxy-u.mon.GLB", + "aerosol.lossn2o.tavg-al-hxy-u.mon.GLB", + "aerosol.lwp.tavg-u-hxy-u.mon.GLB", + "aerosol.mmraerh2o.tavg-al-hxy-u.mon.GLB", + "aerosol.mmraerh2o.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmraerh2o.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrbc.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrbc.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrbc.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrbc.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrdust.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrdust.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrdust.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrdust.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrnh4.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrnh4.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrnh4.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrnh4.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrno3.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrno3.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrno3.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrno3.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmroa.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmroa.tavg-al-hxy-u.mon.GLB", + "aerosol.mmroa.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmroa.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrpm1.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrpm1.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrpm2p5.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrpm2p5.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrso4.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrso4.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrso4.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrso4.tpt-h2m-hs-u.3hr.GLB", + "aerosol.mmrsoa.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrsoa.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrsoa.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrss.tavg-al-hxy-u.mon.30S-90S", + "aerosol.mmrss.tavg-al-hxy-u.mon.GLB", + "aerosol.mmrss.tavg-h2m-hxy-u.day.GLB", + "aerosol.mmrss.tpt-h2m-hs-u.3hr.GLB", + "aerosol.nh50.tavg-al-hxy-u.mon.GLB", + "aerosol.no.tavg-al-hxy-u.mon.GLB", + "aerosol.no2.tavg-al-hxy-u.mon.GLB", + "aerosol.no2.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.noy.tavg-p39-hy-air.mon.GLB", + "aerosol.o3.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.o3.tmax-h2m-hxy-u.day.GLB", + "aerosol.o3loss.tavg-al-hxy-u.mon.GLB", + "aerosol.o3prod.tavg-al-hxy-u.mon.GLB", + "aerosol.od443aer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550aer.tavg-u-hxy-u.day.GLB", + "aerosol.od550aer.tavg-u-hxy-u.mon.30S-90S", + "aerosol.od550aer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550aerh2o.tavg-u-hxy-u.mon.GLB", + "aerosol.od550bb.tavg-u-hxy-u.mon.GLB", + "aerosol.od550bc.tavg-u-hxy-u.mon.GLB", + "aerosol.od550csaer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550dust.tavg-u-hxy-u.mon.GLB", + "aerosol.od550lt1aer.tavg-u-hxy-u.mon.GLB", + "aerosol.od550no3.tavg-u-hxy-u.mon.GLB", + "aerosol.od550oa.tavg-u-hxy-u.mon.GLB", + "aerosol.od550so4.tavg-u-hxy-u.mon.GLB", + "aerosol.od550soa.tavg-u-hxy-u.mon.GLB", + "aerosol.od550ss.tavg-u-hxy-u.mon.GLB", + "aerosol.od865aer.tavg-u-hxy-u.mon.GLB", + "aerosol.oh.tavg-al-hxy-u.mon.GLB", + "aerosol.oh.tavg-p39-hy-air.mon.GLB", + "aerosol.pan.tavg-al-hxy-u.mon.GLB", + "aerosol.photo1d.tavg-al-hxy-u.mon.GLB", + "aerosol.pod0.tsum-u-hxy-u.mon.GLB", + "aerosol.reffccwctop.tavg-u-hxy-cl.mon.GLB", + "aerosol.reffclwtop.tavg-u-hxy-cl.mon.30S-90S", + "aerosol.reffclwtop.tavg-u-hxy-cl.mon.GLB", + "aerosol.rluscsaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rlutaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rlutcsaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rsutaf.tavg-u-hxy-u.mon.GLB", + "aerosol.rsutcsaf.tavg-u-hxy-u.mon.GLB", + "aerosol.sfpm1.tavg-h2m-hxy-u.day.GLB", + "aerosol.sfpm10.tavg-al-hxy-u.mon.30S-90S", + "aerosol.sfpm10.tavg-al-hxy-u.mon.GLB", + "aerosol.sfpm10.tavg-h2m-hxy-u.day.GLB", + "aerosol.sfpm25.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.sfpm25.tavg-h2m-hxy-u.day.GLB", + "aerosol.so2.tavg-al-hxy-u.mon.30S-90S", + "aerosol.so2.tavg-al-hxy-u.mon.GLB", + "aerosol.so2.tavg-h2m-hxy-u.day.GLB", + "aerosol.so2.tpt-h2m-hs-u.3hr.GLB", + "aerosol.tatp.tavg-u-hxy-u.mon.GLB", + "aerosol.toz.tavg-u-hxy-u.day.GLB", + "aerosol.toz.tavg-u-hxy-u.mon.GLB", + "aerosol.tropoz.tavg-u-hxy-u.mon.GLB", + "aerosol.ttop.tavg-u-hxy-cl.mon.GLB", + "aerosol.ua.tavg-10hPa-hxy-air.day.GLB", + "aerosol.vt100.tavg-100hPa-hy-air.mon.GLB", + "aerosol.wa.tavg-al-hxy-u.mon.GLB", + "aerosol.wetbc.tavg-u-hxy-u.mon.GLB", + "aerosol.wetdust.tavg-u-hxy-u.mon.GLB", + "aerosol.wetoa.tavg-u-hxy-u.mon.GLB", + "aerosol.wetso2.tavg-u-hxy-u.mon.GLB", + "aerosol.wetso4.tavg-u-hxy-u.mon.GLB", + "aerosol.wetss.tavg-u-hxy-u.mon.GLB", + "aerosol.zg.tavg-10hPa-hxy-air.day.GLB", + "atmos.albisccp.tavg-u-hxy-cl.mon.30S-90S", + "atmos.bldep.tavg-u-hxy-u.mon.GLB", + "atmos.bldep.tmax-u-hxy-u.day.GLB", + "atmos.bldep.tmin-u-hxy-u.day.GLB", + "atmos.bldep.tpt-u-hxy-u.3hr.GLB", + "atmos.cl.tavg-al-hxy-u.day.GLB", + "atmos.cl.tavg-al-hxy-u.mon.30S-90S", + "atmos.clc.tavg-al-hxy-u.mon.30S-90S", + "atmos.clc.tavg-al-hxy-u.mon.GLB", + "atmos.clcalipso.tavg-220hPa-hxy-air.mon.30S-90S", + "atmos.clcalipso.tavg-220hPa-hxy-air.mon.GLB", + "atmos.clcalipso.tavg-560hPa-hxy-air.mon.30S-90S", + "atmos.clcalipso.tavg-560hPa-hxy-air.mon.GLB", + "atmos.clcalipso.tavg-840hPa-hxy-air.mon.30S-90S", + "atmos.clcalipso.tavg-840hPa-hxy-air.mon.GLB", + "atmos.clcalipso.tavg-h40-hxy-air.mon.30S-90S", + "atmos.clcalipso.tavg-h40-hxy-air.mon.GLB", + "atmos.cldnci.tavg-u-hxy-cl.mon.GLB", + "atmos.cldncl.tavg-u-hxy-cl.mon.GLB", + "atmos.cldnvi.tavg-u-hxy-u.day.GLB", + "atmos.cldnvi.tavg-u-hxy-u.mon.GLB", + "atmos.cli.tavg-al-hxy-u.day.GLB", + "atmos.cli.tavg-al-hxy-u.mon.30S-90S", + "atmos.clic.tavg-al-hxy-u.mon.30S-90S", + "atmos.clis.tavg-al-hxy-u.mon.30S-90S", + "atmos.clisccp.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clisccp.tavg-p7c-hxy-air.mon.GLB", + "atmos.clivi.tavg-u-hxy-u.3hr.GLB", + "atmos.clivi.tavg-u-hxy-u.day.GLB", + "atmos.clivi.tavg-u-hxy-u.mon.30S-90S", + "atmos.clivimodis.tavg-u-hxy-u.mon.30S-90S", + "atmos.clivimodis.tavg-u-hxy-u.mon.GLB", + "atmos.clmodis.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clmodis.tavg-p7c-hxy-air.mon.GLB", + "atmos.clmodisice.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clmodisice.tavg-p7c-hxy-air.mon.GLB", + "atmos.clmodisiceReff.tavg-u-hxy-u.mon.GLB", + "atmos.clmodisliquid.tavg-p7c-hxy-air.mon.30S-90S", + "atmos.clmodisliquid.tavg-p7c-hxy-air.mon.GLB", + "atmos.clmodisliquidReff.tavg-u-hxy-u.mon.GLB", + "atmos.cls.tavg-al-hxy-u.mon.30S-90S", + "atmos.clt.tavg-u-hxy-lnd.day.GLB", + "atmos.clt.tavg-u-hxy-u.1hr.30S-90S", + "atmos.clt.tavg-u-hxy-u.3hr.GLB", + "atmos.clt.tavg-u-hxy-u.mon.30S-90S", + "atmos.cltc.tavg-u-hxy-u.mon.GLB", + "atmos.cltcalipso.tavg-u-hxy-u.day.GLB", + "atmos.cltcalipso.tavg-u-hxy-u.mon.30S-90S", + "atmos.cltcalipso.tavg-u-hxy-u.mon.GLB", + "atmos.cltcalipso.tpt-u-hxy-u.3hr.GLB", + "atmos.cltisccp.tavg-u-hxy-u.day.GLB", + "atmos.cltisccp.tavg-u-hxy-u.mon.30S-90S", + "atmos.cltisccp.tavg-u-hxy-u.mon.GLB", + "atmos.cltmodis.tavg-u-hxy-u.mon.30S-90S", + "atmos.cltmodis.tavg-u-hxy-u.mon.GLB", + "atmos.clw.tavg-al-hxy-u.day.GLB", + "atmos.clw.tavg-al-hxy-u.mon.30S-90S", + "atmos.clwc.tavg-al-hxy-u.mon.30S-90S", + "atmos.clws.tavg-al-hxy-u.mon.30S-90S", + "atmos.clwvi.tavg-u-hxy-u.3hr.GLB", + "atmos.clwvi.tavg-u-hxy-u.day.GLB", + "atmos.clwvi.tavg-u-hxy-u.mon.30S-90S", + "atmos.clwvimodis.tavg-u-hxy-u.mon.30S-90S", + "atmos.clwvimodis.tavg-u-hxy-u.mon.GLB", + "atmos.co2.tavg-al-hxy-u.mon.GLB", + "atmos.co2.tavg-h2m-hxy-u.mon.GLB", + "atmos.co2.tavg-p19-hxy-air.mon.GLB", + "atmos.co2.tclm-p19-hxy-air.mon.GLB", + "atmos.co2.tclm-u-hm-u.mon.GLB", + "atmos.co23D.tavg-al-hxy-u.mon.GLB", + "atmos.co2mass.tavg-u-hm-u.mon.GLB", + "atmos.dmc.tavg-alh-hxy-u.mon.30S-90S", + "atmos.edt.tavg-al-hxy-u.mon.30S-90S", + "atmos.epfy.tavg-p39-hy-air.day.GLB", + "atmos.epfy.tavg-p39-hy-air.mon.GLB", + "atmos.epfz.tavg-p39-hy-air.day.GLB", + "atmos.epfz.tavg-p39-hy-air.mon.GLB", + "atmos.evspsbl.tavg-u-hxy-lnd.day.GLB", + "atmos.evu.tavg-al-hxy-u.mon.30S-90S", + "atmos.fco2antt.tavg-u-hxy-u.mon.GLB", + "atmos.fco2fos.tavg-u-hxy-u.mon.GLB", + "atmos.fco2nat.tavg-u-hxy-u.mon.GLB", + "atmos.hfls.tavg-u-hxy-is.mon.GRL", + "atmos.hfls.tavg-u-hxy-u.3hr.GLB", + "atmos.hfls.tavg-u-hxy-u.day.GLB", + "atmos.hfls.tavg-u-hxy-u.mon.30S-90S", + "atmos.hfss.tavg-u-hxy-u.3hr.GLB", + "atmos.hfss.tavg-u-hxy-u.day.GLB", + "atmos.hfss.tavg-u-hxy-u.mon.30S-90S", + "atmos.hur.tavg-al-hxy-u.mon.30S-90S", + "atmos.hur.tavg-al-hxy-u.mon.GLB", + "atmos.hur.tavg-p19-hxy-air.mon.30S-90S", + "atmos.hurs.tavg-h2m-hxy-u.1hr.30S-90S", + "atmos.hurs.tavg-h2m-hxy-u.mon.30S-90S", + "atmos.hurs.tmax-h2m-hxy-u.day.GLB", + "atmos.hurs.tmin-h2m-hxy-u.day.GLB", + "atmos.hurs.tpt-h2m-hxy-u.3hr.GLB", + "atmos.hus.tavg-al-hxy-u.mon.30S-90S", + "atmos.hus.tavg-al-hxy-u.mon.GLB", + "atmos.hus.tavg-p19-hxy-u.mon.30S-90S", + "atmos.hus.tpt-al-hxy-u.6hr.GLB", + "atmos.hus.tpt-p7h-hxy-air.6hr.GLB", + "atmos.huss.tavg-h2m-hxy-u.6hr.GLB", + "atmos.huss.tavg-h2m-hxy-u.mon.30S-90S", + "atmos.huss.tpt-h2m-hxy-u.1hr.GLB", + "atmos.intuadse.tavg-u-hxy-u.day.GLB", + "atmos.intuadse.tavg-u-hxy-u.mon.GLB", + "atmos.intuaw.tavg-u-hxy-u.day.GLB", + "atmos.intuaw.tavg-u-hxy-u.mon.GLB", + "atmos.intuaw.tpt-u-hxy-u.6hr.GLB", + "atmos.intvadse.tavg-u-hxy-u.day.GLB", + "atmos.intvadse.tavg-u-hxy-u.mon.GLB", + "atmos.intvaw.tavg-u-hxy-u.day.GLB", + "atmos.intvaw.tavg-u-hxy-u.mon.GLB", + "atmos.intvaw.tpt-u-hxy-u.6hr.GLB", + "atmos.loadbc.tavg-u-hxy-u.day.GLB", + "atmos.loadoa.tavg-u-hxy-u.day.GLB", + "atmos.loadpoa.tavg-u-hxy-u.day.GLB", + "atmos.mc.tavg-alh-hxy-u.mon.GLB", + "atmos.mcd.tavg-alh-hxy-u.mon.30S-90S", + "atmos.mcu.tavg-alh-hxy-u.mon.30S-90S", + "atmos.mcu.tavg-alh-hxy-u.mon.GLB", + "atmos.pctisccp.tavg-u-hxy-cl.day.GLB", + "atmos.pctisccp.tavg-u-hxy-cl.mon.30S-90S", + "atmos.pctisccp.tavg-u-hxy-cl.mon.GLB", + "atmos.pfull.tavg-al-hxy-u.day.GLB", + "atmos.pfull.tavg-al-hxy-u.mon.GLB", + "atmos.pfull.tclm-al-hxy-u.mon.30S-90S", + "atmos.phalf.tavg-alh-hxy-u.mon.GLB", + "atmos.pr.tavg-u-hxy-u.1hr.30S-90S", + "atmos.pr.tavg-u-hxy-u.mon.30S-90S", + "atmos.pr.tmax-u-hxy-u.day.GLB", + "atmos.pr.tpt-u-hxy-u.6hr.GLB", + "atmos.pr17O.tavg-u-hxy-u.mon.GLB", + "atmos.pr18O.tavg-u-hxy-u.mon.GLB", + "atmos.pr2h.tavg-u-hxy-u.mon.GLB", + "atmos.prc.tavg-u-hxy-u.day.GLB", + "atmos.prc.tavg-u-hxy-u.mon.30S-90S", + "atmos.prra.tavg-u-hxy-is.mon.GRL", + "atmos.prra.tavg-u-hxy-lnd.day.GLB", + "atmos.prra.tavg-u-hxy-u.6hr.GLB", + "atmos.prra.tavg-u-hxy-u.mon.30S-90S", + "atmos.prra.tavg-u-hxy-u.mon.GLB", + "atmos.prsn.tavg-u-hxy-is.mon.GRL", + "atmos.prsn.tavg-u-hxy-u.3hr.GLB", + "atmos.prsn.tavg-u-hxy-u.6hr.GLB", + "atmos.prsn.tavg-u-hxy-u.day.GLB", + "atmos.prsn.tavg-u-hxy-u.mon.30S-90S", + "atmos.prsn18O.tavg-u-hxy-u.mon.GLB", + "atmos.prsn2h.tavg-u-hxy-u.mon.GLB", + "atmos.prw.tavg-u-hxy-u.3hr.GLB", + "atmos.prw.tavg-u-hxy-u.day.GLB", + "atmos.prw.tavg-u-hxy-u.mon.30S-90S", + "atmos.prw.tpt-u-hxy-u.6hr.GLB", + "atmos.ps.tavg-u-hxy-u.1hr.GLB", + "atmos.ps.tavg-u-hxy-u.6hr.GLB", + "atmos.ps.tavg-u-hxy-u.mon.30S-90S", + "atmos.ps.tpt-u-hxy-u.1hr.30S-90S", + "atmos.ps.tpt-u-hxy-u.3hr.GLB", + "atmos.ps.tpt-u-hxy-u.6hr.GLB", + "atmos.psl.tavg-u-hxy-u.mon.30S-90S", + "atmos.psl.tpt-u-hxy-u.1hr.GLB", + "atmos.psl.tpt-u-hxy-u.6hr.GLB", + "atmos.ptp.tavg-u-hxy-u.mon.GLB", + "atmos.reffcclwtop.tavg-u-hxy-ccl.mon.GLB", + "atmos.reffclic.tavg-al-hxy-ccl.mon.30S-90S", + "atmos.reffclic.tavg-al-hxy-ccl.mon.GLB", + "atmos.reffclis.tavg-al-hxy-scl.mon.30S-90S", + "atmos.reffclis.tavg-al-hxy-scl.mon.GLB", + "atmos.reffclwc.tavg-al-hxy-ccl.mon.30S-90S", + "atmos.reffclwc.tavg-al-hxy-ccl.mon.GLB", + "atmos.reffclws.tavg-al-hxy-scl.mon.30S-90S", + "atmos.reffclws.tavg-al-hxy-scl.mon.GLB", + "atmos.reffsclwtop.tavg-u-hxy-scl.mon.GLB", + "atmos.rld.tavg-alh-hxy-u.mon.GLB", + "atmos.rld4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rldcs.tavg-alh-hxy-u.mon.GLB", + "atmos.rldcs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rlds.tavg-u-hxy-u.1hr.30S-90S", + "atmos.rlds.tavg-u-hxy-u.1hr.GLB", + "atmos.rlds.tavg-u-hxy-u.3hr.GLB", + "atmos.rlds.tavg-u-hxy-u.6hr.GLB", + "atmos.rlds.tavg-u-hxy-u.day.GLB", + "atmos.rlds.tavg-u-hxy-u.mon.30S-90S", + "atmos.rldscs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rls.tavg-u-hxy-u.mon.GLB", + "atmos.rlu.tavg-alh-hxy-u.mon.GLB", + "atmos.rlu4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rlucs.tavg-alh-hxy-u.mon.GLB", + "atmos.rlucs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rlus.tavg-u-hxy-u.3hr.GLB", + "atmos.rlus.tavg-u-hxy-u.day.GLB", + "atmos.rlus.tavg-u-hxy-u.mon.30S-90S", + "atmos.rlut.tavg-u-hxy-u.3hr.GLB", + "atmos.rlut.tavg-u-hxy-u.day.GLB", + "atmos.rlut.tavg-u-hxy-u.mon.30S-90S", + "atmos.rlut4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rlutcs.tavg-u-hxy-u.3hr.GLB", + "atmos.rlutcs.tavg-u-hxy-u.day.GLB", + "atmos.rlutcs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rlutcs4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rsd.tavg-alh-hxy-u.mon.GLB", + "atmos.rsd4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsdcs.tavg-alh-hxy-u.mon.GLB", + "atmos.rsdcs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsds.tavg-u-hxy-u.1hr.30S-90S", + "atmos.rsds.tavg-u-hxy-u.1hr.GLB", + "atmos.rsds.tavg-u-hxy-u.3hr.GLB", + "atmos.rsds.tavg-u-hxy-u.6hr.GLB", + "atmos.rsds.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsdscs.tavg-u-hxy-u.day.GLB", + "atmos.rsdscs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsdt.tavg-u-hxy-u.day.GLB", + "atmos.rsdt.tavg-u-hxy-u.mon.30S-90S", + "atmos.rss.tavg-u-hxy-u.mon.GLB", + "atmos.rsu.tavg-alh-hxy-u.mon.GLB", + "atmos.rsu4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsucs.tavg-alh-hxy-u.mon.GLB", + "atmos.rsucs4co2.tavg-alh-hxy-u.mon.GLB", + "atmos.rsus.tavg-u-hxy-u.3hr.GLB", + "atmos.rsus.tavg-u-hxy-u.day.GLB", + "atmos.rsus.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsuscs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsut.tavg-u-hxy-u.3hr.GLB", + "atmos.rsut.tavg-u-hxy-u.day.GLB", + "atmos.rsut.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsut4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rsutcs.tavg-u-hxy-u.3hr.GLB", + "atmos.rsutcs.tavg-u-hxy-u.day.GLB", + "atmos.rsutcs.tavg-u-hxy-u.mon.30S-90S", + "atmos.rsutcs4co2.tavg-u-hxy-u.mon.GLB", + "atmos.rtmt.tavg-u-hxy-u.mon.GLB", + "atmos.rv850.tpt-850hPa-hxy-air.6hr.GLB", + "atmos.scldncl.tavg-u-hxy-scl.mon.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.1hr.30S-90S", + "atmos.sfcWind.tavg-h10m-hxy-u.6hr.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.mon.30S-90S", + "atmos.sfcWind.tmax-h10m-hxy-u.day.GLB", + "atmos.ta.tavg-700hPa-hxy-air.day.GLB", + "atmos.ta.tavg-al-hxy-u.mon.30S-90S", + "atmos.ta.tavg-al-hxy-u.mon.GLB", + "atmos.ta.tavg-p19-hxy-air.mon.30S-90S", + "atmos.ta.tavg-p39-hy-air.day.GLB", + "atmos.ta.tavg-p39-hy-air.mon.GLB", + "atmos.ta.tpt-al-hxy-u.6hr.GLB", + "atmos.ta.tpt-p5u-hxy-u.6hr.GLB", + "atmos.ta.tpt-p7h-hxy-air.6hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.1hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.6hr.GLB", + "atmos.tas.tavg-h2m-hxy-u.mon.30S-90S", + "atmos.tas.tmaxavg-h2m-hxy-u.mon.30S-90S", + "atmos.tas.tminavg-h2m-hxy-u.mon.30S-90S", + "atmos.tauu.tavg-u-hxy-u.day.GLB", + "atmos.tauunoegw.tavg-p39-hy-air.day.GLB", + "atmos.tauunowgw.tavg-p39-hy-air.day.GLB", + "atmos.tauuogw.tavg-p39-hy-air.day.GLB", + "atmos.tauv.tavg-u-hxy-u.day.GLB", + "atmos.tauvnogw.tavg-p39-hy-air.day.GLB", + "atmos.tauvogw.tavg-p39-hy-air.day.GLB", + "atmos.tdps.tavg-h2m-hxy-u.mon.GLB", + "atmos.tnt.tavg-al-hxy-u.mon.GLB", + "atmos.tntmp.tavg-p39-hy-air.day.GLB", + "atmos.tntmp.tavg-p39-hy-air.mon.GLB", + "atmos.tntrl.tavg-al-hxy-u.mon.GLB", + "atmos.tntrl.tavg-p39-hy-air.day.GLB", + "atmos.tntrl.tavg-p39-hy-air.mon.GLB", + "atmos.tntrs.tavg-al-hxy-u.mon.GLB", + "atmos.tntrs.tavg-p39-hy-air.day.GLB", + "atmos.tntrs.tavg-p39-hy-air.mon.GLB", + "atmos.ts.tavg-u-hxy-u.6hr.GLB", + "atmos.ts.tavg-u-hxy-u.day.GLB", + "atmos.ts.tavg-u-hxy-u.mon.30S-90S", + "atmos.ts.tpt-u-hxy-u.3hr.GLB", + "atmos.ts.tpt-u-hxy-u.6hr.GLB", + "atmos.ua.tavg-al-hxy-u.mon.GLB", + "atmos.ua.tavg-p19-hxy-air.mon.30S-90S", + "atmos.ua.tavg-p39-hy-air.day.GLB", + "atmos.ua.tavg-p39-hy-air.mon.GLB", + "atmos.ua.tpt-al-hxy-u.6hr.GLB", + "atmos.ua.tpt-h100m-hxy-u.1hr.GLB", + "atmos.ua.tpt-p5u-hxy-air.6hr.GLB", + "atmos.ua.tpt-p7h-hxy-air.6hr.GLB", + "atmos.uas.tavg-h10m-hxy-u.mon.30S-90S", + "atmos.uas.tpt-h10m-hxy-u.1hr.GLB", + "atmos.uas.tpt-h10m-hxy-u.6hr.GLB", + "atmos.utendepfd.tavg-p39-hy-air.day.GLB", + "atmos.utendepfd.tavg-p39-hy-air.mon.GLB", + "atmos.utendnogw.tavg-p39-hy-air.day.GLB", + "atmos.utendnogw.tavg-p39-hy-air.mon.GLB", + "atmos.utendogw.tavg-p39-hy-air.day.GLB", + "atmos.utendogw.tavg-p39-hy-air.mon.GLB", + "atmos.utendvtem.tavg-p39-hy-air.day.GLB", + "atmos.utendwtem.tavg-p39-hy-air.day.GLB", + "atmos.va.tavg-al-hxy-u.mon.GLB", + "atmos.va.tavg-p19-hxy-air.mon.30S-90S", + "atmos.va.tavg-p39-hy-air.mon.GLB", + "atmos.va.tpt-al-hxy-u.6hr.GLB", + "atmos.va.tpt-h100m-hxy-u.1hr.GLB", + "atmos.va.tpt-p5u-hxy-air.6hr.GLB", + "atmos.va.tpt-p7h-hxy-air.6hr.GLB", + "atmos.vas.tavg-h10m-hxy-u.mon.30S-90S", + "atmos.vas.tpt-h10m-hxy-u.1hr.GLB", + "atmos.vas.tpt-h10m-hxy-u.6hr.GLB", + "atmos.vtem.tavg-p39-hy-air.day.GLB", + "atmos.vtem.tavg-p39-hy-air.mon.GLB", + "atmos.wap.tavg-p19-hxy-air.mon.30S-90S", + "atmos.wsg.tmax-h100m-hxy-u.1hr.GLB", + "atmos.wsg.tmax-h10m-hxy-u.1hr.GLB", + "atmos.wtem.tavg-p39-hy-air.day.GLB", + "atmos.wtem.tavg-p39-hy-air.mon.GLB", + "atmos.zg.tavg-1000hPa-hxy-air.day.GLB", + "atmos.zg.tavg-500hPa-hxy-air.day.GLB", + "atmos.zg.tavg-al-hxy-u.mon.GLB", + "atmos.zg.tavg-p19-hxy-air.mon.30S-90S", + "atmos.zg.tavg-p39-hy-air.day.GLB", + "atmos.zg.tavg-p39-hy-air.mon.GLB", + "atmos.zg.tpt-500hPa-hxy-air.6hr.GLB", + "atmos.zg.tpt-al-hxy-u.6hr.GLB", + "atmos.zg.tpt-p3-hxy-air.6hr.GLB", + "atmos.zg.tpt-p7h-hxy-air.6hr.GLB", + "atmos.ztp.tavg-u-hxy-u.mon.GLB", + "atmosChem.c2h4.tavg-al-hxy-u.mon.GLB", + "atmosChem.c2h5oh.tavg-al-hxy-u.mon.GLB", + "atmosChem.c4h10.tavg-al-hxy-u.mon.GLB", + "atmosChem.cfc11.tavg-u-hm-u.mon.GLB", + "atmosChem.cfc113.tavg-u-hm-u.mon.GLB", + "atmosChem.cfc12.tavg-u-hm-u.mon.GLB", + "atmosChem.ch3oh.tavg-al-hxy-u.mon.GLB", + "atmosChem.ch4.tavg-al-hxy-u.mon.GLB", + "atmosChem.ch4.tavg-p39-hy-air.mon.GLB", + "atmosChem.ch4losssoil.tavg-u-hxy-u.mon.GLB", + "atmosChem.ch4ref.ti-al-hxy-u.fx.GLB", + "atmosChem.chegph2oo1d.tavg-al-hxy-u.mon.GLB", + "atmosChem.chepnh4.tavg-al-hxy-u.mon.GLB", + "atmosChem.chepno3.tavg-al-hxy-u.mon.GLB", + "atmosChem.dms.tavg-al-hxy-u.mon.30S-90S", + "atmosChem.dms.tavg-al-hxy-u.mon.GLB", + "atmosChem.do3chm.tavg-al-hxy-u.mon.GLB", + "atmosChem.dryh2.tavg-u-hxy-u.mon.GLB", + "atmosChem.dryhno3.tavg-u-hxy-u.mon.GLB", + "atmosChem.drynh3.tavg-u-hxy-u.mon.GLB", + "atmosChem.drynh4.tavg-u-hxy-u.mon.GLB", + "atmosChem.drynoy.tavg-u-hxy-u.mon.GLB", + "atmosChem.e90inst.tpt-al-hxy-u.mon.GLB", + "atmosChem.emiach4.tavg-u-hxy-u.mon.GLB", + "atmosChem.emiavnox.tavg-al-hxy-u.mon.GLB", + "atmosChem.emic2h4.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic2h5oh.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic2h6.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic3h6.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic3h8.tavg-u-hxy-u.mon.GLB", + "atmosChem.emic4h10.tavg-u-hxy-u.mon.GLB", + "atmosChem.emich3oh.tavg-u-hxy-u.mon.GLB", + "atmosChem.emich4.tavg-u-hxy-u.mon.GLB", + "atmosChem.emih2.tavg-u-hxy-u.mon.GLB", + "atmosChem.emilkch4.tavg-u-hxy-u.mon.GLB", + "atmosChem.h2.tavg-al-hxy-u.mon.GLB", + "atmosChem.h2loss.tavg-al-hxy-u.mon.GLB", + "atmosChem.h2prod.tavg-al-hxy-u.mon.GLB", + "atmosChem.hcfc22.tavg-u-hm-u.mon.GLB", + "atmosChem.meanage.tavg-al-hxy-u.mon.GLB", + "atmosChem.meanage.tavg-p39-hy-air.mon.GLB", + "atmosChem.n2o.tavg-al-hxy-u.mon.GLB", + "atmosChem.n2o.tavg-p39-hy-air.mon.GLB", + "atmosChem.o3.tavg-al-hxy-u.mon.GLB", + "atmosChem.o3.tavg-p19-hxy-air.mon.GLB", + "atmosChem.o3.tavg-p39-hy-air.mon.GLB", + "atmosChem.o3.tpt-al-hxy-u.mon.GLB", + "atmosChem.o3ref.tclm-al-hxy-u.fx.GLB", + "atmosChem.o3ref.ti-al-hxy-u.fx.GLB", + "atmosChem.o3ste.tavg-al-hxy-u.mon.GLB", + "atmosChem.rlutch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rlutcsch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rlutcso3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rluto3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsutch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsutcsch4ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsutcso3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.rsuto3ref.tavg-u-hxy-u.mon.GLB", + "atmosChem.stratch4loss.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropch4loss.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropch4lossoh.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropdo3chm.tavg-al-hxy-u.mon.GLB", + "atmosChem.tropo3ste.tavg-al-hxy-u.mon.GLB", + "atmosChem.wethno3.tavg-al-hxy-u.mon.GLB", + "atmosChem.wetnh3.tavg-u-hxy-u.mon.GLB", + "atmosChem.wetnh4.tavg-u-hxy-u.mon.GLB", + "atmosChem.wetno3.tavg-al-hxy-u.mon.GLB", + "atmosChem.wetnoy.tavg-u-hxy-u.mon.GLB", + "land.albc.tavg-u-hxy-veg.mon.GLB", + "land.areacellr.ti-u-hxy-u.fx.GLB", + "land.baresoilFrac.tavg-u-hxy-u.mon.GLB", + "land.burntFractionAll.tavg-u-hxy-u.mon.GLB", + "land.cGeologicStorage.tavg-u-hxy-u.mon.GLB", + "land.cLand.tavg-u-hxy-lnd.mon.GLB", + "land.cLeaf.tavg-u-hxy-lnd.mon.GLB", + "land.cLitter.tavg-u-hxy-lnd.mon.GLB", + "land.cnc.tavg-u-hxy-u.mon.GLB", + "land.cProduct.tavg-u-hxy-lnd.mon.GLB", + "land.cRoot.tavg-u-hxy-lnd.mon.GLB", + "land.cropFrac.tavg-u-hxy-u.mon.GLB", + "land.cSoil.tavg-d100cm-hxy-lnd.mon.GLB", + "land.cSoil.tavg-sl-hxy-lnd.mon.GLB", + "land.cSoil.tavg-u-hxy-lnd.mon.GLB", + "land.cStem.tavg-u-hxy-lnd.mon.GLB", + "land.cVeg.tavg-u-hxy-lnd.mon.GLB", + "land.dcw.tavg-u-hxy-lnd.day.GLB", + "land.depthl.ti-u-hxy-u.fx.GLB", + "land.depthsl.ti-u-hxy-u.fx.GLB", + "land.dslw.tavg-u-hxy-lnd.day.GLB", + "land.evspsblpot.tavg-u-hxy-lnd.day.GLB", + "land.evspsblpot.tavg-u-hxy-lnd.mon.GLB", + "land.evspsblsoi.tavg-u-hxy-u.day.GLB", + "land.evspsblveg.tavg-u-hxy-u.day.GLB", + "land.fAnthDisturb.tavg-u-hxy-lnd.mon.GLB", + "land.fBNF.tavg-u-hxy-lnd.mon.GLB", + "land.fCLandToOcean.tavg-u-hxy-lnd.mon.GLB", + "land.fDeforestToAtmos.tavg-u-hxy-lnd.mon.GLB", + "land.fDeforestToProduct.tavg-u-hxy-lnd.mon.GLB", + "land.fFire.tavg-u-hxy-lnd.mon.GLB", + "land.fFireAll.tavg-u-hxy-lnd.mon.GLB", + "land.fFireNat.tavg-u-hxy-lnd.mon.GLB", + "land.fHarvestToAtmos.tavg-u-hxy-lnd.mon.GLB", + "land.fHarvestToGeologicStorage.tavg-u-hxy-lnd.mon.GLB", + "land.fHarvestToProduct.tavg-u-hxy-lnd.mon.GLB", + "land.fLitterSoil.tavg-u-hxy-lnd.mon.GLB", + "land.fLuc.tavg-u-hxy-lnd.mon.GLB", + "land.fN2O.tavg-u-hxy-lnd.mon.GLB", + "land.fNAnthDisturb.tavg-u-hxy-lnd.mon.GLB", + "land.fNdep.tavg-u-hxy-lnd.mon.GLB", + "land.fNfert.tavg-u-hxy-lnd.mon.GLB", + "land.fNgas.tavg-u-hxy-lnd.mon.GLB", + "land.fNgasFire.tavg-u-hxy-lnd.mon.GLB", + "land.fNLandToOcean.tavg-u-hxy-lnd.mon.GLB", + "land.fNleach.tavg-u-hxy-lnd.mon.GLB", + "land.fNLitterSoil.tavg-u-hxy-lnd.mon.GLB", + "land.fNloss.tavg-u-hxy-lnd.mon.GLB", + "land.fNnetmin.tavg-u-hxy-lnd.mon.GLB", + "land.fNOx.tavg-u-hxy-lnd.mon.GLB", + "land.fNProduct.tavg-u-hxy-lnd.mon.GLB", + "land.fNup.tavg-u-hxy-lnd.mon.GLB", + "land.fNVegLitter.tavg-u-hxy-lnd.mon.GLB", + "land.fNVegSoil.tavg-u-hxy-lnd.mon.GLB", + "land.fProductDecomp.tavg-u-hxy-lnd.mon.GLB", + "land.fVegLitter.tavg-u-hxy-lnd.mon.GLB", + "land.fVegSoil.tavg-u-hxy-lnd.mon.GLB", + "land.gpp.tavg-u-hxy-lnd.mon.GLB", + "land.gppVgt.tavg-u-hxy-multi.day.GLB", + "land.grassFrac.tavg-u-hxy-u.mon.GLB", + "land.laiVgt.tavg-u-hxy-multi.day.GLB", + "land.landCoverFrac.tavg-u-hxy-u.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.day.GLB", + "land.mrrob.tavg-u-hxy-lnd.day.GLB", + "land.mrros.tavg-u-hxy-lnd.day.GLB", + "land.mrsfl.tavg-sl-hxy-lnd.day.GLB", + "land.mrsfl.tavg-sl-hxy-lnd.mon.GLB", + "land.mrsll.tavg-sl-hxy-lnd.day.GLB", + "land.mrsll.tavg-sl-hxy-lnd.mon.GLB", + "land.mrso.tavg-u-hxy-lnd.day.GLB", + "land.mrsol.tavg-d10cm-hxy-lnd.day.GLB", + "land.mrsol.tavg-sl-hxy-lnd.day.GLB", + "land.mrsol.tavg-sl-hxy-lnd.mon.GLB", + "land.mrsol.tpt-d10cm-hxy-lnd.3hr.GLB", + "land.mrsow.tavg-u-hxy-lnd.day.GLB", + "land.mrtws.tavg-u-hxy-lnd.day.GLB", + "land.mrtws.tavg-u-hxy-lnd.mon.GLB", + "land.nbp.tavg-u-hxy-lnd.mon.GLB", + "land.nep.tavg-u-hxy-lnd.mon.GLB", + "land.nLand.tavg-u-hxy-lnd.mon.GLB", + "land.nLitter.tavg-u-hxy-lnd.mon.GLB", + "land.nMineral.tavg-u-hxy-lnd.mon.GLB", + "land.npp.tavg-u-hxy-lnd.mon.GLB", + "land.nProduct.tavg-u-hxy-lnd.mon.GLB", + "land.nSoil.tavg-u-hxy-lnd.mon.GLB", + "land.nVeg.tavg-u-hxy-lnd.mon.GLB", + "land.orog.ti-u-hxy-u.fx.30S-90S", + "land.pastureFrac.tavg-u-hxy-u.mon.GLB", + "land.prveg.tavg-u-hxy-lnd.mon.GLB", + "land.ra.tavg-u-hxy-lnd.mon.GLB", + "land.residualFrac.tavg-u-hxy-u.mon.GLB", + "land.rh.tavg-u-hxy-lnd.mon.GLB", + "land.rivi.tavg-u-hxy-lnd.day.GLB", + "land.rivo.tavg-u-hxy-lnd.day.GLB", + "land.rsds.tavg-u-hxy-lnd.mon.GLB", + "land.rsds.tavg-u-hxy-sn.mon.GLB", + "land.rsus.tavg-u-hxy-lnd.mon.GLB", + "land.rsus.tavg-u-hxy-sn.mon.GLB", + "land.sftgif.tavg-u-hxy-u.mon.GLB", + "land.sftlaf.ti-u-hxy-u.fx.GLB", + "land.shrubFrac.tavg-u-hxy-u.mon.GLB", + "land.srfrad.tavg-u-hxy-u.3hr.GLB", + "land.tas.tavg-u-hxy-u.1hr.30S-90S", + "land.tas.tavg-u-hxy-u.1hr.GLB", + "land.tran.tavg-u-hxy-lnd.mon.GLB", + "land.treeFrac.tavg-u-hxy-u.mon.GLB", + "land.tsl.tavg-sl-hxy-lnd.day.GLB", + "land.tsl.tavg-sl-hxy-lnd.mon.GLB", + "land.tslsi.tavg-u-hxy-u.day.GLB", + "land.tslsi.tpt-u-hxy-lsi.3hr.GLB", + "land.vegFrac.tavg-u-hxy-u.mon.GLB", + "land.vegHeight.tavg-u-hxy-tree.mon.GLB", + "land.vegHeight.tavg-u-hxy-veg.mon.GLB", + "land.wetlandCH4.tavg-u-hxy-lnd.mon.GLB", + "land.wtd.tavg-u-hxy-lnd.day.GLB", + "landIce.acabf.tavg-u-hxy-is.mon.GLB", + "landIce.hfdsn.tavg-u-hxy-lnd.mon.GLB", + "landIce.hfgeoubed.ti-u-hxy-gis.fx.GRL", + "landIce.hfls.tavg-u-hxy-is.mon.GLB", + "landIce.hfss.tavg-u-hxy-is.mon.GLB", + "landIce.icem.tavg-u-hxy-is.mon.GLB", + "landIce.litemptop.tavg-u-hxy-is.mon.GLB", + "landIce.lithk.ti-u-hxy-is.fx.GRL", + "landIce.lithk.ti-u-hxy-u.fx.GLB", + "landIce.mrro.tavg-u-hxy-is.mon.GLB", + "landIce.orog.tavg-u-hxy-is.mon.GLB", + "landIce.pflw.tavg-u-hxy-lnd.mon.GLB", + "landIce.prra.tavg-u-hxy-is.mon.GLB", + "landIce.prsn.tavg-u-hxy-is.mon.GLB", + "landIce.rlds.tavg-u-hxy-is.mon.GLB", + "landIce.rlus.tavg-u-hxy-is.mon.GLB", + "landIce.rsds.tavg-u-hxy-is.mon.GLB", + "landIce.rsus.tavg-u-hxy-is.mon.GLB", + "landIce.sbl.tavg-u-hxy-is.mon.GLB", + "landIce.sbl.tavg-u-hxy-lnd.mon.GLB", + "landIce.sbl.tavg-u-hxy-u.mon.GLB", + "landIce.sftflf.tavg-u-hxy-u.mon.GLB", + "landIce.sftflf.ti-u-hxy-u.fx.GLB", + "landIce.sftgrf.tavg-u-hxy-u.mon.GLB", + "landIce.sftgrf.ti-u-hxy-u.fx.GLB", + "landIce.snc.tavg-u-hxy-is.mon.GLB", + "landIce.snd.tavg-u-hxy-lnd.mon.GLB", + "landIce.snicem.tavg-u-hxy-is.mon.GLB", + "landIce.snicem.tavg-u-hxy-is.mon.GRL", + "landIce.snm.tavg-u-hxy-is.mon.GLB", + "landIce.snm.tavg-u-hxy-lnd.mon.GLB", + "landIce.snrefr.tavg-u-hxy-is.mon.GLB", + "landIce.snw.tavg-u-hxy-lnd.day.GLB", + "landIce.sootsn.tavg-u-hxy-lnd.mon.GLB", + "landIce.tas.tavg-u-hxy-is.mon.GLB", + "landIce.topg.ti-u-hxy-gis.fx.GRL", + "landIce.tpf.tavg-u-hxy-lnd.mon.GLB", + "landIce.ts.tavg-u-hxy-is.mon.GLB", + "landIce.tsn.tavg-u-hxy-is.mon.GLB", + "landIce.tsn.tavg-u-hxy-lnd.mon.GLB", + "ocean.absscint.tavg-op4-hxy-sea.mon.GLB", + "ocean.agessc.tavg-ol-hxy-sea.mon.GLB", + "ocean.bigthetao.tavg-ol-hm-sea.mon.GLB", + "ocean.bigthetao.tavg-ol-hxy-sea.dec.GLB", + "ocean.bigthetao.tavg-op20bar-hxy-sea.day.GLB", + "ocean.chcint.tavg-op4-hxy-sea.mon.GLB", + "ocean.ficeberg.tavg-ol-hxy-sea.3hr.GLB", + "ocean.ficeberg.tavg-ol-hxy-sea.mon.GLB", + "ocean.ficeberg.tavg-u-hxy-sea.mon.GLB", + "ocean.flandice.tavg-u-hxy-sea.3hr.GLB", + "ocean.flandice.tavg-u-hxy-sea.mon.GLB", + "ocean.friver.tavg-u-hxy-sea.3hr.GLB", + "ocean.friver.tavg-u-hxy-sea.mon.GLB", + "ocean.hfbasin.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpmadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpmdiff.tavg-u-hyb-sea.mon.GLB", + "ocean.hfbasinpsmadv.tavg-u-hyb-sea.mon.GLB", + "ocean.hfds.tavg-u-hxy-sea.3hr.GLB", + "ocean.hfds.tavg-u-hxy-sea.mon.30S-90S", + "ocean.hfgeou.tavg-u-hxy-sea.mon.GLB", + "ocean.hfrunoffds.tavg-ol-hxy-sea.3hr.GLB", + "ocean.hfx.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfx.tavg-u-hxy-sea.day.GLB", + "ocean.hfx.tavg-u-hxy-sea.mon.GLB", + "ocean.hfy.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfy.tavg-u-hxy-sea.day.GLB", + "ocean.hfy.tavg-u-hxy-sea.mon.GLB", + "ocean.htovgyre.tavg-u-hyb-sea.mon.GLB", + "ocean.htovovrt.tavg-u-hyb-sea.mon.GLB", + "ocean.masscello.tavg-ol-hxy-sea.dec.GLB", + "ocean.masso.tavg-u-hm-sea.dec.GLB", + "ocean.masso.tavg-u-hm-sea.mon.GLB", + "ocean.mlotst.tavg-u-hxy-sea.day.GLB", + "ocean.mlotst.tavg-u-hxy-sea.mon.30S-90S", + "ocean.mlotst.tmax-u-hxy-sea.mon.GLB", + "ocean.mlotst.tmin-u-hxy-sea.mon.GLB", + "ocean.mpw.tavg-u-hxy-sea.mon.GLB", + "ocean.mpw.tpt-u-hxy-sea.3hr.GLB", + "ocean.mpwswell.tavg-u-hxy-sea.mon.GLB", + "ocean.mpwswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.mpwwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.mpwwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.msftbarot.tavg-u-hxy-sea.mon.GLB", + "ocean.msftm.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftm.tavg-rho-hyb-sea.mon.GLB", + "ocean.msfty.tavg-ol-ht-sea.mon.GLB", + "ocean.msfty.tavg-rho-ht-sea.mon.GLB", + "ocean.obvfsq.tavg-ol-hxy-sea.mon.GLB", + "ocean.opottemptend.tavg-ol-hxy-sea.yr.GLB", + "ocean.pbo.tavg-u-hxy-sea.mon.GLB", + "ocean.pfscint.tavg-op4-hxy-sea.mon.GLB", + "ocean.phcint.tavg-op4-hxy-sea.mon.GLB", + "ocean.pso.tavg-u-hxy-sea.mon.GLB", + "ocean.rsds.tavg-u-hxy-ifs.mon.GLB", + "ocean.rsntds.tavg-u-hxy-sea.3hr.GLB", + "ocean.rsus.tavg-u-hxy-ifs.mon.GLB", + "ocean.scint.tavg-op4-hxy-sea.mon.GLB", + "ocean.sduo.tavg-u-hxy-sea.mon.GLB", + "ocean.sduo.tpt-u-hxy-sea.3hr.GLB", + "ocean.sdvo.tavg-u-hxy-sea.mon.GLB", + "ocean.sdvo.tpt-u-hxy-sea.3hr.GLB", + "ocean.sfdsi.tavg-u-hxy-sea.3hr.GLB", + "ocean.sfx.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfx.tavg-u-hxy-sea.mon.GLB", + "ocean.sfy.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfy.tavg-u-hxy-sea.mon.GLB", + "ocean.sltbasin.tavg-u-hyb-sea.mon.GLB", + "ocean.sltovgyre.tavg-u-hyb-sea.mon.GLB", + "ocean.sltovovrt.tavg-u-hyb-sea.mon.GLB", + "ocean.so.tavg-ol-hm-sea.mon.GLB", + "ocean.so.tavg-ol-hxy-sea.dec.GLB", + "ocean.so.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.sob.tavg-u-hxy-sea.mon.GLB", + "ocean.sos.tavg-u-hm-sea.mon.30S-90S", + "ocean.sos.tavg-u-hm-sea.mon.GLB", + "ocean.sw17O.tavg-ol-hxy-sea.mon.GLB", + "ocean.sw18O.tavg-ol-hxy-sea.mon.GLB", + "ocean.sw2H.tavg-ol-hxy-sea.mon.GLB", + "ocean.swh.tavg-u-hxy-sea.mon.GLB", + "ocean.swh.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhmax.tmax-u-hxy-sea.mon.GLB", + "ocean.swhmax.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhswell.tavg-u-hxy-sea.mon.GLB", + "ocean.swhswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.swhwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.swhwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.tauuo.tavg-u-hxy-sea.3hr.GLB", + "ocean.tauuo.tavg-u-hxy-sea.dec.GLB", + "ocean.tauvo.tavg-u-hxy-sea.3hr.GLB", + "ocean.tauvo.tavg-u-hxy-sea.dec.GLB", + "ocean.thetao.tavg-ol-hm-sea.mon.GLB", + "ocean.thetao.tavg-ol-hxy-sea.dec.GLB", + "ocean.thetao.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.thetao.tavg-op20bar-hxy-sea.day.GLB", + "ocean.thkcello.tavg-ol-hxy-sea.dec.GLB", + "ocean.tob.tavg-u-hxy-sea.mon.GLB", + "ocean.tos.tavg-u-hm-sea.mon.GLB", + "ocean.tos.tavg-u-hxy-sea.mon.30S-90S", + "ocean.tos.tpt-u-hxy-sea.3hr.GLB", + "ocean.tossq.tavg-u-hxy-sea.day.GLB", + "ocean.umo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.uo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.uos.tavg-u-hxy-sea.day.GLB", + "ocean.vmo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.vo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.volcello.tavg-ol-hxy-sea.dec.GLB", + "ocean.volcello.tavg-ol-hxy-sea.mon.GLB", + "ocean.volcello.tavg-ol-hxy-sea.yr.GLB", + "ocean.volcello.ti-ol-hxy-sea.fx.GLB", + "ocean.volo.tavg-u-hm-sea.dec.GLB", + "ocean.volo.tavg-u-hm-sea.mon.GLB", + "ocean.vos.tavg-u-hxy-sea.day.GLB", + "ocean.wdir.tavg-u-hxy-sea.mon.GLB", + "ocean.wdir.tpt-u-hxy-sea.3hr.GLB", + "ocean.wdirswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wdirswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wdirwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wdirwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.wfcorr.tavg-u-hxy-sea.mon.GLB", + "ocean.wfo.tavg-u-hxy-sea.3hr.GLB", + "ocean.wfo.tavg-u-hxy-sea.mon.GLB", + "ocean.wmo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.wo.tavg-ol-hxy-sea.mon.30S-90S", + "ocean.wpdir.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdir.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpdirswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdirswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpdirwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wpdirwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.wpp.tavg-u-hxy-sea.mon.GLB", + "ocean.wpp.tpt-u-hxy-sea.3hr.GLB", + "ocean.wppswell.tavg-u-hxy-sea.mon.GLB", + "ocean.wppswell.tpt-u-hxy-sea.3hr.GLB", + "ocean.wppwindsea.tavg-u-hxy-sea.mon.GLB", + "ocean.wppwindsea.tpt-u-hxy-sea.3hr.GLB", + "ocean.zos.tavg-u-hxy-sea.mon.30S-90S", + "ocean.zossq.tavg-u-hxy-sea.mon.GLB", + "ocean.zostoga.tavg-u-hm-sea.day.GLB", + "ocnBgchem.bacc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.calc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chl.tavg-d0m-hxy-sea.day.GLB", + "ocnBgchem.chl.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chl.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chlcalc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chldiat.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chldiat.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chldiaz.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chldiaz.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chlmisc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chlmisc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chlpico.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.chlpico.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.detoc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dfe.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.dfe.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.dfe.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissic.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.dissic.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissoc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dmso.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.dmso.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.dpco2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.dpo2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.expc.tavg-d1000m-hxy-sea.mon.GLB", + "ocnBgchem.expc.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.expc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.expcalc.tavg-d1000m-hxy-sea.mon.GLB", + "ocnBgchem.expcalc.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.expcalc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.fgco2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fric.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.froc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fsfe.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fsn.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.graz.tavg-ol-hxy-sea.mon.30S-90S", + "ocnBgchem.graz.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.icfriver.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intdic.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intdoc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intparag.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbfe.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbn.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbp.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpbsi.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpcalcite.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpn2.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpoc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpp.tavg-u-hxy-sea.day.GLB", + "ocnBgchem.intpp.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpp.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppcalc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppdiat.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppdiaz.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppmisc.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intppnitrate.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.intpppico.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.nh4.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.nh4.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.no3.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.no3.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.o2.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.ocfriver.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.ph.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.ph.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phyc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phyc.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.phyc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phycalc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phycalc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phydiat.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phydiat.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phydiaz.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phydiaz.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phymisc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phymisc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.phypico.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.phypico.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.po4.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.pp.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.si.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.spco2.tavg-u-hxy-sea.mon.30S-90S", + "ocnBgchem.spco2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.talk.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zmeso.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zmeso.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zmicro.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zmicro.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zmisc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zmisc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.zooc.tavg-d0m-hxy-sea.mon.30S-90S", + "ocnBgchem.zooc.tavg-ol-hxy-sea.mon.GLB", + "seaIce.evspsbl.tavg-u-hxy-si.mon.GLB", + "seaIce.prra.tavg-u-hxy-si.mon.GLB", + "seaIce.prsn.tavg-u-hxy-si.mon.GLB", + "seaIce.rlds.tavg-u-hxy-si.day.GLB", + "seaIce.rlds.tavg-u-hxy-si.mon.GLB", + "seaIce.rlus.tavg-u-hxy-si.day.GLB", + "seaIce.rlus.tavg-u-hxy-si.mon.GLB", + "seaIce.rsds.tavg-u-hxy-si.day.GLB", + "seaIce.rsds.tavg-u-hxy-si.mon.GLB", + "seaIce.rsus.tavg-u-hxy-si.day.GLB", + "seaIce.rsus.tavg-u-hxy-si.mon.GLB", + "seaIce.sbl.tavg-u-hxy-si.mon.GLB", + "seaIce.siage.tavg-u-hxy-si.day.GLB", + "seaIce.siage.tavg-u-hxy-si.mon.30S-90S", + "seaIce.siarea.tavg-u-hm-u.mon.NH", + "seaIce.siarea.tavg-u-hm-u.mon.SH", + "seaIce.siareaacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.siconc.tavg-u-hxy-u.mon.30S-90S", + "seaIce.siconca.tavg-u-hxy-u.day.GLB", + "seaIce.siconca.tavg-u-hxy-u.mon.GLB", + "seaIce.sidconcdyn.tavg-u-hxy-sea.mon.GLB", + "seaIce.sidconcth.tavg-u-hxy-sea.mon.GLB", + "seaIce.sidmassdyn.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthsi.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassgrowthwat.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmeltbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmeltlat.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassmelttop.tavg-u-hxy-si.mon.GLB", + "seaIce.sidmassth.tavg-u-hxy-si.mon.GLB", + "seaIce.sieqthick.tavg-u-hxy-si.mon.GLB", + "seaIce.siextent.tavg-u-hm-u.mon.NH", + "seaIce.siextent.tavg-u-hm-u.mon.SH", + "seaIce.siflcondbot.tavg-u-hxy-si.day.GLB", + "seaIce.siflcondbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflcondtop.tavg-u-hxy-si.day.GLB", + "seaIce.siflcondtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sifllattop.tavg-u-hxy-si.day.GLB", + "seaIce.sifllattop.tavg-u-hxy-si.mon.GLB", + "seaIce.siflsensbot.tavg-u-hxy-si.day.GLB", + "seaIce.siflsensbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflsenstop.tavg-u-hxy-si.day.GLB", + "seaIce.siflsenstop.tavg-u-hxy-si.mon.GLB", + "seaIce.siflswdbot.tavg-u-hxy-si.day.GLB", + "seaIce.siflswdbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sihc.tavg-u-hxy-sea.day.GLB", + "seaIce.sihc.tavg-u-hxy-sea.mon.GLB", + "seaIce.siitdconc.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdsnconc.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdsnthick.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdthick.tavg-u-hxy-si.mon.GLB", + "seaIce.simassacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.simpconc.tavg-u-hxy-si.mon.GLB", + "seaIce.sirdgconc.tavg-u-hxy-si.mon.GLB", + "seaIce.sisaltmass.tavg-u-hxy-si.mon.GLB", + "seaIce.sisndmassdyn.tavg-u-hxy-si.mon.GLB", + "seaIce.sisndmasssi.tavg-u-hxy-si.mon.GLB", + "seaIce.sisndmasswind.tavg-u-hxy-si.mon.GLB", + "seaIce.sisnhc.tavg-u-hxy-si.day.GLB", + "seaIce.sisnhc.tavg-u-hxy-si.mon.GLB", + "seaIce.sisnmass.tavg-u-hm-u.mon.NH", + "seaIce.sisnmass.tavg-u-hm-u.mon.SH", + "seaIce.sisnmassacrossline.tavg-u-ht-u.mon.GLB", + "seaIce.sispeed.tavg-u-hxy-si.day.GLB", + "seaIce.sispeed.tavg-u-hxy-si.mon.GLB", + "seaIce.sistressave.tpt-u-hxy-si.mon.GLB", + "seaIce.sistressmax.tpt-u-hxy-si.mon.GLB", + "seaIce.sistrxdtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sistrxubot.tavg-u-hxy-si.mon.GLB", + "seaIce.sistrydtop.tavg-u-hxy-si.mon.GLB", + "seaIce.sistryubot.tavg-u-hxy-si.mon.GLB", + "seaIce.sitempsnic.tavg-u-hxy-si.mon.GLB", + "seaIce.sithick.tavg-u-hxy-si.day.GLB", + "seaIce.sithick.tavg-u-hxy-si.mon.30S-90S", + "seaIce.sitimefrac.tavg-u-hxy-sea.day.GLB", + "seaIce.sitimefrac.tavg-u-hxy-sea.mon.30S-90S", + "seaIce.siu.tavg-u-hxy-si.day.GLB", + "seaIce.siu.tavg-u-hxy-si.mon.30S-90S", + "seaIce.siv.tavg-u-hxy-si.day.GLB", + "seaIce.siv.tavg-u-hxy-si.mon.30S-90S", + "seaIce.sivol.tavg-u-hm-u.mon.NH", + "seaIce.sivol.tavg-u-hm-u.mon.SH", + "seaIce.snc.tavg-u-hxy-si.mon.GLB", + "seaIce.snd.tavg-u-hxy-sn.day.GLB", + "seaIce.snd.tavg-u-hxy-sn.mon.30S-90S", + "seaIce.snm.tavg-u-hxy-si.mon.GLB", + "seaIce.snw.tavg-u-hxy-si.mon.GLB", + "seaIce.ts.tavg-u-hxy-si.day.GLB", + "seaIce.ts.tavg-u-hxy-si.mon.30S-90S" + ], + "Medium": [ + "atmos.bldep.tavg-u-hxy-u.1hr.GLB", + "atmos.clic.tpt-al-hxy-u.3hr.GLB", + "atmos.clis.tpt-al-hxy-u.3hr.GLB", + "atmos.clivi.tpt-u-hxy-u.3hr.GLB", + "atmos.clt.tpt-u-hxy-u.3hr.GLB", + "atmos.clwc.tpt-al-hxy-u.3hr.GLB", + "atmos.clws.tpt-al-hxy-u.3hr.GLB", + "atmos.clwvi.tpt-u-hxy-u.3hr.GLB", + "atmos.dtauc.tpt-al-hxy-ccl.3hr.GLB", + "atmos.dtaus.tpt-al-hxy-scl.3hr.GLB", + "atmos.hfdsnb.tavg-u-hxy-lnd.day.GLB", + "atmos.hfls.tavg-u-hxy-is.mon.ATA", + "atmos.hfls.tavg-u-hxy-u.1hr.GLB", + "atmos.hfss.tavg-u-hxy-is.mon.ATA", + "atmos.hfss.tavg-u-hxy-is.mon.GRL", + "atmos.hfss.tavg-u-hxy-u.1hr.GLB", + "atmos.hur.tavg-700hPa-hxy-air.day.GLB", + "atmos.hur.tpt-100hPa-hxy-u.6hr.GLB", + "atmos.hur.tpt-500hPa-hxy-air.6hr.GLB", + "atmos.hur.tpt-850hPa-hxy-air.6hr.GLB", + "atmos.hurs.tavg-h2m-hxy-u.1hr.GLB", + "atmos.hus.tpt-al-hxy-u.3hr.GLB", + "atmos.hus.tpt-p6-hxy-air.3hr.GLB", + "atmos.noaahi2m.tavg-h2m-hxy-u.day.GLB", + "atmos.noaahi2m.tmax-h2m-hxy-u.day.GLB", + "atmos.pfull.tpt-al-hxy-u.3hr.GLB", + "atmos.pr.tpt-u-hxy-u.3hr.GLB", + "atmos.prra.tavg-u-hxy-is.mon.ATA", + "atmos.prrsn.tavg-u-hxy-lnd.day.GLB", + "atmos.prsn.tavg-u-hxy-is.mon.ATA", + "atmos.prsnc.tavg-u-hxy-lnd.day.GLB", + "atmos.prsnsn.tavg-u-hxy-lnd.day.GLB", + "atmos.prw.tpt-u-hxy-u.3hr.GLB", + "atmos.ps.tpt-u-hxy-u.1hr.GLB", + "atmos.psitem.tavg-p39-hy-air.day.GLB", + "atmos.reffclic.tpt-al-hxy-ccl.3hr.GLB", + "atmos.reffclis.tpt-al-hxy-scl.3hr.GLB", + "atmos.reffclwc.tpt-al-hxy-ccl.3hr.GLB", + "atmos.reffclws.tpt-al-hxy-scl.3hr.GLB", + "atmos.rlds.tavg-u-hxy-is.mon.ATA", + "atmos.rlds.tavg-u-hxy-is.mon.GRL", + "atmos.rlds.tpt-u-hxy-u.3hr.GLB", + "atmos.rldscs.tavg-u-hxy-u.day.GLB", + "atmos.rldscs.tpt-u-hxy-u.3hr.GLB", + "atmos.rls.tavg-u-hxy-u.day.GLB", + "atmos.rlus.tavg-u-hxy-is.mon.ATA", + "atmos.rlus.tavg-u-hxy-is.mon.GRL", + "atmos.rlus.tavg-u-hxy-u.1hr.GLB", + "atmos.rlut.tpt-u-hxy-u.3hr.GLB", + "atmos.rlutcs.tpt-u-hxy-u.3hr.GLB", + "atmos.rsds.tavg-u-hxy-is.mon.ATA", + "atmos.rsds.tavg-u-hxy-is.mon.GRL", + "atmos.rsds.tpt-u-hxy-u.3hr.GLB", + "atmos.rsdscs.tpt-u-hxy-u.3hr.GLB", + "atmos.rsdsdiff.tavg-u-hxy-u.1hr.GLB", + "atmos.rsdsdiff.tavg-u-hxy-u.day.GLB", + "atmos.rss.tavg-u-hxy-u.day.GLB", + "atmos.rsus.tavg-u-hxy-is.mon.ATA", + "atmos.rsus.tavg-u-hxy-is.mon.GRL", + "atmos.rsus.tavg-u-hxy-u.1hr.GLB", + "atmos.rsut.tpt-u-hxy-u.3hr.GLB", + "atmos.rsutcs.tpt-u-hxy-u.3hr.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.1hr.GLB", + "atmos.sfcWind.tavg-h10m-hxy-u.3hr.GLB", + "atmos.snmsl.tavg-u-hxy-lnd.day.GLB", + "atmos.snrefr.tavg-u-hxy-lnd.day.GLB", + "atmos.snwc.tavg-u-hxy-lnd.day.GLB", + "atmos.ta.tpt-al-hxy-u.3hr.GLB", + "atmos.ta.tpt-p6-hxy-air.3hr.GLB", + "atmos.tas.tavg-h2m-hm-is.mon.ATA", + "atmos.tas.tavg-h2m-hm-is.mon.GRL", + "atmos.tauunoegw.tavg-p19-hxy-air.mon.GLB", + "atmos.tauunowgw.tavg-p19-hxy-air.mon.GLB", + "atmos.tauuogw.tavg-p19-hxy-air.mon.GLB", + "atmos.tauupbl.tavg-u-hxy-u.day.GLB", + "atmos.tauvnogw.tavg-p19-hxy-air.mon.GLB", + "atmos.tauvogw.tavg-p19-hxy-air.mon.GLB", + "atmos.tauvpbl.tavg-u-hxy-u.day.GLB", + "atmos.tntc.tavg-p39-hy-air.mon.GLB", + "atmos.tntnogw.tavg-p39-hy-air.mon.GLB", + "atmos.tntogw.tavg-p39-hy-air.mon.GLB", + "atmos.tntrlcs.tavg-p39-hy-air.mon.GLB", + "atmos.tntrscs.tavg-p39-hy-air.mon.GLB", + "atmos.tntscp.tavg-p39-hy-air.mon.GLB", + "atmos.ts.tavg-u-hxy-is.mon.ATA", + "atmos.ts.tavg-u-hxy-is.mon.GRL", + "atmos.ts.tavg-u-hxy-sn.day.GLB", + "atmos.ts.tavg-u-hxy-u.1hr.GLB", + "atmos.ua.tavg-h100m-hxy-u.3hr.GLB", + "atmos.ua.tpt-200hPa-hxy-u.6hr.GLB", + "atmos.ua.tpt-p6-hxy-air.3hr.GLB", + "atmos.utendnogw.tavg-p19-hxy-air.day.GLB", + "atmos.utendnogw.tavg-p19-hxy-air.mon.GLB", + "atmos.utendogw.tavg-p19-hxy-air.day.GLB", + "atmos.utendogw.tavg-p19-hxy-air.mon.GLB", + "atmos.va.tavg-h100m-hxy-u.3hr.GLB", + "atmos.va.tpt-200hPa-hxy-u.6hr.GLB", + "atmos.va.tpt-p6-hxy-air.3hr.GLB", + "atmos.vtendnogw.tavg-p19-hxy-air.day.GLB", + "atmos.vtendnogw.tavg-p19-hxy-air.mon.GLB", + "atmos.vtendogw.tavg-p19-hxy-air.day.GLB", + "atmos.vtendogw.tavg-p19-hxy-air.mon.GLB", + "atmos.wap.tpt-p6-hxy-air.3hr.GLB", + "atmos.wbgt.tavg-h2m-hxy-u.day.GLB", + "atmos.wbgt.tmax-h2m-hxy-u.day.GLB", + "atmos.wsg.tmax-h100m-hxy-u.mon.GLB", + "atmos.wsg.tmax-h10m-hxy-u.mon.GLB", + "atmos.zg.tpt-700hPa-hxy-u.6hr.GLB", + "atmos.zg.tpt-925hPa-hxy-u.6hr.GLB", + "atmosChem.flashrate.tavg-u-hxy-u.day.GLB", + "land.areacellg.ti-u-hxy-u.fx.ATA", + "land.areacellg.ti-u-hxy-u.fx.GRL", + "land.baresoilFrac.tavg-u-hxy-u.yr.GLB", + "land.cLitterCwd.tavg-u-hxy-lnd.mon.GLB", + "land.cLitterLut.tpt-u-hxy-multi.yr.GLB", + "land.cLitterSubSurf.tavg-u-hxy-lnd.mon.GLB", + "land.cLitterSurf.tavg-u-hxy-lnd.mon.GLB", + "land.cOther.tavg-u-hxy-lnd.mon.GLB", + "land.cProductLut.tpt-u-hxy-multi.yr.GLB", + "land.cropFrac.tavg-u-hxy-u.yr.GLB", + "land.cropFracC3.tavg-u-hxy-u.mon.GLB", + "land.cropFracC4.tavg-u-hxy-u.mon.GLB", + "land.cSoilLut.tpt-u-hxy-multi.yr.GLB", + "land.cSoilPools.tavg-u-hxy-lnd.mon.GLB", + "land.cVeg.tavg-u-hxy-ng.mon.GLB", + "land.cVeg.tavg-u-hxy-shb.mon.GLB", + "land.cVeg.tavg-u-hxy-tree.mon.GLB", + "land.cVegLut.tpt-u-hxy-multi.yr.GLB", + "land.dgw.tavg-u-hxy-lnd.day.GLB", + "land.drivw.tavg-u-hxy-lnd.day.GLB", + "land.dsn.tavg-u-hxy-lnd.day.GLB", + "land.dsw.tavg-u-hxy-lnd.day.GLB", + "land.esn.tavg-u-hxy-sn.day.GLB", + "land.evspsblsoi.tavg-u-hxy-u.3hr.GLB", + "land.evspsblveg.tavg-u-hxy-u.3hr.GLB", + "land.fLitterFire.tavg-u-hxy-lnd.mon.GLB", + "land.fLulccAtmLut.tavg-u-hxy-multi.mon.GLB", + "land.fNgasNonFire.tavg-u-hxy-lnd.mon.GLB", + "land.fracInLut.tsum-u-hxy-lnd.yr.GLB", + "land.fracLut.tpt-u-hxy-u.mon.GLB", + "land.fracLut.tpt-u-hxy-u.yr.GLB", + "land.fracOutLut.tsum-u-hxy-lnd.yr.GLB", + "land.fVegFire.tavg-u-hxy-lnd.mon.GLB", + "land.fVegLitterMortality.tavg-u-hxy-lnd.mon.GLB", + "land.fVegLitterSenescence.tavg-u-hxy-lnd.mon.GLB", + "land.fVegSoilMortality.tavg-u-hxy-lnd.mon.GLB", + "land.fVegSoilSenescence.tavg-u-hxy-lnd.mon.GLB", + "land.gpp.tavg-u-hxy-ng.mon.GLB", + "land.gpp.tavg-u-hxy-shb.mon.GLB", + "land.gpp.tavg-u-hxy-tree.mon.GLB", + "land.gppLut.tavg-u-hxy-multi.mon.GLB", + "land.grassFrac.tavg-u-hxy-u.yr.GLB", + "land.grassFracC3.tavg-u-hxy-u.mon.GLB", + "land.grassFracC4.tavg-u-hxy-u.mon.GLB", + "land.hfdsl.tavg-u-hxy-lnd.3hr.GLB", + "land.hflsLut.tavg-u-hxy-multi.mon.GLB", + "land.hfssLut.tavg-u-hxy-multi.mon.GLB", + "land.irrDem.tavg-u-hxy-u.day.GLB", + "land.irrGw.tavg-u-hxy-u.day.GLB", + "land.irrLut.tavg-u-hxy-multi.mon.GLB", + "land.irrLut.tavg-u-hxy-u.day.GLB", + "land.irrSurf.tavg-u-hxy-u.day.GLB", + "land.laiLut.tavg-u-hxy-multi.mon.GLB", + "land.mrro.tavg-u-hxy-lnd.3hr.GLB", + "land.mrros.tavg-u-hxy-lnd.3hr.GLB", + "land.mrsol.tavg-d100cm-hxy-lnd.3hr.GLB", + "land.mrsolLut.tavg-d10cm-hxy-multi.mon.GLB", + "land.nbpLut.tavg-u-hxy-multi.mon.GLB", + "land.nLeaf.tavg-u-hxy-lnd.mon.GLB", + "land.nLitterCwd.tavg-u-hxy-lnd.mon.GLB", + "land.nLitterSubSurf.tavg-u-hxy-lnd.mon.GLB", + "land.nLitterSurf.tavg-u-hxy-lnd.mon.GLB", + "land.nMineralNH4.tavg-u-hxy-lnd.mon.GLB", + "land.nMineralNO3.tavg-u-hxy-lnd.mon.GLB", + "land.nOther.tavg-u-hxy-lnd.mon.GLB", + "land.npp.tavg-u-hxy-ng.mon.GLB", + "land.npp.tavg-u-hxy-shb.mon.GLB", + "land.npp.tavg-u-hxy-tree.mon.GLB", + "land.nppLeaf.tavg-u-hxy-lnd.mon.GLB", + "land.nppLut.tavg-u-hxy-multi.mon.GLB", + "land.nppOther.tavg-u-hxy-lnd.mon.GLB", + "land.nppRoot.tavg-u-hxy-lnd.mon.GLB", + "land.nppStem.tavg-u-hxy-lnd.mon.GLB", + "land.nppVgt.tavg-u-hxy-multi.day.GLB", + "land.nRoot.tavg-u-hxy-lnd.mon.GLB", + "land.nStem.tavg-u-hxy-lnd.mon.GLB", + "land.orog.tavg-u-hxy-is.mon.ATA", + "land.orog.tavg-u-hxy-is.mon.GRL", + "land.orog.tavg-u-hxy-is.yr.ATA", + "land.orog.tavg-u-hxy-is.yr.GRL", + "land.pastureFracC3.tavg-u-hxy-u.mon.GLB", + "land.pastureFracC4.tavg-u-hxy-u.mon.GLB", + "land.qgwr.tavg-u-hxy-lnd.day.GLB", + "land.ra.tavg-u-hxy-ng.mon.GLB", + "land.ra.tavg-u-hxy-shb.mon.GLB", + "land.ra.tavg-u-hxy-tree.mon.GLB", + "land.raLeaf.tavg-u-hxy-lnd.mon.GLB", + "land.raLut.tavg-u-hxy-multi.mon.GLB", + "land.raOther.tavg-u-hxy-lnd.mon.GLB", + "land.raRoot.tavg-u-hxy-lnd.mon.GLB", + "land.raStem.tavg-u-hxy-lnd.mon.GLB", + "land.raVgt.tavg-u-hxy-multi.day.GLB", + "land.rh.tavg-u-hxy-ng.mon.GLB", + "land.rh.tavg-u-hxy-shb.mon.GLB", + "land.rh.tavg-u-hxy-tree.mon.GLB", + "land.rhLitter.tavg-u-hxy-lnd.mon.GLB", + "land.rhLut.tavg-u-hxy-multi.mon.GLB", + "land.rhSoil.tavg-u-hxy-lnd.mon.GLB", + "land.rhVgt.tavg-u-hxy-multi.day.GLB", + "land.rzwc.tavg-u-hxy-lnd.day.GLB", + "land.sftgif.tavg-u-hxy-u.yr.ATA", + "land.sftgif.tavg-u-hxy-u.yr.GRL", + "land.shrubFrac.tavg-u-hxy-u.yr.GLB", + "land.sw.tavg-u-hxy-lnd.day.GLB", + "land.sweLut.tavg-u-hxy-multi.mon.GLB", + "land.tasLut.tavg-h2m-hxy-multi.mon.GLB", + "land.tran.tavg-u-hxy-u.3hr.GLB", + "land.treeFrac.tavg-u-hxy-u.yr.GLB", + "land.treeFracBdlDcd.tavg-u-hxy-u.mon.GLB", + "land.treeFracBdlEvg.tavg-u-hxy-u.mon.GLB", + "land.treeFracNdlDcd.tavg-u-hxy-u.mon.GLB", + "land.treeFracNdlEvg.tavg-u-hxy-u.mon.GLB", + "land.tsLut.tavg-u-hxy-multi.mon.GLB", + "land.vegHeight.tavg-u-hxy-ng.mon.GLB", + "land.vegHeight.tavg-u-hxy-shb.mon.GLB", + "land.wetlandCH4cons.tavg-u-hxy-lnd.mon.GLB", + "land.wetlandCH4prod.tavg-u-hxy-lnd.mon.GLB", + "land.wetlandFrac.tavg-u-hxy-u.mon.GLB", + "landIce.acabf.tavg-u-hxy-is.mon.ATA", + "landIce.acabf.tavg-u-hxy-is.mon.GRL", + "landIce.acabf.tavg-u-hxy-is.yr.ATA", + "landIce.acabf.tavg-u-hxy-is.yr.GRL", + "landIce.agesno.tavg-u-hxy-lnd.mon.GLB", + "landIce.hfdsn.tavg-u-hxy-lnd.day.GLB", + "landIce.hfgeoubed.tavg-u-hxy-gis.yr.ATA", + "landIce.hfgeoubed.tavg-u-hxy-gis.yr.GRL", + "landIce.hfgeoubed.ti-u-hxy-gis.fx.ATA", + "landIce.iareafl.tavg-u-hm-fis.yr.ATA", + "landIce.iareafl.tavg-u-hm-fis.yr.GRL", + "landIce.iareagr.tavg-u-hm-gis.yr.ATA", + "landIce.iareagr.tavg-u-hm-gis.yr.GRL", + "landIce.icem.tavg-u-hxy-is.mon.ATA", + "landIce.icem.tavg-u-hxy-is.mon.GRL", + "landIce.libmassbf.tavg-u-hxy-fis.mon.ATA", + "landIce.libmassbf.tavg-u-hxy-fis.mon.GRL", + "landIce.libmassbf.tavg-u-hxy-fis.yr.ATA", + "landIce.libmassbf.tavg-u-hxy-fis.yr.GRL", + "landIce.libmassbf.tavg-u-hxy-gis.mon.ATA", + "landIce.libmassbf.tavg-u-hxy-gis.mon.GRL", + "landIce.libmassbf.tavg-u-hxy-gis.yr.ATA", + "landIce.libmassbf.tavg-u-hxy-gis.yr.GRL", + "landIce.licalvf.tavg-u-hxy-is.mon.ATA", + "landIce.licalvf.tavg-u-hxy-is.mon.GRL", + "landIce.licalvf.tavg-u-hxy-is.yr.ATA", + "landIce.licalvf.tavg-u-hxy-is.yr.GRL", + "landIce.lifmassbf.tavg-u-hxy-is.mon.ATA", + "landIce.lifmassbf.tavg-u-hxy-is.mon.GRL", + "landIce.lifmassbf.tavg-u-hxy-is.yr.ATA", + "landIce.lifmassbf.tavg-u-hxy-is.yr.GRL", + "landIce.lim.tavg-u-hm-is.yr.ATA", + "landIce.lim.tavg-u-hm-is.yr.GRL", + "landIce.limnsw.tavg-u-hm-is.yr.ATA", + "landIce.limnsw.tavg-u-hm-is.yr.GRL", + "landIce.litempbot.tavg-u-hxy-fis.mon.ATA", + "landIce.litempbot.tavg-u-hxy-fis.mon.GRL", + "landIce.litempbot.tavg-u-hxy-fis.yr.ATA", + "landIce.litempbot.tavg-u-hxy-fis.yr.GRL", + "landIce.litempbot.tavg-u-hxy-gis.mon.ATA", + "landIce.litempbot.tavg-u-hxy-gis.mon.GRL", + "landIce.litempbot.tavg-u-hxy-gis.yr.ATA", + "landIce.litempbot.tavg-u-hxy-gis.yr.GRL", + "landIce.litemptop.tavg-u-hxy-is.mon.ATA", + "landIce.litemptop.tavg-u-hxy-is.mon.GRL", + "landIce.litemptop.tavg-u-hxy-is.yr.ATA", + "landIce.litemptop.tavg-u-hxy-is.yr.GRL", + "landIce.lithk.tavg-u-hxy-is.yr.ATA", + "landIce.lithk.tavg-u-hxy-is.yr.GRL", + "landIce.lithk.ti-u-hxy-is.fx.ATA", + "landIce.lwsnl.tavg-u-hxy-lnd.day.GLB", + "landIce.lwsnl.tavg-u-hxy-lnd.mon.GLB", + "landIce.modelcellareai.tavg-u-hxy-u.yr.ATA", + "landIce.modelcellareai.tavg-u-hxy-u.yr.GRL", + "landIce.mrroLi.tavg-u-hxy-is.mon.ATA", + "landIce.mrroLi.tavg-u-hxy-is.mon.GRL", + "landIce.pflw.tavg-u-hxy-lnd.day.GLB", + "landIce.sbl.tavg-u-hxy-is.mon.ATA", + "landIce.sbl.tavg-u-hxy-is.mon.GRL", + "landIce.sbl.tavg-u-hxy-u.day.GLB", + "landIce.sftflf.tavg-u-hxy-u.yr.ATA", + "landIce.sftflf.tavg-u-hxy-u.yr.GRL", + "landIce.sftgrf.tavg-u-hxy-u.yr.ATA", + "landIce.sftgrf.tavg-u-hxy-u.yr.GRL", + "landIce.snc.tavg-u-hxy-is.mon.ATA", + "landIce.snc.tavg-u-hxy-is.mon.GRL", + "landIce.snc.tavg-u-hxy-is.yr.ATA", + "landIce.snc.tavg-u-hxy-is.yr.GRL", + "landIce.snc.tavg-u-hxy-lnd.day.GLB", + "landIce.snd.tavg-u-hxy-lnd.day.GLB", + "landIce.snicem.tavg-u-hxy-is.mon.ATA", + "landIce.snm.tavg-u-hxy-is.mon.ATA", + "landIce.snm.tavg-u-hxy-is.mon.GRL", + "landIce.snm.tavg-u-hxy-lnd.day.GLB", + "landIce.snrefr.tavg-u-hxy-is.mon.ATA", + "landIce.snrefr.tavg-u-hxy-is.mon.GRL", + "landIce.strbasemag.tavg-u-hxy-is.yr.ATA", + "landIce.strbasemag.tavg-u-hxy-is.yr.GRL", + "landIce.tendacabf.tavg-u-hm-is.yr.ATA", + "landIce.tendacabf.tavg-u-hm-is.yr.GRL", + "landIce.tendlibmassbf.tavg-u-hm-is.yr.ATA", + "landIce.tendlibmassbf.tavg-u-hm-is.yr.GRL", + "landIce.tendlicalvf.tavg-u-hm-is.yr.ATA", + "landIce.tendlicalvf.tavg-u-hm-is.yr.GRL", + "landIce.topg.tavg-u-hxy-gis.yr.ATA", + "landIce.topg.tavg-u-hxy-gis.yr.GRL", + "landIce.topg.ti-u-hxy-gis.fx.ATA", + "landIce.tpf.tavg-u-hxy-lnd.day.GLB", + "landIce.tsn.tavg-u-hxy-is.mon.ATA", + "landIce.tsn.tavg-u-hxy-is.mon.GRL", + "landIce.tsn.tavg-u-hxy-lnd.day.GLB", + "landIce.xvelbase.tavg-u-hxy-is.yr.ATA", + "landIce.xvelbase.tavg-u-hxy-is.yr.GRL", + "landIce.xvelmean.tavg-u-hxy-is.yr.ATA", + "landIce.xvelmean.tavg-u-hxy-is.yr.GRL", + "landIce.xvelsurf.tavg-u-hxy-is.yr.ATA", + "landIce.xvelsurf.tavg-u-hxy-is.yr.GRL", + "landIce.yvelbase.tavg-u-hxy-is.yr.ATA", + "landIce.yvelbase.tavg-u-hxy-is.yr.GRL", + "landIce.yvelmean.tavg-u-hxy-is.yr.ATA", + "landIce.yvelmean.tavg-u-hxy-is.yr.GRL", + "landIce.yvelsurf.tavg-u-hxy-is.yr.ATA", + "landIce.yvelsurf.tavg-u-hxy-is.yr.GRL", + "landIce.zvelbase.tavg-u-hxy-is.yr.ATA", + "landIce.zvelbase.tavg-u-hxy-is.yr.GRL", + "landIce.zvelsurf.tavg-u-hxy-is.yr.ATA", + "landIce.zvelsurf.tavg-u-hxy-is.yr.GRL", + "ocean.evspsbl.tavg-u-hxy-ifs.mon.GLB", + "ocean.hfacrossline.tavg-u-ht-sea.mon.GLB", + "ocean.hfevapds.tavg-u-hxy-ifs.mon.GLB", + "ocean.hfibthermds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfibthermds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfrainds.tavg-u-hxy-ifs.mon.GLB", + "ocean.hfrunoffds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfrunoffds.tavg-u-hxy-sea.mon.GLB", + "ocean.hfsnthermds.tavg-ol-hxy-sea.mon.GLB", + "ocean.hfsnthermds.tavg-u-hxy-sea.mon.GLB", + "ocean.mfo.tavg-u-ht-sea.mon.GLB", + "ocean.sf6.tavg-ol-hxy-sea.mon.GLB", + "ocean.sfacrossline.tavg-u-ht-sea.mon.GLB", + "ocean.sfdsi.tavg-u-hxy-sea.mon.GLB", + "ocean.sfriver.tavg-u-hxy-sea.mon.GLB", + "ocean.siflfwbot.tavg-u-hxy-sea.mon.GLB", + "ocean.so.tavg-ol-hxy-sea.day.GLB", + "ocean.t17d.tavg-u-hxy-sea.mon.GLB", + "ocean.t20d.tavg-u-hxy-sea.mon.GLB", + "ocean.tnkebto.tavg-u-hxy-sea.yr.GLB", + "ocean.vsf.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfcorr.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfevap.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfpr.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfriver.tavg-u-hxy-sea.mon.GLB", + "ocean.vsfsit.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.arag.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.arag.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.calc.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.calc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.chl.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.chlcalc.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.detoc.tavg-ol-hxy-sea.day.GLB", + "ocnBgchem.dissoc.tavg-ol-hxy-sea.day.GLB", + "ocnBgchem.dmso.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.epn.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.epp.tavg-d100m-hxy-sea.mon.GLB", + "ocnBgchem.exparagob.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.expcalcob.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.expcob.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.expfeob.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.expnob.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.exppob.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.expsiob.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fgdms.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.frfe.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.frn.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppcalc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppdiat.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppdiaz.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppmisc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppnano.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intppnitrate.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intpppico.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limfecalc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limfediat.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limfediaz.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limfemisc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limfepico.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limirrcalc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limirrdiat.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limirrdiaz.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limirrmisc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limirrpico.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limncalc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limndiat.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limndiaz.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limnmisc.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.limnpico.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.o2.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.o2sat.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.ph.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.pp.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.sialgc.tavg-u-hxy-si.mon.GLB", + "ocnBgchem.sichl.tavg-u-hxy-si.mon.GLB", + "ocnBgchem.sigpp.tavg-u-hxy-si.mon.GLB", + "ocnBgchem.sino3.tavg-u-hxy-si.mon.GLB", + "ocnBgchem.sisi.tavg-u-hxy-si.mon.GLB", + "seaIce.sfdsi.tavg-u-hxy-si.mon.GLB", + "seaIce.siage.tavg-u-hxy-si.mon.GLB", + "seaIce.siarea.tavg-u-hm-u.day.NH", + "seaIce.siarea.tavg-u-hm-u.day.SH", + "seaIce.sicompstren.tavg-u-hxy-si.mon.GLB", + "seaIce.sidivvel.tpt-u-hxy-si.mon.GLB", + "seaIce.sidmasstranx.tavg-u-hxy-u.mon.GLB", + "seaIce.sidmasstrany.tavg-u-hxy-u.mon.GLB", + "seaIce.sidragbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sidragtop.tavg-u-hxy-si.mon.GLB", + "seaIce.siextent.tavg-u-hm-u.day.NH", + "seaIce.siextent.tavg-u-hm-u.day.SH", + "seaIce.sifb.tavg-u-hxy-si.day.GLB", + "seaIce.sifb.tavg-u-hxy-si.mon.GLB", + "seaIce.siflfwbot.tavg-u-hxy-si.mon.GLB", + "seaIce.siflfwdrain.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcecoriolx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcecorioly.tavg-u-hxy-si.mon.GLB", + "seaIce.siforceintstrx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforceintstry.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcetiltx.tavg-u-hxy-si.mon.GLB", + "seaIce.siforcetilty.tavg-u-hxy-si.mon.GLB", + "seaIce.siitdconc.tavg-u-hxy-si.day.GLB", + "seaIce.siitdsnconc.tavg-u-hxy-si.day.GLB", + "seaIce.siitdsnthick.tavg-u-hxy-si.day.GLB", + "seaIce.siitdthick.tavg-u-hxy-si.day.GLB", + "seaIce.simpconc.tavg-u-hxy-si.day.GLB", + "seaIce.simpeffconc.tavg-u-hxy-si.day.GLB", + "seaIce.simpeffconc.tavg-u-hxy-si.mon.GLB", + "seaIce.simprefrozen.tavg-u-hxy-simp.day.GLB", + "seaIce.simprefrozen.tavg-u-hxy-simp.mon.GLB", + "seaIce.simpthick.tavg-u-hxy-si.day.GLB", + "seaIce.simpthick.tavg-u-hxy-simp.mon.GLB", + "seaIce.sirdgconc.tavg-u-hxy-si.day.GLB", + "seaIce.sisali.tavg-u-hxy-si.day.GLB", + "seaIce.sisali.tavg-u-hxy-si.mon.GLB", + "seaIce.sisaltmass.tavg-u-hxy-si.day.GLB", + "seaIce.sishearvel.tpt-u-hxy-si.mon.GLB", + "seaIce.sisnmass.tavg-u-hm-u.day.NH", + "seaIce.sisnmass.tavg-u-hm-u.day.SH", + "seaIce.sitempbot.tavg-u-hxy-si.day.GLB", + "seaIce.sitempbot.tavg-u-hxy-si.mon.GLB", + "seaIce.sitempsnic.tavg-u-hxy-si.day.GLB", + "seaIce.sithick.tavg-u-hxy-sir.day.GLB", + "seaIce.sithick.tavg-u-hxy-sir.mon.GLB", + "seaIce.sivol.tavg-u-hm-u.day.NH", + "seaIce.sivol.tavg-u-hm-u.day.SH" + ], + "Low": [ + "aerosol.sfpm1.tavg-h2m-hxy-u.1hr.GLB", + "aerosol.sfpm10.tavg-h2m-hxy-u.1hr.GLB", + "atmos.hurs.tmin-h2m-hxy-crp.day.GLB", + "atmos.pr.tavg-u-hxy-crp.day.GLB", + "atmos.tas.tmax-h2m-hxy-crp.day.GLB", + "atmos.tas.tmin-h2m-hxy-crp.day.GLB", + "atmosChem.drynh3.tavg-u-hxy-u.day.GLB", + "atmosChem.drynh4.tavg-u-hxy-u.day.GLB", + "atmosChem.drynoy.tavg-u-hxy-u.day.GLB", + "atmosChem.flashrate.tavg-u-hxy-u.mon.GLB", + "atmosChem.wetnh3.tavg-u-hxy-u.day.GLB", + "atmosChem.wetnh4.tavg-u-hxy-u.day.GLB", + "atmosChem.wetnoy.tavg-u-hxy-u.day.GLB", + "land.c13Land.tavg-u-hxy-lnd.mon.GLB", + "land.c13Litter.tavg-u-hxy-lnd.mon.GLB", + "land.c13Soil.tavg-u-hxy-lnd.mon.GLB", + "land.c13Veg.tavg-u-hxy-lnd.mon.GLB", + "land.c14Land.tavg-u-hxy-lnd.mon.GLB", + "land.c14Litter.tavg-u-hxy-lnd.mon.GLB", + "land.c14Soil.tavg-u-hxy-lnd.mon.GLB", + "land.c14Veg.tavg-u-hxy-lnd.mon.GLB", + "land.c3PftFrac.tavg-u-hxy-u.mon.GLB", + "land.c4PftFrac.tavg-u-hxy-u.mon.GLB", + "land.gppc13.tavg-u-hxy-lnd.mon.GLB", + "land.gppc14.tavg-u-hxy-lnd.mon.GLB", + "land.lai.tavg-u-hxy-lnd.day.GLB", + "land.netAtmosLandC13Flux.tavg-u-hxy-lnd.mon.GLB", + "land.netAtmosLandC14Flux.tavg-u-hxy-lnd.mon.GLB", + "land.rac13.tavg-u-hxy-lnd.mon.GLB", + "land.rac14.tavg-u-hxy-lnd.mon.GLB", + "land.rhc13.tavg-u-hxy-lnd.mon.GLB", + "land.rhc14.tavg-u-hxy-lnd.mon.GLB", + "ocean.difmxybo.tavg-ol-hxy-sea.yr.GLB", + "ocean.difmxylo.tavg-ol-hxy-sea.yr.GLB", + "ocean.diftrblo.tavg-ol-hxy-sea.yr.GLB", + "ocean.diftrelo.tavg-ol-hxy-sea.yr.GLB", + "ocean.difvho.tavg-ol-hxy-sea.yr.GLB", + "ocean.difvso.tavg-ol-hxy-sea.yr.GLB", + "ocean.dispkexyfo.tavg-u-hxy-sea.yr.GLB", + "ocean.dxto.ti-u-hxy-u.fx.GLB", + "ocean.dxuo.ti-u-hxy-u.fx.GLB", + "ocean.dxvo.ti-u-hxy-u.fx.GLB", + "ocean.dyto.ti-u-hxy-u.fx.GLB", + "ocean.dyuo.ti-u-hxy-u.fx.GLB", + "ocean.dyvo.ti-u-hxy-u.fx.GLB", + "ocean.mlotstsq.tavg-u-hxy-sea.mon.GLB", + "ocean.msftmmpa.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftmmpa.tavg-rho-hyb-sea.mon.GLB", + "ocean.msftmsmpa.tavg-ol-hyb-sea.mon.GLB", + "ocean.msftypa.tavg-ol-ht-sea.mon.GLB", + "ocean.msftypa.tavg-rho-ht-sea.mon.GLB", + "ocean.ocontempdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontempmint.tavg-u-hxy-sea.yr.GLB", + "ocean.ocontemppadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemppmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemppsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemprmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.ocontemptend.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottempdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottempmint.tavg-u-hxy-sea.yr.GLB", + "ocean.opottemppadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemppmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemppsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemprmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.opottemptend.tavg-ol-hxy-sea.dec.GLB", + "ocean.osaltdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpmdiff.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltpsmadvect.tavg-ol-hxy-sea.mon.GLB", + "ocean.osaltpsmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osaltrmadvect.tavg-ol-hxy-sea.yr.GLB", + "ocean.osalttend.tavg-ol-hxy-sea.yr.GLB", + "ocean.rsdo.tavg-ol-hxy-sea.day.GLB", + "ocean.rsdoabsorb.tavg-ol-hxy-sea.yr.GLB", + "ocean.somint.tavg-u-hxy-sea.yr.GLB", + "ocean.sossq.tavg-u-hxy-sea.mon.GLB", + "ocean.thkcelluo.tavg-ol-hxy-sea.mon.GLB", + "ocean.thkcellvo.tavg-ol-hxy-sea.mon.GLB", + "ocean.tnpeo.tavg-u-hxy-sea.yr.GLB", + "ocean.tossq.tavg-u-hxy-sea.mon.GLB", + "ocean.wo.tavg-ol-hxy-sea.day.GLB", + "ocnBgchem.dissi13c.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.dissi13c.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissi14c.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.dissi14cabio.tavg-d0m-hxy-sea.mon.GLB", + "ocnBgchem.dissi14cabio.tavg-ol-hxy-sea.mon.GLB", + "ocnBgchem.expcob.tavg-u-hxy-sea.day.GLB", + "ocnBgchem.fg13co2.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.fg14co2abio.tavg-u-hxy-sea.mon.GLB", + "ocnBgchem.intpoc.tavg-u-hxy-sea.day.GLB", + "ocnBgchem.o2.tavg-d0m-hxy-sea.day.GLB", + "ocnBgchem.o2min.tavg-u-hxy-sea.day.GLB", + "ocnBgchem.phyc.tavg-op20bar-hxy-sea.day.GLB", + "ocnBgchem.phycalc.tavg-ol-hxy-sea.day.GLB", + "ocnBgchem.phydiat.tavg-d0m-hxy-sea.day.GLB", + "ocnBgchem.phydiaz.tavg-d0m-hxy-sea.day.GLB", + "ocnBgchem.phymisc.tavg-d0m-hxy-sea.day.GLB", + "ocnBgchem.phynano.tavg-u-hxy-sea.day.GLB", + "ocnBgchem.phypico.tavg-ol-hxy-sea.day.GLB", + "ocnBgchem.zmeso.tavg-ol-hxy-sea.day.GLB", + "ocnBgchem.zmicro.tavg-ol-hxy-sea.day.GLB", + "ocnBgchem.zooc.tavg-ol-hxy-sea.day.GLB" + ] + } + } +} \ No newline at end of file diff --git a/dreq_v1.2.2.2_metadata.json b/dreq_v1.2.2.2_metadata.json new file mode 100644 index 00000000..f9d23a9c --- /dev/null +++ b/dreq_v1.2.2.2_metadata.json @@ -0,0 +1,49362 @@ +{ + "Header": { + "Description": "Metadata attributes that characterize CMOR variables. Each variable is uniquely idenfied by a compound name comprised of a CMIP6-era table name and a short variable name.", + "no. of variables": 1974, + "dreq content version": "v1.2.2.2", + "dreq content file": "dreq_release_export.json", + "dreq content sha256 hash": "d396e3f8ef2ef1c3a184612cf50476cdda26101c734afd92f2fdfb373aceac6a", + "dreq api version": "1.2.3.dev15+g2a4a56cb9" + }, + "Compound Name": { + "aerosol.abs550aer.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "atmosphere_absorption_optical_thickness_due_to_ambient_aerosol_particles", + "units": "1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Ambient Aerosol Absorption Optical Thickness at 550nm", + "comment": "Optical thickness of atmospheric aerosols at wavelength 550 nanometers.", + "dimensions": "longitude latitude time lambda550nm", + "out_name": "abs550aer", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "abs550aer", + "variableRootDD": "abs550aer", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "abs550aer_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.abs550aer", + "cmip7_compound_name": "aerosol.abs550aer.tavg-u-hxy-u.mon.GLB", + "uid": "19bebf2a-81b1-11e6-92de-ac72891c3257" + }, + "aerosol.abs550bc.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "atmosphere_absorption_optical_thickness_due_to_black_carbon_ambient_aerosol", + "units": "1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "black carbon aaod@550nm", + "comment": "This is the black carbon aerosol optical depth at 550nm due to absorption", + "dimensions": "longitude latitude time lambda550nm", + "out_name": "abs550bc", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "abs550bc", + "variableRootDD": "abs550bc", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "abs550bc_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.abs550bc", + "cmip7_compound_name": "aerosol.abs550bc.tavg-u-hxy-u.mon.GLB", + "uid": "83bbfc25-7f07-11ef-9308-b1dd71e64bec" + }, + "aerosol.abs550dust.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "atmosphere_absorption_optical_thickness_due_to_dust_ambient_aerosol_particles", + "units": "1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "dust absorption aerosol optical depth @550nm", + "comment": "This is the dust aerosol optical depth at 550nm due to absorption", + "dimensions": "longitude latitude time lambda550nm", + "out_name": "abs550dust", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "abs550dust", + "variableRootDD": "abs550dust", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "abs550dust_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.abs550dust", + "cmip7_compound_name": "aerosol.abs550dust.tavg-u-hxy-u.mon.GLB", + "uid": "83bbfc24-7f07-11ef-9308-b1dd71e64bec" + }, + "aerosol.abs550no3.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "atmosphere_absorption_optical_thickness_due_to_nitrate_ambient_aerosol_particles", + "units": "1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "nitrate aaod@550nm", + "comment": "This is the nitrate aerosol optical depth at 550nm due to absorption", + "dimensions": "longitude latitude time lambda550nm", + "out_name": "abs550no3", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "abs550no3", + "variableRootDD": "abs550no3", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "abs550no3_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.abs550no3", + "cmip7_compound_name": "aerosol.abs550no3.tavg-u-hxy-u.mon.GLB", + "uid": "83bbfc23-7f07-11ef-9308-b1dd71e64bec" + }, + "aerosol.abs550oa.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "atmosphere_absorption_optical_thickness_due_to_particulate_organic_matter_ambient_aerosol_particles", + "units": "1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "particulate organic matter aaod@550nm", + "comment": "This is the particular organic matter aerosol optical depth at 550nm due to absorption", + "dimensions": "longitude latitude time lambda550nm", + "out_name": "abs550oa", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "abs550oa", + "variableRootDD": "abs550oa", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "abs550oa_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.abs550oa", + "cmip7_compound_name": "aerosol.abs550oa.tavg-u-hxy-u.mon.GLB", + "uid": "83bbfc22-7f07-11ef-9308-b1dd71e64bec" + }, + "aerosol.abs550so4.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "atmosphere_absorption_optical_thickness_due_to_sulfate_ambient_aerosol_particles", + "units": "1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "sulfate aaod@550nm", + "comment": "This is the sulphate aerosol optical depth at 550nm due to absorption", + "dimensions": "longitude latitude time lambda550nm", + "out_name": "abs550so4", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "abs550so4", + "variableRootDD": "abs550so4", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "abs550so4_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.abs550so4", + "cmip7_compound_name": "aerosol.abs550so4.tavg-u-hxy-u.mon.GLB", + "uid": "83bbfc21-7f07-11ef-9308-b1dd71e64bec" + }, + "aerosol.abs550ss.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "atmosphere_absorption_optical_thickness_due_to_sea_salt_ambient_aerosol_particles", + "units": "1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "sea salt aaod@550nm", + "comment": "This is the sea salt aerosol optical depth at 550nm due to absorption", + "dimensions": "longitude latitude time lambda550nm", + "out_name": "abs550ss", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "abs550ss", + "variableRootDD": "abs550ss", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "abs550ss_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.abs550ss", + "cmip7_compound_name": "aerosol.abs550ss.tavg-u-hxy-u.mon.GLB", + "uid": "83bbfc20-7f07-11ef-9308-b1dd71e64bec" + }, + "aerosol.airmass.tavg-al-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "atmosphere_mass_of_air_per_unit_area", + "units": "kg m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Vertically Integrated Mass Content of Air in Layer", + "comment": "The mass of air in an atmospheric layer.", + "dimensions": "longitude latitude alevel time", + "out_name": "airmass", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "airmass", + "variableRootDD": "airmass", + "branding_label": "tavg-al-hxy-u", + "branded_variable_name": "airmass_tavg-al-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.airmass", + "cmip7_compound_name": "aerosol.airmass.tavg-al-hxy-u.mon.GLB", + "uid": "19bee89c-81b1-11e6-92de-ac72891c3257" + }, + "aerosol.aoanh.tavg-al-hxy-u.mon.NH": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "tracer_lifetime", + "units": "yr", + "cell_methods": "area: time: mean (weighted by tracer mass)", + "cell_measures": "area: areacella", + "long_name": "Northern Hemisphere Tracer Lifetime", + "comment": "Fixed surface layer mixing ratio over 30o-50oN (0 ppbv), uniform fixed source (at all levels) everywhere else (source is unspecified but must be constant in space and time and documented). Note that the source could be 1yr/yr, so the tracer concentration provides mean age in years. For method using linearly increasing tracer include a method attribute: \"linearly increasing tracer\"For method using uniform source (1yr/yr) include a method attribute: \"uniform source\"", + "dimensions": "longitude latitude alevel time", + "out_name": "aoanh", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "aoanh", + "variableRootDD": "aoanh", + "branding_label": "tavg-al-hxy-u", + "branded_variable_name": "aoanh_tavg-al-hxy-u", + "region": "NH", + "cmip6_compound_name": "AERmon.aoanh", + "cmip7_compound_name": "aerosol.aoanh.tavg-al-hxy-u.mon.NH", + "uid": "3a0a3d38-9c3a-11e6-8d5d-ac72891c3257" + }, + "aerosol.bry.tavg-p39-hy-air.mon.GLB": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "mole_fraction_of_inorganic_bromine_in_air", + "units": "mol mol-1", + "cell_methods": "longitude: time: mean where air", + "cell_measures": "", + "long_name": "Total Inorganic Bromine Volume Mixing Ratio", + "comment": "Total family (the sum of all appropriate species in the model) ; list the species in the netCDF header, e.g. Bry = Br + BrO + HOBr + HBr + BrONO2 + BrCl Definition: Total inorganic bromine (e.g., HBr and inorganic bromine oxides and radicals (e.g., BrO, atomic bromine (Br), bromine nitrate (BrONO2)) resulting from degradation of bromine-containing organicsource gases (halons, methyl bromide, VSLS), and natural inorganic bromine sources (e.g., volcanoes, sea salt, and other aerosols) add comment attribute with detailed description about how the model calculates these fields", + "dimensions": "latitude plev39 time", + "out_name": "bry", + "type": "real", + "positive": "", + "spatial_shape": "Y-P39", + "temporal_shape": "time-intv", + "cmip6_table": "AERmonZ", + "physical_parameter_name": "bry", + "variableRootDD": "bry", + "branding_label": "tavg-p39-hy-air", + "branded_variable_name": "bry_tavg-p39-hy-air", + "region": "GLB", + "cmip6_compound_name": "AERmonZ.bry", + "cmip7_compound_name": "aerosol.bry.tavg-p39-hy-air.mon.GLB", + "uid": "fda68dc6-96ec-11e6-b81e-c9e268aff03a" + }, + "aerosol.bs550aer.tpt-al-hxy-u.6hr.GLB": { + "frequency": "6hr", + "modeling_realm": "aerosol", + "standard_name": "volume_scattering_function_of_radiative_flux_in_air_due_to_ambient_aerosol_particles", + "units": "m-1 sr-1", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Aerosol Backscatter Coefficient", + "comment": "Aerosol Backscatter at wavelength 550nm and scattering angle 180 degrees, computed from extinction and lidar ratio", + "dimensions": "longitude latitude alevel time1 lambda550nm", + "out_name": "bs550aer", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-point", + "cmip6_table": "6hrLev", + "physical_parameter_name": "bs550aer", + "variableRootDD": "bs550aer", + "branding_label": "tpt-al-hxy-u", + "branded_variable_name": "bs550aer_tpt-al-hxy-u", + "region": "GLB", + "cmip6_compound_name": "6hrLev.bs550aer", + "cmip7_compound_name": "aerosol.bs550aer.tpt-al-hxy-u.6hr.GLB", + "uid": "8fecd6da-267c-11e7-8933-ac72891c3257" + }, + "aerosol.c2h6.tavg-al-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "mole_fraction_of_ethane_in_air", + "units": "mol mol-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "C2H6 Volume Mixing Ratio", + "comment": "Mole fraction is used in the construction mole_fraction_of_X_in_Y, where X is a material constituent of Y.", + "dimensions": "longitude latitude alevel time", + "out_name": "c2h6", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "c2h6", + "variableRootDD": "c2h6", + "branding_label": "tavg-al-hxy-u", + "branded_variable_name": "c2h6_tavg-al-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.c2h6", + "cmip7_compound_name": "aerosol.c2h6.tavg-al-hxy-u.mon.GLB", + "uid": "19be6ac0-81b1-11e6-92de-ac72891c3257" + }, + "aerosol.c3h6.tavg-al-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "mole_fraction_of_propene_in_air", + "units": "mol mol-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "C3H6 Volume Mixing Ratio", + "comment": "Mole fraction is used in the construction mole_fraction_of_X_in_Y, where X is a material constituent of Y.", + "dimensions": "longitude latitude alevel time", + "out_name": "c3h6", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "c3h6", + "variableRootDD": "c3h6", + "branding_label": "tavg-al-hxy-u", + "branded_variable_name": "c3h6_tavg-al-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.c3h6", + "cmip7_compound_name": "aerosol.c3h6.tavg-al-hxy-u.mon.GLB", + "uid": "19be1d4a-81b1-11e6-92de-ac72891c3257" + }, + "aerosol.c3h8.tavg-al-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "mole_fraction_of_propane_in_air", + "units": "mol mol-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "C3H8 Volume Mixing Ratio", + "comment": "Mole fraction is used in the construction mole_fraction_of_X_in_Y, where X is a material constituent of Y.", + "dimensions": "longitude latitude alevel time", + "out_name": "c3h8", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "c3h8", + "variableRootDD": "c3h8", + "branding_label": "tavg-al-hxy-u", + "branded_variable_name": "c3h8_tavg-al-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.c3h8", + "cmip7_compound_name": "aerosol.c3h8.tavg-al-hxy-u.mon.GLB", + "uid": "19be27a4-81b1-11e6-92de-ac72891c3257" + }, + "aerosol.ccldncl.tavg-u-hxy-ccl.day.GLB": { + "frequency": "day", + "modeling_realm": "aerosol", + "standard_name": "number_concentration_of_convective_cloud_liquid_water_particles_at_convective_liquid_water_cloud_top", + "units": "m-3", + "cell_methods": "area: time: mean where convective_cloud (mean over the portion of the cell containing liquid topped cloud, as seen from top of atmosphere)", + "cell_measures": "area: areacella", + "long_name": "Cloud Droplet Number Concentration of Convective Cloud Tops", + "comment": "Droplets are liquid only. Report concentration 'as seen from space' over convective liquid cloudy portion of grid cell. This is the value from uppermost model layer with liquid cloud or, if available, it is better to sum over all liquid cloud tops, no matter where they occur, as long as they are seen from the top of the atmosphere. Weight by total liquid cloud top fraction of (as seen from TOA) each time sample when computing monthly mean.", + "dimensions": "longitude latitude time", + "out_name": "ccldncl", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Eday", + "physical_parameter_name": "ccldncl", + "variableRootDD": "ccldncl", + "branding_label": "tavg-u-hxy-ccl", + "branded_variable_name": "ccldncl_tavg-u-hxy-ccl", + "region": "GLB", + "cmip6_compound_name": "Eday.ccldncl", + "cmip7_compound_name": "aerosol.ccldncl.tavg-u-hxy-ccl.day.GLB", + "uid": "8b8b3ecc-4a5b-11e6-9cd2-ac72891c3257" + }, + "aerosol.ccldncl.tavg-u-hxy-ccl.mon.GLB": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "number_concentration_of_convective_cloud_liquid_water_particles_at_convective_liquid_water_cloud_top", + "units": "m-3", + "cell_methods": "area: time: mean where convective_cloud (mean over the portion of the cell containing liquid topped cloud, as seen from top of atmosphere)", + "cell_measures": "area: areacella", + "long_name": "Cloud Droplet Number Concentration of Convective Cloud Tops", + "comment": "Cloud Droplet Number Concentration of Convective Cloud Tops", + "dimensions": "longitude latitude time", + "out_name": "ccldncl", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "ccldncl", + "variableRootDD": "ccldncl", + "branding_label": "tavg-u-hxy-ccl", + "branded_variable_name": "ccldncl_tavg-u-hxy-ccl", + "region": "GLB", + "cmip6_compound_name": "Emon.ccldncl", + "cmip7_compound_name": "aerosol.ccldncl.tavg-u-hxy-ccl.mon.GLB", + "uid": "83bbfba0-7f07-11ef-9308-b1dd71e64bec" + }, + "aerosol.ccn.tavg-u-hxy-ccl.mon.30S-90S": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "number_concentration_of_cloud_condensation_nuclei_at_stp_in_air", + "units": "m-3", + "cell_methods": "area: time: mean where convective_cloud (mean over the portion of the cell containing liquid topped cloud, as seen from top of atmosphere)", + "cell_measures": "area: areacella", + "long_name": "Cloud Condensation Nuclei Concentration at Liquid Cloud Top", + "comment": "proposed name: number_concentration_of_ambient_aerosol_in_air_at_liquid_water_cloud_top", + "dimensions": "longitude latitude time", + "out_name": "ccn", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "ccn", + "variableRootDD": "ccn", + "branding_label": "tavg-u-hxy-ccl", + "branded_variable_name": "ccn_tavg-u-hxy-ccl", + "region": "30S-90S", + "cmip6_compound_name": "AERmon.ccnSouth30", + "cmip7_compound_name": "aerosol.ccn.tavg-u-hxy-ccl.mon.30S-90S", + "uid": "80ac3165-a698-11ef-914a-613c0433d878" + }, + "aerosol.ccn.tavg-u-hxy-ccl.mon.GLB": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "number_concentration_of_cloud_condensation_nuclei_at_stp_in_air", + "units": "m-3", + "cell_methods": "area: time: mean where convective_cloud (mean over the portion of the cell containing liquid topped cloud, as seen from top of atmosphere)", + "cell_measures": "area: areacella", + "long_name": "Cloud Condensation Nuclei Concentration at Liquid Cloud Top", + "comment": "proposed name: number_concentration_of_ambient_aerosol_in_air_at_liquid_water_cloud_top", + "dimensions": "longitude latitude time", + "out_name": "ccn", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "ccn", + "variableRootDD": "ccn", + "branding_label": "tavg-u-hxy-ccl", + "branded_variable_name": "ccn_tavg-u-hxy-ccl", + "region": "GLB", + "cmip6_compound_name": "AERmon.ccn", + "cmip7_compound_name": "aerosol.ccn.tavg-u-hxy-ccl.mon.GLB", + "uid": "19c04e94-81b1-11e6-92de-ac72891c3257" + }, + "aerosol.ccn1.tavg-al-hxy-u.mon.30S-90S": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "number_concentration_of_cloud_condensation_nuclei_assuming_reference_relative_humidity", + "units": "m-3", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "CCN concentration at 1.0 percent supersaturation", + "comment": "This is the concentration of cloud condensation nuclei (CCN) at 1.0 percent supersaturation, based on aerosol chemical composition and size", + "dimensions": "longitude latitude alevel time hur101pct", + "out_name": "ccn1", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "ccn1", + "variableRootDD": "ccn1", + "branding_label": "tavg-al-hxy-u", + "branded_variable_name": "ccn1_tavg-al-hxy-u", + "region": "30S-90S", + "cmip6_compound_name": "AERmon.ccn1South30", + "cmip7_compound_name": "aerosol.ccn1.tavg-al-hxy-u.mon.30S-90S", + "uid": "80ac3166-a698-11ef-914a-613c0433d878" + }, + "aerosol.ccn1.tavg-al-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "number_concentration_of_cloud_condensation_nuclei_assuming_reference_relative_humidity", + "units": "m-3", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "CCN concentration at 1.0 percent supersaturation", + "comment": "This is the concentration of cloud condensation nuclei (CCN) at 1.0 percent supersaturation, based on aerosol chemical composition and size", + "dimensions": "longitude latitude alevel time hur101pct", + "out_name": "ccn1", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "ccn1", + "variableRootDD": "ccn1", + "branding_label": "tavg-al-hxy-u", + "branded_variable_name": "ccn1_tavg-al-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.ccn1", + "cmip7_compound_name": "aerosol.ccn1.tavg-al-hxy-u.mon.GLB", + "uid": "83bbfc1a-7f07-11ef-9308-b1dd71e64bec" + }, + "aerosol.ccnp02.tavg-al-hxy-u.mon.30S-90S": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "number_concentration_of_cloud_condensation_nuclei_assuming_reference_relative_humidity", + "units": "m-3", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "CCN concentration at 0.2 percent supersaturation", + "comment": "This is the concentration of cloud condensation nuclei (CCN) at 0.2% supersaturation, based on aerosol chemical composition and size", + "dimensions": "longitude latitude alevel time hur100p2pct", + "out_name": "ccn02", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "ccn02", + "variableRootDD": "ccnp02", + "branding_label": "tavg-al-hxy-u", + "branded_variable_name": "ccnp02_tavg-al-hxy-u", + "region": "30S-90S", + "cmip6_compound_name": "AERmon.ccn02South30", + "cmip7_compound_name": "aerosol.ccnp02.tavg-al-hxy-u.mon.30S-90S", + "uid": "80ac3167-a698-11ef-914a-613c0433d878" + }, + "aerosol.ccnp02.tavg-al-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "number_concentration_of_cloud_condensation_nuclei_assuming_reference_relative_humidity", + "units": "m-3", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "CCN concentration at 0.2 percent supersaturation", + "comment": "This is the concentration of cloud condensation nuclei (CCN) at 0.2% supersaturation, based on aerosol chemical composition and size", + "dimensions": "longitude latitude alevel time hur100p2pct", + "out_name": "ccn02", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "ccn02", + "variableRootDD": "ccnp02", + "branding_label": "tavg-al-hxy-u", + "branded_variable_name": "ccnp02_tavg-al-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.ccn02", + "cmip7_compound_name": "aerosol.ccnp02.tavg-al-hxy-u.mon.GLB", + "uid": "83bbfc19-7f07-11ef-9308-b1dd71e64bec" + }, + "aerosol.cdnc.tavg-al-hxy-u.mon.30S-90S": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "number_concentration_of_cloud_liquid_water_particles_in_air", + "units": "m-3", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Cloud Liquid Droplet Number Concentration", + "comment": "Cloud Droplet Number Concentration in liquid water clouds.", + "dimensions": "longitude latitude alevel time", + "out_name": "cdnc", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "cdnc", + "variableRootDD": "cdnc", + "branding_label": "tavg-al-hxy-u", + "branded_variable_name": "cdnc_tavg-al-hxy-u", + "region": "30S-90S", + "cmip6_compound_name": "AERmon.cdncSouth30", + "cmip7_compound_name": "aerosol.cdnc.tavg-al-hxy-u.mon.30S-90S", + "uid": "80ac3168-a698-11ef-914a-613c0433d878" + }, + "aerosol.cdnc.tavg-al-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "number_concentration_of_cloud_liquid_water_particles_in_air", + "units": "m-3", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Cloud Liquid Droplet Number Concentration", + "comment": "Cloud Droplet Number Concentration in liquid water clouds.", + "dimensions": "longitude latitude alevel time", + "out_name": "cdnc", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "cdnc", + "variableRootDD": "cdnc", + "branding_label": "tavg-al-hxy-u", + "branded_variable_name": "cdnc_tavg-al-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.cdnc", + "cmip7_compound_name": "aerosol.cdnc.tavg-al-hxy-u.mon.GLB", + "uid": "19be52f6-81b1-11e6-92de-ac72891c3257" + }, + "aerosol.cfc114.tavg-al-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "mole_fraction_of_cfc114_in_air", + "units": "mol mol-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Mole Fraction of CFC114", + "comment": "Mole fraction of cfc114 in air", + "dimensions": "longitude latitude alevel time", + "out_name": "cfc114", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "cfc114", + "variableRootDD": "cfc114", + "branding_label": "tavg-al-hxy-u", + "branded_variable_name": "cfc114_tavg-al-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.cfc114", + "cmip7_compound_name": "aerosol.cfc114.tavg-al-hxy-u.mon.GLB", + "uid": "80ab720e-a698-11ef-914a-613c0433d878" + }, + "aerosol.ch3coch3.tavg-al-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "mole_fraction_of_acetone_in_air", + "units": "mol mol-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "CH3COCH3 Volume Mixing Ratio", + "comment": "Mole fraction is used in the construction \"mole_fraction_of_X_in_Y\", where X is a material constituent of Y. A chemical species denoted by X may be described by a single term such as \"nitrogen\" or a phrase such as \"nox_expressed_as_nitrogen\". Acetone is an organic molecule with the chemical formula CH3CH3CO. The IUPAC name for acetone is propan-2-one. Acetone is a member of the group of organic compounds known as ketones. There are standard names for the ketone group as well as for some of the individual species.", + "dimensions": "longitude latitude alevel time", + "out_name": "ch3coch3", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "ch3coch3", + "variableRootDD": "ch3coch3", + "branding_label": "tavg-al-hxy-u", + "branded_variable_name": "ch3coch3_tavg-al-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.ch3coch3", + "cmip7_compound_name": "aerosol.ch3coch3.tavg-al-hxy-u.mon.GLB", + "uid": "19be4d92-81b1-11e6-92de-ac72891c3257" + }, + "aerosol.cheaqpso4.tavg-al-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "tendency_of_atmosphere_mass_content_of_sulfate_dry_aerosol_particles_due_to_aqueous_phase_net_chemical_production", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Aqueous-Phase Production Rate of SO4", + "comment": "proposed name: tendency_of_atmosphere_mass_content_of_sulfate_dry_aerosol_due_to_aqueous_phase_net_chemical_production", + "dimensions": "longitude latitude alevel time", + "out_name": "cheaqpso4", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "cheaqpso4", + "variableRootDD": "cheaqpso4", + "branding_label": "tavg-al-hxy-u", + "branded_variable_name": "cheaqpso4_tavg-al-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.cheaqpso4", + "cmip7_compound_name": "aerosol.cheaqpso4.tavg-al-hxy-u.mon.GLB", + "uid": "19c0326a-81b1-11e6-92de-ac72891c3257" + }, + "aerosol.chegpso4.tavg-al-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "tendency_of_atmosphere_mass_content_of_sulfate_dry_aerosol_particles_due_to_gaseous_phase_net_chemical_production", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Gas-Phase Production Rate of SO4", + "comment": "proposed name: tendency_of_atmosphere_mass_content_of_sulfate_dry_aerosol_due_to_gas_phase_net_chemical_production", + "dimensions": "longitude latitude alevel time", + "out_name": "chegpso4", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "chegpso4", + "variableRootDD": "chegpso4", + "branding_label": "tavg-al-hxy-u", + "branded_variable_name": "chegpso4_tavg-al-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.chegpso4", + "cmip7_compound_name": "aerosol.chegpso4.tavg-al-hxy-u.mon.GLB", + "uid": "19bfb81c-81b1-11e6-92de-ac72891c3257" + }, + "aerosol.chepasoa.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "tendency_of_atmosphere_mass_content_of_secondary_particulate_organic_matter_dry_aerosol_particles_due_to_net_chemical_production", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Total Net Production of Anthropogenic Secondary Organic Aerosol", + "comment": "anthropogenic part of chepsoa", + "dimensions": "longitude latitude time", + "out_name": "chepasoa", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "chepasoa", + "variableRootDD": "chepasoa", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "chepasoa_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.chepasoa", + "cmip7_compound_name": "aerosol.chepasoa.tavg-u-hxy-u.mon.GLB", + "uid": "19bf7d0c-81b1-11e6-92de-ac72891c3257" + }, + "aerosol.chepsoa.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "tendency_of_atmosphere_mass_content_of_secondary_particulate_organic_matter_dry_aerosol_particles_due_to_net_chemical_production", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Chemical Production of Dry Aerosol Secondary Organic Matter", + "comment": "If model lumps SOA emissions with POA, then the sum of POA and SOA emissions is reported as OA emissions. \"mass\" refers to the mass of primary organic matter, not mass of organic carbon alone.", + "dimensions": "longitude latitude time", + "out_name": "chepsoa", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "chepsoa", + "variableRootDD": "chepsoa", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "chepsoa_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.chepsoa", + "cmip7_compound_name": "aerosol.chepsoa.tavg-u-hxy-u.mon.GLB", + "uid": "19bed4b0-81b1-11e6-92de-ac72891c3257" + }, + "aerosol.cly.tavg-p39-hy-air.mon.GLB": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "mole_fraction_of_inorganic_chlorine_in_air", + "units": "mol mol-1", + "cell_methods": "longitude: time: mean where air", + "cell_measures": "", + "long_name": "Total Inorganic Chlorine Volume Mixing Ratio", + "comment": "Total family (the sum of all appropriate species in the model) ; list the species in the netCDF header, e.g. Cly = HCl + ClONO2 + HOCl + ClO + Cl + 2\\*Cl2O2 +2Cl2 + OClO + BrCl Definition: Total inorganic stratospheric chlorine (e.g., HCl, ClO) resulting from degradation of chlorine-containing source gases (CFCs, HCFCs, VSLS), and natural inorganic chlorine sources (e.g., sea salt and other aerosols) add comment attribute with detailed description about how the model calculates these fields", + "dimensions": "latitude plev39 time", + "out_name": "cly", + "type": "real", + "positive": "", + "spatial_shape": "Y-P39", + "temporal_shape": "time-intv", + "cmip6_table": "AERmonZ", + "physical_parameter_name": "cly", + "variableRootDD": "cly", + "branding_label": "tavg-p39-hy-air", + "branded_variable_name": "cly_tavg-p39-hy-air", + "region": "GLB", + "cmip6_compound_name": "AERmonZ.cly", + "cmip7_compound_name": "aerosol.cly.tavg-p39-hy-air.mon.GLB", + "uid": "fda6e992-96ec-11e6-b81e-c9e268aff03a" + }, + "aerosol.co.tavg-al-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "mole_fraction_of_carbon_monoxide_in_air", + "units": "mol mol-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "CO Volume Mixing Ratio", + "comment": "Mole fraction is used in the construction mole_fraction_of_X_in_Y, where X is a material constituent of Y.", + "dimensions": "longitude latitude alevel time", + "out_name": "co", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "co", + "variableRootDD": "co", + "branding_label": "tavg-al-hxy-u", + "branded_variable_name": "co_tavg-al-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.co", + "cmip7_compound_name": "aerosol.co.tavg-al-hxy-u.mon.GLB", + "uid": "19bf3d88-81b1-11e6-92de-ac72891c3257" + }, + "aerosol.co.tavg-h2m-hxy-u.day.GLB": { + "frequency": "day", + "modeling_realm": "aerosol", + "standard_name": "mole_fraction_of_carbon_monoxide_in_air", + "units": "mol mol-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Daily mean surface CO", + "comment": "This is the daily mean for CO volume mixing ratio in lowest model layer", + "dimensions": "longitude latitude time height2m", + "out_name": "co", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "AERday", + "physical_parameter_name": "co", + "variableRootDD": "co", + "branding_label": "tavg-h2m-hxy-u", + "branded_variable_name": "co_tavg-h2m-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERday.co", + "cmip7_compound_name": "aerosol.co.tavg-h2m-hxy-u.day.GLB", + "uid": "83bbfc41-7f07-11ef-9308-b1dd71e64bec" + }, + "aerosol.cod.tavg-u-hxy-u.day.GLB": { + "frequency": "day", + "modeling_realm": "aerosol", + "standard_name": "atmosphere_optical_thickness_due_to_cloud", + "units": "1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Cloud Optical Depth", + "comment": "The optical thickness is the integral along the path of radiation of a volume scattering/absorption/attenuation coefficient. The radiative flux is reduced by a factor exp(-optical_thickness) on traversing the path. A coordinate variable of radiation_wavelength or radiation_frequency can be specified to indicate that the optical thickness applies at specific wavelengths or frequencies. The atmosphere optical thickness applies to radiation passing through the entire atmosphere. \"Cloud\" means the component of extinction owing to the presence of liquid or ice water particles. The specification of a physical process by the phrase due_to_process means that the quantity named is a single term in a sum of terms which together compose the general quantity named by omitting the phrase.", + "dimensions": "longitude latitude time", + "out_name": "cod", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "AERday", + "physical_parameter_name": "cod", + "variableRootDD": "cod", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "cod_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERday.cod", + "cmip7_compound_name": "aerosol.cod.tavg-u-hxy-u.day.GLB", + "uid": "19bdb4c2-81b1-11e6-92de-ac72891c3257" + }, + "aerosol.cod.tavg-u-hxy-u.mon.30S-90S": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "atmosphere_optical_thickness_due_to_cloud", + "units": "1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Cloud Optical Depth", + "comment": "The optical thickness is the integral along the path of radiation of a volume scattering/absorption/attenuation coefficient. The radiative flux is reduced by a factor exp(-optical_thickness) on traversing the path. A coordinate variable of radiation_wavelength or radiation_frequency can be specified to indicate that the optical thickness applies at specific wavelengths or frequencies. The atmosphere optical thickness applies to radiation passing through the entire atmosphere. \"Cloud\" means the component of extinction owing to the presence of liquid or ice water particles. The specification of a physical process by the phrase due_to_process means that the quantity named is a single term in a sum of terms which together compose the general quantity named by omitting the phrase.", + "dimensions": "longitude latitude time", + "out_name": "cod", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "cod", + "variableRootDD": "cod", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "cod_tavg-u-hxy-u", + "region": "30S-90S", + "cmip6_compound_name": "AERmon.codSouth30", + "cmip7_compound_name": "aerosol.cod.tavg-u-hxy-u.mon.30S-90S", + "uid": "80ac3183-a698-11ef-914a-613c0433d878" + }, + "aerosol.cod.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "atmosphere_optical_thickness_due_to_cloud", + "units": "1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Cloud Optical Depth", + "comment": "The optical thickness is the integral along the path of radiation of a volume scattering/absorption/attenuation coefficient. The radiative flux is reduced by a factor exp(-optical_thickness) on traversing the path. A coordinate variable of radiation_wavelength or radiation_frequency can be specified to indicate that the optical thickness applies at specific wavelengths or frequencies. The atmosphere optical thickness applies to radiation passing through the entire atmosphere. \"Cloud\" means the component of extinction owing to the presence of liquid or ice water particles. The specification of a physical process by the phrase due_to_process means that the quantity named is a single term in a sum of terms which together compose the general quantity named by omitting the phrase.", + "dimensions": "longitude latitude time", + "out_name": "cod", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "cod", + "variableRootDD": "cod", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "cod_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.cod", + "cmip7_compound_name": "aerosol.cod.tavg-u-hxy-u.mon.GLB", + "uid": "19bf238e-81b1-11e6-92de-ac72891c3257" + }, + "aerosol.conccn.tavg-al-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "number_concentration_of_ambient_aerosol_particles_in_air", + "units": "m-3", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Aerosol Number Concentration", + "comment": "This is the number concentration of air particles in air", + "dimensions": "longitude latitude alevel time", + "out_name": "conccn", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "conccn", + "variableRootDD": "conccn", + "branding_label": "tavg-al-hxy-u", + "branded_variable_name": "conccn_tavg-al-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.conccn", + "cmip7_compound_name": "aerosol.conccn.tavg-al-hxy-u.mon.GLB", + "uid": "83bbfc13-7f07-11ef-9308-b1dd71e64bec" + }, + "aerosol.conccn.tpt-u-hs-u.3hr.GLB": { + "frequency": "3hr", + "modeling_realm": "aerosol", + "standard_name": "number_concentration_of_ambient_aerosol_particles_in_air", + "units": "m-3", + "cell_methods": "area: point time: point", + "cell_measures": "::MODEL", + "long_name": "Sub-daily Aerosol Number Concentration at CF sites", + "comment": "The variable represents the instantaneous Aerosol Number Concentration at CF sites, sampled every 3 hours", + "dimensions": "site time1", + "out_name": "conccn", + "type": "real", + "positive": "", + "spatial_shape": "S-na", + "temporal_shape": "time-point", + "cmip6_table": "E3hrPt", + "physical_parameter_name": "conccn", + "variableRootDD": "conccn", + "branding_label": "tpt-u-hs-u", + "branded_variable_name": "conccn_tpt-u-hs-u", + "region": "GLB", + "cmip6_compound_name": "E3hrPt.conccn", + "cmip7_compound_name": "aerosol.conccn.tpt-u-hs-u.3hr.GLB", + "uid": "83bbfbbb-7f07-11ef-9308-b1dd71e64bec" + }, + "aerosol.depdust.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "minus_tendency_of_atmosphere_mass_content_of_dust_dry_aerosol_particles_due_to_deposition", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Total Deposition Rate of Dust", + "comment": "Fdry mass deposition rate of dust", + "dimensions": "longitude latitude time", + "out_name": "depdust", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "depdust", + "variableRootDD": "depdust", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "depdust_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "Emon.depdust", + "cmip7_compound_name": "aerosol.depdust.tavg-u-hxy-u.mon.GLB", + "uid": "6f6bf34c-9acb-11e6-b7ee-ac72891c3257" + }, + "aerosol.drybc.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "minus_tendency_of_atmosphere_mass_content_of_elemental_carbon_dry_aerosol_particles_due_to_dry_deposition", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Dry Deposition Rate of Black Carbon Aerosol Mass", + "comment": "Dry Deposition Rate of Black Carbon Aerosol Mass", + "dimensions": "longitude latitude time", + "out_name": "drybc", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "drybc", + "variableRootDD": "drybc", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "drybc_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.drybc", + "cmip7_compound_name": "aerosol.drybc.tavg-u-hxy-u.mon.GLB", + "uid": "19bf7604-81b1-11e6-92de-ac72891c3257" + }, + "aerosol.drydust.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "minus_tendency_of_atmosphere_mass_content_of_dust_dry_aerosol_particles_due_to_dry_deposition", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Dry Deposition Rate of Dust", + "comment": "Dry Deposition Rate of Dust", + "dimensions": "longitude latitude time", + "out_name": "drydust", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "drydust", + "variableRootDD": "drydust", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "drydust_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.drydust", + "cmip7_compound_name": "aerosol.drydust.tavg-u-hxy-u.mon.GLB", + "uid": "19c064c4-81b1-11e6-92de-ac72891c3257" + }, + "aerosol.dryno3.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "tendency_of_atmosphere_mass_content_of_nitrate_dry_aerosol_due_to_dry_deposition", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "dry deposition of NO3 aerosol", + "comment": "Loss rate of nitrate (NO3) aerosol from the atmosphere due to dry deposition", + "dimensions": "longitude latitude time", + "out_name": "dryno3", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "dryno3", + "variableRootDD": "dryno3", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "dryno3_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.dryno3", + "cmip7_compound_name": "aerosol.dryno3.tavg-u-hxy-u.mon.GLB", + "uid": "83bbfc0f-7f07-11ef-9308-b1dd71e64bec" + }, + "aerosol.dryo3.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "minus_tendency_of_atmosphere_mass_content_of_ozone_due_to_dry_deposition", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Dry Deposition Rate of O3", + "comment": "Dry Deposition Rate of O3", + "dimensions": "longitude latitude time", + "out_name": "dryo3", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "dryo3", + "variableRootDD": "dryo3", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "dryo3_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.dryo3", + "cmip7_compound_name": "aerosol.dryo3.tavg-u-hxy-u.mon.GLB", + "uid": "19bebac0-81b1-11e6-92de-ac72891c3257" + }, + "aerosol.dryoa.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "minus_tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_due_to_dry_deposition", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Dry Deposition Rate of Dry Aerosol Total Organic Matter", + "comment": "Dry Deposition Rate of Dry Aerosol Total Organic Matter", + "dimensions": "longitude latitude time", + "out_name": "dryoa", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "dryoa", + "variableRootDD": "dryoa", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "dryoa_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.dryoa", + "cmip7_compound_name": "aerosol.dryoa.tavg-u-hxy-u.mon.GLB", + "uid": "19bf27e4-81b1-11e6-92de-ac72891c3257" + }, + "aerosol.dryso2.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "minus_tendency_of_atmosphere_mass_content_of_sulfur_dioxide_due_to_dry_deposition", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Dry Deposition Rate of SO2", + "comment": "Dry Deposition Rate of SO2", + "dimensions": "longitude latitude time", + "out_name": "dryso2", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "dryso2", + "variableRootDD": "dryso2", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "dryso2_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.dryso2", + "cmip7_compound_name": "aerosol.dryso2.tavg-u-hxy-u.mon.GLB", + "uid": "19bf521e-81b1-11e6-92de-ac72891c3257" + }, + "aerosol.dryso4.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "minus_tendency_of_atmosphere_mass_content_of_sulfate_dry_aerosol_particles_due_to_dry_deposition", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Dry Deposition Rate of SO4", + "comment": "Dry Deposition Rate of SO4", + "dimensions": "longitude latitude time", + "out_name": "dryso4", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "dryso4", + "variableRootDD": "dryso4", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "dryso4_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.dryso4", + "cmip7_compound_name": "aerosol.dryso4.tavg-u-hxy-u.mon.GLB", + "uid": "19bf48fa-81b1-11e6-92de-ac72891c3257" + }, + "aerosol.dryss.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "minus_tendency_of_atmosphere_mass_content_of_sea_salt_dry_aerosol_particles_due_to_dry_deposition", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Dry Deposition Rate of Sea-Salt Aerosol", + "comment": "Dry Deposition Rate of Sea-Salt Aerosol", + "dimensions": "longitude latitude time", + "out_name": "dryss", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "dryss", + "variableRootDD": "dryss", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "dryss_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.dryss", + "cmip7_compound_name": "aerosol.dryss.tavg-u-hxy-u.mon.GLB", + "uid": "19c00b32-81b1-11e6-92de-ac72891c3257" + }, + "aerosol.ec550aer.tavg-al-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "volume_extinction_coefficient_in_air_due_to_ambient_aerosol_particles", + "units": "m-1", + "cell_methods": "area: time: mean (weighted by downwelling solar radiation)", + "cell_measures": "area: areacella", + "long_name": "Aerosol Extinction Coefficient", + "comment": "Aerosol Extinction at 550nm", + "dimensions": "longitude latitude alevel time lambda550nm", + "out_name": "ec550aer", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "ec550aer", + "variableRootDD": "ec550aer", + "branding_label": "tavg-al-hxy-u", + "branded_variable_name": "ec550aer_tavg-al-hxy-u", + "region": "GLB", + "cmip6_compound_name": "Emon.ec550aer", + "cmip7_compound_name": "aerosol.ec550aer.tavg-al-hxy-u.mon.GLB", + "uid": "6f36dbda-9acb-11e6-b7ee-ac72891c3257" + }, + "aerosol.ec550aer.tpt-u-hxy-u.6hr.GLB": { + "frequency": "6hr", + "modeling_realm": "aerosol", + "standard_name": "volume_extinction_coefficient_in_air_due_to_ambient_aerosol_particles", + "units": "m-1", + "cell_methods": "area: mean (weighted by downwelling solar radiation) time: point", + "cell_measures": "area: areacella", + "long_name": "Aerosol Extinction Coefficient", + "comment": "Aerosol Extinction @550nm", + "dimensions": "longitude latitude time1 lambda550nm", + "out_name": "ec550aer", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-point", + "cmip6_table": "6hrLev", + "physical_parameter_name": "ec550aer", + "variableRootDD": "ec550aer", + "branding_label": "tpt-u-hxy-u", + "branded_variable_name": "ec550aer_tpt-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "6hrLev.ec550aer", + "cmip7_compound_name": "aerosol.ec550aer.tpt-u-hxy-u.6hr.GLB", + "uid": "8feccd66-267c-11e7-8933-ac72891c3257" + }, + "aerosol.emiaco.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "tendency_of_atmosphere_mass_content_of_carbon_monoxide_due_to_emission", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Total Emission Rate of Anthropogenic CO", + "comment": "anthrophogenic emission of CO", + "dimensions": "longitude latitude time", + "out_name": "emiaco", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "emiaco", + "variableRootDD": "emiaco", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "emiaco_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.emiaco", + "cmip7_compound_name": "aerosol.emiaco.tavg-u-hxy-u.mon.GLB", + "uid": "19bfb3d0-81b1-11e6-92de-ac72891c3257" + }, + "aerosol.emianox.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "tendency_of_atmosphere_mole_concentration_of_nox_expressed_as_nitrogen", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Total Emission Rate of Anthropogenic NOx", + "comment": "Store flux as Nitrogen. Anthropogenic fraction. NOx=NO+NO2, Includes agricultural waste burning but no other biomass burning. Integrate 3D emission field vertically to 2d field.", + "dimensions": "longitude latitude time", + "out_name": "emianox", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "emianox", + "variableRootDD": "emianox", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "emianox_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.emianox", + "cmip7_compound_name": "aerosol.emianox.tavg-u-hxy-u.mon.GLB", + "uid": "19bf9c2e-81b1-11e6-92de-ac72891c3257" + }, + "aerosol.emiaoa.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_due_to_net_chemical_production_and_emission", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Total Emission Rate of Anthropogenic Organic Aerosol", + "comment": "anthropogenic part of emioa", + "dimensions": "longitude latitude time", + "out_name": "emiaoa", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "emiaoa", + "variableRootDD": "emiaoa", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "emiaoa_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.emiaoa", + "cmip7_compound_name": "aerosol.emiaoa.tavg-u-hxy-u.mon.GLB", + "uid": "19bfaf84-81b1-11e6-92de-ac72891c3257" + }, + "aerosol.emibbbc.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "tendency_of_atmosphere_mass_content_of_elemental_carbon_dry_aerosol_particles_due_to_emission_from_fires", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "total emission rate of black carbon aerosol mass from all biomass burning", + "comment": "Total emission rate of black carbon aerosol into the atmosphere from all biomass burning (natural and anthropogenic)", + "dimensions": "longitude latitude time", + "out_name": "emibbbc", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "emibbbc", + "variableRootDD": "emibbbc", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "emibbbc_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.emibbbc", + "cmip7_compound_name": "aerosol.emibbbc.tavg-u-hxy-u.mon.GLB", + "uid": "83bbfc0b-7f07-11ef-9308-b1dd71e64bec" + }, + "aerosol.emibbch4.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "tendency_of_atmosphere_mass_content_of_methane_due_to_emission_from_fires", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "total emission of CH4 from all biomass burning", + "comment": "Total emission rate of methane (CH4) into the atmosphere from all biomass burning (natural and anthropogenic)", + "dimensions": "longitude latitude time", + "out_name": "emibbch4", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "emibbch4", + "variableRootDD": "emibbch4", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "emibbch4_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.emibbch4", + "cmip7_compound_name": "aerosol.emibbch4.tavg-u-hxy-u.mon.GLB", + "uid": "83bbfc0a-7f07-11ef-9308-b1dd71e64bec" + }, + "aerosol.emibbco.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "tendency_of_atmosphere_mass_content_of_carbon_monoxide_due_to_emission_from_fires", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "total emission rate of CO from all biomass burning", + "comment": "Total emission rate of carbon monoxide (CO) into the atmosphere from all biomass burning (natural and anthropogenic)", + "dimensions": "longitude latitude time", + "out_name": "emibbco", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "emibbco", + "variableRootDD": "emibbco", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "emibbco_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.emibbco", + "cmip7_compound_name": "aerosol.emibbco.tavg-u-hxy-u.mon.GLB", + "uid": "83bbfc09-7f07-11ef-9308-b1dd71e64bec" + }, + "aerosol.emibbdms.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "tendency_of_atmosphere_mass_content_of_dimethyl_sulfide_due_to_emission_from_fires", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "total emission of DMS from all biomass burning", + "comment": "Total emission rate of dimethyl sulfide (DMS) into the atmosphere from all biomass burning (natural and anthropogenic)", + "dimensions": "longitude latitude time", + "out_name": "emibbdms", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "emibbdms", + "variableRootDD": "emibbdms", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "emibbdms_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.emibbdms", + "cmip7_compound_name": "aerosol.emibbdms.tavg-u-hxy-u.mon.GLB", + "uid": "83bbfc08-7f07-11ef-9308-b1dd71e64bec" + }, + "aerosol.emibbnh3.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "tendency_of_atmosphere_mass_content_of_ammonia_due_to_emission_from_fires", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "total emission rate of NH3 from all biomass burning", + "comment": "Total emission rate of ammonia (NH3) into the atmosphere from all biomass burning (natural and anthropogenic)", + "dimensions": "longitude latitude time", + "out_name": "emibbnh3", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "emibbnh3", + "variableRootDD": "emibbnh3", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "emibbnh3_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.emibbnh3", + "cmip7_compound_name": "aerosol.emibbnh3.tavg-u-hxy-u.mon.GLB", + "uid": "83bbfc07-7f07-11ef-9308-b1dd71e64bec" + }, + "aerosol.emibbnox.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "tendency_of_atmosphere_mass_content_of_nox_expressed_as_nitrogen_due_to_emission_from_fires", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "total emission rate of NOx from all biomass burning", + "comment": "Total emission rate of nitrogen oxides (NOx) from all biomass burning (natural and anthropogenic)", + "dimensions": "longitude latitude time", + "out_name": "emibbnox", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "emibbnox", + "variableRootDD": "emibbnox", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "emibbnox_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.emibbnox", + "cmip7_compound_name": "aerosol.emibbnox.tavg-u-hxy-u.mon.GLB", + "uid": "83bbfc06-7f07-11ef-9308-b1dd71e64bec" + }, + "aerosol.emibboa.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_due_to_emission_from_fires", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "total emission of organic aerosol from all biomass burning", + "comment": "Total emission rate of particulate organic matter (organic aerosol) into the atmosphere from all biomass burning (natural and anthropogenic)", + "dimensions": "longitude latitude time", + "out_name": "emibboa", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "emibboa", + "variableRootDD": "emibboa", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "emibboa_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.emibboa", + "cmip7_compound_name": "aerosol.emibboa.tavg-u-hxy-u.mon.GLB", + "uid": "83bbfc05-7f07-11ef-9308-b1dd71e64bec" + }, + "aerosol.emibbso2.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "tendency_of_atmosphere_mass_content_of_sulfur_dioxide_due_to_emission_from_fires", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "total emission rate of SO2 from all biomass burning", + "comment": "Total emission rate of SO2 into the atmosphere from all biomass burning (natural and anthropogenic).", + "dimensions": "longitude latitude time", + "out_name": "emibbso2", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "emibbso2", + "variableRootDD": "emibbso2", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "emibbso2_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.emibbso2", + "cmip7_compound_name": "aerosol.emibbso2.tavg-u-hxy-u.mon.GLB", + "uid": "83bbfc04-7f07-11ef-9308-b1dd71e64bec" + }, + "aerosol.emibbvoc.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "tendency_of_atmosphere_mass_content_of_nmvoc_due_to_emission_from_fires", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "total emission rate of NMVOC from all biomass burning", + "comment": "Total emission rate of non-methane volatile organic compounds (NMVOCs) from all biomass burning (natural and anthropogenic)", + "dimensions": "longitude latitude time", + "out_name": "emibbvoc", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "emibbvoc", + "variableRootDD": "emibbvoc", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "emibbvoc_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.emibbvoc", + "cmip7_compound_name": "aerosol.emibbvoc.tavg-u-hxy-u.mon.GLB", + "uid": "83bbfc03-7f07-11ef-9308-b1dd71e64bec" + }, + "aerosol.emibc.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "tendency_of_atmosphere_mass_content_of_elemental_carbon_dry_aerosol_particles_due_to_emission", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Total Emission Rate of Black Carbon Aerosol Mass", + "comment": "Integrate 3D emission field vertically to 2d field.", + "dimensions": "longitude latitude time", + "out_name": "emibc", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "emibc", + "variableRootDD": "emibc", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "emibc_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.emibc", + "cmip7_compound_name": "aerosol.emibc.tavg-u-hxy-u.mon.GLB", + "uid": "19be87bc-81b1-11e6-92de-ac72891c3257" + }, + "aerosol.emibvoc.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "tendency_of_atmosphere_mass_content_of_biogenic_nmvoc_expressed_as_carbon_due_to_emission", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Total Emission Rate of Biogenic NMVOC", + "comment": "Integrate 3D emission field vertically to 2d field._If_ fixed molecular weight of NMVOC is not available in model, please provide in units of kilomole m-2 s-1 (i.e. kg m-2 s-1 as if model NMVOC had molecular weight of 1) and add a comment to your file.", + "dimensions": "longitude latitude time", + "out_name": "emibvoc", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "emibvoc", + "variableRootDD": "emibvoc", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "emibvoc_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.emibvoc", + "cmip7_compound_name": "aerosol.emibvoc.tavg-u-hxy-u.mon.GLB", + "uid": "19bf3928-81b1-11e6-92de-ac72891c3257" + }, + "aerosol.emico.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "tendency_of_atmosphere_mass_content_of_carbon_monoxide_due_to_emission", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Total Emission Rate of CO", + "comment": "Integrate 3D emission field vertically to 2d field.", + "dimensions": "longitude latitude time", + "out_name": "emico", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "emico", + "variableRootDD": "emico", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "emico_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.emico", + "cmip7_compound_name": "aerosol.emico.tavg-u-hxy-u.mon.GLB", + "uid": "19bfe904-81b1-11e6-92de-ac72891c3257" + }, + "aerosol.emidms.tavg-u-hxy-u.mon.30S-90S": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "tendency_of_atmosphere_mass_content_of_dimethyl_sulfide_due_to_emission", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Total Emission Rate of DMS", + "comment": "Integrate 3D emission field vertically to 2d field.", + "dimensions": "longitude latitude time", + "out_name": "emidms", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "emidms", + "variableRootDD": "emidms", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "emidms_tavg-u-hxy-u", + "region": "30S-90S", + "cmip6_compound_name": "AERmon.emidmsSouth30", + "cmip7_compound_name": "aerosol.emidms.tavg-u-hxy-u.mon.30S-90S", + "uid": "80ac3189-a698-11ef-914a-613c0433d878" + }, + "aerosol.emidms.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "tendency_of_atmosphere_mass_content_of_dimethyl_sulfide_due_to_emission", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Total Emission Rate of DMS", + "comment": "Integrate 3D emission field vertically to 2d field.", + "dimensions": "longitude latitude time", + "out_name": "emidms", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "emidms", + "variableRootDD": "emidms", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "emidms_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.emidms", + "cmip7_compound_name": "aerosol.emidms.tavg-u-hxy-u.mon.GLB", + "uid": "19c006c8-81b1-11e6-92de-ac72891c3257" + }, + "aerosol.emidust.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "tendency_of_atmosphere_mass_content_of_dust_dry_aerosol_particles_due_to_emission", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Total Emission Rate of Dust", + "comment": "Integrate 3D emission field vertically to 2d field.", + "dimensions": "longitude latitude time", + "out_name": "emidust", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "emidust", + "variableRootDD": "emidust", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "emidust_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.emidust", + "cmip7_compound_name": "aerosol.emidust.tavg-u-hxy-u.mon.GLB", + "uid": "19be5db4-81b1-11e6-92de-ac72891c3257" + }, + "aerosol.emiisop.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "tendency_of_atmosphere_mass_content_of_isoprene_due_to_emission", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Total Emission Rate of Isoprene", + "comment": "Integrate 3D emission field vertically to 2d field", + "dimensions": "longitude latitude time", + "out_name": "emiisop", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "emiisop", + "variableRootDD": "emiisop", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "emiisop_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.emiisop", + "cmip7_compound_name": "aerosol.emiisop.tavg-u-hxy-u.mon.GLB", + "uid": "19c03ecc-81b1-11e6-92de-ac72891c3257" + }, + "aerosol.emilnox.tavg-al-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "tendency_of_atmosphere_mole_concentration_of_nox_expressed_as_nitrogen", + "units": "mol s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Layer-Integrated Lightning Production of NOx", + "comment": "Integrate the NOx production for lightning over model layer.", + "dimensions": "longitude latitude alevel time", + "out_name": "emilnox", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "emilnox", + "variableRootDD": "emilnox", + "branding_label": "tavg-al-hxy-u", + "branded_variable_name": "emilnox_tavg-al-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.emilnox", + "cmip7_compound_name": "aerosol.emilnox.tavg-al-hxy-u.mon.GLB", + "uid": "19bfbace-81b1-11e6-92de-ac72891c3257" + }, + "aerosol.eminh3.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "tendency_of_atmosphere_mass_content_of_ammonia_due_to_emission", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Total Emission Rate of NH3", + "comment": "Integrate 3D emission field vertically to 2d field.", + "dimensions": "longitude latitude time", + "out_name": "eminh3", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "eminh3", + "variableRootDD": "eminh3", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "eminh3_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.eminh3", + "cmip7_compound_name": "aerosol.eminh3.tavg-u-hxy-u.mon.GLB", + "uid": "19c0574a-81b1-11e6-92de-ac72891c3257" + }, + "aerosol.eminox.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "tendency_of_atmosphere_mass_content_of_nox_expressed_as_nitrogen_due_to_emission", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Total Emission Rate of NOx", + "comment": "Store flux as Nitrogen. NOx=NO+NO2. Integrate 3D emission field vertically to 2d field.", + "dimensions": "longitude latitude time", + "out_name": "eminox", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "eminox", + "variableRootDD": "eminox", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "eminox_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.eminox", + "cmip7_compound_name": "aerosol.eminox.tavg-u-hxy-u.mon.GLB", + "uid": "19bfbd76-81b1-11e6-92de-ac72891c3257" + }, + "aerosol.emioa.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_due_to_net_chemical_production_and_emission", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Primary Emission and Chemical Production of Dry Aerosol Organic Matter", + "comment": "This is the sum of total emission of POA and total production of SOA (emipoa+chepsoa). \"Mass\" refers to the mass of organic matter, not mass of organic carbon alone. We recommend a scale factor of POM=1.4\\*OC, unless your model has more detailed info available. Integrate 3D chemical production and emission field vertically to 2d field.", + "dimensions": "longitude latitude time", + "out_name": "emioa", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "emioa", + "variableRootDD": "emioa", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "emioa_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.emioa", + "cmip7_compound_name": "aerosol.emioa.tavg-u-hxy-u.mon.GLB", + "uid": "19bee41e-81b1-11e6-92de-ac72891c3257" + }, + "aerosol.emiso2.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "tendency_of_atmosphere_mass_content_of_sulfur_dioxide_due_to_emission", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Total Emission Rate of SO2", + "comment": "Integrate 3D emission field vertically to 2d field.", + "dimensions": "longitude latitude time", + "out_name": "emiso2", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "emiso2", + "variableRootDD": "emiso2", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "emiso2_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.emiso2", + "cmip7_compound_name": "aerosol.emiso2.tavg-u-hxy-u.mon.GLB", + "uid": "19c023d8-81b1-11e6-92de-ac72891c3257" + }, + "aerosol.emiso4.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "tendency_of_atmosphere_mass_content_of_sulfate_dry_aerosol_particles_due_to_emission", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Total Direct Emission Rate of SO4", + "comment": "Direct primary emission does not include secondary sulfate production. Integrate 3D emission field vertically to 2d field.", + "dimensions": "longitude latitude time", + "out_name": "emiso4", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "emiso4", + "variableRootDD": "emiso4", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "emiso4_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.emiso4", + "cmip7_compound_name": "aerosol.emiso4.tavg-u-hxy-u.mon.GLB", + "uid": "19befb70-81b1-11e6-92de-ac72891c3257" + }, + "aerosol.emiss.tavg-u-hxy-u.mon.30S-90S": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "tendency_of_atmosphere_mass_content_of_sea_salt_dry_aerosol_particles_due_to_emission", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Total Emission Rate of Sea-Salt Aerosol", + "comment": "Integrate 3D emission field vertically to 2d field.", + "dimensions": "longitude latitude time", + "out_name": "emiss", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "emiss", + "variableRootDD": "emiss", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "emiss_tavg-u-hxy-u", + "region": "30S-90S", + "cmip6_compound_name": "AERmon.emissSouth30", + "cmip7_compound_name": "aerosol.emiss.tavg-u-hxy-u.mon.30S-90S", + "uid": "80ac318a-a698-11ef-914a-613c0433d878" + }, + "aerosol.emiss.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "tendency_of_atmosphere_mass_content_of_sea_salt_dry_aerosol_particles_due_to_emission", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Total Emission Rate of Sea-Salt Aerosol", + "comment": "Integrate 3D emission field vertically to 2d field.", + "dimensions": "longitude latitude time", + "out_name": "emiss", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "emiss", + "variableRootDD": "emiss", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "emiss_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.emiss", + "cmip7_compound_name": "aerosol.emiss.tavg-u-hxy-u.mon.GLB", + "uid": "19bf3086-81b1-11e6-92de-ac72891c3257" + }, + "aerosol.emivoc.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "tendency_of_atmosphere_mass_content_of_nmvoc_due_to_emission", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Total Emission Rate of NMVOC", + "comment": "Integrate 3D emission field vertically to 2d field. _If_ fixed molecular weight of NMVOC is not available in model, please provide in units of kilomole m-2 s-1 (i.e. kg m-2 s-1 as if model NMVOC had molecular weight of 1) and add a comment to your file.", + "dimensions": "longitude latitude time", + "out_name": "emivoc", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "emivoc", + "variableRootDD": "emivoc", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "emivoc_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.emivoc", + "cmip7_compound_name": "aerosol.emivoc.tavg-u-hxy-u.mon.GLB", + "uid": "19c06d70-81b1-11e6-92de-ac72891c3257" + }, + "aerosol.h2o.tavg-al-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "mass_fraction_of_water_in_air", + "units": "1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Mass Fraction of Water", + "comment": "includes all phases of water", + "dimensions": "longitude latitude alevel time", + "out_name": "h2o", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "h2o", + "variableRootDD": "h2o", + "branding_label": "tavg-al-hxy-u", + "branded_variable_name": "h2o_tavg-al-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.h2o", + "cmip7_compound_name": "aerosol.h2o.tavg-al-hxy-u.mon.GLB", + "uid": "19bff8c2-81b1-11e6-92de-ac72891c3257" + }, + "aerosol.h2o.tavg-p39-hy-air.mon.GLB": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "mass_fraction_of_water_in_air", + "units": "1", + "cell_methods": "longitude: time: mean where air", + "cell_measures": "", + "long_name": "Mass Fraction of Water", + "comment": "includes all phases of water", + "dimensions": "latitude plev39 time", + "out_name": "h2o", + "type": "real", + "positive": "", + "spatial_shape": "Y-P39", + "temporal_shape": "time-intv", + "cmip6_table": "AERmonZ", + "physical_parameter_name": "h2o", + "variableRootDD": "h2o", + "branding_label": "tavg-p39-hy-air", + "branded_variable_name": "h2o_tavg-p39-hy-air", + "region": "GLB", + "cmip6_compound_name": "AERmonZ.h2o", + "cmip7_compound_name": "aerosol.h2o.tavg-p39-hy-air.mon.GLB", + "uid": "fda6d178-96ec-11e6-b81e-c9e268aff03a" + }, + "aerosol.hcfc22.tavg-al-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "mole_fraction_of_hcfc22_in_air", + "units": "mol mol-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Mole Fraction of HCFC22", + "comment": "This is the mole fraction of HCFC22 in air", + "dimensions": "longitude latitude alevel time", + "out_name": "hcfc22", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "hcfc22", + "variableRootDD": "hcfc22", + "branding_label": "tavg-al-hxy-u", + "branded_variable_name": "hcfc22_tavg-al-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.hcfc22", + "cmip7_compound_name": "aerosol.hcfc22.tavg-al-hxy-u.mon.GLB", + "uid": "80ab720b-a698-11ef-914a-613c0433d878" + }, + "aerosol.hcho.tavg-al-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "mole_fraction_of_formaldehyde_in_air", + "units": "mol mol-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Formaldehyde Volume Mixing Ratio", + "comment": "Mole fraction is used in the construction mole_fraction_of_X_in_Y, where X is a material constituent of Y.", + "dimensions": "longitude latitude alevel time", + "out_name": "hcho", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "hcho", + "variableRootDD": "hcho", + "branding_label": "tavg-al-hxy-u", + "branded_variable_name": "hcho_tavg-al-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.hcho", + "cmip7_compound_name": "aerosol.hcho.tavg-al-hxy-u.mon.GLB", + "uid": "19be2006-81b1-11e6-92de-ac72891c3257" + }, + "aerosol.hcl.tavg-al-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "mole_fraction_of_hydrogen_chloride_in_air", + "units": "mol mol-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "HCl Volume Mixing Ratio", + "comment": "Mole fraction is used in the construction mole_fraction_of_X_in_Y, where X is a material constituent of Y. The chemical formula of hydrogen chloride is HCl.", + "dimensions": "longitude latitude alevel time", + "out_name": "hcl", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "hcl", + "variableRootDD": "hcl", + "branding_label": "tavg-al-hxy-u", + "branded_variable_name": "hcl_tavg-al-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.hcl", + "cmip7_compound_name": "aerosol.hcl.tavg-al-hxy-u.mon.GLB", + "uid": "19bede74-81b1-11e6-92de-ac72891c3257" + }, + "aerosol.hcl.tavg-p39-hy-air.mon.GLB": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "mole_fraction_of_hydrogen_chloride_in_air", + "units": "mol mol-1", + "cell_methods": "longitude: time: mean where air", + "cell_measures": "", + "long_name": "HCl Volume Mixing Ratio", + "comment": "Mole fraction is used in the construction mole_fraction_of_X_in_Y, where X is a material constituent of Y. The chemical formula of hydrogen chloride is HCl.", + "dimensions": "latitude plev39 time", + "out_name": "hcl", + "type": "real", + "positive": "", + "spatial_shape": "Y-P39", + "temporal_shape": "time-intv", + "cmip6_table": "AERmonZ", + "physical_parameter_name": "hcl", + "variableRootDD": "hcl", + "branding_label": "tavg-p39-hy-air", + "branded_variable_name": "hcl_tavg-p39-hy-air", + "region": "GLB", + "cmip6_compound_name": "AERmonZ.hcl", + "cmip7_compound_name": "aerosol.hcl.tavg-p39-hy-air.mon.GLB", + "uid": "fda71764-96ec-11e6-b81e-c9e268aff03a" + }, + "aerosol.hfc125.tavg-al-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "mole_fraction_of_hfc125_in_air", + "units": "mol mol-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Mole Fraction of HFC125", + "comment": "This is the mole fraction of HFC125 in air", + "dimensions": "longitude latitude alevel time", + "out_name": "hfc125", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "hfc125", + "variableRootDD": "hfc125", + "branding_label": "tavg-al-hxy-u", + "branded_variable_name": "hfc125_tavg-al-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.hfc125", + "cmip7_compound_name": "aerosol.hfc125.tavg-al-hxy-u.mon.GLB", + "uid": "80ab720c-a698-11ef-914a-613c0433d878" + }, + "aerosol.hfc134a.tavg-al-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "mole_fraction_of_hfc134a_in_air", + "units": "mol mol-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Mole Fraction of HFC134a", + "comment": "This is the mole fraction of HFC134a in air", + "dimensions": "longitude latitude alevel time", + "out_name": "hfc134a", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "hfc134a", + "variableRootDD": "hfc134a", + "branding_label": "tavg-al-hxy-u", + "branded_variable_name": "hfc134a_tavg-al-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.hfc134a", + "cmip7_compound_name": "aerosol.hfc134a.tavg-al-hxy-u.mon.GLB", + "uid": "80ab720d-a698-11ef-914a-613c0433d878" + }, + "aerosol.hno3.tavg-al-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "mole_fraction_of_nitric_acid_in_air", + "units": "mol mol-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "HNO3 Volume Mixing Ratio", + "comment": "Mole fraction is used in the construction mole_fraction_of_X_in_Y, where X is a material constituent of Y.", + "dimensions": "longitude latitude alevel time", + "out_name": "hno3", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "hno3", + "variableRootDD": "hno3", + "branding_label": "tavg-al-hxy-u", + "branded_variable_name": "hno3_tavg-al-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.hno3", + "cmip7_compound_name": "aerosol.hno3.tavg-al-hxy-u.mon.GLB", + "uid": "19bf7a5a-81b1-11e6-92de-ac72891c3257" + }, + "aerosol.hno3.tavg-p39-hy-air.mon.GLB": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "mole_fraction_of_nitric_acid_in_air", + "units": "mol mol-1", + "cell_methods": "longitude: time: mean where air", + "cell_measures": "", + "long_name": "HNO3 Volume Mixing Ratio", + "comment": "Mole fraction is used in the construction mole_fraction_of_X_in_Y, where X is a material constituent of Y.", + "dimensions": "latitude plev39 time", + "out_name": "hno3", + "type": "real", + "positive": "", + "spatial_shape": "Y-P39", + "temporal_shape": "time-intv", + "cmip6_table": "AERmonZ", + "physical_parameter_name": "hno3", + "variableRootDD": "hno3", + "branding_label": "tavg-p39-hy-air", + "branded_variable_name": "hno3_tavg-p39-hy-air", + "region": "GLB", + "cmip6_compound_name": "AERmonZ.hno3", + "cmip7_compound_name": "aerosol.hno3.tavg-p39-hy-air.mon.GLB", + "uid": "fda6c5d4-96ec-11e6-b81e-c9e268aff03a" + }, + "aerosol.ho2.tavg-p39-hy-air.mon.GLB": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "mole_fraction_of_hydroperoxyl_radical_in_air", + "units": "mol mol-1", + "cell_methods": "longitude: time: mean where air", + "cell_measures": "", + "long_name": "HO2 Volume Mixing Ratio", + "comment": "Mole fraction is used in the construction mole_fraction_of_X_in_Y, where X is a material constituent of Y. The chemical formula of hydroperoxyl radical is HO2.", + "dimensions": "latitude plev39 time", + "out_name": "ho2", + "type": "real", + "positive": "", + "spatial_shape": "Y-P39", + "temporal_shape": "time-intv", + "cmip6_table": "AERmonZ", + "physical_parameter_name": "ho2", + "variableRootDD": "ho2", + "branding_label": "tavg-p39-hy-air", + "branded_variable_name": "ho2_tavg-p39-hy-air", + "region": "GLB", + "cmip6_compound_name": "AERmonZ.ho2", + "cmip7_compound_name": "aerosol.ho2.tavg-p39-hy-air.mon.GLB", + "uid": "fda6f4fa-96ec-11e6-b81e-c9e268aff03a" + }, + "aerosol.isop.tavg-al-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "mole_fraction_of_isoprene_in_air", + "units": "mol mol-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Isoprene Volume Mixing Ratio", + "comment": "Mole fraction of isoprene in air.", + "dimensions": "longitude latitude alevel time", + "out_name": "isop", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "isop", + "variableRootDD": "isop", + "branding_label": "tavg-al-hxy-u", + "branded_variable_name": "isop_tavg-al-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.isop", + "cmip7_compound_name": "aerosol.isop.tavg-al-hxy-u.mon.GLB", + "uid": "19beffda-81b1-11e6-92de-ac72891c3257" + }, + "aerosol.jno2.tavg-al-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "photolysis_rate_of_nitrogen_dioxide", + "units": "s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Photolysis Rate of NO2", + "comment": "Photolysis rate of nitrogen dioxide (NO2)", + "dimensions": "longitude latitude alevel time", + "out_name": "jno2", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "jno2", + "variableRootDD": "jno2", + "branding_label": "tavg-al-hxy-u", + "branded_variable_name": "jno2_tavg-al-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.jno2", + "cmip7_compound_name": "aerosol.jno2.tavg-al-hxy-u.mon.GLB", + "uid": "01d3111e-c792-11e6-aa58-5404a60d96b5" + }, + "aerosol.lossch4.tavg-al-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "tendency_of_atmosphere_mole_concentration_of_methane_due_to_chemical_destruction", + "units": "mol m-3 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Monthly Loss of Atmospheric Methane", + "comment": "monthly averaged atmospheric loss", + "dimensions": "longitude latitude alevel time", + "out_name": "lossch4", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "lossch4", + "variableRootDD": "lossch4", + "branding_label": "tavg-al-hxy-u", + "branded_variable_name": "lossch4_tavg-al-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.lossch4", + "cmip7_compound_name": "aerosol.lossch4.tavg-al-hxy-u.mon.GLB", + "uid": "fda95466-96ec-11e6-b81e-c9e268aff03a" + }, + "aerosol.lossco.tavg-al-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "tendency_of_atmosphere_mole_concentration_of_carbon_monoxide_due_to_chemical_destruction", + "units": "mol m-3 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Monthly Loss of Atmospheric Carbon Monoxide", + "comment": "monthly averaged atmospheric loss", + "dimensions": "longitude latitude alevel time", + "out_name": "lossco", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "lossco", + "variableRootDD": "lossco", + "branding_label": "tavg-al-hxy-u", + "branded_variable_name": "lossco_tavg-al-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.lossco", + "cmip7_compound_name": "aerosol.lossco.tavg-al-hxy-u.mon.GLB", + "uid": "fdabeffa-96ec-11e6-b81e-c9e268aff03a" + }, + "aerosol.lossn2o.tavg-al-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "tendency_of_atmosphere_mole_concentration_of_nitrous_oxide_due_to_chemical_destruction", + "units": "mol m-3 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Monthly Loss of Atmospheric Nitrous Oxide", + "comment": "monthly averaged atmospheric loss", + "dimensions": "longitude latitude alevel time", + "out_name": "lossn2o", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "lossn2o", + "variableRootDD": "lossn2o", + "branding_label": "tavg-al-hxy-u", + "branded_variable_name": "lossn2o_tavg-al-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.lossn2o", + "cmip7_compound_name": "aerosol.lossn2o.tavg-al-hxy-u.mon.GLB", + "uid": "fdb1c1c8-96ec-11e6-b81e-c9e268aff03a" + }, + "aerosol.lwp.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "atmosphere_mass_content_of_cloud_liquid_water", + "units": "kg m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Liquid Water Path", + "comment": "The total mass of liquid water in cloud per unit area.", + "dimensions": "longitude latitude time", + "out_name": "lwp", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "lwp", + "variableRootDD": "lwp", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "lwp_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.lwp", + "cmip7_compound_name": "aerosol.lwp.tavg-u-hxy-u.mon.GLB", + "uid": "19bf71ae-81b1-11e6-92de-ac72891c3257" + }, + "aerosol.mmraerh2o.tavg-al-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "mass_fraction_of_water_in_ambient_aerosol_particles_in_air", + "units": "kg kg-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Aerosol Water Mass Mixing Ratio", + "comment": "Mass fraction is used in the construction mass_fraction_of_X_in_Y, where X is a material constituent of Y. It means the ratio of the mass of X to the mass of Y (including X). \"Aerosol\" means the system of suspended liquid or solid particles in air (except cloud droplets) and their carrier gas, the air itself. \"Ambient_aerosol\" means that the aerosol is measured or modelled at the ambient state of pressure, temperature and relative humidity that exists in its immediate environment. \"Ambient aerosol particles\" are aerosol particles that have taken up ambient water through hygroscopic growth. The extent of hygroscopic growth depends on the relative humidity and the composition of the particles.", + "dimensions": "longitude latitude alevel time", + "out_name": "mmraerh2o", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "mmraerh2o", + "variableRootDD": "mmraerh2o", + "branding_label": "tavg-al-hxy-u", + "branded_variable_name": "mmraerh2o_tavg-al-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.mmraerh2o", + "cmip7_compound_name": "aerosol.mmraerh2o.tavg-al-hxy-u.mon.GLB", + "uid": "19c04782-81b1-11e6-92de-ac72891c3257" + }, + "aerosol.mmraerh2o.tavg-h2m-hxy-u.day.GLB": { + "frequency": "day", + "modeling_realm": "aerosol", + "standard_name": "mass_fraction_of_water_in_ambient_aerosol_particles_in_air", + "units": "kg kg-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Daily mean surface Aerosol water mass mixing ratio in lowest model layer", + "comment": "Daily mean Aerosol water mass mixing ratio in lowest model layer", + "dimensions": "longitude latitude time height2m", + "out_name": "mmraerh2o", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "AERday", + "physical_parameter_name": "mmraerh2o", + "variableRootDD": "mmraerh2o", + "branding_label": "tavg-h2m-hxy-u", + "branded_variable_name": "mmraerh2o_tavg-h2m-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERday.mmraerh2o", + "cmip7_compound_name": "aerosol.mmraerh2o.tavg-h2m-hxy-u.day.GLB", + "uid": "83bbfc3d-7f07-11ef-9308-b1dd71e64bec" + }, + "aerosol.mmraerh2o.tpt-h2m-hs-u.3hr.GLB": { + "frequency": "3hr", + "modeling_realm": "aerosol", + "standard_name": "mass_fraction_of_water_in_ambient_aerosol_particles_in_air", + "units": "kg kg-1", + "cell_methods": "area: point time: point", + "cell_measures": "::MODEL", + "long_name": "Instantaneous surface aerosol water mass mixing ratio at CF sites", + "comment": "This variable represents the instantaneous surface aerosol water\u00a0Mass Mixing Ratio at CF sites, sampled every 3 hours", + "dimensions": "site time1 height2m", + "out_name": "mmraerh2o", + "type": "real", + "positive": "", + "spatial_shape": "S-na", + "temporal_shape": "time-point", + "cmip6_table": "E3hrPt", + "physical_parameter_name": "mmraerh2o", + "variableRootDD": "mmraerh2o", + "branding_label": "tpt-h2m-hs-u", + "branded_variable_name": "mmraerh2o_tpt-h2m-hs-u", + "region": "GLB", + "cmip6_compound_name": "E3hrPt.mmraerh2o", + "cmip7_compound_name": "aerosol.mmraerh2o.tpt-h2m-hs-u.3hr.GLB", + "uid": "83bbfbba-7f07-11ef-9308-b1dd71e64bec" + }, + "aerosol.mmrbc.tavg-al-hxy-u.mon.30S-90S": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "mass_fraction_of_elemental_carbon_dry_aerosol_particles_in_air", + "units": "kg kg-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Elemental Carbon Mass Mixing Ratio", + "comment": "Dry mass fraction of black carbon aerosol particles in air.", + "dimensions": "longitude latitude alevel time", + "out_name": "mmrbc", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "mmrbc", + "variableRootDD": "mmrbc", + "branding_label": "tavg-al-hxy-u", + "branded_variable_name": "mmrbc_tavg-al-hxy-u", + "region": "30S-90S", + "cmip6_compound_name": "AERmon.mmrbcSouth30", + "cmip7_compound_name": "aerosol.mmrbc.tavg-al-hxy-u.mon.30S-90S", + "uid": "80ac31a1-a698-11ef-914a-613c0433d878" + }, + "aerosol.mmrbc.tavg-al-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "mass_fraction_of_elemental_carbon_dry_aerosol_particles_in_air", + "units": "kg kg-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Elemental Carbon Mass Mixing Ratio", + "comment": "Dry mass fraction of black carbon aerosol particles in air.", + "dimensions": "longitude latitude alevel time", + "out_name": "mmrbc", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "mmrbc", + "variableRootDD": "mmrbc", + "branding_label": "tavg-al-hxy-u", + "branded_variable_name": "mmrbc_tavg-al-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.mmrbc", + "cmip7_compound_name": "aerosol.mmrbc.tavg-al-hxy-u.mon.GLB", + "uid": "19bf20dc-81b1-11e6-92de-ac72891c3257" + }, + "aerosol.mmrbc.tavg-h2m-hxy-u.day.GLB": { + "frequency": "day", + "modeling_realm": "aerosol", + "standard_name": "mass_fraction_of_elemental_carbon_dry_aerosol_particles_in_air", + "units": "kg kg-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Daily mean surface BC", + "comment": "Daily mean elemental carbon mass mixing ratio in lowest model layer", + "dimensions": "longitude latitude time height2m", + "out_name": "mmrbc", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "AERday", + "physical_parameter_name": "mmrbc", + "variableRootDD": "mmrbc", + "branding_label": "tavg-h2m-hxy-u", + "branded_variable_name": "mmrbc_tavg-h2m-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERday.mmrbc", + "cmip7_compound_name": "aerosol.mmrbc.tavg-h2m-hxy-u.day.GLB", + "uid": "83bbfc3c-7f07-11ef-9308-b1dd71e64bec" + }, + "aerosol.mmrbc.tpt-h2m-hs-u.3hr.GLB": { + "frequency": "3hr", + "modeling_realm": "aerosol", + "standard_name": "mass_fraction_of_elemental_carbon_dry_aerosol_particles_in_air", + "units": "kg kg-1", + "cell_methods": "area: point time: point", + "cell_measures": "::MODEL", + "long_name": "Elemental carbon mass mixing ratio", + "comment": "This variable represents the instantaneous surface elemental carbon Aerosol Mass Mixing Ratio at CF sites, sampled every 3 hours", + "dimensions": "site time1 height2m", + "out_name": "mmrbc", + "type": "real", + "positive": "", + "spatial_shape": "S-na", + "temporal_shape": "time-point", + "cmip6_table": "E3hrPt", + "physical_parameter_name": "mmrbc", + "variableRootDD": "mmrbc", + "branding_label": "tpt-h2m-hs-u", + "branded_variable_name": "mmrbc_tpt-h2m-hs-u", + "region": "GLB", + "cmip6_compound_name": "E3hrPt.mmrbc", + "cmip7_compound_name": "aerosol.mmrbc.tpt-h2m-hs-u.3hr.GLB", + "uid": "83bbfbb9-7f07-11ef-9308-b1dd71e64bec" + }, + "aerosol.mmrdust.tavg-al-hxy-u.mon.30S-90S": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "mass_fraction_of_dust_dry_aerosol_particles_in_air", + "units": "kg kg-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Dust Aerosol Mass Mixing Ratio", + "comment": "Dry mass fraction of dust aerosol particles in air.", + "dimensions": "longitude latitude alevel time", + "out_name": "mmrdust", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "mmrdust", + "variableRootDD": "mmrdust", + "branding_label": "tavg-al-hxy-u", + "branded_variable_name": "mmrdust_tavg-al-hxy-u", + "region": "30S-90S", + "cmip6_compound_name": "AERmon.mmrdustSouth30", + "cmip7_compound_name": "aerosol.mmrdust.tavg-al-hxy-u.mon.30S-90S", + "uid": "80ac31a2-a698-11ef-914a-613c0433d878" + }, + "aerosol.mmrdust.tavg-al-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "mass_fraction_of_dust_dry_aerosol_particles_in_air", + "units": "kg kg-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Dust Aerosol Mass Mixing Ratio", + "comment": "Dry mass fraction of dust aerosol particles in air.", + "dimensions": "longitude latitude alevel time", + "out_name": "mmrdust", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "mmrdust", + "variableRootDD": "mmrdust", + "branding_label": "tavg-al-hxy-u", + "branded_variable_name": "mmrdust_tavg-al-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.mmrdust", + "cmip7_compound_name": "aerosol.mmrdust.tavg-al-hxy-u.mon.GLB", + "uid": "19bed91a-81b1-11e6-92de-ac72891c3257" + }, + "aerosol.mmrdust.tavg-h2m-hxy-u.day.GLB": { + "frequency": "day", + "modeling_realm": "aerosol", + "standard_name": "mass_fraction_of_dust_dry_aerosol_particles_in_air", + "units": "kg kg-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Daily mean surface dust aerosol", + "comment": "Daily mean dust aerosol mass mixing ratio in lowest model layer", + "dimensions": "longitude latitude time height2m", + "out_name": "mmrdust", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "AERday", + "physical_parameter_name": "mmrdust", + "variableRootDD": "mmrdust", + "branding_label": "tavg-h2m-hxy-u", + "branded_variable_name": "mmrdust_tavg-h2m-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERday.mmrdust", + "cmip7_compound_name": "aerosol.mmrdust.tavg-h2m-hxy-u.day.GLB", + "uid": "83bbfc3b-7f07-11ef-9308-b1dd71e64bec" + }, + "aerosol.mmrdust.tpt-h2m-hs-u.3hr.GLB": { + "frequency": "3hr", + "modeling_realm": "aerosol", + "standard_name": "mass_fraction_of_dust_dry_aerosol_particles_in_air", + "units": "kg kg-1", + "cell_methods": "area: point time: point", + "cell_measures": "::MODEL", + "long_name": "Instantaneous surface Dust Aerosol Mass Mixing Ratio at CF sites", + "comment": "This variable represents the instantaneous surface Dust Aerosol Mass Mixing Ratio at CF sites, sampled every 3 hours", + "dimensions": "site time1 height2m", + "out_name": "mmrdust", + "type": "real", + "positive": "", + "spatial_shape": "S-na", + "temporal_shape": "time-point", + "cmip6_table": "E3hrPt", + "physical_parameter_name": "mmrdust", + "variableRootDD": "mmrdust", + "branding_label": "tpt-h2m-hs-u", + "branded_variable_name": "mmrdust_tpt-h2m-hs-u", + "region": "GLB", + "cmip6_compound_name": "E3hrPt.mmrdust", + "cmip7_compound_name": "aerosol.mmrdust.tpt-h2m-hs-u.3hr.GLB", + "uid": "83bbfbb8-7f07-11ef-9308-b1dd71e64bec" + }, + "aerosol.mmrnh4.tavg-al-hxy-u.mon.30S-90S": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "mass_fraction_of_ammonium_dry_aerosol_particles_in_air", + "units": "kg kg-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "NH4 Mass Mixing Ratio", + "comment": "Dry mass fraction of ammonium aerosol particles in air.", + "dimensions": "longitude latitude alevel time", + "out_name": "mmrnh4", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "mmrnh4", + "variableRootDD": "mmrnh4", + "branding_label": "tavg-al-hxy-u", + "branded_variable_name": "mmrnh4_tavg-al-hxy-u", + "region": "30S-90S", + "cmip6_compound_name": "AERmon.mmrnh4South30", + "cmip7_compound_name": "aerosol.mmrnh4.tavg-al-hxy-u.mon.30S-90S", + "uid": "80ac31a3-a698-11ef-914a-613c0433d878" + }, + "aerosol.mmrnh4.tavg-al-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "mass_fraction_of_ammonium_dry_aerosol_particles_in_air", + "units": "kg kg-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "NH4 Mass Mixing Ratio", + "comment": "Dry mass fraction of ammonium aerosol particles in air.", + "dimensions": "longitude latitude alevel time", + "out_name": "mmrnh4", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "mmrnh4", + "variableRootDD": "mmrnh4", + "branding_label": "tavg-al-hxy-u", + "branded_variable_name": "mmrnh4_tavg-al-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.mmrnh4", + "cmip7_compound_name": "aerosol.mmrnh4.tavg-al-hxy-u.mon.GLB", + "uid": "19bfa084-81b1-11e6-92de-ac72891c3257" + }, + "aerosol.mmrnh4.tavg-h2m-hxy-u.day.GLB": { + "frequency": "day", + "modeling_realm": "aerosol", + "standard_name": "mass_fraction_of_ammonium_dry_aerosol_particles_in_air", + "units": "kg kg-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Daily mean surface NH4", + "comment": "Daily mean NH4 mass mixing ratio in lowest model layer", + "dimensions": "longitude latitude time height2m", + "out_name": "mmrnh4", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "AERday", + "physical_parameter_name": "mmrnh4", + "variableRootDD": "mmrnh4", + "branding_label": "tavg-h2m-hxy-u", + "branded_variable_name": "mmrnh4_tavg-h2m-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERday.mmrnh4", + "cmip7_compound_name": "aerosol.mmrnh4.tavg-h2m-hxy-u.day.GLB", + "uid": "83bbfc3a-7f07-11ef-9308-b1dd71e64bec" + }, + "aerosol.mmrnh4.tpt-h2m-hs-u.3hr.GLB": { + "frequency": "3hr", + "modeling_realm": "aerosol", + "standard_name": "mass_fraction_of_ammonium_dry_aerosol_particles_in_air", + "units": "kg kg-1", + "cell_methods": "area: point time: point", + "cell_measures": "::MODEL", + "long_name": "Instantaneous surface NH4 aerosol mass mixing ratio at CF sites", + "comment": "This variable represents the instantaneous surface NH4 Aerosol Mass Mixing Ratio at CF sites, sampled every 3 hours", + "dimensions": "site time1 height2m", + "out_name": "mmrnh4", + "type": "real", + "positive": "", + "spatial_shape": "S-na", + "temporal_shape": "time-point", + "cmip6_table": "E3hrPt", + "physical_parameter_name": "mmrnh4", + "variableRootDD": "mmrnh4", + "branding_label": "tpt-h2m-hs-u", + "branded_variable_name": "mmrnh4_tpt-h2m-hs-u", + "region": "GLB", + "cmip6_compound_name": "E3hrPt.mmrnh4", + "cmip7_compound_name": "aerosol.mmrnh4.tpt-h2m-hs-u.3hr.GLB", + "uid": "83bbfbb7-7f07-11ef-9308-b1dd71e64bec" + }, + "aerosol.mmrno3.tavg-al-hxy-u.mon.30S-90S": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "mass_fraction_of_nitrate_dry_aerosol_particles_in_air", + "units": "kg kg-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "NO3 Aerosol Mass Mixing Ratio", + "comment": "Dry mass fraction of nitrate aerosol particles in air.", + "dimensions": "longitude latitude alevel time", + "out_name": "mmrno3", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "mmrno3", + "variableRootDD": "mmrno3", + "branding_label": "tavg-al-hxy-u", + "branded_variable_name": "mmrno3_tavg-al-hxy-u", + "region": "30S-90S", + "cmip6_compound_name": "AERmon.mmrno3South30", + "cmip7_compound_name": "aerosol.mmrno3.tavg-al-hxy-u.mon.30S-90S", + "uid": "80ac31a4-a698-11ef-914a-613c0433d878" + }, + "aerosol.mmrno3.tavg-al-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "mass_fraction_of_nitrate_dry_aerosol_particles_in_air", + "units": "kg kg-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "NO3 Aerosol Mass Mixing Ratio", + "comment": "Dry mass fraction of nitrate aerosol particles in air.", + "dimensions": "longitude latitude alevel time", + "out_name": "mmrno3", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "mmrno3", + "variableRootDD": "mmrno3", + "branding_label": "tavg-al-hxy-u", + "branded_variable_name": "mmrno3_tavg-al-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.mmrno3", + "cmip7_compound_name": "aerosol.mmrno3.tavg-al-hxy-u.mon.GLB", + "uid": "19be4810-81b1-11e6-92de-ac72891c3257" + }, + "aerosol.mmrno3.tavg-h2m-hxy-u.day.GLB": { + "frequency": "day", + "modeling_realm": "aerosol", + "standard_name": "mass_fraction_of_nitrate_dry_aerosol_particles_in_air", + "units": "kg kg-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Daily mean surface NO3 aerosol", + "comment": "Daily mean NO3 aerosol mass mixing ratio in lowest model layer", + "dimensions": "longitude latitude time height2m", + "out_name": "mmrno3", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "AERday", + "physical_parameter_name": "mmrno3", + "variableRootDD": "mmrno3", + "branding_label": "tavg-h2m-hxy-u", + "branded_variable_name": "mmrno3_tavg-h2m-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERday.mmrno3", + "cmip7_compound_name": "aerosol.mmrno3.tavg-h2m-hxy-u.day.GLB", + "uid": "83bbfc39-7f07-11ef-9308-b1dd71e64bec" + }, + "aerosol.mmrno3.tpt-h2m-hs-u.3hr.GLB": { + "frequency": "3hr", + "modeling_realm": "aerosol", + "standard_name": "mass_fraction_of_nitrate_dry_aerosol_particles_in_air", + "units": "kg kg-1", + "cell_methods": "area: point time: point", + "cell_measures": "::MODEL", + "long_name": "Instantaneous surface NO3 aerosol mass mixing ratio at CF sites", + "comment": "This variable represents the instantaneous surface NO3 Aerosol Mass Mixing Ratio at CF sites, sampled every 3 hours", + "dimensions": "site time1 height2m", + "out_name": "mmrno3", + "type": "real", + "positive": "", + "spatial_shape": "S-na", + "temporal_shape": "time-point", + "cmip6_table": "E3hrPt", + "physical_parameter_name": "mmrno3", + "variableRootDD": "mmrno3", + "branding_label": "tpt-h2m-hs-u", + "branded_variable_name": "mmrno3_tpt-h2m-hs-u", + "region": "GLB", + "cmip6_compound_name": "E3hrPt.mmrno3", + "cmip7_compound_name": "aerosol.mmrno3.tpt-h2m-hs-u.3hr.GLB", + "uid": "83bbfbb6-7f07-11ef-9308-b1dd71e64bec" + }, + "aerosol.mmroa.tavg-al-hxy-u.mon.30S-90S": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "mass_fraction_of_particulate_organic_matter_dry_aerosol_particles_in_air", + "units": "kg kg-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Total Organic Aerosol Mass Mixing Ratio", + "comment": "We recommend a scale factor of POM=1.4\\*OC, unless your model has more detailed info available.", + "dimensions": "longitude latitude alevel time", + "out_name": "mmroa", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "mmroa", + "variableRootDD": "mmroa", + "branding_label": "tavg-al-hxy-u", + "branded_variable_name": "mmroa_tavg-al-hxy-u", + "region": "30S-90S", + "cmip6_compound_name": "AERmon.mmroaSouth30", + "cmip7_compound_name": "aerosol.mmroa.tavg-al-hxy-u.mon.30S-90S", + "uid": "80ac31a5-a698-11ef-914a-613c0433d878" + }, + "aerosol.mmroa.tavg-al-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "mass_fraction_of_particulate_organic_matter_dry_aerosol_particles_in_air", + "units": "kg kg-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Total Organic Aerosol Mass Mixing Ratio", + "comment": "We recommend a scale factor of POM=1.4\\*OC, unless your model has more detailed info available.", + "dimensions": "longitude latitude alevel time", + "out_name": "mmroa", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "mmroa", + "variableRootDD": "mmroa", + "branding_label": "tavg-al-hxy-u", + "branded_variable_name": "mmroa_tavg-al-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.mmroa", + "cmip7_compound_name": "aerosol.mmroa.tavg-al-hxy-u.mon.GLB", + "uid": "19bfcf6e-81b1-11e6-92de-ac72891c3257" + }, + "aerosol.mmroa.tavg-h2m-hxy-u.day.GLB": { + "frequency": "day", + "modeling_realm": "aerosol", + "standard_name": "mass_fraction_of_particulate_organic_matter_dry_aerosol_particles_in_air", + "units": "kg kg-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Total surface organic aerosol", + "comment": "Daily mean total organic aerosol mass mixing ratio in lowest model layer", + "dimensions": "longitude latitude time height2m", + "out_name": "mmroa", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "AERday", + "physical_parameter_name": "mmroa", + "variableRootDD": "mmroa", + "branding_label": "tavg-h2m-hxy-u", + "branded_variable_name": "mmroa_tavg-h2m-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERday.mmroa", + "cmip7_compound_name": "aerosol.mmroa.tavg-h2m-hxy-u.day.GLB", + "uid": "83bbfc38-7f07-11ef-9308-b1dd71e64bec" + }, + "aerosol.mmroa.tpt-h2m-hs-u.3hr.GLB": { + "frequency": "3hr", + "modeling_realm": "aerosol", + "standard_name": "mass_fraction_of_particulate_organic_matter_dry_aerosol_particles_in_air", + "units": "kg kg-1", + "cell_methods": "area: point time: point", + "cell_measures": "::MODEL", + "long_name": "Instantaneous surface total organic aerosol mass mixing ratio at CF sites", + "comment": "This variable represents the instantaneous surface organic aerosol\u00a0Mass Mixing Ratio at CF sites, sampled every 3 hours.", + "dimensions": "site time1 height2m", + "out_name": "mmroa", + "type": "real", + "positive": "", + "spatial_shape": "S-na", + "temporal_shape": "time-point", + "cmip6_table": "E3hrPt", + "physical_parameter_name": "mmroa", + "variableRootDD": "mmroa", + "branding_label": "tpt-h2m-hs-u", + "branded_variable_name": "mmroa_tpt-h2m-hs-u", + "region": "GLB", + "cmip6_compound_name": "E3hrPt.mmroa", + "cmip7_compound_name": "aerosol.mmroa.tpt-h2m-hs-u.3hr.GLB", + "uid": "83bbfbb5-7f07-11ef-9308-b1dd71e64bec" + }, + "aerosol.mmrpm1.tavg-al-hxy-u.mon.30S-90S": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "mass_fraction_of_pm1_dry_aerosol_particles_in_air", + "units": "kg kg-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "PM1.0 Mass Mixing Ratio", + "comment": "Mass fraction atmospheric particulate compounds with an aerodynamic diameter of less than or equal to 1 micrometers", + "dimensions": "longitude latitude alevel time", + "out_name": "mmrpm1", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "mmrpm1", + "variableRootDD": "mmrpm1", + "branding_label": "tavg-al-hxy-u", + "branded_variable_name": "mmrpm1_tavg-al-hxy-u", + "region": "30S-90S", + "cmip6_compound_name": "AERmon.mmrpm1South30", + "cmip7_compound_name": "aerosol.mmrpm1.tavg-al-hxy-u.mon.30S-90S", + "uid": "80ac31a6-a698-11ef-914a-613c0433d878" + }, + "aerosol.mmrpm1.tavg-al-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "mass_fraction_of_pm1_dry_aerosol_particles_in_air", + "units": "kg kg-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "PM1.0 Mass Mixing Ratio", + "comment": "Mass fraction atmospheric particulate compounds with an aerodynamic diameter of less than or equal to 1 micrometers", + "dimensions": "longitude latitude alevel time", + "out_name": "mmrpm1", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "mmrpm1", + "variableRootDD": "mmrpm1", + "branding_label": "tavg-al-hxy-u", + "branded_variable_name": "mmrpm1_tavg-al-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.mmrpm1", + "cmip7_compound_name": "aerosol.mmrpm1.tavg-al-hxy-u.mon.GLB", + "uid": "19be3776-81b1-11e6-92de-ac72891c3257" + }, + "aerosol.mmrpm2p5.tavg-al-hxy-u.mon.30S-90S": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "mass_fraction_of_pm2p5_dry_aerosol_particles_in_air", + "units": "kg kg-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "PM2.5 Mass Mixing Ratio", + "comment": "Mass fraction atmospheric particulate compounds with an aerodynamic diameter of less than or equal to 2.5 micrometers", + "dimensions": "longitude latitude alevel time", + "out_name": "mmrpm2p5", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "mmrpm2p5", + "variableRootDD": "mmrpm2p5", + "branding_label": "tavg-al-hxy-u", + "branded_variable_name": "mmrpm2p5_tavg-al-hxy-u", + "region": "30S-90S", + "cmip6_compound_name": "AERmon.mmrpm2p5South30", + "cmip7_compound_name": "aerosol.mmrpm2p5.tavg-al-hxy-u.mon.30S-90S", + "uid": "80ac31a7-a698-11ef-914a-613c0433d878" + }, + "aerosol.mmrpm2p5.tavg-al-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "mass_fraction_of_pm2p5_dry_aerosol_particles_in_air", + "units": "kg kg-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "PM2.5 Mass Mixing Ratio", + "comment": "Mass fraction atmospheric particulate compounds with an aerodynamic diameter of less than or equal to 2.5 micrometers", + "dimensions": "longitude latitude alevel time", + "out_name": "mmrpm2p5", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "mmrpm2p5", + "variableRootDD": "mmrpm2p5", + "branding_label": "tavg-al-hxy-u", + "branded_variable_name": "mmrpm2p5_tavg-al-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.mmrpm2p5", + "cmip7_compound_name": "aerosol.mmrpm2p5.tavg-al-hxy-u.mon.GLB", + "uid": "19be7b78-81b1-11e6-92de-ac72891c3257" + }, + "aerosol.mmrso4.tavg-al-hxy-u.mon.30S-90S": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "mass_fraction_of_sulfate_dry_aerosol_particles_in_air", + "units": "kg kg-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Aerosol Sulfate Mass Mixing Ratio", + "comment": "Dry mass of sulfate (SO4) in aerosol particles as a fraction of air mass.", + "dimensions": "longitude latitude alevel time", + "out_name": "mmrso4", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "mmrso4", + "variableRootDD": "mmrso4", + "branding_label": "tavg-al-hxy-u", + "branded_variable_name": "mmrso4_tavg-al-hxy-u", + "region": "30S-90S", + "cmip6_compound_name": "AERmon.mmrso4South30", + "cmip7_compound_name": "aerosol.mmrso4.tavg-al-hxy-u.mon.30S-90S", + "uid": "80ac31a9-a698-11ef-914a-613c0433d878" + }, + "aerosol.mmrso4.tavg-al-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "mass_fraction_of_sulfate_dry_aerosol_particles_in_air", + "units": "kg kg-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Aerosol Sulfate Mass Mixing Ratio", + "comment": "Dry mass of sulfate (SO4) in aerosol particles as a fraction of air mass.", + "dimensions": "longitude latitude alevel time", + "out_name": "mmrso4", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "mmrso4", + "variableRootDD": "mmrso4", + "branding_label": "tavg-al-hxy-u", + "branded_variable_name": "mmrso4_tavg-al-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.mmrso4", + "cmip7_compound_name": "aerosol.mmrso4.tavg-al-hxy-u.mon.GLB", + "uid": "19bea9f4-81b1-11e6-92de-ac72891c3257" + }, + "aerosol.mmrso4.tavg-h2m-hxy-u.day.GLB": { + "frequency": "day", + "modeling_realm": "aerosol", + "standard_name": "mass_fraction_of_sulfate_dry_aerosol_particles_in_air", + "units": "kg kg-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Daily mean surface sulfate aerosol", + "comment": "Daily mean sulfate aerosol mass mixing ratio in lowest model layer", + "dimensions": "longitude latitude time height2m", + "out_name": "mmrso4", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "AERday", + "physical_parameter_name": "mmrso4", + "variableRootDD": "mmrso4", + "branding_label": "tavg-h2m-hxy-u", + "branded_variable_name": "mmrso4_tavg-h2m-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERday.mmrso4", + "cmip7_compound_name": "aerosol.mmrso4.tavg-h2m-hxy-u.day.GLB", + "uid": "83bbfc37-7f07-11ef-9308-b1dd71e64bec" + }, + "aerosol.mmrso4.tpt-h2m-hs-u.3hr.GLB": { + "frequency": "3hr", + "modeling_realm": "aerosol", + "standard_name": "mass_fraction_of_sulfate_dry_aerosol_particles_in_air", + "units": "kg kg-1", + "cell_methods": "area: point time: point", + "cell_measures": "::MODEL", + "long_name": "Instantaneous Aerosol Sulfate Mass Mixing Ratio at CF sites", + "comment": "This variable is for instantaneous surface mass mixing ratio of sulfate aerosol at CF sites, sampled every 3 hours", + "dimensions": "site time1 height2m", + "out_name": "mmrso4", + "type": "real", + "positive": "", + "spatial_shape": "S-na", + "temporal_shape": "time-point", + "cmip6_table": "E3hrPt", + "physical_parameter_name": "mmrso4", + "variableRootDD": "mmrso4", + "branding_label": "tpt-h2m-hs-u", + "branded_variable_name": "mmrso4_tpt-h2m-hs-u", + "region": "GLB", + "cmip6_compound_name": "E3hrPt.mmrso4", + "cmip7_compound_name": "aerosol.mmrso4.tpt-h2m-hs-u.3hr.GLB", + "uid": "83bbfbb4-7f07-11ef-9308-b1dd71e64bec" + }, + "aerosol.mmrsoa.tavg-al-hxy-u.mon.30S-90S": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "mass_fraction_of_secondary_particulate_organic_matter_dry_aerosol_particles_in_air", + "units": "kg kg-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Secondary Organic Aerosol Mass Mixing Ratio", + "comment": "Mass fraction in the atmosphere of secondary organic aerosols (particulate organic matter formed within the atmosphere from gaseous precursors; dry mass).", + "dimensions": "longitude latitude alevel time", + "out_name": "mmrsoa", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "mmrsoa", + "variableRootDD": "mmrsoa", + "branding_label": "tavg-al-hxy-u", + "branded_variable_name": "mmrsoa_tavg-al-hxy-u", + "region": "30S-90S", + "cmip6_compound_name": "AERmon.mmrsoaSouth30", + "cmip7_compound_name": "aerosol.mmrsoa.tavg-al-hxy-u.mon.30S-90S", + "uid": "80ac31aa-a698-11ef-914a-613c0433d878" + }, + "aerosol.mmrsoa.tavg-al-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "mass_fraction_of_secondary_particulate_organic_matter_dry_aerosol_particles_in_air", + "units": "kg kg-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Secondary Organic Aerosol Mass Mixing Ratio", + "comment": "Mass fraction in the atmosphere of secondary organic aerosols (particulate organic matter formed within the atmosphere from gaseous precursors; dry mass).", + "dimensions": "longitude latitude alevel time", + "out_name": "mmrsoa", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "mmrsoa", + "variableRootDD": "mmrsoa", + "branding_label": "tavg-al-hxy-u", + "branded_variable_name": "mmrsoa_tavg-al-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.mmrsoa", + "cmip7_compound_name": "aerosol.mmrsoa.tavg-al-hxy-u.mon.GLB", + "uid": "19bf1006-81b1-11e6-92de-ac72891c3257" + }, + "aerosol.mmrsoa.tavg-h2m-hxy-u.day.GLB": { + "frequency": "day", + "modeling_realm": "aerosol", + "standard_name": "mass_fraction_of_secondary_particulate_organic_matter_dry_aerosol_particles_in_air", + "units": "kg kg-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Daily mean surface SOA", + "comment": "Daily mean secondary organic aerosol mass mixing ratio in lowest model layer", + "dimensions": "longitude latitude time height2m", + "out_name": "mmrsoa", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "AERday", + "physical_parameter_name": "mmrsoa", + "variableRootDD": "mmrsoa", + "branding_label": "tavg-h2m-hxy-u", + "branded_variable_name": "mmrsoa_tavg-h2m-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERday.mmrsoa", + "cmip7_compound_name": "aerosol.mmrsoa.tavg-h2m-hxy-u.day.GLB", + "uid": "83bbfc36-7f07-11ef-9308-b1dd71e64bec" + }, + "aerosol.mmrss.tavg-al-hxy-u.mon.30S-90S": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "mass_fraction_of_sea_salt_dry_aerosol_particles_in_air", + "units": "kg kg-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Sea-Salt Aerosol Mass Mixing Ratio", + "comment": "Mass fraction in the atmosphere of sea salt aerosol (dry mass).", + "dimensions": "longitude latitude alevel time", + "out_name": "mmrss", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "mmrss", + "variableRootDD": "mmrss", + "branding_label": "tavg-al-hxy-u", + "branded_variable_name": "mmrss_tavg-al-hxy-u", + "region": "30S-90S", + "cmip6_compound_name": "AERmon.mmrssSouth30", + "cmip7_compound_name": "aerosol.mmrss.tavg-al-hxy-u.mon.30S-90S", + "uid": "80ac31ab-a698-11ef-914a-613c0433d878" + }, + "aerosol.mmrss.tavg-al-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "mass_fraction_of_sea_salt_dry_aerosol_particles_in_air", + "units": "kg kg-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Sea-Salt Aerosol Mass Mixing Ratio", + "comment": "Mass fraction in the atmosphere of sea salt aerosol (dry mass).", + "dimensions": "longitude latitude alevel time", + "out_name": "mmrss", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "mmrss", + "variableRootDD": "mmrss", + "branding_label": "tavg-al-hxy-u", + "branded_variable_name": "mmrss_tavg-al-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.mmrss", + "cmip7_compound_name": "aerosol.mmrss.tavg-al-hxy-u.mon.GLB", + "uid": "19bed1f4-81b1-11e6-92de-ac72891c3257" + }, + "aerosol.mmrss.tavg-h2m-hxy-u.day.GLB": { + "frequency": "day", + "modeling_realm": "aerosol", + "standard_name": "mass_fraction_of_sea_salt_dry_aerosol_particles_in_air", + "units": "kg kg-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Daily mean surface Sea Salt", + "comment": "Daily mean Sea Salt mass mixing ratio in lowest model layer", + "dimensions": "longitude latitude time height2m", + "out_name": "mmrss", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "AERday", + "physical_parameter_name": "mmrss", + "variableRootDD": "mmrss", + "branding_label": "tavg-h2m-hxy-u", + "branded_variable_name": "mmrss_tavg-h2m-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERday.mmrss", + "cmip7_compound_name": "aerosol.mmrss.tavg-h2m-hxy-u.day.GLB", + "uid": "83bbfc35-7f07-11ef-9308-b1dd71e64bec" + }, + "aerosol.mmrss.tpt-h2m-hs-u.3hr.GLB": { + "frequency": "3hr", + "modeling_realm": "aerosol", + "standard_name": "mass_fraction_of_sea_salt_dry_aerosol_particles_in_air", + "units": "kg kg-1", + "cell_methods": "area: point time: point", + "cell_measures": "::MODEL", + "long_name": "Sea salt Aerosol Mass Mixing Ratio at CF sites", + "comment": "This variable represents instantaneous surface sea salt aerosol mass mixing ratio at CF sites, sampled every 3 hours", + "dimensions": "site time1 height2m", + "out_name": "mmrss", + "type": "real", + "positive": "", + "spatial_shape": "S-na", + "temporal_shape": "time-point", + "cmip6_table": "E3hrPt", + "physical_parameter_name": "mmrss", + "variableRootDD": "mmrss", + "branding_label": "tpt-h2m-hs-u", + "branded_variable_name": "mmrss_tpt-h2m-hs-u", + "region": "GLB", + "cmip6_compound_name": "E3hrPt.mmrss", + "cmip7_compound_name": "aerosol.mmrss.tpt-h2m-hs-u.3hr.GLB", + "uid": "83bbfbb3-7f07-11ef-9308-b1dd71e64bec" + }, + "aerosol.nh50.tavg-al-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "mole_fraction_of_artificial_tracer_with_fixed_lifetime_in_air", + "units": "mol mol-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Artificial Tracer with 50 Day Lifetime", + "comment": "Fixed surface layer mixing ratio over 30o-50oN (100ppbv), uniform fixed 50-day exponential decay.", + "dimensions": "longitude latitude alevel time", + "out_name": "nh50", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "nh50", + "variableRootDD": "nh50", + "branding_label": "tavg-al-hxy-u", + "branded_variable_name": "nh50_tavg-al-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.nh50", + "cmip7_compound_name": "aerosol.nh50.tavg-al-hxy-u.mon.GLB", + "uid": "3a0778aa-9c3a-11e6-8d5d-ac72891c3257" + }, + "aerosol.no.tavg-al-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "mole_fraction_of_nitrogen_monoxide_in_air", + "units": "mol mol-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "NO Volume Mixing Ratio", + "comment": "Mole fraction is used in the construction mole_fraction_of_X_in_Y, where X is a material constituent of Y.", + "dimensions": "longitude latitude alevel time", + "out_name": "no", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "no", + "variableRootDD": "no", + "branding_label": "tavg-al-hxy-u", + "branded_variable_name": "no_tavg-al-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.no", + "cmip7_compound_name": "aerosol.no.tavg-al-hxy-u.mon.GLB", + "uid": "19bff1ba-81b1-11e6-92de-ac72891c3257" + }, + "aerosol.no2.tavg-al-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "mole_fraction_of_nitrogen_dioxide_in_air", + "units": "mol mol-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "NO2 Volume Mixing Ratio", + "comment": "Mole fraction is used in the construction mole_fraction_of_X_in_Y, where X is a material constituent of Y.", + "dimensions": "longitude latitude alevel time", + "out_name": "no2", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "no2", + "variableRootDD": "no2", + "branding_label": "tavg-al-hxy-u", + "branded_variable_name": "no2_tavg-al-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.no2", + "cmip7_compound_name": "aerosol.no2.tavg-al-hxy-u.mon.GLB", + "uid": "19be3ce4-81b1-11e6-92de-ac72891c3257" + }, + "aerosol.no2.tavg-h2m-hxy-u.1hr.GLB": { + "frequency": "1hr", + "modeling_realm": "aerosol", + "standard_name": "mole_fraction_of_nitrogen_dioxide_in_air", + "units": "mol mol-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "NO2 Volume Mixing Ratio in Lowest Model Layer", + "comment": "Mole fraction is used in the construction mole_fraction_of_X_in_Y, where X is a material constituent of Y.", + "dimensions": "longitude latitude time height2m", + "out_name": "sfno2", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "AERhr", + "physical_parameter_name": "sfno2", + "variableRootDD": "no2", + "branding_label": "tavg-h2m-hxy-u", + "branded_variable_name": "no2_tavg-h2m-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERhr.sfno2", + "cmip7_compound_name": "aerosol.no2.tavg-h2m-hxy-u.1hr.GLB", + "uid": "19c0775c-81b1-11e6-92de-ac72891c3257" + }, + "aerosol.noy.tavg-p39-hy-air.mon.GLB": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "mole_fraction_of_noy_expressed_as_nitrogen_in_air", + "units": "mol mol-1", + "cell_methods": "longitude: time: mean where air", + "cell_measures": "", + "long_name": "Total Reactive Nitrogen Volume Mixing Ratio", + "comment": "Total family (the sum of all appropriate species in the model); list the species in the netCDF header, e.g. NOy = N + NO + NO2 + NO3 + HNO3 + 2N2O5 + HNO4 + ClONO2 + BrONO2 Definition: Total reactive nitrogen; usually includes atomic nitrogen (N), nitric oxide (NO), NO2, nitrogen trioxide (NO3), dinitrogen radical (N2O5), nitric acid (HNO3), peroxynitric acid (HNO4), BrONO2, ClONO2 add comment attribute with detailed description about how the model calculates these fields", + "dimensions": "latitude plev39 time", + "out_name": "noy", + "type": "real", + "positive": "", + "spatial_shape": "Y-P39", + "temporal_shape": "time-intv", + "cmip6_table": "AERmonZ", + "physical_parameter_name": "noy", + "variableRootDD": "noy", + "branding_label": "tavg-p39-hy-air", + "branded_variable_name": "noy_tavg-p39-hy-air", + "region": "GLB", + "cmip6_compound_name": "AERmonZ.noy", + "cmip7_compound_name": "aerosol.noy.tavg-p39-hy-air.mon.GLB", + "uid": "fda6b9c2-96ec-11e6-b81e-c9e268aff03a" + }, + "aerosol.o3.tavg-h2m-hxy-u.1hr.GLB": { + "frequency": "1hr", + "modeling_realm": "aerosol", + "standard_name": "mole_fraction_of_ozone_in_air", + "units": "mol mol-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "O3 Volume Mixing Ratio in Lowest Model Layer", + "comment": "Mole fraction is used in the construction mole_fraction_of_X_in_Y, where X is a material constituent of Y.", + "dimensions": "longitude latitude time height2m", + "out_name": "sfo3", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "AERhr", + "physical_parameter_name": "sfo3", + "variableRootDD": "o3", + "branding_label": "tavg-h2m-hxy-u", + "branded_variable_name": "o3_tavg-h2m-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERhr.sfo3", + "cmip7_compound_name": "aerosol.o3.tavg-h2m-hxy-u.1hr.GLB", + "uid": "19c07cca-81b1-11e6-92de-ac72891c3257" + }, + "aerosol.o3.tmax-h2m-hxy-u.day.GLB": { + "frequency": "day", + "modeling_realm": "aerosol", + "standard_name": "mole_fraction_of_ozone_in_air", + "units": "mol mol-1", + "cell_methods": "area: mean time: maximum", + "cell_measures": "area: areacella", + "long_name": "Daily Maximum O3 Volume Mixing Ratio in Lowest Model Layer", + "comment": "maximum near-surface ozone (add cell_methods attribute \"time: maximum\")", + "dimensions": "longitude latitude time height2m", + "out_name": "sfo3max", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "AERday", + "physical_parameter_name": "sfo3max", + "variableRootDD": "o3", + "branding_label": "tmax-h2m-hxy-u", + "branded_variable_name": "o3_tmax-h2m-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERday.sfo3max", + "cmip7_compound_name": "aerosol.o3.tmax-h2m-hxy-u.day.GLB", + "uid": "fda754f4-96ec-11e6-b81e-c9e268aff03a" + }, + "aerosol.o3loss.tavg-al-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "tendency_of_atmosphere_mole_concentration_of_ozone_due_to_chemical_destruction", + "units": "mol m-3 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "O3 Destruction Rate", + "comment": "ONLY provide the sum of the following reactions: (i) O(1D)+H2O; (ii) O3+HO2; (iii) O3+OH; (iv) O3+alkenes (isoprene, ethene, ...)", + "dimensions": "longitude latitude alevel time", + "out_name": "o3loss", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "o3loss", + "variableRootDD": "o3loss", + "branding_label": "tavg-al-hxy-u", + "branded_variable_name": "o3loss_tavg-al-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.o3loss", + "cmip7_compound_name": "aerosol.o3loss.tavg-al-hxy-u.mon.GLB", + "uid": "19bec7d6-81b1-11e6-92de-ac72891c3257" + }, + "aerosol.o3prod.tavg-al-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "tendency_of_atmosphere_mole_concentration_of_ozone_due_to_chemical_production", + "units": "mol m-3 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "O3 Production Rate", + "comment": "ONLY provide the sum of all the HO2/RO2 + NO reactions (as k\\*[HO2]\\*[NO])", + "dimensions": "longitude latitude alevel time", + "out_name": "o3prod", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "o3prod", + "variableRootDD": "o3prod", + "branding_label": "tavg-al-hxy-u", + "branded_variable_name": "o3prod_tavg-al-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.o3prod", + "cmip7_compound_name": "aerosol.o3prod.tavg-al-hxy-u.mon.GLB", + "uid": "19be78c6-81b1-11e6-92de-ac72891c3257" + }, + "aerosol.od443aer.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "atmosphere_optical_thickness_due_to_ambient_aerosol_particles", + "units": "1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Ambient Aerosol Optical Thickness at 443nm", + "comment": "This is the aerosol optical depth (AOD) from the ambient aerosls (i.e., includes aerosol water). Does not include AOD from stratospheric aerosols if these are prescribed but includes other possible background aerosol types. Needs a comment attribute \"wavelength: 443 nm\"", + "dimensions": "longitude latitude time lambda443nm", + "out_name": "od443aer", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "od443aer", + "variableRootDD": "od443aer", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "od443aer_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.od443aer", + "cmip7_compound_name": "aerosol.od443aer.tavg-u-hxy-u.mon.GLB", + "uid": "19beeb4e-81b1-11e6-92de-ac72891c3257" + }, + "aerosol.od550aer.tavg-u-hxy-u.day.GLB": { + "frequency": "day", + "modeling_realm": "aerosol", + "standard_name": "atmosphere_optical_thickness_due_to_ambient_aerosol_particles", + "units": "1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Ambient Aerosol Optical Thickness at 550nm", + "comment": "AOD from the ambient aerosls (i.e., includes aerosol water). Does not include AOD from stratospheric aerosols if these are prescribed but includes other possible background aerosol types. Needs a comment attribute \"wavelength: 550 nm\"", + "dimensions": "longitude latitude time lambda550nm", + "out_name": "od550aer", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "AERday", + "physical_parameter_name": "od550aer", + "variableRootDD": "od550aer", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "od550aer_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERday.od550aer", + "cmip7_compound_name": "aerosol.od550aer.tavg-u-hxy-u.day.GLB", + "uid": "fda76476-96ec-11e6-b81e-c9e268aff03a" + }, + "aerosol.od550aer.tavg-u-hxy-u.mon.30S-90S": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "atmosphere_optical_thickness_due_to_ambient_aerosol_particles", + "units": "1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Ambient Aerosol Optical Thickness at 550nm", + "comment": "AOD from ambient aerosols (i.e., includes aerosol water). Does not include AOD from stratospheric aerosols if these are prescribed but includes other possible background aerosol types. Needs a comment attribute \"wavelength: 550 nm\"", + "dimensions": "longitude latitude time lambda550nm", + "out_name": "od550aer", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "od550aer", + "variableRootDD": "od550aer", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "od550aer_tavg-u-hxy-u", + "region": "30S-90S", + "cmip6_compound_name": "AERmon.od550aerSouth30", + "cmip7_compound_name": "aerosol.od550aer.tavg-u-hxy-u.mon.30S-90S", + "uid": "80ac31ad-a698-11ef-914a-613c0433d878" + }, + "aerosol.od550aer.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "atmosphere_optical_thickness_due_to_ambient_aerosol_particles", + "units": "1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Ambient Aerosol Optical Thickness at 550nm", + "comment": "AOD from ambient aerosols (i.e., includes aerosol water). Does not include AOD from stratospheric aerosols if these are prescribed but includes other possible background aerosol types. Needs a comment attribute \"wavelength: 550 nm\"", + "dimensions": "longitude latitude time lambda550nm", + "out_name": "od550aer", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "od550aer", + "variableRootDD": "od550aer", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "od550aer_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.od550aer", + "cmip7_compound_name": "aerosol.od550aer.tavg-u-hxy-u.mon.GLB", + "uid": "19c01942-81b1-11e6-92de-ac72891c3257" + }, + "aerosol.od550aerh2o.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "atmosphere_optical_thickness_due_to_water_in_ambient_aerosol_particles", + "units": "1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Aerosol Water Optical Thickness at 550nm", + "comment": "proposed name: atmosphere_optical_thickness_due_to_water_ambient_aerosol", + "dimensions": "longitude latitude time lambda550nm", + "out_name": "od550aerh2o", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "od550aerh2o", + "variableRootDD": "od550aerh2o", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "od550aerh2o_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.od550aerh2o", + "cmip7_compound_name": "aerosol.od550aerh2o.tavg-u-hxy-u.mon.GLB", + "uid": "19c03616-81b1-11e6-92de-ac72891c3257" + }, + "aerosol.od550bb.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "atmosphere_optical_thickness_due_to_biomass_burning_particulate_matter_ambient_aerosol_particles", + "units": "1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Aerosol Optical Depth at 550nm Due to Biomass Burning", + "comment": "total organic aerosol AOD due to biomass burning (excluding so4, nitrate BB components)", + "dimensions": "longitude latitude time lambda550nm", + "out_name": "od550bb", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "od550bb", + "variableRootDD": "od550bb", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "od550bb_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.od550bb", + "cmip7_compound_name": "aerosol.od550bb.tavg-u-hxy-u.mon.GLB", + "uid": "19bea26a-81b1-11e6-92de-ac72891c3257" + }, + "aerosol.od550bc.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "atmosphere_optical_thickness_due_to_black_carbon_ambient_aerosol", + "units": "1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Black Carbon Optical Thickness at 550nm", + "comment": "Total aerosol AOD due to black carbon aerosol at a wavelength of 550 nanometres.", + "dimensions": "longitude latitude time lambda550nm", + "out_name": "od550bc", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "od550bc", + "variableRootDD": "od550bc", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "od550bc_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.od550bc", + "cmip7_compound_name": "aerosol.od550bc.tavg-u-hxy-u.mon.GLB", + "uid": "19bf8f18-81b1-11e6-92de-ac72891c3257" + }, + "aerosol.od550csaer.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "atmosphere_optical_thickness_due_to_ambient_aerosol_particles_assuming_clear_sky", + "units": "1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Ambient Aerosol Optical Thickness at 550nm", + "comment": "AOD from the ambient aerosols in clear skies if od550aer is for all-sky (i.e., includes aerosol water). Does not include AOD from stratospheric aerosols if these are prescribed but includes other possible background aerosol types. Needs a comment attribute \"wavelength: 550 nm\"", + "dimensions": "longitude latitude time lambda550nm", + "out_name": "od550csaer", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "od550csaer", + "variableRootDD": "od550csaer", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "od550csaer_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.od550csaer", + "cmip7_compound_name": "aerosol.od550csaer.tavg-u-hxy-u.mon.GLB", + "uid": "01d4dfbc-c792-11e6-aa58-5404a60d96b5" + }, + "aerosol.od550dust.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "atmosphere_optical_thickness_due_to_dust_ambient_aerosol_particles", + "units": "1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Dust Optical Thickness at 550nm", + "comment": "Total aerosol AOD due to dust aerosol at a wavelength of 550 nanometres.", + "dimensions": "longitude latitude time lambda550nm", + "out_name": "od550dust", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "od550dust", + "variableRootDD": "od550dust", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "od550dust_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.od550dust", + "cmip7_compound_name": "aerosol.od550dust.tavg-u-hxy-u.mon.GLB", + "uid": "19bf97d8-81b1-11e6-92de-ac72891c3257" + }, + "aerosol.od550lt1aer.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "atmosphere_optical_thickness_due_to_pm1_ambient_aerosol_particles", + "units": "1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Ambient Fine Aerosol Optical Depth at 550nm", + "comment": "od550 due to particles with wet diameter less than 1 um (\"ambient\" means \"wetted\"). When models do not include explicit size information, it can be assumed that all anthropogenic aerosols and natural secondary aerosols have diameter less than 1 um.", + "dimensions": "longitude latitude time lambda550nm", + "out_name": "od550lt1aer", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "od550lt1aer", + "variableRootDD": "od550lt1aer", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "od550lt1aer_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.od550lt1aer", + "cmip7_compound_name": "aerosol.od550lt1aer.tavg-u-hxy-u.mon.GLB", + "uid": "19be6656-81b1-11e6-92de-ac72891c3257" + }, + "aerosol.od550no3.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "atmosphere_optical_thickness_due_to_nitrate_ambient_aerosol_particles", + "units": "1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Nitrate Aerosol Optical Depth at 550nm", + "comment": "Total aerosol AOD due to nitrate aerosol at a wavelength of 550 nanometres.", + "dimensions": "longitude latitude time lambda550nm", + "out_name": "od550no3", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "od550no3", + "variableRootDD": "od550no3", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "od550no3_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.od550no3", + "cmip7_compound_name": "aerosol.od550no3.tavg-u-hxy-u.mon.GLB", + "uid": "19bfd216-81b1-11e6-92de-ac72891c3257" + }, + "aerosol.od550oa.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "atmosphere_optical_thickness_due_to_particulate_organic_matter_ambient_aerosol_particles", + "units": "1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Total Organic Aerosol Optical Depth at 550nm", + "comment": "total organic aerosol AOD, comprises all organic aerosols, primary + secondary ; natural + anthropogenic including biomasss burning organic aerosol", + "dimensions": "longitude latitude time lambda550nm", + "out_name": "od550oa", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "od550oa", + "variableRootDD": "od550oa", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "od550oa_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.od550oa", + "cmip7_compound_name": "aerosol.od550oa.tavg-u-hxy-u.mon.GLB", + "uid": "19c03a6c-81b1-11e6-92de-ac72891c3257" + }, + "aerosol.od550so4.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "atmosphere_optical_thickness_due_to_sulfate_ambient_aerosol_particles", + "units": "1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Sulfate Aerosol Optical Depth at 550nm", + "comment": "Total aerosol AOD due to sulfate aerosol at a wavelength of 550 nanometres.", + "dimensions": "longitude latitude time lambda550nm", + "out_name": "od550so4", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "od550so4", + "variableRootDD": "od550so4", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "od550so4_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.od550so4", + "cmip7_compound_name": "aerosol.od550so4.tavg-u-hxy-u.mon.GLB", + "uid": "19bf19ca-81b1-11e6-92de-ac72891c3257" + }, + "aerosol.od550soa.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "atmosphere_optical_thickness_due_to_secondary_particulate_organic_matter_ambient_aerosol_particles", + "units": "1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Particulate Organic Aerosol Optical Depth at 550nm", + "comment": "total organic aerosol AOD due to secondary aerosol formation", + "dimensions": "longitude latitude time lambda550nm", + "out_name": "od550soa", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "od550soa", + "variableRootDD": "od550soa", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "od550soa_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.od550soa", + "cmip7_compound_name": "aerosol.od550soa.tavg-u-hxy-u.mon.GLB", + "uid": "0facb764-817d-11e6-b80b-5404a60d96b5" + }, + "aerosol.od550ss.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "atmosphere_optical_thickness_due_to_sea_salt_ambient_aerosol_particles", + "units": "1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Sea-Salt Aerosol Optical Depth at 550nm", + "comment": "Total aerosol AOD due to sea salt aerosol at a wavelength of 550 nanometres.", + "dimensions": "longitude latitude time lambda550nm", + "out_name": "od550ss", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "od550ss", + "variableRootDD": "od550ss", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "od550ss_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.od550ss", + "cmip7_compound_name": "aerosol.od550ss.tavg-u-hxy-u.mon.GLB", + "uid": "19bec380-81b1-11e6-92de-ac72891c3257" + }, + "aerosol.od865aer.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "atmosphere_optical_thickness_due_to_ambient_aerosol_particles", + "units": "1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Ambient Aerosol Optical Depth at 865nm", + "comment": "AOD from the ambient aerosols (i.e., includes aerosol water). Does not include AOD from stratospheric aerosols if these are prescribed but includes other possible background aerosol types. Needs a comment attribute \"wavelength: 865 nm\"", + "dimensions": "longitude latitude time lambda865nm", + "out_name": "od865aer", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "od865aer", + "variableRootDD": "od865aer", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "od865aer_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.od865aer", + "cmip7_compound_name": "aerosol.od865aer.tavg-u-hxy-u.mon.GLB", + "uid": "19c04a2a-81b1-11e6-92de-ac72891c3257" + }, + "aerosol.oh.tavg-al-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "mole_fraction_of_hydroxyl_radical_in_air", + "units": "mol mol-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "OH Volume Mixing Ratio", + "comment": "Mole fraction is used in the construction mole_fraction_of_X_in_Y, where X is a material constituent of Y.", + "dimensions": "longitude latitude alevel time", + "out_name": "oh", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "oh", + "variableRootDD": "oh", + "branding_label": "tavg-al-hxy-u", + "branded_variable_name": "oh_tavg-al-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.oh", + "cmip7_compound_name": "aerosol.oh.tavg-al-hxy-u.mon.GLB", + "uid": "19bf1e2a-81b1-11e6-92de-ac72891c3257" + }, + "aerosol.oh.tavg-p39-hy-air.mon.GLB": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "mole_fraction_of_hydroxyl_radical_in_air", + "units": "mol mol-1", + "cell_methods": "longitude: time: mean where air", + "cell_measures": "", + "long_name": "OH Volume Mixing Ratio", + "comment": "Mole fraction is used in the construction mole_fraction_of_X_in_Y, where X is a material constituent of Y.", + "dimensions": "latitude plev39 time", + "out_name": "oh", + "type": "real", + "positive": "", + "spatial_shape": "Y-P39", + "temporal_shape": "time-intv", + "cmip6_table": "AERmonZ", + "physical_parameter_name": "oh", + "variableRootDD": "oh", + "branding_label": "tavg-p39-hy-air", + "branded_variable_name": "oh_tavg-p39-hy-air", + "region": "GLB", + "cmip6_compound_name": "AERmonZ.oh", + "cmip7_compound_name": "aerosol.oh.tavg-p39-hy-air.mon.GLB", + "uid": "fda699f6-96ec-11e6-b81e-c9e268aff03a" + }, + "aerosol.pan.tavg-al-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "mole_fraction_of_peroxyacetyl_nitrate_in_air", + "units": "mol mol-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "PAN Volume Mixing Ratio", + "comment": "Mole fraction is used in the construction mole_fraction_of_X_in_Y, where X is a material constituent of Y.", + "dimensions": "longitude latitude alevel time", + "out_name": "pan", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "pan", + "variableRootDD": "pan", + "branding_label": "tavg-al-hxy-u", + "branded_variable_name": "pan_tavg-al-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.pan", + "cmip7_compound_name": "aerosol.pan.tavg-al-hxy-u.mon.GLB", + "uid": "19c01690-81b1-11e6-92de-ac72891c3257" + }, + "aerosol.photo1d.tavg-al-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "photolysis_rate_of_ozone_to_1D_oxygen_atom", + "units": "s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Photolysis Rate of Ozone (O3) to Excited Atomic Oxygen (the Singlet D State, O1D)", + "comment": "proposed name: photolysis_rate_of_ozone_to_O1D", + "dimensions": "longitude latitude alevel time", + "out_name": "photo1d", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "photo1d", + "variableRootDD": "photo1d", + "branding_label": "tavg-al-hxy-u", + "branded_variable_name": "photo1d_tavg-al-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.photo1d", + "cmip7_compound_name": "aerosol.photo1d.tavg-al-hxy-u.mon.GLB", + "uid": "19be3a28-81b1-11e6-92de-ac72891c3257" + }, + "aerosol.pod0.tsum-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "integral_wrt_time_of_mole_stomatal_uptake_of_ozone", + "units": "mol m-2", + "cell_methods": "area: mean time: sum", + "cell_measures": "area: areacella", + "long_name": "Phytotoxic Ozone Dose", + "comment": "Accumulated stomatal ozone flux over the threshold of 0 mol m-2 s-1; Computation: Time Integral of (hourly above canopy ozone concentration \\* stomatal conductance \\* Rc/(Rb+Rc) )", + "dimensions": "longitude latitude time", + "out_name": "pod0", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "pod0", + "variableRootDD": "pod0", + "branding_label": "tsum-u-hxy-u", + "branded_variable_name": "pod0_tsum-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.pod0", + "cmip7_compound_name": "aerosol.pod0.tsum-u-hxy-u.mon.GLB", + "uid": "01d364ca-c792-11e6-aa58-5404a60d96b5" + }, + "aerosol.reffccwctop.tavg-u-hxy-cl.mon.GLB": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "effective_radius_of_cloud_condensed_water_particles_at_cloud_top", + "units": "m", + "cell_methods": "area: time: mean where cloud (weighted by area of upper-most cloud layer)", + "cell_measures": "area: areacella", + "long_name": "Cloud-Top Effective Radius of Liquid or Ice Cloud at Liquid or Ice Cloud Top", + "comment": "Cloud-Top Effective Radius of Liquid or Ice Cloud at Liquid or Ice Cloud Top", + "dimensions": "longitude latitude time", + "out_name": "reffccwctop", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "reffccwctop", + "variableRootDD": "reffccwctop", + "branding_label": "tavg-u-hxy-cl", + "branded_variable_name": "reffccwctop_tavg-u-hxy-cl", + "region": "GLB", + "cmip6_compound_name": "Emon.reffccwctop", + "cmip7_compound_name": "aerosol.reffccwctop.tavg-u-hxy-cl.mon.GLB", + "uid": "83bbfb9c-7f07-11ef-9308-b1dd71e64bec" + }, + "aerosol.reffclwtop.tavg-u-hxy-cl.mon.30S-90S": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "effective_radius_of_cloud_liquid_water_particles_at_liquid_water_cloud_top", + "units": "m", + "cell_methods": "area: time: mean where cloud (weighted by area of upper-most cloud liquid water layer)", + "cell_measures": "area: areacella", + "long_name": "Cloud-Top Effective Droplet Radius", + "comment": "Droplets are liquid only. This is the effective radius \"as seen from space\" over liquid cloudy portion of grid cell. This is the value from uppermost model layer with liquid cloud or, if available, or for some models it is the sum over all liquid cloud tops, no matter where they occur, as long as they are seen from the top of the atmosphere.TOA) each time sample when computing monthly mean. Reported values are weighted by total liquid cloud top fraction of (as seen from TOA) each time sample when computing monthly mean.", + "dimensions": "longitude latitude time", + "out_name": "reffclwtop", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "reffclwtop", + "variableRootDD": "reffclwtop", + "branding_label": "tavg-u-hxy-cl", + "branded_variable_name": "reffclwtop_tavg-u-hxy-cl", + "region": "30S-90S", + "cmip6_compound_name": "AERmon.reffclwtopSouth30", + "cmip7_compound_name": "aerosol.reffclwtop.tavg-u-hxy-cl.mon.30S-90S", + "uid": "80ac31c0-a698-11ef-914a-613c0433d878" + }, + "aerosol.reffclwtop.tavg-u-hxy-cl.mon.GLB": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "effective_radius_of_cloud_liquid_water_particles_at_liquid_water_cloud_top", + "units": "m", + "cell_methods": "area: time: mean where cloud (weighted by area of upper-most cloud liquid water layer)", + "cell_measures": "area: areacella", + "long_name": "Cloud-Top Effective Droplet Radius", + "comment": "Droplets are liquid only. This is the effective radius \"as seen from space\" over liquid cloudy portion of grid cell. This is the value from uppermost model layer with liquid cloud or, if available, or for some models it is the sum over all liquid cloud tops, no matter where they occur, as long as they are seen from the top of the atmosphere.TOA) each time sample when computing monthly mean. Reported values are weighted by total liquid cloud top fraction of (as seen from TOA) each time sample when computing monthly mean.", + "dimensions": "longitude latitude time", + "out_name": "reffclwtop", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "reffclwtop", + "variableRootDD": "reffclwtop", + "branding_label": "tavg-u-hxy-cl", + "branded_variable_name": "reffclwtop_tavg-u-hxy-cl", + "region": "GLB", + "cmip6_compound_name": "AERmon.reffclwtop", + "cmip7_compound_name": "aerosol.reffclwtop.tavg-u-hxy-cl.mon.GLB", + "uid": "19bef6d4-81b1-11e6-92de-ac72891c3257" + }, + "aerosol.rluscsaf.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "surface_upwelling_longwave_flux_in_air_assuming_clear_sky_and_no_aerosol", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Surface Upwelling Clear-Sky, Aerosol-Free Longwave Radiation", + "comment": "Flux corresponding to rluscs resulting from an aerosol-free call to radiation", + "dimensions": "longitude latitude time", + "out_name": "rluscsaf", + "type": "real", + "positive": "up", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "rluscsaf", + "variableRootDD": "rluscsaf", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "rluscsaf_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.rluscsaf", + "cmip7_compound_name": "aerosol.rluscsaf.tavg-u-hxy-u.mon.GLB", + "uid": "80ab71f8-a698-11ef-914a-613c0433d878" + }, + "aerosol.rlutaf.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "toa_outgoing_longwave_flux", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "TOA Outgoing Aerosol-Free Longwave Radiation", + "comment": "Flux corresponding to rlut resulting fom aerosol-free call to radiation", + "dimensions": "longitude latitude time", + "out_name": "rlutaf", + "type": "real", + "positive": "up", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "rlutaf", + "variableRootDD": "rlutaf", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "rlutaf_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.rlutaf", + "cmip7_compound_name": "aerosol.rlutaf.tavg-u-hxy-u.mon.GLB", + "uid": "8feba756-267c-11e7-8933-ac72891c3257" + }, + "aerosol.rlutcsaf.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "toa_outgoing_longwave_flux_assuming_clear_sky", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "TOA Outgoing Clear-Sky, Aerosol-Free Longwave Radiation", + "comment": "Flux corresponding to rlutcs resulting fom aerosol-free call to radiation", + "dimensions": "longitude latitude time", + "out_name": "rlutcsaf", + "type": "real", + "positive": "up", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "rlutcsaf", + "variableRootDD": "rlutcsaf", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "rlutcsaf_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.rlutcsaf", + "cmip7_compound_name": "aerosol.rlutcsaf.tavg-u-hxy-u.mon.GLB", + "uid": "8febbae8-267c-11e7-8933-ac72891c3257" + }, + "aerosol.rsutaf.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "toa_outgoing_shortwave_flux", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "TOA Outgoing Aerosol-Free Shortwave Radiation", + "comment": "Flux corresponding to rsut resulting fom aerosol-free call to radiation", + "dimensions": "longitude latitude time", + "out_name": "rsutaf", + "type": "real", + "positive": "up", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "rsutaf", + "variableRootDD": "rsutaf", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "rsutaf_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.rsutaf", + "cmip7_compound_name": "aerosol.rsutaf.tavg-u-hxy-u.mon.GLB", + "uid": "8feb097c-267c-11e7-8933-ac72891c3257" + }, + "aerosol.rsutcsaf.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "toa_outgoing_shortwave_flux_assuming_clear_sky_and_no_aerosol", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "TOA Outgoing Clear-Sky, Aerosol-Free Shortwave Radiation", + "comment": "Flux corresponding to rsutcs resulting fom aerosol-free call to radiation", + "dimensions": "longitude latitude time", + "out_name": "rsutcsaf", + "type": "real", + "positive": "up", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "rsutcsaf", + "variableRootDD": "rsutcsaf", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "rsutcsaf_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.rsutcsaf", + "cmip7_compound_name": "aerosol.rsutcsaf.tavg-u-hxy-u.mon.GLB", + "uid": "8feac232-267c-11e7-8933-ac72891c3257" + }, + "aerosol.sfpm1.tavg-h2m-hxy-u.1hr.GLB": { + "frequency": "1hr", + "modeling_realm": "aerosol", + "standard_name": "mass_fraction_of_pm1_ambient_aerosol_particles_in_air", + "units": "kg kg-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Hourly Surface PM1.0 Mixing Ratio", + "comment": "Hourly PM1.0 Mass Mixing Ratio in Lowest Model Layer", + "dimensions": "longitude latitude time height2m", + "out_name": "sfpm1", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "AERhr", + "physical_parameter_name": "sfpm1", + "variableRootDD": "sfpm1", + "branding_label": "tavg-h2m-hxy-u", + "branded_variable_name": "sfpm1_tavg-h2m-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERhr.sfpm1", + "cmip7_compound_name": "aerosol.sfpm1.tavg-h2m-hxy-u.1hr.GLB", + "uid": "83bbfc28-7f07-11ef-9308-b1dd71e64bec" + }, + "aerosol.sfpm1.tavg-h2m-hxy-u.day.GLB": { + "frequency": "day", + "modeling_realm": "aerosol", + "standard_name": "mass_fraction_of_pm1_ambient_aerosol_particles_in_air", + "units": "kg kg-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Surface daily mean PM1.0", + "comment": "Daily mean PM1.0 mass mixing ratio in lowest model layer", + "dimensions": "longitude latitude time height2m", + "out_name": "sfpm1", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "AERday", + "physical_parameter_name": "sfpm1", + "variableRootDD": "sfpm1", + "branding_label": "tavg-h2m-hxy-u", + "branded_variable_name": "sfpm1_tavg-h2m-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERday.sfpm1", + "cmip7_compound_name": "aerosol.sfpm1.tavg-h2m-hxy-u.day.GLB", + "uid": "83bbfc33-7f07-11ef-9308-b1dd71e64bec" + }, + "aerosol.sfpm10.tavg-al-hxy-u.mon.30S-90S": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "mass_fraction_of_pm10_ambient_aerosol_particles_in_air", + "units": "kg kg-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "PM10 Mass Mixing Ratio", + "comment": "Mass fraction atmospheric particulate compounds with an aerodynamic diameter of less than or equal to 10 micrometers", + "dimensions": "longitude latitude alevel time", + "out_name": "mmrpm10", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "mmrpm10", + "variableRootDD": "sfpm10", + "branding_label": "tavg-al-hxy-u", + "branded_variable_name": "sfpm10_tavg-al-hxy-u", + "region": "30S-90S", + "cmip6_compound_name": "AERmon.mmrpm10South30", + "cmip7_compound_name": "aerosol.sfpm10.tavg-al-hxy-u.mon.30S-90S", + "uid": "80ac31a8-a698-11ef-914a-613c0433d878" + }, + "aerosol.sfpm10.tavg-al-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "mass_fraction_of_pm10_ambient_aerosol_particles_in_air", + "units": "kg kg-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "PM10 Mass Mixing Ratio", + "comment": "Mass fraction atmospheric particulate compounds with an aerodynamic diameter of less than or equal to 10 micrometers", + "dimensions": "longitude latitude alevel time", + "out_name": "mmrpm10", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "mmrpm10", + "variableRootDD": "sfpm10", + "branding_label": "tavg-al-hxy-u", + "branded_variable_name": "sfpm10_tavg-al-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.mmrpm10", + "cmip7_compound_name": "aerosol.sfpm10.tavg-al-hxy-u.mon.GLB", + "uid": "19c00420-81b1-11e6-92de-ac72891c3257" + }, + "aerosol.sfpm10.tavg-h2m-hxy-u.1hr.GLB": { + "frequency": "1hr", + "modeling_realm": "aerosol", + "standard_name": "mass_fraction_of_pm10_ambient_aerosol_particles_in_air", + "units": "kg kg-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Hourly Surface PM10 Mixing Ratio", + "comment": "Hourly PM10 Mass Mixing Ratio in Lowest Model Layer", + "dimensions": "longitude latitude time height2m", + "out_name": "sfpm10", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "AERhr", + "physical_parameter_name": "sfpm10", + "variableRootDD": "sfpm10", + "branding_label": "tavg-h2m-hxy-u", + "branded_variable_name": "sfpm10_tavg-h2m-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERhr.sfpm10", + "cmip7_compound_name": "aerosol.sfpm10.tavg-h2m-hxy-u.1hr.GLB", + "uid": "83bbfc27-7f07-11ef-9308-b1dd71e64bec" + }, + "aerosol.sfpm10.tavg-h2m-hxy-u.day.GLB": { + "frequency": "day", + "modeling_realm": "aerosol", + "standard_name": "mass_fraction_of_pm10_ambient_aerosol_particles_in_air", + "units": "kg kg-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Daily mean surface PM10", + "comment": "Daily mean PM10 mass mixing ratio in lowest model layer", + "dimensions": "longitude latitude time height2m", + "out_name": "sfpm10", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "AERday", + "physical_parameter_name": "sfpm10", + "variableRootDD": "sfpm10", + "branding_label": "tavg-h2m-hxy-u", + "branded_variable_name": "sfpm10_tavg-h2m-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERday.sfpm10", + "cmip7_compound_name": "aerosol.sfpm10.tavg-h2m-hxy-u.day.GLB", + "uid": "83bbfc32-7f07-11ef-9308-b1dd71e64bec" + }, + "aerosol.sfpm25.tavg-h2m-hxy-u.1hr.GLB": { + "frequency": "1hr", + "modeling_realm": "aerosol", + "standard_name": "mass_fraction_of_pm2p5_ambient_aerosol_particles_in_air", + "units": "kg kg-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "PM2.5 Mass Mixing Ratio in Lowest Model Layer", + "comment": "Mass fraction of atmospheric particulate compounds with an aerodynamic diameter of less than or equal to 2.5 micrometers. To specify the relative humidity and temperature at which the particle size applies, provide scalar coordinate variables with the standard names of \"relative_humidity\" and \"air_temperature\".", + "dimensions": "longitude latitude time height2m", + "out_name": "sfpm25", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "AERhr", + "physical_parameter_name": "sfpm25", + "variableRootDD": "sfpm25", + "branding_label": "tavg-h2m-hxy-u", + "branded_variable_name": "sfpm25_tavg-h2m-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERhr.sfpm25", + "cmip7_compound_name": "aerosol.sfpm25.tavg-h2m-hxy-u.1hr.GLB", + "uid": "19c074b4-81b1-11e6-92de-ac72891c3257" + }, + "aerosol.sfpm25.tavg-h2m-hxy-u.day.GLB": { + "frequency": "day", + "modeling_realm": "aerosol", + "standard_name": "mass_fraction_of_pm2p5_ambient_aerosol_particles_in_air", + "units": "kg kg-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Daily mean surface PM2.5", + "comment": "Daily mean PM2.5 mass mixing ratio in lowest model layer", + "dimensions": "longitude latitude time height2m", + "out_name": "sfpm25", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "AERday", + "physical_parameter_name": "sfpm25", + "variableRootDD": "sfpm25", + "branding_label": "tavg-h2m-hxy-u", + "branded_variable_name": "sfpm25_tavg-h2m-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERday.sfpm25", + "cmip7_compound_name": "aerosol.sfpm25.tavg-h2m-hxy-u.day.GLB", + "uid": "83bbfc31-7f07-11ef-9308-b1dd71e64bec" + }, + "aerosol.so2.tavg-al-hxy-u.mon.30S-90S": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "mole_fraction_of_sulfur_dioxide_in_air", + "units": "mol mol-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "SO2 Volume Mixing Ratio", + "comment": "Mole fraction is used in the construction mole_fraction_of_X_in_Y, where X is a material constituent of Y.", + "dimensions": "longitude latitude alevel time", + "out_name": "so2", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "so2", + "variableRootDD": "so2", + "branding_label": "tavg-al-hxy-u", + "branded_variable_name": "so2_tavg-al-hxy-u", + "region": "30S-90S", + "cmip6_compound_name": "AERmon.so2South30", + "cmip7_compound_name": "aerosol.so2.tavg-al-hxy-u.mon.30S-90S", + "uid": "80ac31da-a698-11ef-914a-613c0433d878" + }, + "aerosol.so2.tavg-al-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "mole_fraction_of_sulfur_dioxide_in_air", + "units": "mol mol-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "SO2 Volume Mixing Ratio", + "comment": "Mole fraction is used in the construction mole_fraction_of_X_in_Y, where X is a material constituent of Y.", + "dimensions": "longitude latitude alevel time", + "out_name": "so2", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "so2", + "variableRootDD": "so2", + "branding_label": "tavg-al-hxy-u", + "branded_variable_name": "so2_tavg-al-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.so2", + "cmip7_compound_name": "aerosol.so2.tavg-al-hxy-u.mon.GLB", + "uid": "19bfa78c-81b1-11e6-92de-ac72891c3257" + }, + "aerosol.so2.tavg-h2m-hxy-u.day.GLB": { + "frequency": "day", + "modeling_realm": "aerosol", + "standard_name": "mole_fraction_of_sulfur_dioxide_in_air", + "units": "mol mol-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Surface daily mean SO2", + "comment": "Daily mean SO2 volume mixing ratio in lowest model layer", + "dimensions": "longitude latitude time height2m", + "out_name": "so2", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "AERday", + "physical_parameter_name": "so2", + "variableRootDD": "so2", + "branding_label": "tavg-h2m-hxy-u", + "branded_variable_name": "so2_tavg-h2m-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERday.so2", + "cmip7_compound_name": "aerosol.so2.tavg-h2m-hxy-u.day.GLB", + "uid": "83bbfc30-7f07-11ef-9308-b1dd71e64bec" + }, + "aerosol.so2.tpt-h2m-hs-u.3hr.GLB": { + "frequency": "3hr", + "modeling_realm": "aerosol", + "standard_name": "mole_fraction_of_sulfur_dioxide_in_air", + "units": "mol mol-1", + "cell_methods": "area: point time: point", + "cell_measures": "::MODEL", + "long_name": "Surface SO2 volume mixing ratio at CF sites", + "comment": "This variable represents the instantaneous surface so2 volume mixing ration at CF sites, sampled every 3 hours", + "dimensions": "site time1 height2m", + "out_name": "so2", + "type": "real", + "positive": "", + "spatial_shape": "S-na", + "temporal_shape": "time-point", + "cmip6_table": "E3hrPt", + "physical_parameter_name": "so2", + "variableRootDD": "so2", + "branding_label": "tpt-h2m-hs-u", + "branded_variable_name": "so2_tpt-h2m-hs-u", + "region": "GLB", + "cmip6_compound_name": "E3hrPt.so2", + "cmip7_compound_name": "aerosol.so2.tpt-h2m-hs-u.3hr.GLB", + "uid": "83bbfbb2-7f07-11ef-9308-b1dd71e64bec" + }, + "aerosol.tatp.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "tropopause_air_temperature", + "units": "K", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Tropopause Air Temperature", + "comment": "2D monthly mean thermal tropopause calculated using WMO tropopause definition on 3d temperature", + "dimensions": "longitude latitude time", + "out_name": "tatp", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "tatp", + "variableRootDD": "tatp", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "tatp_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.tatp", + "cmip7_compound_name": "aerosol.tatp.tavg-u-hxy-u.mon.GLB", + "uid": "19bf81b2-81b1-11e6-92de-ac72891c3257" + }, + "aerosol.toz.tavg-u-hxy-u.day.GLB": { + "frequency": "day", + "modeling_realm": "aerosol", + "standard_name": "equivalent_thickness_at_stp_of_atmosphere_ozone_content", + "units": "m", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Total Column Ozone", + "comment": "Total ozone column", + "dimensions": "longitude latitude time", + "out_name": "toz", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "AERday", + "physical_parameter_name": "toz", + "variableRootDD": "toz", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "toz_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERday.toz", + "cmip7_compound_name": "aerosol.toz.tavg-u-hxy-u.day.GLB", + "uid": "19bdaba8-81b1-11e6-92de-ac72891c3257" + }, + "aerosol.toz.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "equivalent_thickness_at_stp_of_atmosphere_ozone_content", + "units": "m", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Total Column Ozone", + "comment": "total ozone column in DU", + "dimensions": "longitude latitude time", + "out_name": "toz", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "toz", + "variableRootDD": "toz", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "toz_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.toz", + "cmip7_compound_name": "aerosol.toz.tavg-u-hxy-u.mon.GLB", + "uid": "19bf12b8-81b1-11e6-92de-ac72891c3257" + }, + "aerosol.tropoz.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "equivalent_thickness_at_stp_of_troposphere_ozone_content", + "units": "m", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Tropospheric Ozone Column", + "comment": "Tropospheric ozone column, should be consistent with definition of tropopause used to calculate the pressure of the tropopause (ptp).", + "dimensions": "longitude latitude time", + "out_name": "tropoz", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "tropoz", + "variableRootDD": "tropoz", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "tropoz_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.tropoz", + "cmip7_compound_name": "aerosol.tropoz.tavg-u-hxy-u.mon.GLB", + "uid": "19bff46c-81b1-11e6-92de-ac72891c3257" + }, + "aerosol.ttop.tavg-u-hxy-cl.mon.GLB": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "air_temperature_at_cloud_top", + "units": "K", + "cell_methods": "area: time: mean where cloud", + "cell_measures": "area: areacella", + "long_name": "Air Temperature at Cloud Top", + "comment": "cloud_top refers to the top of the highest cloud. Air temperature is the bulk temperature of the air, not the surface (skin) temperature.", + "dimensions": "longitude latitude time", + "out_name": "ttop", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "ttop", + "variableRootDD": "ttop", + "branding_label": "tavg-u-hxy-cl", + "branded_variable_name": "ttop_tavg-u-hxy-cl", + "region": "GLB", + "cmip6_compound_name": "AERmon.ttop", + "cmip7_compound_name": "aerosol.ttop.tavg-u-hxy-cl.mon.GLB", + "uid": "19be9072-81b1-11e6-92de-ac72891c3257" + }, + "aerosol.ua.tavg-10hPa-hxy-air.day.GLB": { + "frequency": "day", + "modeling_realm": "aerosol", + "standard_name": "eastward_wind", + "units": "m s-1", + "cell_methods": "area: time: mean where air", + "cell_measures": "area: areacella", + "long_name": "Eastward Wind at 10hPa", + "comment": "Zonal wind on the 10 hPa surface", + "dimensions": "longitude latitude time p10", + "out_name": "ua10", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "AERday", + "physical_parameter_name": "ua10", + "variableRootDD": "ua", + "branding_label": "tavg-10hPa-hxy-air", + "branded_variable_name": "ua_tavg-10hPa-hxy-air", + "region": "GLB", + "cmip6_compound_name": "AERday.ua10", + "cmip7_compound_name": "aerosol.ua.tavg-10hPa-hxy-air.day.GLB", + "uid": "19bdde3e-81b1-11e6-92de-ac72891c3257" + }, + "aerosol.vt100.tavg-100hPa-hy-air.mon.GLB": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "covariance_over_longitude_of_northward_wind_and_air_temperature", + "units": "K m s-1", + "cell_methods": "longitude: time: mean where air", + "cell_measures": "", + "long_name": "Northward Eddy Temperature Flux", + "comment": "Zonally averaged eddy temperature flux at 100hPa as monthly means derived from daily (or higher frequency) fields.", + "dimensions": "latitude time p100", + "out_name": "vt100", + "type": "real", + "positive": "", + "spatial_shape": "Y-na", + "temporal_shape": "time-intv", + "cmip6_table": "AERmonZ", + "physical_parameter_name": "vt100", + "variableRootDD": "vt100", + "branding_label": "tavg-100hPa-hy-air", + "branded_variable_name": "vt100_tavg-100hPa-hy-air", + "region": "GLB", + "cmip6_compound_name": "AERmonZ.vt100", + "cmip7_compound_name": "aerosol.vt100.tavg-100hPa-hy-air.mon.GLB", + "uid": "fda680ce-96ec-11e6-b81e-c9e268aff03a" + }, + "aerosol.wa.tavg-al-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "upward_air_velocity", + "units": "m s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Upward Air Velocity", + "comment": "A velocity is a vector quantity. \"Upward\" indicates a vector component which is positive when directed upward (negative downward). Upward air velocity is the vertical component of the 3D air velocity vector. The standard name downward_air_velocity may be used for a vector component with the opposite sign convention.", + "dimensions": "longitude latitude alevel time", + "out_name": "wa", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "wa", + "variableRootDD": "wa", + "branding_label": "tavg-al-hxy-u", + "branded_variable_name": "wa_tavg-al-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.wa", + "cmip7_compound_name": "aerosol.wa.tavg-al-hxy-u.mon.GLB", + "uid": "19beefc2-81b1-11e6-92de-ac72891c3257" + }, + "aerosol.wetbc.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "minus_tendency_of_atmosphere_mass_content_of_elemental_carbon_dry_aerosol_particles_due_to_wet_deposition", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Wet Deposition Rate of Black Carbon Aerosol Mass", + "comment": "Surface deposition rate of black carbon (dry mass) due to wet processes", + "dimensions": "longitude latitude time", + "out_name": "wetbc", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "wetbc", + "variableRootDD": "wetbc", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "wetbc_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.wetbc", + "cmip7_compound_name": "aerosol.wetbc.tavg-u-hxy-u.mon.GLB", + "uid": "19bf5674-81b1-11e6-92de-ac72891c3257" + }, + "aerosol.wetdust.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "minus_tendency_of_atmosphere_mass_content_of_dust_dry_aerosol_particles_due_to_wet_deposition", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Wet Deposition Rate of Dust", + "comment": "Surface deposition rate of dust (dry mass) due to wet processes", + "dimensions": "longitude latitude time", + "out_name": "wetdust", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "wetdust", + "variableRootDD": "wetdust", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "wetdust_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.wetdust", + "cmip7_compound_name": "aerosol.wetdust.tavg-u-hxy-u.mon.GLB", + "uid": "19be7024-81b1-11e6-92de-ac72891c3257" + }, + "aerosol.wetoa.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "minus_tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_due_to_wet_deposition", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Wet Deposition Rate of Dry Aerosol Total Organic Matter", + "comment": "Deposition rate of organic matter in aerosols (measured by the dry mass) due to wet processes", + "dimensions": "longitude latitude time", + "out_name": "wetoa", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "wetoa", + "variableRootDD": "wetoa", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "wetoa_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.wetoa", + "cmip7_compound_name": "aerosol.wetoa.tavg-u-hxy-u.mon.GLB", + "uid": "19bf34d2-81b1-11e6-92de-ac72891c3257" + }, + "aerosol.wetso2.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "minus_tendency_of_atmosphere_mass_content_of_sulfur_dioxide_due_to_wet_deposition", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Wet Deposition Rate of SO2", + "comment": "Deposition rate of sulfur dioxide due to wet processes", + "dimensions": "longitude latitude time", + "out_name": "wetso2", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "wetso2", + "variableRootDD": "wetso2", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "wetso2_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.wetso2", + "cmip7_compound_name": "aerosol.wetso2.tavg-u-hxy-u.mon.GLB", + "uid": "19be2ec0-81b1-11e6-92de-ac72891c3257" + }, + "aerosol.wetso4.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "minus_tendency_of_atmosphere_mass_content_of_sulfate_dry_aerosol_particles_due_to_wet_deposition", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Wet Deposition Rate of SO4", + "comment": "proposed name: tendency_of_atmosphere_mass_content_of_sulfate_dry_aerosol_due_to_wet_deposition", + "dimensions": "longitude latitude time", + "out_name": "wetso4", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "wetso4", + "variableRootDD": "wetso4", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "wetso4_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.wetso4", + "cmip7_compound_name": "aerosol.wetso4.tavg-u-hxy-u.mon.GLB", + "uid": "19be330c-81b1-11e6-92de-ac72891c3257" + }, + "aerosol.wetss.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "minus_tendency_of_atmosphere_mass_content_of_sea_salt_dry_aerosol_particles_due_to_wet_deposition", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Wet Deposition Rate of Sea-Salt Aerosol", + "comment": "Deposition rate of sea salt aerosols (measured by the dry mass) due to wet processes", + "dimensions": "longitude latitude time", + "out_name": "wetss", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "wetss", + "variableRootDD": "wetss", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "wetss_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.wetss", + "cmip7_compound_name": "aerosol.wetss.tavg-u-hxy-u.mon.GLB", + "uid": "19c0606e-81b1-11e6-92de-ac72891c3257" + }, + "aerosol.zg.tavg-10hPa-hxy-air.day.GLB": { + "frequency": "day", + "modeling_realm": "aerosol", + "standard_name": "geopotential_height", + "units": "m", + "cell_methods": "area: time: mean where air", + "cell_measures": "area: areacella", + "long_name": "Geopotential Height at 10hPa", + "comment": "Geopotential height on the 10 hPa surface", + "dimensions": "longitude latitude time p10", + "out_name": "zg10", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "AERday", + "physical_parameter_name": "zg10", + "variableRootDD": "zg", + "branding_label": "tavg-10hPa-hxy-air", + "branded_variable_name": "zg_tavg-10hPa-hxy-air", + "region": "GLB", + "cmip6_compound_name": "AERday.zg10", + "cmip7_compound_name": "aerosol.zg.tavg-10hPa-hxy-air.day.GLB", + "uid": "19bdc1ec-81b1-11e6-92de-ac72891c3257" + }, + "atmos.albisccp.tavg-u-hxy-cl.day.GLB": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "cloud_albedo", + "units": "1", + "cell_methods": "area: time: mean where cloud (weighted by ISCCP total cloud area)", + "cell_measures": "area: areacella", + "long_name": "ISCCP Mean Cloud Albedo", + "comment": "Time-means are weighted by the ISCCP Total Cloud Fraction - see . Values will be missing where there are no clouds or no sunlight.", + "dimensions": "longitude latitude time", + "out_name": "albisccp", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "CFday", + "physical_parameter_name": "albisccp", + "variableRootDD": "albisccp", + "branding_label": "tavg-u-hxy-cl", + "branded_variable_name": "albisccp_tavg-u-hxy-cl", + "region": "GLB", + "cmip6_compound_name": "CFday.albisccp", + "cmip7_compound_name": "atmos.albisccp.tavg-u-hxy-cl.day.GLB", + "uid": "baa8144c-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.albisccp.tavg-u-hxy-cl.mon.30S-90S": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "cloud_albedo", + "units": "1", + "cell_methods": "area: time: mean where cloud (weighted by ISCCP total cloud area)", + "cell_measures": "area: areacella", + "long_name": "ISCCP Mean Cloud Albedo", + "comment": "Time-means are weighted by the ISCCP Total Cloud Fraction - see . Values will be missing where there are no clouds or no sunlight.", + "dimensions": "longitude latitude time", + "out_name": "albisccp", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "CFmon", + "physical_parameter_name": "albisccp", + "variableRootDD": "albisccp", + "branding_label": "tavg-u-hxy-cl", + "branded_variable_name": "albisccp_tavg-u-hxy-cl", + "region": "30S-90S", + "cmip6_compound_name": "CFmon.albisccpSouth30", + "cmip7_compound_name": "atmos.albisccp.tavg-u-hxy-cl.mon.30S-90S", + "uid": "80ac3163-a698-11ef-914a-613c0433d878" + }, + "atmos.albisccp.tavg-u-hxy-cl.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "cloud_albedo", + "units": "1", + "cell_methods": "area: time: mean where cloud (weighted by ISCCP total cloud area)", + "cell_measures": "area: areacella", + "long_name": "ISCCP Mean Cloud Albedo", + "comment": "Time-means are weighted by the ISCCP Total Cloud Fraction - see . Values will be missing where there are no clouds or no sunlight.", + "dimensions": "longitude latitude time", + "out_name": "albisccp", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "CFmon", + "physical_parameter_name": "albisccp", + "variableRootDD": "albisccp", + "branding_label": "tavg-u-hxy-cl", + "branded_variable_name": "albisccp_tavg-u-hxy-cl", + "region": "GLB", + "cmip6_compound_name": "CFmon.albisccp", + "cmip7_compound_name": "atmos.albisccp.tavg-u-hxy-cl.mon.GLB", + "uid": "baa817c6-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.aod550volso4.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "stratosphere_optical_thickness_due_to_volcanic_ambient_aerosol_particles", + "units": "1E-09", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Monthly Aerosol Optical Depth at 550nm Due to Stratospheric Volcanic Aerosols", + "comment": "This is the monthly averaged aerosol optical thickness at 550 nm due to stratospheric volcanic sulphate aerosols", + "dimensions": "longitude latitude time lambda550nm", + "out_name": "aod550volso4", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Amon", + "physical_parameter_name": "aod550volso4", + "variableRootDD": "aod550volso4", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "aod550volso4_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "Amon.aod550volso4", + "cmip7_compound_name": "atmos.aod550volso4.tavg-u-hxy-u.mon.GLB", + "uid": "83bbfbe2-7f07-11ef-9308-b1dd71e64bec" + }, + "atmos.areacella.ti-u-hxy-u.fx.GLB": { + "frequency": "fx", + "modeling_realm": "atmos", + "standard_name": "cell_area", + "units": "m2", + "cell_methods": "area: sum", + "cell_measures": "", + "long_name": "Grid-Cell Area for Atmospheric Grid Variables", + "comment": "Cell areas for any grid used to report atmospheric variables and any other variable using that grid (e.g., soil moisture content). These cell areas should be defined to enable exact calculation of global integrals (e.g., of vertical fluxes of energy at the surface and top of the atmosphere).", + "dimensions": "longitude latitude", + "out_name": "areacella", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "None", + "cmip6_table": "fx", + "physical_parameter_name": "areacella", + "variableRootDD": "areacella", + "branding_label": "ti-u-hxy-u", + "branded_variable_name": "areacella_ti-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "fx.areacella", + "cmip7_compound_name": "atmos.areacella.ti-u-hxy-u.fx.GLB", + "uid": "baa83a12-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.bldep.tavg-u-hxy-u.1hr.GLB": { + "frequency": "1hr", + "modeling_realm": "atmos", + "standard_name": "atmosphere_boundary_layer_thickness", + "units": "m", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Boundary layer depth", + "comment": "Boundary Layer depth", + "dimensions": "longitude latitude time", + "out_name": "bldep", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "E1hr", + "physical_parameter_name": "bldep", + "variableRootDD": "bldep", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "bldep_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "E1hr.bldep", + "cmip7_compound_name": "atmos.bldep.tavg-u-hxy-u.1hr.GLB", + "uid": "83bbfbcb-7f07-11ef-9308-b1dd71e64bec" + }, + "atmos.bldep.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "atmosphere_boundary_layer_thickness", + "units": "m", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Boundary Layer Depth", + "comment": "Boundary layer depth", + "dimensions": "longitude latitude time", + "out_name": "bldep", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "bldep", + "variableRootDD": "bldep", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "bldep_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.bldep", + "cmip7_compound_name": "atmos.bldep.tavg-u-hxy-u.mon.GLB", + "uid": "01d46c6c-c792-11e6-aa58-5404a60d96b5" + }, + "atmos.bldep.tmax-u-hxy-u.day.GLB": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "atmosphere_boundary_layer_thickness", + "units": "m", + "cell_methods": "area: mean time: maximum", + "cell_measures": "area: areacella", + "long_name": "Maximum PBL Height", + "comment": "maximum boundary layer height during the day (add cell_methods attribute: \"time: maximum\")", + "dimensions": "longitude latitude time", + "out_name": "maxpblz", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "AERday", + "physical_parameter_name": "maxpblz", + "variableRootDD": "bldep", + "branding_label": "tmax-u-hxy-u", + "branded_variable_name": "bldep_tmax-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERday.maxpblz", + "cmip7_compound_name": "atmos.bldep.tmax-u-hxy-u.day.GLB", + "uid": "19bdcaac-81b1-11e6-92de-ac72891c3257" + }, + "atmos.bldep.tmin-u-hxy-u.day.GLB": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "atmosphere_boundary_layer_thickness", + "units": "m", + "cell_methods": "area: mean time: minimum", + "cell_measures": "area: areacella", + "long_name": "Minimum PBL Height", + "comment": "minimum boundary layer height during the day (add cell_methods attribute: \"time: minimum\")", + "dimensions": "longitude latitude time", + "out_name": "minpblz", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "AERday", + "physical_parameter_name": "minpblz", + "variableRootDD": "bldep", + "branding_label": "tmin-u-hxy-u", + "branded_variable_name": "bldep_tmin-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERday.minpblz", + "cmip7_compound_name": "atmos.bldep.tmin-u-hxy-u.day.GLB", + "uid": "19bdd8ee-81b1-11e6-92de-ac72891c3257" + }, + "atmos.bldep.tpt-u-hxy-u.3hr.GLB": { + "frequency": "3hr", + "modeling_realm": "atmos", + "standard_name": "atmosphere_boundary_layer_thickness", + "units": "m", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Boundary Layer Depth", + "comment": "Boundary Layer Depth every 3 hours", + "dimensions": "longitude latitude time1", + "out_name": "bldep", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-point", + "cmip6_table": "3hrPt", + "physical_parameter_name": "bldep", + "variableRootDD": "bldep", + "branding_label": "tpt-u-hxy-u", + "branded_variable_name": "bldep_tpt-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "3hrPt.bldep", + "cmip7_compound_name": "atmos.bldep.tpt-u-hxy-u.3hr.GLB", + "uid": "83bbfc71-7f07-11ef-9308-b1dd71e64bec" + }, + "atmos.ccb.tavg-u-hxy-ccl.day.GLB": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "air_pressure_at_convective_cloud_base", + "units": "Pa", + "cell_methods": "area: time: mean where convective_cloud (weighted by total convective cloud area)", + "cell_measures": "area: areacella", + "long_name": "Air Pressure at Convective Cloud Base", + "comment": "Where convective cloud is present in the grid cell, the instantaneous cloud base altitude should be that of the bottom of the lowest level containing convective cloud. Missing data should be reported in the absence of convective cloud. The time mean should be calculated from these quantities averaging over occasions when convective cloud is present only, and should contain missing data for occasions when no convective cloud is present during the meaning period.", + "dimensions": "longitude latitude time", + "out_name": "ccb", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "CFday", + "physical_parameter_name": "ccb", + "variableRootDD": "ccb", + "branding_label": "tavg-u-hxy-ccl", + "branded_variable_name": "ccb_tavg-u-hxy-ccl", + "region": "GLB", + "cmip6_compound_name": "CFday.ccb", + "cmip7_compound_name": "atmos.ccb.tavg-u-hxy-ccl.day.GLB", + "uid": "baa929ea-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.ccb.tavg-u-hxy-ccl.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "air_pressure_at_convective_cloud_base", + "units": "Pa", + "cell_methods": "area: time: mean where convective_cloud (weighted by total convective cloud area)", + "cell_measures": "area: areacella", + "long_name": "Air Pressure at Convective Cloud Base", + "comment": "Where convective cloud is present in the grid cell, the instantaneous cloud base altitude should be that of the bottom of the lowest level containing convective cloud. Missing data should be reported in the absence of convective cloud. The time mean should be calculated from these quantities averaging over occasions when convective cloud is present only, and should contain missing data for occasions when no convective cloud is present during the meaning period.", + "dimensions": "longitude latitude time", + "out_name": "ccb", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Amon", + "physical_parameter_name": "ccb", + "variableRootDD": "ccb", + "branding_label": "tavg-u-hxy-ccl", + "branded_variable_name": "ccb_tavg-u-hxy-ccl", + "region": "GLB", + "cmip6_compound_name": "Amon.ccb", + "cmip7_compound_name": "atmos.ccb.tavg-u-hxy-ccl.mon.GLB", + "uid": "baa92652-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.ccb.tpt-u-hs-u.subhr.GLB": { + "frequency": "subhr", + "modeling_realm": "atmos", + "standard_name": "air_pressure_at_convective_cloud_base", + "units": "Pa", + "cell_methods": "area: point time: point", + "cell_measures": "", + "long_name": "Air Pressure at Convective Cloud Base", + "comment": "Where convective cloud is present in the grid cell, the instantaneous cloud base altitude should be that of the bottom of the lowest level containing convective cloud. Missing data should be reported in the absence of convective cloud. The time mean should be calculated from these quantities averaging over occasions when convective cloud is present only, and should contain missing data for occasions when no convective cloud is present during the meaning period.", + "dimensions": "site time1", + "out_name": "ccb", + "type": "real", + "positive": "", + "spatial_shape": "S-na", + "temporal_shape": "time-point", + "cmip6_table": "CFsubhr", + "physical_parameter_name": "ccb", + "variableRootDD": "ccb", + "branding_label": "tpt-u-hs-u", + "branded_variable_name": "ccb_tpt-u-hs-u", + "region": "GLB", + "cmip6_compound_name": "CFsubhr.ccb", + "cmip7_compound_name": "atmos.ccb.tpt-u-hs-u.subhr.GLB", + "uid": "8009dc3e-f906-11e6-a176-5404a60d96b5" + }, + "atmos.cct.tavg-u-hxy-ccl.day.GLB": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "air_pressure_at_convective_cloud_top", + "units": "Pa", + "cell_methods": "area: time: mean where convective_cloud (weighted by total convective cloud area)", + "cell_measures": "area: areacella", + "long_name": "Air Pressure at Convective Cloud Top", + "comment": "Where convective cloud is present in the grid cell, the instantaneous cloud top altitude should be that of the top of the highest level containing convective cloud. Missing data should be reported in the absence of convective cloud. The time mean should be calculated from these quantities averaging over occasions when convective cloud is present only, and should contain missing data for occasions when no convective cloud is present during the meaning period.", + "dimensions": "longitude latitude time", + "out_name": "cct", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "CFday", + "physical_parameter_name": "cct", + "variableRootDD": "cct", + "branding_label": "tavg-u-hxy-ccl", + "branded_variable_name": "cct_tavg-u-hxy-ccl", + "region": "GLB", + "cmip6_compound_name": "CFday.cct", + "cmip7_compound_name": "atmos.cct.tavg-u-hxy-ccl.day.GLB", + "uid": "baa96d92-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.cct.tavg-u-hxy-ccl.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "air_pressure_at_convective_cloud_top", + "units": "Pa", + "cell_methods": "area: time: mean where convective_cloud (weighted by total convective cloud area)", + "cell_measures": "area: areacella", + "long_name": "Air Pressure at Convective Cloud Top", + "comment": "Where convective cloud is present in the grid cell, the instantaneous cloud top altitude should be that of the top of the highest level containing convective cloud. Missing data should be reported in the absence of convective cloud. The time mean should be calculated from these quantities averaging over occasions when convective cloud is present only, and should contain missing data for occasions when no convective cloud is present during the meaning period.", + "dimensions": "longitude latitude time", + "out_name": "cct", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Amon", + "physical_parameter_name": "cct", + "variableRootDD": "cct", + "branding_label": "tavg-u-hxy-ccl", + "branded_variable_name": "cct_tavg-u-hxy-ccl", + "region": "GLB", + "cmip6_compound_name": "Amon.cct", + "cmip7_compound_name": "atmos.cct.tavg-u-hxy-ccl.mon.GLB", + "uid": "baa96a0e-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.cct.tpt-u-hs-u.subhr.GLB": { + "frequency": "subhr", + "modeling_realm": "atmos", + "standard_name": "air_pressure_at_convective_cloud_top", + "units": "Pa", + "cell_methods": "area: point time: point", + "cell_measures": "", + "long_name": "Air Pressure at Convective Cloud Top", + "comment": "Where convective cloud is present in the grid cell, the instantaneous cloud top altitude should be that of the top of the highest level containing convective cloud. Missing data should be reported in the absence of convective cloud. The time mean should be calculated from these quantities averaging over occasions when convective cloud is present only, and should contain missing data for occasions when no convective cloud is present during the meaning period.", + "dimensions": "site time1", + "out_name": "cct", + "type": "real", + "positive": "", + "spatial_shape": "S-na", + "temporal_shape": "time-point", + "cmip6_table": "CFsubhr", + "physical_parameter_name": "cct", + "variableRootDD": "cct", + "branding_label": "tpt-u-hs-u", + "branded_variable_name": "cct_tpt-u-hs-u", + "region": "GLB", + "cmip6_compound_name": "CFsubhr.cct", + "cmip7_compound_name": "atmos.cct.tpt-u-hs-u.subhr.GLB", + "uid": "8009f00c-f906-11e6-a176-5404a60d96b5" + }, + "atmos.cfadDbze94.tavg-h40-hxy-air.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "histogram_of_equivalent_reflectivity_factor_over_height_above_reference_ellipsoid", + "units": "1", + "cell_methods": "area: time: mean where air", + "cell_measures": "area: areacella", + "long_name": "CloudSat Radar Reflectivity CFAD", + "comment": "CloudSat Radar Reflectivity", + "dimensions": "longitude latitude alt40 dbze time", + "out_name": "cfadDbze94", + "type": "real", + "positive": "", + "spatial_shape": "XY-H40", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "cfadDbze94", + "variableRootDD": "cfadDbze94", + "branding_label": "tavg-h40-hxy-air", + "branded_variable_name": "cfadDbze94_tavg-h40-hxy-air", + "region": "GLB", + "cmip6_compound_name": "Emon.cfadDbze94", + "cmip7_compound_name": "atmos.cfadDbze94.tavg-h40-hxy-air.mon.GLB", + "uid": "8b8a472e-4a5b-11e6-9cd2-ac72891c3257" + }, + "atmos.cfadLidarsr532.tavg-h40-hxy-air.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "histogram_of_backscattering_ratio_in_air_over_height_above_reference_ellipsoid", + "units": "1", + "cell_methods": "area: time: mean where air", + "cell_measures": "area: areacella", + "long_name": "CALIPSO Scattering Ratio CFAD", + "comment": "CALIPSO Scattering Ratio", + "dimensions": "longitude latitude alt40 scatratio time", + "out_name": "cfadLidarsr532", + "type": "real", + "positive": "", + "spatial_shape": "XY-H40", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "cfadLidarsr532", + "variableRootDD": "cfadLidarsr532", + "branding_label": "tavg-h40-hxy-air", + "branded_variable_name": "cfadLidarsr532_tavg-h40-hxy-air", + "region": "GLB", + "cmip6_compound_name": "Emon.cfadLidarsr532", + "cmip7_compound_name": "atmos.cfadLidarsr532.tavg-h40-hxy-air.mon.GLB", + "uid": "8b8a4c56-4a5b-11e6-9cd2-ac72891c3257" + }, + "atmos.ci.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "convection_time_fraction", + "units": "1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Fraction of Time Convection Occurs in Cell", + "comment": "Fraction of time that convection occurs in the grid cell. If native cell data is regridded, the area-weighted mean of the contributing cells should be reported.", + "dimensions": "longitude latitude time", + "out_name": "ci", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Amon", + "physical_parameter_name": "ci", + "variableRootDD": "ci", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "ci_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "Amon.ci", + "cmip7_compound_name": "atmos.ci.tavg-u-hxy-u.mon.GLB", + "uid": "baaa3984-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.ci.tpt-u-hs-u.subhr.GLB": { + "frequency": "subhr", + "modeling_realm": "atmos", + "standard_name": "convection_time_fraction", + "units": "1", + "cell_methods": "area: point time: point", + "cell_measures": "", + "long_name": "Fraction of Time Convection Occurs in Cell", + "comment": "Fraction of time that convection occurs in the grid cell .", + "dimensions": "site time1", + "out_name": "ci", + "type": "real", + "positive": "", + "spatial_shape": "S-na", + "temporal_shape": "time-point", + "cmip6_table": "CFsubhr", + "physical_parameter_name": "ci", + "variableRootDD": "ci", + "branding_label": "tpt-u-hs-u", + "branded_variable_name": "ci_tpt-u-hs-u", + "region": "GLB", + "cmip6_compound_name": "CFsubhr.ci", + "cmip7_compound_name": "atmos.ci.tpt-u-hs-u.subhr.GLB", + "uid": "800a0290-f906-11e6-a176-5404a60d96b5" + }, + "atmos.cl.tavg-al-hxy-u.day.GLB": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "cloud_area_fraction_in_atmosphere_layer", + "units": "%", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Percentage Cloud Cover", + "comment": "Percentage cloud cover, including both large-scale and convective cloud.", + "dimensions": "longitude latitude alevel time", + "out_name": "cl", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-intv", + "cmip6_table": "CFday", + "physical_parameter_name": "cl", + "variableRootDD": "cl", + "branding_label": "tavg-al-hxy-u", + "branded_variable_name": "cl_tavg-al-hxy-u", + "region": "GLB", + "cmip6_compound_name": "CFday.cl", + "cmip7_compound_name": "atmos.cl.tavg-al-hxy-u.day.GLB", + "uid": "baaa4a8c-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.cl.tavg-al-hxy-u.mon.30S-90S": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "cloud_area_fraction_in_atmosphere_layer", + "units": "%", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Percentage Cloud Cover", + "comment": "Includes both large-scale and convective cloud.", + "dimensions": "longitude latitude alevel time", + "out_name": "cl", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-intv", + "cmip6_table": "Amon", + "physical_parameter_name": "cl", + "variableRootDD": "cl", + "branding_label": "tavg-al-hxy-u", + "branded_variable_name": "cl_tavg-al-hxy-u", + "region": "30S-90S", + "cmip6_compound_name": "Amon.clSouth30", + "cmip7_compound_name": "atmos.cl.tavg-al-hxy-u.mon.30S-90S", + "uid": "80ac316a-a698-11ef-914a-613c0433d878" + }, + "atmos.cl.tavg-al-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "cloud_area_fraction_in_atmosphere_layer", + "units": "%", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Percentage Cloud Cover", + "comment": "Includes both large-scale and convective cloud.", + "dimensions": "longitude latitude alevel time", + "out_name": "cl", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-intv", + "cmip6_table": "Amon", + "physical_parameter_name": "cl", + "variableRootDD": "cl", + "branding_label": "tavg-al-hxy-u", + "branded_variable_name": "cl_tavg-al-hxy-u", + "region": "GLB", + "cmip6_compound_name": "Amon.cl", + "cmip7_compound_name": "atmos.cl.tavg-al-hxy-u.mon.GLB", + "uid": "baaa4302-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.cl.tpt-al-hs-u.subhr.GLB": { + "frequency": "subhr", + "modeling_realm": "atmos", + "standard_name": "cloud_area_fraction_in_atmosphere_layer", + "units": "%", + "cell_methods": "area: point time: point", + "cell_measures": "", + "long_name": "Percentage Cloud Cover", + "comment": "Includes both large-scale and convective cloud.", + "dimensions": "alevel site time1", + "out_name": "cl", + "type": "real", + "positive": "", + "spatial_shape": "S-A", + "temporal_shape": "time-point", + "cmip6_table": "CFsubhr", + "physical_parameter_name": "cl", + "variableRootDD": "cl", + "branding_label": "tpt-al-hs-u", + "branded_variable_name": "cl_tpt-al-hs-u", + "region": "GLB", + "cmip6_compound_name": "CFsubhr.cl", + "cmip7_compound_name": "atmos.cl.tpt-al-hs-u.subhr.GLB", + "uid": "a95468ae-817c-11e6-a4e2-5404a60d96b5" + }, + "atmos.clc.tavg-al-hxy-u.mon.30S-90S": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "convective_cloud_area_fraction_in_atmosphere_layer", + "units": "%", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Convective Cloud Area Percentage", + "comment": "Include only convective cloud.", + "dimensions": "longitude latitude alevel time", + "out_name": "clc", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-intv", + "cmip6_table": "CFmon", + "physical_parameter_name": "clc", + "variableRootDD": "clc", + "branding_label": "tavg-al-hxy-u", + "branded_variable_name": "clc_tavg-al-hxy-u", + "region": "30S-90S", + "cmip6_compound_name": "CFmon.clcSouth30", + "cmip7_compound_name": "atmos.clc.tavg-al-hxy-u.mon.30S-90S", + "uid": "80ac316b-a698-11ef-914a-613c0433d878" + }, + "atmos.clc.tavg-al-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "convective_cloud_area_fraction_in_atmosphere_layer", + "units": "%", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Convective Cloud Area Percentage", + "comment": "Include only convective cloud.", + "dimensions": "longitude latitude alevel time", + "out_name": "clc", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-intv", + "cmip6_table": "CFmon", + "physical_parameter_name": "clc", + "variableRootDD": "clc", + "branding_label": "tavg-al-hxy-u", + "branded_variable_name": "clc_tavg-al-hxy-u", + "region": "GLB", + "cmip6_compound_name": "CFmon.clc", + "cmip7_compound_name": "atmos.clc.tavg-al-hxy-u.mon.GLB", + "uid": "baaa557c-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.clcalipso.tavg-220hPa-hxy-air.day.GLB": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "cloud_area_fraction_in_atmosphere_layer", + "units": "%", + "cell_methods": "area: time: mean where air", + "cell_measures": "area: areacella", + "long_name": "CALIPSO High Level Cloud Area Percentage", + "comment": "Percentage cloud cover in layer centred on 220hPa", + "dimensions": "longitude latitude time p220", + "out_name": "clhcalipso", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "CFday", + "physical_parameter_name": "clhcalipso", + "variableRootDD": "clcalipso", + "branding_label": "tavg-220hPa-hxy-air", + "branded_variable_name": "clcalipso_tavg-220hPa-hxy-air", + "region": "GLB", + "cmip6_compound_name": "CFday.clhcalipso", + "cmip7_compound_name": "atmos.clcalipso.tavg-220hPa-hxy-air.day.GLB", + "uid": "baaa766a-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.clcalipso.tavg-220hPa-hxy-air.mon.30S-90S": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "cloud_area_fraction_in_atmosphere_layer", + "units": "%", + "cell_methods": "area: time: mean where air", + "cell_measures": "area: areacella", + "long_name": "CALIPSO High Level Cloud Area Percentage", + "comment": "Percentage cloud cover in layer centred on 220hPa", + "dimensions": "longitude latitude time p220", + "out_name": "clhcalipso", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "CFmon", + "physical_parameter_name": "clhcalipso", + "variableRootDD": "clcalipso", + "branding_label": "tavg-220hPa-hxy-air", + "branded_variable_name": "clcalipso_tavg-220hPa-hxy-air", + "region": "30S-90S", + "cmip6_compound_name": "CFmon.clhcalipsoSouth30", + "cmip7_compound_name": "atmos.clcalipso.tavg-220hPa-hxy-air.mon.30S-90S", + "uid": "80ac316d-a698-11ef-914a-613c0433d878" + }, + "atmos.clcalipso.tavg-220hPa-hxy-air.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "cloud_area_fraction_in_atmosphere_layer", + "units": "%", + "cell_methods": "area: time: mean where air", + "cell_measures": "area: areacella", + "long_name": "CALIPSO High Level Cloud Area Percentage", + "comment": "Percentage cloud cover in layer centred on 220hPa", + "dimensions": "longitude latitude time p220", + "out_name": "clhcalipso", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "CFmon", + "physical_parameter_name": "clhcalipso", + "variableRootDD": "clcalipso", + "branding_label": "tavg-220hPa-hxy-air", + "branded_variable_name": "clcalipso_tavg-220hPa-hxy-air", + "region": "GLB", + "cmip6_compound_name": "CFmon.clhcalipso", + "cmip7_compound_name": "atmos.clcalipso.tavg-220hPa-hxy-air.mon.GLB", + "uid": "baaa7818-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.clcalipso.tavg-560hPa-hxy-air.day.GLB": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "cloud_area_fraction_in_atmosphere_layer", + "units": "%", + "cell_methods": "area: time: mean where air", + "cell_measures": "area: areacella", + "long_name": "CALIPSO Mid Level Cloud Cover Percentage", + "comment": "Percentage cloud cover in layer centred on 560hPa", + "dimensions": "longitude latitude time p560", + "out_name": "clmcalipso", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "CFday", + "physical_parameter_name": "clmcalipso", + "variableRootDD": "clcalipso", + "branding_label": "tavg-560hPa-hxy-air", + "branded_variable_name": "clcalipso_tavg-560hPa-hxy-air", + "region": "GLB", + "cmip6_compound_name": "CFday.clmcalipso", + "cmip7_compound_name": "atmos.clcalipso.tavg-560hPa-hxy-air.day.GLB", + "uid": "baaabf08-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.clcalipso.tavg-560hPa-hxy-air.mon.30S-90S": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "cloud_area_fraction_in_atmosphere_layer", + "units": "%", + "cell_methods": "area: time: mean where air", + "cell_measures": "area: areacella", + "long_name": "CALIPSO Mid Level Cloud Cover Percentage", + "comment": "Percentage cloud cover in layer centred on 560hPa", + "dimensions": "longitude latitude time p560", + "out_name": "clmcalipso", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "CFmon", + "physical_parameter_name": "clmcalipso", + "variableRootDD": "clcalipso", + "branding_label": "tavg-560hPa-hxy-air", + "branded_variable_name": "clcalipso_tavg-560hPa-hxy-air", + "region": "30S-90S", + "cmip6_compound_name": "CFmon.clmcalipsoSouth30", + "cmip7_compound_name": "atmos.clcalipso.tavg-560hPa-hxy-air.mon.30S-90S", + "uid": "80ac3175-a698-11ef-914a-613c0433d878" + }, + "atmos.clcalipso.tavg-560hPa-hxy-air.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "cloud_area_fraction_in_atmosphere_layer", + "units": "%", + "cell_methods": "area: time: mean where air", + "cell_measures": "area: areacella", + "long_name": "CALIPSO Mid Level Cloud Cover Percentage", + "comment": "Percentage cloud cover in layer centred on 560hPa", + "dimensions": "longitude latitude time p560", + "out_name": "clmcalipso", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "CFmon", + "physical_parameter_name": "clmcalipso", + "variableRootDD": "clcalipso", + "branding_label": "tavg-560hPa-hxy-air", + "branded_variable_name": "clcalipso_tavg-560hPa-hxy-air", + "region": "GLB", + "cmip6_compound_name": "CFmon.clmcalipso", + "cmip7_compound_name": "atmos.clcalipso.tavg-560hPa-hxy-air.mon.GLB", + "uid": "baaac0de-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.clcalipso.tavg-840hPa-hxy-air.day.GLB": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "cloud_area_fraction_in_atmosphere_layer", + "units": "%", + "cell_methods": "area: time: mean where air", + "cell_measures": "area: areacella", + "long_name": "CALIPSO Low Level Cloud Cover Percentage", + "comment": "Percentage cloud cover in layer centred on 840hPa", + "dimensions": "longitude latitude time p840", + "out_name": "cllcalipso", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "CFday", + "physical_parameter_name": "cllcalipso", + "variableRootDD": "clcalipso", + "branding_label": "tavg-840hPa-hxy-air", + "branded_variable_name": "clcalipso_tavg-840hPa-hxy-air", + "region": "GLB", + "cmip6_compound_name": "CFday.cllcalipso", + "cmip7_compound_name": "atmos.clcalipso.tavg-840hPa-hxy-air.day.GLB", + "uid": "baaab2e2-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.clcalipso.tavg-840hPa-hxy-air.mon.30S-90S": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "cloud_area_fraction_in_atmosphere_layer", + "units": "%", + "cell_methods": "area: time: mean where air", + "cell_measures": "area: areacella", + "long_name": "CALIPSO Low Level Cloud Cover Percentage", + "comment": "Percentage cloud cover in layer centred on 840hPa", + "dimensions": "longitude latitude time p840", + "out_name": "cllcalipso", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "CFmon", + "physical_parameter_name": "cllcalipso", + "variableRootDD": "clcalipso", + "branding_label": "tavg-840hPa-hxy-air", + "branded_variable_name": "clcalipso_tavg-840hPa-hxy-air", + "region": "30S-90S", + "cmip6_compound_name": "CFmon.cllcalipsoSouth30", + "cmip7_compound_name": "atmos.clcalipso.tavg-840hPa-hxy-air.mon.30S-90S", + "uid": "80ac3174-a698-11ef-914a-613c0433d878" + }, + "atmos.clcalipso.tavg-840hPa-hxy-air.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "cloud_area_fraction_in_atmosphere_layer", + "units": "%", + "cell_methods": "area: time: mean where air", + "cell_measures": "area: areacella", + "long_name": "CALIPSO Low Level Cloud Cover Percentage", + "comment": "Percentage cloud cover in layer centred on 840hPa", + "dimensions": "longitude latitude time p840", + "out_name": "cllcalipso", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "CFmon", + "physical_parameter_name": "cllcalipso", + "variableRootDD": "clcalipso", + "branding_label": "tavg-840hPa-hxy-air", + "branded_variable_name": "clcalipso_tavg-840hPa-hxy-air", + "region": "GLB", + "cmip6_compound_name": "CFmon.cllcalipso", + "cmip7_compound_name": "atmos.clcalipso.tavg-840hPa-hxy-air.mon.GLB", + "uid": "baaab4b8-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.clcalipso.tavg-h40-hxy-air.day.GLB": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "cloud_area_fraction_in_atmosphere_layer", + "units": "%", + "cell_methods": "area: time: mean where air", + "cell_measures": "area: areacella", + "long_name": "CALIPSO Percentage Cloud Cover", + "comment": "Percentage cloud cover in CALIPSO standard atmospheric layers.", + "dimensions": "longitude latitude alt40 time", + "out_name": "clcalipso", + "type": "real", + "positive": "", + "spatial_shape": "XY-H40", + "temporal_shape": "time-intv", + "cmip6_table": "CFday", + "physical_parameter_name": "clcalipso", + "variableRootDD": "clcalipso", + "branding_label": "tavg-h40-hxy-air", + "branded_variable_name": "clcalipso_tavg-h40-hxy-air", + "region": "GLB", + "cmip6_compound_name": "CFday.clcalipso", + "cmip7_compound_name": "atmos.clcalipso.tavg-h40-hxy-air.day.GLB", + "uid": "baaa5bee-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.clcalipso.tavg-h40-hxy-air.mon.30S-90S": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "cloud_area_fraction_in_atmosphere_layer", + "units": "%", + "cell_methods": "area: time: mean where air", + "cell_measures": "area: areacella", + "long_name": "CALIPSO Percentage Cloud Cover", + "comment": "Percentage cloud cover in CALIPSO standard atmospheric layers.", + "dimensions": "longitude latitude alt40 time", + "out_name": "clcalipso", + "type": "real", + "positive": "", + "spatial_shape": "XY-H40", + "temporal_shape": "time-intv", + "cmip6_table": "CFmon", + "physical_parameter_name": "clcalipso", + "variableRootDD": "clcalipso", + "branding_label": "tavg-h40-hxy-air", + "branded_variable_name": "clcalipso_tavg-h40-hxy-air", + "region": "30S-90S", + "cmip6_compound_name": "CFmon.clcalipsoSouth30", + "cmip7_compound_name": "atmos.clcalipso.tavg-h40-hxy-air.mon.30S-90S", + "uid": "80ac316c-a698-11ef-914a-613c0433d878" + }, + "atmos.clcalipso.tavg-h40-hxy-air.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "cloud_area_fraction_in_atmosphere_layer", + "units": "%", + "cell_methods": "area: time: mean where air", + "cell_measures": "area: areacella", + "long_name": "CALIPSO Percentage Cloud Cover", + "comment": "Percentage cloud cover in CALIPSO standard atmospheric layers.", + "dimensions": "longitude latitude alt40 time", + "out_name": "clcalipso", + "type": "real", + "positive": "", + "spatial_shape": "XY-H40", + "temporal_shape": "time-intv", + "cmip6_table": "CFmon", + "physical_parameter_name": "clcalipso", + "variableRootDD": "clcalipso", + "branding_label": "tavg-h40-hxy-air", + "branded_variable_name": "clcalipso_tavg-h40-hxy-air", + "region": "GLB", + "cmip6_compound_name": "CFmon.clcalipso", + "cmip7_compound_name": "atmos.clcalipso.tavg-h40-hxy-air.mon.GLB", + "uid": "baaa5db0-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.clcalipsoice.tavg-h40-hxy-air.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "ice_cloud_area_fraction_in_atmosphere_layer", + "units": "%", + "cell_methods": "area: time: mean where air", + "cell_measures": "area: areacella", + "long_name": "CALIPSO Ice Cloud Percentage", + "comment": "CALIPSO Ice Cloud Fraction", + "dimensions": "longitude latitude alt40 time", + "out_name": "clcalipsoice", + "type": "real", + "positive": "", + "spatial_shape": "XY-H40", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "clcalipsoice", + "variableRootDD": "clcalipsoice", + "branding_label": "tavg-h40-hxy-air", + "branded_variable_name": "clcalipsoice_tavg-h40-hxy-air", + "region": "GLB", + "cmip6_compound_name": "Emon.clcalipsoice", + "cmip7_compound_name": "atmos.clcalipsoice.tavg-h40-hxy-air.mon.GLB", + "uid": "b7c6dbe6-7c00-11e6-bcdf-ac72891c3257" + }, + "atmos.clcalipsoliq.tavg-h40-hxy-air.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "liquid_water_cloud_area_fraction_in_atmosphere_layer", + "units": "%", + "cell_methods": "area: time: mean where air", + "cell_measures": "area: areacella", + "long_name": "CALIPSO Liquid Cloud Percentage", + "comment": "CALIPSO Liquid Cloud Fraction", + "dimensions": "longitude latitude alt40 time", + "out_name": "clcalipsoliq", + "type": "real", + "positive": "", + "spatial_shape": "XY-H40", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "clcalipsoliq", + "variableRootDD": "clcalipsoliq", + "branding_label": "tavg-h40-hxy-air", + "branded_variable_name": "clcalipsoliq_tavg-h40-hxy-air", + "region": "GLB", + "cmip6_compound_name": "Emon.clcalipsoliq", + "cmip7_compound_name": "atmos.clcalipsoliq.tavg-h40-hxy-air.mon.GLB", + "uid": "8b8a7686-4a5b-11e6-9cd2-ac72891c3257" + }, + "atmos.cldnci.tavg-u-hxy-cl.day.GLB": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "number_concentration_of_ice_crystals_in_air_at_ice_cloud_top", + "units": "m-3", + "cell_methods": "area: time: mean where cloud (mean over the portion of the cell containing ice topped cloud, as seen from top of atmosphere)", + "cell_measures": "area: areacella", + "long_name": "Ice Crystal Number Concentration of Cloud Tops", + "comment": "Concentration 'as seen from space' over ice-cloud portion of grid cell. This is the value from uppermost model layer with ice cloud or, if available, it is the sum over all ice cloud tops, no matter where they occur, as long as they are seen from the top of the atmosphere. Weight by total ice cloud top fraction (as seen from TOA) of each time sample when computing monthly mean.", + "dimensions": "longitude latitude time", + "out_name": "cldnci", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Eday", + "physical_parameter_name": "cldnci", + "variableRootDD": "cldnci", + "branding_label": "tavg-u-hxy-cl", + "branded_variable_name": "cldnci_tavg-u-hxy-cl", + "region": "GLB", + "cmip6_compound_name": "Eday.cldnci", + "cmip7_compound_name": "atmos.cldnci.tavg-u-hxy-cl.day.GLB", + "uid": "7d8c38bc-1ab7-11e7-8dfc-5404a60d96b5" + }, + "atmos.cldnci.tavg-u-hxy-cl.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "number_concentration_of_ice_crystals_in_air_at_ice_cloud_top", + "units": "m-3", + "cell_methods": "area: time: mean where cloud (mean over the portion of the cell containing ice topped cloud, as seen from top of atmosphere)", + "cell_measures": "area: areacella", + "long_name": "Ice Crystal Number Concentration of Cloud Tops", + "comment": "Concentration 'as seen from space' over ice-cloud portion of grid cell. This is the value from uppermost model layer with ice cloud or, if available, it is the sum over all ice cloud tops, no matter where they occur, as long as they are seen from the top of the atmosphere. Weight by total ice cloud top fraction (as seen from TOA) of each time sample when computing monthly mean.", + "dimensions": "longitude latitude time", + "out_name": "cldnci", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "cldnci", + "variableRootDD": "cldnci", + "branding_label": "tavg-u-hxy-cl", + "branded_variable_name": "cldnci_tavg-u-hxy-cl", + "region": "GLB", + "cmip6_compound_name": "Emon.cldnci", + "cmip7_compound_name": "atmos.cldnci.tavg-u-hxy-cl.mon.GLB", + "uid": "6f36e864-9acb-11e6-b7ee-ac72891c3257" + }, + "atmos.cldncl.tavg-u-hxy-cl.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "number_concentration_of_cloud_liquid_water_particles_in_air_at_liquid_water_cloud_top", + "units": "m-3", + "cell_methods": "area: time: mean where cloud (mean over the portion of the cell containing liquid topped cloud, as seen from top of atmosphere)", + "cell_measures": "area: areacella", + "long_name": "Cloud Droplet Number Concentration of Cloud Tops", + "comment": "Droplets are liquid only. Report concentration 'as seen from space' over liquid cloudy portion of grid cell. This is the value from uppermost model layer with liquid cloud or, if available, it is better to sum over all liquid cloud tops, no matter where they occur, as long as they are seen from the top of the atmosphere. Weight by total liquid cloud top fraction of (as seen from TOA) each time sample when computing monthly mean.", + "dimensions": "longitude latitude time", + "out_name": "cldncl", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "cldncl", + "variableRootDD": "cldncl", + "branding_label": "tavg-u-hxy-cl", + "branded_variable_name": "cldncl_tavg-u-hxy-cl", + "region": "GLB", + "cmip6_compound_name": "Emon.cldncl", + "cmip7_compound_name": "atmos.cldncl.tavg-u-hxy-cl.mon.GLB", + "uid": "6f36f584-9acb-11e6-b7ee-ac72891c3257" + }, + "atmos.cldnvi.tavg-u-hxy-u.day.GLB": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "atmosphere_number_content_of_cloud_droplets", + "units": "m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Column Integrated Cloud Droplet Number", + "comment": "Droplets are liquid only. Values are weighted by liquid cloud fraction in each layer when vertically integrating, and for monthly means the samples are weighted by total liquid cloud fraction (as seen from TOA).", + "dimensions": "longitude latitude time", + "out_name": "cldnvi", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Eday", + "physical_parameter_name": "cldnvi", + "variableRootDD": "cldnvi", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "cldnvi_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "Eday.cldnvi", + "cmip7_compound_name": "atmos.cldnvi.tavg-u-hxy-u.day.GLB", + "uid": "7d8c7188-1ab7-11e7-8dfc-5404a60d96b5" + }, + "atmos.cldnvi.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "atmosphere_number_content_of_cloud_droplets", + "units": "m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Column Integrated Cloud Droplet Number", + "comment": "Droplets are liquid only. Values are weighted by liquid cloud fraction in each layer when vertically integrating, and for monthly means the samples are weighted by total liquid cloud fraction (as seen from TOA).", + "dimensions": "longitude latitude time", + "out_name": "cldnvi", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "cldnvi", + "variableRootDD": "cldnvi", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "cldnvi_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "Emon.cldnvi", + "cmip7_compound_name": "atmos.cldnvi.tavg-u-hxy-u.mon.GLB", + "uid": "6f37036c-9acb-11e6-b7ee-ac72891c3257" + }, + "atmos.cli.tavg-al-hxy-u.day.GLB": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "mass_fraction_of_cloud_ice_in_air", + "units": "kg kg-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Mass Fraction of Cloud Ice", + "comment": "Calculated as the mass of cloud ice in the grid cell divided by the mass of air (including the water in all phases) in the grid cell. This includes precipitating hydrometeors ONLY if the precipitating hydrometeors affect the calculation of radiative transfer in model.", + "dimensions": "longitude latitude alevel time", + "out_name": "cli", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-intv", + "cmip6_table": "CFday", + "physical_parameter_name": "cli", + "variableRootDD": "cli", + "branding_label": "tavg-al-hxy-u", + "branded_variable_name": "cli_tavg-al-hxy-u", + "region": "GLB", + "cmip6_compound_name": "CFday.cli", + "cmip7_compound_name": "atmos.cli.tavg-al-hxy-u.day.GLB", + "uid": "baaa7c28-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.cli.tavg-al-hxy-u.mon.30S-90S": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "mass_fraction_of_cloud_ice_in_air", + "units": "kg kg-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Mass Fraction of Cloud Ice", + "comment": "Includes both large-scale and convective cloud. This is calculated as the mass of cloud ice in the grid cell divided by the mass of air (including the water in all phases) in the grid cell. It includes precipitating hydrometeors ONLY if the precipitating hydrometeors affect the calculation of radiative transfer in model.", + "dimensions": "longitude latitude alevel time", + "out_name": "cli", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-intv", + "cmip6_table": "Amon", + "physical_parameter_name": "cli", + "variableRootDD": "cli", + "branding_label": "tavg-al-hxy-u", + "branded_variable_name": "cli_tavg-al-hxy-u", + "region": "30S-90S", + "cmip6_compound_name": "Amon.cliSouth30", + "cmip7_compound_name": "atmos.cli.tavg-al-hxy-u.mon.30S-90S", + "uid": "80ac316e-a698-11ef-914a-613c0433d878" + }, + "atmos.cli.tavg-al-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "mass_fraction_of_cloud_ice_in_air", + "units": "kg kg-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Mass Fraction of Cloud Ice", + "comment": "Includes both large-scale and convective cloud. This is calculated as the mass of cloud ice in the grid cell divided by the mass of air (including the water in all phases) in the grid cell. It includes precipitating hydrometeors ONLY if the precipitating hydrometeors affect the calculation of radiative transfer in model.", + "dimensions": "longitude latitude alevel time", + "out_name": "cli", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-intv", + "cmip6_table": "Amon", + "physical_parameter_name": "cli", + "variableRootDD": "cli", + "branding_label": "tavg-al-hxy-u", + "branded_variable_name": "cli_tavg-al-hxy-u", + "region": "GLB", + "cmip6_compound_name": "Amon.cli", + "cmip7_compound_name": "atmos.cli.tavg-al-hxy-u.mon.GLB", + "uid": "baaa8326-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.cli.tpt-al-hs-u.subhr.GLB": { + "frequency": "subhr", + "modeling_realm": "atmos", + "standard_name": "mass_fraction_of_cloud_ice_in_air", + "units": "kg kg-1", + "cell_methods": "area: point time: point", + "cell_measures": "", + "long_name": "Mass Fraction of Cloud Ice", + "comment": "Includes both large-scale and convective cloud. This is the mass of cloud ice in the grid cell divided by the mass of air (including the water in all phases) in the grid cell. This includes precipitating hydrometeors ONLY if the precipitating hydrometeors affect the calculation of radiative transfer in model.", + "dimensions": "alevel site time1", + "out_name": "cli", + "type": "real", + "positive": "", + "spatial_shape": "S-A", + "temporal_shape": "time-point", + "cmip6_table": "CFsubhr", + "physical_parameter_name": "cli", + "variableRootDD": "cli", + "branding_label": "tpt-al-hs-u", + "branded_variable_name": "cli_tpt-al-hs-u", + "region": "GLB", + "cmip6_compound_name": "CFsubhr.cli", + "cmip7_compound_name": "atmos.cli.tpt-al-hs-u.subhr.GLB", + "uid": "a954830c-817c-11e6-a4e2-5404a60d96b5" + }, + "atmos.clic.tavg-al-hxy-u.mon.30S-90S": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "mass_fraction_of_convective_cloud_ice_in_air", + "units": "1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Mass Fraction of Convective Cloud Ice", + "comment": "Calculated as the mass of convective cloud ice in the grid cell divided by the mass of air (including the water in all phases) in the grid cell. This includes precipitating hydrometeors ONLY if the precipitating hydrometeors affect the calculation of radiative transfer in model.", + "dimensions": "longitude latitude alevel time", + "out_name": "clic", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-intv", + "cmip6_table": "CFmon", + "physical_parameter_name": "clic", + "variableRootDD": "clic", + "branding_label": "tavg-al-hxy-u", + "branded_variable_name": "clic_tavg-al-hxy-u", + "region": "30S-90S", + "cmip6_compound_name": "CFmon.clicSouth30", + "cmip7_compound_name": "atmos.clic.tavg-al-hxy-u.mon.30S-90S", + "uid": "80ac316f-a698-11ef-914a-613c0433d878" + }, + "atmos.clic.tavg-al-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "mass_fraction_of_convective_cloud_ice_in_air", + "units": "1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Mass Fraction of Convective Cloud Ice", + "comment": "Calculated as the mass of convective cloud ice in the grid cell divided by the mass of air (including the water in all phases) in the grid cell. This includes precipitating hydrometeors ONLY if the precipitating hydrometeors affect the calculation of radiative transfer in model.", + "dimensions": "longitude latitude alevel time", + "out_name": "clic", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-intv", + "cmip6_table": "CFmon", + "physical_parameter_name": "clic", + "variableRootDD": "clic", + "branding_label": "tavg-al-hxy-u", + "branded_variable_name": "clic_tavg-al-hxy-u", + "region": "GLB", + "cmip6_compound_name": "CFmon.clic", + "cmip7_compound_name": "atmos.clic.tavg-al-hxy-u.mon.GLB", + "uid": "baaa8aa6-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.clic.tpt-al-hxy-u.3hr.GLB": { + "frequency": "3hr", + "modeling_realm": "atmos", + "standard_name": "mass_fraction_of_convective_cloud_ice_in_air", + "units": "1", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Mass Fraction of Convective Cloud Ice", + "comment": "Calculated as the mass of convective cloud ice in the grid cell divided by the mass of air (including the water in all phases) in the grid cell. This includes precipitating hydrometeors ONLY if the precipitating hydrometeors affect the calculation of radiative transfer in model.", + "dimensions": "longitude latitude alevel time1", + "out_name": "clic", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-point", + "cmip6_table": "CF3hr", + "physical_parameter_name": "clic", + "variableRootDD": "clic", + "branding_label": "tpt-al-hxy-u", + "branded_variable_name": "clic_tpt-al-hxy-u", + "region": "GLB", + "cmip6_compound_name": "CF3hr.clic", + "cmip7_compound_name": "atmos.clic.tpt-al-hxy-u.3hr.GLB", + "uid": "baaa88d0-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.climodis.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "modis_ice_topped_cloud_area_fraction", + "units": "%", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "MODIS Ice Cloud Area Percentage", + "comment": "MODIS Ice Cloud Fraction", + "dimensions": "longitude latitude time", + "out_name": "climodis", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "climodis", + "variableRootDD": "climodis", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "climodis_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "Emon.climodis", + "cmip7_compound_name": "atmos.climodis.tavg-u-hxy-u.mon.GLB", + "uid": "8b8a6c2c-4a5b-11e6-9cd2-ac72891c3257" + }, + "atmos.clis.tavg-al-hxy-u.mon.30S-90S": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "mass_fraction_of_stratiform_cloud_ice_in_air", + "units": "1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Mass Fraction of Stratiform Cloud Ice", + "comment": "Calculated as the mass of stratiform cloud ice in the grid cell divided by the mass of air (including the water in all phases) in the grid cell. This includes precipitating hydrometeors ONLY if the precipitating hydrometeors affect the calculation of radiative transfer in model.", + "dimensions": "longitude latitude alevel time", + "out_name": "clis", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-intv", + "cmip6_table": "CFmon", + "physical_parameter_name": "clis", + "variableRootDD": "clis", + "branding_label": "tavg-al-hxy-u", + "branded_variable_name": "clis_tavg-al-hxy-u", + "region": "30S-90S", + "cmip6_compound_name": "CFmon.clisSouth30", + "cmip7_compound_name": "atmos.clis.tavg-al-hxy-u.mon.30S-90S", + "uid": "80ac3170-a698-11ef-914a-613c0433d878" + }, + "atmos.clis.tavg-al-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "mass_fraction_of_stratiform_cloud_ice_in_air", + "units": "1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Mass Fraction of Stratiform Cloud Ice", + "comment": "Calculated as the mass of stratiform cloud ice in the grid cell divided by the mass of air (including the water in all phases) in the grid cell. This includes precipitating hydrometeors ONLY if the precipitating hydrometeors affect the calculation of radiative transfer in model.", + "dimensions": "longitude latitude alevel time", + "out_name": "clis", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-intv", + "cmip6_table": "CFmon", + "physical_parameter_name": "clis", + "variableRootDD": "clis", + "branding_label": "tavg-al-hxy-u", + "branded_variable_name": "clis_tavg-al-hxy-u", + "region": "GLB", + "cmip6_compound_name": "CFmon.clis", + "cmip7_compound_name": "atmos.clis.tavg-al-hxy-u.mon.GLB", + "uid": "baaa8cd6-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.clis.tpt-al-hxy-u.3hr.GLB": { + "frequency": "3hr", + "modeling_realm": "atmos", + "standard_name": "mass_fraction_of_stratiform_cloud_ice_in_air", + "units": "1", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Mass Fraction of Stratiform Cloud Ice", + "comment": "Calculate as the mass of stratiform cloud ice in the grid cell divided by the mass of air (including the water in all phases) in the grid cell. Include precipitating hydrometeors ONLY if the precipitating hydrometeor affects the calculation of radiative transfer in model.", + "dimensions": "longitude latitude alevel time1", + "out_name": "clis", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-point", + "cmip6_table": "CF3hr", + "physical_parameter_name": "clis", + "variableRootDD": "clis", + "branding_label": "tpt-al-hxy-u", + "branded_variable_name": "clis_tpt-al-hxy-u", + "region": "GLB", + "cmip6_compound_name": "CF3hr.clis", + "cmip7_compound_name": "atmos.clis.tpt-al-hxy-u.3hr.GLB", + "uid": "baaa8f4c-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.clisccp.tavg-p7c-hxy-air.day.GLB": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "isccp_cloud_area_fraction", + "units": "%", + "cell_methods": "area: time: mean where air", + "cell_measures": "area: areacella", + "long_name": "ISCCP Cloud Area Percentage", + "comment": "Percentage cloud cover in optical depth categories.", + "dimensions": "longitude latitude plev7c tau time", + "out_name": "clisccp", + "type": "real", + "positive": "", + "spatial_shape": "XY-P7", + "temporal_shape": "time-intv", + "cmip6_table": "CFday", + "physical_parameter_name": "clisccp", + "variableRootDD": "clisccp", + "branding_label": "tavg-p7c-hxy-air", + "branded_variable_name": "clisccp_tavg-p7c-hxy-air", + "region": "GLB", + "cmip6_compound_name": "CFday.clisccp", + "cmip7_compound_name": "atmos.clisccp.tavg-p7c-hxy-air.day.GLB", + "uid": "2ab66434-c07e-11e6-8775-5404a60d96b5" + }, + "atmos.clisccp.tavg-p7c-hxy-air.mon.30S-90S": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "isccp_cloud_area_fraction", + "units": "%", + "cell_methods": "area: time: mean where air", + "cell_measures": "area: areacella", + "long_name": "ISCCP Cloud Area Percentage", + "comment": "Percentage cloud cover in optical depth categories.", + "dimensions": "longitude latitude plev7c tau time", + "out_name": "clisccp", + "type": "real", + "positive": "", + "spatial_shape": "XY-P7", + "temporal_shape": "time-intv", + "cmip6_table": "CFmon", + "physical_parameter_name": "clisccp", + "variableRootDD": "clisccp", + "branding_label": "tavg-p7c-hxy-air", + "branded_variable_name": "clisccp_tavg-p7c-hxy-air", + "region": "30S-90S", + "cmip6_compound_name": "CFmon.clisccpSouth30", + "cmip7_compound_name": "atmos.clisccp.tavg-p7c-hxy-air.mon.30S-90S", + "uid": "80ac3171-a698-11ef-914a-613c0433d878" + }, + "atmos.clisccp.tavg-p7c-hxy-air.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "isccp_cloud_area_fraction", + "units": "%", + "cell_methods": "area: time: mean where air", + "cell_measures": "area: areacella", + "long_name": "ISCCP Cloud Area Percentage", + "comment": "Percentage cloud cover in optical depth categories.", + "dimensions": "longitude latitude plev7c tau time", + "out_name": "clisccp", + "type": "real", + "positive": "", + "spatial_shape": "XY-P7", + "temporal_shape": "time-intv", + "cmip6_table": "CFmon", + "physical_parameter_name": "clisccp", + "variableRootDD": "clisccp", + "branding_label": "tavg-p7c-hxy-air", + "branded_variable_name": "clisccp_tavg-p7c-hxy-air", + "region": "GLB", + "cmip6_compound_name": "CFmon.clisccp", + "cmip7_compound_name": "atmos.clisccp.tavg-p7c-hxy-air.mon.GLB", + "uid": "2ab325ee-c07e-11e6-8775-5404a60d96b5" + }, + "atmos.clivi.tavg-u-hxy-u.3hr.GLB": { + "frequency": "3hr", + "modeling_realm": "atmos", + "standard_name": "atmosphere_mass_content_of_cloud_ice", + "units": "kg m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Ice Water Path", + "comment": "Ice water path", + "dimensions": "longitude latitude time", + "out_name": "clivi", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "E3hr", + "physical_parameter_name": "clivi", + "variableRootDD": "clivi", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "clivi_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "E3hr.clivi", + "cmip7_compound_name": "atmos.clivi.tavg-u-hxy-u.3hr.GLB", + "uid": "8bb0ccd2-4a5b-11e6-9cd2-ac72891c3257" + }, + "atmos.clivi.tavg-u-hxy-u.day.GLB": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "atmosphere_mass_content_of_cloud_ice", + "units": "kg m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Ice Water Path", + "comment": "calculate mass of ice water in the column divided by the area of the column (not just the area of the cloudy portion of the column). This includes precipitating frozen hydrometeors ONLY if the precipitating hydrometeors affect the calculation of radiative transfer in model.", + "dimensions": "longitude latitude time", + "out_name": "clivi", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "CFday", + "physical_parameter_name": "clivi", + "variableRootDD": "clivi", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "clivi_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "CFday.clivi", + "cmip7_compound_name": "atmos.clivi.tavg-u-hxy-u.day.GLB", + "uid": "baaa9cc6-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.clivi.tavg-u-hxy-u.mon.30S-90S": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "atmosphere_mass_content_of_cloud_ice", + "units": "kg m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Ice Water Path", + "comment": "mass of ice water in the column divided by the area of the column (not just the area of the cloudy portion of the column). Includes precipitating frozen hydrometeors ONLY if the precipitating hydrometeor affects the calculation of radiative transfer in model.", + "dimensions": "longitude latitude time", + "out_name": "clivi", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Amon", + "physical_parameter_name": "clivi", + "variableRootDD": "clivi", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "clivi_tavg-u-hxy-u", + "region": "30S-90S", + "cmip6_compound_name": "Amon.cliviSouth30", + "cmip7_compound_name": "atmos.clivi.tavg-u-hxy-u.mon.30S-90S", + "uid": "80ac3172-a698-11ef-914a-613c0433d878" + }, + "atmos.clivi.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "atmosphere_mass_content_of_cloud_ice", + "units": "kg m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Ice Water Path", + "comment": "mass of ice water in the column divided by the area of the column (not just the area of the cloudy portion of the column). Includes precipitating frozen hydrometeors ONLY if the precipitating hydrometeor affects the calculation of radiative transfer in model.", + "dimensions": "longitude latitude time", + "out_name": "clivi", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Amon", + "physical_parameter_name": "clivi", + "variableRootDD": "clivi", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "clivi_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "Amon.clivi", + "cmip7_compound_name": "atmos.clivi.tavg-u-hxy-u.mon.GLB", + "uid": "baaa9852-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.clivi.tpt-u-hs-u.subhr.GLB": { + "frequency": "subhr", + "modeling_realm": "atmos", + "standard_name": "atmosphere_mass_content_of_cloud_ice", + "units": "kg m-2", + "cell_methods": "area: point time: point", + "cell_measures": "", + "long_name": "Ice Water Path", + "comment": "mass of ice water in the column divided by the area of the column (not just the area of the cloudy portion of the column). Includes precipitating frozen hydrometeors ONLY if the precipitating hydrometeor affects the calculation of radiative transfer in model.", + "dimensions": "site time1", + "out_name": "clivi", + "type": "real", + "positive": "", + "spatial_shape": "S-na", + "temporal_shape": "time-point", + "cmip6_table": "CFsubhr", + "physical_parameter_name": "clivi", + "variableRootDD": "clivi", + "branding_label": "tpt-u-hs-u", + "branded_variable_name": "clivi_tpt-u-hs-u", + "region": "GLB", + "cmip6_compound_name": "CFsubhr.clivi", + "cmip7_compound_name": "atmos.clivi.tpt-u-hs-u.subhr.GLB", + "uid": "8009b4de-f906-11e6-a176-5404a60d96b5" + }, + "atmos.clivi.tpt-u-hxy-u.3hr.GLB": { + "frequency": "3hr", + "modeling_realm": "atmos", + "standard_name": "atmosphere_mass_content_of_cloud_ice", + "units": "kg m-2", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Ice Water Path", + "comment": "mass of ice water in the column divided by the area of the column (not just the area of the cloudy portion of the column). Includes precipitating frozen hydrometeors ONLY if the precipitating hydrometeor affects the calculation of radiative transfer in model.", + "dimensions": "longitude latitude time1", + "out_name": "clivi", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-point", + "cmip6_table": "CF3hr", + "physical_parameter_name": "clivi", + "variableRootDD": "clivi", + "branding_label": "tpt-u-hxy-u", + "branded_variable_name": "clivi_tpt-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "CF3hr.clivi", + "cmip7_compound_name": "atmos.clivi.tpt-u-hxy-u.3hr.GLB", + "uid": "e0ab3896-4b7f-11e7-903f-5404a60d96b5" + }, + "atmos.clivic.tavg-u-hxy-u.day.GLB": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "atmosphere_mass_content_of_convective_cloud_ice", + "units": "kg m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Convective Ice Water Path", + "comment": "calculate mass of convective ice water in the column divided by the area of the column (not just the area of the cloudy portion of the column). This includes precipitating frozen hydrometeors ONLY if the precipitating hydrometeors affect the calculation of radiative transfer in model.", + "dimensions": "longitude latitude time", + "out_name": "clivic", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Eday", + "physical_parameter_name": "clivic", + "variableRootDD": "clivic", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "clivic_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "Eday.clivic", + "cmip7_compound_name": "atmos.clivic.tavg-u-hxy-u.day.GLB", + "uid": "8b8a3932-4a5b-11e6-9cd2-ac72891c3257" + }, + "atmos.clivimodis.tavg-u-hxy-u.mon.30S-90S": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "atmosphere_mass_content_of_cloud_ice", + "units": "kg m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "MODIS Ice Water Path", + "comment": "Mass of ice water in the column divided by the area of the column (not just the area of the cloudy portion of the column) as seen by the MODIS instrument simulator.", + "dimensions": "longitude latitude time", + "out_name": "clivimodis", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "CFmon", + "physical_parameter_name": "clivimodis", + "variableRootDD": "clivimodis", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "clivimodis_tavg-u-hxy-u", + "region": "30S-90S", + "cmip6_compound_name": "CFmon.clivimodisSouth30", + "cmip7_compound_name": "atmos.clivimodis.tavg-u-hxy-u.mon.30S-90S", + "uid": "80ac3173-a698-11ef-914a-613c0433d878" + }, + "atmos.clivimodis.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "atmosphere_mass_content_of_cloud_ice", + "units": "kg m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "MODIS Ice Water Path", + "comment": "Mass of ice water in the column divided by the area of the column (not just the area of the cloudy portion of the column) as seen by the MODIS instrument simulator.", + "dimensions": "longitude latitude time", + "out_name": "clivimodis", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "CFmon", + "physical_parameter_name": "clivimodis", + "variableRootDD": "clivimodis", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "clivimodis_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "CFmon.clivimodis", + "cmip7_compound_name": "atmos.clivimodis.tavg-u-hxy-u.mon.GLB", + "uid": "83bbfbdc-7f07-11ef-9308-b1dd71e64bec" + }, + "atmos.clmisr.tavg-h16-hxy-air.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "cloud_area_fraction_in_atmosphere_layer", + "units": "%", + "cell_methods": "area: time: mean where air", + "cell_measures": "area: areacella", + "long_name": "Percentage Cloud Cover as Calculated by the MISR Simulator (Including Error Flag)", + "comment": "MISR cloud area fraction", + "dimensions": "longitude latitude alt16 tau time", + "out_name": "clmisr", + "type": "real", + "positive": "", + "spatial_shape": "XY-H16", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "clmisr", + "variableRootDD": "clmisr", + "branding_label": "tavg-h16-hxy-air", + "branded_variable_name": "clmisr_tavg-h16-hxy-air", + "region": "GLB", + "cmip6_compound_name": "Emon.clmisr", + "cmip7_compound_name": "atmos.clmisr.tavg-h16-hxy-air.mon.GLB", + "uid": "8b8a51ce-4a5b-11e6-9cd2-ac72891c3257" + }, + "atmos.clmodis.tavg-p7c-hxy-air.mon.30S-90S": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "modis_cloud_area_fraction", + "units": "%", + "cell_methods": "area: time: mean where air", + "cell_measures": "area: areacella", + "long_name": "MODIS Cloud Area Percentage", + "comment": "Percentage of total cloud cover in optical depth categories, as seen by the MODIS instrument simulator. Dimensions of tau (optical depth) and cloud-top pressure are the same used by the ISCCP instrument simulator. This is the equivalent MODIS version of the ISCCP _clisccp _variable.", + "dimensions": "longitude latitude plev7c tau time", + "out_name": "clmodis", + "type": "real", + "positive": "", + "spatial_shape": "XY-P7", + "temporal_shape": "time-intv", + "cmip6_table": "CFmon", + "physical_parameter_name": "clmodis", + "variableRootDD": "clmodis", + "branding_label": "tavg-p7c-hxy-air", + "branded_variable_name": "clmodis_tavg-p7c-hxy-air", + "region": "30S-90S", + "cmip6_compound_name": "CFmon.clmodisSouth30", + "cmip7_compound_name": "atmos.clmodis.tavg-p7c-hxy-air.mon.30S-90S", + "uid": "80ac3176-a698-11ef-914a-613c0433d878" + }, + "atmos.clmodis.tavg-p7c-hxy-air.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "modis_cloud_area_fraction", + "units": "%", + "cell_methods": "area: time: mean where air", + "cell_measures": "area: areacella", + "long_name": "MODIS Cloud Area Percentage", + "comment": "Percentage of total cloud cover in optical depth categories, as seen by the MODIS instrument simulator. Dimensions of tau (optical depth) and cloud-top pressure are the same used by the ISCCP instrument simulator. This is the equivalent MODIS version of the ISCCP _clisccp _variable.", + "dimensions": "longitude latitude plev7c tau time", + "out_name": "clmodis", + "type": "real", + "positive": "", + "spatial_shape": "XY-P7", + "temporal_shape": "time-intv", + "cmip6_table": "CFmon", + "physical_parameter_name": "clmodis", + "variableRootDD": "clmodis", + "branding_label": "tavg-p7c-hxy-air", + "branded_variable_name": "clmodis_tavg-p7c-hxy-air", + "region": "GLB", + "cmip6_compound_name": "CFmon.clmodis", + "cmip7_compound_name": "atmos.clmodis.tavg-p7c-hxy-air.mon.GLB", + "uid": "83bbfc94-7f07-11ef-9308-b1dd71e64bec" + }, + "atmos.clmodisice.tavg-p7c-hxy-air.mon.30S-90S": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "modis_ice_topped_cloud_area_fraction", + "units": "%", + "cell_methods": "area: time: mean where air", + "cell_measures": "area: areacella", + "long_name": "MODIS Ice Topped Cloud Area Percentage", + "comment": "Percentage ice-cloud cover in optical depth categories, as seen by the MODIS instrument simulator. Dimensions of tau (optical depth) and cloud-top pressure are the same as used by clisccp output from the ISCCP satellite simulator.", + "dimensions": "longitude latitude plev7c tau time", + "out_name": "clmodisice", + "type": "real", + "positive": "", + "spatial_shape": "XY-P7", + "temporal_shape": "time-intv", + "cmip6_table": "CFmon", + "physical_parameter_name": "clmodisice", + "variableRootDD": "clmodisice", + "branding_label": "tavg-p7c-hxy-air", + "branded_variable_name": "clmodisice_tavg-p7c-hxy-air", + "region": "30S-90S", + "cmip6_compound_name": "CFmon.clmodisiceSouth30", + "cmip7_compound_name": "atmos.clmodisice.tavg-p7c-hxy-air.mon.30S-90S", + "uid": "80ac3177-a698-11ef-914a-613c0433d878" + }, + "atmos.clmodisice.tavg-p7c-hxy-air.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "modis_ice_topped_cloud_area_fraction", + "units": "%", + "cell_methods": "area: time: mean where air", + "cell_measures": "area: areacella", + "long_name": "MODIS Ice Topped Cloud Area Percentage", + "comment": "Percentage ice-cloud cover in optical depth categories, as seen by the MODIS instrument simulator. Dimensions of tau (optical depth) and cloud-top pressure are the same as used by clisccp output from the ISCCP satellite simulator.", + "dimensions": "longitude latitude plev7c tau time", + "out_name": "clmodisice", + "type": "real", + "positive": "", + "spatial_shape": "XY-P7", + "temporal_shape": "time-intv", + "cmip6_table": "CFmon", + "physical_parameter_name": "clmodisice", + "variableRootDD": "clmodisice", + "branding_label": "tavg-p7c-hxy-air", + "branded_variable_name": "clmodisice_tavg-p7c-hxy-air", + "region": "GLB", + "cmip6_compound_name": "CFmon.clmodisice", + "cmip7_compound_name": "atmos.clmodisice.tavg-p7c-hxy-air.mon.GLB", + "uid": "83bbfc93-7f07-11ef-9308-b1dd71e64bec" + }, + "atmos.clmodisiceReff.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "modis_ice_topped_cloud_area_fraction", + "units": "%", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "MODIS Ice Topped Cloud Area Percentage", + "comment": "Percentage ice-cloud cover as seen by the MODIS instrument simulator. Dimensions of cloud IWP (cloud ice water path) and r_eff (effective droplet size). The effective radius bin edges are defined in the COSP simulator (see lines 134-152 of cosp_config.F90: )", + "dimensions": "longitude latitude effectRadIc tau time", + "out_name": "clmodisiceReff", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "CFmon", + "physical_parameter_name": "clmodisiceReff", + "variableRootDD": "clmodisiceReff", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "clmodisiceReff_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "CFmon.clmodisiceReff", + "cmip7_compound_name": "atmos.clmodisiceReff.tavg-u-hxy-u.mon.GLB", + "uid": "83bbfbdb-7f07-11ef-9308-b1dd71e64bec" + }, + "atmos.clmodisliquid.tavg-p7c-hxy-air.mon.30S-90S": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "modis_liquid_topped_cloud_area_fraction", + "units": "%", + "cell_methods": "area: time: mean where air", + "cell_measures": "area: areacella", + "long_name": "MODIS Liquid Topped Cloud Area Percentage", + "comment": "Percentage liquid-cloud cover in optical depth categories, as seen by the MODIS instrument simulator. Dimensions of tau (optical depth) and cloud-top pressure are the same used by clisccp (ISCCP simulator).", + "dimensions": "longitude latitude plev7c tau time", + "out_name": "clmodisliquid", + "type": "real", + "positive": "", + "spatial_shape": "XY-P7", + "temporal_shape": "time-intv", + "cmip6_table": "CFmon", + "physical_parameter_name": "clmodisliquid", + "variableRootDD": "clmodisliquid", + "branding_label": "tavg-p7c-hxy-air", + "branded_variable_name": "clmodisliquid_tavg-p7c-hxy-air", + "region": "30S-90S", + "cmip6_compound_name": "CFmon.clmodisliquidSouth30", + "cmip7_compound_name": "atmos.clmodisliquid.tavg-p7c-hxy-air.mon.30S-90S", + "uid": "80ac3178-a698-11ef-914a-613c0433d878" + }, + "atmos.clmodisliquid.tavg-p7c-hxy-air.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "modis_liquid_topped_cloud_area_fraction", + "units": "%", + "cell_methods": "area: time: mean where air", + "cell_measures": "area: areacella", + "long_name": "MODIS Liquid Topped Cloud Area Percentage", + "comment": "Percentage liquid-cloud cover in optical depth categories, as seen by the MODIS instrument simulator. Dimensions of tau (optical depth) and cloud-top pressure are the same used by clisccp (ISCCP simulator).", + "dimensions": "longitude latitude plev7c tau time", + "out_name": "clmodisliquid", + "type": "real", + "positive": "", + "spatial_shape": "XY-P7", + "temporal_shape": "time-intv", + "cmip6_table": "CFmon", + "physical_parameter_name": "clmodisliquid", + "variableRootDD": "clmodisliquid", + "branding_label": "tavg-p7c-hxy-air", + "branded_variable_name": "clmodisliquid_tavg-p7c-hxy-air", + "region": "GLB", + "cmip6_compound_name": "CFmon.clmodisliquid", + "cmip7_compound_name": "atmos.clmodisliquid.tavg-p7c-hxy-air.mon.GLB", + "uid": "83bbfbda-7f07-11ef-9308-b1dd71e64bec" + }, + "atmos.clmodisliquidReff.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "modis_liquid_topped_cloud_area_fraction", + "units": "%", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "MODIS Liquid Topped Cloud Area Percentage", + "comment": "Percentage liquid-cloud cover as seen by the MODIS instrument simulator. Dimensions of LWP (cloud liquid water path) and r_eff (droplet effective radius). The effective radius bin edges are defined in the COSP simulator (see lines 134-152 of cosp_config.F90: )", + "dimensions": "longitude latitude effectRadLi tau time", + "out_name": "clmodisliquidReff", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "CFmon", + "physical_parameter_name": "clmodisliquidReff", + "variableRootDD": "clmodisliquidReff", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "clmodisliquidReff_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "CFmon.clmodisliquidReff", + "cmip7_compound_name": "atmos.clmodisliquidReff.tavg-u-hxy-u.mon.GLB", + "uid": "83bbfbd9-7f07-11ef-9308-b1dd71e64bec" + }, + "atmos.cls.tavg-al-hxy-u.mon.30S-90S": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "stratiform_cloud_area_fraction_in_atmosphere_layer", + "units": "%", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Percentage Cover of Stratiform Cloud", + "comment": "Cloud area fraction (reported as a percentage) for the whole atmospheric column due to stratiform clouds, as seen from the surface or the top of the atmosphere. Includes both large-scale and convective cloud.", + "dimensions": "longitude latitude alevel time", + "out_name": "cls", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-intv", + "cmip6_table": "CFmon", + "physical_parameter_name": "cls", + "variableRootDD": "cls", + "branding_label": "tavg-al-hxy-u", + "branded_variable_name": "cls_tavg-al-hxy-u", + "region": "30S-90S", + "cmip6_compound_name": "CFmon.clsSouth30", + "cmip7_compound_name": "atmos.cls.tavg-al-hxy-u.mon.30S-90S", + "uid": "80ac3179-a698-11ef-914a-613c0433d878" + }, + "atmos.cls.tavg-al-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "stratiform_cloud_area_fraction_in_atmosphere_layer", + "units": "%", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Percentage Cover of Stratiform Cloud", + "comment": "Cloud area fraction (reported as a percentage) for the whole atmospheric column due to stratiform clouds, as seen from the surface or the top of the atmosphere. Includes both large-scale and convective cloud.", + "dimensions": "longitude latitude alevel time", + "out_name": "cls", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-intv", + "cmip6_table": "CFmon", + "physical_parameter_name": "cls", + "variableRootDD": "cls", + "branding_label": "tavg-al-hxy-u", + "branded_variable_name": "cls_tavg-al-hxy-u", + "region": "GLB", + "cmip6_compound_name": "CFmon.cls", + "cmip7_compound_name": "atmos.cls.tavg-al-hxy-u.mon.GLB", + "uid": "baaac764-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.clt.tavg-u-hxy-lnd.day.GLB": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "cloud_area_fraction", + "units": "%", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Total Cloud Cover Percentage", + "comment": "Total cloud fraction", + "dimensions": "longitude latitude time", + "out_name": "clt", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Eday", + "physical_parameter_name": "clt", + "variableRootDD": "clt", + "branding_label": "tavg-u-hxy-lnd", + "branded_variable_name": "clt_tavg-u-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "Eday.clt", + "cmip7_compound_name": "atmos.clt.tavg-u-hxy-lnd.day.GLB", + "uid": "d227f2d2-4a9f-11e6-b84e-ac72891c3257" + }, + "atmos.clt.tavg-u-hxy-u.1hr.30S-90S": { + "frequency": "1hr", + "modeling_realm": "atmos", + "standard_name": "cloud_area_fraction", + "units": "%", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Total Cloud Cover Percentage", + "comment": "Total cloud area fraction (reported as a percentage) for the whole atmospheric column, as seen from the surface or the top of the atmosphere. Includes both large-scale and convective cloud.", + "dimensions": "longitude latitude time", + "out_name": "clt", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "E1hr", + "physical_parameter_name": "clt", + "variableRootDD": "clt", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "clt_tavg-u-hxy-u", + "region": "30S-90S", + "cmip6_compound_name": "E1hr.clt", + "cmip7_compound_name": "atmos.clt.tavg-u-hxy-u.1hr.30S-90S", + "uid": "83bbfbca-7f07-11ef-9308-b1dd71e64bec" + }, + "atmos.clt.tavg-u-hxy-u.3hr.GLB": { + "frequency": "3hr", + "modeling_realm": "atmos", + "standard_name": "cloud_area_fraction", + "units": "%", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Total Cloud Cover Percentage", + "comment": "for the whole atmospheric column, as seen from the surface or the top of the atmosphere. Include both large-scale and convective cloud. This is a 3-hour mean.", + "dimensions": "longitude latitude time", + "out_name": "clt", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "3hr", + "physical_parameter_name": "clt", + "variableRootDD": "clt", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "clt_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "3hr.clt", + "cmip7_compound_name": "atmos.clt.tavg-u-hxy-u.3hr.GLB", + "uid": "baaad560-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.clt.tavg-u-hxy-u.day.GLB": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "cloud_area_fraction", + "units": "%", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Total Cloud Cover Percentage", + "comment": "for the whole atmospheric column, as seen from the surface or the top of the atmosphere. Includes both large-scale and convective cloud.", + "dimensions": "longitude latitude time", + "out_name": "clt", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "day", + "physical_parameter_name": "clt", + "variableRootDD": "clt", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "clt_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "day.clt", + "cmip7_compound_name": "atmos.clt.tavg-u-hxy-u.day.GLB", + "uid": "baaace4e-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.clt.tavg-u-hxy-u.mon.30S-90S": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "cloud_area_fraction", + "units": "%", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Total Cloud Cover Percentage", + "comment": "for the whole atmospheric column, as seen from the surface or the top of the atmosphere. Include both large-scale and convective cloud.", + "dimensions": "longitude latitude time", + "out_name": "clt", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Amon", + "physical_parameter_name": "clt", + "variableRootDD": "clt", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "clt_tavg-u-hxy-u", + "region": "30S-90S", + "cmip6_compound_name": "Amon.cltSouth30", + "cmip7_compound_name": "atmos.clt.tavg-u-hxy-u.mon.30S-90S", + "uid": "80ac317a-a698-11ef-914a-613c0433d878" + }, + "atmos.clt.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "cloud_area_fraction", + "units": "%", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Total Cloud Cover Percentage", + "comment": "for the whole atmospheric column, as seen from the surface or the top of the atmosphere. Include both large-scale and convective cloud.", + "dimensions": "longitude latitude time", + "out_name": "clt", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Amon", + "physical_parameter_name": "clt", + "variableRootDD": "clt", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "clt_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "Amon.clt", + "cmip7_compound_name": "atmos.clt.tavg-u-hxy-u.mon.GLB", + "uid": "baaad7e0-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.clt.tpt-u-hs-u.subhr.GLB": { + "frequency": "subhr", + "modeling_realm": "atmos", + "standard_name": "cloud_area_fraction", + "units": "%", + "cell_methods": "area: point time: point", + "cell_measures": "", + "long_name": "Total Cloud Cover Percentage", + "comment": "for the whole atmospheric column, as seen from the surface or the top of the atmosphere. Include both large-scale and convective cloud.", + "dimensions": "site time1", + "out_name": "clt", + "type": "real", + "positive": "", + "spatial_shape": "S-na", + "temporal_shape": "time-point", + "cmip6_table": "CFsubhr", + "physical_parameter_name": "clt", + "variableRootDD": "clt", + "branding_label": "tpt-u-hs-u", + "branded_variable_name": "clt_tpt-u-hs-u", + "region": "GLB", + "cmip6_compound_name": "CFsubhr.clt", + "cmip7_compound_name": "atmos.clt.tpt-u-hs-u.subhr.GLB", + "uid": "80098e0a-f906-11e6-a176-5404a60d96b5" + }, + "atmos.clt.tpt-u-hxy-u.3hr.GLB": { + "frequency": "3hr", + "modeling_realm": "atmos", + "standard_name": "cloud_area_fraction", + "units": "%", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Total Cloud Cover Percentage", + "comment": "for the whole atmospheric column, as seen from the surface or the top of the atmosphere. Include both large-scale and convective cloud.", + "dimensions": "longitude latitude time1", + "out_name": "clt", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-point", + "cmip6_table": "CF3hr", + "physical_parameter_name": "clt", + "variableRootDD": "clt", + "branding_label": "tpt-u-hxy-u", + "branded_variable_name": "clt_tpt-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "CF3hr.clt", + "cmip7_compound_name": "atmos.clt.tpt-u-hxy-u.3hr.GLB", + "uid": "e0ab3cc4-4b7f-11e7-903f-5404a60d96b5" + }, + "atmos.cltc.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "convective_cloud_area_fraction", + "units": "%", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Convective Cloud Cover Percentage", + "comment": "Convective cloud fraction", + "dimensions": "longitude latitude time", + "out_name": "cltc", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "cltc", + "variableRootDD": "cltc", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "cltc_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.cltc", + "cmip7_compound_name": "atmos.cltc.tavg-u-hxy-u.mon.GLB", + "uid": "01d412d0-c792-11e6-aa58-5404a60d96b5" + }, + "atmos.cltcalipso.tavg-u-hxy-u.day.GLB": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "cloud_area_fraction", + "units": "%", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "CALIPSO Total Cloud Cover Percentage", + "comment": "Total cloud area fraction (reported as a percentage) for the whole atmospheric column, as seen by the Cloud-Aerosol Lidar and Infrared Pathfinder Satellite Observation (CALIPSO) instrument. Includes both large-scale and convective cloud.", + "dimensions": "longitude latitude time", + "out_name": "cltcalipso", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "CFday", + "physical_parameter_name": "cltcalipso", + "variableRootDD": "cltcalipso", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "cltcalipso_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "CFday.cltcalipso", + "cmip7_compound_name": "atmos.cltcalipso.tavg-u-hxy-u.day.GLB", + "uid": "baaaf2e8-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.cltcalipso.tavg-u-hxy-u.mon.30S-90S": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "cloud_area_fraction", + "units": "%", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "CALIPSO Total Cloud Cover Percentage", + "comment": "Total cloud area fraction (reported as a percentage) for the whole atmospheric column, as seen by the Cloud-Aerosol Lidar and Infrared Pathfinder Satellite Observation (CALIPSO) instrument. Includes both large-scale and convective cloud.", + "dimensions": "longitude latitude time", + "out_name": "cltcalipso", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "CFmon", + "physical_parameter_name": "cltcalipso", + "variableRootDD": "cltcalipso", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "cltcalipso_tavg-u-hxy-u", + "region": "30S-90S", + "cmip6_compound_name": "CFmon.cltcalipsoSouth30", + "cmip7_compound_name": "atmos.cltcalipso.tavg-u-hxy-u.mon.30S-90S", + "uid": "80ac317b-a698-11ef-914a-613c0433d878" + }, + "atmos.cltcalipso.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "cloud_area_fraction", + "units": "%", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "CALIPSO Total Cloud Cover Percentage", + "comment": "Total cloud area fraction (reported as a percentage) for the whole atmospheric column, as seen by the Cloud-Aerosol Lidar and Infrared Pathfinder Satellite Observation (CALIPSO) instrument. Includes both large-scale and convective cloud.", + "dimensions": "longitude latitude time", + "out_name": "cltcalipso", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "CFmon", + "physical_parameter_name": "cltcalipso", + "variableRootDD": "cltcalipso", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "cltcalipso_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "CFmon.cltcalipso", + "cmip7_compound_name": "atmos.cltcalipso.tavg-u-hxy-u.mon.GLB", + "uid": "baaaf4a0-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.cltcalipso.tpt-u-hxy-u.3hr.GLB": { + "frequency": "3hr", + "modeling_realm": "atmos", + "standard_name": "cloud_area_fraction", + "units": "%", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "CALIPSO Total Cloud Cover Percentage", + "comment": "CALIPSO Total Cloud Fraction", + "dimensions": "longitude latitude time1", + "out_name": "cltcalipso", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-point", + "cmip6_table": "E3hrPt", + "physical_parameter_name": "cltcalipso", + "variableRootDD": "cltcalipso", + "branding_label": "tpt-u-hxy-u", + "branded_variable_name": "cltcalipso_tpt-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "E3hrPt.cltcalipso", + "cmip7_compound_name": "atmos.cltcalipso.tpt-u-hxy-u.3hr.GLB", + "uid": "8b8ab8f8-4a5b-11e6-9cd2-ac72891c3257" + }, + "atmos.cltisccp.tavg-u-hxy-u.day.GLB": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "cloud_area_fraction", + "units": "%", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "ISCCP Total Cloud Cover Percentage", + "comment": "Total cloud area fraction (reported as a percentage) for the whole atmospheric column, as seen by the International Satellite Cloud Climatology Project (ISCCP) analysis. Includes both large-scale and convective cloud. (MODIS). Includes both large-scale and convective cloud.", + "dimensions": "longitude latitude time", + "out_name": "cltisccp", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "CFday", + "physical_parameter_name": "cltisccp", + "variableRootDD": "cltisccp", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "cltisccp_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "CFday.cltisccp", + "cmip7_compound_name": "atmos.cltisccp.tavg-u-hxy-u.day.GLB", + "uid": "baaaf8a6-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.cltisccp.tavg-u-hxy-u.mon.30S-90S": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "cloud_area_fraction", + "units": "%", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "ISCCP Total Cloud Cover Percentage", + "comment": "Total cloud area fraction (reported as a percentage) for the whole atmospheric column, as seen by the International Satellite Cloud Climatology Project (ISCCP) analysis. Includes both large-scale and convective cloud. (MODIS). Includes both large-scale and convective cloud.", + "dimensions": "longitude latitude time", + "out_name": "cltisccp", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "CFmon", + "physical_parameter_name": "cltisccp", + "variableRootDD": "cltisccp", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "cltisccp_tavg-u-hxy-u", + "region": "30S-90S", + "cmip6_compound_name": "CFmon.cltisccpSouth30", + "cmip7_compound_name": "atmos.cltisccp.tavg-u-hxy-u.mon.30S-90S", + "uid": "80ac317c-a698-11ef-914a-613c0433d878" + }, + "atmos.cltisccp.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "cloud_area_fraction", + "units": "%", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "ISCCP Total Cloud Cover Percentage", + "comment": "Total cloud area fraction (reported as a percentage) for the whole atmospheric column, as seen by the International Satellite Cloud Climatology Project (ISCCP) analysis. Includes both large-scale and convective cloud. (MODIS). Includes both large-scale and convective cloud.", + "dimensions": "longitude latitude time", + "out_name": "cltisccp", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "CFmon", + "physical_parameter_name": "cltisccp", + "variableRootDD": "cltisccp", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "cltisccp_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "CFmon.cltisccp", + "cmip7_compound_name": "atmos.cltisccp.tavg-u-hxy-u.mon.GLB", + "uid": "baaafa68-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.cltmodis.tavg-u-hxy-u.mon.30S-90S": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "modis_cloud_area_fraction", + "units": "%", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "MODIS Total Cloud Area Percentage", + "comment": "Percentage of total cloud cover as seen by the MODIS instrument simulator.", + "dimensions": "longitude latitude time", + "out_name": "cltmodis", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "CFmon", + "physical_parameter_name": "cltmodis", + "variableRootDD": "cltmodis", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "cltmodis_tavg-u-hxy-u", + "region": "30S-90S", + "cmip6_compound_name": "CFmon.cltmodisSouth30", + "cmip7_compound_name": "atmos.cltmodis.tavg-u-hxy-u.mon.30S-90S", + "uid": "80ac317d-a698-11ef-914a-613c0433d878" + }, + "atmos.cltmodis.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "modis_cloud_area_fraction", + "units": "%", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "MODIS Total Cloud Cover Percentage", + "comment": "Percentage of total cloud cover as seen by the MODIS instrument simulator.", + "dimensions": "longitude latitude time", + "out_name": "cltmodis", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "cltmodis", + "variableRootDD": "cltmodis", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "cltmodis_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "Emon.cltmodis", + "cmip7_compound_name": "atmos.cltmodis.tavg-u-hxy-u.mon.GLB", + "uid": "8b8a7154-4a5b-11e6-9cd2-ac72891c3257" + }, + "atmos.clw.tavg-al-hxy-u.day.GLB": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "mass_fraction_of_cloud_liquid_water_in_air", + "units": "kg kg-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Mass Fraction of Cloud Liquid Water", + "comment": "Calculated as the mass of cloud liquid water in the grid cell divided by the mass of air (including the water in all phases) in the grid cell. This includes precipitating hydrometeors ONLY if the precipitating hydrometeors affect the calculation of radiative transfer in model.", + "dimensions": "longitude latitude alevel time", + "out_name": "clw", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-intv", + "cmip6_table": "CFday", + "physical_parameter_name": "clw", + "variableRootDD": "clw", + "branding_label": "tavg-al-hxy-u", + "branded_variable_name": "clw_tavg-al-hxy-u", + "region": "GLB", + "cmip6_compound_name": "CFday.clw", + "cmip7_compound_name": "atmos.clw.tavg-al-hxy-u.day.GLB", + "uid": "baaafefa-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.clw.tavg-al-hxy-u.mon.30S-90S": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "mass_fraction_of_cloud_liquid_water_in_air", + "units": "kg kg-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Mass Fraction of Cloud Liquid Water", + "comment": "Includes both large-scale and convective cloud. Calculate as the mass of cloud liquid water in the grid cell divided by the mass of air (including the water in all phases) in the grid cells. Precipitating hydrometeors are included ONLY if the precipitating hydrometeors affect the calculation of radiative transfer in model.", + "dimensions": "longitude latitude alevel time", + "out_name": "clw", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-intv", + "cmip6_table": "Amon", + "physical_parameter_name": "clw", + "variableRootDD": "clw", + "branding_label": "tavg-al-hxy-u", + "branded_variable_name": "clw_tavg-al-hxy-u", + "region": "30S-90S", + "cmip6_compound_name": "Amon.clwSouth30", + "cmip7_compound_name": "atmos.clw.tavg-al-hxy-u.mon.30S-90S", + "uid": "80ac317e-a698-11ef-914a-613c0433d878" + }, + "atmos.clw.tavg-al-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "mass_fraction_of_cloud_liquid_water_in_air", + "units": "kg kg-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Mass Fraction of Cloud Liquid Water", + "comment": "Includes both large-scale and convective cloud. Calculate as the mass of cloud liquid water in the grid cell divided by the mass of air (including the water in all phases) in the grid cells. Precipitating hydrometeors are included ONLY if the precipitating hydrometeors affect the calculation of radiative transfer in model.", + "dimensions": "longitude latitude alevel time", + "out_name": "clw", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-intv", + "cmip6_table": "Amon", + "physical_parameter_name": "clw", + "variableRootDD": "clw", + "branding_label": "tavg-al-hxy-u", + "branded_variable_name": "clw_tavg-al-hxy-u", + "region": "GLB", + "cmip6_compound_name": "Amon.clw", + "cmip7_compound_name": "atmos.clw.tavg-al-hxy-u.mon.GLB", + "uid": "baab0382-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.clw.tpt-al-hs-u.subhr.GLB": { + "frequency": "subhr", + "modeling_realm": "atmos", + "standard_name": "mass_fraction_of_cloud_liquid_water_in_air", + "units": "kg kg-1", + "cell_methods": "area: point time: point", + "cell_measures": "", + "long_name": "Mass Fraction of Cloud Liquid Water", + "comment": "Includes both large-scale and convective cloud. This is the mass of cloud liquid water in the grid cell divided by the mass of air (including the water in all phases) in the grid cell. This includes precipitating hydrometeors ONLY if the precipitating hydrometeors affect the calculation of radiative transfer in model.", + "dimensions": "alevel site time1", + "out_name": "clw", + "type": "real", + "positive": "", + "spatial_shape": "S-A", + "temporal_shape": "time-point", + "cmip6_table": "CFsubhr", + "physical_parameter_name": "clw", + "variableRootDD": "clw", + "branding_label": "tpt-al-hs-u", + "branded_variable_name": "clw_tpt-al-hs-u", + "region": "GLB", + "cmip6_compound_name": "CFsubhr.clw", + "cmip7_compound_name": "atmos.clw.tpt-al-hs-u.subhr.GLB", + "uid": "a95475ec-817c-11e6-a4e2-5404a60d96b5" + }, + "atmos.clwc.tavg-al-hxy-u.mon.30S-90S": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "mass_fraction_of_convective_cloud_liquid_water_in_air", + "units": "1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Mass Fraction of Convective Cloud Liquid Water", + "comment": "Calculated as the mass of convective cloud liquid water in the grid cell divided by the mass of air (including the water in all phases) in the grid cell. This includes precipitating hydrometeors ONLY if the precipitating hydrometeors affect the calculation of radiative transfer in model.", + "dimensions": "longitude latitude alevel time", + "out_name": "clwc", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-intv", + "cmip6_table": "CFmon", + "physical_parameter_name": "clwc", + "variableRootDD": "clwc", + "branding_label": "tavg-al-hxy-u", + "branded_variable_name": "clwc_tavg-al-hxy-u", + "region": "30S-90S", + "cmip6_compound_name": "CFmon.clwcSouth30", + "cmip7_compound_name": "atmos.clwc.tavg-al-hxy-u.mon.30S-90S", + "uid": "80ac317f-a698-11ef-914a-613c0433d878" + }, + "atmos.clwc.tavg-al-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "mass_fraction_of_convective_cloud_liquid_water_in_air", + "units": "1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Mass Fraction of Convective Cloud Liquid Water", + "comment": "Calculated as the mass of convective cloud liquid water in the grid cell divided by the mass of air (including the water in all phases) in the grid cell. This includes precipitating hydrometeors ONLY if the precipitating hydrometeors affect the calculation of radiative transfer in model.", + "dimensions": "longitude latitude alevel time", + "out_name": "clwc", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-intv", + "cmip6_table": "CFmon", + "physical_parameter_name": "clwc", + "variableRootDD": "clwc", + "branding_label": "tavg-al-hxy-u", + "branded_variable_name": "clwc_tavg-al-hxy-u", + "region": "GLB", + "cmip6_compound_name": "CFmon.clwc", + "cmip7_compound_name": "atmos.clwc.tavg-al-hxy-u.mon.GLB", + "uid": "baab0b2a-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.clwc.tpt-al-hxy-u.3hr.GLB": { + "frequency": "3hr", + "modeling_realm": "atmos", + "standard_name": "mass_fraction_of_convective_cloud_liquid_water_in_air", + "units": "1", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Mass Fraction of Convective Cloud Liquid Water", + "comment": "Calculated as the mass of convective cloud liquid water in the grid cell divided by the mass of air (including the water in all phases) in the grid cell. This includes precipitating hydrometeors ONLY if the precipitating hydrometeors affect the calculation of radiative transfer in model.", + "dimensions": "longitude latitude alevel time1", + "out_name": "clwc", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-point", + "cmip6_table": "CF3hr", + "physical_parameter_name": "clwc", + "variableRootDD": "clwc", + "branding_label": "tpt-al-hxy-u", + "branded_variable_name": "clwc_tpt-al-hxy-u", + "region": "GLB", + "cmip6_compound_name": "CF3hr.clwc", + "cmip7_compound_name": "atmos.clwc.tpt-al-hxy-u.3hr.GLB", + "uid": "baab0968-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.clwmodis.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "modis_liquid_topped_cloud_area_fraction", + "units": "%", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "MODIS Liquid Cloud Percentage", + "comment": "MODIS Liquid Cloud Fraction", + "dimensions": "longitude latitude time", + "out_name": "clwmodis", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "clwmodis", + "variableRootDD": "clwmodis", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "clwmodis_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "Emon.clwmodis", + "cmip7_compound_name": "atmos.clwmodis.tavg-u-hxy-u.mon.GLB", + "uid": "8b8a66fa-4a5b-11e6-9cd2-ac72891c3257" + }, + "atmos.clws.tavg-al-hxy-u.mon.30S-90S": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "mass_fraction_of_stratiform_cloud_liquid_water_in_air", + "units": "1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Mass Fraction of Stratiform Cloud Liquid Water", + "comment": "Calculated as the mass of stratiform cloud liquid water in the grid cell divided by the mass of air (including the water in all phases) in the grid cell. This includes precipitating hydrometeors ONLY if the precipitating hydrometeors affect the calculation of radiative transfer in model.", + "dimensions": "longitude latitude alevel time", + "out_name": "clws", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-intv", + "cmip6_table": "CFmon", + "physical_parameter_name": "clws", + "variableRootDD": "clws", + "branding_label": "tavg-al-hxy-u", + "branded_variable_name": "clws_tavg-al-hxy-u", + "region": "30S-90S", + "cmip6_compound_name": "CFmon.clwsSouth30", + "cmip7_compound_name": "atmos.clws.tavg-al-hxy-u.mon.30S-90S", + "uid": "80ac3180-a698-11ef-914a-613c0433d878" + }, + "atmos.clws.tavg-al-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "mass_fraction_of_stratiform_cloud_liquid_water_in_air", + "units": "1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Mass Fraction of Stratiform Cloud Liquid Water", + "comment": "Calculated as the mass of stratiform cloud liquid water in the grid cell divided by the mass of air (including the water in all phases) in the grid cell. This includes precipitating hydrometeors ONLY if the precipitating hydrometeors affect the calculation of radiative transfer in model.", + "dimensions": "longitude latitude alevel time", + "out_name": "clws", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-intv", + "cmip6_table": "CFmon", + "physical_parameter_name": "clws", + "variableRootDD": "clws", + "branding_label": "tavg-al-hxy-u", + "branded_variable_name": "clws_tavg-al-hxy-u", + "region": "GLB", + "cmip6_compound_name": "CFmon.clws", + "cmip7_compound_name": "atmos.clws.tavg-al-hxy-u.mon.GLB", + "uid": "baab0f3a-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.clws.tpt-al-hxy-u.3hr.GLB": { + "frequency": "3hr", + "modeling_realm": "atmos", + "standard_name": "mass_fraction_of_stratiform_cloud_liquid_water_in_air", + "units": "1", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Mass Fraction of Stratiform Cloud Liquid Water", + "comment": "Calculated as the mass of stratiform cloud liquid water in the grid cell divided by the mass of air (including the water in all phases) in the grid cell. This includes precipitating hydrometeors ONLY if the precipitating hydrometeors affect the calculation of radiative transfer in model.", + "dimensions": "longitude latitude alevel time1", + "out_name": "clws", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-point", + "cmip6_table": "CF3hr", + "physical_parameter_name": "clws", + "variableRootDD": "clws", + "branding_label": "tpt-al-hxy-u", + "branded_variable_name": "clws_tpt-al-hxy-u", + "region": "GLB", + "cmip6_compound_name": "CF3hr.clws", + "cmip7_compound_name": "atmos.clws.tpt-al-hxy-u.3hr.GLB", + "uid": "baab0d64-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.clwvi.tavg-u-hxy-u.3hr.GLB": { + "frequency": "3hr", + "modeling_realm": "atmos", + "standard_name": "atmosphere_mass_content_of_cloud_condensed_water", + "units": "kg m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Condensed Water Path", + "comment": "Liquid water path", + "dimensions": "longitude latitude time", + "out_name": "clwvi", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "E3hr", + "physical_parameter_name": "clwvi", + "variableRootDD": "clwvi", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "clwvi_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "E3hr.clwvi", + "cmip7_compound_name": "atmos.clwvi.tavg-u-hxy-u.3hr.GLB", + "uid": "8bb0c7e6-4a5b-11e6-9cd2-ac72891c3257" + }, + "atmos.clwvi.tavg-u-hxy-u.day.GLB": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "atmosphere_mass_content_of_cloud_condensed_water", + "units": "kg m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Condensed Water Path", + "comment": "calculate mass of condensed (liquid + ice) water in the column divided by the area of the column (not just the area of the cloudy portion of the column). This includes precipitating hydrometeors ONLY if the precipitating hydrometeors affect the calculation of radiative transfer in model.", + "dimensions": "longitude latitude time", + "out_name": "clwvi", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "CFday", + "physical_parameter_name": "clwvi", + "variableRootDD": "clwvi", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "clwvi_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "CFday.clwvi", + "cmip7_compound_name": "atmos.clwvi.tavg-u-hxy-u.day.GLB", + "uid": "baab15a2-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.clwvi.tavg-u-hxy-u.mon.30S-90S": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "atmosphere_mass_content_of_cloud_condensed_water", + "units": "kg m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Condensed Water Path", + "comment": "mass of condensed (liquid + ice) water in the column divided by the area of the column (not just the area of the cloudy portion of the column). Includes precipitating hydrometeors ONLY if the precipitating hydrometeor affects the calculation of radiative transfer in model.", + "dimensions": "longitude latitude time", + "out_name": "clwvi", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Amon", + "physical_parameter_name": "clwvi", + "variableRootDD": "clwvi", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "clwvi_tavg-u-hxy-u", + "region": "30S-90S", + "cmip6_compound_name": "Amon.clwviSouth30", + "cmip7_compound_name": "atmos.clwvi.tavg-u-hxy-u.mon.30S-90S", + "uid": "80ac3181-a698-11ef-914a-613c0433d878" + }, + "atmos.clwvi.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "atmosphere_mass_content_of_cloud_condensed_water", + "units": "kg m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Condensed Water Path", + "comment": "mass of condensed (liquid + ice) water in the column divided by the area of the column (not just the area of the cloudy portion of the column). Includes precipitating hydrometeors ONLY if the precipitating hydrometeor affects the calculation of radiative transfer in model.", + "dimensions": "longitude latitude time", + "out_name": "clwvi", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Amon", + "physical_parameter_name": "clwvi", + "variableRootDD": "clwvi", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "clwvi_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "Amon.clwvi", + "cmip7_compound_name": "atmos.clwvi.tavg-u-hxy-u.mon.GLB", + "uid": "baab1818-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.clwvi.tpt-u-hs-u.subhr.GLB": { + "frequency": "subhr", + "modeling_realm": "atmos", + "standard_name": "atmosphere_mass_content_of_cloud_condensed_water", + "units": "kg m-2", + "cell_methods": "area: point time: point", + "cell_measures": "", + "long_name": "Condensed Water Path", + "comment": "mass of condensed (liquid + ice) water in the column divided by the area of the column (not just the area of the cloudy portion of the column). Includes precipitating hydrometeors ONLY if the precipitating hydrometeor affects the calculation of radiative transfer in model.", + "dimensions": "site time1", + "out_name": "clwvi", + "type": "real", + "positive": "", + "spatial_shape": "S-na", + "temporal_shape": "time-point", + "cmip6_table": "CFsubhr", + "physical_parameter_name": "clwvi", + "variableRootDD": "clwvi", + "branding_label": "tpt-u-hs-u", + "branded_variable_name": "clwvi_tpt-u-hs-u", + "region": "GLB", + "cmip6_compound_name": "CFsubhr.clwvi", + "cmip7_compound_name": "atmos.clwvi.tpt-u-hs-u.subhr.GLB", + "uid": "8009a17e-f906-11e6-a176-5404a60d96b5" + }, + "atmos.clwvi.tpt-u-hxy-u.3hr.GLB": { + "frequency": "3hr", + "modeling_realm": "atmos", + "standard_name": "atmosphere_mass_content_of_cloud_condensed_water", + "units": "kg m-2", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Condensed Water Path", + "comment": "mass of condensed (liquid + ice) water in the column divided by the area of the column (not just the area of the cloudy portion of the column). Includes precipitating hydrometeors ONLY if the precipitating hydrometeor affects the calculation of radiative transfer in model.", + "dimensions": "longitude latitude time1", + "out_name": "clwvi", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-point", + "cmip6_table": "CF3hr", + "physical_parameter_name": "clwvi", + "variableRootDD": "clwvi", + "branding_label": "tpt-u-hxy-u", + "branded_variable_name": "clwvi_tpt-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "CF3hr.clwvi", + "cmip7_compound_name": "atmos.clwvi.tpt-u-hxy-u.3hr.GLB", + "uid": "e0ab40e8-4b7f-11e7-903f-5404a60d96b5" + }, + "atmos.clwvic.tavg-u-hxy-u.day.GLB": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "atmosphere_mass_content_of_convective_cloud_condensed_water", + "units": "kg m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Convective Condensed Water Path", + "comment": "calculate mass of convective condensed (liquid + ice) water in the column divided by the area of the column (not just the area of the cloudy portion of the column). This includes precipitating hydrometeors ONLY if the precipitating hydrometeors affect the calculation of radiative transfer in model.", + "dimensions": "longitude latitude time", + "out_name": "clwvic", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Eday", + "physical_parameter_name": "clwvic", + "variableRootDD": "clwvic", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "clwvic_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "Eday.clwvic", + "cmip7_compound_name": "atmos.clwvic.tavg-u-hxy-u.day.GLB", + "uid": "8b8a33ce-4a5b-11e6-9cd2-ac72891c3257" + }, + "atmos.clwvimodis.tavg-u-hxy-u.mon.30S-90S": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "atmosphere_mass_content_of_cloud_condensed_water", + "units": "kg m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "MODIS Condensed Water Path", + "comment": "Mass of condensed (liquid + ice) water in the column divided by the area of the column (not just the area of the cloudy portion of the column) as seen by the MODIS instrument simulator.", + "dimensions": "longitude latitude time", + "out_name": "clwvimodis", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "CFmon", + "physical_parameter_name": "clwvimodis", + "variableRootDD": "clwvimodis", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "clwvimodis_tavg-u-hxy-u", + "region": "30S-90S", + "cmip6_compound_name": "CFmon.clwvimodisSouth30", + "cmip7_compound_name": "atmos.clwvimodis.tavg-u-hxy-u.mon.30S-90S", + "uid": "80ac3182-a698-11ef-914a-613c0433d878" + }, + "atmos.clwvimodis.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "atmosphere_mass_content_of_cloud_condensed_water", + "units": "kg m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "MODIS Condensed Water Path", + "comment": "Mass of condensed (liquid + ice) water in the column divided by the area of the column (not just the area of the cloudy portion of the column) as seen by the MODIS instrument simulator.", + "dimensions": "longitude latitude time", + "out_name": "clwvimodis", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "CFmon", + "physical_parameter_name": "clwvimodis", + "variableRootDD": "clwvimodis", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "clwvimodis_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "CFmon.clwvimodis", + "cmip7_compound_name": "atmos.clwvimodis.tavg-u-hxy-u.mon.GLB", + "uid": "83bbfbd7-7f07-11ef-9308-b1dd71e64bec" + }, + "atmos.co2.tavg-al-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "mole_fraction_of_carbon_dioxide_in_air", + "units": "mol mol-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Mole Fraction of CO2", + "comment": "Mole fraction is used in the construction mole_fraction_of_X_in_Y, where X is a material constituent of Y.", + "dimensions": "longitude latitude alevel time", + "out_name": "co2", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "co2", + "variableRootDD": "co2", + "branding_label": "tavg-al-hxy-u", + "branded_variable_name": "co2_tavg-al-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.co2", + "cmip7_compound_name": "atmos.co2.tavg-al-hxy-u.mon.GLB", + "uid": "19beb80e-81b1-11e6-92de-ac72891c3257" + }, + "atmos.co2.tavg-h2m-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "mole_fraction_of_carbon_dioxide_in_air", + "units": "1E-06", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Atmosphere CO2", + "comment": "As co2, but only at the surface", + "dimensions": "longitude latitude time height2m", + "out_name": "co2s", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "co2s", + "variableRootDD": "co2", + "branding_label": "tavg-h2m-hxy-u", + "branded_variable_name": "co2_tavg-h2m-hxy-u", + "region": "GLB", + "cmip6_compound_name": "Emon.co2s", + "cmip7_compound_name": "atmos.co2.tavg-h2m-hxy-u.mon.GLB", + "uid": "8b925e1e-4a5b-11e6-9cd2-ac72891c3257" + }, + "atmos.co2.tavg-p19-hxy-air.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "mole_fraction_of_carbon_dioxide_in_air", + "units": "mol mol-1", + "cell_methods": "area: time: mean where air", + "cell_measures": "area: areacella", + "long_name": "Mole Fraction of CO2", + "comment": "Mole fraction is used in the construction mole_fraction_of_X_in_Y, where X is a material constituent of Y.", + "dimensions": "longitude latitude plev19 time", + "out_name": "co2", + "type": "real", + "positive": "", + "spatial_shape": "XY-P19", + "temporal_shape": "time-intv", + "cmip6_table": "Amon", + "physical_parameter_name": "co2", + "variableRootDD": "co2", + "branding_label": "tavg-p19-hxy-air", + "branded_variable_name": "co2_tavg-p19-hxy-air", + "region": "GLB", + "cmip6_compound_name": "Amon.co2", + "cmip7_compound_name": "atmos.co2.tavg-p19-hxy-air.mon.GLB", + "uid": "baab23da-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.co2.tclm-p19-hxy-air.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "mole_fraction_of_carbon_dioxide_in_air", + "units": "mol mol-1", + "cell_methods": "area: mean where air time: mean within years time: mean over years", + "cell_measures": "area: areacella", + "long_name": "Mole Fraction of CO2", + "comment": "Mole fraction is used in the construction mole_fraction_of_X_in_Y, where X is a material constituent of Y.", + "dimensions": "longitude latitude plev19 time2", + "out_name": "co2", + "type": "real", + "positive": "", + "spatial_shape": "XY-P19", + "temporal_shape": "climatology", + "cmip6_table": "Amon", + "physical_parameter_name": "co2", + "variableRootDD": "co2", + "branding_label": "tclm-p19-hxy-air", + "branded_variable_name": "co2_tclm-p19-hxy-air", + "region": "GLB", + "cmip6_compound_name": "Amon.co2Clim", + "cmip7_compound_name": "atmos.co2.tclm-p19-hxy-air.mon.GLB", + "uid": "a92dfd68-817c-11e6-a4e2-5404a60d96b5" + }, + "atmos.co2.tclm-u-hm-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "mole_fraction_of_carbon_dioxide_in_air", + "units": "mol mol-1", + "cell_methods": "height: sum (through atmospheric column) area: sum time: mean within years time: mean over years", + "cell_measures": "", + "long_name": "Total Atmospheric Mass of CO2", + "comment": "Total atmospheric mass of Carbon Dioxide", + "dimensions": "time2", + "out_name": "co2", + "type": "real", + "positive": "", + "spatial_shape": "na-na", + "temporal_shape": "climatology", + "cmip6_table": "Amon", + "physical_parameter_name": "co2", + "variableRootDD": "co2", + "branding_label": "tclm-u-hm-u", + "branded_variable_name": "co2_tclm-u-hm-u", + "region": "GLB", + "cmip6_compound_name": "Amon.co2massClim", + "cmip7_compound_name": "atmos.co2.tclm-u-hm-u.mon.GLB", + "uid": "a92e1244-817c-11e6-a4e2-5404a60d96b5" + }, + "atmos.co23D.tavg-al-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "mass_fraction_of_carbon_dioxide_tracer_in_air", + "units": "kg kg-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "3D-Field of Transported CO2", + "comment": "requested for all Emissions-driven runs", + "dimensions": "longitude latitude alevel time", + "out_name": "co23D", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "co23D", + "variableRootDD": "co23D", + "branding_label": "tavg-al-hxy-u", + "branded_variable_name": "co23D_tavg-al-hxy-u", + "region": "GLB", + "cmip6_compound_name": "Emon.co23D", + "cmip7_compound_name": "atmos.co23D.tavg-al-hxy-u.mon.GLB", + "uid": "e705484a-aa7f-11e6-9a4a-5404a60d96b5" + }, + "atmos.co2mass.tavg-u-hm-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "atmosphere_mass_of_carbon_dioxide", + "units": "kg", + "cell_methods": "height: sum (through atmospheric column) area: sum time: mean", + "cell_measures": "", + "long_name": "Total Atmospheric Mass of CO2", + "comment": "Total atmospheric mass of Carbon Dioxide", + "dimensions": "time", + "out_name": "co2mass", + "type": "real", + "positive": "", + "spatial_shape": "na-na", + "temporal_shape": "time-intv", + "cmip6_table": "Amon", + "physical_parameter_name": "co2mass", + "variableRootDD": "co2mass", + "branding_label": "tavg-u-hm-u", + "branded_variable_name": "co2mass_tavg-u-hm-u", + "region": "GLB", + "cmip6_compound_name": "Amon.co2mass", + "cmip7_compound_name": "atmos.co2mass.tavg-u-hm-u.mon.GLB", + "uid": "baab2d9e-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.dmc.tavg-alh-hxy-u.mon.30S-90S": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "atmosphere_net_upward_deep_convective_mass_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Deep Convective Mass Flux", + "comment": "The net mass flux represents the difference between the updraft and downdraft components. This is calculated as the convective mass flux divided by the area of the whole grid cell (not just the area of the cloud).", + "dimensions": "longitude latitude alevhalf time", + "out_name": "dmc", + "type": "real", + "positive": "up", + "spatial_shape": "XY-AH", + "temporal_shape": "time-intv", + "cmip6_table": "CFmon", + "physical_parameter_name": "dmc", + "variableRootDD": "dmc", + "branding_label": "tavg-alh-hxy-u", + "branded_variable_name": "dmc_tavg-alh-hxy-u", + "region": "30S-90S", + "cmip6_compound_name": "CFmon.dmcSouth30", + "cmip7_compound_name": "atmos.dmc.tavg-alh-hxy-u.mon.30S-90S", + "uid": "80ac3185-a698-11ef-914a-613c0433d878" + }, + "atmos.dmc.tavg-alh-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "atmosphere_net_upward_deep_convective_mass_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Deep Convective Mass Flux", + "comment": "The net mass flux represents the difference between the updraft and downdraft components. This is calculated as the convective mass flux divided by the area of the whole grid cell (not just the area of the cloud).", + "dimensions": "longitude latitude alevhalf time", + "out_name": "dmc", + "type": "real", + "positive": "up", + "spatial_shape": "XY-AH", + "temporal_shape": "time-intv", + "cmip6_table": "CFmon", + "physical_parameter_name": "dmc", + "variableRootDD": "dmc", + "branding_label": "tavg-alh-hxy-u", + "branded_variable_name": "dmc_tavg-alh-hxy-u", + "region": "GLB", + "cmip6_compound_name": "CFmon.dmc", + "cmip7_compound_name": "atmos.dmc.tavg-alh-hxy-u.mon.GLB", + "uid": "baac1790-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.dtauc.tpt-al-hxy-ccl.3hr.GLB": { + "frequency": "3hr", + "modeling_realm": "atmos", + "standard_name": "atmosphere_optical_thickness_due_to_convective_cloud", + "units": "1", + "cell_methods": "area: mean where convective_cloud time: point", + "cell_measures": "area: areacella", + "long_name": "Convective Cloud Optical Depth", + "comment": "This is the in-cloud optical depth obtained by considering only the cloudy portion of the grid cell", + "dimensions": "longitude latitude alevel time1", + "out_name": "dtauc", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-point", + "cmip6_table": "CF3hr", + "physical_parameter_name": "dtauc", + "variableRootDD": "dtauc", + "branding_label": "tpt-al-hxy-ccl", + "branded_variable_name": "dtauc_tpt-al-hxy-ccl", + "region": "GLB", + "cmip6_compound_name": "CF3hr.dtauc", + "cmip7_compound_name": "atmos.dtauc.tpt-al-hxy-ccl.3hr.GLB", + "uid": "baac7816-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.dtaus.tpt-al-hxy-scl.3hr.GLB": { + "frequency": "3hr", + "modeling_realm": "atmos", + "standard_name": "atmosphere_optical_thickness_due_to_stratiform_cloud", + "units": "1", + "cell_methods": "area: mean where stratiform_cloud time: point", + "cell_measures": "area: areacella", + "long_name": "Stratiform Cloud Optical Depth", + "comment": "This is the in-cloud optical depth obtained by considering only the cloudy portion of the grid cell.", + "dimensions": "longitude latitude alevel time1", + "out_name": "dtaus", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-point", + "cmip6_table": "CF3hr", + "physical_parameter_name": "dtaus", + "variableRootDD": "dtaus", + "branding_label": "tpt-al-hxy-scl", + "branded_variable_name": "dtaus_tpt-al-hxy-scl", + "region": "GLB", + "cmip6_compound_name": "CF3hr.dtaus", + "cmip7_compound_name": "atmos.dtaus.tpt-al-hxy-scl.3hr.GLB", + "uid": "baac7a96-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.edt.tavg-al-hxy-u.mon.30S-90S": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "atmosphere_heat_diffusivity", + "units": "m2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Eddy Diffusivity Coefficient for Temperature", + "comment": "Vertical diffusion coefficient for temperature due to parametrised eddies", + "dimensions": "longitude latitude alevel time", + "out_name": "edt", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-intv", + "cmip6_table": "CFmon", + "physical_parameter_name": "edt", + "variableRootDD": "edt", + "branding_label": "tavg-al-hxy-u", + "branded_variable_name": "edt_tavg-al-hxy-u", + "region": "30S-90S", + "cmip6_compound_name": "CFmon.edtSouth30", + "cmip7_compound_name": "atmos.edt.tavg-al-hxy-u.mon.30S-90S", + "uid": "80ac3188-a698-11ef-914a-613c0433d878" + }, + "atmos.edt.tavg-al-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "atmosphere_heat_diffusivity", + "units": "m2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Eddy Diffusivity Coefficient for Temperature", + "comment": "Vertical diffusion coefficient for temperature due to parametrised eddies", + "dimensions": "longitude latitude alevel time", + "out_name": "edt", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-intv", + "cmip6_table": "CFmon", + "physical_parameter_name": "edt", + "variableRootDD": "edt", + "branding_label": "tavg-al-hxy-u", + "branded_variable_name": "edt_tavg-al-hxy-u", + "region": "GLB", + "cmip6_compound_name": "CFmon.edt", + "cmip7_compound_name": "atmos.edt.tavg-al-hxy-u.mon.GLB", + "uid": "a94cab8c-817c-11e6-a4e2-5404a60d96b5" + }, + "atmos.edt.tpt-al-hs-u.subhr.GLB": { + "frequency": "subhr", + "modeling_realm": "atmos", + "standard_name": "atmosphere_heat_diffusivity", + "units": "m2 s-1", + "cell_methods": "area: point time: point", + "cell_measures": "", + "long_name": "Eddy Diffusivity Coefficient for Temperature", + "comment": "Vertical diffusion coefficient for temperature due to parametrised eddies", + "dimensions": "alevel site time1", + "out_name": "edt", + "type": "real", + "positive": "", + "spatial_shape": "S-A", + "temporal_shape": "time-point", + "cmip6_table": "CFsubhr", + "physical_parameter_name": "edt", + "variableRootDD": "edt", + "branding_label": "tpt-al-hs-u", + "branded_variable_name": "edt_tpt-al-hs-u", + "region": "GLB", + "cmip6_compound_name": "CFsubhr.edt", + "cmip7_compound_name": "atmos.edt.tpt-al-hs-u.subhr.GLB", + "uid": "a955e2f6-817c-11e6-a4e2-5404a60d96b5" + }, + "atmos.epfy.tavg-p39-hy-air.day.GLB": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "northward_eliassen_palm_flux_in_air", + "units": "m3 s-2", + "cell_methods": "longitude: time: mean where air", + "cell_measures": "", + "long_name": "Northward Component of the Eliassen-Palm Flux", + "comment": "zonal mean; hence YZT", + "dimensions": "latitude plev39 time", + "out_name": "epfy", + "type": "real", + "positive": "", + "spatial_shape": "Y-P39", + "temporal_shape": "time-intv", + "cmip6_table": "EdayZ", + "physical_parameter_name": "epfy", + "variableRootDD": "epfy", + "branding_label": "tavg-p39-hy-air", + "branded_variable_name": "epfy_tavg-p39-hy-air", + "region": "GLB", + "cmip6_compound_name": "EdayZ.epfy", + "cmip7_compound_name": "atmos.epfy.tavg-p39-hy-air.day.GLB", + "uid": "8b97db46-4a5b-11e6-9cd2-ac72891c3257" + }, + "atmos.epfy.tavg-p39-hy-air.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "northward_eliassen_palm_flux_in_air", + "units": "m3 s-2", + "cell_methods": "longitude: time: mean where air", + "cell_measures": "", + "long_name": "Northward Component of the Eliassen-Palm Flux", + "comment": "Transformed Eulerian Mean Diagnostics Meridional component Fy of Eliassen-Palm (EP) flux (Fy, Fz) derived from 6hr or higher frequency fields (use daily fields or 12 hr fields if the 6 hr are not available). Please use the definitions given by equation 3.5.3a of Andrews, Holton and Leovy text book, but scaled by density to have units m3 s-2.", + "dimensions": "latitude plev39 time", + "out_name": "epfy", + "type": "real", + "positive": "", + "spatial_shape": "Y-P39", + "temporal_shape": "time-intv", + "cmip6_table": "EmonZ", + "physical_parameter_name": "epfy", + "variableRootDD": "epfy", + "branding_label": "tavg-p39-hy-air", + "branded_variable_name": "epfy_tavg-p39-hy-air", + "region": "GLB", + "cmip6_compound_name": "EmonZ.epfy", + "cmip7_compound_name": "atmos.epfy.tavg-p39-hy-air.mon.GLB", + "uid": "feeaea60-96ec-11e6-b81e-c9e268aff03a" + }, + "atmos.epfz.tavg-p39-hy-air.day.GLB": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "upward_eliassen_palm_flux_in_air", + "units": "m3 s-2", + "cell_methods": "longitude: time: mean where air", + "cell_measures": "", + "long_name": "Upward Component of the Eliassen-Palm Flux", + "comment": "zonal mean; hence YZT", + "dimensions": "latitude plev39 time", + "out_name": "epfz", + "type": "real", + "positive": "up", + "spatial_shape": "Y-P39", + "temporal_shape": "time-intv", + "cmip6_table": "EdayZ", + "physical_parameter_name": "epfz", + "variableRootDD": "epfz", + "branding_label": "tavg-p39-hy-air", + "branded_variable_name": "epfz_tavg-p39-hy-air", + "region": "GLB", + "cmip6_compound_name": "EdayZ.epfz", + "cmip7_compound_name": "atmos.epfz.tavg-p39-hy-air.day.GLB", + "uid": "8b97e000-4a5b-11e6-9cd2-ac72891c3257" + }, + "atmos.epfz.tavg-p39-hy-air.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "upward_eliassen_palm_flux_in_air", + "units": "m3 s-2", + "cell_methods": "longitude: time: mean where air", + "cell_measures": "", + "long_name": "Upward Component of the Eliassen-Palm Flux", + "comment": "zonal mean; hence YZT", + "dimensions": "latitude plev39 time", + "out_name": "epfz", + "type": "real", + "positive": "up", + "spatial_shape": "Y-P39", + "temporal_shape": "time-intv", + "cmip6_table": "EmonZ", + "physical_parameter_name": "epfz", + "variableRootDD": "epfz", + "branding_label": "tavg-p39-hy-air", + "branded_variable_name": "epfz_tavg-p39-hy-air", + "region": "GLB", + "cmip6_compound_name": "EmonZ.epfz", + "cmip7_compound_name": "atmos.epfz.tavg-p39-hy-air.mon.GLB", + "uid": "8b97a1bc-4a5b-11e6-9cd2-ac72891c3257" + }, + "atmos.evspsbl.tavg-u-hxy-lnd.day.GLB": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "water_evapotranspiration_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Evaporation Including Sublimation and Transpiration", + "comment": "Evaporation at surface (also known as evapotranspiration): flux of water into the atmosphere due to conversion of both liquid and solid phases to vapor (from underlying surface and vegetation)", + "dimensions": "longitude latitude time", + "out_name": "evspsbl", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Eday", + "physical_parameter_name": "evspsbl", + "variableRootDD": "evspsbl", + "branding_label": "tavg-u-hxy-lnd", + "branded_variable_name": "evspsbl_tavg-u-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "Eday.evspsbl", + "cmip7_compound_name": "atmos.evspsbl.tavg-u-hxy-lnd.day.GLB", + "uid": "d22813e8-4a9f-11e6-b84e-ac72891c3257" + }, + "atmos.evspsbl.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "water_evapotranspiration_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Evaporation Including Sublimation and Transpiration", + "comment": "at surface; flux of water into the atmosphere due to conversion of both liquid and solid phases to vapor (from underlying surface and vegetation)", + "dimensions": "longitude latitude time", + "out_name": "evspsbl", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Amon", + "physical_parameter_name": "evspsbl", + "variableRootDD": "evspsbl", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "evspsbl_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "Amon.evspsbl", + "cmip7_compound_name": "atmos.evspsbl.tavg-u-hxy-u.mon.GLB", + "uid": "baad45c0-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.evspsbl.tpt-u-hs-u.subhr.GLB": { + "frequency": "subhr", + "modeling_realm": "atmos", + "standard_name": "water_evapotranspiration_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: point time: point", + "cell_measures": "", + "long_name": "Evaporation Including Sublimation and Transpiration", + "comment": "at surface; flux of water into the atmosphere due to conversion of both liquid and solid phases to vapor (from underlying surface and vegetation)", + "dimensions": "site time1", + "out_name": "evspsbl", + "type": "real", + "positive": "", + "spatial_shape": "S-na", + "temporal_shape": "time-point", + "cmip6_table": "CFsubhr", + "physical_parameter_name": "evspsbl", + "variableRootDD": "evspsbl", + "branding_label": "tpt-u-hs-u", + "branded_variable_name": "evspsbl_tpt-u-hs-u", + "region": "GLB", + "cmip6_compound_name": "CFsubhr.evspsbl", + "cmip7_compound_name": "atmos.evspsbl.tpt-u-hs-u.subhr.GLB", + "uid": "80081890-f906-11e6-a176-5404a60d96b5" + }, + "atmos.evu.tavg-al-hxy-u.mon.30S-90S": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "atmosphere_momentum_diffusivity", + "units": "m2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Eddy Viscosity Coefficient for Momentum", + "comment": "Vertical diffusion coefficient for momentum due to parametrised eddies", + "dimensions": "longitude latitude alevel time", + "out_name": "evu", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-intv", + "cmip6_table": "CFmon", + "physical_parameter_name": "evu", + "variableRootDD": "evu", + "branding_label": "tavg-al-hxy-u", + "branded_variable_name": "evu_tavg-al-hxy-u", + "region": "30S-90S", + "cmip6_compound_name": "CFmon.evuSouth30", + "cmip7_compound_name": "atmos.evu.tavg-al-hxy-u.mon.30S-90S", + "uid": "80ac318b-a698-11ef-914a-613c0433d878" + }, + "atmos.evu.tavg-al-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "atmosphere_momentum_diffusivity", + "units": "m2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Eddy Viscosity Coefficient for Momentum", + "comment": "Vertical diffusion coefficient for momentum due to parametrised eddies", + "dimensions": "longitude latitude alevel time", + "out_name": "evu", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-intv", + "cmip6_table": "CFmon", + "physical_parameter_name": "evu", + "variableRootDD": "evu", + "branding_label": "tavg-al-hxy-u", + "branded_variable_name": "evu_tavg-al-hxy-u", + "region": "GLB", + "cmip6_compound_name": "CFmon.evu", + "cmip7_compound_name": "atmos.evu.tavg-al-hxy-u.mon.GLB", + "uid": "a94c9fc0-817c-11e6-a4e2-5404a60d96b5" + }, + "atmos.evu.tpt-al-hs-u.subhr.GLB": { + "frequency": "subhr", + "modeling_realm": "atmos", + "standard_name": "atmosphere_momentum_diffusivity", + "units": "m2 s-1", + "cell_methods": "area: point time: point", + "cell_measures": "", + "long_name": "Eddy Viscosity Coefficient for Momentum", + "comment": "Vertical diffusion coefficient for momentum due to parametrised eddies", + "dimensions": "alevel site time1", + "out_name": "evu", + "type": "real", + "positive": "", + "spatial_shape": "S-A", + "temporal_shape": "time-point", + "cmip6_table": "CFsubhr", + "physical_parameter_name": "evu", + "variableRootDD": "evu", + "branding_label": "tpt-al-hs-u", + "branded_variable_name": "evu_tpt-al-hs-u", + "region": "GLB", + "cmip6_compound_name": "CFsubhr.evu", + "cmip7_compound_name": "atmos.evu.tpt-al-hs-u.subhr.GLB", + "uid": "a955d662-817c-11e6-a4e2-5404a60d96b5" + }, + "atmos.fco2antt.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "tendency_of_atmosphere_mass_content_of_carbon_dioxide_expressed_as_carbon_due_to_anthropogenic_emission", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Carbon Mass Flux into Atmosphere Due to All Anthropogenic Emissions of CO2 [kgC m-2 s-1]", + "comment": "This is requested only for the emission-driven coupled carbon climate model runs. Does not include natural fire sources but, includes all anthropogenic sources, including fossil fuel use, cement production, agricultural burning, and sources associated with anthropogenic land use change excluding forest regrowth.", + "dimensions": "longitude latitude time", + "out_name": "fco2antt", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Amon", + "physical_parameter_name": "fco2antt", + "variableRootDD": "fco2antt", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "fco2antt_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "Amon.fco2antt", + "cmip7_compound_name": "atmos.fco2antt.tavg-u-hxy-u.mon.GLB", + "uid": "baaddada-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.fco2antt.tpt-u-hs-u.subhr.GLB": { + "frequency": "subhr", + "modeling_realm": "atmos", + "standard_name": "tendency_of_atmosphere_mass_content_of_carbon_dioxide_expressed_as_carbon_due_to_anthropogenic_emission", + "units": "kg m-2 s-1", + "cell_methods": "area: point time: point", + "cell_measures": "", + "long_name": "Carbon Mass Flux into Atmosphere Due to All Anthropogenic Emissions of CO2 [kgC m-2 s-1]", + "comment": "This is requested only for the emission-driven coupled carbon climate model runs. Does not include natural fire sources but, includes all anthropogenic sources, including fossil fuel use, cement production, agricultural burning, and sources associated with anthropogenic land use change excluding forest regrowth.", + "dimensions": "site time1", + "out_name": "fco2antt", + "type": "real", + "positive": "", + "spatial_shape": "S-na", + "temporal_shape": "time-point", + "cmip6_table": "CFsubhr", + "physical_parameter_name": "fco2antt", + "variableRootDD": "fco2antt", + "branding_label": "tpt-u-hs-u", + "branded_variable_name": "fco2antt_tpt-u-hs-u", + "region": "GLB", + "cmip6_compound_name": "CFsubhr.fco2antt", + "cmip7_compound_name": "atmos.fco2antt.tpt-u-hs-u.subhr.GLB", + "uid": "800a2a40-f906-11e6-a176-5404a60d96b5" + }, + "atmos.fco2fos.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "tendency_of_atmosphere_mass_content_of_carbon_dioxide_expressed_as_carbon_due_to_emission_from_fossil_fuel_combustion", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Carbon Mass Flux into Atmosphere Due to Fossil Fuel Emissions of CO2 [kgC m-2 s-1]", + "comment": "This is the prescribed anthropogenic CO2 flux from fossil fuel use, including cement production, and flaring (but not from land-use changes, agricultural burning, forest regrowth, etc.)", + "dimensions": "longitude latitude time", + "out_name": "fco2fos", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Amon", + "physical_parameter_name": "fco2fos", + "variableRootDD": "fco2fos", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "fco2fos_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "Amon.fco2fos", + "cmip7_compound_name": "atmos.fco2fos.tavg-u-hxy-u.mon.GLB", + "uid": "baade44e-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.fco2fos.tpt-u-hs-u.subhr.GLB": { + "frequency": "subhr", + "modeling_realm": "atmos", + "standard_name": "tendency_of_atmosphere_mass_content_of_carbon_dioxide_expressed_as_carbon_due_to_emission_from_fossil_fuel_combustion", + "units": "kg m-2 s-1", + "cell_methods": "area: point time: point", + "cell_measures": "", + "long_name": "Carbon Mass Flux into Atmosphere Due to Fossil Fuel Emissions of CO2 [kgC m-2 s-1]", + "comment": "This is the prescribed anthropogenic CO2 flux from fossil fuel use, including cement production, and flaring (but not from land-use changes, agricultural burning, forest regrowth, etc.)", + "dimensions": "site time1", + "out_name": "fco2fos", + "type": "real", + "positive": "", + "spatial_shape": "S-na", + "temporal_shape": "time-point", + "cmip6_table": "CFsubhr", + "physical_parameter_name": "fco2fos", + "variableRootDD": "fco2fos", + "branding_label": "tpt-u-hs-u", + "branded_variable_name": "fco2fos_tpt-u-hs-u", + "region": "GLB", + "cmip6_compound_name": "CFsubhr.fco2fos", + "cmip7_compound_name": "atmos.fco2fos.tpt-u-hs-u.subhr.GLB", + "uid": "800a3d46-f906-11e6-a176-5404a60d96b5" + }, + "atmos.fco2nat.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_emission_from_natural_sources", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Surface Carbon Mass Flux into the Atmosphere Due to Natural Sources [kgC m-2 s-1]", + "comment": "This is what the atmosphere sees (on its own grid). This field should be equivalent to the combined natural fluxes of carbon (requested in the L_mon and O_mon tables) that account for natural exchanges between the atmosphere and land or ocean reservoirs (i.e., \"net ecosystem biospheric productivity\", for land, and \"air to sea CO2 flux\", for ocean.)", + "dimensions": "longitude latitude time", + "out_name": "fco2nat", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Amon", + "physical_parameter_name": "fco2nat", + "variableRootDD": "fco2nat", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "fco2nat_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "Amon.fco2nat", + "cmip7_compound_name": "atmos.fco2nat.tavg-u-hxy-u.mon.GLB", + "uid": "baaded68-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.fco2nat.tpt-u-hs-u.subhr.GLB": { + "frequency": "subhr", + "modeling_realm": "atmos", + "standard_name": "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_emission_from_natural_sources", + "units": "kg m-2 s-1", + "cell_methods": "area: point time: point", + "cell_measures": "", + "long_name": "Surface Carbon Mass Flux into the Atmosphere Due to Natural Sources [kgC m-2 s-1]", + "comment": "This is what the atmosphere sees (on its own grid). This field should be equivalent to the combined natural fluxes of carbon (requested in the L_mon and O_mon tables) that account for natural exchanges between the atmosphere and land or ocean reservoirs (i.e., \"net ecosystem biospheric productivity\", for land, and \"air to sea CO2 flux\", for ocean.)", + "dimensions": "site time1", + "out_name": "fco2nat", + "type": "real", + "positive": "", + "spatial_shape": "S-na", + "temporal_shape": "time-point", + "cmip6_table": "CFsubhr", + "physical_parameter_name": "fco2nat", + "variableRootDD": "fco2nat", + "branding_label": "tpt-u-hs-u", + "branded_variable_name": "fco2nat_tpt-u-hs-u", + "region": "GLB", + "cmip6_compound_name": "CFsubhr.fco2nat", + "cmip7_compound_name": "atmos.fco2nat.tpt-u-hs-u.subhr.GLB", + "uid": "800a51aa-f906-11e6-a176-5404a60d96b5" + }, + "atmos.hfdsnb.tavg-u-hxy-lnd.day.GLB": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "downward_heat_flux_at_ground_level_in_snow", + "units": "W m-2", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Downward Heat Flux at Snow Base", + "comment": "Downward heat flux at snow botton", + "dimensions": "longitude latitude time", + "out_name": "hfdsnb", + "type": "real", + "positive": "down", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Eday", + "physical_parameter_name": "hfdsnb", + "variableRootDD": "hfdsnb", + "branding_label": "tavg-u-hxy-lnd", + "branded_variable_name": "hfdsnb_tavg-u-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "Eday.hfdsnb", + "cmip7_compound_name": "atmos.hfdsnb.tavg-u-hxy-lnd.day.GLB", + "uid": "f2fb0ac8-c38d-11e6-abc1-1b922e5e1118" + }, + "atmos.hfls.tavg-u-hxy-is.mon.ATA": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "surface_upward_latent_heat_flux", + "units": "W m-2", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacellg", + "long_name": "Surface Upward Latent Heat Flux", + "comment": "The surface called \"surface\" means the lower boundary of the atmosphere. \"Upward\" indicates a vector component which is positive when directed upward (negative downward). The surface latent heat flux is the exchange of heat between the surface and the air on account of evaporation (including sublimation). In accordance with common usage in geophysical disciplines, \"flux\" implies per unit area, called \"flux density\" in physics.", + "dimensions": "longitude latitude time", + "out_name": "hfls", + "type": "real", + "positive": "up", + "spatial_shape": "XYA-na", + "temporal_shape": "time-intv", + "cmip6_table": "ImonAnt", + "physical_parameter_name": "hfls", + "variableRootDD": "hfls", + "branding_label": "tavg-u-hxy-is", + "branded_variable_name": "hfls_tavg-u-hxy-is", + "region": "ATA", + "cmip6_compound_name": "ImonAnt.hfls", + "cmip7_compound_name": "atmos.hfls.tavg-u-hxy-is.mon.ATA", + "uid": "d5b32dc0-c78d-11e6-9b25-5404a60d96b5" + }, + "atmos.hfls.tavg-u-hxy-is.mon.GRL": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "surface_upward_latent_heat_flux", + "units": "W m-2", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacellg", + "long_name": "Surface Upward Latent Heat Flux", + "comment": "The surface called \"surface\" means the lower boundary of the atmosphere. \"Upward\" indicates a vector component which is positive when directed upward (negative downward). The surface latent heat flux is the exchange of heat between the surface and the air on account of evaporation (including sublimation). In accordance with common usage in geophysical disciplines, \"flux\" implies per unit area, called \"flux density\" in physics.", + "dimensions": "longitude latitude time", + "out_name": "hfls", + "type": "real", + "positive": "up", + "spatial_shape": "XYG-na", + "temporal_shape": "time-intv", + "cmip6_table": "ImonGre", + "physical_parameter_name": "hfls", + "variableRootDD": "hfls", + "branding_label": "tavg-u-hxy-is", + "branded_variable_name": "hfls_tavg-u-hxy-is", + "region": "GRL", + "cmip6_compound_name": "ImonGre.hfls", + "cmip7_compound_name": "atmos.hfls.tavg-u-hxy-is.mon.GRL", + "uid": "d5b2b688-c78d-11e6-9b25-5404a60d96b5" + }, + "atmos.hfls.tavg-u-hxy-u.1hr.GLB": { + "frequency": "1hr", + "modeling_realm": "atmos", + "standard_name": "surface_upward_latent_heat_flux", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Surface upward latent heat flux", + "comment": "Hourly surface upward latent heat flux", + "dimensions": "longitude latitude time", + "out_name": "hfls", + "type": "real", + "positive": "up", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "E1hr", + "physical_parameter_name": "hfls", + "variableRootDD": "hfls", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "hfls_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "E1hr.hfls", + "cmip7_compound_name": "atmos.hfls.tavg-u-hxy-u.1hr.GLB", + "uid": "83bbfbc9-7f07-11ef-9308-b1dd71e64bec" + }, + "atmos.hfls.tavg-u-hxy-u.3hr.GLB": { + "frequency": "3hr", + "modeling_realm": "atmos", + "standard_name": "surface_upward_latent_heat_flux", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Surface Upward Latent Heat Flux", + "comment": "This is the 3-hour mean flux.", + "dimensions": "longitude latitude time", + "out_name": "hfls", + "type": "real", + "positive": "up", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "3hr", + "physical_parameter_name": "hfls", + "variableRootDD": "hfls", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "hfls_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "3hr.hfls", + "cmip7_compound_name": "atmos.hfls.tavg-u-hxy-u.3hr.GLB", + "uid": "baaefbcc-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.hfls.tavg-u-hxy-u.day.GLB": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "surface_upward_latent_heat_flux", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Surface Upward Latent Heat Flux", + "comment": "The surface called \"surface\" means the lower boundary of the atmosphere. \"Upward\" indicates a vector component which is positive when directed upward (negative downward). The surface latent heat flux is the exchange of heat between the surface and the air on account of evaporation (including sublimation). In accordance with common usage in geophysical disciplines, \"flux\" implies per unit area, called \"flux density\" in physics.", + "dimensions": "longitude latitude time", + "out_name": "hfls", + "type": "real", + "positive": "up", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "day", + "physical_parameter_name": "hfls", + "variableRootDD": "hfls", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "hfls_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "day.hfls", + "cmip7_compound_name": "atmos.hfls.tavg-u-hxy-u.day.GLB", + "uid": "baaf0a9a-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.hfls.tavg-u-hxy-u.mon.30S-90S": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "surface_upward_latent_heat_flux", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Surface Upward Latent Heat Flux", + "comment": "includes both evaporation and sublimation", + "dimensions": "longitude latitude time", + "out_name": "hfls", + "type": "real", + "positive": "up", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Amon", + "physical_parameter_name": "hfls", + "variableRootDD": "hfls", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "hfls_tavg-u-hxy-u", + "region": "30S-90S", + "cmip6_compound_name": "Amon.hflsSouth30", + "cmip7_compound_name": "atmos.hfls.tavg-u-hxy-u.mon.30S-90S", + "uid": "80ac318e-a698-11ef-914a-613c0433d878" + }, + "atmos.hfls.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "surface_upward_latent_heat_flux", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Surface Upward Latent Heat Flux", + "comment": "includes both evaporation and sublimation", + "dimensions": "longitude latitude time", + "out_name": "hfls", + "type": "real", + "positive": "up", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Amon", + "physical_parameter_name": "hfls", + "variableRootDD": "hfls", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "hfls_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "Amon.hfls", + "cmip7_compound_name": "atmos.hfls.tavg-u-hxy-u.mon.GLB", + "uid": "baaefe2e-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.hfls.tpt-u-hs-u.subhr.GLB": { + "frequency": "subhr", + "modeling_realm": "atmos", + "standard_name": "surface_upward_latent_heat_flux", + "units": "W m-2", + "cell_methods": "area: point time: point", + "cell_measures": "", + "long_name": "Surface Upward Latent Heat Flux", + "comment": "includes both evaporation and sublimation", + "dimensions": "site time1", + "out_name": "hfls", + "type": "real", + "positive": "up", + "spatial_shape": "S-na", + "temporal_shape": "time-point", + "cmip6_table": "CFsubhr", + "physical_parameter_name": "hfls", + "variableRootDD": "hfls", + "branding_label": "tpt-u-hs-u", + "branded_variable_name": "hfls_tpt-u-hs-u", + "region": "GLB", + "cmip6_compound_name": "CFsubhr.hfls", + "cmip7_compound_name": "atmos.hfls.tpt-u-hs-u.subhr.GLB", + "uid": "80086598-f906-11e6-a176-5404a60d96b5" + }, + "atmos.hfss.tavg-u-hxy-is.mon.ATA": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "surface_upward_sensible_heat_flux", + "units": "W m-2", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacellg", + "long_name": "Surface Upward Sensible Heat Flux", + "comment": "The surface sensible heat flux, also called turbulent heat flux, is the exchange of heat between the surface and the air by motion of air.", + "dimensions": "longitude latitude time", + "out_name": "hfss", + "type": "real", + "positive": "up", + "spatial_shape": "XYA-na", + "temporal_shape": "time-intv", + "cmip6_table": "ImonAnt", + "physical_parameter_name": "hfss", + "variableRootDD": "hfss", + "branding_label": "tavg-u-hxy-is", + "branded_variable_name": "hfss_tavg-u-hxy-is", + "region": "ATA", + "cmip6_compound_name": "ImonAnt.hfss", + "cmip7_compound_name": "atmos.hfss.tavg-u-hxy-is.mon.ATA", + "uid": "d5b33158-c78d-11e6-9b25-5404a60d96b5" + }, + "atmos.hfss.tavg-u-hxy-is.mon.GRL": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "surface_upward_sensible_heat_flux", + "units": "W m-2", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacellg", + "long_name": "Surface Upward Sensible Heat Flux", + "comment": "The surface sensible heat flux, also called turbulent heat flux, is the exchange of heat between the surface and the air by motion of air.", + "dimensions": "longitude latitude time", + "out_name": "hfss", + "type": "real", + "positive": "up", + "spatial_shape": "XYG-na", + "temporal_shape": "time-intv", + "cmip6_table": "ImonGre", + "physical_parameter_name": "hfss", + "variableRootDD": "hfss", + "branding_label": "tavg-u-hxy-is", + "branded_variable_name": "hfss_tavg-u-hxy-is", + "region": "GRL", + "cmip6_compound_name": "ImonGre.hfss", + "cmip7_compound_name": "atmos.hfss.tavg-u-hxy-is.mon.GRL", + "uid": "d5b2ba20-c78d-11e6-9b25-5404a60d96b5" + }, + "atmos.hfss.tavg-u-hxy-u.1hr.GLB": { + "frequency": "1hr", + "modeling_realm": "atmos", + "standard_name": "surface_upward_sensible_heat_flux", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Surface upward sensible heat flux", + "comment": "Hourly surface upward sensible heat flux", + "dimensions": "longitude latitude time", + "out_name": "hfss", + "type": "real", + "positive": "up", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "E1hr", + "physical_parameter_name": "hfss", + "variableRootDD": "hfss", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "hfss_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "E1hr.hfss", + "cmip7_compound_name": "atmos.hfss.tavg-u-hxy-u.1hr.GLB", + "uid": "83bbfbc8-7f07-11ef-9308-b1dd71e64bec" + }, + "atmos.hfss.tavg-u-hxy-u.3hr.GLB": { + "frequency": "3hr", + "modeling_realm": "atmos", + "standard_name": "surface_upward_sensible_heat_flux", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Surface Upward Sensible Heat Flux", + "comment": "This is the 3-hour mean flux.", + "dimensions": "longitude latitude time", + "out_name": "hfss", + "type": "real", + "positive": "up", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "3hr", + "physical_parameter_name": "hfss", + "variableRootDD": "hfss", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "hfss_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "3hr.hfss", + "cmip7_compound_name": "atmos.hfss.tavg-u-hxy-u.3hr.GLB", + "uid": "baaf8452-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.hfss.tavg-u-hxy-u.day.GLB": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "surface_upward_sensible_heat_flux", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Surface Upward Sensible Heat Flux", + "comment": "The surface sensible heat flux, also called turbulent heat flux, is the exchange of heat between the surface and the air by motion of air.", + "dimensions": "longitude latitude time", + "out_name": "hfss", + "type": "real", + "positive": "up", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "day", + "physical_parameter_name": "hfss", + "variableRootDD": "hfss", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "hfss_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "day.hfss", + "cmip7_compound_name": "atmos.hfss.tavg-u-hxy-u.day.GLB", + "uid": "baaf91cc-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.hfss.tavg-u-hxy-u.mon.30S-90S": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "surface_upward_sensible_heat_flux", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Surface Upward Sensible Heat Flux", + "comment": "The surface sensible heat flux, also called turbulent heat flux, is the exchange of heat between the surface and the air by motion of air.", + "dimensions": "longitude latitude time", + "out_name": "hfss", + "type": "real", + "positive": "up", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Amon", + "physical_parameter_name": "hfss", + "variableRootDD": "hfss", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "hfss_tavg-u-hxy-u", + "region": "30S-90S", + "cmip6_compound_name": "Amon.hfssSouth30", + "cmip7_compound_name": "atmos.hfss.tavg-u-hxy-u.mon.30S-90S", + "uid": "80ac318f-a698-11ef-914a-613c0433d878" + }, + "atmos.hfss.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "surface_upward_sensible_heat_flux", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Surface Upward Sensible Heat Flux", + "comment": "The surface sensible heat flux, also called turbulent heat flux, is the exchange of heat between the surface and the air by motion of air.", + "dimensions": "longitude latitude time", + "out_name": "hfss", + "type": "real", + "positive": "up", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Amon", + "physical_parameter_name": "hfss", + "variableRootDD": "hfss", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "hfss_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "Amon.hfss", + "cmip7_compound_name": "atmos.hfss.tavg-u-hxy-u.mon.GLB", + "uid": "baaf86a0-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.hfss.tpt-u-hs-u.subhr.GLB": { + "frequency": "subhr", + "modeling_realm": "atmos", + "standard_name": "surface_upward_sensible_heat_flux", + "units": "W m-2", + "cell_methods": "area: point time: point", + "cell_measures": "", + "long_name": "Surface Upward Sensible Heat Flux", + "comment": "The surface sensible heat flux, also called turbulent heat flux, is the exchange of heat between the surface and the air by motion of air.", + "dimensions": "site time1", + "out_name": "hfss", + "type": "real", + "positive": "up", + "spatial_shape": "S-na", + "temporal_shape": "time-point", + "cmip6_table": "CFsubhr", + "physical_parameter_name": "hfss", + "variableRootDD": "hfss", + "branding_label": "tpt-u-hs-u", + "branded_variable_name": "hfss_tpt-u-hs-u", + "region": "GLB", + "cmip6_compound_name": "CFsubhr.hfss", + "cmip7_compound_name": "atmos.hfss.tpt-u-hs-u.subhr.GLB", + "uid": "80087844-f906-11e6-a176-5404a60d96b5" + }, + "atmos.hur.tavg-700hPa-hxy-air.day.GLB": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "relative_humidity", + "units": "%", + "cell_methods": "area: time: mean where air", + "cell_measures": "area: areacella", + "long_name": "Relative humidity at 700 hPa", + "comment": "Relative humidity at 700 hPa", + "dimensions": "longitude latitude time p700", + "out_name": "hur700", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "CFday", + "physical_parameter_name": "hur700", + "variableRootDD": "hur", + "branding_label": "tavg-700hPa-hxy-air", + "branded_variable_name": "hur_tavg-700hPa-hxy-air", + "region": "GLB", + "cmip6_compound_name": "CFday.hur700", + "cmip7_compound_name": "atmos.hur.tavg-700hPa-hxy-air.day.GLB", + "uid": "83bbfbdd-7f07-11ef-9308-b1dd71e64bec" + }, + "atmos.hur.tavg-al-hxy-u.day.GLB": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "relative_humidity", + "units": "%", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Relative Humidity", + "comment": "This is the relative humidity with respect to liquid water for T> 0 C, and with respect to ice for T<0 C.", + "dimensions": "longitude latitude alevel time", + "out_name": "hur", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-intv", + "cmip6_table": "CFday", + "physical_parameter_name": "hur", + "variableRootDD": "hur", + "branding_label": "tavg-al-hxy-u", + "branded_variable_name": "hur_tavg-al-hxy-u", + "region": "GLB", + "cmip6_compound_name": "CFday.hur", + "cmip7_compound_name": "atmos.hur.tavg-al-hxy-u.day.GLB", + "uid": "baafe744-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.hur.tavg-al-hxy-u.mon.30S-90S": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "relative_humidity", + "units": "%", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Relative Humidity", + "comment": "The relative humidity with respect to liquid water for T> 0 C, and with respect to ice for T<0 C.", + "dimensions": "longitude latitude alevel time", + "out_name": "hur", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-intv", + "cmip6_table": "CFmon", + "physical_parameter_name": "hur", + "variableRootDD": "hur", + "branding_label": "tavg-al-hxy-u", + "branded_variable_name": "hur_tavg-al-hxy-u", + "region": "30S-90S", + "cmip6_compound_name": "CFmon.hurSouth30", + "cmip7_compound_name": "atmos.hur.tavg-al-hxy-u.mon.30S-90S", + "uid": "80ac3191-a698-11ef-914a-613c0433d878" + }, + "atmos.hur.tavg-al-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "relative_humidity", + "units": "%", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Relative Humidity", + "comment": "The relative humidity with respect to liquid water for T> 0 C, and with respect to ice for T<0 C.", + "dimensions": "longitude latitude alevel time", + "out_name": "hur", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-intv", + "cmip6_table": "CFmon", + "physical_parameter_name": "hur", + "variableRootDD": "hur", + "branding_label": "tavg-al-hxy-u", + "branded_variable_name": "hur_tavg-al-hxy-u", + "region": "GLB", + "cmip6_compound_name": "CFmon.hur", + "cmip7_compound_name": "atmos.hur.tavg-al-hxy-u.mon.GLB", + "uid": "baafe8fc-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.hur.tavg-p19-hxy-air.mon.30S-90S": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "relative_humidity", + "units": "%", + "cell_methods": "area: time: mean where air", + "cell_measures": "area: areacella", + "long_name": "Relative Humidity", + "comment": "This is the relative humidity with respect to liquid water for T> 0 C, and with respect to ice for T<0 C.", + "dimensions": "longitude latitude plev19 time", + "out_name": "hur", + "type": "real", + "positive": "", + "spatial_shape": "XY-P19", + "temporal_shape": "time-intv", + "cmip6_table": "Amon", + "physical_parameter_name": "hur", + "variableRootDD": "hur", + "branding_label": "tavg-p19-hxy-air", + "branded_variable_name": "hur_tavg-p19-hxy-air", + "region": "30S-90S", + "cmip6_compound_name": "Amon.hurSouth30", + "cmip7_compound_name": "atmos.hur.tavg-p19-hxy-air.mon.30S-90S", + "uid": "80ac3190-a698-11ef-914a-613c0433d878" + }, + "atmos.hur.tavg-p19-hxy-air.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "relative_humidity", + "units": "%", + "cell_methods": "area: time: mean where air", + "cell_measures": "area: areacella", + "long_name": "Relative Humidity", + "comment": "This is the relative humidity with respect to liquid water for T> 0 C, and with respect to ice for T<0 C.", + "dimensions": "longitude latitude plev19 time", + "out_name": "hur", + "type": "real", + "positive": "", + "spatial_shape": "XY-P19", + "temporal_shape": "time-intv", + "cmip6_table": "Amon", + "physical_parameter_name": "hur", + "variableRootDD": "hur", + "branding_label": "tavg-p19-hxy-air", + "branded_variable_name": "hur_tavg-p19-hxy-air", + "region": "GLB", + "cmip6_compound_name": "Amon.hur", + "cmip7_compound_name": "atmos.hur.tavg-p19-hxy-air.mon.GLB", + "uid": "baafe578-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.hur.tavg-p19-hxy-u.day.GLB": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "relative_humidity", + "units": "%", + "cell_methods": "time: mean", + "cell_measures": "area: areacella", + "long_name": "Relative Humidity", + "comment": "This is the relative humidity with respect to liquid water for T> 0 C, and with respect to ice for T<0 C.", + "dimensions": "longitude latitude plev19 time", + "out_name": "hur", + "type": "real", + "positive": "", + "spatial_shape": "XY-P19", + "temporal_shape": "time-intv", + "cmip6_table": "day", + "physical_parameter_name": "hur", + "variableRootDD": "hur", + "branding_label": "tavg-p19-hxy-u", + "branded_variable_name": "hur_tavg-p19-hxy-u", + "region": "GLB", + "cmip6_compound_name": "day.hur", + "cmip7_compound_name": "atmos.hur.tavg-p19-hxy-u.day.GLB", + "uid": "baafec80-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.hur.tpt-100hPa-hxy-u.6hr.GLB": { + "frequency": "6hr", + "modeling_realm": "atmos", + "standard_name": "relative_humidity", + "units": "%", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "hur100", + "comment": "Relative humidity at 100 hPa", + "dimensions": "longitude latitude time1 p100", + "out_name": "hur100", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-point", + "cmip6_table": "6hrPlevPt", + "physical_parameter_name": "hur100", + "variableRootDD": "hur", + "branding_label": "tpt-100hPa-hxy-u", + "branded_variable_name": "hur_tpt-100hPa-hxy-u", + "region": "GLB", + "cmip6_compound_name": "6hrPlevPt.hur100", + "cmip7_compound_name": "atmos.hur.tpt-100hPa-hxy-u.6hr.GLB", + "uid": "83bbfc54-7f07-11ef-9308-b1dd71e64bec" + }, + "atmos.hur.tpt-500hPa-hxy-air.6hr.GLB": { + "frequency": "6hr", + "modeling_realm": "atmos", + "standard_name": "relative_humidity", + "units": "%", + "cell_methods": "area: mean where air time: point", + "cell_measures": "area: areacella", + "long_name": "hu500", + "comment": "Relative humidity at 500 hPa, 6 hourly instantaneous", + "dimensions": "longitude latitude time1 p500", + "out_name": "hur500", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-point", + "cmip6_table": "6hrPlevPt", + "physical_parameter_name": "hur500", + "variableRootDD": "hur", + "branding_label": "tpt-500hPa-hxy-air", + "branded_variable_name": "hur_tpt-500hPa-hxy-air", + "region": "GLB", + "cmip6_compound_name": "6hrPlevPt.hur500", + "cmip7_compound_name": "atmos.hur.tpt-500hPa-hxy-air.6hr.GLB", + "uid": "83bbfc53-7f07-11ef-9308-b1dd71e64bec" + }, + "atmos.hur.tpt-850hPa-hxy-air.6hr.GLB": { + "frequency": "6hr", + "modeling_realm": "atmos", + "standard_name": "relative_humidity", + "units": "%", + "cell_methods": "area: mean where air time: point", + "cell_measures": "area: areacella", + "long_name": "hur850", + "comment": "Relative humidity at 850 hPa", + "dimensions": "longitude latitude time1 p850", + "out_name": "hur850", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-point", + "cmip6_table": "6hrPlevPt", + "physical_parameter_name": "hur850", + "variableRootDD": "hur", + "branding_label": "tpt-850hPa-hxy-air", + "branded_variable_name": "hur_tpt-850hPa-hxy-air", + "region": "GLB", + "cmip6_compound_name": "6hrPlevPt.hur850", + "cmip7_compound_name": "atmos.hur.tpt-850hPa-hxy-air.6hr.GLB", + "uid": "83bbfc52-7f07-11ef-9308-b1dd71e64bec" + }, + "atmos.hur.tpt-al-hs-u.subhr.GLB": { + "frequency": "subhr", + "modeling_realm": "atmos", + "standard_name": "relative_humidity", + "units": "%", + "cell_methods": "area: point time: point", + "cell_measures": "", + "long_name": "Relative Humidity", + "comment": "This is the relative humidity with respect to liquid water for T> 0 C, and with respect to ice for T<0 C.", + "dimensions": "alevel site time1", + "out_name": "hur", + "type": "real", + "positive": "", + "spatial_shape": "S-A", + "temporal_shape": "time-point", + "cmip6_table": "CFsubhr", + "physical_parameter_name": "hur", + "variableRootDD": "hur", + "branding_label": "tpt-al-hs-u", + "branded_variable_name": "hur_tpt-al-hs-u", + "region": "GLB", + "cmip6_compound_name": "CFsubhr.hur", + "cmip7_compound_name": "atmos.hur.tpt-al-hs-u.subhr.GLB", + "uid": "a954c8a8-817c-11e6-a4e2-5404a60d96b5" + }, + "atmos.hurs.tavg-h2m-hxy-u.1hr.30S-90S": { + "frequency": "1hr", + "modeling_realm": "atmos", + "standard_name": "relative_humidity", + "units": "%", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Hourly relative humidity at the surface", + "comment": "Relative humidity at 2m above the surface", + "dimensions": "longitude latitude time height2m", + "out_name": "hurs", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "E1hr", + "physical_parameter_name": "hurs", + "variableRootDD": "hurs", + "branding_label": "tavg-h2m-hxy-u", + "branded_variable_name": "hurs_tavg-h2m-hxy-u", + "region": "30S-90S", + "cmip6_compound_name": "E1hr.hursSouth30", + "cmip7_compound_name": "atmos.hurs.tavg-h2m-hxy-u.1hr.30S-90S", + "uid": "80ac3193-a698-11ef-914a-613c0433d878" + }, + "atmos.hurs.tavg-h2m-hxy-u.1hr.GLB": { + "frequency": "1hr", + "modeling_realm": "atmos", + "standard_name": "relative_humidity", + "units": "%", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Hourly relative humidity at the surface", + "comment": "Relative humidity at 2m above the surface", + "dimensions": "longitude latitude time height2m", + "out_name": "hurs", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "E1hr", + "physical_parameter_name": "hurs", + "variableRootDD": "hurs", + "branding_label": "tavg-h2m-hxy-u", + "branded_variable_name": "hurs_tavg-h2m-hxy-u", + "region": "GLB", + "cmip6_compound_name": "E1hr.hurs", + "cmip7_compound_name": "atmos.hurs.tavg-h2m-hxy-u.1hr.GLB", + "uid": "83bbfbc7-7f07-11ef-9308-b1dd71e64bec" + }, + "atmos.hurs.tavg-h2m-hxy-u.6hr.GLB": { + "frequency": "6hr", + "modeling_realm": "atmos", + "standard_name": "relative_humidity", + "units": "%", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Near-Surface Relative Humidity", + "comment": "The relative humidity with respect to liquid water for T> 0 C, and with respect to ice for T<0 C.", + "dimensions": "longitude latitude time height2m", + "out_name": "hurs", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "6hrPlev", + "physical_parameter_name": "hurs", + "variableRootDD": "hurs", + "branding_label": "tavg-h2m-hxy-u", + "branded_variable_name": "hurs_tavg-h2m-hxy-u", + "region": "GLB", + "cmip6_compound_name": "6hrPlev.hurs", + "cmip7_compound_name": "atmos.hurs.tavg-h2m-hxy-u.6hr.GLB", + "uid": "917b8532-267c-11e7-8933-ac72891c3257" + }, + "atmos.hurs.tavg-h2m-hxy-u.day.GLB": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "relative_humidity", + "units": "%", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Near-Surface Relative Humidity", + "comment": "This is the relative humidity with respect to liquid water for T> 0 C, and with respect to ice for T<0 C.", + "dimensions": "longitude latitude time height2m", + "out_name": "hurs", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "day", + "physical_parameter_name": "hurs", + "variableRootDD": "hurs", + "branding_label": "tavg-h2m-hxy-u", + "branded_variable_name": "hurs_tavg-h2m-hxy-u", + "region": "GLB", + "cmip6_compound_name": "day.hurs", + "cmip7_compound_name": "atmos.hurs.tavg-h2m-hxy-u.day.GLB", + "uid": "5a070350-c77d-11e6-8a33-5404a60d96b5" + }, + "atmos.hurs.tavg-h2m-hxy-u.mon.30S-90S": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "relative_humidity", + "units": "%", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Near-Surface Relative Humidity", + "comment": "This is the relative humidity with respect to liquid water for T> 0 C, and with respect to ice for T<0 C.", + "dimensions": "longitude latitude time height2m", + "out_name": "hurs", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Amon", + "physical_parameter_name": "hurs", + "variableRootDD": "hurs", + "branding_label": "tavg-h2m-hxy-u", + "branded_variable_name": "hurs_tavg-h2m-hxy-u", + "region": "30S-90S", + "cmip6_compound_name": "Amon.hursSouth30", + "cmip7_compound_name": "atmos.hurs.tavg-h2m-hxy-u.mon.30S-90S", + "uid": "80ac3192-a698-11ef-914a-613c0433d878" + }, + "atmos.hurs.tavg-h2m-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "relative_humidity", + "units": "%", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Near-Surface Relative Humidity", + "comment": "This is the relative humidity with respect to liquid water for T> 0 C, and with respect to ice for T<0 C.", + "dimensions": "longitude latitude time height2m", + "out_name": "hurs", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Amon", + "physical_parameter_name": "hurs", + "variableRootDD": "hurs", + "branding_label": "tavg-h2m-hxy-u", + "branded_variable_name": "hurs_tavg-h2m-hxy-u", + "region": "GLB", + "cmip6_compound_name": "Amon.hurs", + "cmip7_compound_name": "atmos.hurs.tavg-h2m-hxy-u.mon.GLB", + "uid": "baaff41e-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.hurs.tmax-h2m-hxy-u.day.GLB": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "relative_humidity", + "units": "%", + "cell_methods": "area: mean time: maximum", + "cell_measures": "area: areacella", + "long_name": "Daily Maximum Near-Surface Relative Humidity", + "comment": "This is the relative humidity with respect to liquid water for T> 0 C, and with respect to ice for T<0 C.", + "dimensions": "longitude latitude time height2m", + "out_name": "hursmax", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "day", + "physical_parameter_name": "hursmax", + "variableRootDD": "hurs", + "branding_label": "tmax-h2m-hxy-u", + "branded_variable_name": "hurs_tmax-h2m-hxy-u", + "region": "GLB", + "cmip6_compound_name": "day.hursmax", + "cmip7_compound_name": "atmos.hurs.tmax-h2m-hxy-u.day.GLB", + "uid": "5a071ff2-c77d-11e6-8a33-5404a60d96b5" + }, + "atmos.hurs.tmin-h2m-hxy-crp.day.GLB": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "relative_humidity", + "units": "%", + "cell_methods": "area: mean where crops time: minimum", + "cell_measures": "area: areacella", + "long_name": "Daily Minimum Near-Surface Relative Humidity over Crop Tile", + "comment": "The relative humidity with respect to liquid water for T> 0 C, and with respect to ice for T<0 C.", + "dimensions": "longitude latitude time height2m", + "out_name": "hursminCrop", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Eday", + "physical_parameter_name": "hursminCrop", + "variableRootDD": "hurs", + "branding_label": "tmin-h2m-hxy-crp", + "branded_variable_name": "hurs_tmin-h2m-hxy-crp", + "region": "GLB", + "cmip6_compound_name": "Eday.hursminCrop", + "cmip7_compound_name": "atmos.hurs.tmin-h2m-hxy-crp.day.GLB", + "uid": "f32a8460-c38d-11e6-abc1-1b922e5e1118" + }, + "atmos.hurs.tmin-h2m-hxy-u.day.GLB": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "relative_humidity", + "units": "%", + "cell_methods": "area: mean time: minimum", + "cell_measures": "area: areacella", + "long_name": "Daily Minimum Near-Surface Relative Humidity", + "comment": "This is the relative humidity with respect to liquid water for T> 0 C, and with respect to ice for T<0 C.", + "dimensions": "longitude latitude time height2m", + "out_name": "hursmin", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "day", + "physical_parameter_name": "hursmin", + "variableRootDD": "hurs", + "branding_label": "tmin-h2m-hxy-u", + "branded_variable_name": "hurs_tmin-h2m-hxy-u", + "region": "GLB", + "cmip6_compound_name": "day.hursmin", + "cmip7_compound_name": "atmos.hurs.tmin-h2m-hxy-u.day.GLB", + "uid": "5a0711f6-c77d-11e6-8a33-5404a60d96b5" + }, + "atmos.hurs.tpt-h2m-hs-u.subhr.GLB": { + "frequency": "subhr", + "modeling_realm": "atmos", + "standard_name": "relative_humidity", + "units": "%", + "cell_methods": "area: point time: point", + "cell_measures": "", + "long_name": "Near-Surface Relative Humidity", + "comment": "This is the relative humidity with respect to liquid water for T> 0 C, and with respect to ice for T<0 C.", + "dimensions": "site time1 height2m", + "out_name": "hurs", + "type": "real", + "positive": "", + "spatial_shape": "S-na", + "temporal_shape": "time-point", + "cmip6_table": "CFsubhr", + "physical_parameter_name": "hurs", + "variableRootDD": "hurs", + "branding_label": "tpt-h2m-hs-u", + "branded_variable_name": "hurs_tpt-h2m-hs-u", + "region": "GLB", + "cmip6_compound_name": "CFsubhr.hurs", + "cmip7_compound_name": "atmos.hurs.tpt-h2m-hs-u.subhr.GLB", + "uid": "8007b4ea-f906-11e6-a176-5404a60d96b5" + }, + "atmos.hurs.tpt-h2m-hxy-u.3hr.GLB": { + "frequency": "3hr", + "modeling_realm": "atmos", + "standard_name": "relative_humidity", + "units": "%", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Near-Surface Relative Humidity", + "comment": "This is the relative humidity with respect to liquid water for T> 0 C, and with respect to ice for T<0 C.", + "dimensions": "longitude latitude time1 height2m", + "out_name": "hurs", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-point", + "cmip6_table": "CF3hr", + "physical_parameter_name": "hurs", + "variableRootDD": "hurs", + "branding_label": "tpt-h2m-hxy-u", + "branded_variable_name": "hurs_tpt-h2m-hxy-u", + "region": "GLB", + "cmip6_compound_name": "CF3hr.hurs", + "cmip7_compound_name": "atmos.hurs.tpt-h2m-hxy-u.3hr.GLB", + "uid": "edbcefb6-4b7f-11e7-903f-5404a60d96b5" + }, + "atmos.hus.tavg-al-hxy-u.day.GLB": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "specific_humidity", + "units": "1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Specific Humidity", + "comment": "Specific humidity is the mass fraction of water vapor in (moist) air.", + "dimensions": "longitude latitude alevel time", + "out_name": "hus", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-intv", + "cmip6_table": "CFday", + "physical_parameter_name": "hus", + "variableRootDD": "hus", + "branding_label": "tavg-al-hxy-u", + "branded_variable_name": "hus_tavg-al-hxy-u", + "region": "GLB", + "cmip6_compound_name": "CFday.hus", + "cmip7_compound_name": "atmos.hus.tavg-al-hxy-u.day.GLB", + "uid": "bab00d50-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.hus.tavg-al-hxy-u.mon.30S-90S": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "specific_humidity", + "units": "1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Specific Humidity", + "comment": "Specific humidity is the mass fraction of water vapor in (moist) air.", + "dimensions": "longitude latitude alevel time", + "out_name": "hus", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-intv", + "cmip6_table": "CFmon", + "physical_parameter_name": "hus", + "variableRootDD": "hus", + "branding_label": "tavg-al-hxy-u", + "branded_variable_name": "hus_tavg-al-hxy-u", + "region": "30S-90S", + "cmip6_compound_name": "CFmon.husSouth30", + "cmip7_compound_name": "atmos.hus.tavg-al-hxy-u.mon.30S-90S", + "uid": "80ac3195-a698-11ef-914a-613c0433d878" + }, + "atmos.hus.tavg-al-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "specific_humidity", + "units": "1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Specific Humidity", + "comment": "Specific humidity is the mass fraction of water vapor in (moist) air.", + "dimensions": "longitude latitude alevel time", + "out_name": "hus", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-intv", + "cmip6_table": "CFmon", + "physical_parameter_name": "hus", + "variableRootDD": "hus", + "branding_label": "tavg-al-hxy-u", + "branded_variable_name": "hus_tavg-al-hxy-u", + "region": "GLB", + "cmip6_compound_name": "CFmon.hus", + "cmip7_compound_name": "atmos.hus.tavg-al-hxy-u.mon.GLB", + "uid": "bab00f1c-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.hus.tavg-p19-hxy-u.day.GLB": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "specific_humidity", + "units": "1", + "cell_methods": "time: mean", + "cell_measures": "area: areacella", + "long_name": "Specific Humidity", + "comment": "Specific humidity is the mass fraction of water vapor in (moist) air.", + "dimensions": "longitude latitude plev19 time", + "out_name": "hus", + "type": "real", + "positive": "", + "spatial_shape": "XY-P19", + "temporal_shape": "time-intv", + "cmip6_table": "day", + "physical_parameter_name": "hus", + "variableRootDD": "hus", + "branding_label": "tavg-p19-hxy-u", + "branded_variable_name": "hus_tavg-p19-hxy-u", + "region": "GLB", + "cmip6_compound_name": "day.hus", + "cmip7_compound_name": "atmos.hus.tavg-p19-hxy-u.day.GLB", + "uid": "bab0135e-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.hus.tavg-p19-hxy-u.mon.30S-90S": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "specific_humidity", + "units": "1", + "cell_methods": "time: mean", + "cell_measures": "area: areacella", + "long_name": "Specific Humidity", + "comment": "Specific humidity is the mass fraction of water vapor in (moist) air.", + "dimensions": "longitude latitude plev19 time", + "out_name": "hus", + "type": "real", + "positive": "", + "spatial_shape": "XY-P19", + "temporal_shape": "time-intv", + "cmip6_table": "Amon", + "physical_parameter_name": "hus", + "variableRootDD": "hus", + "branding_label": "tavg-p19-hxy-u", + "branded_variable_name": "hus_tavg-p19-hxy-u", + "region": "30S-90S", + "cmip6_compound_name": "Amon.husSouth30", + "cmip7_compound_name": "atmos.hus.tavg-p19-hxy-u.mon.30S-90S", + "uid": "80ac3194-a698-11ef-914a-613c0433d878" + }, + "atmos.hus.tavg-p19-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "specific_humidity", + "units": "1", + "cell_methods": "time: mean", + "cell_measures": "area: areacella", + "long_name": "Specific Humidity", + "comment": "Specific humidity is the mass fraction of water vapor in (moist) air.", + "dimensions": "longitude latitude plev19 time", + "out_name": "hus", + "type": "real", + "positive": "", + "spatial_shape": "XY-P19", + "temporal_shape": "time-intv", + "cmip6_table": "Amon", + "physical_parameter_name": "hus", + "variableRootDD": "hus", + "branding_label": "tavg-p19-hxy-u", + "branded_variable_name": "hus_tavg-p19-hxy-u", + "region": "GLB", + "cmip6_compound_name": "Amon.hus", + "cmip7_compound_name": "atmos.hus.tavg-p19-hxy-u.mon.GLB", + "uid": "bab00b98-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.hus.tpt-al-hs-u.subhr.GLB": { + "frequency": "subhr", + "modeling_realm": "atmos", + "standard_name": "specific_humidity", + "units": "1", + "cell_methods": "area: point time: point", + "cell_measures": "", + "long_name": "Specific Humidity", + "comment": "Specific humidity is the mass fraction of water vapor in (moist) air.", + "dimensions": "alevel site time1", + "out_name": "hus", + "type": "real", + "positive": "", + "spatial_shape": "S-A", + "temporal_shape": "time-point", + "cmip6_table": "CFsubhr", + "physical_parameter_name": "hus", + "variableRootDD": "hus", + "branding_label": "tpt-al-hs-u", + "branded_variable_name": "hus_tpt-al-hs-u", + "region": "GLB", + "cmip6_compound_name": "CFsubhr.hus", + "cmip7_compound_name": "atmos.hus.tpt-al-hs-u.subhr.GLB", + "uid": "a954bd36-817c-11e6-a4e2-5404a60d96b5" + }, + "atmos.hus.tpt-al-hxy-u.3hr.GLB": { + "frequency": "3hr", + "modeling_realm": "atmos", + "standard_name": "specific_humidity", + "units": "1", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Specific Humidity", + "comment": "Specific Humidity", + "dimensions": "longitude latitude alevel time1", + "out_name": "hus", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-point", + "cmip6_table": "E3hrPt", + "physical_parameter_name": "hus", + "variableRootDD": "hus", + "branding_label": "tpt-al-hxy-u", + "branded_variable_name": "hus_tpt-al-hxy-u", + "region": "GLB", + "cmip6_compound_name": "E3hrPt.hus", + "cmip7_compound_name": "atmos.hus.tpt-al-hxy-u.3hr.GLB", + "uid": "6140a2aa-aa6a-11e6-9736-5404a60d96b5" + }, + "atmos.hus.tpt-al-hxy-u.6hr.GLB": { + "frequency": "6hr", + "modeling_realm": "atmos", + "standard_name": "specific_humidity", + "units": "1", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Specific Humidity", + "comment": "Specific humidity is the mass fraction of water vapor in (moist) air.", + "dimensions": "longitude latitude alevel time1", + "out_name": "hus", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-point", + "cmip6_table": "6hrLev", + "physical_parameter_name": "hus", + "variableRootDD": "hus", + "branding_label": "tpt-al-hxy-u", + "branded_variable_name": "hus_tpt-al-hxy-u", + "region": "GLB", + "cmip6_compound_name": "6hrLev.hus", + "cmip7_compound_name": "atmos.hus.tpt-al-hxy-u.6hr.GLB", + "uid": "bab009cc-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.hus.tpt-p6-hxy-air.3hr.GLB": { + "frequency": "3hr", + "modeling_realm": "atmos", + "standard_name": "specific_humidity", + "units": "1", + "cell_methods": "area: mean where air time: point", + "cell_measures": "area: areacella", + "long_name": "Specific humidity", + "comment": "Specific humidity on 6 pressure levels in the lower troposphere", + "dimensions": "longitude latitude plev6 time1", + "out_name": "hus6", + "type": "real", + "positive": "", + "spatial_shape": "XY-P6", + "temporal_shape": "time-point", + "cmip6_table": "E3hrPt", + "physical_parameter_name": "hus6", + "variableRootDD": "hus", + "branding_label": "tpt-p6-hxy-air", + "branded_variable_name": "hus_tpt-p6-hxy-air", + "region": "GLB", + "cmip6_compound_name": "E3hrPt.hus6", + "cmip7_compound_name": "atmos.hus.tpt-p6-hxy-air.3hr.GLB", + "uid": "80ab7430-a698-11ef-914a-613c0433d878" + }, + "atmos.hus.tpt-p7h-hxy-air.6hr.GLB": { + "frequency": "6hr", + "modeling_realm": "atmos", + "standard_name": "specific_humidity", + "units": "1", + "cell_methods": "area: mean where air time: point", + "cell_measures": "area: areacella", + "long_name": "Specific Humidity", + "comment": "Extra levels - 925, 700, 600, 300, 50", + "dimensions": "longitude latitude plev7h time1", + "out_name": "hus", + "type": "real", + "positive": "", + "spatial_shape": "XY-P7T", + "temporal_shape": "time-point", + "cmip6_table": "6hrPlevPt", + "physical_parameter_name": "hus", + "variableRootDD": "hus", + "branding_label": "tpt-p7h-hxy-air", + "branded_variable_name": "hus_tpt-p7h-hxy-air", + "region": "GLB", + "cmip6_compound_name": "6hrPlevPt.hus7h", + "cmip7_compound_name": "atmos.hus.tpt-p7h-hxy-air.6hr.GLB", + "uid": "71174f52-faa7-11e6-bfb7-ac72891c3257" + }, + "atmos.huss.tavg-h2m-hxy-u.6hr.GLB": { + "frequency": "6hr", + "modeling_realm": "atmos", + "standard_name": "specific_humidity", + "units": "1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Near-Surface Specific Humidity", + "comment": "Near-surface (usually, 2 meter) specific humidity.", + "dimensions": "longitude latitude time height2m", + "out_name": "huss", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "6hrPlev", + "physical_parameter_name": "huss", + "variableRootDD": "huss", + "branding_label": "tavg-h2m-hxy-u", + "branded_variable_name": "huss_tavg-h2m-hxy-u", + "region": "GLB", + "cmip6_compound_name": "6hrPlev.huss", + "cmip7_compound_name": "atmos.huss.tavg-h2m-hxy-u.6hr.GLB", + "uid": "83bbfc79-7f07-11ef-9308-b1dd71e64bec" + }, + "atmos.huss.tavg-h2m-hxy-u.day.GLB": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "specific_humidity", + "units": "1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Near-Surface Specific Humidity", + "comment": "Near-surface (usually, 2 meter) specific humidity.", + "dimensions": "longitude latitude time height2m", + "out_name": "huss", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "day", + "physical_parameter_name": "huss", + "variableRootDD": "huss", + "branding_label": "tavg-h2m-hxy-u", + "branded_variable_name": "huss_tavg-h2m-hxy-u", + "region": "GLB", + "cmip6_compound_name": "day.huss", + "cmip7_compound_name": "atmos.huss.tavg-h2m-hxy-u.day.GLB", + "uid": "bab0238a-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.huss.tavg-h2m-hxy-u.mon.30S-90S": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "specific_humidity", + "units": "1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Near-Surface Specific Humidity", + "comment": "Near-surface (usually, 2 meter) specific humidity.", + "dimensions": "longitude latitude time height2m", + "out_name": "huss", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Amon", + "physical_parameter_name": "huss", + "variableRootDD": "huss", + "branding_label": "tavg-h2m-hxy-u", + "branded_variable_name": "huss_tavg-h2m-hxy-u", + "region": "30S-90S", + "cmip6_compound_name": "Amon.hussSouth30", + "cmip7_compound_name": "atmos.huss.tavg-h2m-hxy-u.mon.30S-90S", + "uid": "80ac3196-a698-11ef-914a-613c0433d878" + }, + "atmos.huss.tavg-h2m-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "specific_humidity", + "units": "1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Near-Surface Specific Humidity", + "comment": "Near-surface (usually, 2 meter) specific humidity.", + "dimensions": "longitude latitude time height2m", + "out_name": "huss", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Amon", + "physical_parameter_name": "huss", + "variableRootDD": "huss", + "branding_label": "tavg-h2m-hxy-u", + "branded_variable_name": "huss_tavg-h2m-hxy-u", + "region": "GLB", + "cmip6_compound_name": "Amon.huss", + "cmip7_compound_name": "atmos.huss.tavg-h2m-hxy-u.mon.GLB", + "uid": "bab01dfe-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.huss.tpt-h2m-hs-u.subhr.GLB": { + "frequency": "subhr", + "modeling_realm": "atmos", + "standard_name": "specific_humidity", + "units": "1", + "cell_methods": "area: point time: point", + "cell_measures": "", + "long_name": "Near-Surface Specific Humidity", + "comment": "Near-surface (usually, 2 meter) specific humidity.", + "dimensions": "site time1 height2m", + "out_name": "huss", + "type": "real", + "positive": "", + "spatial_shape": "S-na", + "temporal_shape": "time-point", + "cmip6_table": "CFsubhr", + "physical_parameter_name": "huss", + "variableRootDD": "huss", + "branding_label": "tpt-h2m-hs-u", + "branded_variable_name": "huss_tpt-h2m-hs-u", + "region": "GLB", + "cmip6_compound_name": "CFsubhr.huss", + "cmip7_compound_name": "atmos.huss.tpt-h2m-hs-u.subhr.GLB", + "uid": "8007c976-f906-11e6-a176-5404a60d96b5" + }, + "atmos.huss.tpt-h2m-hxy-u.1hr.GLB": { + "frequency": "1hr", + "modeling_realm": "atmos", + "standard_name": "specific_humidity", + "units": "1", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Near-Surface Specific Humidity", + "comment": "Specific humidity at 2m.", + "dimensions": "longitude latitude time1 height2m", + "out_name": "huss", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-point", + "cmip6_table": "E1hr", + "physical_parameter_name": "huss", + "variableRootDD": "huss", + "branding_label": "tpt-h2m-hxy-u", + "branded_variable_name": "huss_tpt-h2m-hxy-u", + "region": "GLB", + "cmip6_compound_name": "E1hr.huss", + "cmip7_compound_name": "atmos.huss.tpt-h2m-hxy-u.1hr.GLB", + "uid": "83bbfc78-7f07-11ef-9308-b1dd71e64bec" + }, + "atmos.huss.tpt-h2m-hxy-u.3hr.GLB": { + "frequency": "3hr", + "modeling_realm": "atmos", + "standard_name": "specific_humidity", + "units": "1", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Near-Surface Specific Humidity", + "comment": "This is sampled synoptically.", + "dimensions": "longitude latitude time1 height2m", + "out_name": "huss", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-point", + "cmip6_table": "3hr", + "physical_parameter_name": "huss", + "variableRootDD": "huss", + "branding_label": "tpt-h2m-hxy-u", + "branded_variable_name": "huss_tpt-h2m-hxy-u", + "region": "GLB", + "cmip6_compound_name": "3hr.huss", + "cmip7_compound_name": "atmos.huss.tpt-h2m-hxy-u.3hr.GLB", + "uid": "bab034a6-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.intuadse.tavg-u-hxy-u.day.GLB": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "eastward_atmosphere_dry_static_energy_transport_across_unit_distance", + "units": "MJ m-1 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Vertically Integrated Eastward Dry Static Energy Transport", + "comment": "Vertically integrated eastward dry static energy transport (cp.T +zg).v (Mass_weighted_vertical integral of the product of eastward wind by dry static_energy per mass unit)", + "dimensions": "longitude latitude time", + "out_name": "intuadse", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Eday", + "physical_parameter_name": "intuadse", + "variableRootDD": "intuadse", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "intuadse_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "Eday.intuadse", + "cmip7_compound_name": "atmos.intuadse.tavg-u-hxy-u.day.GLB", + "uid": "80ab7412-a698-11ef-914a-613c0433d878" + }, + "atmos.intuadse.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "eastward_atmosphere_dry_static_energy_transport_across_unit_distance", + "units": "MJ m-1 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Vertically Integrated Eastward Dry Static Energy Transport", + "comment": "Vertically integrated eastward dry static energy transport (cp.T +zg).v (Mass_weighted_vertical integral of the product of eastward wind by dry static_energy per mass unit)", + "dimensions": "longitude latitude time", + "out_name": "intuadse", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "intuadse", + "variableRootDD": "intuadse", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "intuadse_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "Emon.intuadse", + "cmip7_compound_name": "atmos.intuadse.tavg-u-hxy-u.mon.GLB", + "uid": "6f691104-9acb-11e6-b7ee-ac72891c3257" + }, + "atmos.intuaw.tavg-u-hxy-u.day.GLB": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "eastward_atmosphere_water_transport_across_unit_distance", + "units": "kg m-1 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Vertically Integrated Eastward Moisture Transport", + "comment": "Vertically integrated eastward moisture transport (Mass weighted vertical integral of the product of eastward wind by total water mass per unit mass)", + "dimensions": "longitude latitude time", + "out_name": "intuaw", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Eday", + "physical_parameter_name": "intuaw", + "variableRootDD": "intuaw", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "intuaw_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "Eday.intuaw", + "cmip7_compound_name": "atmos.intuaw.tavg-u-hxy-u.day.GLB", + "uid": "80ab7414-a698-11ef-914a-613c0433d878" + }, + "atmos.intuaw.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "eastward_atmosphere_water_transport_across_unit_distance", + "units": "kg m-1 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Vertically Integrated Eastward Moisture Transport", + "comment": "Vertically integrated Eastward moisture transport (Mass weighted vertical integral of the product of eastward wind by total water mass per unit mass)", + "dimensions": "longitude latitude time", + "out_name": "intuaw", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "intuaw", + "variableRootDD": "intuaw", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "intuaw_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "Emon.intuaw", + "cmip7_compound_name": "atmos.intuaw.tavg-u-hxy-u.mon.GLB", + "uid": "6f690484-9acb-11e6-b7ee-ac72891c3257" + }, + "atmos.intuaw.tpt-u-hxy-u.6hr.GLB": { + "frequency": "6hr", + "modeling_realm": "atmos", + "standard_name": "eastward_atmosphere_water_transport_across_unit_distance", + "units": "kg m-1 s-1", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "6 hourly instantaneous vertical integral of zonal water vapor flux", + "comment": "Vertically integrated eastward moisture transport (Mass weighted vertical integral of the product of eastward wind by total water mass per unit mass)", + "dimensions": "longitude latitude time1", + "out_name": "intuaw", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-point", + "cmip6_table": "6hrPlevPt", + "physical_parameter_name": "intuaw", + "variableRootDD": "intuaw", + "branding_label": "tpt-u-hxy-u", + "branded_variable_name": "intuaw_tpt-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "6hrPlevPt.intuaw", + "cmip7_compound_name": "atmos.intuaw.tpt-u-hxy-u.6hr.GLB", + "uid": "83bbfc51-7f07-11ef-9308-b1dd71e64bec" + }, + "atmos.intvadse.tavg-u-hxy-u.day.GLB": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "northward_atmosphere_dry_static_energy_transport_across_unit_distance", + "units": "MJ m-1 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Vertically Integrated Northward Dry Static Energy Transport", + "comment": "Vertically integrated northward dry static energy transport (cp.T +zg).v (Mass_weighted_vertical integral of the product of northward wind by dry static_energy per mass unit)", + "dimensions": "longitude latitude time", + "out_name": "intvadse", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Eday", + "physical_parameter_name": "intvadse", + "variableRootDD": "intvadse", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "intvadse_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "Eday.intvadse", + "cmip7_compound_name": "atmos.intvadse.tavg-u-hxy-u.day.GLB", + "uid": "80ab7413-a698-11ef-914a-613c0433d878" + }, + "atmos.intvadse.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "northward_atmosphere_dry_static_energy_transport_across_unit_distance", + "units": "MJ m-1 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Vertically Integrated Northward Dry Static Energy Transport", + "comment": "Vertically integrated northward dry static energy transport (cp.T +zg).v (Mass_weighted_vertical integral of the product of northward wind by dry static_energy per mass unit)", + "dimensions": "longitude latitude time", + "out_name": "intvadse", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "intvadse", + "variableRootDD": "intvadse", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "intvadse_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "Emon.intvadse", + "cmip7_compound_name": "atmos.intvadse.tavg-u-hxy-u.mon.GLB", + "uid": "6f6916a4-9acb-11e6-b7ee-ac72891c3257" + }, + "atmos.intvaw.tavg-u-hxy-u.day.GLB": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "northward_atmosphere_water_transport_across_unit_distance", + "units": "kg m-1 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Vertically Integrated Northward Moisture Transport", + "comment": "Vertically integrated northward moisture transport (Mass_weighted_vertical integral of the product of northward wind by total water mass per unit mass)", + "dimensions": "longitude latitude time", + "out_name": "intvaw", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Eday", + "physical_parameter_name": "intvaw", + "variableRootDD": "intvaw", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "intvaw_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "Eday.intvaw", + "cmip7_compound_name": "atmos.intvaw.tavg-u-hxy-u.day.GLB", + "uid": "80ab7415-a698-11ef-914a-613c0433d878" + }, + "atmos.intvaw.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "northward_atmosphere_water_transport_across_unit_distance", + "units": "kg m-1 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Vertically Integrated Northward Moisture Transport", + "comment": "Vertically integrated Northward moisture transport (Mass_weighted_vertical integral of the product of northward wind by total water mass per unit mass)", + "dimensions": "longitude latitude time", + "out_name": "intvaw", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "intvaw", + "variableRootDD": "intvaw", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "intvaw_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "Emon.intvaw", + "cmip7_compound_name": "atmos.intvaw.tavg-u-hxy-u.mon.GLB", + "uid": "6f690b5a-9acb-11e6-b7ee-ac72891c3257" + }, + "atmos.intvaw.tpt-u-hxy-u.6hr.GLB": { + "frequency": "6hr", + "modeling_realm": "atmos", + "standard_name": "northward_atmosphere_water_transport_across_unit_distance", + "units": "kg m-1 s-1", + "cell_methods": "area: point time: point", + "cell_measures": "area: areacella", + "long_name": "6 hourly instantaneous integral of meridional moisture flux", + "comment": "Vertically integrated northward moisture transport (Mass_weighted_vertical integral of the product of northward wind by total water mass per unit mass)", + "dimensions": "longitude latitude time1", + "out_name": "intvaw", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-point", + "cmip6_table": "6hrPlevPt", + "physical_parameter_name": "intvaw", + "variableRootDD": "intvaw", + "branding_label": "tpt-u-hxy-u", + "branded_variable_name": "intvaw_tpt-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "6hrPlevPt.intvaw", + "cmip7_compound_name": "atmos.intvaw.tpt-u-hxy-u.6hr.GLB", + "uid": "83bbfc50-7f07-11ef-9308-b1dd71e64bec" + }, + "atmos.jpdftaureicemodis.tavg-u-hxy-u.day.GLB": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "modis_cloud_area_fraction", + "units": "%", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "MODIS Joint Distribution of Optical Thickness and Particle Size, Ice", + "comment": "MODIS Optical Thickness-Particle Size joint distribution, ice", + "dimensions": "longitude latitude effectRadIc tau time", + "out_name": "jpdftaureicemodis", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Eday", + "physical_parameter_name": "jpdftaureicemodis", + "variableRootDD": "jpdftaureicemodis", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "jpdftaureicemodis_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "Eday.jpdftaureicemodis", + "cmip7_compound_name": "atmos.jpdftaureicemodis.tavg-u-hxy-u.day.GLB", + "uid": "8b8a9062-4a5b-11e6-9cd2-ac72891c3257" + }, + "atmos.jpdftaureicemodis.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "modis_cloud_area_fraction", + "units": "%", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "MODIS Joint Distribution of Optical Thickness and Particle Size, Ice", + "comment": "MODIS Optical Thickness-Particle Size joint distribution, ice", + "dimensions": "longitude latitude effectRadIc tau time", + "out_name": "jpdftaureicemodis", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "jpdftaureicemodis", + "variableRootDD": "jpdftaureicemodis", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "jpdftaureicemodis_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "Emon.jpdftaureicemodis", + "cmip7_compound_name": "atmos.jpdftaureicemodis.tavg-u-hxy-u.mon.GLB", + "uid": "8b8a61b4-4a5b-11e6-9cd2-ac72891c3257" + }, + "atmos.jpdftaureliqmodis.tavg-u-hxy-u.day.GLB": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "modis_cloud_area_fraction", + "units": "%", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "MODIS Optical Thickness-Particle Size Joint Distribution, Liquid", + "comment": "MODIS Optical Thickness-Particle Size joint distribution, liquid", + "dimensions": "longitude latitude effectRadLi tau time", + "out_name": "jpdftaureliqmodis", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Eday", + "physical_parameter_name": "jpdftaureliqmodis", + "variableRootDD": "jpdftaureliqmodis", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "jpdftaureliqmodis_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "Eday.jpdftaureliqmodis", + "cmip7_compound_name": "atmos.jpdftaureliqmodis.tavg-u-hxy-u.day.GLB", + "uid": "8b8a8b26-4a5b-11e6-9cd2-ac72891c3257" + }, + "atmos.jpdftaureliqmodis.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "modis_cloud_area_fraction", + "units": "%", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "MODIS Optical Thickness-Particle Size Joint Distribution, Liquid", + "comment": "MODIS Optical Thickness-Particle Size joint distribution, liquid", + "dimensions": "longitude latitude effectRadLi tau time", + "out_name": "jpdftaureliqmodis", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "jpdftaureliqmodis", + "variableRootDD": "jpdftaureliqmodis", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "jpdftaureliqmodis_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "Emon.jpdftaureliqmodis", + "cmip7_compound_name": "atmos.jpdftaureliqmodis.tavg-u-hxy-u.mon.GLB", + "uid": "8b8a5c50-4a5b-11e6-9cd2-ac72891c3257" + }, + "atmos.lat.ti-u-hs-u.fx.GLB": { + "frequency": "fx", + "modeling_realm": "atmos", + "standard_name": "latitude", + "units": "degrees_north", + "cell_methods": "area: point", + "cell_measures": "", + "long_name": "Latitude", + "comment": "Latitude is positive northward; its units of degree_north (or equivalent) indicate this explicitly. In a latitude-longitude system defined with respect to a rotated North Pole, the standard name of grid_latitude should be used instead of latitude. Grid latitude is positive in the grid-northward direction, but its units should be plain degree.", + "dimensions": "site", + "out_name": "lat", + "type": "real", + "positive": "", + "spatial_shape": "S-na", + "temporal_shape": "None", + "cmip6_table": "fx", + "physical_parameter_name": "lat", + "variableRootDD": "lat", + "branding_label": "ti-u-hs-u", + "branded_variable_name": "lat_ti-u-hs-u", + "region": "GLB", + "cmip6_compound_name": "fx.lat", + "cmip7_compound_name": "atmos.lat.ti-u-hs-u.fx.GLB", + "uid": "a9561136-817c-11e6-a4e2-5404a60d96b5" + }, + "atmos.loadbc.tavg-u-hxy-u.day.GLB": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "atmosphere_mass_content_of_elemental_carbon_dry_aerosol_particles", + "units": "kg m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Load of Black Carbon Aerosol", + "comment": "The total dry mass of black carbon aerosol particles per unit area.", + "dimensions": "longitude latitude time", + "out_name": "loadbc", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Eday", + "physical_parameter_name": "loadbc", + "variableRootDD": "loadbc", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "loadbc_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "Eday.loadbc", + "cmip7_compound_name": "atmos.loadbc.tavg-u-hxy-u.day.GLB", + "uid": "8b8b08ee-4a5b-11e6-9cd2-ac72891c3257" + }, + "atmos.loaddust.tavg-u-hxy-u.day.GLB": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "atmosphere_mass_content_of_dust_dry_aerosol_particles", + "units": "kg m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Load of Dust", + "comment": "The total dry mass of dust aerosol particles per unit area.", + "dimensions": "longitude latitude time", + "out_name": "loaddust", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Eday", + "physical_parameter_name": "loaddust", + "variableRootDD": "loaddust", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "loaddust_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "Eday.loaddust", + "cmip7_compound_name": "atmos.loaddust.tavg-u-hxy-u.day.GLB", + "uid": "8b8b13de-4a5b-11e6-9cd2-ac72891c3257" + }, + "atmos.loadnh4.tavg-u-hxy-u.day.GLB": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "atmosphere_mass_content_of_ammonium_dry_aerosol_particles", + "units": "kg m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Load of NH4", + "comment": "The total dry mass of ammonium aerosol particles per unit area.", + "dimensions": "longitude latitude time", + "out_name": "loadnh4", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Eday", + "physical_parameter_name": "loadnh4", + "variableRootDD": "loadnh4", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "loadnh4_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "Eday.loadnh4", + "cmip7_compound_name": "atmos.loadnh4.tavg-u-hxy-u.day.GLB", + "uid": "8b8b23ba-4a5b-11e6-9cd2-ac72891c3257" + }, + "atmos.loadno3.tavg-u-hxy-u.day.GLB": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "atmosphere_mass_content_of_nitrate_dry_aerosol_particles", + "units": "kg m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Load of NO3", + "comment": "The total dry mass of nitrate aerosol particles per unit area.", + "dimensions": "longitude latitude time", + "out_name": "loadno3", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Eday", + "physical_parameter_name": "loadno3", + "variableRootDD": "loadno3", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "loadno3_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "Eday.loadno3", + "cmip7_compound_name": "atmos.loadno3.tavg-u-hxy-u.day.GLB", + "uid": "8b8b1e6a-4a5b-11e6-9cd2-ac72891c3257" + }, + "atmos.loadoa.tavg-u-hxy-u.day.GLB": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles", + "units": "kg m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Load of Dry Aerosol Organic Matter", + "comment": "atmosphere dry organic content: This is the vertically integrated sum of atmosphere_primary_organic_content and atmosphere_secondary_organic_content (see next two table entries).", + "dimensions": "longitude latitude time", + "out_name": "loadoa", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Eday", + "physical_parameter_name": "loadoa", + "variableRootDD": "loadoa", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "loadoa_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "Eday.loadoa", + "cmip7_compound_name": "atmos.loadoa.tavg-u-hxy-u.day.GLB", + "uid": "8b8af886-4a5b-11e6-9cd2-ac72891c3257" + }, + "atmos.loadpoa.tavg-u-hxy-u.day.GLB": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "atmosphere_mass_content_of_primary_particulate_organic_matter_dry_aerosol_particles", + "units": "kg m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Load of Dry Aerosol Primary Organic Matter", + "comment": "The total dry mass of primary particulate organic aerosol particles per unit area.", + "dimensions": "longitude latitude time", + "out_name": "loadpoa", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Eday", + "physical_parameter_name": "loadpoa", + "variableRootDD": "loadpoa", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "loadpoa_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "Eday.loadpoa", + "cmip7_compound_name": "atmos.loadpoa.tavg-u-hxy-u.day.GLB", + "uid": "8b8afe30-4a5b-11e6-9cd2-ac72891c3257" + }, + "atmos.loadso4.tavg-u-hxy-u.day.GLB": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "atmosphere_mass_content_of_sulfate_dry_aerosol_particles", + "units": "kg m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Load of SO4", + "comment": "The total dry mass of sulfate aerosol particles per unit area.", + "dimensions": "longitude latitude time", + "out_name": "loadso4", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Eday", + "physical_parameter_name": "loadso4", + "variableRootDD": "loadso4", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "loadso4_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "Eday.loadso4", + "cmip7_compound_name": "atmos.loadso4.tavg-u-hxy-u.day.GLB", + "uid": "8b8b0e66-4a5b-11e6-9cd2-ac72891c3257" + }, + "atmos.loadso4.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "atmosphere_mass_content_of_sulfate_dry_aerosol_particles", + "units": "kg m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Load of SO4", + "comment": "The total dry mass of sulfate aerosol particles per unit area.", + "dimensions": "longitude latitude time", + "out_name": "loadso4", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "loadso4", + "variableRootDD": "loadso4", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "loadso4_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "Emon.loadso4", + "cmip7_compound_name": "atmos.loadso4.tavg-u-hxy-u.mon.GLB", + "uid": "6f3716fe-9acb-11e6-b7ee-ac72891c3257" + }, + "atmos.loadsoa.tavg-u-hxy-u.day.GLB": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "atmosphere_mass_content_of_secondary_particulate_organic_matter_dry_aerosol_particles", + "units": "kg m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Load of Dry Aerosol Secondary Organic Matter", + "comment": "The total dry mass of secondary particulate organic aerosol particles per unit area.", + "dimensions": "longitude latitude time", + "out_name": "loadsoa", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Eday", + "physical_parameter_name": "loadsoa", + "variableRootDD": "loadsoa", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "loadsoa_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "Eday.loadsoa", + "cmip7_compound_name": "atmos.loadsoa.tavg-u-hxy-u.day.GLB", + "uid": "8b8b039e-4a5b-11e6-9cd2-ac72891c3257" + }, + "atmos.loadss.tavg-u-hxy-u.day.GLB": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "atmosphere_mass_content_of_sea_salt_dry_aerosol_particles", + "units": "kg m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Load of Sea-Salt Aerosol", + "comment": "The total dry mass of sea salt aerosol particles per unit area.", + "dimensions": "longitude latitude time", + "out_name": "loadss", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Eday", + "physical_parameter_name": "loadss", + "variableRootDD": "loadss", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "loadss_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "Eday.loadss", + "cmip7_compound_name": "atmos.loadss.tavg-u-hxy-u.day.GLB", + "uid": "8b8b192e-4a5b-11e6-9cd2-ac72891c3257" + }, + "atmos.lon.ti-u-hs-u.fx.GLB": { + "frequency": "fx", + "modeling_realm": "atmos", + "standard_name": "longitude", + "units": "degrees_east", + "cell_methods": "area: point", + "cell_measures": "", + "long_name": "Longitude", + "comment": "Longitude is positive eastward; its units of degree_east (or equivalent) indicate this explicitly. In a latitude-longitude system defined with respect to a rotated North Pole, the standard name of grid_longitude should be used instead of longitude. Grid longitude is positive in the grid-eastward direction, but its units should be plain degree.", + "dimensions": "site", + "out_name": "lon", + "type": "real", + "positive": "", + "spatial_shape": "S-na", + "temporal_shape": "None", + "cmip6_table": "fx", + "physical_parameter_name": "lon", + "variableRootDD": "lon", + "branding_label": "ti-u-hs-u", + "branded_variable_name": "lon_ti-u-hs-u", + "region": "GLB", + "cmip6_compound_name": "fx.lon", + "cmip7_compound_name": "atmos.lon.ti-u-hs-u.fx.GLB", + "uid": "a95605f6-817c-11e6-a4e2-5404a60d96b5" + }, + "atmos.mc.tavg-alh-hxy-u.day.GLB": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "atmosphere_net_upward_convective_mass_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Convective Mass Flux", + "comment": "The net mass flux should represent the difference between the updraft and downdraft components. This is calculated as the convective mass flux divided by the area of the whole grid cell (not just the area of the cloud).", + "dimensions": "longitude latitude alevhalf time", + "out_name": "mc", + "type": "real", + "positive": "up", + "spatial_shape": "XY-AH", + "temporal_shape": "time-intv", + "cmip6_table": "CFday", + "physical_parameter_name": "mc", + "variableRootDD": "mc", + "branding_label": "tavg-alh-hxy-u", + "branded_variable_name": "mc_tavg-alh-hxy-u", + "region": "GLB", + "cmip6_compound_name": "CFday.mc", + "cmip7_compound_name": "atmos.mc.tavg-alh-hxy-u.day.GLB", + "uid": "bab1197a-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.mc.tavg-alh-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "atmosphere_net_upward_convective_mass_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Convective Mass Flux", + "comment": "The net mass flux should represent the difference between the updraft and downdraft components. The flux is computed as the mass divided by the area of the grid cell.", + "dimensions": "longitude latitude alevhalf time", + "out_name": "mc", + "type": "real", + "positive": "up", + "spatial_shape": "XY-AH", + "temporal_shape": "time-intv", + "cmip6_table": "Amon", + "physical_parameter_name": "mc", + "variableRootDD": "mc", + "branding_label": "tavg-alh-hxy-u", + "branded_variable_name": "mc_tavg-alh-hxy-u", + "region": "GLB", + "cmip6_compound_name": "Amon.mc", + "cmip7_compound_name": "atmos.mc.tavg-alh-hxy-u.mon.GLB", + "uid": "bab117b8-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.mc.tpt-alh-hs-u.subhr.GLB": { + "frequency": "subhr", + "modeling_realm": "atmos", + "standard_name": "atmosphere_net_upward_convective_mass_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: point time: point", + "cell_measures": "", + "long_name": "Convective Mass Flux", + "comment": "The net mass flux should represent the difference between the updraft and downdraft components. This is calculated as the convective mass flux divided by the area of the whole grid cell (not just the area of the updrafts).", + "dimensions": "alevhalf site time1", + "out_name": "mc", + "type": "real", + "positive": "up", + "spatial_shape": "S-AH", + "temporal_shape": "time-point", + "cmip6_table": "CFsubhr", + "physical_parameter_name": "mc", + "variableRootDD": "mc", + "branding_label": "tpt-alh-hs-u", + "branded_variable_name": "mc_tpt-alh-hs-u", + "region": "GLB", + "cmip6_compound_name": "CFsubhr.mc", + "cmip7_compound_name": "atmos.mc.tpt-alh-hs-u.subhr.GLB", + "uid": "a9548ee2-817c-11e6-a4e2-5404a60d96b5" + }, + "atmos.mcd.tavg-alh-hxy-u.mon.30S-90S": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "atmosphere_downdraft_convective_mass_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Downdraft Convective Mass Flux", + "comment": "Calculated as the convective mass flux divided by the area of the whole grid cell (not just the area of the cloud).", + "dimensions": "longitude latitude alevhalf time", + "out_name": "mcd", + "type": "real", + "positive": "down", + "spatial_shape": "XY-AH", + "temporal_shape": "time-intv", + "cmip6_table": "CFmon", + "physical_parameter_name": "mcd", + "variableRootDD": "mcd", + "branding_label": "tavg-alh-hxy-u", + "branded_variable_name": "mcd_tavg-alh-hxy-u", + "region": "30S-90S", + "cmip6_compound_name": "CFmon.mcdSouth30", + "cmip7_compound_name": "atmos.mcd.tavg-alh-hxy-u.mon.30S-90S", + "uid": "80ac319e-a698-11ef-914a-613c0433d878" + }, + "atmos.mcd.tavg-alh-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "atmosphere_downdraft_convective_mass_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Downdraft Convective Mass Flux", + "comment": "Calculated as the convective mass flux divided by the area of the whole grid cell (not just the area of the cloud).", + "dimensions": "longitude latitude alevhalf time", + "out_name": "mcd", + "type": "real", + "positive": "down", + "spatial_shape": "XY-AH", + "temporal_shape": "time-intv", + "cmip6_table": "CFmon", + "physical_parameter_name": "mcd", + "variableRootDD": "mcd", + "branding_label": "tavg-alh-hxy-u", + "branded_variable_name": "mcd_tavg-alh-hxy-u", + "region": "GLB", + "cmip6_compound_name": "CFmon.mcd", + "cmip7_compound_name": "atmos.mcd.tavg-alh-hxy-u.mon.GLB", + "uid": "bab12118-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.mcu.tavg-alh-hxy-u.mon.30S-90S": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "atmosphere_updraft_convective_mass_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Convective Updraft Mass Flux", + "comment": "Calculated as the convective mass flux divided by the area of the whole grid cell (not just the area of the cloud).", + "dimensions": "longitude latitude alevhalf time", + "out_name": "mcu", + "type": "real", + "positive": "up", + "spatial_shape": "XY-AH", + "temporal_shape": "time-intv", + "cmip6_table": "CFmon", + "physical_parameter_name": "mcu", + "variableRootDD": "mcu", + "branding_label": "tavg-alh-hxy-u", + "branded_variable_name": "mcu_tavg-alh-hxy-u", + "region": "30S-90S", + "cmip6_compound_name": "CFmon.mcuSouth30", + "cmip7_compound_name": "atmos.mcu.tavg-alh-hxy-u.mon.30S-90S", + "uid": "80ac319f-a698-11ef-914a-613c0433d878" + }, + "atmos.mcu.tavg-alh-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "atmosphere_updraft_convective_mass_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Convective Updraft Mass Flux", + "comment": "Calculated as the convective mass flux divided by the area of the whole grid cell (not just the area of the cloud).", + "dimensions": "longitude latitude alevhalf time", + "out_name": "mcu", + "type": "real", + "positive": "up", + "spatial_shape": "XY-AH", + "temporal_shape": "time-intv", + "cmip6_table": "CFmon", + "physical_parameter_name": "mcu", + "variableRootDD": "mcu", + "branding_label": "tavg-alh-hxy-u", + "branded_variable_name": "mcu_tavg-alh-hxy-u", + "region": "GLB", + "cmip6_compound_name": "CFmon.mcu", + "cmip7_compound_name": "atmos.mcu.tavg-alh-hxy-u.mon.GLB", + "uid": "bab125a0-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.noaahi2m.tavg-h2m-hxy-u.day.GLB": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "heat_index_of_air_temperature", + "units": "degC", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "mean 2m daily NOAA heat index", + "comment": "mean 2m daily NOAA heat index.\nThe perceived air temperature when relative humidity is taken into consideration (which makes it feel hotter than the actual air temperature).\nThe heat index is only defined when the ambient air temperature is at or above 299.817 K.\nNOAA heat index = -42.379 + 2.04901523(T) + 10.14333127(R) - 0.22475541(T)(R) - 6.83783e-3 sqr(T)\u00a0- 5.481717e-2 sqr(R)\u00a0+ 1.22874e-3 sqr(T) (R) + 8.5282e-4 (T) sqr(R)\u00a0- 1.99e-6 sqr(T) sqr(R)\nwhere T is 2 m temperature (degrees F), R is relative humidity (%)", + "dimensions": "longitude latitude time height2m", + "out_name": "noaahi2m", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "day", + "physical_parameter_name": "noaahi2m", + "variableRootDD": "noaahi2m", + "branding_label": "tavg-h2m-hxy-u", + "branded_variable_name": "noaahi2m_tavg-h2m-hxy-u", + "region": "GLB", + "cmip6_compound_name": "day.noaahi2m", + "cmip7_compound_name": "atmos.noaahi2m.tavg-h2m-hxy-u.day.GLB", + "uid": "83bbfbd5-7f07-11ef-9308-b1dd71e64bec" + }, + "atmos.noaahi2m.tmax-h2m-hxy-u.day.GLB": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "heat_index_of_air_temperature", + "units": "degC", + "cell_methods": "area: mean time: maximum", + "cell_measures": "area: areacella", + "long_name": "max 2m daily NOAA heat index", + "comment": "max 2m daily NOAA heat index \nThe perceived air temperature when relative humidity is taken into consideration (which makes it feel hotter than the actual air temperature).\nThe heat index is only defined when the ambient air temperature is at or above 299.817 K.\nNOAA heat index = -42.379 + 2.04901523(T) + 10.14333127(R) - 0.22475541(T)(R) - 6.83783e-3 sqr(T)\u00a0- 5.481717e-2 sqr(R)\u00a0+ 1.22874e-3 sqr(T) (R) + 8.5282e-4 (T) sqr(R)\u00a0- 1.99e-6 sqr(T) sqr(R)\nwhere T is 2 m temperature (degrees F), R is relative humidity (%)", + "dimensions": "longitude latitude time height2m", + "out_name": "noaahi2mmax", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "day", + "physical_parameter_name": "noaahi2mmax", + "variableRootDD": "noaahi2m", + "branding_label": "tmax-h2m-hxy-u", + "branded_variable_name": "noaahi2m_tmax-h2m-hxy-u", + "region": "GLB", + "cmip6_compound_name": "day.noaahi2mmax", + "cmip7_compound_name": "atmos.noaahi2m.tmax-h2m-hxy-u.day.GLB", + "uid": "83bbfbd4-7f07-11ef-9308-b1dd71e64bec" + }, + "atmos.parasolRefl.tavg-u-hxy-sea.day.GLB": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "toa_bidirectional_reflectance", + "units": "1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacella", + "long_name": "PARASOL Reflectance", + "comment": "PARASOL Reflectance", + "dimensions": "longitude latitude sza5 time", + "out_name": "parasolRefl", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Eday", + "physical_parameter_name": "parasolRefl", + "variableRootDD": "parasolRefl", + "branding_label": "tavg-u-hxy-sea", + "branded_variable_name": "parasolRefl_tavg-u-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Eday.parasolRefl", + "cmip7_compound_name": "atmos.parasolRefl.tavg-u-hxy-sea.day.GLB", + "uid": "8b8a85cc-4a5b-11e6-9cd2-ac72891c3257" + }, + "atmos.parasolRefl.tavg-u-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "toa_bidirectional_reflectance", + "units": "1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacella", + "long_name": "PARASOL Reflectance", + "comment": "PARASOL Reflectance", + "dimensions": "longitude latitude sza5 time", + "out_name": "parasolRefl", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "parasolRefl", + "variableRootDD": "parasolRefl", + "branding_label": "tavg-u-hxy-sea", + "branded_variable_name": "parasolRefl_tavg-u-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Emon.parasolRefl", + "cmip7_compound_name": "atmos.parasolRefl.tavg-u-hxy-sea.mon.GLB", + "uid": "8b8a56ec-4a5b-11e6-9cd2-ac72891c3257" + }, + "atmos.pctisccp.tavg-u-hxy-cl.day.GLB": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "air_pressure_at_cloud_top", + "units": "Pa", + "cell_methods": "area: time: mean where cloud (weighted by ISCCP total cloud area)", + "cell_measures": "area: areacella", + "long_name": "ISCCP Mean Cloud Top Pressure", + "comment": "time-means are weighted by the ISCCP Total Cloud Fraction - see ", + "dimensions": "longitude latitude time", + "out_name": "pctisccp", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "CFday", + "physical_parameter_name": "pctisccp", + "variableRootDD": "pctisccp", + "branding_label": "tavg-u-hxy-cl", + "branded_variable_name": "pctisccp_tavg-u-hxy-cl", + "region": "GLB", + "cmip6_compound_name": "CFday.pctisccp", + "cmip7_compound_name": "atmos.pctisccp.tavg-u-hxy-cl.day.GLB", + "uid": "bab31da6-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.pctisccp.tavg-u-hxy-cl.mon.30S-90S": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "air_pressure_at_cloud_top", + "units": "Pa", + "cell_methods": "area: time: mean where cloud (weighted by ISCCP total cloud area)", + "cell_measures": "area: areacella", + "long_name": "ISCCP Mean Cloud Top Pressure", + "comment": "time-means weighted by the ISCCP Total Cloud Fraction - see ", + "dimensions": "longitude latitude time", + "out_name": "pctisccp", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "CFmon", + "physical_parameter_name": "pctisccp", + "variableRootDD": "pctisccp", + "branding_label": "tavg-u-hxy-cl", + "branded_variable_name": "pctisccp_tavg-u-hxy-cl", + "region": "30S-90S", + "cmip6_compound_name": "CFmon.pctisccpSouth30", + "cmip7_compound_name": "atmos.pctisccp.tavg-u-hxy-cl.mon.30S-90S", + "uid": "80ac31af-a698-11ef-914a-613c0433d878" + }, + "atmos.pctisccp.tavg-u-hxy-cl.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "air_pressure_at_cloud_top", + "units": "Pa", + "cell_methods": "area: time: mean where cloud (weighted by ISCCP total cloud area)", + "cell_measures": "area: areacella", + "long_name": "ISCCP Mean Cloud Top Pressure", + "comment": "time-means weighted by the ISCCP Total Cloud Fraction - see ", + "dimensions": "longitude latitude time", + "out_name": "pctisccp", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "CFmon", + "physical_parameter_name": "pctisccp", + "variableRootDD": "pctisccp", + "branding_label": "tavg-u-hxy-cl", + "branded_variable_name": "pctisccp_tavg-u-hxy-cl", + "region": "GLB", + "cmip6_compound_name": "CFmon.pctisccp", + "cmip7_compound_name": "atmos.pctisccp.tavg-u-hxy-cl.mon.GLB", + "uid": "bab31f68-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.pfull.tavg-al-hxy-u.day.GLB": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "air_pressure", + "units": "Pa", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Pressure at Model Full-Levels", + "comment": "Air pressure on model levels", + "dimensions": "longitude latitude alevel time", + "out_name": "pfull", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-intv", + "cmip6_table": "CFday", + "physical_parameter_name": "pfull", + "variableRootDD": "pfull", + "branding_label": "tavg-al-hxy-u", + "branded_variable_name": "pfull_tavg-al-hxy-u", + "region": "GLB", + "cmip6_compound_name": "CFday.pfull", + "cmip7_compound_name": "atmos.pfull.tavg-al-hxy-u.day.GLB", + "uid": "bab32ddc-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.pfull.tavg-al-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "air_pressure", + "units": "Pa", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Pressure at Model Full-Levels", + "comment": "The atmospheric pressure at the model layer midpoints for all times and levels in the associated output variables", + "dimensions": "longitude latitude alevel time", + "out_name": "pfull", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "pfull", + "variableRootDD": "pfull", + "branding_label": "tavg-al-hxy-u", + "branded_variable_name": "pfull_tavg-al-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.pfull", + "cmip7_compound_name": "atmos.pfull.tavg-al-hxy-u.mon.GLB", + "uid": "01d46078-c792-11e6-aa58-5404a60d96b5" + }, + "atmos.pfull.tclm-al-hxy-u.mon.30S-90S": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "air_pressure", + "units": "Pa", + "cell_methods": "area: mean time: mean within years time: mean over years", + "cell_measures": "area: areacella", + "long_name": "Pressure at Model Full-Levels", + "comment": "Air pressure on model levels", + "dimensions": "longitude latitude alevel time2", + "out_name": "pfull", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "climatology", + "cmip6_table": "Amon", + "physical_parameter_name": "pfull", + "variableRootDD": "pfull", + "branding_label": "tclm-al-hxy-u", + "branded_variable_name": "pfull_tclm-al-hxy-u", + "region": "30S-90S", + "cmip6_compound_name": "Amon.pfullSouth30", + "cmip7_compound_name": "atmos.pfull.tclm-al-hxy-u.mon.30S-90S", + "uid": "80ac31b0-a698-11ef-914a-613c0433d878" + }, + "atmos.pfull.tclm-al-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "air_pressure", + "units": "Pa", + "cell_methods": "area: mean time: mean within years time: mean over years", + "cell_measures": "area: areacella", + "long_name": "Pressure at Model Full-Levels", + "comment": "Air pressure on model levels", + "dimensions": "longitude latitude alevel time2", + "out_name": "pfull", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "climatology", + "cmip6_table": "Amon", + "physical_parameter_name": "pfull", + "variableRootDD": "pfull", + "branding_label": "tclm-al-hxy-u", + "branded_variable_name": "pfull_tclm-al-hxy-u", + "region": "GLB", + "cmip6_compound_name": "Amon.pfull", + "cmip7_compound_name": "atmos.pfull.tclm-al-hxy-u.mon.GLB", + "uid": "bab32c1a-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.pfull.tpt-al-hs-u.subhr.GLB": { + "frequency": "subhr", + "modeling_realm": "atmos", + "standard_name": "air_pressure", + "units": "Pa", + "cell_methods": "area: point time: point", + "cell_measures": "", + "long_name": "Pressure at Model Full-Levels", + "comment": "Air pressure on model levels", + "dimensions": "alevel site time1", + "out_name": "pfull", + "type": "real", + "positive": "", + "spatial_shape": "S-A", + "temporal_shape": "time-point", + "cmip6_table": "CFsubhr", + "physical_parameter_name": "pfull", + "variableRootDD": "pfull", + "branding_label": "tpt-al-hs-u", + "branded_variable_name": "pfull_tpt-al-hs-u", + "region": "GLB", + "cmip6_compound_name": "CFsubhr.pfull", + "cmip7_compound_name": "atmos.pfull.tpt-al-hs-u.subhr.GLB", + "uid": "a955ee5e-817c-11e6-a4e2-5404a60d96b5" + }, + "atmos.pfull.tpt-al-hxy-u.3hr.GLB": { + "frequency": "3hr", + "modeling_realm": "atmos", + "standard_name": "air_pressure", + "units": "Pa", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Pressure at Model Full-Levels", + "comment": "Air pressure on model levels", + "dimensions": "longitude latitude alevel time1", + "out_name": "pfull", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-point", + "cmip6_table": "CF3hr", + "physical_parameter_name": "pfull", + "variableRootDD": "pfull", + "branding_label": "tpt-al-hxy-u", + "branded_variable_name": "pfull_tpt-al-hxy-u", + "region": "GLB", + "cmip6_compound_name": "CF3hr.pfull", + "cmip7_compound_name": "atmos.pfull.tpt-al-hxy-u.3hr.GLB", + "uid": "bab329c2-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.phalf.tavg-alh-hxy-u.day.GLB": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "air_pressure", + "units": "Pa", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Pressure on Model Half-Levels", + "comment": "Air pressure on model half-levels", + "dimensions": "longitude latitude alevhalf time", + "out_name": "phalf", + "type": "real", + "positive": "", + "spatial_shape": "XY-AH", + "temporal_shape": "time-intv", + "cmip6_table": "CFday", + "physical_parameter_name": "phalf", + "variableRootDD": "phalf", + "branding_label": "tavg-alh-hxy-u", + "branded_variable_name": "phalf_tavg-alh-hxy-u", + "region": "GLB", + "cmip6_compound_name": "CFday.phalf", + "cmip7_compound_name": "atmos.phalf.tavg-alh-hxy-u.day.GLB", + "uid": "bab33ec6-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.phalf.tavg-alh-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "air_pressure", + "units": "Pa", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Pressure on Model Half-Levels", + "comment": "The atmospheric pressure at the model layer interfaces for all times and levels in the associated output variables", + "dimensions": "longitude latitude alevhalf time", + "out_name": "phalf", + "type": "real", + "positive": "", + "spatial_shape": "XY-AH", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "phalf", + "variableRootDD": "phalf", + "branding_label": "tavg-alh-hxy-u", + "branded_variable_name": "phalf_tavg-alh-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.phalf", + "cmip7_compound_name": "atmos.phalf.tavg-alh-hxy-u.mon.GLB", + "uid": "01d4d80a-c792-11e6-aa58-5404a60d96b5" + }, + "atmos.phalf.tclm-alh-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "air_pressure", + "units": "Pa", + "cell_methods": "area: mean time: mean within years time: mean over years", + "cell_measures": "area: areacella", + "long_name": "Pressure on Model Half-Levels", + "comment": "Air pressure on model half-levels", + "dimensions": "longitude latitude alevhalf time2", + "out_name": "phalf", + "type": "real", + "positive": "", + "spatial_shape": "XY-AH", + "temporal_shape": "climatology", + "cmip6_table": "Amon", + "physical_parameter_name": "phalf", + "variableRootDD": "phalf", + "branding_label": "tclm-alh-hxy-u", + "branded_variable_name": "phalf_tclm-alh-hxy-u", + "region": "GLB", + "cmip6_compound_name": "Amon.phalf", + "cmip7_compound_name": "atmos.phalf.tclm-alh-hxy-u.mon.GLB", + "uid": "bab33d04-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.phalf.tpt-alh-hs-u.subhr.GLB": { + "frequency": "subhr", + "modeling_realm": "atmos", + "standard_name": "air_pressure", + "units": "Pa", + "cell_methods": "area: point time: point", + "cell_measures": "", + "long_name": "Pressure on Model Half-Levels", + "comment": "Air pressure on model half-levels", + "dimensions": "alevhalf site time1", + "out_name": "phalf", + "type": "real", + "positive": "", + "spatial_shape": "S-AH", + "temporal_shape": "time-point", + "cmip6_table": "CFsubhr", + "physical_parameter_name": "phalf", + "variableRootDD": "phalf", + "branding_label": "tpt-alh-hs-u", + "branded_variable_name": "phalf_tpt-alh-hs-u", + "region": "GLB", + "cmip6_compound_name": "CFsubhr.phalf", + "cmip7_compound_name": "atmos.phalf.tpt-alh-hs-u.subhr.GLB", + "uid": "a955fa84-817c-11e6-a4e2-5404a60d96b5" + }, + "atmos.pr.tavg-u-hxy-crp.day.GLB": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "precipitation_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean where crops (mask=cropFrac)", + "cell_measures": "area: areacella", + "long_name": "Precipitation over Crop Tile", + "comment": "includes both liquid and solid phases", + "dimensions": "longitude latitude time", + "out_name": "prCrop", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Eday", + "physical_parameter_name": "prCrop", + "variableRootDD": "pr", + "branding_label": "tavg-u-hxy-crp", + "branded_variable_name": "pr_tavg-u-hxy-crp", + "region": "GLB", + "cmip6_compound_name": "Eday.prCrop", + "cmip7_compound_name": "atmos.pr.tavg-u-hxy-crp.day.GLB", + "uid": "2eb1b640-b64e-11e6-b9ee-ac72891c3257" + }, + "atmos.pr.tavg-u-hxy-u.1hr.30S-90S": { + "frequency": "1hr", + "modeling_realm": "atmos", + "standard_name": "precipitation_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Precipitation", + "comment": "Total precipitation flux", + "dimensions": "longitude latitude time", + "out_name": "pr", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "E1hr", + "physical_parameter_name": "pr", + "variableRootDD": "pr", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "pr_tavg-u-hxy-u", + "region": "30S-90S", + "cmip6_compound_name": "E1hr.prSouth30", + "cmip7_compound_name": "atmos.pr.tavg-u-hxy-u.1hr.30S-90S", + "uid": "80ac31b4-a698-11ef-914a-613c0433d878" + }, + "atmos.pr.tavg-u-hxy-u.1hr.GLB": { + "frequency": "1hr", + "modeling_realm": "atmos", + "standard_name": "precipitation_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Precipitation", + "comment": "Total precipitation flux", + "dimensions": "longitude latitude time", + "out_name": "pr", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "E1hr", + "physical_parameter_name": "pr", + "variableRootDD": "pr", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "pr_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "E1hr.pr", + "cmip7_compound_name": "atmos.pr.tavg-u-hxy-u.1hr.GLB", + "uid": "8baebea6-4a5b-11e6-9cd2-ac72891c3257" + }, + "atmos.pr.tavg-u-hxy-u.3hr.GLB": { + "frequency": "3hr", + "modeling_realm": "atmos", + "standard_name": "precipitation_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Precipitation", + "comment": "at surface; includes both liquid and solid phases. This is the 3-hour mean precipitation flux.", + "dimensions": "longitude latitude time", + "out_name": "pr", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "3hr", + "physical_parameter_name": "pr", + "variableRootDD": "pr", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "pr_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "3hr.pr", + "cmip7_compound_name": "atmos.pr.tavg-u-hxy-u.3hr.GLB", + "uid": "bab3c904-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.pr.tavg-u-hxy-u.6hr.GLB": { + "frequency": "6hr", + "modeling_realm": "atmos", + "standard_name": "precipitation_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Precipitation", + "comment": "includes both liquid and solid phases", + "dimensions": "longitude latitude time", + "out_name": "pr", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "6hrPlev", + "physical_parameter_name": "pr", + "variableRootDD": "pr", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "pr_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "6hrPlev.pr", + "cmip7_compound_name": "atmos.pr.tavg-u-hxy-u.6hr.GLB", + "uid": "91044b3e-267c-11e7-8933-ac72891c3257" + }, + "atmos.pr.tavg-u-hxy-u.day.GLB": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "precipitation_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Precipitation", + "comment": "at surface; includes both liquid and solid phases from all types of clouds (both large-scale and convective)", + "dimensions": "longitude latitude time", + "out_name": "pr", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "day", + "physical_parameter_name": "pr", + "variableRootDD": "pr", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "pr_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "day.pr", + "cmip7_compound_name": "atmos.pr.tavg-u-hxy-u.day.GLB", + "uid": "bab3d692-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.pr.tavg-u-hxy-u.mon.30S-90S": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "precipitation_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Precipitation", + "comment": "at surface; includes both liquid and solid phases from all types of clouds (both large-scale and convective)", + "dimensions": "longitude latitude time", + "out_name": "pr", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Amon", + "physical_parameter_name": "pr", + "variableRootDD": "pr", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "pr_tavg-u-hxy-u", + "region": "30S-90S", + "cmip6_compound_name": "Amon.prSouth30", + "cmip7_compound_name": "atmos.pr.tavg-u-hxy-u.mon.30S-90S", + "uid": "80ac31b3-a698-11ef-914a-613c0433d878" + }, + "atmos.pr.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "precipitation_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Precipitation", + "comment": "at surface; includes both liquid and solid phases from all types of clouds (both large-scale and convective)", + "dimensions": "longitude latitude time", + "out_name": "pr", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Amon", + "physical_parameter_name": "pr", + "variableRootDD": "pr", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "pr_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "Amon.pr", + "cmip7_compound_name": "atmos.pr.tavg-u-hxy-u.mon.GLB", + "uid": "bab3cb52-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.pr.tmax-u-hxy-u.6hr.GLB": { + "frequency": "6hr", + "modeling_realm": "atmos", + "standard_name": "precipitation_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: mean time: maximum", + "cell_measures": "area: areacella", + "long_name": "Maximum Hourly Precipitation Rate", + "comment": "In accordance with common usage in geophysical disciplines, \"flux\" implies per unit area, called \"flux density\" in physics.", + "dimensions": "longitude latitude time", + "out_name": "prhmax", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "6hrPlev", + "physical_parameter_name": "prhmax", + "variableRootDD": "pr", + "branding_label": "tmax-u-hxy-u", + "branded_variable_name": "pr_tmax-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "6hrPlev.prhmax", + "cmip7_compound_name": "atmos.pr.tmax-u-hxy-u.6hr.GLB", + "uid": "9104b268-267c-11e7-8933-ac72891c3257" + }, + "atmos.pr.tmax-u-hxy-u.day.GLB": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "precipitation_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: mean time: maximum", + "cell_measures": "area: areacella", + "long_name": "Maximum Hourly Precipitation Rate", + "comment": "Daily Maximum Hourly Precipitation Rate", + "dimensions": "longitude latitude time", + "out_name": "prhmax", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Eday", + "physical_parameter_name": "prhmax", + "variableRootDD": "pr", + "branding_label": "tmax-u-hxy-u", + "branded_variable_name": "pr_tmax-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "Eday.prhmax", + "cmip7_compound_name": "atmos.pr.tmax-u-hxy-u.day.GLB", + "uid": "d237723e-4a9f-11e6-b84e-ac72891c3257" + }, + "atmos.pr.tmax-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "precipitation_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: mean time: maximum", + "cell_measures": "area: areacella", + "long_name": "Maximum Hourly Precipitation Rate", + "comment": "In accordance with common usage in geophysical disciplines, \"flux\" implies per unit area, called \"flux density\" in physics.", + "dimensions": "longitude latitude time", + "out_name": "prhmax", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "prhmax", + "variableRootDD": "pr", + "branding_label": "tmax-u-hxy-u", + "branded_variable_name": "pr_tmax-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "Emon.prhmax", + "cmip7_compound_name": "atmos.pr.tmax-u-hxy-u.mon.GLB", + "uid": "8b91ffaa-4a5b-11e6-9cd2-ac72891c3257" + }, + "atmos.pr.tpt-u-hs-u.subhr.GLB": { + "frequency": "subhr", + "modeling_realm": "atmos", + "standard_name": "precipitation_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: point time: point", + "cell_measures": "", + "long_name": "Precipitation", + "comment": "at surface; includes both liquid and solid phases from all types of clouds (both large-scale and convective)", + "dimensions": "site time1", + "out_name": "pr", + "type": "real", + "positive": "", + "spatial_shape": "S-na", + "temporal_shape": "time-point", + "cmip6_table": "CFsubhr", + "physical_parameter_name": "pr", + "variableRootDD": "pr", + "branding_label": "tpt-u-hs-u", + "branded_variable_name": "pr_tpt-u-hs-u", + "region": "GLB", + "cmip6_compound_name": "CFsubhr.pr", + "cmip7_compound_name": "atmos.pr.tpt-u-hs-u.subhr.GLB", + "uid": "8007ddbc-f906-11e6-a176-5404a60d96b5" + }, + "atmos.pr.tpt-u-hxy-u.3hr.GLB": { + "frequency": "3hr", + "modeling_realm": "atmos", + "standard_name": "precipitation_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Precipitation", + "comment": "at surface; includes both liquid and solid phases from all types of clouds (both large-scale and convective)", + "dimensions": "longitude latitude time1", + "out_name": "pr", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-point", + "cmip6_table": "CF3hr", + "physical_parameter_name": "pr", + "variableRootDD": "pr", + "branding_label": "tpt-u-hxy-u", + "branded_variable_name": "pr_tpt-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "CF3hr.pr", + "cmip7_compound_name": "atmos.pr.tpt-u-hxy-u.3hr.GLB", + "uid": "e0ab4ae8-4b7f-11e7-903f-5404a60d96b5" + }, + "atmos.pr.tpt-u-hxy-u.6hr.GLB": { + "frequency": "6hr", + "modeling_realm": "atmos", + "standard_name": "precipitation_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "surface precipitation", + "comment": "Total precipitation rate at the surface", + "dimensions": "longitude latitude time1", + "out_name": "pr", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-point", + "cmip6_table": "6hrPlevPt", + "physical_parameter_name": "pr", + "variableRootDD": "pr", + "branding_label": "tpt-u-hxy-u", + "branded_variable_name": "pr_tpt-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "6hrPlevPt.pr", + "cmip7_compound_name": "atmos.pr.tpt-u-hxy-u.6hr.GLB", + "uid": "83bbfc4f-7f07-11ef-9308-b1dd71e64bec" + }, + "atmos.pr17O.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "precipitation_flux_containing_17O", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Precipitation Flux of Water Containing Oxygen-17 (H2 17O)", + "comment": "Precipitation mass flux of water molecules that contain the oxygen-17 isotope (H2 17O), including solid and liquid phases.", + "dimensions": "longitude latitude time", + "out_name": "pr17O", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "pr17O", + "variableRootDD": "pr17O", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "pr17O_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "Emon.pr17O", + "cmip7_compound_name": "atmos.pr17O.tavg-u-hxy-u.mon.GLB", + "uid": "6f68bc22-9acb-11e6-b7ee-ac72891c3257" + }, + "atmos.pr18O.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "precipitation_flux_containing_18O", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Precipitation Flux of Water Containing Oxygen-18 (H2 18O)", + "comment": "Precipitation mass flux of water molecules that contain the oxygen-18 isotope (H2 18O), including solid and liquid phases.", + "dimensions": "longitude latitude time", + "out_name": "pr18O", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "pr18O", + "variableRootDD": "pr18O", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "pr18O_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "Emon.pr18O", + "cmip7_compound_name": "atmos.pr18O.tavg-u-hxy-u.mon.GLB", + "uid": "6f68a372-9acb-11e6-b7ee-ac72891c3257" + }, + "atmos.pr2h.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "precipitation_flux_containing_single_2H", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Precipitation Flux of Water Containing Deuterium (1H 2H O)", + "comment": "Precipitation mass flux of water molecules that contain one atom of the hydrogen-2 isotope (1H 2H O), including solid and liquid phases.", + "dimensions": "longitude latitude time", + "out_name": "pr2h", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "pr2h", + "variableRootDD": "pr2h", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "pr2h_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "Emon.pr2h", + "cmip7_compound_name": "atmos.pr2h.tavg-u-hxy-u.mon.GLB", + "uid": "6f68b074-9acb-11e6-b7ee-ac72891c3257" + }, + "atmos.prc.tavg-u-hxy-u.day.GLB": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "convective_precipitation_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Convective Precipitation", + "comment": "at surface; includes both liquid and solid phases.", + "dimensions": "longitude latitude time", + "out_name": "prc", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "day", + "physical_parameter_name": "prc", + "variableRootDD": "prc", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "prc_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "day.prc", + "cmip7_compound_name": "atmos.prc.tavg-u-hxy-u.day.GLB", + "uid": "bab3fde8-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.prc.tavg-u-hxy-u.mon.30S-90S": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "convective_precipitation_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Convective Precipitation", + "comment": "at surface; includes both liquid and solid phases.", + "dimensions": "longitude latitude time", + "out_name": "prc", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Amon", + "physical_parameter_name": "prc", + "variableRootDD": "prc", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "prc_tavg-u-hxy-u", + "region": "30S-90S", + "cmip6_compound_name": "Amon.prcSouth30", + "cmip7_compound_name": "atmos.prc.tavg-u-hxy-u.mon.30S-90S", + "uid": "80ac31b5-a698-11ef-914a-613c0433d878" + }, + "atmos.prc.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "convective_precipitation_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Convective Precipitation", + "comment": "at surface; includes both liquid and solid phases.", + "dimensions": "longitude latitude time", + "out_name": "prc", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Amon", + "physical_parameter_name": "prc", + "variableRootDD": "prc", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "prc_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "Amon.prc", + "cmip7_compound_name": "atmos.prc.tavg-u-hxy-u.mon.GLB", + "uid": "bab3f8a2-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.prc.tpt-u-hs-u.subhr.GLB": { + "frequency": "subhr", + "modeling_realm": "atmos", + "standard_name": "convective_precipitation_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: point time: point", + "cell_measures": "", + "long_name": "Convective Precipitation", + "comment": "at surface; includes both liquid and solid phases.", + "dimensions": "site time1", + "out_name": "prc", + "type": "real", + "positive": "", + "spatial_shape": "S-na", + "temporal_shape": "time-point", + "cmip6_table": "CFsubhr", + "physical_parameter_name": "prc", + "variableRootDD": "prc", + "branding_label": "tpt-u-hs-u", + "branded_variable_name": "prc_tpt-u-hs-u", + "region": "GLB", + "cmip6_compound_name": "CFsubhr.prc", + "cmip7_compound_name": "atmos.prc.tpt-u-hs-u.subhr.GLB", + "uid": "80080558-f906-11e6-a176-5404a60d96b5" + }, + "atmos.prra.tavg-u-hxy-is.mon.ATA": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "rainfall_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacellg", + "long_name": "Rainfall Flux over Land Ice", + "comment": "over Land Ice//quantity averaged over ice sheet (grounded ice sheet and floating ice shelf) only. Needed to analyse the impact of downscaling methods", + "dimensions": "longitude latitude time", + "out_name": "prra", + "type": "real", + "positive": "", + "spatial_shape": "XYA-na", + "temporal_shape": "time-intv", + "cmip6_table": "ImonAnt", + "physical_parameter_name": "prra", + "variableRootDD": "prra", + "branding_label": "tavg-u-hxy-is", + "branded_variable_name": "prra_tavg-u-hxy-is", + "region": "ATA", + "cmip6_compound_name": "ImonAnt.prra", + "cmip7_compound_name": "atmos.prra.tavg-u-hxy-is.mon.ATA", + "uid": "d5b3136c-c78d-11e6-9b25-5404a60d96b5" + }, + "atmos.prra.tavg-u-hxy-is.mon.GRL": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "rainfall_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacellg", + "long_name": "Rainfall Flux over Land Ice", + "comment": "over Land Ice//quantity averaged over ice sheet (grounded ice sheet and floating ice shelf) only. Needed to analyse the impact of downscaling methods", + "dimensions": "longitude latitude time", + "out_name": "prra", + "type": "real", + "positive": "", + "spatial_shape": "XYG-na", + "temporal_shape": "time-intv", + "cmip6_table": "ImonGre", + "physical_parameter_name": "prra", + "variableRootDD": "prra", + "branding_label": "tavg-u-hxy-is", + "branded_variable_name": "prra_tavg-u-hxy-is", + "region": "GRL", + "cmip6_compound_name": "ImonGre.prra", + "cmip7_compound_name": "atmos.prra.tavg-u-hxy-is.mon.GRL", + "uid": "d5b29cde-c78d-11e6-9b25-5404a60d96b5" + }, + "atmos.prra.tavg-u-hxy-lnd.day.GLB": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "rainfall_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Rainfall Flux over Land", + "comment": "rainfall_flux", + "dimensions": "longitude latitude time", + "out_name": "prra", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Eday", + "physical_parameter_name": "prra", + "variableRootDD": "prra", + "branding_label": "tavg-u-hxy-lnd", + "branded_variable_name": "prra_tavg-u-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "Eday.prra", + "cmip7_compound_name": "atmos.prra.tavg-u-hxy-lnd.day.GLB", + "uid": "d227fb60-4a9f-11e6-b84e-ac72891c3257" + }, + "atmos.prra.tavg-u-hxy-u.6hr.GLB": { + "frequency": "6hr", + "modeling_realm": "atmos", + "standard_name": "rainfall_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Rainfall Flux", + "comment": "Precipitation rate at surface: Includes precipitation of all forms of water in the liquid phase", + "dimensions": "longitude latitude time", + "out_name": "prra", + "type": "real", + "positive": "down", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "6hrPlev", + "physical_parameter_name": "prra", + "variableRootDD": "prra", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "prra_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "6hrPlev.prra", + "cmip7_compound_name": "atmos.prra.tavg-u-hxy-u.6hr.GLB", + "uid": "83bbfc5c-7f07-11ef-9308-b1dd71e64bec" + }, + "atmos.prra.tavg-u-hxy-u.mon.30S-90S": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "rainfall_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Rainfall Flux", + "comment": "Rainfall rate at surface: Includes precipitation of all forms of water in the liquid phase", + "dimensions": "longitude latitude time", + "out_name": "prra", + "type": "real", + "positive": "down", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Amon", + "physical_parameter_name": "prra", + "variableRootDD": "prra", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "prra_tavg-u-hxy-u", + "region": "30S-90S", + "cmip6_compound_name": "Amon.prraSouth30", + "cmip7_compound_name": "atmos.prra.tavg-u-hxy-u.mon.30S-90S", + "uid": "80ac31b6-a698-11ef-914a-613c0433d878" + }, + "atmos.prra.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "rainfall_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Rainfall Flux", + "comment": "Rainfall rate at surface: Includes precipitation of all forms of water in the liquid phase", + "dimensions": "longitude latitude time", + "out_name": "prra", + "type": "real", + "positive": "down", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Amon", + "physical_parameter_name": "prra", + "variableRootDD": "prra", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "prra_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "Amon.prra", + "cmip7_compound_name": "atmos.prra.tavg-u-hxy-u.mon.GLB", + "uid": "83bbfbe1-7f07-11ef-9308-b1dd71e64bec" + }, + "atmos.prrsn.tavg-u-hxy-lnd.day.GLB": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "mass_fraction_of_rainfall_falling_onto_surface_snow", + "units": "1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Fraction of Rainfall on Snow", + "comment": "mass_fraction_of_rainfall_onto_snow", + "dimensions": "longitude latitude time", + "out_name": "prrsn", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Eday", + "physical_parameter_name": "prrsn", + "variableRootDD": "prrsn", + "branding_label": "tavg-u-hxy-lnd", + "branded_variable_name": "prrsn_tavg-u-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "Eday.prrsn", + "cmip7_compound_name": "atmos.prrsn.tavg-u-hxy-lnd.day.GLB", + "uid": "d228be24-4a9f-11e6-b84e-ac72891c3257" + }, + "atmos.prsn.tavg-u-hxy-is.mon.ATA": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "snowfall_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacellg", + "long_name": "Snowfall Flux", + "comment": "quantity averaged over ice sheet (grounded ice sheet and floating ice shelf) only. Needed to analyse the impact of downscaling methods", + "dimensions": "longitude latitude time", + "out_name": "prsn", + "type": "real", + "positive": "", + "spatial_shape": "XYA-na", + "temporal_shape": "time-intv", + "cmip6_table": "ImonAnt", + "physical_parameter_name": "prsn", + "variableRootDD": "prsn", + "branding_label": "tavg-u-hxy-is", + "branded_variable_name": "prsn_tavg-u-hxy-is", + "region": "ATA", + "cmip6_compound_name": "ImonAnt.prsn", + "cmip7_compound_name": "atmos.prsn.tavg-u-hxy-is.mon.ATA", + "uid": "d5b30fc0-c78d-11e6-9b25-5404a60d96b5" + }, + "atmos.prsn.tavg-u-hxy-is.mon.GRL": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "snowfall_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacellg", + "long_name": "Snowfall Flux", + "comment": "quantity averaged over ice sheet (grounded ice sheet and floating ice shelf) only. Needed to analyse the impact of downscaling methods", + "dimensions": "longitude latitude time", + "out_name": "prsn", + "type": "real", + "positive": "", + "spatial_shape": "XYG-na", + "temporal_shape": "time-intv", + "cmip6_table": "ImonGre", + "physical_parameter_name": "prsn", + "variableRootDD": "prsn", + "branding_label": "tavg-u-hxy-is", + "branded_variable_name": "prsn_tavg-u-hxy-is", + "region": "GRL", + "cmip6_compound_name": "ImonGre.prsn", + "cmip7_compound_name": "atmos.prsn.tavg-u-hxy-is.mon.GRL", + "uid": "d5b2982e-c78d-11e6-9b25-5404a60d96b5" + }, + "atmos.prsn.tavg-u-hxy-u.3hr.GLB": { + "frequency": "3hr", + "modeling_realm": "atmos", + "standard_name": "snowfall_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Snowfall Flux", + "comment": "at surface. Includes precipitation of all forms water in the solid phase. This is the 3-hour mean snowfall flux.", + "dimensions": "longitude latitude time", + "out_name": "prsn", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "3hr", + "physical_parameter_name": "prsn", + "variableRootDD": "prsn", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "prsn_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "3hr.prsn", + "cmip7_compound_name": "atmos.prsn.tavg-u-hxy-u.3hr.GLB", + "uid": "bab42912-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.prsn.tavg-u-hxy-u.6hr.GLB": { + "frequency": "6hr", + "modeling_realm": "atmos", + "standard_name": "snowfall_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Snowfall Rate", + "comment": "Precipitation rate at surface: Includes precipitation of all forms of water in the solid phase.", + "dimensions": "longitude latitude time", + "out_name": "prsn", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "6hrPlev", + "physical_parameter_name": "prsn", + "variableRootDD": "prsn", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "prsn_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "6hrPlev.prsn", + "cmip7_compound_name": "atmos.prsn.tavg-u-hxy-u.6hr.GLB", + "uid": "83bbfc5b-7f07-11ef-9308-b1dd71e64bec" + }, + "atmos.prsn.tavg-u-hxy-u.day.GLB": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "snowfall_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Snowfall Flux", + "comment": "at surface; includes precipitation of all forms of water in the solid phase", + "dimensions": "longitude latitude time", + "out_name": "prsn", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "day", + "physical_parameter_name": "prsn", + "variableRootDD": "prsn", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "prsn_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "day.prsn", + "cmip7_compound_name": "atmos.prsn.tavg-u-hxy-u.day.GLB", + "uid": "bab43b50-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.prsn.tavg-u-hxy-u.mon.30S-90S": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "snowfall_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Snowfall Flux", + "comment": "at surface; includes precipitation of all forms of water in the solid phase", + "dimensions": "longitude latitude time", + "out_name": "prsn", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Amon", + "physical_parameter_name": "prsn", + "variableRootDD": "prsn", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "prsn_tavg-u-hxy-u", + "region": "30S-90S", + "cmip6_compound_name": "Amon.prsnSouth30", + "cmip7_compound_name": "atmos.prsn.tavg-u-hxy-u.mon.30S-90S", + "uid": "80ac31b7-a698-11ef-914a-613c0433d878" + }, + "atmos.prsn.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "snowfall_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Snowfall Flux", + "comment": "at surface; includes precipitation of all forms of water in the solid phase", + "dimensions": "longitude latitude time", + "out_name": "prsn", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Amon", + "physical_parameter_name": "prsn", + "variableRootDD": "prsn", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "prsn_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "Amon.prsn", + "cmip7_compound_name": "atmos.prsn.tavg-u-hxy-u.mon.GLB", + "uid": "bab42b88-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.prsn.tpt-u-hs-u.subhr.GLB": { + "frequency": "subhr", + "modeling_realm": "atmos", + "standard_name": "snowfall_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: point time: point", + "cell_measures": "", + "long_name": "Snowfall Flux", + "comment": "at surface; includes precipitation of all forms of water in the solid phase", + "dimensions": "site time1", + "out_name": "prsn", + "type": "real", + "positive": "", + "spatial_shape": "S-na", + "temporal_shape": "time-point", + "cmip6_table": "CFsubhr", + "physical_parameter_name": "prsn", + "variableRootDD": "prsn", + "branding_label": "tpt-u-hs-u", + "branded_variable_name": "prsn_tpt-u-hs-u", + "region": "GLB", + "cmip6_compound_name": "CFsubhr.prsn", + "cmip7_compound_name": "atmos.prsn.tpt-u-hs-u.subhr.GLB", + "uid": "8007f180-f906-11e6-a176-5404a60d96b5" + }, + "atmos.prsn18O.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "solid_precipitation_flux_containing_18O", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Precipitation Flux of Snow and Ice Containing Oxygen-18 (H2 18O)", + "comment": "Precipitation mass flux of water molecules that contain the oxygen-18 isotope (H2 18O), including solid phase only.", + "dimensions": "longitude latitude time", + "out_name": "prsn18O", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "prsn18O", + "variableRootDD": "prsn18O", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "prsn18O_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "Emon.prsn18O", + "cmip7_compound_name": "atmos.prsn18O.tavg-u-hxy-u.mon.GLB", + "uid": "6f68a9e4-9acb-11e6-b7ee-ac72891c3257" + }, + "atmos.prsn2h.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "solid_precipitation_flux_containing_single_2H", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Precipitation Flux of Snow and Ice Containing Deuterium (1H 2H O)", + "comment": "Precipitation mass flux of water molecules that contain one atom of the hydrogen-2 isotope (1H 2H O), including solid phase only.", + "dimensions": "longitude latitude time", + "out_name": "prsn2h", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "prsn2h", + "variableRootDD": "prsn2h", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "prsn2h_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "Emon.prsn2h", + "cmip7_compound_name": "atmos.prsn2h.tavg-u-hxy-u.mon.GLB", + "uid": "6f68b646-9acb-11e6-b7ee-ac72891c3257" + }, + "atmos.prsnc.tavg-u-hxy-lnd.day.GLB": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "convective_snowfall_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Convective Snowfall Flux", + "comment": "convective_snowfall_flux", + "dimensions": "longitude latitude time", + "out_name": "prsnc", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Eday", + "physical_parameter_name": "prsnc", + "variableRootDD": "prsnc", + "branding_label": "tavg-u-hxy-lnd", + "branded_variable_name": "prsnc_tavg-u-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "Eday.prsnc", + "cmip7_compound_name": "atmos.prsnc.tavg-u-hxy-lnd.day.GLB", + "uid": "d2280a56-4a9f-11e6-b84e-ac72891c3257" + }, + "atmos.prsnsn.tavg-u-hxy-lnd.day.GLB": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "mass_fraction_of_solid_precipitation_falling_onto_surface_snow", + "units": "1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Fraction of Snowfall (Including Hail and Graupel) on Snow", + "comment": "mass_fraction_of_snowfall_onto_snow", + "dimensions": "longitude latitude time", + "out_name": "prsnsn", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Eday", + "physical_parameter_name": "prsnsn", + "variableRootDD": "prsnsn", + "branding_label": "tavg-u-hxy-lnd", + "branded_variable_name": "prsnsn_tavg-u-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "Eday.prsnsn", + "cmip7_compound_name": "atmos.prsnsn.tavg-u-hxy-lnd.day.GLB", + "uid": "d228c2ca-4a9f-11e6-b84e-ac72891c3257" + }, + "atmos.prw.tavg-u-hxy-u.3hr.GLB": { + "frequency": "3hr", + "modeling_realm": "atmos", + "standard_name": "atmosphere_mass_content_of_water_vapor", + "units": "kg m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Water Vapor Path", + "comment": "Vertically integrated mass of water vapour through the atmospheric column", + "dimensions": "longitude latitude time", + "out_name": "prw", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "E3hr", + "physical_parameter_name": "prw", + "variableRootDD": "prw", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "prw_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "E3hr.prw", + "cmip7_compound_name": "atmos.prw.tavg-u-hxy-u.3hr.GLB", + "uid": "8bb0c1f6-4a5b-11e6-9cd2-ac72891c3257" + }, + "atmos.prw.tavg-u-hxy-u.day.GLB": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "atmosphere_mass_content_of_water_vapor", + "units": "kg m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Water Vapor Path", + "comment": "Vertically integrated mass of water vapour through the atmospheric column", + "dimensions": "longitude latitude time", + "out_name": "prw", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Eday", + "physical_parameter_name": "prw", + "variableRootDD": "prw", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "prw_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "Eday.prw", + "cmip7_compound_name": "atmos.prw.tavg-u-hxy-u.day.GLB", + "uid": "8b8fccc6-4a5b-11e6-9cd2-ac72891c3257" + }, + "atmos.prw.tavg-u-hxy-u.mon.30S-90S": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "atmosphere_mass_content_of_water_vapor", + "units": "kg m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Water Vapor Path", + "comment": "Vertically integrated mass of water vapour through the atmospheric column", + "dimensions": "longitude latitude time", + "out_name": "prw", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Amon", + "physical_parameter_name": "prw", + "variableRootDD": "prw", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "prw_tavg-u-hxy-u", + "region": "30S-90S", + "cmip6_compound_name": "Amon.prwSouth30", + "cmip7_compound_name": "atmos.prw.tavg-u-hxy-u.mon.30S-90S", + "uid": "80ac31b8-a698-11ef-914a-613c0433d878" + }, + "atmos.prw.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "atmosphere_mass_content_of_water_vapor", + "units": "kg m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Water Vapor Path", + "comment": "Vertically integrated mass of water vapour through the atmospheric column", + "dimensions": "longitude latitude time", + "out_name": "prw", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Amon", + "physical_parameter_name": "prw", + "variableRootDD": "prw", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "prw_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "Amon.prw", + "cmip7_compound_name": "atmos.prw.tavg-u-hxy-u.mon.GLB", + "uid": "bab45df6-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.prw.tpt-u-hs-u.subhr.GLB": { + "frequency": "subhr", + "modeling_realm": "atmos", + "standard_name": "atmosphere_mass_content_of_water_vapor", + "units": "kg m-2", + "cell_methods": "area: point time: point", + "cell_measures": "", + "long_name": "Water Vapor Path", + "comment": "Vertically integrated mass of water vapour through the atmospheric column", + "dimensions": "site time1", + "out_name": "prw", + "type": "real", + "positive": "", + "spatial_shape": "S-na", + "temporal_shape": "time-point", + "cmip6_table": "CFsubhr", + "physical_parameter_name": "prw", + "variableRootDD": "prw", + "branding_label": "tpt-u-hs-u", + "branded_variable_name": "prw_tpt-u-hs-u", + "region": "GLB", + "cmip6_compound_name": "CFsubhr.prw", + "cmip7_compound_name": "atmos.prw.tpt-u-hs-u.subhr.GLB", + "uid": "8009791a-f906-11e6-a176-5404a60d96b5" + }, + "atmos.prw.tpt-u-hxy-u.3hr.GLB": { + "frequency": "3hr", + "modeling_realm": "atmos", + "standard_name": "atmosphere_mass_content_of_water_vapor", + "units": "kg m-2", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Water Vapor Path", + "comment": "Vertically integrated mass of water vapour through the atmospheric column", + "dimensions": "longitude latitude time1", + "out_name": "prw", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-point", + "cmip6_table": "CF3hr", + "physical_parameter_name": "prw", + "variableRootDD": "prw", + "branding_label": "tpt-u-hxy-u", + "branded_variable_name": "prw_tpt-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "CF3hr.prw", + "cmip7_compound_name": "atmos.prw.tpt-u-hxy-u.3hr.GLB", + "uid": "e0ab5254-4b7f-11e7-903f-5404a60d96b5" + }, + "atmos.prw.tpt-u-hxy-u.6hr.GLB": { + "frequency": "6hr", + "modeling_realm": "atmos", + "standard_name": "atmosphere_mass_content_of_water_vapor", + "units": "kg m-2", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Water Vapor Path", + "comment": "Vertically integrated mass of water vapour through the atmospheric column", + "dimensions": "longitude latitude time1", + "out_name": "prw", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-point", + "cmip6_table": "6hrPlevPt", + "physical_parameter_name": "prw", + "variableRootDD": "prw", + "branding_label": "tpt-u-hxy-u", + "branded_variable_name": "prw_tpt-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "6hrPlevPt.prw", + "cmip7_compound_name": "atmos.prw.tpt-u-hxy-u.6hr.GLB", + "uid": "83bbfc4e-7f07-11ef-9308-b1dd71e64bec" + }, + "atmos.ps.tavg-u-hxy-u.1hr.GLB": { + "frequency": "1hr", + "modeling_realm": "atmos", + "standard_name": "surface_air_pressure", + "units": "Pa", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Surface Air Pressure", + "comment": "surface pressure (not mean sea-level pressure), 2-D field to calculate the 3-D pressure field from hybrid coordinates", + "dimensions": "longitude latitude time", + "out_name": "ps", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "AERhr", + "physical_parameter_name": "ps", + "variableRootDD": "ps", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "ps_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERhr.ps", + "cmip7_compound_name": "atmos.ps.tavg-u-hxy-u.1hr.GLB", + "uid": "19c071f8-81b1-11e6-92de-ac72891c3257" + }, + "atmos.ps.tavg-u-hxy-u.6hr.GLB": { + "frequency": "6hr", + "modeling_realm": "atmos", + "standard_name": "surface_air_pressure", + "units": "Pa", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Surface Air Pressure", + "comment": "Surface pressure, not mean sea level pressure", + "dimensions": "longitude latitude time", + "out_name": "ps", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "6hrPlev", + "physical_parameter_name": "ps", + "variableRootDD": "ps", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "ps_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "6hrPlev.ps", + "cmip7_compound_name": "atmos.ps.tavg-u-hxy-u.6hr.GLB", + "uid": "83bbfc5a-7f07-11ef-9308-b1dd71e64bec" + }, + "atmos.ps.tavg-u-hxy-u.day.GLB": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "surface_air_pressure", + "units": "Pa", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Surface Air Pressure", + "comment": "surface pressure (not mean sea-level pressure), 2-D field to calculate the 3-D pressure field from hybrid coordinates", + "dimensions": "longitude latitude time", + "out_name": "ps", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "CFday", + "physical_parameter_name": "ps", + "variableRootDD": "ps", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "ps_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "CFday.ps", + "cmip7_compound_name": "atmos.ps.tavg-u-hxy-u.day.GLB", + "uid": "bab46db4-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.ps.tavg-u-hxy-u.mon.30S-90S": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "surface_air_pressure", + "units": "Pa", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Surface Air Pressure", + "comment": "not, in general, the same as mean sea-level pressure", + "dimensions": "longitude latitude time", + "out_name": "ps", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Amon", + "physical_parameter_name": "ps", + "variableRootDD": "ps", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "ps_tavg-u-hxy-u", + "region": "30S-90S", + "cmip6_compound_name": "Amon.psSouth30", + "cmip7_compound_name": "atmos.ps.tavg-u-hxy-u.mon.30S-90S", + "uid": "80ac31b9-a698-11ef-914a-613c0433d878" + }, + "atmos.ps.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "surface_air_pressure", + "units": "Pa", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Surface Air Pressure", + "comment": "not, in general, the same as mean sea-level pressure", + "dimensions": "longitude latitude time", + "out_name": "ps", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Amon", + "physical_parameter_name": "ps", + "variableRootDD": "ps", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "ps_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "Amon.ps", + "cmip7_compound_name": "atmos.ps.tavg-u-hxy-u.mon.GLB", + "uid": "bab47b56-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.ps.tpt-u-hs-u.subhr.GLB": { + "frequency": "subhr", + "modeling_realm": "atmos", + "standard_name": "surface_air_pressure", + "units": "Pa", + "cell_methods": "area: point time: point", + "cell_measures": "", + "long_name": "Surface Air Pressure", + "comment": "not, in general, the same as mean sea-level pressure", + "dimensions": "site time1", + "out_name": "ps", + "type": "real", + "positive": "", + "spatial_shape": "S-na", + "temporal_shape": "time-point", + "cmip6_table": "CFsubhr", + "physical_parameter_name": "ps", + "variableRootDD": "ps", + "branding_label": "tpt-u-hs-u", + "branded_variable_name": "ps_tpt-u-hs-u", + "region": "GLB", + "cmip6_compound_name": "CFsubhr.ps", + "cmip7_compound_name": "atmos.ps.tpt-u-hs-u.subhr.GLB", + "uid": "80076742-f906-11e6-a176-5404a60d96b5" + }, + "atmos.ps.tpt-u-hxy-u.1hr.30S-90S": { + "frequency": "1hr", + "modeling_realm": "atmos", + "standard_name": "surface_air_pressure", + "units": "Pa", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Surface Air Pressure", + "comment": "Surface pressure.", + "dimensions": "longitude latitude time1", + "out_name": "ps", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-point", + "cmip6_table": "E1hr", + "physical_parameter_name": "ps", + "variableRootDD": "ps", + "branding_label": "tpt-u-hxy-u", + "branded_variable_name": "ps_tpt-u-hxy-u", + "region": "30S-90S", + "cmip6_compound_name": "E1hr.psSouth30", + "cmip7_compound_name": "atmos.ps.tpt-u-hxy-u.1hr.30S-90S", + "uid": "80ac31ba-a698-11ef-914a-613c0433d878" + }, + "atmos.ps.tpt-u-hxy-u.1hr.GLB": { + "frequency": "1hr", + "modeling_realm": "atmos", + "standard_name": "surface_air_pressure", + "units": "Pa", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Surface Air Pressure", + "comment": "Surface pressure.", + "dimensions": "longitude latitude time1", + "out_name": "ps", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-point", + "cmip6_table": "E1hr", + "physical_parameter_name": "ps", + "variableRootDD": "ps", + "branding_label": "tpt-u-hxy-u", + "branded_variable_name": "ps_tpt-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "E1hr.ps", + "cmip7_compound_name": "atmos.ps.tpt-u-hxy-u.1hr.GLB", + "uid": "83bbfbc5-7f07-11ef-9308-b1dd71e64bec" + }, + "atmos.ps.tpt-u-hxy-u.3hr.GLB": { + "frequency": "3hr", + "modeling_realm": "atmos", + "standard_name": "surface_air_pressure", + "units": "Pa", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Surface Air Pressure", + "comment": "sampled synoptically to diagnose atmospheric tides, this is better than mean sea level pressure.", + "dimensions": "longitude latitude time1", + "out_name": "ps", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-point", + "cmip6_table": "3hr", + "physical_parameter_name": "ps", + "variableRootDD": "ps", + "branding_label": "tpt-u-hxy-u", + "branded_variable_name": "ps_tpt-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "3hr.ps", + "cmip7_compound_name": "atmos.ps.tpt-u-hxy-u.3hr.GLB", + "uid": "bab47354-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.ps.tpt-u-hxy-u.6hr.GLB": { + "frequency": "6hr", + "modeling_realm": "atmos", + "standard_name": "surface_air_pressure", + "units": "Pa", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Surface Air Pressure", + "comment": "surface pressure, not mean sea level pressure", + "dimensions": "longitude latitude time1", + "out_name": "ps", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-point", + "cmip6_table": "6hrLev", + "physical_parameter_name": "ps", + "variableRootDD": "ps", + "branding_label": "tpt-u-hxy-u", + "branded_variable_name": "ps_tpt-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "6hrLev.ps", + "cmip7_compound_name": "atmos.ps.tpt-u-hxy-u.6hr.GLB", + "uid": "bab46b70-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.psitem.tavg-p39-hy-air.day.GLB": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "atmosphere_transformed_eulerian_mean_meridional_overturning_mass_streamfunction", + "units": "kg s-1", + "cell_methods": "longitude: time: mean where air", + "cell_measures": "", + "long_name": "Transformed Eulerian Mean Mass Streamfunction", + "comment": "zonal mean; hence YZT", + "dimensions": "latitude plev39 time", + "out_name": "psitem", + "type": "real", + "positive": "", + "spatial_shape": "Y-P39", + "temporal_shape": "time-intv", + "cmip6_table": "EdayZ", + "physical_parameter_name": "psitem", + "variableRootDD": "psitem", + "branding_label": "tavg-p39-hy-air", + "branded_variable_name": "psitem_tavg-p39-hy-air", + "region": "GLB", + "cmip6_compound_name": "EdayZ.psitem", + "cmip7_compound_name": "atmos.psitem.tavg-p39-hy-air.day.GLB", + "uid": "8b97f4be-4a5b-11e6-9cd2-ac72891c3257" + }, + "atmos.psl.tavg-u-hxy-u.6hr.GLB": { + "frequency": "6hr", + "modeling_realm": "atmos", + "standard_name": "air_pressure_at_mean_sea_level", + "units": "Pa", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Sea Level Pressure", + "comment": "Sea Level Pressure", + "dimensions": "longitude latitude time", + "out_name": "psl", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "6hrPlev", + "physical_parameter_name": "psl", + "variableRootDD": "psl", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "psl_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "6hrPlev.psl", + "cmip7_compound_name": "atmos.psl.tavg-u-hxy-u.6hr.GLB", + "uid": "910446fc-267c-11e7-8933-ac72891c3257" + }, + "atmos.psl.tavg-u-hxy-u.day.GLB": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "air_pressure_at_mean_sea_level", + "units": "Pa", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Sea Level Pressure", + "comment": "Sea Level Pressure", + "dimensions": "longitude latitude time", + "out_name": "psl", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "day", + "physical_parameter_name": "psl", + "variableRootDD": "psl", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "psl_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "day.psl", + "cmip7_compound_name": "atmos.psl.tavg-u-hxy-u.day.GLB", + "uid": "bab491f4-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.psl.tavg-u-hxy-u.mon.30S-90S": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "air_pressure_at_mean_sea_level", + "units": "Pa", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Sea Level Pressure", + "comment": "not, in general, the same as surface pressure", + "dimensions": "longitude latitude time", + "out_name": "psl", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Amon", + "physical_parameter_name": "psl", + "variableRootDD": "psl", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "psl_tavg-u-hxy-u", + "region": "30S-90S", + "cmip6_compound_name": "Amon.pslSouth30", + "cmip7_compound_name": "atmos.psl.tavg-u-hxy-u.mon.30S-90S", + "uid": "80ac31bb-a698-11ef-914a-613c0433d878" + }, + "atmos.psl.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "air_pressure_at_mean_sea_level", + "units": "Pa", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Sea Level Pressure", + "comment": "not, in general, the same as surface pressure", + "dimensions": "longitude latitude time", + "out_name": "psl", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Amon", + "physical_parameter_name": "psl", + "variableRootDD": "psl", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "psl_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "Amon.psl", + "cmip7_compound_name": "atmos.psl.tavg-u-hxy-u.mon.GLB", + "uid": "bab48ce0-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.psl.tpt-u-hs-u.subhr.GLB": { + "frequency": "subhr", + "modeling_realm": "atmos", + "standard_name": "air_pressure_at_mean_sea_level", + "units": "Pa", + "cell_methods": "area: point time: point", + "cell_measures": "", + "long_name": "Sea Level Pressure", + "comment": "not, in general, the same as surface pressure", + "dimensions": "site time1", + "out_name": "psl", + "type": "real", + "positive": "", + "spatial_shape": "S-na", + "temporal_shape": "time-point", + "cmip6_table": "CFsubhr", + "physical_parameter_name": "psl", + "variableRootDD": "psl", + "branding_label": "tpt-u-hs-u", + "branded_variable_name": "psl_tpt-u-hs-u", + "region": "GLB", + "cmip6_compound_name": "CFsubhr.psl", + "cmip7_compound_name": "atmos.psl.tpt-u-hs-u.subhr.GLB", + "uid": "800753d8-f906-11e6-a176-5404a60d96b5" + }, + "atmos.psl.tpt-u-hxy-u.1hr.GLB": { + "frequency": "1hr", + "modeling_realm": "atmos", + "standard_name": "air_pressure_at_mean_sea_level", + "units": "Pa", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Sea Level Pressure", + "comment": "Sea level pressure", + "dimensions": "longitude latitude time1", + "out_name": "psl", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-point", + "cmip6_table": "E1hr", + "physical_parameter_name": "psl", + "variableRootDD": "psl", + "branding_label": "tpt-u-hxy-u", + "branded_variable_name": "psl_tpt-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "E1hr.psl", + "cmip7_compound_name": "atmos.psl.tpt-u-hxy-u.1hr.GLB", + "uid": "8bb11ef8-4a5b-11e6-9cd2-ac72891c3257" + }, + "atmos.psl.tpt-u-hxy-u.6hr.GLB": { + "frequency": "6hr", + "modeling_realm": "atmos", + "standard_name": "air_pressure_at_mean_sea_level", + "units": "Pa", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Sea Level Pressure", + "comment": "Sea Level Pressure", + "dimensions": "longitude latitude time1", + "out_name": "psl", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-point", + "cmip6_table": "6hrPlevPt", + "physical_parameter_name": "psl", + "variableRootDD": "psl", + "branding_label": "tpt-u-hxy-u", + "branded_variable_name": "psl_tpt-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "6hrPlevPt.psl", + "cmip7_compound_name": "atmos.psl.tpt-u-hxy-u.6hr.GLB", + "uid": "816898e0-f906-11e6-a176-5404a60d96b5" + }, + "atmos.ptp.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "tropopause_air_pressure", + "units": "Pa", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Tropopause Air Pressure", + "comment": "2D monthly mean thermal tropopause calculated using WMO tropopause definition on 3d temperature", + "dimensions": "longitude latitude time", + "out_name": "ptp", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "ptp", + "variableRootDD": "ptp", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "ptp_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.ptp", + "cmip7_compound_name": "atmos.ptp.tavg-u-hxy-u.mon.GLB", + "uid": "19be3f96-81b1-11e6-92de-ac72891c3257" + }, + "atmos.reffcclwtop.tavg-u-hxy-ccl.day.GLB": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "effective_radius_of_convective_cloud_liquid_water_particles_at_convective_liquid_water_cloud_top", + "units": "m", + "cell_methods": "area: time: mean where convective_cloud (weighted by area of upper-most convective liquid water cloud layer)", + "cell_measures": "area: areacella", + "long_name": "Cloud-Top Effective Droplet Radius in Convective Cloud", + "comment": "Droplets are liquid only. This is the effective radius \"as seen from space\" over convective liquid cloudy portion of grid cell. This is the value from uppermost model layer with liquid cloud or, if available, or for some models it is the sum over all liquid cloud tops, no matter where they occur, as long as they are seen from the top of the atmosphere. Reported values are weighted by total liquid cloud top fraction of (as seen from TOA) each time sample when computing monthly mean.daily data, separated to large-scale clouds, convective clouds. If any of the cloud is from more than one process (i.e. shallow convection), please provide them separately.", + "dimensions": "longitude latitude time", + "out_name": "reffcclwtop", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Eday", + "physical_parameter_name": "reffcclwtop", + "variableRootDD": "reffcclwtop", + "branding_label": "tavg-u-hxy-ccl", + "branded_variable_name": "reffcclwtop_tavg-u-hxy-ccl", + "region": "GLB", + "cmip6_compound_name": "Eday.reffcclwtop", + "cmip7_compound_name": "atmos.reffcclwtop.tavg-u-hxy-ccl.day.GLB", + "uid": "8b8b322e-4a5b-11e6-9cd2-ac72891c3257" + }, + "atmos.reffcclwtop.tavg-u-hxy-ccl.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "effective_radius_of_convective_cloud_liquid_water_particles_at_convective_liquid_water_cloud_top", + "units": "m", + "cell_methods": "area: time: mean where convective_cloud (weighted by area of upper-most convective liquid water cloud layer)", + "cell_measures": "area: areacella", + "long_name": "Cloud-Top Effective Droplet Radius in Convective Cloud", + "comment": "Cloud-Top Effective Droplet Radius in Convective Cloud", + "dimensions": "longitude latitude time", + "out_name": "reffcclwtop", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "reffcclwtop", + "variableRootDD": "reffcclwtop", + "branding_label": "tavg-u-hxy-ccl", + "branded_variable_name": "reffcclwtop_tavg-u-hxy-ccl", + "region": "GLB", + "cmip6_compound_name": "Emon.reffcclwtop", + "cmip7_compound_name": "atmos.reffcclwtop.tavg-u-hxy-ccl.mon.GLB", + "uid": "83bbfb9d-7f07-11ef-9308-b1dd71e64bec" + }, + "atmos.reffclic.tavg-al-hxy-ccl.mon.30S-90S": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "effective_radius_of_convective_cloud_ice_particles", + "units": "m", + "cell_methods": "area: time: mean where convective_cloud", + "cell_measures": "area: areacella", + "long_name": "Hydrometeor Effective Radius of Convective Cloud Ice", + "comment": "This is defined as the in-cloud ratio of the third moment over the second moment of the particle size distribution (obtained by considering only the cloudy portion of the grid cell).", + "dimensions": "longitude latitude alevel time", + "out_name": "reffclic", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "reffclic", + "variableRootDD": "reffclic", + "branding_label": "tavg-al-hxy-ccl", + "branded_variable_name": "reffclic_tavg-al-hxy-ccl", + "region": "30S-90S", + "cmip6_compound_name": "Emon.reffclicSouth30", + "cmip7_compound_name": "atmos.reffclic.tavg-al-hxy-ccl.mon.30S-90S", + "uid": "80ac31bc-a698-11ef-914a-613c0433d878" + }, + "atmos.reffclic.tavg-al-hxy-ccl.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "effective_radius_of_convective_cloud_ice_particles", + "units": "m", + "cell_methods": "area: time: mean where convective_cloud", + "cell_measures": "area: areacella", + "long_name": "Hydrometeor Effective Radius of Convective Cloud Ice", + "comment": "This is defined as the in-cloud ratio of the third moment over the second moment of the particle size distribution (obtained by considering only the cloudy portion of the grid cell).", + "dimensions": "longitude latitude alevel time", + "out_name": "reffclic", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "reffclic", + "variableRootDD": "reffclic", + "branding_label": "tavg-al-hxy-ccl", + "branded_variable_name": "reffclic_tavg-al-hxy-ccl", + "region": "GLB", + "cmip6_compound_name": "Emon.reffclic", + "cmip7_compound_name": "atmos.reffclic.tavg-al-hxy-ccl.mon.GLB", + "uid": "8b89e87e-4a5b-11e6-9cd2-ac72891c3257" + }, + "atmos.reffclic.tpt-al-hs-ccl.subhr.GLB": { + "frequency": "subhr", + "modeling_realm": "atmos", + "standard_name": "effective_radius_of_convective_cloud_ice_particles", + "units": "m", + "cell_methods": "area: mean where convective_cloud time: point", + "cell_measures": "", + "long_name": "Hydrometeor Effective Radius of Convective Cloud Ice", + "comment": "alevel site time1", + "dimensions": "alevel site time1", + "out_name": "reffclic", + "type": "real", + "positive": "", + "spatial_shape": "S-A", + "temporal_shape": "time-point", + "cmip6_table": "Esubhr", + "physical_parameter_name": "reffclic", + "variableRootDD": "reffclic", + "branding_label": "tpt-al-hs-ccl", + "branded_variable_name": "reffclic_tpt-al-hs-ccl", + "region": "GLB", + "cmip6_compound_name": "Esubhr.reffclic", + "cmip7_compound_name": "atmos.reffclic.tpt-al-hs-ccl.subhr.GLB", + "uid": "8b8a2e24-4a5b-11e6-9cd2-ac72891c3257" + }, + "atmos.reffclic.tpt-al-hxy-ccl.3hr.GLB": { + "frequency": "3hr", + "modeling_realm": "atmos", + "standard_name": "effective_radius_of_convective_cloud_ice_particles", + "units": "m", + "cell_methods": "area: mean where convective_cloud time: point", + "cell_measures": "area: areacella", + "long_name": "Hydrometeor Effective Radius of Convective Cloud Ice", + "comment": "This is defined as the in-cloud ratio of the third moment over the second moment of the particle size distribution (obtained by considering only the cloudy portion of the grid cell).", + "dimensions": "longitude latitude alevel time1", + "out_name": "reffclic", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-point", + "cmip6_table": "CF3hr", + "physical_parameter_name": "reffclic", + "variableRootDD": "reffclic", + "branding_label": "tpt-al-hxy-ccl", + "branded_variable_name": "reffclic_tpt-al-hxy-ccl", + "region": "GLB", + "cmip6_compound_name": "CF3hr.reffclic", + "cmip7_compound_name": "atmos.reffclic.tpt-al-hxy-ccl.3hr.GLB", + "uid": "bab4d0ba-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.reffclis.tavg-al-hxy-scl.mon.30S-90S": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "effective_radius_of_stratiform_cloud_ice_particles", + "units": "m", + "cell_methods": "area: time: mean where stratiform_cloud", + "cell_measures": "area: areacella", + "long_name": "Hydrometeor Effective Radius of Stratiform Cloud Ice", + "comment": "This is defined as the in-cloud ratio of the third moment over the second moment of the particle size distribution (obtained by considering only the cloudy portion of the grid cell).", + "dimensions": "longitude latitude alevel time", + "out_name": "reffclis", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "reffclis", + "variableRootDD": "reffclis", + "branding_label": "tavg-al-hxy-scl", + "branded_variable_name": "reffclis_tavg-al-hxy-scl", + "region": "30S-90S", + "cmip6_compound_name": "Emon.reffclisSouth30", + "cmip7_compound_name": "atmos.reffclis.tavg-al-hxy-scl.mon.30S-90S", + "uid": "80ac31bd-a698-11ef-914a-613c0433d878" + }, + "atmos.reffclis.tavg-al-hxy-scl.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "effective_radius_of_stratiform_cloud_ice_particles", + "units": "m", + "cell_methods": "area: time: mean where stratiform_cloud", + "cell_measures": "area: areacella", + "long_name": "Hydrometeor Effective Radius of Stratiform Cloud Ice", + "comment": "This is defined as the in-cloud ratio of the third moment over the second moment of the particle size distribution (obtained by considering only the cloudy portion of the grid cell).", + "dimensions": "longitude latitude alevel time", + "out_name": "reffclis", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "reffclis", + "variableRootDD": "reffclis", + "branding_label": "tavg-al-hxy-scl", + "branded_variable_name": "reffclis_tavg-al-hxy-scl", + "region": "GLB", + "cmip6_compound_name": "Emon.reffclis", + "cmip7_compound_name": "atmos.reffclis.tavg-al-hxy-scl.mon.GLB", + "uid": "8b89deba-4a5b-11e6-9cd2-ac72891c3257" + }, + "atmos.reffclis.tpt-al-hs-scl.subhr.GLB": { + "frequency": "subhr", + "modeling_realm": "atmos", + "standard_name": "effective_radius_of_stratiform_cloud_ice_particles", + "units": "m", + "cell_methods": "area: mean where stratiform_cloud time: point", + "cell_measures": "", + "long_name": "Hydrometeor Effective Radius of Stratiform Cloud Ice", + "comment": "alevel site time1", + "dimensions": "alevel site time1", + "out_name": "reffclis", + "type": "real", + "positive": "", + "spatial_shape": "S-A", + "temporal_shape": "time-point", + "cmip6_table": "Esubhr", + "physical_parameter_name": "reffclis", + "variableRootDD": "reffclis", + "branding_label": "tpt-al-hs-scl", + "branded_variable_name": "reffclis_tpt-al-hs-scl", + "region": "GLB", + "cmip6_compound_name": "Esubhr.reffclis", + "cmip7_compound_name": "atmos.reffclis.tpt-al-hs-scl.subhr.GLB", + "uid": "8b8a2492-4a5b-11e6-9cd2-ac72891c3257" + }, + "atmos.reffclis.tpt-al-hxy-scl.3hr.GLB": { + "frequency": "3hr", + "modeling_realm": "atmos", + "standard_name": "effective_radius_of_stratiform_cloud_ice_particles", + "units": "m", + "cell_methods": "area: mean where stratiform_cloud time: point", + "cell_measures": "area: areacella", + "long_name": "Hydrometeor Effective Radius of Stratiform Cloud Ice", + "comment": "This is defined as the in-cloud ratio of the third moment over the second moment of the particle size distribution (obtained by considering only the cloudy portion of the grid cell).", + "dimensions": "longitude latitude alevel time1", + "out_name": "reffclis", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-point", + "cmip6_table": "CF3hr", + "physical_parameter_name": "reffclis", + "variableRootDD": "reffclis", + "branding_label": "tpt-al-hxy-scl", + "branded_variable_name": "reffclis_tpt-al-hxy-scl", + "region": "GLB", + "cmip6_compound_name": "CF3hr.reffclis", + "cmip7_compound_name": "atmos.reffclis.tpt-al-hxy-scl.3hr.GLB", + "uid": "bab4d330-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.reffclwc.tavg-al-hxy-ccl.mon.30S-90S": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "effective_radius_of_convective_cloud_liquid_water_particles", + "units": "m", + "cell_methods": "area: time: mean where convective_cloud", + "cell_measures": "area: areacella", + "long_name": "Convective Cloud Liquid Droplet Effective Radius", + "comment": "Droplets are liquid. The effective radius is defined as the ratio of the third moment over the second moment of the particle size distribution and the time-mean should be calculated, weighting the individual samples by the cloudy fraction of the grid cell.", + "dimensions": "longitude latitude alevel time", + "out_name": "reffclwc", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "reffclwc", + "variableRootDD": "reffclwc", + "branding_label": "tavg-al-hxy-ccl", + "branded_variable_name": "reffclwc_tavg-al-hxy-ccl", + "region": "30S-90S", + "cmip6_compound_name": "Emon.reffclwcSouth30", + "cmip7_compound_name": "atmos.reffclwc.tavg-al-hxy-ccl.mon.30S-90S", + "uid": "80ac31be-a698-11ef-914a-613c0433d878" + }, + "atmos.reffclwc.tavg-al-hxy-ccl.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "effective_radius_of_convective_cloud_liquid_water_particles", + "units": "m", + "cell_methods": "area: time: mean where convective_cloud", + "cell_measures": "area: areacella", + "long_name": "Convective Cloud Liquid Droplet Effective Radius", + "comment": "Droplets are liquid. The effective radius is defined as the ratio of the third moment over the second moment of the particle size distribution and the time-mean should be calculated, weighting the individual samples by the cloudy fraction of the grid cell.", + "dimensions": "longitude latitude alevel time", + "out_name": "reffclwc", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "reffclwc", + "variableRootDD": "reffclwc", + "branding_label": "tavg-al-hxy-ccl", + "branded_variable_name": "reffclwc_tavg-al-hxy-ccl", + "region": "GLB", + "cmip6_compound_name": "Emon.reffclwc", + "cmip7_compound_name": "atmos.reffclwc.tavg-al-hxy-ccl.mon.GLB", + "uid": "8b89e3a6-4a5b-11e6-9cd2-ac72891c3257" + }, + "atmos.reffclwc.tpt-al-hs-ccl.subhr.GLB": { + "frequency": "subhr", + "modeling_realm": "atmos", + "standard_name": "effective_radius_of_convective_cloud_liquid_water_particles", + "units": "m", + "cell_methods": "area: mean where convective_cloud time: point", + "cell_measures": "", + "long_name": "Convective Cloud Liquid Droplet Effective Radius", + "comment": "alevel site time1", + "dimensions": "alevel site time1", + "out_name": "reffclwc", + "type": "real", + "positive": "", + "spatial_shape": "S-A", + "temporal_shape": "time-point", + "cmip6_table": "Esubhr", + "physical_parameter_name": "reffclwc", + "variableRootDD": "reffclwc", + "branding_label": "tpt-al-hs-ccl", + "branded_variable_name": "reffclwc_tpt-al-hs-ccl", + "region": "GLB", + "cmip6_compound_name": "Esubhr.reffclwc", + "cmip7_compound_name": "atmos.reffclwc.tpt-al-hs-ccl.subhr.GLB", + "uid": "8b8a296a-4a5b-11e6-9cd2-ac72891c3257" + }, + "atmos.reffclwc.tpt-al-hxy-ccl.3hr.GLB": { + "frequency": "3hr", + "modeling_realm": "atmos", + "standard_name": "effective_radius_of_convective_cloud_liquid_water_particles", + "units": "m", + "cell_methods": "area: mean where convective_cloud time: point", + "cell_measures": "area: areacella", + "long_name": "Convective Cloud Liquid Droplet Effective Radius", + "comment": "This is defined as the in-cloud ratio of the third moment over the second moment of the particle size distribution (obtained by considering only the cloudy portion of the grid cell).", + "dimensions": "longitude latitude alevel time1", + "out_name": "reffclwc", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-point", + "cmip6_table": "CF3hr", + "physical_parameter_name": "reffclwc", + "variableRootDD": "reffclwc", + "branding_label": "tpt-al-hxy-ccl", + "branded_variable_name": "reffclwc_tpt-al-hxy-ccl", + "region": "GLB", + "cmip6_compound_name": "CF3hr.reffclwc", + "cmip7_compound_name": "atmos.reffclwc.tpt-al-hxy-ccl.3hr.GLB", + "uid": "bab4dac4-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.reffclws.tavg-al-hxy-scl.mon.30S-90S": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "effective_radius_of_stratiform_cloud_liquid_water_particles", + "units": "m", + "cell_methods": "area: time: mean where stratiform_cloud", + "cell_measures": "area: areacella", + "long_name": "Stratiform Cloud Liquid Droplet Effective Radius", + "comment": "Droplets are liquid. The effective radius is defined as the ratio of the third moment over the second moment of the particle size distribution and the time-mean should be calculated, weighting the individual samples by the cloudy fraction of the grid cell.", + "dimensions": "longitude latitude alevel time", + "out_name": "reffclws", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "reffclws", + "variableRootDD": "reffclws", + "branding_label": "tavg-al-hxy-scl", + "branded_variable_name": "reffclws_tavg-al-hxy-scl", + "region": "30S-90S", + "cmip6_compound_name": "Emon.reffclwsSouth30", + "cmip7_compound_name": "atmos.reffclws.tavg-al-hxy-scl.mon.30S-90S", + "uid": "80ac31bf-a698-11ef-914a-613c0433d878" + }, + "atmos.reffclws.tavg-al-hxy-scl.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "effective_radius_of_stratiform_cloud_liquid_water_particles", + "units": "m", + "cell_methods": "area: time: mean where stratiform_cloud", + "cell_measures": "area: areacella", + "long_name": "Stratiform Cloud Liquid Droplet Effective Radius", + "comment": "Droplets are liquid. The effective radius is defined as the ratio of the third moment over the second moment of the particle size distribution and the time-mean should be calculated, weighting the individual samples by the cloudy fraction of the grid cell.", + "dimensions": "longitude latitude alevel time", + "out_name": "reffclws", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "reffclws", + "variableRootDD": "reffclws", + "branding_label": "tavg-al-hxy-scl", + "branded_variable_name": "reffclws_tavg-al-hxy-scl", + "region": "GLB", + "cmip6_compound_name": "Emon.reffclws", + "cmip7_compound_name": "atmos.reffclws.tavg-al-hxy-scl.mon.GLB", + "uid": "8b89d9a6-4a5b-11e6-9cd2-ac72891c3257" + }, + "atmos.reffclws.tpt-al-hs-scl.subhr.GLB": { + "frequency": "subhr", + "modeling_realm": "atmos", + "standard_name": "effective_radius_of_stratiform_cloud_liquid_water_particles", + "units": "m", + "cell_methods": "area: mean where stratiform_cloud time: point", + "cell_measures": "", + "long_name": "Stratiform Cloud Liquid Droplet Effective Radius", + "comment": "alevel site time1", + "dimensions": "alevel site time1", + "out_name": "reffclws", + "type": "real", + "positive": "", + "spatial_shape": "S-A", + "temporal_shape": "time-point", + "cmip6_table": "Esubhr", + "physical_parameter_name": "reffclws", + "variableRootDD": "reffclws", + "branding_label": "tpt-al-hs-scl", + "branded_variable_name": "reffclws_tpt-al-hs-scl", + "region": "GLB", + "cmip6_compound_name": "Esubhr.reffclws", + "cmip7_compound_name": "atmos.reffclws.tpt-al-hs-scl.subhr.GLB", + "uid": "8b8a1f56-4a5b-11e6-9cd2-ac72891c3257" + }, + "atmos.reffclws.tpt-al-hxy-scl.3hr.GLB": { + "frequency": "3hr", + "modeling_realm": "atmos", + "standard_name": "effective_radius_of_stratiform_cloud_liquid_water_particles", + "units": "m", + "cell_methods": "area: mean where stratiform_cloud time: point", + "cell_measures": "area: areacella", + "long_name": "Stratiform Cloud Liquid Droplet Effective Radius", + "comment": "This is defined as the in-cloud ratio of the third moment over the second moment of the particle size distribution (obtained by considering only the cloudy portion of the grid cell).", + "dimensions": "longitude latitude alevel time1", + "out_name": "reffclws", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-point", + "cmip6_table": "CF3hr", + "physical_parameter_name": "reffclws", + "variableRootDD": "reffclws", + "branding_label": "tpt-al-hxy-scl", + "branded_variable_name": "reffclws_tpt-al-hxy-scl", + "region": "GLB", + "cmip6_compound_name": "CF3hr.reffclws", + "cmip7_compound_name": "atmos.reffclws.tpt-al-hxy-scl.3hr.GLB", + "uid": "bab4dfc4-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.reffsclwtop.tavg-u-hxy-scl.day.GLB": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "effective_radius_of_stratiform_cloud_liquid_water_particles_at_stratiform_liquid_water_cloud_top", + "units": "m", + "cell_methods": "area: time: mean where stratiform_cloud (weighted by area of upper-most stratiform liquid water layer)", + "cell_measures": "area: areacella", + "long_name": "Cloud-Top Effective Droplet Radius in Stratiform Cloud", + "comment": "Droplets are liquid only. This is the effective radius \"as seen from space\" over liquid stratiform cloudy portion of grid cell. This is the value from uppermost model layer with liquid cloud or, if available, or for some models it is the sum over all liquid cloud tops, no matter where they occur, as long as they are seen from the top of the atmosphere. Reported values are weighted by total liquid cloud top fraction of (as seen from TOA) each time sample when computing monthly mean.daily data, separated to large-scale clouds, convective clouds. If any of the cloud is from more than one process (i.e. shallow convection), please provide them separately.", + "dimensions": "longitude latitude time", + "out_name": "reffsclwtop", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Eday", + "physical_parameter_name": "reffsclwtop", + "variableRootDD": "reffsclwtop", + "branding_label": "tavg-u-hxy-scl", + "branded_variable_name": "reffsclwtop_tavg-u-hxy-scl", + "region": "GLB", + "cmip6_compound_name": "Eday.reffsclwtop", + "cmip7_compound_name": "atmos.reffsclwtop.tavg-u-hxy-scl.day.GLB", + "uid": "8b8b2a5e-4a5b-11e6-9cd2-ac72891c3257" + }, + "atmos.reffsclwtop.tavg-u-hxy-scl.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "effective_radius_of_stratiform_cloud_liquid_water_particles_at_stratiform_liquid_water_cloud_top", + "units": "m", + "cell_methods": "area: time: mean where stratiform_cloud (weighted by area of upper-most stratiform liquid water layer)", + "cell_measures": "area: areacella", + "long_name": "Cloud-Top Effective Droplet Radius in Stratiform Cloud", + "comment": "Cloud-Top Effective Droplet Radius in Stratiform Cloud", + "dimensions": "longitude latitude time", + "out_name": "reffsclwtop", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "reffsclwtop", + "variableRootDD": "reffsclwtop", + "branding_label": "tavg-u-hxy-scl", + "branded_variable_name": "reffsclwtop_tavg-u-hxy-scl", + "region": "GLB", + "cmip6_compound_name": "Emon.reffsclwtop", + "cmip7_compound_name": "atmos.reffsclwtop.tavg-u-hxy-scl.mon.GLB", + "uid": "83bbfb9b-7f07-11ef-9308-b1dd71e64bec" + }, + "atmos.rld.tavg-alh-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "downwelling_longwave_flux_in_air", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Downwelling Longwave Radiation", + "comment": "Includes also the fluxes at the surface and TOA.", + "dimensions": "longitude latitude alevhalf time", + "out_name": "rld", + "type": "real", + "positive": "down", + "spatial_shape": "XY-AH", + "temporal_shape": "time-intv", + "cmip6_table": "CFmon", + "physical_parameter_name": "rld", + "variableRootDD": "rld", + "branding_label": "tavg-alh-hxy-u", + "branded_variable_name": "rld_tavg-alh-hxy-u", + "region": "GLB", + "cmip6_compound_name": "CFmon.rld", + "cmip7_compound_name": "atmos.rld.tavg-alh-hxy-u.mon.GLB", + "uid": "bab51cf0-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.rld.tpt-alh-hs-u.subhr.GLB": { + "frequency": "subhr", + "modeling_realm": "atmos", + "standard_name": "downwelling_longwave_flux_in_air", + "units": "W m-2", + "cell_methods": "area: point time: point", + "cell_measures": "", + "long_name": "Downwelling Longwave Radiation", + "comment": "Downwelling Longwave Radiation (includes the fluxes at the surface and TOA)", + "dimensions": "alevhalf site time1", + "out_name": "rld", + "type": "real", + "positive": "down", + "spatial_shape": "S-AH", + "temporal_shape": "time-point", + "cmip6_table": "CFsubhr", + "physical_parameter_name": "rld", + "variableRootDD": "rld", + "branding_label": "tpt-alh-hs-u", + "branded_variable_name": "rld_tpt-alh-hs-u", + "region": "GLB", + "cmip6_compound_name": "CFsubhr.rld", + "cmip7_compound_name": "atmos.rld.tpt-alh-hs-u.subhr.GLB", + "uid": "a95502a0-817c-11e6-a4e2-5404a60d96b5" + }, + "atmos.rld4co2.tavg-alh-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "downwelling_longwave_flux_in_air", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Downwelling Longwave Radiation 4XCO2 Atmosphere", + "comment": "Downwelling longwave radiation calculated using carbon dioxide concentrations increased fourfold (includes the fluxes at the surface and TOA)", + "dimensions": "longitude latitude alevhalf time", + "out_name": "rld4co2", + "type": "real", + "positive": "down", + "spatial_shape": "XY-AH", + "temporal_shape": "time-intv", + "cmip6_table": "CFmon", + "physical_parameter_name": "rld4co2", + "variableRootDD": "rld4co2", + "branding_label": "tavg-alh-hxy-u", + "branded_variable_name": "rld4co2_tavg-alh-hxy-u", + "region": "GLB", + "cmip6_compound_name": "CFmon.rld4co2", + "cmip7_compound_name": "atmos.rld4co2.tavg-alh-hxy-u.mon.GLB", + "uid": "bab51a98-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.rldcs.tavg-alh-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "downwelling_longwave_flux_in_air_assuming_clear_sky", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Downwelling Clear-Sky Longwave Radiation", + "comment": "Includes also the fluxes at the surface and TOA.", + "dimensions": "longitude latitude alevhalf time", + "out_name": "rldcs", + "type": "real", + "positive": "down", + "spatial_shape": "XY-AH", + "temporal_shape": "time-intv", + "cmip6_table": "CFmon", + "physical_parameter_name": "rldcs", + "variableRootDD": "rldcs", + "branding_label": "tavg-alh-hxy-u", + "branded_variable_name": "rldcs_tavg-alh-hxy-u", + "region": "GLB", + "cmip6_compound_name": "CFmon.rldcs", + "cmip7_compound_name": "atmos.rldcs.tavg-alh-hxy-u.mon.GLB", + "uid": "bab5268c-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.rldcs.tpt-alh-hs-u.subhr.GLB": { + "frequency": "subhr", + "modeling_realm": "atmos", + "standard_name": "downwelling_longwave_flux_in_air_assuming_clear_sky", + "units": "W m-2", + "cell_methods": "area: point time: point", + "cell_measures": "", + "long_name": "Downwelling Clear-Sky Longwave Radiation", + "comment": "Downwelling clear-sky longwave radiation (includes the fluxes at the surface and TOA)", + "dimensions": "alevhalf site time1", + "out_name": "rldcs", + "type": "real", + "positive": "down", + "spatial_shape": "S-AH", + "temporal_shape": "time-point", + "cmip6_table": "CFsubhr", + "physical_parameter_name": "rldcs", + "variableRootDD": "rldcs", + "branding_label": "tpt-alh-hs-u", + "branded_variable_name": "rldcs_tpt-alh-hs-u", + "region": "GLB", + "cmip6_compound_name": "CFsubhr.rldcs", + "cmip7_compound_name": "atmos.rldcs.tpt-alh-hs-u.subhr.GLB", + "uid": "a955313a-817c-11e6-a4e2-5404a60d96b5" + }, + "atmos.rldcs4co2.tavg-alh-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "downwelling_longwave_flux_in_air_assuming_clear_sky", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Downwelling Clear-Sky Longwave Radiation 4XCO2 Atmosphere", + "comment": "Downwelling clear-sky longwave radiation calculated using carbon dioxide concentrations increased fourfold (includes the fluxes at the surface and TOA)", + "dimensions": "longitude latitude alevhalf time", + "out_name": "rldcs4co2", + "type": "real", + "positive": "down", + "spatial_shape": "XY-AH", + "temporal_shape": "time-intv", + "cmip6_table": "CFmon", + "physical_parameter_name": "rldcs4co2", + "variableRootDD": "rldcs4co2", + "branding_label": "tavg-alh-hxy-u", + "branded_variable_name": "rldcs4co2_tavg-alh-hxy-u", + "region": "GLB", + "cmip6_compound_name": "CFmon.rldcs4co2", + "cmip7_compound_name": "atmos.rldcs4co2.tavg-alh-hxy-u.mon.GLB", + "uid": "bab52196-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.rlds.tavg-u-hxy-is.mon.ATA": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "surface_downwelling_longwave_flux_in_air", + "units": "W m-2", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacellg", + "long_name": "Surface Downwelling Longwave Radiation", + "comment": "The surface called \"surface\" means the lower boundary of the atmosphere. \"longwave\" means longwave radiation. Downwelling radiation is radiation from above. It does not mean \"net downward\". When thought of as being incident on a surface, a radiative flux is sometimes called \"irradiance\". In addition, it is identical with the quantity measured by a cosine-collector light-meter and sometimes called \"vector irradiance\". In accordance with common usage in geophysical disciplines, \"flux\" implies per unit area, called \"flux density\" in physics.", + "dimensions": "longitude latitude time", + "out_name": "rlds", + "type": "real", + "positive": "down", + "spatial_shape": "XYA-na", + "temporal_shape": "time-intv", + "cmip6_table": "ImonAnt", + "physical_parameter_name": "rlds", + "variableRootDD": "rlds", + "branding_label": "tavg-u-hxy-is", + "branded_variable_name": "rlds_tavg-u-hxy-is", + "region": "ATA", + "cmip6_compound_name": "ImonAnt.rlds", + "cmip7_compound_name": "atmos.rlds.tavg-u-hxy-is.mon.ATA", + "uid": "d5b33c0c-c78d-11e6-9b25-5404a60d96b5" + }, + "atmos.rlds.tavg-u-hxy-is.mon.GRL": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "surface_downwelling_longwave_flux_in_air", + "units": "W m-2", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacellg", + "long_name": "Surface Downwelling Longwave Radiation", + "comment": "The surface called \"surface\" means the lower boundary of the atmosphere. \"longwave\" means longwave radiation. Downwelling radiation is radiation from above. It does not mean \"net downward\". When thought of as being incident on a surface, a radiative flux is sometimes called \"irradiance\". In addition, it is identical with the quantity measured by a cosine-collector light-meter and sometimes called \"vector irradiance\". In accordance with common usage in geophysical disciplines, \"flux\" implies per unit area, called \"flux density\" in physics.", + "dimensions": "longitude latitude time", + "out_name": "rlds", + "type": "real", + "positive": "down", + "spatial_shape": "XYG-na", + "temporal_shape": "time-intv", + "cmip6_table": "ImonGre", + "physical_parameter_name": "rlds", + "variableRootDD": "rlds", + "branding_label": "tavg-u-hxy-is", + "branded_variable_name": "rlds_tavg-u-hxy-is", + "region": "GRL", + "cmip6_compound_name": "ImonGre.rlds", + "cmip7_compound_name": "atmos.rlds.tavg-u-hxy-is.mon.GRL", + "uid": "d5b2c4e8-c78d-11e6-9b25-5404a60d96b5" + }, + "atmos.rlds.tavg-u-hxy-u.1hr.30S-90S": { + "frequency": "1hr", + "modeling_realm": "atmos", + "standard_name": "surface_downwelling_longwave_flux_in_air", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Surface Downwelling Longwave Radiation", + "comment": "Surface Downwelling Longwave Radiation", + "dimensions": "longitude latitude time", + "out_name": "rlds", + "type": "real", + "positive": "down", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "E1hr", + "physical_parameter_name": "rlds", + "variableRootDD": "rlds", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "rlds_tavg-u-hxy-u", + "region": "30S-90S", + "cmip6_compound_name": "E1hr.rldsSouth30", + "cmip7_compound_name": "atmos.rlds.tavg-u-hxy-u.1hr.30S-90S", + "uid": "80ac31c2-a698-11ef-914a-613c0433d878" + }, + "atmos.rlds.tavg-u-hxy-u.1hr.GLB": { + "frequency": "1hr", + "modeling_realm": "atmos", + "standard_name": "surface_downwelling_longwave_flux_in_air", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Surface Downwelling Longwave Radiation", + "comment": "Surface Downwelling Longwave Radiation", + "dimensions": "longitude latitude time", + "out_name": "rlds", + "type": "real", + "positive": "down", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "E1hr", + "physical_parameter_name": "rlds", + "variableRootDD": "rlds", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "rlds_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "E1hr.rlds", + "cmip7_compound_name": "atmos.rlds.tavg-u-hxy-u.1hr.GLB", + "uid": "83bbfbc4-7f07-11ef-9308-b1dd71e64bec" + }, + "atmos.rlds.tavg-u-hxy-u.3hr.GLB": { + "frequency": "3hr", + "modeling_realm": "atmos", + "standard_name": "surface_downwelling_longwave_flux_in_air", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Surface Downwelling Longwave Radiation", + "comment": "This is the 3-hour mean flux.", + "dimensions": "longitude latitude time", + "out_name": "rlds", + "type": "real", + "positive": "down", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "3hr", + "physical_parameter_name": "rlds", + "variableRootDD": "rlds", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "rlds_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "3hr.rlds", + "cmip7_compound_name": "atmos.rlds.tavg-u-hxy-u.3hr.GLB", + "uid": "bab52b5a-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.rlds.tavg-u-hxy-u.6hr.GLB": { + "frequency": "6hr", + "modeling_realm": "atmos", + "standard_name": "surface_downwelling_longwave_flux_in_air", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Surface Downwelling Longwave Radiation", + "comment": "Surface downwelling longwave radiation", + "dimensions": "longitude latitude time", + "out_name": "rlds", + "type": "real", + "positive": "down", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "6hrPlev", + "physical_parameter_name": "rlds", + "variableRootDD": "rlds", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "rlds_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "6hrPlev.rlds", + "cmip7_compound_name": "atmos.rlds.tavg-u-hxy-u.6hr.GLB", + "uid": "83bbfc59-7f07-11ef-9308-b1dd71e64bec" + }, + "atmos.rlds.tavg-u-hxy-u.day.GLB": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "surface_downwelling_longwave_flux_in_air", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Surface Downwelling Longwave Radiation", + "comment": "The surface called \"surface\" means the lower boundary of the atmosphere. \"longwave\" means longwave radiation. Downwelling radiation is radiation from above. It does not mean \"net downward\". When thought of as being incident on a surface, a radiative flux is sometimes called \"irradiance\". In addition, it is identical with the quantity measured by a cosine-collector light-meter and sometimes called \"vector irradiance\". In accordance with common usage in geophysical disciplines, \"flux\" implies per unit area, called \"flux density\" in physics.", + "dimensions": "longitude latitude time", + "out_name": "rlds", + "type": "real", + "positive": "down", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "day", + "physical_parameter_name": "rlds", + "variableRootDD": "rlds", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "rlds_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "day.rlds", + "cmip7_compound_name": "atmos.rlds.tavg-u-hxy-u.day.GLB", + "uid": "bab538d4-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.rlds.tavg-u-hxy-u.mon.30S-90S": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "surface_downwelling_longwave_flux_in_air", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Surface Downwelling Longwave Radiation", + "comment": "The surface called \"surface\" means the lower boundary of the atmosphere. \"longwave\" means longwave radiation. Downwelling radiation is radiation from above. It does not mean \"net downward\". When thought of as being incident on a surface, a radiative flux is sometimes called \"irradiance\". In addition, it is identical with the quantity measured by a cosine-collector light-meter and sometimes called \"vector irradiance\". In accordance with common usage in geophysical disciplines, \"flux\" implies per unit area, called \"flux density\" in physics.", + "dimensions": "longitude latitude time", + "out_name": "rlds", + "type": "real", + "positive": "down", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Amon", + "physical_parameter_name": "rlds", + "variableRootDD": "rlds", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "rlds_tavg-u-hxy-u", + "region": "30S-90S", + "cmip6_compound_name": "Amon.rldsSouth30", + "cmip7_compound_name": "atmos.rlds.tavg-u-hxy-u.mon.30S-90S", + "uid": "80ac31c1-a698-11ef-914a-613c0433d878" + }, + "atmos.rlds.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "surface_downwelling_longwave_flux_in_air", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Surface Downwelling Longwave Radiation", + "comment": "The surface called \"surface\" means the lower boundary of the atmosphere. \"longwave\" means longwave radiation. Downwelling radiation is radiation from above. It does not mean \"net downward\". When thought of as being incident on a surface, a radiative flux is sometimes called \"irradiance\". In addition, it is identical with the quantity measured by a cosine-collector light-meter and sometimes called \"vector irradiance\". In accordance with common usage in geophysical disciplines, \"flux\" implies per unit area, called \"flux density\" in physics.", + "dimensions": "longitude latitude time", + "out_name": "rlds", + "type": "real", + "positive": "down", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Amon", + "physical_parameter_name": "rlds", + "variableRootDD": "rlds", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "rlds_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "Amon.rlds", + "cmip7_compound_name": "atmos.rlds.tavg-u-hxy-u.mon.GLB", + "uid": "bab52da8-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.rlds.tpt-u-hs-u.subhr.GLB": { + "frequency": "subhr", + "modeling_realm": "atmos", + "standard_name": "surface_downwelling_longwave_flux_in_air", + "units": "W m-2", + "cell_methods": "area: point time: point", + "cell_measures": "", + "long_name": "Surface Downwelling Longwave Radiation", + "comment": "The surface called \"surface\" means the lower boundary of the atmosphere. \"longwave\" means longwave radiation. Downwelling radiation is radiation from above. It does not mean \"net downward\". When thought of as being incident on a surface, a radiative flux is sometimes called \"irradiance\". In addition, it is identical with the quantity measured by a cosine-collector light-meter and sometimes called \"vector irradiance\". In accordance with common usage in geophysical disciplines, \"flux\" implies per unit area, called \"flux density\" in physics.", + "dimensions": "site time1", + "out_name": "rlds", + "type": "real", + "positive": "down", + "spatial_shape": "S-na", + "temporal_shape": "time-point", + "cmip6_table": "CFsubhr", + "physical_parameter_name": "rlds", + "variableRootDD": "rlds", + "branding_label": "tpt-u-hs-u", + "branded_variable_name": "rlds_tpt-u-hs-u", + "region": "GLB", + "cmip6_compound_name": "CFsubhr.rlds", + "cmip7_compound_name": "atmos.rlds.tpt-u-hs-u.subhr.GLB", + "uid": "80088d2a-f906-11e6-a176-5404a60d96b5" + }, + "atmos.rlds.tpt-u-hxy-u.3hr.GLB": { + "frequency": "3hr", + "modeling_realm": "atmos", + "standard_name": "surface_downwelling_longwave_flux_in_air", + "units": "W m-2", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Surface Downwelling Longwave Radiation", + "comment": "The surface called \"surface\" means the lower boundary of the atmosphere. \"longwave\" means longwave radiation. Downwelling radiation is radiation from above. It does not mean \"net downward\". When thought of as being incident on a surface, a radiative flux is sometimes called \"irradiance\". In addition, it is identical with the quantity measured by a cosine-collector light-meter and sometimes called \"vector irradiance\". In accordance with common usage in geophysical disciplines, \"flux\" implies per unit area, called \"flux density\" in physics.", + "dimensions": "longitude latitude time1", + "out_name": "rlds", + "type": "real", + "positive": "down", + "spatial_shape": "XY-na", + "temporal_shape": "time-point", + "cmip6_table": "CF3hr", + "physical_parameter_name": "rlds", + "variableRootDD": "rlds", + "branding_label": "tpt-u-hxy-u", + "branded_variable_name": "rlds_tpt-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "CF3hr.rlds", + "cmip7_compound_name": "atmos.rlds.tpt-u-hxy-u.3hr.GLB", + "uid": "e0ab54ac-4b7f-11e7-903f-5404a60d96b5" + }, + "atmos.rldscs.tavg-u-hxy-u.day.GLB": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "surface_downwelling_longwave_flux_in_air_assuming_clear_sky", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Surface Downwelling Clear-Sky Longwave Radiation", + "comment": "Surface downwelling clear-sky longwave radiation", + "dimensions": "longitude latitude time", + "out_name": "rldscs", + "type": "real", + "positive": "down", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "CFday", + "physical_parameter_name": "rldscs", + "variableRootDD": "rldscs", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "rldscs_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "CFday.rldscs", + "cmip7_compound_name": "atmos.rldscs.tavg-u-hxy-u.day.GLB", + "uid": "bab55792-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.rldscs.tavg-u-hxy-u.mon.30S-90S": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "surface_downwelling_longwave_flux_in_air_assuming_clear_sky", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Surface Downwelling Clear-Sky Longwave Radiation", + "comment": "Surface downwelling clear-sky longwave radiation", + "dimensions": "longitude latitude time", + "out_name": "rldscs", + "type": "real", + "positive": "down", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Amon", + "physical_parameter_name": "rldscs", + "variableRootDD": "rldscs", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "rldscs_tavg-u-hxy-u", + "region": "30S-90S", + "cmip6_compound_name": "Amon.rldscsSouth30", + "cmip7_compound_name": "atmos.rldscs.tavg-u-hxy-u.mon.30S-90S", + "uid": "80ac31c3-a698-11ef-914a-613c0433d878" + }, + "atmos.rldscs.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "surface_downwelling_longwave_flux_in_air_assuming_clear_sky", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Surface Downwelling Clear-Sky Longwave Radiation", + "comment": "Surface downwelling clear-sky longwave radiation", + "dimensions": "longitude latitude time", + "out_name": "rldscs", + "type": "real", + "positive": "down", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Amon", + "physical_parameter_name": "rldscs", + "variableRootDD": "rldscs", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "rldscs_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "Amon.rldscs", + "cmip7_compound_name": "atmos.rldscs.tavg-u-hxy-u.mon.GLB", + "uid": "bab5540e-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.rldscs.tpt-u-hs-u.subhr.GLB": { + "frequency": "subhr", + "modeling_realm": "atmos", + "standard_name": "surface_downwelling_longwave_flux_in_air_assuming_clear_sky", + "units": "W m-2", + "cell_methods": "area: point time: point", + "cell_measures": "", + "long_name": "Surface Downwelling Clear-Sky Longwave Radiation", + "comment": "Surface downwelling clear-sky longwave radiation", + "dimensions": "site time1", + "out_name": "rldscs", + "type": "real", + "positive": "down", + "spatial_shape": "S-na", + "temporal_shape": "time-point", + "cmip6_table": "CFsubhr", + "physical_parameter_name": "rldscs", + "variableRootDD": "rldscs", + "branding_label": "tpt-u-hs-u", + "branded_variable_name": "rldscs_tpt-u-hs-u", + "region": "GLB", + "cmip6_compound_name": "CFsubhr.rldscs", + "cmip7_compound_name": "atmos.rldscs.tpt-u-hs-u.subhr.GLB", + "uid": "800903fe-f906-11e6-a176-5404a60d96b5" + }, + "atmos.rldscs.tpt-u-hxy-u.3hr.GLB": { + "frequency": "3hr", + "modeling_realm": "atmos", + "standard_name": "surface_downwelling_longwave_flux_in_air_assuming_clear_sky", + "units": "W m-2", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Surface Downwelling Clear-Sky Longwave Radiation", + "comment": "Surface downwelling clear-sky longwave radiation", + "dimensions": "longitude latitude time1", + "out_name": "rldscs", + "type": "real", + "positive": "down", + "spatial_shape": "XY-na", + "temporal_shape": "time-point", + "cmip6_table": "CF3hr", + "physical_parameter_name": "rldscs", + "variableRootDD": "rldscs", + "branding_label": "tpt-u-hxy-u", + "branded_variable_name": "rldscs_tpt-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "CF3hr.rldscs", + "cmip7_compound_name": "atmos.rldscs.tpt-u-hxy-u.3hr.GLB", + "uid": "e0ab5718-4b7f-11e7-903f-5404a60d96b5" + }, + "atmos.rls.tavg-u-hxy-u.day.GLB": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "surface_net_downward_longwave_flux", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Net Longwave Surface Radiation", + "comment": "Net longwave radiation", + "dimensions": "longitude latitude time", + "out_name": "rls", + "type": "real", + "positive": "down", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "day", + "physical_parameter_name": "rls", + "variableRootDD": "rls", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "rls_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "day.rls", + "cmip7_compound_name": "atmos.rls.tavg-u-hxy-u.day.GLB", + "uid": "d660d938-633c-11e8-9791-a44cc8186c64" + }, + "atmos.rls.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "surface_net_downward_longwave_flux", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Net Longwave Surface Radiation", + "comment": "Net longwave surface radiation", + "dimensions": "longitude latitude time", + "out_name": "rls", + "type": "real", + "positive": "down", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "rls", + "variableRootDD": "rls", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "rls_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "Emon.rls", + "cmip7_compound_name": "atmos.rls.tavg-u-hxy-u.mon.GLB", + "uid": "8b922368-4a5b-11e6-9cd2-ac72891c3257" + }, + "atmos.rlu.tavg-alh-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "upwelling_longwave_flux_in_air", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Upwelling Longwave Radiation", + "comment": "Includes also the fluxes at the surface and TOA.", + "dimensions": "longitude latitude alevhalf time", + "out_name": "rlu", + "type": "real", + "positive": "up", + "spatial_shape": "XY-AH", + "temporal_shape": "time-intv", + "cmip6_table": "CFmon", + "physical_parameter_name": "rlu", + "variableRootDD": "rlu", + "branding_label": "tavg-alh-hxy-u", + "branded_variable_name": "rlu_tavg-alh-hxy-u", + "region": "GLB", + "cmip6_compound_name": "CFmon.rlu", + "cmip7_compound_name": "atmos.rlu.tavg-alh-hxy-u.mon.GLB", + "uid": "bab56d68-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.rlu.tpt-alh-hs-u.subhr.GLB": { + "frequency": "subhr", + "modeling_realm": "atmos", + "standard_name": "upwelling_longwave_flux_in_air", + "units": "W m-2", + "cell_methods": "area: point time: point", + "cell_measures": "", + "long_name": "Upwelling Longwave Radiation", + "comment": "Upwelling longwave radiation (includes the fluxes at the surface and TOA)", + "dimensions": "alevhalf site time1", + "out_name": "rlu", + "type": "real", + "positive": "up", + "spatial_shape": "S-AH", + "temporal_shape": "time-point", + "cmip6_table": "CFsubhr", + "physical_parameter_name": "rlu", + "variableRootDD": "rlu", + "branding_label": "tpt-alh-hs-u", + "branded_variable_name": "rlu_tpt-alh-hs-u", + "region": "GLB", + "cmip6_compound_name": "CFsubhr.rlu", + "cmip7_compound_name": "atmos.rlu.tpt-alh-hs-u.subhr.GLB", + "uid": "a954ebee-817c-11e6-a4e2-5404a60d96b5" + }, + "atmos.rlu4co2.tavg-alh-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "upwelling_longwave_flux_in_air", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Upwelling Longwave Radiation 4XCO2 Atmosphere", + "comment": "Upwelling longwave radiation calculated using carbon dioxide concentrations increased fourfold (includes the fluxes at the surface and TOA)", + "dimensions": "longitude latitude alevhalf time", + "out_name": "rlu4co2", + "type": "real", + "positive": "up", + "spatial_shape": "XY-AH", + "temporal_shape": "time-intv", + "cmip6_table": "CFmon", + "physical_parameter_name": "rlu4co2", + "variableRootDD": "rlu4co2", + "branding_label": "tavg-alh-hxy-u", + "branded_variable_name": "rlu4co2_tavg-alh-hxy-u", + "region": "GLB", + "cmip6_compound_name": "CFmon.rlu4co2", + "cmip7_compound_name": "atmos.rlu4co2.tavg-alh-hxy-u.mon.GLB", + "uid": "bab56b24-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.rlucs.tavg-alh-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "upwelling_longwave_flux_in_air_assuming_clear_sky", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Upwelling Clear-Sky Longwave Radiation", + "comment": "Includes also the fluxes at the surface and TOA.", + "dimensions": "longitude latitude alevhalf time", + "out_name": "rlucs", + "type": "real", + "positive": "up", + "spatial_shape": "XY-AH", + "temporal_shape": "time-intv", + "cmip6_table": "CFmon", + "physical_parameter_name": "rlucs", + "variableRootDD": "rlucs", + "branding_label": "tavg-alh-hxy-u", + "branded_variable_name": "rlucs_tavg-alh-hxy-u", + "region": "GLB", + "cmip6_compound_name": "CFmon.rlucs", + "cmip7_compound_name": "atmos.rlucs.tavg-alh-hxy-u.mon.GLB", + "uid": "bab5768c-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.rlucs.tpt-alh-hs-u.subhr.GLB": { + "frequency": "subhr", + "modeling_realm": "atmos", + "standard_name": "upwelling_longwave_flux_in_air_assuming_clear_sky", + "units": "W m-2", + "cell_methods": "area: point time: point", + "cell_measures": "", + "long_name": "Upwelling Clear-Sky Longwave Radiation", + "comment": "Upwelling clear-sky longwave radiation (includes the fluxes at the surface and TOA)", + "dimensions": "alevhalf site time1", + "out_name": "rlucs", + "type": "real", + "positive": "up", + "spatial_shape": "S-AH", + "temporal_shape": "time-point", + "cmip6_table": "CFsubhr", + "physical_parameter_name": "rlucs", + "variableRootDD": "rlucs", + "branding_label": "tpt-alh-hs-u", + "branded_variable_name": "rlucs_tpt-alh-hs-u", + "region": "GLB", + "cmip6_compound_name": "CFsubhr.rlucs", + "cmip7_compound_name": "atmos.rlucs.tpt-alh-hs-u.subhr.GLB", + "uid": "a9551a74-817c-11e6-a4e2-5404a60d96b5" + }, + "atmos.rlucs4co2.tavg-alh-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "upwelling_longwave_flux_in_air_assuming_clear_sky", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Upwelling Clear-Sky Longwave Radiation 4XCO2 Atmosphere", + "comment": "Upwelling clear-sky longwave radiation calculated using carbon dioxide concentrations increased fourfold (includes the fluxes at the surface and TOA)", + "dimensions": "longitude latitude alevhalf time", + "out_name": "rlucs4co2", + "type": "real", + "positive": "up", + "spatial_shape": "XY-AH", + "temporal_shape": "time-intv", + "cmip6_table": "CFmon", + "physical_parameter_name": "rlucs4co2", + "variableRootDD": "rlucs4co2", + "branding_label": "tavg-alh-hxy-u", + "branded_variable_name": "rlucs4co2_tavg-alh-hxy-u", + "region": "GLB", + "cmip6_compound_name": "CFmon.rlucs4co2", + "cmip7_compound_name": "atmos.rlucs4co2.tavg-alh-hxy-u.mon.GLB", + "uid": "bab571f0-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.rlus.tavg-u-hxy-is.mon.ATA": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "surface_upwelling_longwave_flux_in_air", + "units": "W m-2", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacellg", + "long_name": "Surface Upwelling Longwave Radiation", + "comment": "The surface called \"surface\" means the lower boundary of the atmosphere. \"longwave\" means longwave radiation. Upwelling radiation is radiation from below. It does not mean \"net upward\". When thought of as being incident on a surface, a radiative flux is sometimes called \"irradiance\". In addition, it is identical with the quantity measured by a cosine-collector light-meter and sometimes called \"vector irradiance\". In accordance with common usage in geophysical disciplines, \"flux\" implies per unit area, called \"flux density\" in physics.", + "dimensions": "longitude latitude time", + "out_name": "rlus", + "type": "real", + "positive": "up", + "spatial_shape": "XYA-na", + "temporal_shape": "time-intv", + "cmip6_table": "ImonAnt", + "physical_parameter_name": "rlus", + "variableRootDD": "rlus", + "branding_label": "tavg-u-hxy-is", + "branded_variable_name": "rlus_tavg-u-hxy-is", + "region": "ATA", + "cmip6_compound_name": "ImonAnt.rlus", + "cmip7_compound_name": "atmos.rlus.tavg-u-hxy-is.mon.ATA", + "uid": "d5b33fa4-c78d-11e6-9b25-5404a60d96b5" + }, + "atmos.rlus.tavg-u-hxy-is.mon.GRL": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "surface_upwelling_longwave_flux_in_air", + "units": "W m-2", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacellg", + "long_name": "Surface Upwelling Longwave Radiation", + "comment": "The surface called \"surface\" means the lower boundary of the atmosphere. \"longwave\" means longwave radiation. Upwelling radiation is radiation from below. It does not mean \"net upward\". When thought of as being incident on a surface, a radiative flux is sometimes called \"irradiance\". In addition, it is identical with the quantity measured by a cosine-collector light-meter and sometimes called \"vector irradiance\". In accordance with common usage in geophysical disciplines, \"flux\" implies per unit area, called \"flux density\" in physics.", + "dimensions": "longitude latitude time", + "out_name": "rlus", + "type": "real", + "positive": "up", + "spatial_shape": "XYG-na", + "temporal_shape": "time-intv", + "cmip6_table": "ImonGre", + "physical_parameter_name": "rlus", + "variableRootDD": "rlus", + "branding_label": "tavg-u-hxy-is", + "branded_variable_name": "rlus_tavg-u-hxy-is", + "region": "GRL", + "cmip6_compound_name": "ImonGre.rlus", + "cmip7_compound_name": "atmos.rlus.tavg-u-hxy-is.mon.GRL", + "uid": "d5b2c8a8-c78d-11e6-9b25-5404a60d96b5" + }, + "atmos.rlus.tavg-u-hxy-u.1hr.GLB": { + "frequency": "1hr", + "modeling_realm": "atmos", + "standard_name": "surface_upwelling_longwave_flux_in_air", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Surface upwelling shortwave radiation", + "comment": "Hourly surface upwelling shortwave radiation", + "dimensions": "longitude latitude time", + "out_name": "rlus", + "type": "real", + "positive": "up", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "E1hr", + "physical_parameter_name": "rlus", + "variableRootDD": "rlus", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "rlus_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "E1hr.rlus", + "cmip7_compound_name": "atmos.rlus.tavg-u-hxy-u.1hr.GLB", + "uid": "83bbfbc3-7f07-11ef-9308-b1dd71e64bec" + }, + "atmos.rlus.tavg-u-hxy-u.3hr.GLB": { + "frequency": "3hr", + "modeling_realm": "atmos", + "standard_name": "surface_upwelling_longwave_flux_in_air", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Surface Upwelling Longwave Radiation", + "comment": "This is the 3-hour mean flux.", + "dimensions": "longitude latitude time", + "out_name": "rlus", + "type": "real", + "positive": "up", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "3hr", + "physical_parameter_name": "rlus", + "variableRootDD": "rlus", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "rlus_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "3hr.rlus", + "cmip7_compound_name": "atmos.rlus.tavg-u-hxy-u.3hr.GLB", + "uid": "bab59202-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.rlus.tavg-u-hxy-u.day.GLB": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "surface_upwelling_longwave_flux_in_air", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Surface Upwelling Longwave Radiation", + "comment": "The surface called \"surface\" means the lower boundary of the atmosphere. \"longwave\" means longwave radiation. Upwelling radiation is radiation from below. It does not mean \"net upward\". When thought of as being incident on a surface, a radiative flux is sometimes called \"irradiance\". In addition, it is identical with the quantity measured by a cosine-collector light-meter and sometimes called \"vector irradiance\". In accordance with common usage in geophysical disciplines, \"flux\" implies per unit area, called \"flux density\" in physics.", + "dimensions": "longitude latitude time", + "out_name": "rlus", + "type": "real", + "positive": "up", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "day", + "physical_parameter_name": "rlus", + "variableRootDD": "rlus", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "rlus_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "day.rlus", + "cmip7_compound_name": "atmos.rlus.tavg-u-hxy-u.day.GLB", + "uid": "bab57f92-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.rlus.tavg-u-hxy-u.mon.30S-90S": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "surface_upwelling_longwave_flux_in_air", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Surface Upwelling Longwave Radiation", + "comment": "The surface called \"surface\" means the lower boundary of the atmosphere. \"longwave\" means longwave radiation. Upwelling radiation is radiation from below. It does not mean \"net upward\". When thought of as being incident on a surface, a radiative flux is sometimes called \"irradiance\". In addition, it is identical with the quantity measured by a cosine-collector light-meter and sometimes called \"vector irradiance\". In accordance with common usage in geophysical disciplines, \"flux\" implies per unit area, called \"flux density\" in physics.", + "dimensions": "longitude latitude time", + "out_name": "rlus", + "type": "real", + "positive": "up", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Amon", + "physical_parameter_name": "rlus", + "variableRootDD": "rlus", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "rlus_tavg-u-hxy-u", + "region": "30S-90S", + "cmip6_compound_name": "Amon.rlusSouth30", + "cmip7_compound_name": "atmos.rlus.tavg-u-hxy-u.mon.30S-90S", + "uid": "80ac31c4-a698-11ef-914a-613c0433d878" + }, + "atmos.rlus.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "surface_upwelling_longwave_flux_in_air", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Surface Upwelling Longwave Radiation", + "comment": "The surface called \"surface\" means the lower boundary of the atmosphere. \"longwave\" means longwave radiation. Upwelling radiation is radiation from below. It does not mean \"net upward\". When thought of as being incident on a surface, a radiative flux is sometimes called \"irradiance\". In addition, it is identical with the quantity measured by a cosine-collector light-meter and sometimes called \"vector irradiance\". In accordance with common usage in geophysical disciplines, \"flux\" implies per unit area, called \"flux density\" in physics.", + "dimensions": "longitude latitude time", + "out_name": "rlus", + "type": "real", + "positive": "up", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Amon", + "physical_parameter_name": "rlus", + "variableRootDD": "rlus", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "rlus_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "Amon.rlus", + "cmip7_compound_name": "atmos.rlus.tavg-u-hxy-u.mon.GLB", + "uid": "bab578d0-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.rlus.tpt-u-hs-u.subhr.GLB": { + "frequency": "subhr", + "modeling_realm": "atmos", + "standard_name": "surface_upwelling_longwave_flux_in_air", + "units": "W m-2", + "cell_methods": "area: point time: point", + "cell_measures": "", + "long_name": "Surface Upwelling Longwave Radiation", + "comment": "The surface called \"surface\" means the lower boundary of the atmosphere. \"longwave\" means longwave radiation. Upwelling radiation is radiation from below. It does not mean \"net upward\". When thought of as being incident on a surface, a radiative flux is sometimes called \"irradiance\". In addition, it is identical with the quantity measured by a cosine-collector light-meter and sometimes called \"vector irradiance\". In accordance with common usage in geophysical disciplines, \"flux\" implies per unit area, called \"flux density\" in physics.", + "dimensions": "site time1", + "out_name": "rlus", + "type": "real", + "positive": "up", + "spatial_shape": "S-na", + "temporal_shape": "time-point", + "cmip6_table": "CFsubhr", + "physical_parameter_name": "rlus", + "variableRootDD": "rlus", + "branding_label": "tpt-u-hs-u", + "branded_variable_name": "rlus_tpt-u-hs-u", + "region": "GLB", + "cmip6_compound_name": "CFsubhr.rlus", + "cmip7_compound_name": "atmos.rlus.tpt-u-hs-u.subhr.GLB", + "uid": "8008a27e-f906-11e6-a176-5404a60d96b5" + }, + "atmos.rluscs.tavg-u-hxy-u.day.GLB": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "surface_upwelling_longwave_flux_assuming_clear_sky", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Surface Upwelling Clear-Sky Longwave Radiation", + "comment": "Surface Upwelling Clear-sky Longwave Radiation", + "dimensions": "longitude latitude time", + "out_name": "rluscs", + "type": "real", + "positive": "up", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "day", + "physical_parameter_name": "rluscs", + "variableRootDD": "rluscs", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "rluscs_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "day.rluscs", + "cmip7_compound_name": "atmos.rluscs.tavg-u-hxy-u.day.GLB", + "uid": "80ab71f7-a698-11ef-914a-613c0433d878" + }, + "atmos.rluscs.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "surface_upwelling_longwave_flux_assuming_clear_sky", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Surface Upwelling Clear-Sky Longwave Radiation", + "comment": "Surface Upwelling Clear-sky Longwave Radiation", + "dimensions": "longitude latitude time", + "out_name": "rluscs", + "type": "real", + "positive": "up", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Amon", + "physical_parameter_name": "rluscs", + "variableRootDD": "rluscs", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "rluscs_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "Amon.rluscs", + "cmip7_compound_name": "atmos.rluscs.tavg-u-hxy-u.mon.GLB", + "uid": "80ab71f6-a698-11ef-914a-613c0433d878" + }, + "atmos.rlut.tavg-u-hxy-u.3hr.GLB": { + "frequency": "3hr", + "modeling_realm": "atmos", + "standard_name": "toa_outgoing_longwave_flux", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "TOA Outgoing Longwave Radiation", + "comment": "TOA outgoing longwave radiation", + "dimensions": "longitude latitude time", + "out_name": "rlut", + "type": "real", + "positive": "up", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "E3hr", + "physical_parameter_name": "rlut", + "variableRootDD": "rlut", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "rlut_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "E3hr.rlut", + "cmip7_compound_name": "atmos.rlut.tavg-u-hxy-u.3hr.GLB", + "uid": "8bb0a946-4a5b-11e6-9cd2-ac72891c3257" + }, + "atmos.rlut.tavg-u-hxy-u.day.GLB": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "toa_outgoing_longwave_flux", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "TOA Outgoing Longwave Radiation", + "comment": "at the top of the atmosphere.", + "dimensions": "longitude latitude time", + "out_name": "rlut", + "type": "real", + "positive": "up", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "day", + "physical_parameter_name": "rlut", + "variableRootDD": "rlut", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "rlut_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "day.rlut", + "cmip7_compound_name": "atmos.rlut.tavg-u-hxy-u.day.GLB", + "uid": "bab59c66-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.rlut.tavg-u-hxy-u.mon.30S-90S": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "toa_outgoing_longwave_flux", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "TOA Outgoing Longwave Radiation", + "comment": "at the top of the atmosphere (to be compared with satellite measurements)", + "dimensions": "longitude latitude time", + "out_name": "rlut", + "type": "real", + "positive": "up", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Amon", + "physical_parameter_name": "rlut", + "variableRootDD": "rlut", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "rlut_tavg-u-hxy-u", + "region": "30S-90S", + "cmip6_compound_name": "Amon.rlutSouth30", + "cmip7_compound_name": "atmos.rlut.tavg-u-hxy-u.mon.30S-90S", + "uid": "80ac31c5-a698-11ef-914a-613c0433d878" + }, + "atmos.rlut.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "toa_outgoing_longwave_flux", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "TOA Outgoing Longwave Radiation", + "comment": "at the top of the atmosphere (to be compared with satellite measurements)", + "dimensions": "longitude latitude time", + "out_name": "rlut", + "type": "real", + "positive": "up", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Amon", + "physical_parameter_name": "rlut", + "variableRootDD": "rlut", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "rlut_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "Amon.rlut", + "cmip7_compound_name": "atmos.rlut.tavg-u-hxy-u.mon.GLB", + "uid": "bab5aad0-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.rlut.tclmdc-u-hxy-u.1hr.GLB": { + "frequency": "1hr", + "modeling_realm": "atmos", + "standard_name": "toa_outgoing_longwave_flux", + "units": "W m-2", + "cell_methods": "area: mean time: mean within days time: mean over days", + "cell_measures": "area: areacella", + "long_name": "TOA Outgoing Longwave Radiation", + "comment": "at the top of the atmosphere (to be compared with satellite measurements)", + "dimensions": "longitude latitude time3", + "out_name": "rlut", + "type": "real", + "positive": "up", + "spatial_shape": "XY-na", + "temporal_shape": "diurnal-cycle", + "cmip6_table": "E1hrClimMon", + "physical_parameter_name": "rlut", + "variableRootDD": "rlut", + "branding_label": "tclmdc-u-hxy-u", + "branded_variable_name": "rlut_tclmdc-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "E1hrClimMon.rlut", + "cmip7_compound_name": "atmos.rlut.tclmdc-u-hxy-u.1hr.GLB", + "uid": "8b8b5344-4a5b-11e6-9cd2-ac72891c3257" + }, + "atmos.rlut.tpt-u-hs-u.subhr.GLB": { + "frequency": "subhr", + "modeling_realm": "atmos", + "standard_name": "toa_outgoing_longwave_flux", + "units": "W m-2", + "cell_methods": "area: point time: point", + "cell_measures": "", + "long_name": "TOA Outgoing Longwave Radiation", + "comment": "at the top of the atmosphere (to be compared with satellite measurements)", + "dimensions": "site time1", + "out_name": "rlut", + "type": "real", + "positive": "up", + "spatial_shape": "S-na", + "temporal_shape": "time-point", + "cmip6_table": "CFsubhr", + "physical_parameter_name": "rlut", + "variableRootDD": "rlut", + "branding_label": "tpt-u-hs-u", + "branded_variable_name": "rlut_tpt-u-hs-u", + "region": "GLB", + "cmip6_compound_name": "CFsubhr.rlut", + "cmip7_compound_name": "atmos.rlut.tpt-u-hs-u.subhr.GLB", + "uid": "80094026-f906-11e6-a176-5404a60d96b5" + }, + "atmos.rlut.tpt-u-hxy-u.3hr.GLB": { + "frequency": "3hr", + "modeling_realm": "atmos", + "standard_name": "toa_outgoing_longwave_flux", + "units": "W m-2", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "TOA Outgoing Longwave Radiation", + "comment": "at the top of the atmosphere (to be compared with satellite measurements)", + "dimensions": "longitude latitude time1", + "out_name": "rlut", + "type": "real", + "positive": "up", + "spatial_shape": "XY-na", + "temporal_shape": "time-point", + "cmip6_table": "CF3hr", + "physical_parameter_name": "rlut", + "variableRootDD": "rlut", + "branding_label": "tpt-u-hxy-u", + "branded_variable_name": "rlut_tpt-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "CF3hr.rlut", + "cmip7_compound_name": "atmos.rlut.tpt-u-hxy-u.3hr.GLB", + "uid": "e0ab5bfa-4b7f-11e7-903f-5404a60d96b5" + }, + "atmos.rlut4co2.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "toa_outgoing_longwave_flux", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "TOA Outgoing Longwave Radiation 4XCO2 Atmosphere", + "comment": "Top-of-atmosphere outgoing longwave radiation calculated using carbon dioxide concentrations increased fourfold", + "dimensions": "longitude latitude time", + "out_name": "rlut4co2", + "type": "real", + "positive": "up", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "CFmon", + "physical_parameter_name": "rlut4co2", + "variableRootDD": "rlut4co2", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "rlut4co2_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "CFmon.rlut4co2", + "cmip7_compound_name": "atmos.rlut4co2.tavg-u-hxy-u.mon.GLB", + "uid": "bab59a22-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.rlutcs.tavg-u-hxy-u.3hr.GLB": { + "frequency": "3hr", + "modeling_realm": "atmos", + "standard_name": "toa_outgoing_longwave_flux_assuming_clear_sky", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "TOA Outgoing Clear-Sky Longwave Radiation", + "comment": "TOA outgoing clear sky longwave", + "dimensions": "longitude latitude time", + "out_name": "rlutcs", + "type": "real", + "positive": "up", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "E3hr", + "physical_parameter_name": "rlutcs", + "variableRootDD": "rlutcs", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "rlutcs_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "E3hr.rlutcs", + "cmip7_compound_name": "atmos.rlutcs.tavg-u-hxy-u.3hr.GLB", + "uid": "8bb0b328-4a5b-11e6-9cd2-ac72891c3257" + }, + "atmos.rlutcs.tavg-u-hxy-u.day.GLB": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "toa_outgoing_longwave_flux_assuming_clear_sky", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "TOA Outgoing Clear-Sky Longwave Radiation", + "comment": "Upwelling clear-sky longwave radiation at top of atmosphere", + "dimensions": "longitude latitude time", + "out_name": "rlutcs", + "type": "real", + "positive": "up", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "CFday", + "physical_parameter_name": "rlutcs", + "variableRootDD": "rlutcs", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "rlutcs_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "CFday.rlutcs", + "cmip7_compound_name": "atmos.rlutcs.tavg-u-hxy-u.day.GLB", + "uid": "bab5c09c-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.rlutcs.tavg-u-hxy-u.mon.30S-90S": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "toa_outgoing_longwave_flux_assuming_clear_sky", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "TOA Outgoing Clear-Sky Longwave Radiation", + "comment": "Upwelling clear-sky longwave radiation at top of atmosphere", + "dimensions": "longitude latitude time", + "out_name": "rlutcs", + "type": "real", + "positive": "up", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Amon", + "physical_parameter_name": "rlutcs", + "variableRootDD": "rlutcs", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "rlutcs_tavg-u-hxy-u", + "region": "30S-90S", + "cmip6_compound_name": "Amon.rlutcsSouth30", + "cmip7_compound_name": "atmos.rlutcs.tavg-u-hxy-u.mon.30S-90S", + "uid": "80ac31c6-a698-11ef-914a-613c0433d878" + }, + "atmos.rlutcs.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "toa_outgoing_longwave_flux_assuming_clear_sky", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "TOA Outgoing Clear-Sky Longwave Radiation", + "comment": "Upwelling clear-sky longwave radiation at top of atmosphere", + "dimensions": "longitude latitude time", + "out_name": "rlutcs", + "type": "real", + "positive": "up", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Amon", + "physical_parameter_name": "rlutcs", + "variableRootDD": "rlutcs", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "rlutcs_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "Amon.rlutcs", + "cmip7_compound_name": "atmos.rlutcs.tavg-u-hxy-u.mon.GLB", + "uid": "bab5bcdc-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.rlutcs.tclmdc-u-hxy-u.1hr.GLB": { + "frequency": "1hr", + "modeling_realm": "atmos", + "standard_name": "toa_outgoing_longwave_flux_assuming_clear_sky", + "units": "W m-2", + "cell_methods": "area: mean time: mean within days time: mean over days", + "cell_measures": "area: areacella", + "long_name": "TOA Outgoing Clear-Sky Longwave Radiation", + "comment": "Upwelling clear-sky longwave radiation at top of atmosphere", + "dimensions": "longitude latitude time3", + "out_name": "rlutcs", + "type": "real", + "positive": "up", + "spatial_shape": "XY-na", + "temporal_shape": "diurnal-cycle", + "cmip6_table": "E1hrClimMon", + "physical_parameter_name": "rlutcs", + "variableRootDD": "rlutcs", + "branding_label": "tclmdc-u-hxy-u", + "branded_variable_name": "rlutcs_tclmdc-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "E1hrClimMon.rlutcs", + "cmip7_compound_name": "atmos.rlutcs.tclmdc-u-hxy-u.1hr.GLB", + "uid": "8b8b5d08-4a5b-11e6-9cd2-ac72891c3257" + }, + "atmos.rlutcs.tpt-u-hs-u.subhr.GLB": { + "frequency": "subhr", + "modeling_realm": "atmos", + "standard_name": "toa_outgoing_longwave_flux_assuming_clear_sky", + "units": "W m-2", + "cell_methods": "area: point time: point", + "cell_measures": "", + "long_name": "TOA Outgoing Clear-Sky Longwave Radiation", + "comment": "Upwelling clear-sky longwave radiation at top of atmosphere", + "dimensions": "site time1", + "out_name": "rlutcs", + "type": "real", + "positive": "up", + "spatial_shape": "S-na", + "temporal_shape": "time-point", + "cmip6_table": "CFsubhr", + "physical_parameter_name": "rlutcs", + "variableRootDD": "rlutcs", + "branding_label": "tpt-u-hs-u", + "branded_variable_name": "rlutcs_tpt-u-hs-u", + "region": "GLB", + "cmip6_compound_name": "CFsubhr.rlutcs", + "cmip7_compound_name": "atmos.rlutcs.tpt-u-hs-u.subhr.GLB", + "uid": "800952fa-f906-11e6-a176-5404a60d96b5" + }, + "atmos.rlutcs.tpt-u-hxy-u.3hr.GLB": { + "frequency": "3hr", + "modeling_realm": "atmos", + "standard_name": "toa_outgoing_longwave_flux_assuming_clear_sky", + "units": "W m-2", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "TOA Outgoing Clear-Sky Longwave Radiation", + "comment": "Upwelling clear-sky longwave radiation at top of atmosphere", + "dimensions": "longitude latitude time1", + "out_name": "rlutcs", + "type": "real", + "positive": "up", + "spatial_shape": "XY-na", + "temporal_shape": "time-point", + "cmip6_table": "CF3hr", + "physical_parameter_name": "rlutcs", + "variableRootDD": "rlutcs", + "branding_label": "tpt-u-hxy-u", + "branded_variable_name": "rlutcs_tpt-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "CF3hr.rlutcs", + "cmip7_compound_name": "atmos.rlutcs.tpt-u-hxy-u.3hr.GLB", + "uid": "e0ab5e66-4b7f-11e7-903f-5404a60d96b5" + }, + "atmos.rlutcs4co2.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "toa_outgoing_longwave_flux_assuming_clear_sky", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "TOA Outgoing Clear-Sky Longwave Radiation 4XCO2 Atmosphere", + "comment": "Top-of-atmosphere outgoing clear-sky longwave radiation calculated using carbon dioxide concentrations increased fourfold", + "dimensions": "longitude latitude time", + "out_name": "rlutcs4co2", + "type": "real", + "positive": "up", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "CFmon", + "physical_parameter_name": "rlutcs4co2", + "variableRootDD": "rlutcs4co2", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "rlutcs4co2_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "CFmon.rlutcs4co2", + "cmip7_compound_name": "atmos.rlutcs4co2.tavg-u-hxy-u.mon.GLB", + "uid": "bab5b822-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.rsd.tavg-alh-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "downwelling_shortwave_flux_in_air", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Downwelling Shortwave Radiation", + "comment": "Includes also the fluxes at the surface and TOA.", + "dimensions": "longitude latitude alevhalf time", + "out_name": "rsd", + "type": "real", + "positive": "down", + "spatial_shape": "XY-AH", + "temporal_shape": "time-intv", + "cmip6_table": "CFmon", + "physical_parameter_name": "rsd", + "variableRootDD": "rsd", + "branding_label": "tavg-alh-hxy-u", + "branded_variable_name": "rsd_tavg-alh-hxy-u", + "region": "GLB", + "cmip6_compound_name": "CFmon.rsd", + "cmip7_compound_name": "atmos.rsd.tavg-alh-hxy-u.mon.GLB", + "uid": "bab5d424-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.rsd.tpt-alh-hs-u.subhr.GLB": { + "frequency": "subhr", + "modeling_realm": "atmos", + "standard_name": "downwelling_shortwave_flux_in_air", + "units": "W m-2", + "cell_methods": "area: point time: point", + "cell_measures": "", + "long_name": "Downwelling Shortwave Radiation", + "comment": "Downwelling shortwave radiation (includes the fluxes at the surface and top-of-atmosphere)", + "dimensions": "alevhalf site time1", + "out_name": "rsd", + "type": "real", + "positive": "down", + "spatial_shape": "S-AH", + "temporal_shape": "time-point", + "cmip6_table": "CFsubhr", + "physical_parameter_name": "rsd", + "variableRootDD": "rsd", + "branding_label": "tpt-alh-hs-u", + "branded_variable_name": "rsd_tpt-alh-hs-u", + "region": "GLB", + "cmip6_compound_name": "CFsubhr.rsd", + "cmip7_compound_name": "atmos.rsd.tpt-alh-hs-u.subhr.GLB", + "uid": "a9550dd6-817c-11e6-a4e2-5404a60d96b5" + }, + "atmos.rsd4co2.tavg-alh-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "downwelling_shortwave_flux_in_air", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Downwelling Shortwave Radiation 4XCO2 Atmosphere", + "comment": "Downwelling shortwave radiation calculated using carbon dioxide concentrations increased fourfold", + "dimensions": "longitude latitude alevhalf time", + "out_name": "rsd4co2", + "type": "real", + "positive": "down", + "spatial_shape": "XY-AH", + "temporal_shape": "time-intv", + "cmip6_table": "CFmon", + "physical_parameter_name": "rsd4co2", + "variableRootDD": "rsd4co2", + "branding_label": "tavg-alh-hxy-u", + "branded_variable_name": "rsd4co2_tavg-alh-hxy-u", + "region": "GLB", + "cmip6_compound_name": "CFmon.rsd4co2", + "cmip7_compound_name": "atmos.rsd4co2.tavg-alh-hxy-u.mon.GLB", + "uid": "bab5cf9c-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.rsdcs.tavg-alh-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "downwelling_shortwave_flux_in_air_assuming_clear_sky", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Downwelling Clear-Sky Shortwave Radiation", + "comment": "Includes also the fluxes at the surface and TOA.", + "dimensions": "longitude latitude alevhalf time", + "out_name": "rsdcs", + "type": "real", + "positive": "down", + "spatial_shape": "XY-AH", + "temporal_shape": "time-intv", + "cmip6_table": "CFmon", + "physical_parameter_name": "rsdcs", + "variableRootDD": "rsdcs", + "branding_label": "tavg-alh-hxy-u", + "branded_variable_name": "rsdcs_tavg-alh-hxy-u", + "region": "GLB", + "cmip6_compound_name": "CFmon.rsdcs", + "cmip7_compound_name": "atmos.rsdcs.tavg-alh-hxy-u.mon.GLB", + "uid": "bab5d898-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.rsdcs.tpt-alh-hs-u.subhr.GLB": { + "frequency": "subhr", + "modeling_realm": "atmos", + "standard_name": "downwelling_shortwave_flux_in_air_assuming_clear_sky", + "units": "W m-2", + "cell_methods": "area: point time: point", + "cell_measures": "", + "long_name": "Downwelling Clear-Sky Shortwave Radiation", + "comment": "Downwelling clear-sky shortwave radiation (includes the fluxes at the surface and top-of-atmosphere)", + "dimensions": "alevhalf site time1", + "out_name": "rsdcs", + "type": "real", + "positive": "down", + "spatial_shape": "S-AH", + "temporal_shape": "time-point", + "cmip6_table": "CFsubhr", + "physical_parameter_name": "rsdcs", + "variableRootDD": "rsdcs", + "branding_label": "tpt-alh-hs-u", + "branded_variable_name": "rsdcs_tpt-alh-hs-u", + "region": "GLB", + "cmip6_compound_name": "CFsubhr.rsdcs", + "cmip7_compound_name": "atmos.rsdcs.tpt-alh-hs-u.subhr.GLB", + "uid": "a9553cfc-817c-11e6-a4e2-5404a60d96b5" + }, + "atmos.rsdcs4co2.tavg-alh-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "downwelling_shortwave_flux_in_air_assuming_clear_sky", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Downwelling Clear-Sky Shortwave Radiation 4XCO2 Atmosphere", + "comment": "Downwelling clear-sky shortwave radiation calculated using carbon dioxide concentrations increased fourfold", + "dimensions": "longitude latitude alevhalf time", + "out_name": "rsdcs4co2", + "type": "real", + "positive": "down", + "spatial_shape": "XY-AH", + "temporal_shape": "time-intv", + "cmip6_table": "CFmon", + "physical_parameter_name": "rsdcs4co2", + "variableRootDD": "rsdcs4co2", + "branding_label": "tavg-alh-hxy-u", + "branded_variable_name": "rsdcs4co2_tavg-alh-hxy-u", + "region": "GLB", + "cmip6_compound_name": "CFmon.rsdcs4co2", + "cmip7_compound_name": "atmos.rsdcs4co2.tavg-alh-hxy-u.mon.GLB", + "uid": "bab5d65e-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.rsds.tavg-u-hxy-is.mon.ATA": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "surface_downwelling_shortwave_flux_in_air", + "units": "W m-2", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacellg", + "long_name": "Surface Downwelling Shortwave Radiation", + "comment": "Surface solar irradiance for UV calculations.", + "dimensions": "longitude latitude time", + "out_name": "rsds", + "type": "real", + "positive": "down", + "spatial_shape": "XYA-na", + "temporal_shape": "time-intv", + "cmip6_table": "ImonAnt", + "physical_parameter_name": "rsds", + "variableRootDD": "rsds", + "branding_label": "tavg-u-hxy-is", + "branded_variable_name": "rsds_tavg-u-hxy-is", + "region": "ATA", + "cmip6_compound_name": "ImonAnt.rsds", + "cmip7_compound_name": "atmos.rsds.tavg-u-hxy-is.mon.ATA", + "uid": "d5b334e6-c78d-11e6-9b25-5404a60d96b5" + }, + "atmos.rsds.tavg-u-hxy-is.mon.GRL": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "surface_downwelling_shortwave_flux_in_air", + "units": "W m-2", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacellg", + "long_name": "Surface Downwelling Shortwave Radiation", + "comment": "Surface solar irradiance for UV calculations.", + "dimensions": "longitude latitude time", + "out_name": "rsds", + "type": "real", + "positive": "down", + "spatial_shape": "XYG-na", + "temporal_shape": "time-intv", + "cmip6_table": "ImonGre", + "physical_parameter_name": "rsds", + "variableRootDD": "rsds", + "branding_label": "tavg-u-hxy-is", + "branded_variable_name": "rsds_tavg-u-hxy-is", + "region": "GRL", + "cmip6_compound_name": "ImonGre.rsds", + "cmip7_compound_name": "atmos.rsds.tavg-u-hxy-is.mon.GRL", + "uid": "d5b2bdc2-c78d-11e6-9b25-5404a60d96b5" + }, + "atmos.rsds.tavg-u-hxy-u.1hr.30S-90S": { + "frequency": "1hr", + "modeling_realm": "atmos", + "standard_name": "surface_downwelling_shortwave_flux_in_air", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Hourly downward solar radiation flux at the surface", + "comment": "Hourly downward solar radiation flux at the surface", + "dimensions": "longitude latitude time", + "out_name": "rsds", + "type": "real", + "positive": "down", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "E1hr", + "physical_parameter_name": "rsds", + "variableRootDD": "rsds", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "rsds_tavg-u-hxy-u", + "region": "30S-90S", + "cmip6_compound_name": "E1hr.rsdsSouth30", + "cmip7_compound_name": "atmos.rsds.tavg-u-hxy-u.1hr.30S-90S", + "uid": "80ac31c8-a698-11ef-914a-613c0433d878" + }, + "atmos.rsds.tavg-u-hxy-u.1hr.GLB": { + "frequency": "1hr", + "modeling_realm": "atmos", + "standard_name": "surface_downwelling_shortwave_flux_in_air", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Hourly downward solar radiation flux at the surface", + "comment": "Hourly downward solar radiation flux at the surface", + "dimensions": "longitude latitude time", + "out_name": "rsds", + "type": "real", + "positive": "down", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "E1hr", + "physical_parameter_name": "rsds", + "variableRootDD": "rsds", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "rsds_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "E1hr.rsds", + "cmip7_compound_name": "atmos.rsds.tavg-u-hxy-u.1hr.GLB", + "uid": "83bbfbc2-7f07-11ef-9308-b1dd71e64bec" + }, + "atmos.rsds.tavg-u-hxy-u.3hr.GLB": { + "frequency": "3hr", + "modeling_realm": "atmos", + "standard_name": "surface_downwelling_shortwave_flux_in_air", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Surface Downwelling Shortwave Radiation", + "comment": "This is the 3-hour mean flux.", + "dimensions": "longitude latitude time", + "out_name": "rsds", + "type": "real", + "positive": "down", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "3hr", + "physical_parameter_name": "rsds", + "variableRootDD": "rsds", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "rsds_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "3hr.rsds", + "cmip7_compound_name": "atmos.rsds.tavg-u-hxy-u.3hr.GLB", + "uid": "bab5df78-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.rsds.tavg-u-hxy-u.6hr.GLB": { + "frequency": "6hr", + "modeling_realm": "atmos", + "standard_name": "surface_downwelling_shortwave_flux_in_air", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Surface Downwelling Shortwave Radiation", + "comment": "Surface downwelling shortwave radiation", + "dimensions": "longitude latitude time", + "out_name": "rsds", + "type": "real", + "positive": "down", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "6hrPlev", + "physical_parameter_name": "rsds", + "variableRootDD": "rsds", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "rsds_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "6hrPlev.rsds", + "cmip7_compound_name": "atmos.rsds.tavg-u-hxy-u.6hr.GLB", + "uid": "83bbfc58-7f07-11ef-9308-b1dd71e64bec" + }, + "atmos.rsds.tavg-u-hxy-u.day.GLB": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "surface_downwelling_shortwave_flux_in_air", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Surface Downwelling Shortwave Radiation", + "comment": "Surface solar irradiance for UV calculations.", + "dimensions": "longitude latitude time", + "out_name": "rsds", + "type": "real", + "positive": "down", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "day", + "physical_parameter_name": "rsds", + "variableRootDD": "rsds", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "rsds_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "day.rsds", + "cmip7_compound_name": "atmos.rsds.tavg-u-hxy-u.day.GLB", + "uid": "bab5ecd4-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.rsds.tavg-u-hxy-u.mon.30S-90S": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "surface_downwelling_shortwave_flux_in_air", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Surface Downwelling Shortwave Radiation", + "comment": "Surface solar irradiance for UV calculations.", + "dimensions": "longitude latitude time", + "out_name": "rsds", + "type": "real", + "positive": "down", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Amon", + "physical_parameter_name": "rsds", + "variableRootDD": "rsds", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "rsds_tavg-u-hxy-u", + "region": "30S-90S", + "cmip6_compound_name": "Amon.rsdsSouth30", + "cmip7_compound_name": "atmos.rsds.tavg-u-hxy-u.mon.30S-90S", + "uid": "80ac31c7-a698-11ef-914a-613c0433d878" + }, + "atmos.rsds.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "surface_downwelling_shortwave_flux_in_air", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Surface Downwelling Shortwave Radiation", + "comment": "Surface solar irradiance for UV calculations.", + "dimensions": "longitude latitude time", + "out_name": "rsds", + "type": "real", + "positive": "down", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Amon", + "physical_parameter_name": "rsds", + "variableRootDD": "rsds", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "rsds_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "Amon.rsds", + "cmip7_compound_name": "atmos.rsds.tavg-u-hxy-u.mon.GLB", + "uid": "bab5e1b2-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.rsds.tpt-u-hs-u.subhr.GLB": { + "frequency": "subhr", + "modeling_realm": "atmos", + "standard_name": "surface_downwelling_shortwave_flux_in_air", + "units": "W m-2", + "cell_methods": "area: point time: point", + "cell_measures": "", + "long_name": "Surface Downwelling Shortwave Radiation", + "comment": "Surface solar irradiance for UV calculations.", + "dimensions": "site time1", + "out_name": "rsds", + "type": "real", + "positive": "down", + "spatial_shape": "S-na", + "temporal_shape": "time-point", + "cmip6_table": "CFsubhr", + "physical_parameter_name": "rsds", + "variableRootDD": "rsds", + "branding_label": "tpt-u-hs-u", + "branded_variable_name": "rsds_tpt-u-hs-u", + "region": "GLB", + "cmip6_compound_name": "CFsubhr.rsds", + "cmip7_compound_name": "atmos.rsds.tpt-u-hs-u.subhr.GLB", + "uid": "8008b660-f906-11e6-a176-5404a60d96b5" + }, + "atmos.rsds.tpt-u-hxy-u.3hr.GLB": { + "frequency": "3hr", + "modeling_realm": "atmos", + "standard_name": "surface_downwelling_shortwave_flux_in_air", + "units": "W m-2", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Surface Downwelling Shortwave Radiation", + "comment": "Surface solar irradiance for UV calculations.", + "dimensions": "longitude latitude time1", + "out_name": "rsds", + "type": "real", + "positive": "down", + "spatial_shape": "XY-na", + "temporal_shape": "time-point", + "cmip6_table": "CF3hr", + "physical_parameter_name": "rsds", + "variableRootDD": "rsds", + "branding_label": "tpt-u-hxy-u", + "branded_variable_name": "rsds_tpt-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "CF3hr.rsds", + "cmip7_compound_name": "atmos.rsds.tpt-u-hxy-u.3hr.GLB", + "uid": "e0ab60be-4b7f-11e7-903f-5404a60d96b5" + }, + "atmos.rsdscs.tavg-u-hxy-u.day.GLB": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "surface_downwelling_shortwave_flux_in_air_assuming_clear_sky", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Surface Downwelling Clear-Sky Shortwave Radiation", + "comment": "Surface solar irradiance clear sky for UV calculations", + "dimensions": "longitude latitude time", + "out_name": "rsdscs", + "type": "real", + "positive": "down", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "CFday", + "physical_parameter_name": "rsdscs", + "variableRootDD": "rsdscs", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "rsdscs_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "CFday.rsdscs", + "cmip7_compound_name": "atmos.rsdscs.tavg-u-hxy-u.day.GLB", + "uid": "bab60b42-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.rsdscs.tavg-u-hxy-u.mon.30S-90S": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "surface_downwelling_shortwave_flux_in_air_assuming_clear_sky", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Surface Downwelling Clear-Sky Shortwave Radiation", + "comment": "Surface solar irradiance clear sky for UV calculations", + "dimensions": "longitude latitude time", + "out_name": "rsdscs", + "type": "real", + "positive": "down", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Amon", + "physical_parameter_name": "rsdscs", + "variableRootDD": "rsdscs", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "rsdscs_tavg-u-hxy-u", + "region": "30S-90S", + "cmip6_compound_name": "Amon.rsdscsSouth30", + "cmip7_compound_name": "atmos.rsdscs.tavg-u-hxy-u.mon.30S-90S", + "uid": "80ac31c9-a698-11ef-914a-613c0433d878" + }, + "atmos.rsdscs.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "surface_downwelling_shortwave_flux_in_air_assuming_clear_sky", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Surface Downwelling Clear-Sky Shortwave Radiation", + "comment": "Surface solar irradiance clear sky for UV calculations", + "dimensions": "longitude latitude time", + "out_name": "rsdscs", + "type": "real", + "positive": "down", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Amon", + "physical_parameter_name": "rsdscs", + "variableRootDD": "rsdscs", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "rsdscs_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "Amon.rsdscs", + "cmip7_compound_name": "atmos.rsdscs.tavg-u-hxy-u.mon.GLB", + "uid": "bab607c8-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.rsdscs.tpt-u-hs-u.subhr.GLB": { + "frequency": "subhr", + "modeling_realm": "atmos", + "standard_name": "surface_downwelling_shortwave_flux_in_air_assuming_clear_sky", + "units": "W m-2", + "cell_methods": "area: point time: point", + "cell_measures": "", + "long_name": "Surface Downwelling Clear-Sky Shortwave Radiation", + "comment": "Surface solar irradiance clear sky for UV calculations", + "dimensions": "site time1", + "out_name": "rsdscs", + "type": "real", + "positive": "down", + "spatial_shape": "S-na", + "temporal_shape": "time-point", + "cmip6_table": "CFsubhr", + "physical_parameter_name": "rsdscs", + "variableRootDD": "rsdscs", + "branding_label": "tpt-u-hs-u", + "branded_variable_name": "rsdscs_tpt-u-hs-u", + "region": "GLB", + "cmip6_compound_name": "CFsubhr.rsdscs", + "cmip7_compound_name": "atmos.rsdscs.tpt-u-hs-u.subhr.GLB", + "uid": "8008dbd6-f906-11e6-a176-5404a60d96b5" + }, + "atmos.rsdscs.tpt-u-hxy-u.3hr.GLB": { + "frequency": "3hr", + "modeling_realm": "atmos", + "standard_name": "surface_downwelling_shortwave_flux_in_air_assuming_clear_sky", + "units": "W m-2", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Surface Downwelling Clear-Sky Shortwave Radiation", + "comment": "Surface solar irradiance clear sky for UV calculations", + "dimensions": "longitude latitude time1", + "out_name": "rsdscs", + "type": "real", + "positive": "down", + "spatial_shape": "XY-na", + "temporal_shape": "time-point", + "cmip6_table": "CF3hr", + "physical_parameter_name": "rsdscs", + "variableRootDD": "rsdscs", + "branding_label": "tpt-u-hxy-u", + "branded_variable_name": "rsdscs_tpt-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "CF3hr.rsdscs", + "cmip7_compound_name": "atmos.rsdscs.tpt-u-hxy-u.3hr.GLB", + "uid": "e0ab6352-4b7f-11e7-903f-5404a60d96b5" + }, + "atmos.rsdscsdiff.tavg-u-hxy-u.day.GLB": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "surface_diffuse_downwelling_shortwave_flux_in_air_assuming_clear_sky", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Surface Diffuse Downwelling Clear Sky Shortwave Radiation", + "comment": "Surface downwelling solar irradiance from diffuse radiation for UV calculations in clear sky conditions", + "dimensions": "longitude latitude time", + "out_name": "rsdscsdiff", + "type": "real", + "positive": "down", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Eday", + "physical_parameter_name": "rsdscsdiff", + "variableRootDD": "rsdscsdiff", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "rsdscsdiff_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "Eday.rsdscsdiff", + "cmip7_compound_name": "atmos.rsdscsdiff.tavg-u-hxy-u.day.GLB", + "uid": "7d8c6a76-1ab7-11e7-8dfc-5404a60d96b5" + }, + "atmos.rsdsdiff.tavg-u-hxy-u.1hr.GLB": { + "frequency": "1hr", + "modeling_realm": "atmos", + "standard_name": "surface_diffuse_downwelling_shortwave_flux_in_air", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Surface Diffuse Downwelling Shortwave Radiation", + "comment": "Surface Diffuse Downwelling Shortwave Radiation", + "dimensions": "longitude latitude time", + "out_name": "rsdsdiff", + "type": "real", + "positive": "down", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "E1hr", + "physical_parameter_name": "rsdsdiff", + "variableRootDD": "rsdsdiff", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "rsdsdiff_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "E1hr.rsdsdiff", + "cmip7_compound_name": "atmos.rsdsdiff.tavg-u-hxy-u.1hr.GLB", + "uid": "83bbfc77-7f07-11ef-9308-b1dd71e64bec" + }, + "atmos.rsdsdiff.tavg-u-hxy-u.day.GLB": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "surface_diffuse_downwelling_shortwave_flux_in_air", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Surface Diffuse Downwelling Shortwave Radiation", + "comment": "Surface downwelling solar irradiance from diffuse radiation for UV calculations.", + "dimensions": "longitude latitude time", + "out_name": "rsdsdiff", + "type": "real", + "positive": "down", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Eday", + "physical_parameter_name": "rsdsdiff", + "variableRootDD": "rsdsdiff", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "rsdsdiff_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "Eday.rsdsdiff", + "cmip7_compound_name": "atmos.rsdsdiff.tavg-u-hxy-u.day.GLB", + "uid": "7d8c633c-1ab7-11e7-8dfc-5404a60d96b5" + }, + "atmos.rsdt.tavg-u-hxy-u.day.GLB": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "toa_incoming_shortwave_flux", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "TOA Incident Shortwave Radiation", + "comment": "Shortwave radiation incident at the top of the atmosphere", + "dimensions": "longitude latitude time", + "out_name": "rsdt", + "type": "real", + "positive": "down", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "CFday", + "physical_parameter_name": "rsdt", + "variableRootDD": "rsdt", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "rsdt_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "CFday.rsdt", + "cmip7_compound_name": "atmos.rsdt.tavg-u-hxy-u.day.GLB", + "uid": "bab625a0-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.rsdt.tavg-u-hxy-u.mon.30S-90S": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "toa_incoming_shortwave_flux", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "TOA Incident Shortwave Radiation", + "comment": "at the top of the atmosphere", + "dimensions": "longitude latitude time", + "out_name": "rsdt", + "type": "real", + "positive": "down", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Amon", + "physical_parameter_name": "rsdt", + "variableRootDD": "rsdt", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "rsdt_tavg-u-hxy-u", + "region": "30S-90S", + "cmip6_compound_name": "Amon.rsdtSouth30", + "cmip7_compound_name": "atmos.rsdt.tavg-u-hxy-u.mon.30S-90S", + "uid": "80ac31ca-a698-11ef-914a-613c0433d878" + }, + "atmos.rsdt.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "toa_incoming_shortwave_flux", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "TOA Incident Shortwave Radiation", + "comment": "at the top of the atmosphere", + "dimensions": "longitude latitude time", + "out_name": "rsdt", + "type": "real", + "positive": "down", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Amon", + "physical_parameter_name": "rsdt", + "variableRootDD": "rsdt", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "rsdt_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "Amon.rsdt", + "cmip7_compound_name": "atmos.rsdt.tavg-u-hxy-u.mon.GLB", + "uid": "bab6219a-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.rsdt.tclmdc-u-hxy-u.1hr.GLB": { + "frequency": "1hr", + "modeling_realm": "atmos", + "standard_name": "toa_incoming_shortwave_flux", + "units": "W m-2", + "cell_methods": "area: mean time: mean within days time: mean over days", + "cell_measures": "area: areacella", + "long_name": "TOA Incident Shortwave Radiation", + "comment": "Shortwave radiation incident at the top of the atmosphere", + "dimensions": "longitude latitude time3", + "out_name": "rsdt", + "type": "real", + "positive": "down", + "spatial_shape": "XY-na", + "temporal_shape": "diurnal-cycle", + "cmip6_table": "E1hrClimMon", + "physical_parameter_name": "rsdt", + "variableRootDD": "rsdt", + "branding_label": "tclmdc-u-hxy-u", + "branded_variable_name": "rsdt_tclmdc-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "E1hrClimMon.rsdt", + "cmip7_compound_name": "atmos.rsdt.tclmdc-u-hxy-u.1hr.GLB", + "uid": "8b8b499e-4a5b-11e6-9cd2-ac72891c3257" + }, + "atmos.rsdt.tpt-u-hs-u.subhr.GLB": { + "frequency": "subhr", + "modeling_realm": "atmos", + "standard_name": "toa_incoming_shortwave_flux", + "units": "W m-2", + "cell_methods": "area: point time: point", + "cell_measures": "", + "long_name": "TOA Incident Shortwave Radiation", + "comment": "at the top of the atmosphere", + "dimensions": "site time1", + "out_name": "rsdt", + "type": "real", + "positive": "down", + "spatial_shape": "S-na", + "temporal_shape": "time-point", + "cmip6_table": "CFsubhr", + "physical_parameter_name": "rsdt", + "variableRootDD": "rsdt", + "branding_label": "tpt-u-hs-u", + "branded_variable_name": "rsdt_tpt-u-hs-u", + "region": "GLB", + "cmip6_compound_name": "CFsubhr.rsdt", + "cmip7_compound_name": "atmos.rsdt.tpt-u-hs-u.subhr.GLB", + "uid": "800916b4-f906-11e6-a176-5404a60d96b5" + }, + "atmos.rss.tavg-u-hxy-u.day.GLB": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "surface_net_downward_shortwave_flux", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Net Shortwave Surface Radiation", + "comment": "Net shortwave radiation", + "dimensions": "longitude latitude time", + "out_name": "rss", + "type": "real", + "positive": "down", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "day", + "physical_parameter_name": "rss", + "variableRootDD": "rss", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "rss_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "day.rss", + "cmip7_compound_name": "atmos.rss.tavg-u-hxy-u.day.GLB", + "uid": "8ca589c4-633c-11e8-9791-a44cc8186c64" + }, + "atmos.rss.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "surface_net_downward_shortwave_flux", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Net Shortwave Surface Radiation", + "comment": "Net downward shortwave radiation at the surface", + "dimensions": "longitude latitude time", + "out_name": "rss", + "type": "real", + "positive": "down", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "rss", + "variableRootDD": "rss", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "rss_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "Emon.rss", + "cmip7_compound_name": "atmos.rss.tavg-u-hxy-u.mon.GLB", + "uid": "6f68f91c-9acb-11e6-b7ee-ac72891c3257" + }, + "atmos.rsu.tavg-alh-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "upwelling_shortwave_flux_in_air", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Upwelling Shortwave Radiation", + "comment": "Includes also the fluxes at the surface and TOA.", + "dimensions": "longitude latitude alevhalf time", + "out_name": "rsu", + "type": "real", + "positive": "up", + "spatial_shape": "XY-AH", + "temporal_shape": "time-intv", + "cmip6_table": "CFmon", + "physical_parameter_name": "rsu", + "variableRootDD": "rsu", + "branding_label": "tavg-alh-hxy-u", + "branded_variable_name": "rsu_tavg-alh-hxy-u", + "region": "GLB", + "cmip6_compound_name": "CFmon.rsu", + "cmip7_compound_name": "atmos.rsu.tavg-alh-hxy-u.mon.GLB", + "uid": "bab64814-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.rsu.tpt-alh-hs-u.subhr.GLB": { + "frequency": "subhr", + "modeling_realm": "atmos", + "standard_name": "upwelling_shortwave_flux_in_air", + "units": "W m-2", + "cell_methods": "area: point time: point", + "cell_measures": "", + "long_name": "Upwelling Shortwave Radiation", + "comment": "Upwelling shortwave radiation (includes also the fluxes at the surface and top of atmosphere)", + "dimensions": "alevhalf site time1", + "out_name": "rsu", + "type": "real", + "positive": "up", + "spatial_shape": "S-AH", + "temporal_shape": "time-point", + "cmip6_table": "CFsubhr", + "physical_parameter_name": "rsu", + "variableRootDD": "rsu", + "branding_label": "tpt-alh-hs-u", + "branded_variable_name": "rsu_tpt-alh-hs-u", + "region": "GLB", + "cmip6_compound_name": "CFsubhr.rsu", + "cmip7_compound_name": "atmos.rsu.tpt-alh-hs-u.subhr.GLB", + "uid": "a954f742-817c-11e6-a4e2-5404a60d96b5" + }, + "atmos.rsu4co2.tavg-alh-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "upwelling_shortwave_flux_in_air", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Upwelling Shortwave Radiation 4XCO2 Atmosphere", + "comment": "Upwelling Shortwave Radiation calculated using carbon dioxide concentrations increased fourfold", + "dimensions": "longitude latitude alevhalf time", + "out_name": "rsu4co2", + "type": "real", + "positive": "up", + "spatial_shape": "XY-AH", + "temporal_shape": "time-intv", + "cmip6_table": "CFmon", + "physical_parameter_name": "rsu4co2", + "variableRootDD": "rsu4co2", + "branding_label": "tavg-alh-hxy-u", + "branded_variable_name": "rsu4co2_tavg-alh-hxy-u", + "region": "GLB", + "cmip6_compound_name": "CFmon.rsu4co2", + "cmip7_compound_name": "atmos.rsu4co2.tavg-alh-hxy-u.mon.GLB", + "uid": "bab6438c-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.rsucs.tavg-alh-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "upwelling_shortwave_flux_in_air_assuming_clear_sky", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Upwelling Clear-Sky Shortwave Radiation", + "comment": "Includes also the fluxes at the surface and TOA.", + "dimensions": "longitude latitude alevhalf time", + "out_name": "rsucs", + "type": "real", + "positive": "up", + "spatial_shape": "XY-AH", + "temporal_shape": "time-intv", + "cmip6_table": "CFmon", + "physical_parameter_name": "rsucs", + "variableRootDD": "rsucs", + "branding_label": "tavg-alh-hxy-u", + "branded_variable_name": "rsucs_tavg-alh-hxy-u", + "region": "GLB", + "cmip6_compound_name": "CFmon.rsucs", + "cmip7_compound_name": "atmos.rsucs.tavg-alh-hxy-u.mon.GLB", + "uid": "bab64ee0-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.rsucs.tpt-alh-hs-u.subhr.GLB": { + "frequency": "subhr", + "modeling_realm": "atmos", + "standard_name": "upwelling_shortwave_flux_in_air_assuming_clear_sky", + "units": "W m-2", + "cell_methods": "area: point time: point", + "cell_measures": "", + "long_name": "Upwelling Clear-Sky Shortwave Radiation", + "comment": "Upwelling clear-sky shortwave radiation (includes the fluxes at the surface and TOA)", + "dimensions": "alevhalf site time1", + "out_name": "rsucs", + "type": "real", + "positive": "up", + "spatial_shape": "S-AH", + "temporal_shape": "time-point", + "cmip6_table": "CFsubhr", + "physical_parameter_name": "rsucs", + "variableRootDD": "rsucs", + "branding_label": "tpt-alh-hs-u", + "branded_variable_name": "rsucs_tpt-alh-hs-u", + "region": "GLB", + "cmip6_compound_name": "CFsubhr.rsucs", + "cmip7_compound_name": "atmos.rsucs.tpt-alh-hs-u.subhr.GLB", + "uid": "a955260e-817c-11e6-a4e2-5404a60d96b5" + }, + "atmos.rsucs4co2.tavg-alh-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "upwelling_shortwave_flux_in_air_assuming_clear_sky", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Upwelling Clear-Sky Shortwave Radiation 4XCO2 Atmosphere", + "comment": "Upwelling clear-sky shortwave radiation calculated using carbon dioxide concentrations increased fourfold", + "dimensions": "longitude latitude alevhalf time", + "out_name": "rsucs4co2", + "type": "real", + "positive": "up", + "spatial_shape": "XY-AH", + "temporal_shape": "time-intv", + "cmip6_table": "CFmon", + "physical_parameter_name": "rsucs4co2", + "variableRootDD": "rsucs4co2", + "branding_label": "tavg-alh-hxy-u", + "branded_variable_name": "rsucs4co2_tavg-alh-hxy-u", + "region": "GLB", + "cmip6_compound_name": "CFmon.rsucs4co2", + "cmip7_compound_name": "atmos.rsucs4co2.tavg-alh-hxy-u.mon.GLB", + "uid": "bab64a6c-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.rsus.tavg-u-hxy-is.mon.ATA": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "surface_upwelling_shortwave_flux_in_air", + "units": "W m-2", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacellg", + "long_name": "Surface Upwelling Shortwave Radiation", + "comment": "The surface called \"surface\" means the lower boundary of the atmosphere. \"shortwave\" means shortwave radiation. Upwelling radiation is radiation from below. It does not mean \"net upward\". When thought of as being incident on a surface, a radiative flux is sometimes called \"irradiance\". In addition, it is identical with the quantity measured by a cosine-collector light-meter and sometimes called \"vector irradiance\". In accordance with common usage in geophysical disciplines, \"flux\" implies per unit area, called \"flux density\" in physics.", + "dimensions": "longitude latitude time", + "out_name": "rsus", + "type": "real", + "positive": "up", + "spatial_shape": "XYA-na", + "temporal_shape": "time-intv", + "cmip6_table": "ImonAnt", + "physical_parameter_name": "rsus", + "variableRootDD": "rsus", + "branding_label": "tavg-u-hxy-is", + "branded_variable_name": "rsus_tavg-u-hxy-is", + "region": "ATA", + "cmip6_compound_name": "ImonAnt.rsus", + "cmip7_compound_name": "atmos.rsus.tavg-u-hxy-is.mon.ATA", + "uid": "d5b33874-c78d-11e6-9b25-5404a60d96b5" + }, + "atmos.rsus.tavg-u-hxy-is.mon.GRL": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "surface_upwelling_shortwave_flux_in_air", + "units": "W m-2", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacellg", + "long_name": "Surface Upwelling Shortwave Radiation", + "comment": "The surface called \"surface\" means the lower boundary of the atmosphere. \"shortwave\" means shortwave radiation. Upwelling radiation is radiation from below. It does not mean \"net upward\". When thought of as being incident on a surface, a radiative flux is sometimes called \"irradiance\". In addition, it is identical with the quantity measured by a cosine-collector light-meter and sometimes called \"vector irradiance\". In accordance with common usage in geophysical disciplines, \"flux\" implies per unit area, called \"flux density\" in physics.", + "dimensions": "longitude latitude time", + "out_name": "rsus", + "type": "real", + "positive": "up", + "spatial_shape": "XYG-na", + "temporal_shape": "time-intv", + "cmip6_table": "ImonGre", + "physical_parameter_name": "rsus", + "variableRootDD": "rsus", + "branding_label": "tavg-u-hxy-is", + "branded_variable_name": "rsus_tavg-u-hxy-is", + "region": "GRL", + "cmip6_compound_name": "ImonGre.rsus", + "cmip7_compound_name": "atmos.rsus.tavg-u-hxy-is.mon.GRL", + "uid": "d5b2c150-c78d-11e6-9b25-5404a60d96b5" + }, + "atmos.rsus.tavg-u-hxy-u.1hr.GLB": { + "frequency": "1hr", + "modeling_realm": "atmos", + "standard_name": "surface_upwelling_shortwave_flux_in_air", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Surface upwelling shortwave radiation", + "comment": "Surface upwelling shortwave radiation", + "dimensions": "longitude latitude time", + "out_name": "rsus", + "type": "real", + "positive": "up", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "E1hr", + "physical_parameter_name": "rsus", + "variableRootDD": "rsus", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "rsus_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "E1hr.rsus", + "cmip7_compound_name": "atmos.rsus.tavg-u-hxy-u.1hr.GLB", + "uid": "83bbfbc1-7f07-11ef-9308-b1dd71e64bec" + }, + "atmos.rsus.tavg-u-hxy-u.3hr.GLB": { + "frequency": "3hr", + "modeling_realm": "atmos", + "standard_name": "surface_upwelling_shortwave_flux_in_air", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Surface Upwelling Shortwave Radiation", + "comment": "This is the 3-hour mean flux.", + "dimensions": "longitude latitude time", + "out_name": "rsus", + "type": "real", + "positive": "up", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "3hr", + "physical_parameter_name": "rsus", + "variableRootDD": "rsus", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "rsus_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "3hr.rsus", + "cmip7_compound_name": "atmos.rsus.tavg-u-hxy-u.3hr.GLB", + "uid": "bab65138-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.rsus.tavg-u-hxy-u.day.GLB": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "surface_upwelling_shortwave_flux_in_air", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Surface Upwelling Shortwave Radiation", + "comment": "The surface called \"surface\" means the lower boundary of the atmosphere. \"shortwave\" means shortwave radiation. Upwelling radiation is radiation from below. It does not mean \"net upward\". When thought of as being incident on a surface, a radiative flux is sometimes called \"irradiance\". In addition, it is identical with the quantity measured by a cosine-collector light-meter and sometimes called \"vector irradiance\". In accordance with common usage in geophysical disciplines, \"flux\" implies per unit area, called \"flux density\" in physics.", + "dimensions": "longitude latitude time", + "out_name": "rsus", + "type": "real", + "positive": "up", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "day", + "physical_parameter_name": "rsus", + "variableRootDD": "rsus", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "rsus_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "day.rsus", + "cmip7_compound_name": "atmos.rsus.tavg-u-hxy-u.day.GLB", + "uid": "bab65ad4-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.rsus.tavg-u-hxy-u.mon.30S-90S": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "surface_upwelling_shortwave_flux_in_air", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Surface Upwelling Shortwave Radiation", + "comment": "The surface called \"surface\" means the lower boundary of the atmosphere. \"shortwave\" means shortwave radiation. Upwelling radiation is radiation from below. It does not mean \"net upward\". When thought of as being incident on a surface, a radiative flux is sometimes called \"irradiance\". In addition, it is identical with the quantity measured by a cosine-collector light-meter and sometimes called \"vector irradiance\". In accordance with common usage in geophysical disciplines, \"flux\" implies per unit area, called \"flux density\" in physics.", + "dimensions": "longitude latitude time", + "out_name": "rsus", + "type": "real", + "positive": "up", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Amon", + "physical_parameter_name": "rsus", + "variableRootDD": "rsus", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "rsus_tavg-u-hxy-u", + "region": "30S-90S", + "cmip6_compound_name": "Amon.rsusSouth30", + "cmip7_compound_name": "atmos.rsus.tavg-u-hxy-u.mon.30S-90S", + "uid": "80ac31cb-a698-11ef-914a-613c0433d878" + }, + "atmos.rsus.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "surface_upwelling_shortwave_flux_in_air", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Surface Upwelling Shortwave Radiation", + "comment": "The surface called \"surface\" means the lower boundary of the atmosphere. \"shortwave\" means shortwave radiation. Upwelling radiation is radiation from below. It does not mean \"net upward\". When thought of as being incident on a surface, a radiative flux is sometimes called \"irradiance\". In addition, it is identical with the quantity measured by a cosine-collector light-meter and sometimes called \"vector irradiance\". In accordance with common usage in geophysical disciplines, \"flux\" implies per unit area, called \"flux density\" in physics.", + "dimensions": "longitude latitude time", + "out_name": "rsus", + "type": "real", + "positive": "up", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Amon", + "physical_parameter_name": "rsus", + "variableRootDD": "rsus", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "rsus_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "Amon.rsus", + "cmip7_compound_name": "atmos.rsus.tavg-u-hxy-u.mon.GLB", + "uid": "bab6537c-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.rsus.tpt-u-hs-u.subhr.GLB": { + "frequency": "subhr", + "modeling_realm": "atmos", + "standard_name": "surface_upwelling_shortwave_flux_in_air", + "units": "W m-2", + "cell_methods": "area: point time: point", + "cell_measures": "", + "long_name": "Surface Upwelling Shortwave Radiation", + "comment": "The surface called \"surface\" means the lower boundary of the atmosphere. \"shortwave\" means shortwave radiation. Upwelling radiation is radiation from below. It does not mean \"net upward\". When thought of as being incident on a surface, a radiative flux is sometimes called \"irradiance\". In addition, it is identical with the quantity measured by a cosine-collector light-meter and sometimes called \"vector irradiance\". In accordance with common usage in geophysical disciplines, \"flux\" implies per unit area, called \"flux density\" in physics.", + "dimensions": "site time1", + "out_name": "rsus", + "type": "real", + "positive": "up", + "spatial_shape": "S-na", + "temporal_shape": "time-point", + "cmip6_table": "CFsubhr", + "physical_parameter_name": "rsus", + "variableRootDD": "rsus", + "branding_label": "tpt-u-hs-u", + "branded_variable_name": "rsus_tpt-u-hs-u", + "region": "GLB", + "cmip6_compound_name": "CFsubhr.rsus", + "cmip7_compound_name": "atmos.rsus.tpt-u-hs-u.subhr.GLB", + "uid": "8008c902-f906-11e6-a176-5404a60d96b5" + }, + "atmos.rsuscs.tavg-u-hxy-u.day.GLB": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "surface_upwelling_shortwave_flux_in_air_assuming_clear_sky", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Surface Upwelling Clear-Sky Shortwave Radiation", + "comment": "Surface Upwelling Clear-sky Shortwave Radiation", + "dimensions": "longitude latitude time", + "out_name": "rsuscs", + "type": "real", + "positive": "up", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "CFday", + "physical_parameter_name": "rsuscs", + "variableRootDD": "rsuscs", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "rsuscs_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "CFday.rsuscs", + "cmip7_compound_name": "atmos.rsuscs.tavg-u-hxy-u.day.GLB", + "uid": "bab67424-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.rsuscs.tavg-u-hxy-u.mon.30S-90S": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "surface_upwelling_shortwave_flux_in_air_assuming_clear_sky", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Surface Upwelling Clear-Sky Shortwave Radiation", + "comment": "Surface Upwelling Clear-sky Shortwave Radiation", + "dimensions": "longitude latitude time", + "out_name": "rsuscs", + "type": "real", + "positive": "up", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Amon", + "physical_parameter_name": "rsuscs", + "variableRootDD": "rsuscs", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "rsuscs_tavg-u-hxy-u", + "region": "30S-90S", + "cmip6_compound_name": "Amon.rsuscsSouth30", + "cmip7_compound_name": "atmos.rsuscs.tavg-u-hxy-u.mon.30S-90S", + "uid": "80ac31cc-a698-11ef-914a-613c0433d878" + }, + "atmos.rsuscs.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "surface_upwelling_shortwave_flux_in_air_assuming_clear_sky", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Surface Upwelling Clear-Sky Shortwave Radiation", + "comment": "Surface Upwelling Clear-sky Shortwave Radiation", + "dimensions": "longitude latitude time", + "out_name": "rsuscs", + "type": "real", + "positive": "up", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Amon", + "physical_parameter_name": "rsuscs", + "variableRootDD": "rsuscs", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "rsuscs_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "Amon.rsuscs", + "cmip7_compound_name": "atmos.rsuscs.tavg-u-hxy-u.mon.GLB", + "uid": "bab670b4-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.rsuscs.tpt-u-hs-u.subhr.GLB": { + "frequency": "subhr", + "modeling_realm": "atmos", + "standard_name": "surface_upwelling_shortwave_flux_in_air_assuming_clear_sky", + "units": "W m-2", + "cell_methods": "area: point time: point", + "cell_measures": "", + "long_name": "Surface Upwelling Clear-Sky Shortwave Radiation", + "comment": "Surface Upwelling Clear-sky Shortwave Radiation", + "dimensions": "site time1", + "out_name": "rsuscs", + "type": "real", + "positive": "up", + "spatial_shape": "S-na", + "temporal_shape": "time-point", + "cmip6_table": "CFsubhr", + "physical_parameter_name": "rsuscs", + "variableRootDD": "rsuscs", + "branding_label": "tpt-u-hs-u", + "branded_variable_name": "rsuscs_tpt-u-hs-u", + "region": "GLB", + "cmip6_compound_name": "CFsubhr.rsuscs", + "cmip7_compound_name": "atmos.rsuscs.tpt-u-hs-u.subhr.GLB", + "uid": "8008f0ee-f906-11e6-a176-5404a60d96b5" + }, + "atmos.rsut.tavg-u-hxy-u.3hr.GLB": { + "frequency": "3hr", + "modeling_realm": "atmos", + "standard_name": "toa_outgoing_shortwave_flux", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "TOA Outgoing Shortwave Radiation", + "comment": "TOA outgoing shortwave radiation", + "dimensions": "longitude latitude time", + "out_name": "rsut", + "type": "real", + "positive": "up", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "E3hr", + "physical_parameter_name": "rsut", + "variableRootDD": "rsut", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "rsut_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "E3hr.rsut", + "cmip7_compound_name": "atmos.rsut.tavg-u-hxy-u.3hr.GLB", + "uid": "8bb0ae3c-4a5b-11e6-9cd2-ac72891c3257" + }, + "atmos.rsut.tavg-u-hxy-u.day.GLB": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "toa_outgoing_shortwave_flux", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "TOA Outgoing Shortwave Radiation", + "comment": "at the top of the atmosphere", + "dimensions": "longitude latitude time", + "out_name": "rsut", + "type": "real", + "positive": "up", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "CFday", + "physical_parameter_name": "rsut", + "variableRootDD": "rsut", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "rsut_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "CFday.rsut", + "cmip7_compound_name": "atmos.rsut.tavg-u-hxy-u.day.GLB", + "uid": "bab68392-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.rsut.tavg-u-hxy-u.mon.30S-90S": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "toa_outgoing_shortwave_flux", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "TOA Outgoing Shortwave Radiation", + "comment": "at the top of the atmosphere", + "dimensions": "longitude latitude time", + "out_name": "rsut", + "type": "real", + "positive": "up", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Amon", + "physical_parameter_name": "rsut", + "variableRootDD": "rsut", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "rsut_tavg-u-hxy-u", + "region": "30S-90S", + "cmip6_compound_name": "Amon.rsutSouth30", + "cmip7_compound_name": "atmos.rsut.tavg-u-hxy-u.mon.30S-90S", + "uid": "80ac31cd-a698-11ef-914a-613c0433d878" + }, + "atmos.rsut.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "toa_outgoing_shortwave_flux", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "TOA Outgoing Shortwave Radiation", + "comment": "at the top of the atmosphere", + "dimensions": "longitude latitude time", + "out_name": "rsut", + "type": "real", + "positive": "up", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Amon", + "physical_parameter_name": "rsut", + "variableRootDD": "rsut", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "rsut_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "Amon.rsut", + "cmip7_compound_name": "atmos.rsut.tavg-u-hxy-u.mon.GLB", + "uid": "bab68ebe-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.rsut.tclmdc-u-hxy-u.1hr.GLB": { + "frequency": "1hr", + "modeling_realm": "atmos", + "standard_name": "toa_outgoing_shortwave_flux", + "units": "W m-2", + "cell_methods": "area: mean time: mean within days time: mean over days", + "cell_measures": "area: areacella", + "long_name": "TOA Outgoing Shortwave Radiation", + "comment": "at the top of the atmosphere", + "dimensions": "longitude latitude time3", + "out_name": "rsut", + "type": "real", + "positive": "up", + "spatial_shape": "XY-na", + "temporal_shape": "diurnal-cycle", + "cmip6_table": "E1hrClimMon", + "physical_parameter_name": "rsut", + "variableRootDD": "rsut", + "branding_label": "tclmdc-u-hxy-u", + "branded_variable_name": "rsut_tclmdc-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "E1hrClimMon.rsut", + "cmip7_compound_name": "atmos.rsut.tclmdc-u-hxy-u.1hr.GLB", + "uid": "8b8b4e80-4a5b-11e6-9cd2-ac72891c3257" + }, + "atmos.rsut.tpt-u-hs-u.subhr.GLB": { + "frequency": "subhr", + "modeling_realm": "atmos", + "standard_name": "toa_outgoing_shortwave_flux", + "units": "W m-2", + "cell_methods": "area: point time: point", + "cell_measures": "", + "long_name": "TOA Outgoing Shortwave Radiation", + "comment": "at the top of the atmosphere", + "dimensions": "site time1", + "out_name": "rsut", + "type": "real", + "positive": "up", + "spatial_shape": "S-na", + "temporal_shape": "time-point", + "cmip6_table": "CFsubhr", + "physical_parameter_name": "rsut", + "variableRootDD": "rsut", + "branding_label": "tpt-u-hs-u", + "branded_variable_name": "rsut_tpt-u-hs-u", + "region": "GLB", + "cmip6_compound_name": "CFsubhr.rsut", + "cmip7_compound_name": "atmos.rsut.tpt-u-hs-u.subhr.GLB", + "uid": "80092bcc-f906-11e6-a176-5404a60d96b5" + }, + "atmos.rsut.tpt-u-hxy-u.3hr.GLB": { + "frequency": "3hr", + "modeling_realm": "atmos", + "standard_name": "toa_outgoing_shortwave_flux", + "units": "W m-2", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "TOA Outgoing Shortwave Radiation", + "comment": "at the top of the atmosphere", + "dimensions": "longitude latitude time1", + "out_name": "rsut", + "type": "real", + "positive": "up", + "spatial_shape": "XY-na", + "temporal_shape": "time-point", + "cmip6_table": "CF3hr", + "physical_parameter_name": "rsut", + "variableRootDD": "rsut", + "branding_label": "tpt-u-hxy-u", + "branded_variable_name": "rsut_tpt-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "CF3hr.rsut", + "cmip7_compound_name": "atmos.rsut.tpt-u-hxy-u.3hr.GLB", + "uid": "e0ab6a5a-4b7f-11e7-903f-5404a60d96b5" + }, + "atmos.rsut4co2.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "toa_outgoing_shortwave_flux", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "TOA Outgoing Shortwave Radiation in 4XCO2 Atmosphere", + "comment": "TOA Outgoing Shortwave Radiation calculated using carbon dioxide concentrations increased fourfold", + "dimensions": "longitude latitude time", + "out_name": "rsut4co2", + "type": "real", + "positive": "up", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "CFmon", + "physical_parameter_name": "rsut4co2", + "variableRootDD": "rsut4co2", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "rsut4co2_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "CFmon.rsut4co2", + "cmip7_compound_name": "atmos.rsut4co2.tavg-u-hxy-u.mon.GLB", + "uid": "bab68158-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.rsutcs.tavg-u-hxy-u.3hr.GLB": { + "frequency": "3hr", + "modeling_realm": "atmos", + "standard_name": "toa_outgoing_shortwave_flux_assuming_clear_sky", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "TOA Outgoing Clear-Sky Shortwave Radiation", + "comment": "TOA outgoing clear sky shortwave", + "dimensions": "longitude latitude time", + "out_name": "rsutcs", + "type": "real", + "positive": "up", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "E3hr", + "physical_parameter_name": "rsutcs", + "variableRootDD": "rsutcs", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "rsutcs_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "E3hr.rsutcs", + "cmip7_compound_name": "atmos.rsutcs.tavg-u-hxy-u.3hr.GLB", + "uid": "8bb0b832-4a5b-11e6-9cd2-ac72891c3257" + }, + "atmos.rsutcs.tavg-u-hxy-u.day.GLB": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "toa_outgoing_shortwave_flux_assuming_clear_sky", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "TOA Outgoing Clear-Sky Shortwave Radiation", + "comment": "Calculated in the absence of clouds.", + "dimensions": "longitude latitude time", + "out_name": "rsutcs", + "type": "real", + "positive": "up", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "CFday", + "physical_parameter_name": "rsutcs", + "variableRootDD": "rsutcs", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "rsutcs_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "CFday.rsutcs", + "cmip7_compound_name": "atmos.rsutcs.tavg-u-hxy-u.day.GLB", + "uid": "bab69f76-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.rsutcs.tavg-u-hxy-u.mon.30S-90S": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "toa_outgoing_shortwave_flux_assuming_clear_sky", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "TOA Outgoing Clear-Sky Shortwave Radiation", + "comment": "Calculated in the absence of clouds.", + "dimensions": "longitude latitude time", + "out_name": "rsutcs", + "type": "real", + "positive": "up", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Amon", + "physical_parameter_name": "rsutcs", + "variableRootDD": "rsutcs", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "rsutcs_tavg-u-hxy-u", + "region": "30S-90S", + "cmip6_compound_name": "Amon.rsutcsSouth30", + "cmip7_compound_name": "atmos.rsutcs.tavg-u-hxy-u.mon.30S-90S", + "uid": "80ac31ce-a698-11ef-914a-613c0433d878" + }, + "atmos.rsutcs.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "toa_outgoing_shortwave_flux_assuming_clear_sky", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "TOA Outgoing Clear-Sky Shortwave Radiation", + "comment": "Calculated in the absence of clouds.", + "dimensions": "longitude latitude time", + "out_name": "rsutcs", + "type": "real", + "positive": "up", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Amon", + "physical_parameter_name": "rsutcs", + "variableRootDD": "rsutcs", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "rsutcs_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "Amon.rsutcs", + "cmip7_compound_name": "atmos.rsutcs.tavg-u-hxy-u.mon.GLB", + "uid": "bab69c06-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.rsutcs.tclmdc-u-hxy-u.1hr.GLB": { + "frequency": "1hr", + "modeling_realm": "atmos", + "standard_name": "toa_outgoing_shortwave_flux_assuming_clear_sky", + "units": "W m-2", + "cell_methods": "area: mean time: mean within days time: mean over days", + "cell_measures": "area: areacella", + "long_name": "TOA Outgoing Clear-Sky Shortwave Radiation", + "comment": "Calculated in the absence of clouds.", + "dimensions": "longitude latitude time3", + "out_name": "rsutcs", + "type": "real", + "positive": "up", + "spatial_shape": "XY-na", + "temporal_shape": "diurnal-cycle", + "cmip6_table": "E1hrClimMon", + "physical_parameter_name": "rsutcs", + "variableRootDD": "rsutcs", + "branding_label": "tclmdc-u-hxy-u", + "branded_variable_name": "rsutcs_tclmdc-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "E1hrClimMon.rsutcs", + "cmip7_compound_name": "atmos.rsutcs.tclmdc-u-hxy-u.1hr.GLB", + "uid": "8b8b57fe-4a5b-11e6-9cd2-ac72891c3257" + }, + "atmos.rsutcs.tpt-u-hs-u.subhr.GLB": { + "frequency": "subhr", + "modeling_realm": "atmos", + "standard_name": "toa_outgoing_shortwave_flux_assuming_clear_sky", + "units": "W m-2", + "cell_methods": "area: point time: point", + "cell_measures": "", + "long_name": "TOA Outgoing Clear-Sky Shortwave Radiation", + "comment": "Calculated in the absence of clouds.", + "dimensions": "site time1", + "out_name": "rsutcs", + "type": "real", + "positive": "up", + "spatial_shape": "S-na", + "temporal_shape": "time-point", + "cmip6_table": "CFsubhr", + "physical_parameter_name": "rsutcs", + "variableRootDD": "rsutcs", + "branding_label": "tpt-u-hs-u", + "branded_variable_name": "rsutcs_tpt-u-hs-u", + "region": "GLB", + "cmip6_compound_name": "CFsubhr.rsutcs", + "cmip7_compound_name": "atmos.rsutcs.tpt-u-hs-u.subhr.GLB", + "uid": "80096614-f906-11e6-a176-5404a60d96b5" + }, + "atmos.rsutcs.tpt-u-hxy-u.3hr.GLB": { + "frequency": "3hr", + "modeling_realm": "atmos", + "standard_name": "toa_outgoing_shortwave_flux_assuming_clear_sky", + "units": "W m-2", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "TOA Outgoing Clear-Sky Shortwave Radiation", + "comment": "Calculated in the absence of clouds.", + "dimensions": "longitude latitude time1", + "out_name": "rsutcs", + "type": "real", + "positive": "up", + "spatial_shape": "XY-na", + "temporal_shape": "time-point", + "cmip6_table": "CF3hr", + "physical_parameter_name": "rsutcs", + "variableRootDD": "rsutcs", + "branding_label": "tpt-u-hxy-u", + "branded_variable_name": "rsutcs_tpt-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "CF3hr.rsutcs", + "cmip7_compound_name": "atmos.rsutcs.tpt-u-hxy-u.3hr.GLB", + "uid": "e0ab6cc6-4b7f-11e7-903f-5404a60d96b5" + }, + "atmos.rsutcs4co2.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "toa_outgoing_shortwave_flux_assuming_clear_sky", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "TOA Outgoing Clear-Sky Shortwave Radiation 4XCO2 Atmosphere", + "comment": "TOA Outgoing Clear-Sky Shortwave Radiation calculated using carbon dioxide concentrations increased fourfold", + "dimensions": "longitude latitude time", + "out_name": "rsutcs4co2", + "type": "real", + "positive": "up", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "CFmon", + "physical_parameter_name": "rsutcs4co2", + "variableRootDD": "rsutcs4co2", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "rsutcs4co2_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "CFmon.rsutcs4co2", + "cmip7_compound_name": "atmos.rsutcs4co2.tavg-u-hxy-u.mon.GLB", + "uid": "bab699c2-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.rtmt.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "net_downward_radiative_flux_at_top_of_atmosphere_model", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Net Downward Radiative Flux at Top of Model", + "comment": "i.e., at the top of that portion of the atmosphere where dynamics are explicitly treated by the model. This is reported only if it differs from the net downward radiative flux at the top of the atmosphere.", + "dimensions": "longitude latitude time", + "out_name": "rtmt", + "type": "real", + "positive": "down", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Amon", + "physical_parameter_name": "rtmt", + "variableRootDD": "rtmt", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "rtmt_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "Amon.rtmt", + "cmip7_compound_name": "atmos.rtmt.tavg-u-hxy-u.mon.GLB", + "uid": "bab6a91c-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.rtmt.tpt-u-hs-u.subhr.GLB": { + "frequency": "subhr", + "modeling_realm": "atmos", + "standard_name": "net_downward_radiative_flux_at_top_of_atmosphere_model", + "units": "W m-2", + "cell_methods": "area: point time: point", + "cell_measures": "", + "long_name": "Net Downward Radiative Flux at Top of Model", + "comment": "i.e., at the top of that portion of the atmosphere where dynamics are explicitly treated by the model. This is reported only if it differs from the net downward radiative flux at the top of the atmosphere.", + "dimensions": "site time1", + "out_name": "rtmt", + "type": "real", + "positive": "down", + "spatial_shape": "S-na", + "temporal_shape": "time-point", + "cmip6_table": "CFsubhr", + "physical_parameter_name": "rtmt", + "variableRootDD": "rtmt", + "branding_label": "tpt-u-hs-u", + "branded_variable_name": "rtmt_tpt-u-hs-u", + "region": "GLB", + "cmip6_compound_name": "CFsubhr.rtmt", + "cmip7_compound_name": "atmos.rtmt.tpt-u-hs-u.subhr.GLB", + "uid": "8009c7f8-f906-11e6-a176-5404a60d96b5" + }, + "atmos.rv850.tavg-850hPa-hxy-air.6hr.GLB": { + "frequency": "6hr", + "modeling_realm": "atmos", + "standard_name": "atmosphere_relative_vorticity", + "units": "s-1", + "cell_methods": "area: time: mean where air", + "cell_measures": "area: areacella", + "long_name": "Relative Vorticity at 850hPa", + "comment": "Relative vorticity is the upward component of the vorticity vector i.e. the component which arises from horizontal velocity.", + "dimensions": "longitude latitude time p850", + "out_name": "rv850", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "6hrPlev", + "physical_parameter_name": "rv850", + "variableRootDD": "rv850", + "branding_label": "tavg-850hPa-hxy-air", + "branded_variable_name": "rv850_tavg-850hPa-hxy-air", + "region": "GLB", + "cmip6_compound_name": "6hrPlev.rv850", + "cmip7_compound_name": "atmos.rv850.tavg-850hPa-hxy-air.6hr.GLB", + "uid": "8b920d10-4a5b-11e6-9cd2-ac72891c3257" + }, + "atmos.rv850.tpt-850hPa-hxy-air.6hr.GLB": { + "frequency": "6hr", + "modeling_realm": "atmos", + "standard_name": "atmosphere_relative_vorticity", + "units": "s-1", + "cell_methods": "area: mean where air time: point", + "cell_measures": "area: areacella", + "long_name": "Relative Vorticity at 850hPa", + "comment": "Relative vorticity is the upward component of the vorticity vector i.e. the component which arises from horizontal velocity.", + "dimensions": "longitude latitude time1 p850", + "out_name": "rv850", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-point", + "cmip6_table": "6hrPlevPt", + "physical_parameter_name": "rv850", + "variableRootDD": "rv850", + "branding_label": "tpt-850hPa-hxy-air", + "branded_variable_name": "rv850_tpt-850hPa-hxy-air", + "region": "GLB", + "cmip6_compound_name": "6hrPlevPt.rv850", + "cmip7_compound_name": "atmos.rv850.tpt-850hPa-hxy-air.6hr.GLB", + "uid": "7c70ee64-1ab7-11e7-8dfc-5404a60d96b5" + }, + "atmos.sci.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "shallow_convection_time_fraction", + "units": "1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Fraction of Time Shallow Convection Occurs", + "comment": "Fraction of time that convection occurs in the grid cell. If native cell data is regridded, the area-weighted mean of the contributing cells should be reported.", + "dimensions": "longitude latitude time", + "out_name": "sci", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Amon", + "physical_parameter_name": "sci", + "variableRootDD": "sci", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "sci_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "Amon.sci", + "cmip7_compound_name": "atmos.sci.tavg-u-hxy-u.mon.GLB", + "uid": "bab6d180-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.sci.tpt-u-hs-u.subhr.GLB": { + "frequency": "subhr", + "modeling_realm": "atmos", + "standard_name": "shallow_convection_time_fraction", + "units": "1", + "cell_methods": "area: point time: point", + "cell_measures": "", + "long_name": "Fraction of Time Shallow Convection Occurs", + "comment": "Fraction of time that shallow convection occurs in the grid cell. Variable is\u00a0binary, indicating whether at each time step convection occurs (1.0), or not (0.0).", + "dimensions": "site time1", + "out_name": "sci", + "type": "real", + "positive": "", + "spatial_shape": "S-na", + "temporal_shape": "time-point", + "cmip6_table": "CFsubhr", + "physical_parameter_name": "sci", + "variableRootDD": "sci", + "branding_label": "tpt-u-hs-u", + "branded_variable_name": "sci_tpt-u-hs-u", + "region": "GLB", + "cmip6_compound_name": "CFsubhr.sci", + "cmip7_compound_name": "atmos.sci.tpt-u-hs-u.subhr.GLB", + "uid": "800a1640-f906-11e6-a176-5404a60d96b5" + }, + "atmos.scldncl.tavg-u-hxy-scl.day.GLB": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "number_concentration_of_stratiform_cloud_liquid_water_particles_at_stratiform_liquid_water_cloud_top", + "units": "m-3", + "cell_methods": "area: time: mean where stratiform_cloud", + "cell_measures": "area: areacella", + "long_name": "Cloud Droplet Number Concentration of Stratiform Cloud Tops", + "comment": "Droplets are liquid only. Report concentration \"as seen from space\" over stratiform liquid cloudy portion of grid cell. This is the value from uppermost model layer with liquid cloud or, if available, it is better to sum over all liquid cloud tops, no matter where they occur, as long as they are seen from the top of the atmosphere. Weight by total liquid cloud top fraction of (as seen from TOA) each time sample when computing monthly mean.", + "dimensions": "longitude latitude time", + "out_name": "scldncl", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Eday", + "physical_parameter_name": "scldncl", + "variableRootDD": "scldncl", + "branding_label": "tavg-u-hxy-scl", + "branded_variable_name": "scldncl_tavg-u-hxy-scl", + "region": "GLB", + "cmip6_compound_name": "Eday.scldncl", + "cmip7_compound_name": "atmos.scldncl.tavg-u-hxy-scl.day.GLB", + "uid": "8b8b3896-4a5b-11e6-9cd2-ac72891c3257" + }, + "atmos.scldncl.tavg-u-hxy-scl.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "number_concentration_of_stratiform_cloud_liquid_water_particles_at_stratiform_liquid_water_cloud_top", + "units": "m-3", + "cell_methods": "area: time: mean where stratiform_cloud", + "cell_measures": "area: areacella", + "long_name": "Cloud Droplet Number Concentration of Stratiform Cloud Tops", + "comment": "Cloud Droplet Number Concentration of Stratiform Cloud Tops", + "dimensions": "longitude latitude time", + "out_name": "scldncl", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "scldncl", + "variableRootDD": "scldncl", + "branding_label": "tavg-u-hxy-scl", + "branded_variable_name": "scldncl_tavg-u-hxy-scl", + "region": "GLB", + "cmip6_compound_name": "Emon.scldncl", + "cmip7_compound_name": "atmos.scldncl.tavg-u-hxy-scl.mon.GLB", + "uid": "83bbfb9a-7f07-11ef-9308-b1dd71e64bec" + }, + "atmos.sfcWind.tavg-h10m-hxy-u.1hr.30S-90S": { + "frequency": "1hr", + "modeling_realm": "atmos", + "standard_name": "wind_speed", + "units": "m s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Hourly surface wind speed", + "comment": "Hourly near-surface wind speed at 10m above the ground", + "dimensions": "longitude latitude time height10m", + "out_name": "sfcWind", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "E1hr", + "physical_parameter_name": "sfcWind", + "variableRootDD": "sfcWind", + "branding_label": "tavg-h10m-hxy-u", + "branded_variable_name": "sfcWind_tavg-h10m-hxy-u", + "region": "30S-90S", + "cmip6_compound_name": "E1hr.sfcWindSouth30", + "cmip7_compound_name": "atmos.sfcWind.tavg-h10m-hxy-u.1hr.30S-90S", + "uid": "80ac31d0-a698-11ef-914a-613c0433d878" + }, + "atmos.sfcWind.tavg-h10m-hxy-u.1hr.GLB": { + "frequency": "1hr", + "modeling_realm": "atmos", + "standard_name": "wind_speed", + "units": "m s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Hourly surface wind speed", + "comment": "Hourly near-surface wind speed at 10m above the ground", + "dimensions": "longitude latitude time height10m", + "out_name": "sfcWind", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "E1hr", + "physical_parameter_name": "sfcWind", + "variableRootDD": "sfcWind", + "branding_label": "tavg-h10m-hxy-u", + "branded_variable_name": "sfcWind_tavg-h10m-hxy-u", + "region": "GLB", + "cmip6_compound_name": "E1hr.sfcWind", + "cmip7_compound_name": "atmos.sfcWind.tavg-h10m-hxy-u.1hr.GLB", + "uid": "83bbfbc0-7f07-11ef-9308-b1dd71e64bec" + }, + "atmos.sfcWind.tavg-h10m-hxy-u.3hr.GLB": { + "frequency": "3hr", + "modeling_realm": "atmos", + "standard_name": "wind_speed", + "units": "m s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Near-Surface Wind Speed", + "comment": "Near surface wind speed", + "dimensions": "longitude latitude time height10m", + "out_name": "sfcWind", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "E3hr", + "physical_parameter_name": "sfcWind", + "variableRootDD": "sfcWind", + "branding_label": "tavg-h10m-hxy-u", + "branded_variable_name": "sfcWind_tavg-h10m-hxy-u", + "region": "GLB", + "cmip6_compound_name": "E3hr.sfcWind", + "cmip7_compound_name": "atmos.sfcWind.tavg-h10m-hxy-u.3hr.GLB", + "uid": "7b1a2838-a220-11e6-a33f-ac72891c3257" + }, + "atmos.sfcWind.tavg-h10m-hxy-u.6hr.GLB": { + "frequency": "6hr", + "modeling_realm": "atmos", + "standard_name": "wind_speed", + "units": "m s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Near-Surface Wind Speed", + "comment": "near-surface (usually, 10 meters) wind speed.", + "dimensions": "longitude latitude time height10m", + "out_name": "sfcWind", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "6hrPlev", + "physical_parameter_name": "sfcWind", + "variableRootDD": "sfcWind", + "branding_label": "tavg-h10m-hxy-u", + "branded_variable_name": "sfcWind_tavg-h10m-hxy-u", + "region": "GLB", + "cmip6_compound_name": "6hrPlev.sfcWind", + "cmip7_compound_name": "atmos.sfcWind.tavg-h10m-hxy-u.6hr.GLB", + "uid": "910442b0-267c-11e7-8933-ac72891c3257" + }, + "atmos.sfcWind.tavg-h10m-hxy-u.day.GLB": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "wind_speed", + "units": "m s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Daily-Mean Near-Surface Wind Speed", + "comment": "near-surface (usually, 10 meters) wind speed.", + "dimensions": "longitude latitude time height10m", + "out_name": "sfcWind", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "day", + "physical_parameter_name": "sfcWind", + "variableRootDD": "sfcWind", + "branding_label": "tavg-h10m-hxy-u", + "branded_variable_name": "sfcWind_tavg-h10m-hxy-u", + "region": "GLB", + "cmip6_compound_name": "day.sfcWind", + "cmip7_compound_name": "atmos.sfcWind.tavg-h10m-hxy-u.day.GLB", + "uid": "bab6fe58-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.sfcWind.tavg-h10m-hxy-u.mon.30S-90S": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "wind_speed", + "units": "m s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Near-Surface Wind Speed", + "comment": "This is the mean of the speed, not the speed computed from the mean u and v components of wind", + "dimensions": "longitude latitude time height10m", + "out_name": "sfcWind", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Amon", + "physical_parameter_name": "sfcWind", + "variableRootDD": "sfcWind", + "branding_label": "tavg-h10m-hxy-u", + "branded_variable_name": "sfcWind_tavg-h10m-hxy-u", + "region": "30S-90S", + "cmip6_compound_name": "Amon.sfcWindSouth30", + "cmip7_compound_name": "atmos.sfcWind.tavg-h10m-hxy-u.mon.30S-90S", + "uid": "80ac31cf-a698-11ef-914a-613c0433d878" + }, + "atmos.sfcWind.tavg-h10m-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "wind_speed", + "units": "m s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Near-Surface Wind Speed", + "comment": "This is the mean of the speed, not the speed computed from the mean u and v components of wind", + "dimensions": "longitude latitude time height10m", + "out_name": "sfcWind", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Amon", + "physical_parameter_name": "sfcWind", + "variableRootDD": "sfcWind", + "branding_label": "tavg-h10m-hxy-u", + "branded_variable_name": "sfcWind_tavg-h10m-hxy-u", + "region": "GLB", + "cmip6_compound_name": "Amon.sfcWind", + "cmip7_compound_name": "atmos.sfcWind.tavg-h10m-hxy-u.mon.GLB", + "uid": "bab6f494-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.sfcWind.tmax-h10m-hxy-u.day.GLB": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "wind_speed", + "units": "m s-1", + "cell_methods": "area: mean time: maximum", + "cell_measures": "area: areacella", + "long_name": "Daily Maximum Near-Surface Wind Speed", + "comment": "Daily maximum near-surface (usually, 10 meters) wind speed.", + "dimensions": "longitude latitude time height10m", + "out_name": "sfcWindmax", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "day", + "physical_parameter_name": "sfcWindmax", + "variableRootDD": "sfcWind", + "branding_label": "tmax-h10m-hxy-u", + "branded_variable_name": "sfcWind_tmax-h10m-hxy-u", + "region": "GLB", + "cmip6_compound_name": "day.sfcWindmax", + "cmip7_compound_name": "atmos.sfcWind.tmax-h10m-hxy-u.day.GLB", + "uid": "bab709de-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.sfcWind.tmaxavg-h10m-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "wind_speed", + "units": "m s-1", + "cell_methods": "area: mean time: maximum within days time: mean over days", + "cell_measures": "area: areacella", + "long_name": "Daily Maximum Near-Surface Wind Speed", + "comment": "Daily maximum near-surface (usually, 10 meters) wind speed.", + "dimensions": "longitude latitude time4 height10m", + "out_name": "sfcWindmax", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "monthly-mean-daily-stat", + "cmip6_table": "Emon", + "physical_parameter_name": "sfcWindmax", + "variableRootDD": "sfcWind", + "branding_label": "tmaxavg-h10m-hxy-u", + "branded_variable_name": "sfcWind_tmaxavg-h10m-hxy-u", + "region": "GLB", + "cmip6_compound_name": "Emon.sfcWindmax", + "cmip7_compound_name": "atmos.sfcWind.tmaxavg-h10m-hxy-u.mon.GLB", + "uid": "fee11078-5270-11e6-bffa-5404a60d96b5" + }, + "atmos.sfcWind.tpt-h10m-hs-u.subhr.GLB": { + "frequency": "subhr", + "modeling_realm": "atmos", + "standard_name": "wind_speed", + "units": "m s-1", + "cell_methods": "area: point time: point", + "cell_measures": "", + "long_name": "Near-Surface Wind Speed", + "comment": "This is the mean of the speed, not the speed computed from the mean u and v components of wind", + "dimensions": "site time1 height10m", + "out_name": "sfcWind", + "type": "real", + "positive": "", + "spatial_shape": "S-na", + "temporal_shape": "time-point", + "cmip6_table": "CFsubhr", + "physical_parameter_name": "sfcWind", + "variableRootDD": "sfcWind", + "branding_label": "tpt-h10m-hs-u", + "branded_variable_name": "sfcWind_tpt-h10m-hs-u", + "region": "GLB", + "cmip6_compound_name": "CFsubhr.sfcWind", + "cmip7_compound_name": "atmos.sfcWind.tpt-h10m-hs-u.subhr.GLB", + "uid": "8007a11c-f906-11e6-a176-5404a60d96b5" + }, + "atmos.sftlf.ti-u-hxy-u.fx.GLB": { + "frequency": "fx", + "modeling_realm": "atmos", + "standard_name": "land_area_fraction", + "units": "%", + "cell_methods": "area: mean", + "cell_measures": "area: areacella", + "long_name": "Percentage of the Grid Cell Occupied by Land (Including Lakes)", + "comment": "Percentage of horizontal area occupied by land.", + "dimensions": "longitude latitude", + "out_name": "sftlf", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "None", + "cmip6_table": "fx", + "physical_parameter_name": "sftlf", + "variableRootDD": "sftlf", + "branding_label": "ti-u-hxy-u", + "branded_variable_name": "sftlf_ti-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "fx.sftlf", + "cmip7_compound_name": "atmos.sftlf.ti-u-hxy-u.fx.GLB", + "uid": "bab742c8-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.smc.tavg-alh-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "atmosphere_net_upward_shallow_convective_mass_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Shallow Convective Mass Flux", + "comment": "The net mass flux represents the difference between the updraft and downdraft components. For models with a distinct shallow convection scheme, this is calculated as convective mass flux divided by the area of the whole grid cell (not just the area of the cloud).", + "dimensions": "longitude latitude alevhalf time", + "out_name": "smc", + "type": "real", + "positive": "up", + "spatial_shape": "XY-AH", + "temporal_shape": "time-intv", + "cmip6_table": "CFmon", + "physical_parameter_name": "smc", + "variableRootDD": "smc", + "branding_label": "tavg-alh-hxy-u", + "branded_variable_name": "smc_tavg-alh-hxy-u", + "region": "GLB", + "cmip6_compound_name": "CFmon.smc", + "cmip7_compound_name": "atmos.smc.tavg-alh-hxy-u.mon.GLB", + "uid": "bab7bdf2-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.snmsl.tavg-u-hxy-lnd.day.GLB": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "liquid_water_mass_flux_into_soil_due_to_surface_snow_melt", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Water Flowing out of Snowpack", + "comment": "surface_snow_melt_flux_into_soil_layer", + "dimensions": "longitude latitude time", + "out_name": "snmsl", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Eday", + "physical_parameter_name": "snmsl", + "variableRootDD": "snmsl", + "branding_label": "tavg-u-hxy-lnd", + "branded_variable_name": "snmsl_tavg-u-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "Eday.snmsl", + "cmip7_compound_name": "atmos.snmsl.tavg-u-hxy-lnd.day.GLB", + "uid": "d2285222-4a9f-11e6-b84e-ac72891c3257" + }, + "atmos.snrefr.tavg-u-hxy-lnd.day.GLB": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "surface_snow_and_ice_refreezing_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Refreezing of Water in the Snow", + "comment": "surface_snow_and_ice_refreezing_flux", + "dimensions": "longitude latitude time", + "out_name": "snrefr", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Eday", + "physical_parameter_name": "snrefr", + "variableRootDD": "snrefr", + "branding_label": "tavg-u-hxy-lnd", + "branded_variable_name": "snrefr_tavg-u-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "Eday.snrefr", + "cmip7_compound_name": "atmos.snrefr.tavg-u-hxy-lnd.day.GLB", + "uid": "d2284d90-4a9f-11e6-b84e-ac72891c3257" + }, + "atmos.snwc.tavg-u-hxy-lnd.day.GLB": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "canopy_snow_amount", + "units": "kg m-2", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Snow Water Equivalent Intercepted by the Vegetation", + "comment": "canopy_snow_amount", + "dimensions": "longitude latitude time", + "out_name": "snwc", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Eday", + "physical_parameter_name": "snwc", + "variableRootDD": "snwc", + "branding_label": "tavg-u-hxy-lnd", + "branded_variable_name": "snwc_tavg-u-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "Eday.snwc", + "cmip7_compound_name": "atmos.snwc.tavg-u-hxy-lnd.day.GLB", + "uid": "d2288e36-4a9f-11e6-b84e-ac72891c3257" + }, + "atmos.ta.tavg-700hPa-hxy-air.day.GLB": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "air_temperature", + "units": "K", + "cell_methods": "area: time: mean where air", + "cell_measures": "area: areacella", + "long_name": "Air Temperature", + "comment": "Air temperature at 700hPa", + "dimensions": "longitude latitude time p700", + "out_name": "ta700", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "CFday", + "physical_parameter_name": "ta700", + "variableRootDD": "ta", + "branding_label": "tavg-700hPa-hxy-air", + "branded_variable_name": "ta_tavg-700hPa-hxy-air", + "region": "GLB", + "cmip6_compound_name": "CFday.ta700", + "cmip7_compound_name": "atmos.ta.tavg-700hPa-hxy-air.day.GLB", + "uid": "bab8e876-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.ta.tavg-850hPa-hxy-air.day.GLB": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "air_temperature", + "units": "K", + "cell_methods": "area: time: mean where air", + "cell_measures": "area: areacella", + "long_name": "Air Temperature", + "comment": "Air temperature at 850hPa", + "dimensions": "longitude latitude time p850", + "out_name": "ta850", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Eday", + "physical_parameter_name": "ta850", + "variableRootDD": "ta", + "branding_label": "tavg-850hPa-hxy-air", + "branded_variable_name": "ta_tavg-850hPa-hxy-air", + "region": "GLB", + "cmip6_compound_name": "Eday.ta850", + "cmip7_compound_name": "atmos.ta.tavg-850hPa-hxy-air.day.GLB", + "uid": "8b91f2e4-4a5b-11e6-9cd2-ac72891c3257" + }, + "atmos.ta.tavg-al-hxy-u.day.GLB": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "air_temperature", + "units": "K", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Air Temperature", + "comment": "Air Temperature", + "dimensions": "longitude latitude alevel time", + "out_name": "ta", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-intv", + "cmip6_table": "CFday", + "physical_parameter_name": "ta", + "variableRootDD": "ta", + "branding_label": "tavg-al-hxy-u", + "branded_variable_name": "ta_tavg-al-hxy-u", + "region": "GLB", + "cmip6_compound_name": "CFday.ta", + "cmip7_compound_name": "atmos.ta.tavg-al-hxy-u.day.GLB", + "uid": "bab8fd84-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.ta.tavg-al-hxy-u.mon.30S-90S": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "air_temperature", + "units": "K", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Air Temperature", + "comment": "Air Temperature", + "dimensions": "longitude latitude alevel time", + "out_name": "ta", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-intv", + "cmip6_table": "CFmon", + "physical_parameter_name": "ta", + "variableRootDD": "ta", + "branding_label": "tavg-al-hxy-u", + "branded_variable_name": "ta_tavg-al-hxy-u", + "region": "30S-90S", + "cmip6_compound_name": "CFmon.taSouth30", + "cmip7_compound_name": "atmos.ta.tavg-al-hxy-u.mon.30S-90S", + "uid": "80ac31de-a698-11ef-914a-613c0433d878" + }, + "atmos.ta.tavg-al-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "air_temperature", + "units": "K", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Air Temperature", + "comment": "Air Temperature", + "dimensions": "longitude latitude alevel time", + "out_name": "ta", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-intv", + "cmip6_table": "CFmon", + "physical_parameter_name": "ta", + "variableRootDD": "ta", + "branding_label": "tavg-al-hxy-u", + "branded_variable_name": "ta_tavg-al-hxy-u", + "region": "GLB", + "cmip6_compound_name": "CFmon.ta", + "cmip7_compound_name": "atmos.ta.tavg-al-hxy-u.mon.GLB", + "uid": "bab8ff64-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.ta.tavg-p19-hxy-air.day.GLB": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "air_temperature", + "units": "K", + "cell_methods": "area: time: mean where air", + "cell_measures": "area: areacella", + "long_name": "Air Temperature", + "comment": "Air Temperature", + "dimensions": "longitude latitude plev19 time", + "out_name": "ta", + "type": "real", + "positive": "", + "spatial_shape": "XY-P19", + "temporal_shape": "time-intv", + "cmip6_table": "day", + "physical_parameter_name": "ta", + "variableRootDD": "ta", + "branding_label": "tavg-p19-hxy-air", + "branded_variable_name": "ta_tavg-p19-hxy-air", + "region": "GLB", + "cmip6_compound_name": "day.ta", + "cmip7_compound_name": "atmos.ta.tavg-p19-hxy-air.day.GLB", + "uid": "bab902e8-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.ta.tavg-p19-hxy-air.mon.30S-90S": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "air_temperature", + "units": "K", + "cell_methods": "area: time: mean where air", + "cell_measures": "area: areacella", + "long_name": "Air Temperature", + "comment": "Air Temperature", + "dimensions": "longitude latitude plev19 time", + "out_name": "ta", + "type": "real", + "positive": "", + "spatial_shape": "XY-P19", + "temporal_shape": "time-intv", + "cmip6_table": "Amon", + "physical_parameter_name": "ta", + "variableRootDD": "ta", + "branding_label": "tavg-p19-hxy-air", + "branded_variable_name": "ta_tavg-p19-hxy-air", + "region": "30S-90S", + "cmip6_compound_name": "Amon.taSouth30", + "cmip7_compound_name": "atmos.ta.tavg-p19-hxy-air.mon.30S-90S", + "uid": "80ac31dd-a698-11ef-914a-613c0433d878" + }, + "atmos.ta.tavg-p19-hxy-air.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "air_temperature", + "units": "K", + "cell_methods": "area: time: mean where air", + "cell_measures": "area: areacella", + "long_name": "Air Temperature", + "comment": "Air Temperature", + "dimensions": "longitude latitude plev19 time", + "out_name": "ta", + "type": "real", + "positive": "", + "spatial_shape": "XY-P19", + "temporal_shape": "time-intv", + "cmip6_table": "Amon", + "physical_parameter_name": "ta", + "variableRootDD": "ta", + "branding_label": "tavg-p19-hxy-air", + "branded_variable_name": "ta_tavg-p19-hxy-air", + "region": "GLB", + "cmip6_compound_name": "Amon.ta", + "cmip7_compound_name": "atmos.ta.tavg-p19-hxy-air.mon.GLB", + "uid": "bab8fa0a-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.ta.tavg-p39-hy-air.day.GLB": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "air_temperature", + "units": "K", + "cell_methods": "longitude: time: mean where air", + "cell_measures": "", + "long_name": "Zonal mean air temperature", + "comment": "Zonal mean temperature of air with the extended number of vertical levels.", + "dimensions": "latitude plev39 time", + "out_name": "ta", + "type": "real", + "positive": "", + "spatial_shape": "Y-P39", + "temporal_shape": "time-intv", + "cmip6_table": "EdayZ", + "physical_parameter_name": "ta", + "variableRootDD": "ta", + "branding_label": "tavg-p39-hy-air", + "branded_variable_name": "ta_tavg-p39-hy-air", + "region": "GLB", + "cmip6_compound_name": "EdayZ.ta", + "cmip7_compound_name": "atmos.ta.tavg-p39-hy-air.day.GLB", + "uid": "8b8fa6e2-4a5b-11e6-9cd2-ac72891c3257" + }, + "atmos.ta.tavg-p39-hy-air.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "air_temperature", + "units": "K", + "cell_methods": "longitude: time: mean where air", + "cell_measures": "", + "long_name": "Air Temperature", + "comment": "Air Temperature", + "dimensions": "latitude plev39 time", + "out_name": "ta", + "type": "real", + "positive": "", + "spatial_shape": "Y-P39", + "temporal_shape": "time-intv", + "cmip6_table": "AERmonZ", + "physical_parameter_name": "ta", + "variableRootDD": "ta", + "branding_label": "tavg-p39-hy-air", + "branded_variable_name": "ta_tavg-p39-hy-air", + "region": "GLB", + "cmip6_compound_name": "AERmonZ.ta", + "cmip7_compound_name": "atmos.ta.tavg-p39-hy-air.mon.GLB", + "uid": "fda700b2-96ec-11e6-b81e-c9e268aff03a" + }, + "atmos.ta.tpt-al-hs-u.subhr.GLB": { + "frequency": "subhr", + "modeling_realm": "atmos", + "standard_name": "air_temperature", + "units": "K", + "cell_methods": "area: point time: point", + "cell_measures": "", + "long_name": "Air Temperature", + "comment": "Air Temperature", + "dimensions": "alevel site time1", + "out_name": "ta", + "type": "real", + "positive": "", + "spatial_shape": "S-A", + "temporal_shape": "time-point", + "cmip6_table": "CFsubhr", + "physical_parameter_name": "ta", + "variableRootDD": "ta", + "branding_label": "tpt-al-hs-u", + "branded_variable_name": "ta_tpt-al-hs-u", + "region": "GLB", + "cmip6_compound_name": "CFsubhr.ta", + "cmip7_compound_name": "atmos.ta.tpt-al-hs-u.subhr.GLB", + "uid": "a9549aae-817c-11e6-a4e2-5404a60d96b5" + }, + "atmos.ta.tpt-al-hxy-u.3hr.GLB": { + "frequency": "3hr", + "modeling_realm": "atmos", + "standard_name": "air_temperature", + "units": "K", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Air Temperature", + "comment": "Air Temperature", + "dimensions": "longitude latitude alevel time1", + "out_name": "ta", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-point", + "cmip6_table": "CF3hr", + "physical_parameter_name": "ta", + "variableRootDD": "ta", + "branding_label": "tpt-al-hxy-u", + "branded_variable_name": "ta_tpt-al-hxy-u", + "region": "GLB", + "cmip6_compound_name": "CF3hr.ta", + "cmip7_compound_name": "atmos.ta.tpt-al-hxy-u.3hr.GLB", + "uid": "bab8fbc2-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.ta.tpt-al-hxy-u.6hr.GLB": { + "frequency": "6hr", + "modeling_realm": "atmos", + "standard_name": "air_temperature", + "units": "K", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Air Temperature", + "comment": "Air Temperature", + "dimensions": "longitude latitude alevel time1", + "out_name": "ta", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-point", + "cmip6_table": "6hrLev", + "physical_parameter_name": "ta", + "variableRootDD": "ta", + "branding_label": "tpt-al-hxy-u", + "branded_variable_name": "ta_tpt-al-hxy-u", + "region": "GLB", + "cmip6_compound_name": "6hrLev.ta", + "cmip7_compound_name": "atmos.ta.tpt-al-hxy-u.6hr.GLB", + "uid": "bab8f686-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.ta.tpt-p3-hxy-air.6hr.GLB": { + "frequency": "6hr", + "modeling_realm": "atmos", + "standard_name": "air_temperature", + "units": "K", + "cell_methods": "area: mean where air time: point", + "cell_measures": "area: areacella", + "long_name": "Air Temperature", + "comment": "Air Temperature", + "dimensions": "longitude latitude plev3 time1", + "out_name": "ta", + "type": "real", + "positive": "", + "spatial_shape": "XY-P3", + "temporal_shape": "time-point", + "cmip6_table": "6hrPlevPt", + "physical_parameter_name": "ta", + "variableRootDD": "ta", + "branding_label": "tpt-p3-hxy-air", + "branded_variable_name": "ta_tpt-p3-hxy-air", + "region": "GLB", + "cmip6_compound_name": "6hrPlevPt.ta", + "cmip7_compound_name": "atmos.ta.tpt-p3-hxy-air.6hr.GLB", + "uid": "6a35d178-aa6a-11e6-9736-5404a60d96b5" + }, + "atmos.ta.tpt-p5u-hxy-u.6hr.GLB": { + "frequency": "6hr", + "modeling_realm": "atmos", + "standard_name": "air_temperature", + "units": "K", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "6 hourly instantaneous temperature in the UTLS region", + "comment": "6 hourly instantaneous temperature at 5 pressure levels in the UTLS region (150, 175, 200, 225, and 250 hPa)", + "dimensions": "longitude latitude plev5u time1", + "out_name": "taUTLS", + "type": "real", + "positive": "", + "spatial_shape": "XY-P5u", + "temporal_shape": "time-point", + "cmip6_table": "6hrPlevPt", + "physical_parameter_name": "taUTLS", + "variableRootDD": "ta", + "branding_label": "tpt-p5u-hxy-u", + "branded_variable_name": "ta_tpt-p5u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "6hrPlevPt.taUTLS", + "cmip7_compound_name": "atmos.ta.tpt-p5u-hxy-u.6hr.GLB", + "uid": "83bbfc4d-7f07-11ef-9308-b1dd71e64bec" + }, + "atmos.ta.tpt-p6-hxy-air.3hr.GLB": { + "frequency": "3hr", + "modeling_realm": "atmos", + "standard_name": "air_temperature", + "units": "K", + "cell_methods": "area: mean where air time: point", + "cell_measures": "area: areacella", + "long_name": "Air temperature", + "comment": "Air temperature on 6 pressure levels in the lower troposphere", + "dimensions": "longitude latitude plev6 time1", + "out_name": "ta6", + "type": "real", + "positive": "", + "spatial_shape": "XY-P6", + "temporal_shape": "time-point", + "cmip6_table": "E3hrPt", + "physical_parameter_name": "ta6", + "variableRootDD": "ta", + "branding_label": "tpt-p6-hxy-air", + "branded_variable_name": "ta_tpt-p6-hxy-air", + "region": "GLB", + "cmip6_compound_name": "E3hrPt.ta6", + "cmip7_compound_name": "atmos.ta.tpt-p6-hxy-air.3hr.GLB", + "uid": "80ab7434-a698-11ef-914a-613c0433d878" + }, + "atmos.ta.tpt-p7h-hxy-air.6hr.GLB": { + "frequency": "6hr", + "modeling_realm": "atmos", + "standard_name": "air_temperature", + "units": "K", + "cell_methods": "area: mean where air time: point", + "cell_measures": "area: areacella", + "long_name": "Air Temperature", + "comment": "Extra levels - 925, 700, 600, 300, 50", + "dimensions": "longitude latitude plev7h time1", + "out_name": "ta", + "type": "real", + "positive": "", + "spatial_shape": "XY-P7T", + "temporal_shape": "time-point", + "cmip6_table": "6hrPlevPt", + "physical_parameter_name": "ta", + "variableRootDD": "ta", + "branding_label": "tpt-p7h-hxy-air", + "branded_variable_name": "ta_tpt-p7h-hxy-air", + "region": "GLB", + "cmip6_compound_name": "6hrPlevPt.ta7h", + "cmip7_compound_name": "atmos.ta.tpt-p7h-hxy-air.6hr.GLB", + "uid": "713943fa-faa7-11e6-bfb7-ac72891c3257" + }, + "atmos.tas.tavg-h2m-hm-is.mon.ATA": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "air_temperature", + "units": "K", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "", + "long_name": "Near-Surface Air Temperature", + "comment": "quantity averaged over ice sheet (grounded ice sheet and floating ice shelf) only. Needed to analyse the impact of downscaling methods", + "dimensions": "time height2m", + "out_name": "tas", + "type": "real", + "positive": "", + "spatial_shape": "na-na", + "temporal_shape": "time-intv", + "cmip6_table": "ImonAnt", + "physical_parameter_name": "tas", + "variableRootDD": "tas", + "branding_label": "tavg-h2m-hm-is", + "branded_variable_name": "tas_tavg-h2m-hm-is", + "region": "ATA", + "cmip6_compound_name": "ImonAnt.tas", + "cmip7_compound_name": "atmos.tas.tavg-h2m-hm-is.mon.ATA", + "uid": "d5b2f3f0-c78d-11e6-9b25-5404a60d96b5" + }, + "atmos.tas.tavg-h2m-hm-is.mon.GRL": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "air_temperature", + "units": "K", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "", + "long_name": "Near-Surface Air Temperature", + "comment": "quantity averaged over ice sheet (grounded ice sheet and floating ice shelf) only. Needed to analyse the impact of downscaling methods", + "dimensions": "time height2m", + "out_name": "tas", + "type": "real", + "positive": "", + "spatial_shape": "na-na", + "temporal_shape": "time-intv", + "cmip6_table": "ImonGre", + "physical_parameter_name": "tas", + "variableRootDD": "tas", + "branding_label": "tavg-h2m-hm-is", + "branded_variable_name": "tas_tavg-h2m-hm-is", + "region": "GRL", + "cmip6_compound_name": "ImonGre.tas", + "cmip7_compound_name": "atmos.tas.tavg-h2m-hm-is.mon.GRL", + "uid": "d5b27c7c-c78d-11e6-9b25-5404a60d96b5" + }, + "atmos.tas.tavg-h2m-hxy-u.1hr.GLB": { + "frequency": "1hr", + "modeling_realm": "atmos", + "standard_name": "air_temperature", + "units": "K", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Near-Surface Air Temperature", + "comment": "Temperature at surface", + "dimensions": "longitude latitude time height2m", + "out_name": "tas", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "AERhr", + "physical_parameter_name": "tas", + "variableRootDD": "tas", + "branding_label": "tavg-h2m-hxy-u", + "branded_variable_name": "tas_tavg-h2m-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERhr.tas", + "cmip7_compound_name": "atmos.tas.tavg-h2m-hxy-u.1hr.GLB", + "uid": "01d5550a-c792-11e6-aa58-5404a60d96b5" + }, + "atmos.tas.tavg-h2m-hxy-u.6hr.GLB": { + "frequency": "6hr", + "modeling_realm": "atmos", + "standard_name": "air_temperature", + "units": "K", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Near-Surface Air Temperature", + "comment": "near-surface (usually, 2 meter) air temperature", + "dimensions": "longitude latitude time height2m", + "out_name": "tas", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "6hrPlev", + "physical_parameter_name": "tas", + "variableRootDD": "tas", + "branding_label": "tavg-h2m-hxy-u", + "branded_variable_name": "tas_tavg-h2m-hxy-u", + "region": "GLB", + "cmip6_compound_name": "6hrPlev.tas", + "cmip7_compound_name": "atmos.tas.tavg-h2m-hxy-u.6hr.GLB", + "uid": "91043914-267c-11e7-8933-ac72891c3257" + }, + "atmos.tas.tavg-h2m-hxy-u.day.GLB": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "air_temperature", + "units": "K", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Near-Surface Air Temperature", + "comment": "near-surface (usually, 2 meter) air temperature", + "dimensions": "longitude latitude time height2m", + "out_name": "tas", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "day", + "physical_parameter_name": "tas", + "variableRootDD": "tas", + "branding_label": "tavg-h2m-hxy-u", + "branded_variable_name": "tas_tavg-h2m-hxy-u", + "region": "GLB", + "cmip6_compound_name": "day.tas", + "cmip7_compound_name": "atmos.tas.tavg-h2m-hxy-u.day.GLB", + "uid": "bab928ae-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.tas.tavg-h2m-hxy-u.mon.30S-90S": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "air_temperature", + "units": "K", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Near-Surface Air Temperature", + "comment": "near-surface (usually, 2 meter) air temperature", + "dimensions": "longitude latitude time height2m", + "out_name": "tas", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Amon", + "physical_parameter_name": "tas", + "variableRootDD": "tas", + "branding_label": "tavg-h2m-hxy-u", + "branded_variable_name": "tas_tavg-h2m-hxy-u", + "region": "30S-90S", + "cmip6_compound_name": "Amon.tasSouth30", + "cmip7_compound_name": "atmos.tas.tavg-h2m-hxy-u.mon.30S-90S", + "uid": "80ac31df-a698-11ef-914a-613c0433d878" + }, + "atmos.tas.tavg-h2m-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "air_temperature", + "units": "K", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Near-Surface Air Temperature", + "comment": "near-surface (usually, 2 meter) air temperature", + "dimensions": "longitude latitude time height2m", + "out_name": "tas", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Amon", + "physical_parameter_name": "tas", + "variableRootDD": "tas", + "branding_label": "tavg-h2m-hxy-u", + "branded_variable_name": "tas_tavg-h2m-hxy-u", + "region": "GLB", + "cmip6_compound_name": "Amon.tas", + "cmip7_compound_name": "atmos.tas.tavg-h2m-hxy-u.mon.GLB", + "uid": "bab9237c-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.tas.tmax-h2m-hxy-crp.day.GLB": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "air_temperature", + "units": "K", + "cell_methods": "area: mean where crops time: maximum", + "cell_measures": "area: areacella", + "long_name": "Daily Maximum Near-Surface Air Temperature over Crop Tile", + "comment": "maximum near-surface (usually, 2 meter) air temperature (add cell_method attribute \"time: max\")", + "dimensions": "longitude latitude time height2m", + "out_name": "tasmaxCrop", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Eday", + "physical_parameter_name": "tasmaxCrop", + "variableRootDD": "tas", + "branding_label": "tmax-h2m-hxy-crp", + "branded_variable_name": "tas_tmax-h2m-hxy-crp", + "region": "GLB", + "cmip6_compound_name": "Eday.tasmaxCrop", + "cmip7_compound_name": "atmos.tas.tmax-h2m-hxy-crp.day.GLB", + "uid": "2eb1ab6e-b64e-11e6-b9ee-ac72891c3257" + }, + "atmos.tas.tmax-h2m-hxy-u.day.GLB": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "air_temperature", + "units": "K", + "cell_methods": "area: mean time: maximum", + "cell_measures": "area: areacella", + "long_name": "Daily Maximum Near-Surface Air Temperature", + "comment": "maximum near-surface (usually, 2 meter) air temperature (add cell_method attribute \"time: max\")", + "dimensions": "longitude latitude time height2m", + "out_name": "tasmax", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "day", + "physical_parameter_name": "tasmax", + "variableRootDD": "tas", + "branding_label": "tmax-h2m-hxy-u", + "branded_variable_name": "tas_tmax-h2m-hxy-u", + "region": "GLB", + "cmip6_compound_name": "day.tasmax", + "cmip7_compound_name": "atmos.tas.tmax-h2m-hxy-u.day.GLB", + "uid": "bab94a50-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.tas.tmaxavg-h2m-hxy-u.mon.30S-90S": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "air_temperature", + "units": "K", + "cell_methods": "area: mean time: maximum within days time: mean over days", + "cell_measures": "area: areacella", + "long_name": "Daily Maximum Near-Surface Air Temperature", + "comment": "monthly mean of the daily-maximum near-surface air temperature.", + "dimensions": "longitude latitude time4 height2m", + "out_name": "tasmax", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "monthly-mean-daily-stat", + "cmip6_table": "Amon", + "physical_parameter_name": "tasmax", + "variableRootDD": "tas", + "branding_label": "tmaxavg-h2m-hxy-u", + "branded_variable_name": "tas_tmaxavg-h2m-hxy-u", + "region": "30S-90S", + "cmip6_compound_name": "Amon.tasmaxSouth30", + "cmip7_compound_name": "atmos.tas.tmaxavg-h2m-hxy-u.mon.30S-90S", + "uid": "80ac31e1-a698-11ef-914a-613c0433d878" + }, + "atmos.tas.tmaxavg-h2m-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "air_temperature", + "units": "K", + "cell_methods": "area: mean time: maximum within days time: mean over days", + "cell_measures": "area: areacella", + "long_name": "Daily Maximum Near-Surface Air Temperature", + "comment": "monthly mean of the daily-maximum near-surface air temperature.", + "dimensions": "longitude latitude time4 height2m", + "out_name": "tasmax", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "monthly-mean-daily-stat", + "cmip6_table": "Amon", + "physical_parameter_name": "tasmax", + "variableRootDD": "tas", + "branding_label": "tmaxavg-h2m-hxy-u", + "branded_variable_name": "tas_tmaxavg-h2m-hxy-u", + "region": "GLB", + "cmip6_compound_name": "Amon.tasmax", + "cmip7_compound_name": "atmos.tas.tmaxavg-h2m-hxy-u.mon.GLB", + "uid": "bab942a8-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.tas.tmin-h2m-hxy-crp.day.GLB": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "air_temperature", + "units": "K", + "cell_methods": "area: mean where crops time: minimum", + "cell_measures": "area: areacella", + "long_name": "Daily Minimum Near-Surface Air Temperature over Crop Tile", + "comment": "minimum near-surface (usually, 2 meter) air temperature (add cell_method attribute \"time: min\")", + "dimensions": "longitude latitude time height2m", + "out_name": "tasminCrop", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Eday", + "physical_parameter_name": "tasminCrop", + "variableRootDD": "tas", + "branding_label": "tmin-h2m-hxy-crp", + "branded_variable_name": "tas_tmin-h2m-hxy-crp", + "region": "GLB", + "cmip6_compound_name": "Eday.tasminCrop", + "cmip7_compound_name": "atmos.tas.tmin-h2m-hxy-crp.day.GLB", + "uid": "2eb1b0aa-b64e-11e6-b9ee-ac72891c3257" + }, + "atmos.tas.tmin-h2m-hxy-u.day.GLB": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "air_temperature", + "units": "K", + "cell_methods": "area: mean time: minimum", + "cell_measures": "area: areacella", + "long_name": "Daily Minimum Near-Surface Air Temperature", + "comment": "minimum near-surface (usually, 2 meter) air temperature (add cell_method attribute \"time: min\")", + "dimensions": "longitude latitude time height2m", + "out_name": "tasmin", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "day", + "physical_parameter_name": "tasmin", + "variableRootDD": "tas", + "branding_label": "tmin-h2m-hxy-u", + "branded_variable_name": "tas_tmin-h2m-hxy-u", + "region": "GLB", + "cmip6_compound_name": "day.tasmin", + "cmip7_compound_name": "atmos.tas.tmin-h2m-hxy-u.day.GLB", + "uid": "bab95fae-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.tas.tminavg-h2m-hxy-u.mon.30S-90S": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "air_temperature", + "units": "K", + "cell_methods": "area: mean time: minimum within days time: mean over days", + "cell_measures": "area: areacella", + "long_name": "Daily Minimum Near-Surface Air Temperature", + "comment": "monthly mean of the daily-minimum near-surface air temperature.", + "dimensions": "longitude latitude time4 height2m", + "out_name": "tasmin", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "monthly-mean-daily-stat", + "cmip6_table": "Amon", + "physical_parameter_name": "tasmin", + "variableRootDD": "tas", + "branding_label": "tminavg-h2m-hxy-u", + "branded_variable_name": "tas_tminavg-h2m-hxy-u", + "region": "30S-90S", + "cmip6_compound_name": "Amon.tasminSouth30", + "cmip7_compound_name": "atmos.tas.tminavg-h2m-hxy-u.mon.30S-90S", + "uid": "80ac31e2-a698-11ef-914a-613c0433d878" + }, + "atmos.tas.tminavg-h2m-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "air_temperature", + "units": "K", + "cell_methods": "area: mean time: minimum within days time: mean over days", + "cell_measures": "area: areacella", + "long_name": "Daily Minimum Near-Surface Air Temperature", + "comment": "monthly mean of the daily-minimum near-surface air temperature.", + "dimensions": "longitude latitude time4 height2m", + "out_name": "tasmin", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "monthly-mean-daily-stat", + "cmip6_table": "Amon", + "physical_parameter_name": "tasmin", + "variableRootDD": "tas", + "branding_label": "tminavg-h2m-hxy-u", + "branded_variable_name": "tas_tminavg-h2m-hxy-u", + "region": "GLB", + "cmip6_compound_name": "Amon.tasmin", + "cmip7_compound_name": "atmos.tas.tminavg-h2m-hxy-u.mon.GLB", + "uid": "bab955ea-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.tas.tpt-h2m-hs-u.subhr.GLB": { + "frequency": "subhr", + "modeling_realm": "atmos", + "standard_name": "air_temperature", + "units": "K", + "cell_methods": "area: point time: point", + "cell_measures": "", + "long_name": "Near-Surface Air Temperature", + "comment": "near-surface (usually, 2 meter) air temperature", + "dimensions": "site time1 height2m", + "out_name": "tas", + "type": "real", + "positive": "", + "spatial_shape": "S-na", + "temporal_shape": "time-point", + "cmip6_table": "CFsubhr", + "physical_parameter_name": "tas", + "variableRootDD": "tas", + "branding_label": "tpt-h2m-hs-u", + "branded_variable_name": "tas_tpt-h2m-hs-u", + "region": "GLB", + "cmip6_compound_name": "CFsubhr.tas", + "cmip7_compound_name": "atmos.tas.tpt-h2m-hs-u.subhr.GLB", + "uid": "8007104e-f906-11e6-a176-5404a60d96b5" + }, + "atmos.tas.tpt-h2m-hxy-u.3hr.GLB": { + "frequency": "3hr", + "modeling_realm": "atmos", + "standard_name": "air_temperature", + "units": "K", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Near-Surface Air Temperature", + "comment": "This is sampled synoptically.", + "dimensions": "longitude latitude time1 height2m", + "out_name": "tas", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-point", + "cmip6_table": "3hr", + "physical_parameter_name": "tas", + "variableRootDD": "tas", + "branding_label": "tpt-h2m-hxy-u", + "branded_variable_name": "tas_tpt-h2m-hxy-u", + "region": "GLB", + "cmip6_compound_name": "3hr.tas", + "cmip7_compound_name": "atmos.tas.tpt-h2m-hxy-u.3hr.GLB", + "uid": "bab91b20-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.tauu.tavg-u-hxy-u.day.GLB": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "surface_downward_eastward_stress", + "units": "Pa", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Surface Downward Eastward Wind Stress", + "comment": "Downward eastward wind stress at the surface", + "dimensions": "longitude latitude time", + "out_name": "tauu", + "type": "real", + "positive": "down", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Eday", + "physical_parameter_name": "tauu", + "variableRootDD": "tauu", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "tauu_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "Eday.tauu", + "cmip7_compound_name": "atmos.tauu.tavg-u-hxy-u.day.GLB", + "uid": "8b980e9a-4a5b-11e6-9cd2-ac72891c3257" + }, + "atmos.tauu.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "surface_downward_eastward_stress", + "units": "Pa", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Surface Downward Eastward Wind Stress", + "comment": "Downward eastward wind stress at the surface", + "dimensions": "longitude latitude time", + "out_name": "tauu", + "type": "real", + "positive": "down", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Amon", + "physical_parameter_name": "tauu", + "variableRootDD": "tauu", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "tauu_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "Amon.tauu", + "cmip7_compound_name": "atmos.tauu.tavg-u-hxy-u.mon.GLB", + "uid": "bab96cc4-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.tauu.tpt-u-hs-u.subhr.GLB": { + "frequency": "subhr", + "modeling_realm": "atmos", + "standard_name": "surface_downward_eastward_stress", + "units": "Pa", + "cell_methods": "area: point time: point", + "cell_measures": "", + "long_name": "Surface Downward Eastward Wind Stress", + "comment": "Downward eastward wind stress at the surface", + "dimensions": "site time1", + "out_name": "tauu", + "type": "real", + "positive": "down", + "spatial_shape": "S-na", + "temporal_shape": "time-point", + "cmip6_table": "CFsubhr", + "physical_parameter_name": "tauu", + "variableRootDD": "tauu", + "branding_label": "tpt-u-hs-u", + "branded_variable_name": "tauu_tpt-u-hs-u", + "region": "GLB", + "cmip6_compound_name": "CFsubhr.tauu", + "cmip7_compound_name": "atmos.tauu.tpt-u-hs-u.subhr.GLB", + "uid": "80083e4c-f906-11e6-a176-5404a60d96b5" + }, + "atmos.tauunoegw.tavg-p19-hxy-air.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "upward_eastward_momentum_flux_in_air_due_to_nonorographic_eastward_gravity_waves", + "units": "Pa", + "cell_methods": "area: time: mean where air", + "cell_measures": "area: areacella", + "long_name": "Eastward Reynolds stress from non-orographic eastward gravity wave parameterization", + "comment": "Vertical flux of zonal momentum within the non-orographic gravity wave parameterization associated with the eastward propagating modes.", + "dimensions": "longitude latitude plev19 time", + "out_name": "tauunoegw", + "type": "real", + "positive": "", + "spatial_shape": "XY-P19", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "tauunoegw", + "variableRootDD": "tauunoegw", + "branding_label": "tavg-p19-hxy-air", + "branded_variable_name": "tauunoegw_tavg-p19-hxy-air", + "region": "GLB", + "cmip6_compound_name": "Emon.tauunoegw", + "cmip7_compound_name": "atmos.tauunoegw.tavg-p19-hxy-air.mon.GLB", + "uid": "83bbfc86-7f07-11ef-9308-b1dd71e64bec" + }, + "atmos.tauunoegw.tavg-p39-hy-air.day.GLB": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "upward_eastward_momentum_flux_in_air_due_to_nonorographic_eastward_gravity_waves", + "units": "Pa", + "cell_methods": "longitude: time: mean where air", + "cell_measures": "", + "long_name": "Zonal mean eastward Reynolds stress from non-orographic eastward gravity wave parameterization", + "comment": "Zonal mean vertical wave flux of zonal momentum within the non-orographic gravity wave parameterization associated with the eastward propagating modes.", + "dimensions": "latitude plev39 time", + "out_name": "tauunoegw", + "type": "real", + "positive": "", + "spatial_shape": "Y-P39", + "temporal_shape": "time-intv", + "cmip6_table": "EdayZ", + "physical_parameter_name": "tauunoegw", + "variableRootDD": "tauunoegw", + "branding_label": "tavg-p39-hy-air", + "branded_variable_name": "tauunoegw_tavg-p39-hy-air", + "region": "GLB", + "cmip6_compound_name": "EdayZ.tauunoegw", + "cmip7_compound_name": "atmos.tauunoegw.tavg-p39-hy-air.day.GLB", + "uid": "83bbfc8d-7f07-11ef-9308-b1dd71e64bec" + }, + "atmos.tauunowgw.tavg-p19-hxy-air.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "upward_eastward_momentum_flux_in_air_due_to_nonorographic_westward_gravity_waves", + "units": "Pa", + "cell_methods": "area: time: mean where air", + "cell_measures": "area: areacella", + "long_name": "Eastward Reynolds stress from non-orographic westward gravity wave parameterization", + "comment": "Vertical flux of zonal momentum within the non-orographic gravity wave parameterization associated with the westward propagating modes.", + "dimensions": "longitude latitude plev19 time", + "out_name": "tauunowgw", + "type": "real", + "positive": "", + "spatial_shape": "XY-P19", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "tauunowgw", + "variableRootDD": "tauunowgw", + "branding_label": "tavg-p19-hxy-air", + "branded_variable_name": "tauunowgw_tavg-p19-hxy-air", + "region": "GLB", + "cmip6_compound_name": "Emon.tauunowgw", + "cmip7_compound_name": "atmos.tauunowgw.tavg-p19-hxy-air.mon.GLB", + "uid": "80ab71f5-a698-11ef-914a-613c0433d878" + }, + "atmos.tauunowgw.tavg-p39-hy-air.day.GLB": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "upward_eastward_momentum_flux_in_air_due_to_nonorographic_westward_gravity_waves", + "units": "Pa", + "cell_methods": "longitude: time: mean where air", + "cell_measures": "", + "long_name": "Zonal mean eastward Reynolds stress from non-orographic westward gravity wave parameterization", + "comment": "Zonal mean vertical wave flux of zonal momentum within the non-orographic gravity wave parameterization associated with the westward propagating modes.", + "dimensions": "latitude plev39 time", + "out_name": "tauunowgw", + "type": "real", + "positive": "", + "spatial_shape": "Y-P39", + "temporal_shape": "time-intv", + "cmip6_table": "EdayZ", + "physical_parameter_name": "tauunowgw", + "variableRootDD": "tauunowgw", + "branding_label": "tavg-p39-hy-air", + "branded_variable_name": "tauunowgw_tavg-p39-hy-air", + "region": "GLB", + "cmip6_compound_name": "EdayZ.tauunowgw", + "cmip7_compound_name": "atmos.tauunowgw.tavg-p39-hy-air.day.GLB", + "uid": "80ab71f4-a698-11ef-914a-613c0433d878" + }, + "atmos.tauuogw.tavg-p19-hxy-air.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "upward_eastward_momentum_flux_in_air_due_to_orographic_gravity_waves", + "units": "Pa", + "cell_methods": "area: time: mean where air", + "cell_measures": "area: areacella", + "long_name": "Eastward Reynolds stress from orographic gravity wave parameterization", + "comment": "The vertical flux of zonal momentum within the orographic gravity wave parameterization.", + "dimensions": "longitude latitude plev19 time", + "out_name": "tauuogw", + "type": "real", + "positive": "", + "spatial_shape": "XY-P19", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "tauuogw", + "variableRootDD": "tauuogw", + "branding_label": "tavg-p19-hxy-air", + "branded_variable_name": "tauuogw_tavg-p19-hxy-air", + "region": "GLB", + "cmip6_compound_name": "Emon.tauuogw", + "cmip7_compound_name": "atmos.tauuogw.tavg-p19-hxy-air.mon.GLB", + "uid": "83bbfc85-7f07-11ef-9308-b1dd71e64bec" + }, + "atmos.tauuogw.tavg-p39-hy-air.day.GLB": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "upward_eastward_momentum_flux_in_air_due_to_orographic_gravity_waves", + "units": "Pa", + "cell_methods": "longitude: time: mean where air", + "cell_measures": "", + "long_name": "Zonal mean eastward Reynolds stress from orographic gravity wave parameterization", + "comment": "Zonal mean of the vertical flux of zonal momentum within the orographic gravity wave parameterization", + "dimensions": "latitude plev39 time", + "out_name": "tauuogw", + "type": "real", + "positive": "", + "spatial_shape": "Y-P39", + "temporal_shape": "time-intv", + "cmip6_table": "EdayZ", + "physical_parameter_name": "tauuogw", + "variableRootDD": "tauuogw", + "branding_label": "tavg-p39-hy-air", + "branded_variable_name": "tauuogw_tavg-p39-hy-air", + "region": "GLB", + "cmip6_compound_name": "EdayZ.tauuogw", + "cmip7_compound_name": "atmos.tauuogw.tavg-p39-hy-air.day.GLB", + "uid": "83bbfc8c-7f07-11ef-9308-b1dd71e64bec" + }, + "atmos.tauupbl.tavg-u-hxy-u.day.GLB": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "surface_downward_eastward_stress_due_to_boundary_layer_mixing", + "units": "Pa", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Eastward Surface Stress from Planetary Boundary Layer Scheme", + "comment": "surface", + "dimensions": "longitude latitude time", + "out_name": "tauupbl", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Eday", + "physical_parameter_name": "tauupbl", + "variableRootDD": "tauupbl", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "tauupbl_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "Eday.tauupbl", + "cmip7_compound_name": "atmos.tauupbl.tavg-u-hxy-u.day.GLB", + "uid": "8b98040e-4a5b-11e6-9cd2-ac72891c3257" + }, + "atmos.tauv.tavg-u-hxy-u.day.GLB": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "surface_downward_northward_stress", + "units": "Pa", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Surface Downward Northward Wind Stress", + "comment": "surface, now requesting daily output.", + "dimensions": "longitude latitude time", + "out_name": "tauv", + "type": "real", + "positive": "down", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Eday", + "physical_parameter_name": "tauv", + "variableRootDD": "tauv", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "tauv_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "Eday.tauv", + "cmip7_compound_name": "atmos.tauv.tavg-u-hxy-u.day.GLB", + "uid": "8b981340-4a5b-11e6-9cd2-ac72891c3257" + }, + "atmos.tauv.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "surface_downward_northward_stress", + "units": "Pa", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Surface Downward Northward Wind Stress", + "comment": "Downward northward wind stress at the surface", + "dimensions": "longitude latitude time", + "out_name": "tauv", + "type": "real", + "positive": "down", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Amon", + "physical_parameter_name": "tauv", + "variableRootDD": "tauv", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "tauv_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "Amon.tauv", + "cmip7_compound_name": "atmos.tauv.tavg-u-hxy-u.mon.GLB", + "uid": "bab9888a-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.tauv.tpt-u-hs-u.subhr.GLB": { + "frequency": "subhr", + "modeling_realm": "atmos", + "standard_name": "surface_downward_northward_stress", + "units": "Pa", + "cell_methods": "area: point time: point", + "cell_measures": "", + "long_name": "Surface Downward Northward Wind Stress", + "comment": "Downward northward wind stress at the surface", + "dimensions": "site time1", + "out_name": "tauv", + "type": "real", + "positive": "down", + "spatial_shape": "S-na", + "temporal_shape": "time-point", + "cmip6_table": "CFsubhr", + "physical_parameter_name": "tauv", + "variableRootDD": "tauv", + "branding_label": "tpt-u-hs-u", + "branded_variable_name": "tauv_tpt-u-hs-u", + "region": "GLB", + "cmip6_compound_name": "CFsubhr.tauv", + "cmip7_compound_name": "atmos.tauv.tpt-u-hs-u.subhr.GLB", + "uid": "80085120-f906-11e6-a176-5404a60d96b5" + }, + "atmos.tauvnogw.tavg-p19-hxy-air.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "upward_northward_momentum_flux_in_air_due_to_nonorographic_gravity_waves", + "units": "Pa", + "cell_methods": "area: time: mean where air", + "cell_measures": "area: areacella", + "long_name": "Northward Reynolds stress from non-orographic gravity wave parameterization", + "comment": "Vertical flux of meridional momentum within the non-orographic gravity wave parameterization.", + "dimensions": "longitude latitude plev19 time", + "out_name": "tauvnogw", + "type": "real", + "positive": "", + "spatial_shape": "XY-P19", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "tauvnogw", + "variableRootDD": "tauvnogw", + "branding_label": "tavg-p19-hxy-air", + "branded_variable_name": "tauvnogw_tavg-p19-hxy-air", + "region": "GLB", + "cmip6_compound_name": "Emon.tauvnogw", + "cmip7_compound_name": "atmos.tauvnogw.tavg-p19-hxy-air.mon.GLB", + "uid": "83bbfc84-7f07-11ef-9308-b1dd71e64bec" + }, + "atmos.tauvnogw.tavg-p39-hy-air.day.GLB": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "upward_northward_momentum_flux_in_air_due_to_nonorographic_gravity_waves", + "units": "Pa", + "cell_methods": "longitude: time: mean where air", + "cell_measures": "", + "long_name": "Zonal mean northward Reynolds stress from non-orographic gravity wave parameterization", + "comment": "Zonal mean vertical wave flux of meridional momentum within the non-orographic gravity wave parameterization", + "dimensions": "latitude plev39 time", + "out_name": "tauvnogw", + "type": "real", + "positive": "", + "spatial_shape": "Y-P39", + "temporal_shape": "time-intv", + "cmip6_table": "EdayZ", + "physical_parameter_name": "tauvnogw", + "variableRootDD": "tauvnogw", + "branding_label": "tavg-p39-hy-air", + "branded_variable_name": "tauvnogw_tavg-p39-hy-air", + "region": "GLB", + "cmip6_compound_name": "EdayZ.tauvnogw", + "cmip7_compound_name": "atmos.tauvnogw.tavg-p39-hy-air.day.GLB", + "uid": "83bbfc8b-7f07-11ef-9308-b1dd71e64bec" + }, + "atmos.tauvogw.tavg-p19-hxy-air.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "upward_northward_momentum_flux_in_air_due_to_orographic_gravity_waves", + "units": "Pa", + "cell_methods": "area: time: mean where air", + "cell_measures": "area: areacella", + "long_name": "Northward Reynolds stress from orographic gravity wave parameterization", + "comment": "Vertical flux of meridional momentum within the orographic gravity wave parameterization", + "dimensions": "longitude latitude plev19 time", + "out_name": "tauvogw", + "type": "real", + "positive": "", + "spatial_shape": "XY-P19", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "tauvogw", + "variableRootDD": "tauvogw", + "branding_label": "tavg-p19-hxy-air", + "branded_variable_name": "tauvogw_tavg-p19-hxy-air", + "region": "GLB", + "cmip6_compound_name": "Emon.tauvogw", + "cmip7_compound_name": "atmos.tauvogw.tavg-p19-hxy-air.mon.GLB", + "uid": "83bbfc83-7f07-11ef-9308-b1dd71e64bec" + }, + "atmos.tauvogw.tavg-p39-hy-air.day.GLB": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "upward_northward_momentum_flux_in_air_due_to_orographic_gravity_waves", + "units": "Pa", + "cell_methods": "longitude: time: mean where air", + "cell_measures": "", + "long_name": "Zonal mean northward Reynolds stress from orographic gravity wave parameterization", + "comment": "Zonal mean vertical flux of meridional momentum within the orographic gravity wave parameterization", + "dimensions": "latitude plev39 time", + "out_name": "tauvogw", + "type": "real", + "positive": "", + "spatial_shape": "Y-P39", + "temporal_shape": "time-intv", + "cmip6_table": "EdayZ", + "physical_parameter_name": "tauvogw", + "variableRootDD": "tauvogw", + "branding_label": "tavg-p39-hy-air", + "branded_variable_name": "tauvogw_tavg-p39-hy-air", + "region": "GLB", + "cmip6_compound_name": "EdayZ.tauvogw", + "cmip7_compound_name": "atmos.tauvogw.tavg-p39-hy-air.day.GLB", + "uid": "83bbfc8a-7f07-11ef-9308-b1dd71e64bec" + }, + "atmos.tauvpbl.tavg-u-hxy-u.day.GLB": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "surface_downward_northward_stress_due_to_boundary_layer_mixing", + "units": "Pa", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Northward Surface Stress from Planetary Boundary Layer Scheme", + "comment": "surface", + "dimensions": "longitude latitude time", + "out_name": "tauvpbl", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Eday", + "physical_parameter_name": "tauvpbl", + "variableRootDD": "tauvpbl", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "tauvpbl_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "Eday.tauvpbl", + "cmip7_compound_name": "atmos.tauvpbl.tavg-u-hxy-u.day.GLB", + "uid": "8b9809e0-4a5b-11e6-9cd2-ac72891c3257" + }, + "atmos.tdps.tavg-h2m-hxy-u.day.GLB": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "dew_point_temperature", + "units": "K", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "2m Dewpoint Temperature", + "comment": "Dew point temperature is the temperature at which a parcel of air reaches saturation upon being cooled at constant pressure and specific humidity.", + "dimensions": "longitude latitude time height2m", + "out_name": "tdps", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Eday", + "physical_parameter_name": "tdps", + "variableRootDD": "tdps", + "branding_label": "tavg-h2m-hxy-u", + "branded_variable_name": "tdps_tavg-h2m-hxy-u", + "region": "GLB", + "cmip6_compound_name": "Eday.tdps", + "cmip7_compound_name": "atmos.tdps.tavg-h2m-hxy-u.day.GLB", + "uid": "8b926364-4a5b-11e6-9cd2-ac72891c3257" + }, + "atmos.tdps.tavg-h2m-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "dew_point_temperature", + "units": "K", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "2m Dewpoint Temperature", + "comment": "Dew point temperature is the temperature at which a parcel of air reaches saturation upon being cooled at constant pressure and specific humidity.", + "dimensions": "longitude latitude time height2m", + "out_name": "tdps", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "tdps", + "variableRootDD": "tdps", + "branding_label": "tavg-h2m-hxy-u", + "branded_variable_name": "tdps_tavg-h2m-hxy-u", + "region": "GLB", + "cmip6_compound_name": "Emon.tdps", + "cmip7_compound_name": "atmos.tdps.tavg-h2m-hxy-u.mon.GLB", + "uid": "6f68feda-9acb-11e6-b7ee-ac72891c3257" + }, + "atmos.tnhus.tavg-al-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "tendency_of_specific_humidity", + "units": "s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Tendency of Specific Humidity", + "comment": "Tendency of Specific Humidity", + "dimensions": "longitude latitude alevel time", + "out_name": "tnhus", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-intv", + "cmip6_table": "CFmon", + "physical_parameter_name": "tnhus", + "variableRootDD": "tnhus", + "branding_label": "tavg-al-hxy-u", + "branded_variable_name": "tnhus_tavg-al-hxy-u", + "region": "GLB", + "cmip6_compound_name": "CFmon.tnhus", + "cmip7_compound_name": "atmos.tnhus.tavg-al-hxy-u.mon.GLB", + "uid": "bab9ca3e-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.tnhus.tpt-al-hs-u.subhr.GLB": { + "frequency": "subhr", + "modeling_realm": "atmos", + "standard_name": "tendency_of_specific_humidity", + "units": "s-1", + "cell_methods": "area: point time: point", + "cell_measures": "", + "long_name": "Tendency of Specific Humidity", + "comment": "Tendency of Specific Humidity", + "dimensions": "alevel site time1", + "out_name": "tnhus", + "type": "real", + "positive": "", + "spatial_shape": "S-A", + "temporal_shape": "time-point", + "cmip6_table": "CFsubhr", + "physical_parameter_name": "tnhus", + "variableRootDD": "tnhus", + "branding_label": "tpt-al-hs-u", + "branded_variable_name": "tnhus_tpt-al-hs-u", + "region": "GLB", + "cmip6_compound_name": "CFsubhr.tnhus", + "cmip7_compound_name": "atmos.tnhus.tpt-al-hs-u.subhr.GLB", + "uid": "a9558f0e-817c-11e6-a4e2-5404a60d96b5" + }, + "atmos.tnhusa.tavg-al-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "tendency_of_specific_humidity_due_to_advection", + "units": "s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Tendency of Specific Humidity Due to Advection", + "comment": "Tendency of Specific Humidity due to Advection", + "dimensions": "longitude latitude alevel time", + "out_name": "tnhusa", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-intv", + "cmip6_table": "CFmon", + "physical_parameter_name": "tnhusa", + "variableRootDD": "tnhusa", + "branding_label": "tavg-al-hxy-u", + "branded_variable_name": "tnhusa_tavg-al-hxy-u", + "region": "GLB", + "cmip6_compound_name": "CFmon.tnhusa", + "cmip7_compound_name": "atmos.tnhusa.tavg-al-hxy-u.mon.GLB", + "uid": "bab9ce44-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.tnhusa.tpt-al-hs-u.subhr.GLB": { + "frequency": "subhr", + "modeling_realm": "atmos", + "standard_name": "tendency_of_specific_humidity_due_to_advection", + "units": "s-1", + "cell_methods": "area: point time: point", + "cell_measures": "", + "long_name": "Tendency of Specific Humidity Due to Advection", + "comment": "Tendency of Specific Humidity due to Advection", + "dimensions": "alevel site time1", + "out_name": "tnhusa", + "type": "real", + "positive": "", + "spatial_shape": "S-A", + "temporal_shape": "time-point", + "cmip6_table": "CFsubhr", + "physical_parameter_name": "tnhusa", + "variableRootDD": "tnhusa", + "branding_label": "tpt-al-hs-u", + "branded_variable_name": "tnhusa_tpt-al-hs-u", + "region": "GLB", + "cmip6_compound_name": "CFsubhr.tnhusa", + "cmip7_compound_name": "atmos.tnhusa.tpt-al-hs-u.subhr.GLB", + "uid": "a9559a80-817c-11e6-a4e2-5404a60d96b5" + }, + "atmos.tnhusc.tavg-al-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "tendency_of_specific_humidity_due_to_convection", + "units": "s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Tendency of Specific Humidity Due to Convection", + "comment": "Tendencies from cumulus convection scheme.", + "dimensions": "longitude latitude alevel time", + "out_name": "tnhusc", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-intv", + "cmip6_table": "CFmon", + "physical_parameter_name": "tnhusc", + "variableRootDD": "tnhusc", + "branding_label": "tavg-al-hxy-u", + "branded_variable_name": "tnhusc_tavg-al-hxy-u", + "region": "GLB", + "cmip6_compound_name": "CFmon.tnhusc", + "cmip7_compound_name": "atmos.tnhusc.tavg-al-hxy-u.mon.GLB", + "uid": "bab9d236-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.tnhusc.tpt-al-hs-u.subhr.GLB": { + "frequency": "subhr", + "modeling_realm": "atmos", + "standard_name": "tendency_of_specific_humidity_due_to_convection", + "units": "s-1", + "cell_methods": "area: point time: point", + "cell_measures": "", + "long_name": "Tendency of Specific Humidity Due to Convection", + "comment": "Tendencies from cumulus convection scheme.", + "dimensions": "alevel site time1", + "out_name": "tnhusc", + "type": "real", + "positive": "", + "spatial_shape": "S-A", + "temporal_shape": "time-point", + "cmip6_table": "CFsubhr", + "physical_parameter_name": "tnhusc", + "variableRootDD": "tnhusc", + "branding_label": "tpt-al-hs-u", + "branded_variable_name": "tnhusc_tpt-al-hs-u", + "region": "GLB", + "cmip6_compound_name": "CFsubhr.tnhusc", + "cmip7_compound_name": "atmos.tnhusc.tpt-al-hs-u.subhr.GLB", + "uid": "a955a5c0-817c-11e6-a4e2-5404a60d96b5" + }, + "atmos.tnhusd.tavg-al-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "tendency_of_specific_humidity_due_to_diffusion", + "units": "s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Tendency of Specific Humidity Due to Numerical Diffusion", + "comment": "This includes any horizontal or vertical numerical moisture diffusion not associated with the parametrized moist physics or the resolved dynamics. For example, any vertical diffusion which is part of the boundary layer mixing scheme should be excluded, as should any diffusion which is included in the terms from the resolved dynamics. This term is required to check the closure of the moisture budget.", + "dimensions": "longitude latitude alevel time", + "out_name": "tnhusd", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-intv", + "cmip6_table": "CFmon", + "physical_parameter_name": "tnhusd", + "variableRootDD": "tnhusd", + "branding_label": "tavg-al-hxy-u", + "branded_variable_name": "tnhusd_tavg-al-hxy-u", + "region": "GLB", + "cmip6_compound_name": "CFmon.tnhusd", + "cmip7_compound_name": "atmos.tnhusd.tavg-al-hxy-u.mon.GLB", + "uid": "bab9d6c8-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.tnhusd.tpt-al-hs-u.subhr.GLB": { + "frequency": "subhr", + "modeling_realm": "atmos", + "standard_name": "tendency_of_specific_humidity_due_to_diffusion", + "units": "s-1", + "cell_methods": "area: point time: point", + "cell_measures": "", + "long_name": "Tendency of Specific Humidity Due to Numerical Diffusion", + "comment": "This includes any horizontal or vertical numerical moisture diffusion not associated with the parametrized moist physics or the resolved dynamics. For example, any vertical diffusion which is part of the boundary layer mixing scheme should be excluded, as should any diffusion which is included in the terms from the resolved dynamics. This term is required to check the closure of the moisture budget.", + "dimensions": "alevel site time1", + "out_name": "tnhusd", + "type": "real", + "positive": "", + "spatial_shape": "S-A", + "temporal_shape": "time-point", + "cmip6_table": "CFsubhr", + "physical_parameter_name": "tnhusd", + "variableRootDD": "tnhusd", + "branding_label": "tpt-al-hs-u", + "branded_variable_name": "tnhusd_tpt-al-hs-u", + "region": "GLB", + "cmip6_compound_name": "CFsubhr.tnhusd", + "cmip7_compound_name": "atmos.tnhusd.tpt-al-hs-u.subhr.GLB", + "uid": "a955b11e-817c-11e6-a4e2-5404a60d96b5" + }, + "atmos.tnhusmp.tavg-al-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "tendency_of_specific_humidity_due_to_model_physics", + "units": "s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Tendency of Specific Humidity Due to Model Physics", + "comment": "This includes sources and sinks from parametrized moist physics (e.g. convection, boundary layer, stratiform condensation/evaporation, etc.) and excludes sources and sinks from resolved dynamics or from horizontal or vertical numerical diffusion not associated with model physicsl. For example any diffusive mixing by the boundary layer scheme would be included.", + "dimensions": "longitude latitude alevel time", + "out_name": "tnhusmp", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-intv", + "cmip6_table": "CFmon", + "physical_parameter_name": "tnhusmp", + "variableRootDD": "tnhusmp", + "branding_label": "tavg-al-hxy-u", + "branded_variable_name": "tnhusmp_tavg-al-hxy-u", + "region": "GLB", + "cmip6_compound_name": "CFmon.tnhusmp", + "cmip7_compound_name": "atmos.tnhusmp.tavg-al-hxy-u.mon.GLB", + "uid": "bab9db28-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.tnhusmp.tpt-al-hs-u.subhr.GLB": { + "frequency": "subhr", + "modeling_realm": "atmos", + "standard_name": "tendency_of_specific_humidity_due_to_model_physics", + "units": "s-1", + "cell_methods": "area: point time: point", + "cell_measures": "", + "long_name": "Tendency of Specific Humidity Due to Model Physics", + "comment": "This includes sources and sinks from parametrized moist physics (e.g. convection, boundary layer, stratiform condensation/evaporation, etc.) and excludes sources and sinks from resolved dynamics or from horizontal or vertical numerical diffusion not associated with model physicsl. For example any diffusive mixing by the boundary layer scheme would be included.", + "dimensions": "alevel site time1", + "out_name": "tnhusmp", + "type": "real", + "positive": "", + "spatial_shape": "S-A", + "temporal_shape": "time-point", + "cmip6_table": "CFsubhr", + "physical_parameter_name": "tnhusmp", + "variableRootDD": "tnhusmp", + "branding_label": "tpt-al-hs-u", + "branded_variable_name": "tnhusmp_tpt-al-hs-u", + "region": "GLB", + "cmip6_compound_name": "CFsubhr.tnhusmp", + "cmip7_compound_name": "atmos.tnhusmp.tpt-al-hs-u.subhr.GLB", + "uid": "a955ca28-817c-11e6-a4e2-5404a60d96b5" + }, + "atmos.tnhuspbl.tavg-al-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "tendency_of_specific_humidity_due_to_boundary_layer_mixing", + "units": "s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Tendency of Specific Humidity Due to Boundary Layer Mixing", + "comment": "Includes all boundary layer terms including diffusive terms.", + "dimensions": "longitude latitude alevel time", + "out_name": "tnhuspbl", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "tnhuspbl", + "variableRootDD": "tnhuspbl", + "branding_label": "tavg-al-hxy-u", + "branded_variable_name": "tnhuspbl_tavg-al-hxy-u", + "region": "GLB", + "cmip6_compound_name": "Emon.tnhuspbl", + "cmip7_compound_name": "atmos.tnhuspbl.tavg-al-hxy-u.mon.GLB", + "uid": "8b89cee8-4a5b-11e6-9cd2-ac72891c3257" + }, + "atmos.tnhuspbl.tpt-al-hs-u.subhr.GLB": { + "frequency": "subhr", + "modeling_realm": "atmos", + "standard_name": "tendency_of_specific_humidity_due_to_boundary_layer_mixing", + "units": "s-1", + "cell_methods": "area: point time: point", + "cell_measures": "", + "long_name": "Tendency of Specific Humidity Due to Boundary Layer Mixing", + "comment": "alevel site time1", + "dimensions": "alevel site time1", + "out_name": "tnhuspbl", + "type": "real", + "positive": "", + "spatial_shape": "S-A", + "temporal_shape": "time-point", + "cmip6_table": "Esubhr", + "physical_parameter_name": "tnhuspbl", + "variableRootDD": "tnhuspbl", + "branding_label": "tpt-al-hs-u", + "branded_variable_name": "tnhuspbl_tpt-al-hs-u", + "region": "GLB", + "cmip6_compound_name": "Esubhr.tnhuspbl", + "cmip7_compound_name": "atmos.tnhuspbl.tpt-al-hs-u.subhr.GLB", + "uid": "8b8a1542-4a5b-11e6-9cd2-ac72891c3257" + }, + "atmos.tnhusscp.tavg-al-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "tendency_of_specific_humidity_due_to_stratiform_cloud_and_precipitation", + "units": "s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Tendency of Specific Humidity Due to Stratiform Clouds and Precipitation", + "comment": "The phrase \"tendency_of_X\" means derivative of X with respect to time. \"Specific\" means per unit mass. Specific humidity is the mass fraction of water vapor in (moist) air. The specification of a physical process by the phrase \"due_to_\" process means that the quantity named is a single term in a sum of terms which together compose the general quantity named by omitting the phrase. A variable with the standard name of tendency_of_specific_humidity_due_to_stratiform_cloud_and_precipitation should contain the effects of all processes which convert stratiform clouds and precipitation to or from water vapor. In an atmosphere model, stratiform cloud is that produced by large-scale convergence (not the convection schemes).", + "dimensions": "longitude latitude alevel time", + "out_name": "tnhusscp", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "tnhusscp", + "variableRootDD": "tnhusscp", + "branding_label": "tavg-al-hxy-u", + "branded_variable_name": "tnhusscp_tavg-al-hxy-u", + "region": "GLB", + "cmip6_compound_name": "Emon.tnhusscp", + "cmip7_compound_name": "atmos.tnhusscp.tavg-al-hxy-u.mon.GLB", + "uid": "8b89d456-4a5b-11e6-9cd2-ac72891c3257" + }, + "atmos.tnhusscp.tpt-al-hs-u.subhr.GLB": { + "frequency": "subhr", + "modeling_realm": "atmos", + "standard_name": "tendency_of_specific_humidity_due_to_stratiform_cloud_and_precipitation", + "units": "s-1", + "cell_methods": "area: point time: point", + "cell_measures": "", + "long_name": "Tendency of Specific Humidity Due to Stratiform Clouds and Precipitation", + "comment": "alevel site time1", + "dimensions": "alevel site time1", + "out_name": "tnhusscp", + "type": "real", + "positive": "", + "spatial_shape": "S-A", + "temporal_shape": "time-point", + "cmip6_table": "Esubhr", + "physical_parameter_name": "tnhusscp", + "variableRootDD": "tnhusscp", + "branding_label": "tpt-al-hs-u", + "branded_variable_name": "tnhusscp_tpt-al-hs-u", + "region": "GLB", + "cmip6_compound_name": "Esubhr.tnhusscp", + "cmip7_compound_name": "atmos.tnhusscp.tpt-al-hs-u.subhr.GLB", + "uid": "8b8a1a88-4a5b-11e6-9cd2-ac72891c3257" + }, + "atmos.tnhusscpbl.tavg-al-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "tendency_of_specific_humidity_due_to_stratiform_cloud_and_precipitation_and_boundary_layer_mixing", + "units": "s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Tendency of Specific Humidity Due to Stratiform Cloud and Precipitation and Boundary Layer Mixing", + "comment": "To be specified only in models which do not separate budget terms for stratiform cloud, precipitation and boundary layer schemes. Includes all bounday layer terms including and diffusive terms.", + "dimensions": "longitude latitude alevel time", + "out_name": "tnhusscpbl", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-intv", + "cmip6_table": "CFmon", + "physical_parameter_name": "tnhusscpbl", + "variableRootDD": "tnhusscpbl", + "branding_label": "tavg-al-hxy-u", + "branded_variable_name": "tnhusscpbl_tavg-al-hxy-u", + "region": "GLB", + "cmip6_compound_name": "CFmon.tnhusscpbl", + "cmip7_compound_name": "atmos.tnhusscpbl.tavg-al-hxy-u.mon.GLB", + "uid": "bab9dfd8-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.tnhusscpbl.tpt-al-hs-u.subhr.GLB": { + "frequency": "subhr", + "modeling_realm": "atmos", + "standard_name": "tendency_of_specific_humidity_due_to_stratiform_cloud_and_precipitation_and_boundary_layer_mixing", + "units": "s-1", + "cell_methods": "area: point time: point", + "cell_measures": "", + "long_name": "Tendency of Specific Humidity Due to Stratiform Cloud and Precipitation and Boundary Layer Mixing", + "comment": "To be specified only in models which do not separate budget terms for stratiform cloud, precipitation and boundary layer schemes. Includes all bounday layer terms including and diffusive terms.", + "dimensions": "alevel site time1", + "out_name": "tnhusscpbl", + "type": "real", + "positive": "", + "spatial_shape": "S-A", + "temporal_shape": "time-point", + "cmip6_table": "CFsubhr", + "physical_parameter_name": "tnhusscpbl", + "variableRootDD": "tnhusscpbl", + "branding_label": "tpt-al-hs-u", + "branded_variable_name": "tnhusscpbl_tpt-al-hs-u", + "region": "GLB", + "cmip6_compound_name": "CFsubhr.tnhusscpbl", + "cmip7_compound_name": "atmos.tnhusscpbl.tpt-al-hs-u.subhr.GLB", + "uid": "a955bd76-817c-11e6-a4e2-5404a60d96b5" + }, + "atmos.tnt.tavg-al-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "tendency_of_air_temperature", + "units": "K s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Tendency of Air Temperature", + "comment": "Tendency of Air Temperature", + "dimensions": "longitude latitude alevel time", + "out_name": "tnt", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-intv", + "cmip6_table": "CFmon", + "physical_parameter_name": "tnt", + "variableRootDD": "tnt", + "branding_label": "tavg-al-hxy-u", + "branded_variable_name": "tnt_tavg-al-hxy-u", + "region": "GLB", + "cmip6_compound_name": "CFmon.tnt", + "cmip7_compound_name": "atmos.tnt.tavg-al-hxy-u.mon.GLB", + "uid": "baba4b30-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.tnt.tpt-al-hs-u.subhr.GLB": { + "frequency": "subhr", + "modeling_realm": "atmos", + "standard_name": "tendency_of_air_temperature", + "units": "K s-1", + "cell_methods": "area: point time: point", + "cell_measures": "", + "long_name": "Tendency of Air Temperature", + "comment": "Tendency of Air Temperature", + "dimensions": "alevel site time1", + "out_name": "tnt", + "type": "real", + "positive": "", + "spatial_shape": "S-A", + "temporal_shape": "time-point", + "cmip6_table": "CFsubhr", + "physical_parameter_name": "tnt", + "variableRootDD": "tnt", + "branding_label": "tpt-al-hs-u", + "branded_variable_name": "tnt_tpt-al-hs-u", + "region": "GLB", + "cmip6_compound_name": "CFsubhr.tnt", + "cmip7_compound_name": "atmos.tnt.tpt-al-hs-u.subhr.GLB", + "uid": "a955485a-817c-11e6-a4e2-5404a60d96b5" + }, + "atmos.tnta.tavg-al-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "tendency_of_air_temperature_due_to_advection", + "units": "K s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Tendency of Air Temperature Due to Advection", + "comment": "Tendency of Air Temperature due to Advection", + "dimensions": "longitude latitude alevel time", + "out_name": "tnta", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-intv", + "cmip6_table": "CFmon", + "physical_parameter_name": "tnta", + "variableRootDD": "tnta", + "branding_label": "tavg-al-hxy-u", + "branded_variable_name": "tnta_tavg-al-hxy-u", + "region": "GLB", + "cmip6_compound_name": "CFmon.tnta", + "cmip7_compound_name": "atmos.tnta.tavg-al-hxy-u.mon.GLB", + "uid": "baba4f22-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.tnta.tpt-al-hs-u.subhr.GLB": { + "frequency": "subhr", + "modeling_realm": "atmos", + "standard_name": "tendency_of_air_temperature_due_to_advection", + "units": "K s-1", + "cell_methods": "area: point time: point", + "cell_measures": "", + "long_name": "Tendency of Air Temperature Due to Advection", + "comment": "Tendency of Air Temperature due to Advection", + "dimensions": "alevel site time1", + "out_name": "tnta", + "type": "real", + "positive": "", + "spatial_shape": "S-A", + "temporal_shape": "time-point", + "cmip6_table": "CFsubhr", + "physical_parameter_name": "tnta", + "variableRootDD": "tnta", + "branding_label": "tpt-al-hs-u", + "branded_variable_name": "tnta_tpt-al-hs-u", + "region": "GLB", + "cmip6_compound_name": "CFsubhr.tnta", + "cmip7_compound_name": "atmos.tnta.tpt-al-hs-u.subhr.GLB", + "uid": "a9555412-817c-11e6-a4e2-5404a60d96b5" + }, + "atmos.tntc.tavg-al-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "tendency_of_air_temperature_due_to_convection", + "units": "K s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Tendency of Air Temperature Due to Convection", + "comment": "Tendencies from cumulus convection scheme.", + "dimensions": "longitude latitude alevel time", + "out_name": "tntc", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-intv", + "cmip6_table": "CFmon", + "physical_parameter_name": "tntc", + "variableRootDD": "tntc", + "branding_label": "tavg-al-hxy-u", + "branded_variable_name": "tntc_tavg-al-hxy-u", + "region": "GLB", + "cmip6_compound_name": "CFmon.tntc", + "cmip7_compound_name": "atmos.tntc.tavg-al-hxy-u.mon.GLB", + "uid": "baba5300-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.tntc.tavg-p39-hy-air.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "tendency_of_air_temperature_due_to_convection", + "units": "K s-1", + "cell_methods": "longitude: time: mean where air", + "cell_measures": "", + "long_name": "Tendency of Air Temperature Due to Convection", + "comment": "zonal mean; hence YZT", + "dimensions": "latitude plev39 time", + "out_name": "tntc", + "type": "real", + "positive": "", + "spatial_shape": "Y-P39", + "temporal_shape": "time-intv", + "cmip6_table": "EmonZ", + "physical_parameter_name": "tntc", + "variableRootDD": "tntc", + "branding_label": "tavg-p39-hy-air", + "branded_variable_name": "tntc_tavg-p39-hy-air", + "region": "GLB", + "cmip6_compound_name": "EmonZ.tntc", + "cmip7_compound_name": "atmos.tntc.tavg-p39-hy-air.mon.GLB", + "uid": "11ecc9b2-c14f-11e6-bb78-ac72891c3257" + }, + "atmos.tntc.tpt-al-hs-u.subhr.GLB": { + "frequency": "subhr", + "modeling_realm": "atmos", + "standard_name": "tendency_of_air_temperature_due_to_convection", + "units": "K s-1", + "cell_methods": "area: point time: point", + "cell_measures": "", + "long_name": "Tendency of Air Temperature Due to Convection", + "comment": "Tendencies from cumulus convection scheme.", + "dimensions": "alevel site time1", + "out_name": "tntc", + "type": "real", + "positive": "", + "spatial_shape": "S-A", + "temporal_shape": "time-point", + "cmip6_table": "CFsubhr", + "physical_parameter_name": "tntc", + "variableRootDD": "tntc", + "branding_label": "tpt-al-hs-u", + "branded_variable_name": "tntc_tpt-al-hs-u", + "region": "GLB", + "cmip6_compound_name": "CFsubhr.tntc", + "cmip7_compound_name": "atmos.tntc.tpt-al-hs-u.subhr.GLB", + "uid": "a9558356-817c-11e6-a4e2-5404a60d96b5" + }, + "atmos.tntd.tavg-al-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "tendency_of_air_temperature_due_to_diffusion", + "units": "K s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Tendency of Air Temperature Due to Numerical Diffusion", + "comment": "This includes any horizontal or vertical numerical temperature diffusion not associated with the parametrized moist physics or the resolved dynamics. For example, any vertical diffusion which is part of the boundary layer mixing scheme should be excluded, as should any diffusion which is included in the terms from the resolved dynamics. This term is required to check the closure of the temperature budget.", + "dimensions": "longitude latitude alevel time", + "out_name": "tntd", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "tntd", + "variableRootDD": "tntd", + "branding_label": "tavg-al-hxy-u", + "branded_variable_name": "tntd_tavg-al-hxy-u", + "region": "GLB", + "cmip6_compound_name": "Emon.tntd", + "cmip7_compound_name": "atmos.tntd.tavg-al-hxy-u.mon.GLB", + "uid": "8b89be4e-4a5b-11e6-9cd2-ac72891c3257" + }, + "atmos.tntd.tpt-al-hs-u.subhr.GLB": { + "frequency": "subhr", + "modeling_realm": "atmos", + "standard_name": "tendency_of_air_temperature_due_to_diffusion", + "units": "K s-1", + "cell_methods": "area: point time: point", + "cell_measures": "", + "long_name": "Tendency of Air Temperature Due to Numerical Diffusion", + "comment": "alevel site time1", + "dimensions": "alevel site time1", + "out_name": "tntd", + "type": "real", + "positive": "", + "spatial_shape": "S-A", + "temporal_shape": "time-point", + "cmip6_table": "Esubhr", + "physical_parameter_name": "tntd", + "variableRootDD": "tntd", + "branding_label": "tpt-al-hs-u", + "branded_variable_name": "tntd_tpt-al-hs-u", + "region": "GLB", + "cmip6_compound_name": "Esubhr.tntd", + "cmip7_compound_name": "atmos.tntd.tpt-al-hs-u.subhr.GLB", + "uid": "8b8a034a-4a5b-11e6-9cd2-ac72891c3257" + }, + "atmos.tntmp.tavg-al-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "tendency_of_air_temperature_due_to_model_physics", + "units": "K s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Tendency of Air Temperature Due to Model Physics", + "comment": "This includes sources and sinks from parametrized physics (e.g. radiation, convection, boundary layer, stratiform condensation/evaporation, etc.). It excludes sources and sinks from resolved dynamics and numerical diffusion not associated with parametrized physics. For example, any vertical diffusion which is part of the boundary layer mixing scheme should be included, while numerical diffusion applied in addition to physics or resolved dynamics should be excluded. This term is required to check the closure of the heat budget.", + "dimensions": "longitude latitude alevel time", + "out_name": "tntmp", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-intv", + "cmip6_table": "CFmon", + "physical_parameter_name": "tntmp", + "variableRootDD": "tntmp", + "branding_label": "tavg-al-hxy-u", + "branded_variable_name": "tntmp_tavg-al-hxy-u", + "region": "GLB", + "cmip6_compound_name": "CFmon.tntmp", + "cmip7_compound_name": "atmos.tntmp.tavg-al-hxy-u.mon.GLB", + "uid": "baba5d78-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.tntmp.tavg-p39-hy-air.day.GLB": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "tendency_of_air_temperature_due_to_model_physics", + "units": "K s-1", + "cell_methods": "longitude: time: mean where air", + "cell_measures": "", + "long_name": "Zonal mean tendency of air temperature due to model physics", + "comment": "Zonal mean tendency of air temperature due to model physics, with the extended number of vertical levels", + "dimensions": "latitude plev39 time", + "out_name": "tntmp", + "type": "real", + "positive": "", + "spatial_shape": "Y-P39", + "temporal_shape": "time-intv", + "cmip6_table": "EdayZ", + "physical_parameter_name": "tntmp", + "variableRootDD": "tntmp", + "branding_label": "tavg-p39-hy-air", + "branded_variable_name": "tntmp_tavg-p39-hy-air", + "region": "GLB", + "cmip6_compound_name": "EdayZ.tntmp", + "cmip7_compound_name": "atmos.tntmp.tavg-p39-hy-air.day.GLB", + "uid": "83bbfc89-7f07-11ef-9308-b1dd71e64bec" + }, + "atmos.tntmp.tavg-p39-hy-air.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "tendency_of_air_temperature_due_to_model_physics", + "units": "K s-1", + "cell_methods": "longitude: time: mean where air", + "cell_measures": "", + "long_name": "Tendency of Air Temperature Due to Model Physics", + "comment": "Zonal mean tendency of air temperature due to model physics, with the extended number of vertical levels", + "dimensions": "latitude plev39 time", + "out_name": "tntmp", + "type": "real", + "positive": "", + "spatial_shape": "Y-P39", + "temporal_shape": "time-intv", + "cmip6_table": "EmonZ", + "physical_parameter_name": "tntmp", + "variableRootDD": "tntmp", + "branding_label": "tavg-p39-hy-air", + "branded_variable_name": "tntmp_tavg-p39-hy-air", + "region": "GLB", + "cmip6_compound_name": "EmonZ.tntmp", + "cmip7_compound_name": "atmos.tntmp.tavg-p39-hy-air.mon.GLB", + "uid": "607e74a6-bf0e-11e6-aae4-ac72891c3257" + }, + "atmos.tntmp.tpt-al-hs-u.subhr.GLB": { + "frequency": "subhr", + "modeling_realm": "atmos", + "standard_name": "tendency_of_air_temperature_due_to_model_physics", + "units": "K s-1", + "cell_methods": "area: point time: point", + "cell_measures": "", + "long_name": "Tendency of Air Temperature Due to Model Physics", + "comment": "This includes sources and sinks from parametrized physics (e.g. radiation, convection, boundary layer, stratiform condensation/evaporation, etc.). It excludes sources and sinks from resolved dynamics and numerical diffusion not associated with parametrized physics. For example, any vertical diffusion which is part of the boundary layer mixing scheme should be included, while numerical diffusion applied in addition to physics or resolved dynamics should be excluded. This term is required to check the closure of the heat budget.", + "dimensions": "alevel site time1", + "out_name": "tntmp", + "type": "real", + "positive": "", + "spatial_shape": "S-A", + "temporal_shape": "time-point", + "cmip6_table": "CFsubhr", + "physical_parameter_name": "tntmp", + "variableRootDD": "tntmp", + "branding_label": "tpt-al-hs-u", + "branded_variable_name": "tntmp_tpt-al-hs-u", + "region": "GLB", + "cmip6_compound_name": "CFsubhr.tntmp", + "cmip7_compound_name": "atmos.tntmp.tpt-al-hs-u.subhr.GLB", + "uid": "a9555f5c-817c-11e6-a4e2-5404a60d96b5" + }, + "atmos.tntnogw.tavg-p39-hy-air.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "tendency_of_air_temperature_due_to_dissipation_of_nonorographic_gravity_waves", + "units": "K s-1", + "cell_methods": "longitude: time: mean where air", + "cell_measures": "", + "long_name": "Temperature Tendency Due to Non-Orographic Gravity Wave Dissipation", + "comment": "zonal mean; hence YZT", + "dimensions": "latitude plev39 time", + "out_name": "tntnogw", + "type": "real", + "positive": "", + "spatial_shape": "Y-P39", + "temporal_shape": "time-intv", + "cmip6_table": "EmonZ", + "physical_parameter_name": "tntnogw", + "variableRootDD": "tntnogw", + "branding_label": "tavg-p39-hy-air", + "branded_variable_name": "tntnogw_tavg-p39-hy-air", + "region": "GLB", + "cmip6_compound_name": "EmonZ.tntnogw", + "cmip7_compound_name": "atmos.tntnogw.tavg-p39-hy-air.mon.GLB", + "uid": "8b978b96-4a5b-11e6-9cd2-ac72891c3257" + }, + "atmos.tntogw.tavg-p39-hy-air.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "tendency_of_air_temperature_due_to_dissipation_of_orographic_gravity_waves", + "units": "K s-1", + "cell_methods": "longitude: time: mean where air", + "cell_measures": "", + "long_name": "Temperature Tendency Due to Orographic Gravity Wave Dissipation", + "comment": "zonal mean; hence YZT", + "dimensions": "latitude plev39 time", + "out_name": "tntogw", + "type": "real", + "positive": "", + "spatial_shape": "Y-P39", + "temporal_shape": "time-intv", + "cmip6_table": "EmonZ", + "physical_parameter_name": "tntogw", + "variableRootDD": "tntogw", + "branding_label": "tavg-p39-hy-air", + "branded_variable_name": "tntogw_tavg-p39-hy-air", + "region": "GLB", + "cmip6_compound_name": "EmonZ.tntogw", + "cmip7_compound_name": "atmos.tntogw.tavg-p39-hy-air.mon.GLB", + "uid": "8b978588-4a5b-11e6-9cd2-ac72891c3257" + }, + "atmos.tntpbl.tavg-al-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "tendency_of_air_temperature_due_to_boundary_layer_mixing", + "units": "K s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Tendency of Air Temperature Due to Boundary Layer Mixing", + "comment": "Includes all boundary layer terms including diffusive terms.", + "dimensions": "longitude latitude alevel time", + "out_name": "tntpbl", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "tntpbl", + "variableRootDD": "tntpbl", + "branding_label": "tavg-al-hxy-u", + "branded_variable_name": "tntpbl_tavg-al-hxy-u", + "region": "GLB", + "cmip6_compound_name": "Emon.tntpbl", + "cmip7_compound_name": "atmos.tntpbl.tavg-al-hxy-u.mon.GLB", + "uid": "8b89c3ee-4a5b-11e6-9cd2-ac72891c3257" + }, + "atmos.tntpbl.tpt-al-hs-u.subhr.GLB": { + "frequency": "subhr", + "modeling_realm": "atmos", + "standard_name": "tendency_of_air_temperature_due_to_boundary_layer_mixing", + "units": "K s-1", + "cell_methods": "area: point time: point", + "cell_measures": "", + "long_name": "Tendency of Air Temperature Due to Boundary Layer Mixing", + "comment": "alevel site time1", + "dimensions": "alevel site time1", + "out_name": "tntpbl", + "type": "real", + "positive": "", + "spatial_shape": "S-A", + "temporal_shape": "time-point", + "cmip6_table": "Esubhr", + "physical_parameter_name": "tntpbl", + "variableRootDD": "tntpbl", + "branding_label": "tpt-al-hs-u", + "branded_variable_name": "tntpbl_tpt-al-hs-u", + "region": "GLB", + "cmip6_compound_name": "Esubhr.tntpbl", + "cmip7_compound_name": "atmos.tntpbl.tpt-al-hs-u.subhr.GLB", + "uid": "8b8a089a-4a5b-11e6-9cd2-ac72891c3257" + }, + "atmos.tntr.tavg-al-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "tendency_of_air_temperature_due_to_radiative_heating", + "units": "K s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Tendency of Air Temperature Due to Radiative Heating", + "comment": "Tendency of Air Temperature due to Radiative Heating", + "dimensions": "longitude latitude alevel time", + "out_name": "tntr", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-intv", + "cmip6_table": "CFmon", + "physical_parameter_name": "tntr", + "variableRootDD": "tntr", + "branding_label": "tavg-al-hxy-u", + "branded_variable_name": "tntr_tavg-al-hxy-u", + "region": "GLB", + "cmip6_compound_name": "CFmon.tntr", + "cmip7_compound_name": "atmos.tntr.tavg-al-hxy-u.mon.GLB", + "uid": "baba617e-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.tntr.tpt-al-hs-u.subhr.GLB": { + "frequency": "subhr", + "modeling_realm": "atmos", + "standard_name": "tendency_of_air_temperature_due_to_radiative_heating", + "units": "K s-1", + "cell_methods": "area: point time: point", + "cell_measures": "", + "long_name": "Tendency of Air Temperature Due to Radiative Heating", + "comment": "Tendency of Air Temperature due to Radiative Heating", + "dimensions": "alevel site time1", + "out_name": "tntr", + "type": "real", + "positive": "", + "spatial_shape": "S-A", + "temporal_shape": "time-point", + "cmip6_table": "CFsubhr", + "physical_parameter_name": "tntr", + "variableRootDD": "tntr", + "branding_label": "tpt-al-hs-u", + "branded_variable_name": "tntr_tpt-al-hs-u", + "region": "GLB", + "cmip6_compound_name": "CFsubhr.tntr", + "cmip7_compound_name": "atmos.tntr.tpt-al-hs-u.subhr.GLB", + "uid": "a9557802-817c-11e6-a4e2-5404a60d96b5" + }, + "atmos.tntrl.tavg-al-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "tendency_of_air_temperature_due_to_longwave_heating", + "units": "K s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Tendency of Air Temperature Due to Longwave Radiative Heating", + "comment": "longwave heating rates", + "dimensions": "longitude latitude alevel time", + "out_name": "tntrl", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "tntrl", + "variableRootDD": "tntrl", + "branding_label": "tavg-al-hxy-u", + "branded_variable_name": "tntrl_tavg-al-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.tntrl", + "cmip7_compound_name": "atmos.tntrl.tavg-al-hxy-u.mon.GLB", + "uid": "01d409fc-c792-11e6-aa58-5404a60d96b5" + }, + "atmos.tntrl.tavg-p39-hy-air.day.GLB": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "tendency_of_air_temperature_due_to_longwave_heating", + "units": "K s-1", + "cell_methods": "longitude: time: mean where air", + "cell_measures": "", + "long_name": "Zonal mean tendency of air temperature due to longwave heating, all sky", + "comment": "Zonal mean tendency of air temperature due to longwave heating, all sky, with the extended number of vertical levels.", + "dimensions": "latitude plev39 time", + "out_name": "tntrl", + "type": "real", + "positive": "", + "spatial_shape": "Y-P39", + "temporal_shape": "time-intv", + "cmip6_table": "EdayZ", + "physical_parameter_name": "tntrl", + "variableRootDD": "tntrl", + "branding_label": "tavg-p39-hy-air", + "branded_variable_name": "tntrl_tavg-p39-hy-air", + "region": "GLB", + "cmip6_compound_name": "EdayZ.tntrl", + "cmip7_compound_name": "atmos.tntrl.tavg-p39-hy-air.day.GLB", + "uid": "83bbfc88-7f07-11ef-9308-b1dd71e64bec" + }, + "atmos.tntrl.tavg-p39-hy-air.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "tendency_of_air_temperature_due_to_longwave_heating", + "units": "K s-1", + "cell_methods": "longitude: time: mean where air", + "cell_measures": "", + "long_name": "Tendency of Air Temperature Due to Longwave Radiative Heating", + "comment": "zonal mean; hence YZT", + "dimensions": "latitude plev39 time", + "out_name": "tntrl", + "type": "real", + "positive": "", + "spatial_shape": "Y-P39", + "temporal_shape": "time-intv", + "cmip6_table": "EmonZ", + "physical_parameter_name": "tntrl", + "variableRootDD": "tntrl", + "branding_label": "tavg-p39-hy-air", + "branded_variable_name": "tntrl_tavg-p39-hy-air", + "region": "GLB", + "cmip6_compound_name": "EmonZ.tntrl", + "cmip7_compound_name": "atmos.tntrl.tavg-p39-hy-air.mon.GLB", + "uid": "11ecb9cc-c14f-11e6-bb78-ac72891c3257" + }, + "atmos.tntrl.tpt-al-hs-u.subhr.GLB": { + "frequency": "subhr", + "modeling_realm": "atmos", + "standard_name": "tendency_of_air_temperature_due_to_longwave_heating", + "units": "K s-1", + "cell_methods": "area: point time: point", + "cell_measures": "", + "long_name": "Tendency of Air Temperature Due to Longwave Radiative Heating", + "comment": "alevel site time1", + "dimensions": "alevel site time1", + "out_name": "tntrl", + "type": "real", + "positive": "", + "spatial_shape": "S-A", + "temporal_shape": "time-point", + "cmip6_table": "Esubhr", + "physical_parameter_name": "tntrl", + "variableRootDD": "tntrl", + "branding_label": "tpt-al-hs-u", + "branded_variable_name": "tntrl_tpt-al-hs-u", + "region": "GLB", + "cmip6_compound_name": "Esubhr.tntrl", + "cmip7_compound_name": "atmos.tntrl.tpt-al-hs-u.subhr.GLB", + "uid": "8b89edce-4a5b-11e6-9cd2-ac72891c3257" + }, + "atmos.tntrlcs.tavg-al-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "tendency_of_air_temperature_due_to_longwave_heating_assuming_clear_sky", + "units": "K s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Tendency of Air Temperature Due to Clear Sky Longwave Radiative Heating", + "comment": "Tendency of Air Temperature due to Clear Sky Longwave Radiative Heating", + "dimensions": "longitude latitude alevel time", + "out_name": "tntrlcs", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "tntrlcs", + "variableRootDD": "tntrlcs", + "branding_label": "tavg-al-hxy-u", + "branded_variable_name": "tntrlcs_tavg-al-hxy-u", + "region": "GLB", + "cmip6_compound_name": "Emon.tntrlcs", + "cmip7_compound_name": "atmos.tntrlcs.tavg-al-hxy-u.mon.GLB", + "uid": "8b89b296-4a5b-11e6-9cd2-ac72891c3257" + }, + "atmos.tntrlcs.tavg-p39-hy-air.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "tendency_of_air_temperature_due_to_longwave_heating_assuming_clear_sky", + "units": "K s-1", + "cell_methods": "longitude: time: mean where air", + "cell_measures": "", + "long_name": "Tendency of Air Temperature Due to Clear Sky Longwave Radiative Heating", + "comment": "zonal mean; hence YZT", + "dimensions": "latitude plev39 time", + "out_name": "tntrlcs", + "type": "real", + "positive": "", + "spatial_shape": "Y-P39", + "temporal_shape": "time-intv", + "cmip6_table": "EmonZ", + "physical_parameter_name": "tntrlcs", + "variableRootDD": "tntrlcs", + "branding_label": "tavg-p39-hy-air", + "branded_variable_name": "tntrlcs_tavg-p39-hy-air", + "region": "GLB", + "cmip6_compound_name": "EmonZ.tntrlcs", + "cmip7_compound_name": "atmos.tntrlcs.tavg-p39-hy-air.mon.GLB", + "uid": "11ecc1d8-c14f-11e6-bb78-ac72891c3257" + }, + "atmos.tntrlcs.tpt-al-hs-u.subhr.GLB": { + "frequency": "subhr", + "modeling_realm": "atmos", + "standard_name": "tendency_of_air_temperature_due_to_longwave_heating_assuming_clear_sky", + "units": "K s-1", + "cell_methods": "area: point time: point", + "cell_measures": "", + "long_name": "Tendency of Air Temperature Due to Clear Sky Longwave Radiative Heating", + "comment": "alevel site time1", + "dimensions": "alevel site time1", + "out_name": "tntrlcs", + "type": "real", + "positive": "", + "spatial_shape": "S-A", + "temporal_shape": "time-point", + "cmip6_table": "Esubhr", + "physical_parameter_name": "tntrlcs", + "variableRootDD": "tntrlcs", + "branding_label": "tpt-al-hs-u", + "branded_variable_name": "tntrlcs_tpt-al-hs-u", + "region": "GLB", + "cmip6_compound_name": "Esubhr.tntrlcs", + "cmip7_compound_name": "atmos.tntrlcs.tpt-al-hs-u.subhr.GLB", + "uid": "8b89f864-4a5b-11e6-9cd2-ac72891c3257" + }, + "atmos.tntrs.tavg-al-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "tendency_of_air_temperature_due_to_shortwave_heating", + "units": "K s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Tendency of Air Temperature Due to Shortwave Radiative Heating", + "comment": "shortwave heating rates", + "dimensions": "longitude latitude alevel time", + "out_name": "tntrs", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "tntrs", + "variableRootDD": "tntrs", + "branding_label": "tavg-al-hxy-u", + "branded_variable_name": "tntrs_tavg-al-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.tntrs", + "cmip7_compound_name": "atmos.tntrs.tavg-al-hxy-u.mon.GLB", + "uid": "01d3ff0c-c792-11e6-aa58-5404a60d96b5" + }, + "atmos.tntrs.tavg-p39-hy-air.day.GLB": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "tendency_of_air_temperature_due_to_shortwave_heating", + "units": "K s-1", + "cell_methods": "longitude: time: mean where air", + "cell_measures": "", + "long_name": "Zonal mean tendency of air temperature due to shortwave heating, all sky", + "comment": "Zonal mean tendency of air temperature due to shortwave heating, all sky, with the extended number of vertical levels.", + "dimensions": "latitude plev39 time", + "out_name": "tntrs", + "type": "real", + "positive": "", + "spatial_shape": "Y-P39", + "temporal_shape": "time-intv", + "cmip6_table": "EdayZ", + "physical_parameter_name": "tntrs", + "variableRootDD": "tntrs", + "branding_label": "tavg-p39-hy-air", + "branded_variable_name": "tntrs_tavg-p39-hy-air", + "region": "GLB", + "cmip6_compound_name": "EdayZ.tntrs", + "cmip7_compound_name": "atmos.tntrs.tavg-p39-hy-air.day.GLB", + "uid": "83bbfc87-7f07-11ef-9308-b1dd71e64bec" + }, + "atmos.tntrs.tavg-p39-hy-air.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "tendency_of_air_temperature_due_to_shortwave_heating", + "units": "K s-1", + "cell_methods": "longitude: time: mean where air", + "cell_measures": "", + "long_name": "Tendency of Air Temperature Due to Shortwave Radiative Heating", + "comment": "zonal mean; hence YZT", + "dimensions": "latitude plev39 time", + "out_name": "tntrs", + "type": "real", + "positive": "", + "spatial_shape": "Y-P39", + "temporal_shape": "time-intv", + "cmip6_table": "EmonZ", + "physical_parameter_name": "tntrs", + "variableRootDD": "tntrs", + "branding_label": "tavg-p39-hy-air", + "branded_variable_name": "tntrs_tavg-p39-hy-air", + "region": "GLB", + "cmip6_compound_name": "EmonZ.tntrs", + "cmip7_compound_name": "atmos.tntrs.tavg-p39-hy-air.mon.GLB", + "uid": "11ecbdd2-c14f-11e6-bb78-ac72891c3257" + }, + "atmos.tntrs.tpt-al-hs-u.subhr.GLB": { + "frequency": "subhr", + "modeling_realm": "atmos", + "standard_name": "tendency_of_air_temperature_due_to_shortwave_heating", + "units": "K s-1", + "cell_methods": "area: point time: point", + "cell_measures": "", + "long_name": "Tendency of Air Temperature Due to Shortwave Radiative Heating", + "comment": "alevel site time1", + "dimensions": "alevel site time1", + "out_name": "tntrs", + "type": "real", + "positive": "", + "spatial_shape": "S-A", + "temporal_shape": "time-point", + "cmip6_table": "Esubhr", + "physical_parameter_name": "tntrs", + "variableRootDD": "tntrs", + "branding_label": "tpt-al-hs-u", + "branded_variable_name": "tntrs_tpt-al-hs-u", + "region": "GLB", + "cmip6_compound_name": "Esubhr.tntrs", + "cmip7_compound_name": "atmos.tntrs.tpt-al-hs-u.subhr.GLB", + "uid": "8b89f314-4a5b-11e6-9cd2-ac72891c3257" + }, + "atmos.tntrscs.tavg-al-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "tendency_of_air_temperature_due_to_shortwave_heating_assuming_clear_sky", + "units": "K s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Tendency of Air Temperature Due to Clear Sky Shortwave Radiative Heating", + "comment": "Tendency of Air Temperature due to Clear Sky Shortwave Radiative Heating", + "dimensions": "longitude latitude alevel time", + "out_name": "tntrscs", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "tntrscs", + "variableRootDD": "tntrscs", + "branding_label": "tavg-al-hxy-u", + "branded_variable_name": "tntrscs_tavg-al-hxy-u", + "region": "GLB", + "cmip6_compound_name": "Emon.tntrscs", + "cmip7_compound_name": "atmos.tntrscs.tavg-al-hxy-u.mon.GLB", + "uid": "8b89b84a-4a5b-11e6-9cd2-ac72891c3257" + }, + "atmos.tntrscs.tavg-p39-hy-air.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "tendency_of_air_temperature_due_to_shortwave_heating_assuming_clear_sky", + "units": "K s-1", + "cell_methods": "longitude: time: mean where air", + "cell_measures": "", + "long_name": "Tendency of Air Temperature Due to Clear Sky Shortwave Radiative Heating", + "comment": "zonal mean; hence YZT", + "dimensions": "latitude plev39 time", + "out_name": "tntrscs", + "type": "real", + "positive": "", + "spatial_shape": "Y-P39", + "temporal_shape": "time-intv", + "cmip6_table": "EmonZ", + "physical_parameter_name": "tntrscs", + "variableRootDD": "tntrscs", + "branding_label": "tavg-p39-hy-air", + "branded_variable_name": "tntrscs_tavg-p39-hy-air", + "region": "GLB", + "cmip6_compound_name": "EmonZ.tntrscs", + "cmip7_compound_name": "atmos.tntrscs.tavg-p39-hy-air.mon.GLB", + "uid": "11ecc5ca-c14f-11e6-bb78-ac72891c3257" + }, + "atmos.tntrscs.tpt-al-hs-u.subhr.GLB": { + "frequency": "subhr", + "modeling_realm": "atmos", + "standard_name": "tendency_of_air_temperature_due_to_shortwave_heating_assuming_clear_sky", + "units": "K s-1", + "cell_methods": "area: point time: point", + "cell_measures": "", + "long_name": "Tendency of Air Temperature Due to Clear Sky Shortwave Radiative Heating", + "comment": "alevel site time1", + "dimensions": "alevel site time1", + "out_name": "tntrscs", + "type": "real", + "positive": "", + "spatial_shape": "S-A", + "temporal_shape": "time-point", + "cmip6_table": "Esubhr", + "physical_parameter_name": "tntrscs", + "variableRootDD": "tntrscs", + "branding_label": "tpt-al-hs-u", + "branded_variable_name": "tntrscs_tpt-al-hs-u", + "region": "GLB", + "cmip6_compound_name": "Esubhr.tntrscs", + "cmip7_compound_name": "atmos.tntrscs.tpt-al-hs-u.subhr.GLB", + "uid": "8b89fda0-4a5b-11e6-9cd2-ac72891c3257" + }, + "atmos.tntscp.tavg-al-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "tendency_of_air_temperature_due_to_stratiform_cloud_and_precipitation", + "units": "K s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Tendency of Air Temperature Due to Stratiform Clouds and Precipitation", + "comment": "The phrase \"tendency_of_X\" means derivative of X with respect to time. Air temperature is the bulk temperature of the air, not the surface (skin) temperature. The specification of a physical process by the phrase \"due_to_\" process means that the quantity named is a single term in a sum of terms which together compose the general quantity named by omitting the phrase. A variable with the standard name tendency_of_air_temperature_due_to_stratiform_cloud_and_precipitation should contain net latent heating effects of all processes which convert stratiform clouds and precipitation between water vapour, liquid or ice phases. In an atmosphere model, stratiform cloud is that produced by large-scale convergence (not the convection schemes).", + "dimensions": "longitude latitude alevel time", + "out_name": "tntscp", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "tntscp", + "variableRootDD": "tntscp", + "branding_label": "tavg-al-hxy-u", + "branded_variable_name": "tntscp_tavg-al-hxy-u", + "region": "GLB", + "cmip6_compound_name": "Emon.tntscp", + "cmip7_compound_name": "atmos.tntscp.tavg-al-hxy-u.mon.GLB", + "uid": "8b89c970-4a5b-11e6-9cd2-ac72891c3257" + }, + "atmos.tntscp.tavg-p39-hy-air.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "tendency_of_air_temperature_due_to_stratiform_cloud_and_precipitation", + "units": "K s-1", + "cell_methods": "longitude: time: mean where air", + "cell_measures": "", + "long_name": "Tendency of Air Temperature Due to Stratiform Clouds and Precipitation", + "comment": "zonal mean; hence YZT", + "dimensions": "latitude plev39 time", + "out_name": "tntscp", + "type": "real", + "positive": "", + "spatial_shape": "Y-P39", + "temporal_shape": "time-intv", + "cmip6_table": "EmonZ", + "physical_parameter_name": "tntscp", + "variableRootDD": "tntscp", + "branding_label": "tavg-p39-hy-air", + "branded_variable_name": "tntscp_tavg-p39-hy-air", + "region": "GLB", + "cmip6_compound_name": "EmonZ.tntscp", + "cmip7_compound_name": "atmos.tntscp.tavg-p39-hy-air.mon.GLB", + "uid": "11eccd9a-c14f-11e6-bb78-ac72891c3257" + }, + "atmos.tntscp.tpt-al-hs-u.subhr.GLB": { + "frequency": "subhr", + "modeling_realm": "atmos", + "standard_name": "tendency_of_air_temperature_due_to_stratiform_cloud_and_precipitation", + "units": "K s-1", + "cell_methods": "area: point time: point", + "cell_measures": "", + "long_name": "Tendency of Air Temperature Due to Stratiform Clouds and Precipitation", + "comment": "alevel site time1", + "dimensions": "alevel site time1", + "out_name": "tntscp", + "type": "real", + "positive": "", + "spatial_shape": "S-A", + "temporal_shape": "time-point", + "cmip6_table": "Esubhr", + "physical_parameter_name": "tntscp", + "variableRootDD": "tntscp", + "branding_label": "tpt-al-hs-u", + "branded_variable_name": "tntscp_tpt-al-hs-u", + "region": "GLB", + "cmip6_compound_name": "Esubhr.tntscp", + "cmip7_compound_name": "atmos.tntscp.tpt-al-hs-u.subhr.GLB", + "uid": "8b8a0de0-4a5b-11e6-9cd2-ac72891c3257" + }, + "atmos.tntscpbl.tavg-al-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "tendency_of_air_temperature_due_to_stratiform_cloud_and_precipitation_and_boundary_layer_mixing", + "units": "K s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Tendency of Air Temperature Due to Stratiform Cloud and Precipitation and Boundary Layer Mixing", + "comment": "To be specified only in models which do not separate cloud, precipitation and boundary layer terms. Includes all boundary layer terms including diffusive ones.", + "dimensions": "longitude latitude alevel time", + "out_name": "tntscpbl", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-intv", + "cmip6_table": "CFmon", + "physical_parameter_name": "tntscpbl", + "variableRootDD": "tntscpbl", + "branding_label": "tavg-al-hxy-u", + "branded_variable_name": "tntscpbl_tavg-al-hxy-u", + "region": "GLB", + "cmip6_compound_name": "CFmon.tntscpbl", + "cmip7_compound_name": "atmos.tntscpbl.tavg-al-hxy-u.mon.GLB", + "uid": "baba657a-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.tntscpbl.tpt-al-hs-u.subhr.GLB": { + "frequency": "subhr", + "modeling_realm": "atmos", + "standard_name": "tendency_of_air_temperature_due_to_stratiform_cloud_and_precipitation_and_boundary_layer_mixing", + "units": "K s-1", + "cell_methods": "area: point time: point", + "cell_measures": "", + "long_name": "Tendency of Air Temperature Due to Stratiform Cloud and Precipitation and Boundary Layer Mixing", + "comment": "To be specified only in models which do not separate cloud, precipitation and boundary layer terms. Includes all boundary layer terms including diffusive ones.", + "dimensions": "alevel site time1", + "out_name": "tntscpbl", + "type": "real", + "positive": "", + "spatial_shape": "S-A", + "temporal_shape": "time-point", + "cmip6_table": "CFsubhr", + "physical_parameter_name": "tntscpbl", + "variableRootDD": "tntscpbl", + "branding_label": "tpt-al-hs-u", + "branded_variable_name": "tntscpbl_tpt-al-hs-u", + "region": "GLB", + "cmip6_compound_name": "CFsubhr.tntscpbl", + "cmip7_compound_name": "atmos.tntscpbl.tpt-al-hs-u.subhr.GLB", + "uid": "a9556ca4-817c-11e6-a4e2-5404a60d96b5" + }, + "atmos.ts.tavg-u-hxy-is.mon.ATA": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "surface_temperature", + "units": "K", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacellg", + "long_name": "Surface Temperature", + "comment": "quantity averaged over ice sheet (grounded ice sheet and floating ice shelf) only. Needed to analyse the impact of downscaling methods", + "dimensions": "longitude latitude time", + "out_name": "ts", + "type": "real", + "positive": "", + "spatial_shape": "XYA-na", + "temporal_shape": "time-intv", + "cmip6_table": "ImonAnt", + "physical_parameter_name": "ts", + "variableRootDD": "ts", + "branding_label": "tavg-u-hxy-is", + "branded_variable_name": "ts_tavg-u-hxy-is", + "region": "ATA", + "cmip6_compound_name": "ImonAnt.ts", + "cmip7_compound_name": "atmos.ts.tavg-u-hxy-is.mon.ATA", + "uid": "d5b2f7ce-c78d-11e6-9b25-5404a60d96b5" + }, + "atmos.ts.tavg-u-hxy-is.mon.GRL": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "surface_temperature", + "units": "K", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacellg", + "long_name": "Surface Temperature", + "comment": "quantity averaged over ice sheet (grounded ice sheet and floating ice shelf) only. Needed to analyse the impact of downscaling methods", + "dimensions": "longitude latitude time", + "out_name": "ts", + "type": "real", + "positive": "", + "spatial_shape": "XYG-na", + "temporal_shape": "time-intv", + "cmip6_table": "ImonGre", + "physical_parameter_name": "ts", + "variableRootDD": "ts", + "branding_label": "tavg-u-hxy-is", + "branded_variable_name": "ts_tavg-u-hxy-is", + "region": "GRL", + "cmip6_compound_name": "ImonGre.ts", + "cmip7_compound_name": "atmos.ts.tavg-u-hxy-is.mon.GRL", + "uid": "d5b280fa-c78d-11e6-9b25-5404a60d96b5" + }, + "atmos.ts.tavg-u-hxy-sn.day.GLB": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "surface_temperature", + "units": "K", + "cell_methods": "area: time: mean where snow (on land)", + "cell_measures": "area: areacella", + "long_name": "Snow Surface Temperature", + "comment": "Snow Surface Temperature", + "dimensions": "longitude latitude time", + "out_name": "tsns", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Eday", + "physical_parameter_name": "tsns", + "variableRootDD": "ts", + "branding_label": "tavg-u-hxy-sn", + "branded_variable_name": "ts_tavg-u-hxy-sn", + "region": "GLB", + "cmip6_compound_name": "Eday.tsns", + "cmip7_compound_name": "atmos.ts.tavg-u-hxy-sn.day.GLB", + "uid": "d227b7c2-4a9f-11e6-b84e-ac72891c3257" + }, + "atmos.ts.tavg-u-hxy-u.1hr.GLB": { + "frequency": "1hr", + "modeling_realm": "atmos", + "standard_name": "surface_temperature", + "units": "K", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Surface Temperature", + "comment": "Surface temperature (skin for open ocean)", + "dimensions": "longitude latitude time", + "out_name": "ts", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "E1hr", + "physical_parameter_name": "ts", + "variableRootDD": "ts", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "ts_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "E1hr.ts", + "cmip7_compound_name": "atmos.ts.tavg-u-hxy-u.1hr.GLB", + "uid": "83bbfbbe-7f07-11ef-9308-b1dd71e64bec" + }, + "atmos.ts.tavg-u-hxy-u.6hr.GLB": { + "frequency": "6hr", + "modeling_realm": "atmos", + "standard_name": "surface_temperature", + "units": "K", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Surface temperature", + "comment": "Surface temperature (skin for open ocean)", + "dimensions": "longitude latitude time", + "out_name": "ts", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "6hrPlev", + "physical_parameter_name": "ts", + "variableRootDD": "ts", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "ts_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "6hrPlev.ts", + "cmip7_compound_name": "atmos.ts.tavg-u-hxy-u.6hr.GLB", + "uid": "83bbfc57-7f07-11ef-9308-b1dd71e64bec" + }, + "atmos.ts.tavg-u-hxy-u.day.GLB": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "surface_temperature", + "units": "K", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Surface Temperature", + "comment": "Surface temperature (skin for open ocean)", + "dimensions": "longitude latitude time", + "out_name": "ts", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Eday", + "physical_parameter_name": "ts", + "variableRootDD": "ts", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "ts_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "Eday.ts", + "cmip7_compound_name": "atmos.ts.tavg-u-hxy-u.day.GLB", + "uid": "8b8fc3de-4a5b-11e6-9cd2-ac72891c3257" + }, + "atmos.ts.tavg-u-hxy-u.mon.30S-90S": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "surface_temperature", + "units": "K", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Surface Temperature", + "comment": "Surface temperature (skin for open ocean)", + "dimensions": "longitude latitude time", + "out_name": "ts", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Amon", + "physical_parameter_name": "ts", + "variableRootDD": "ts", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "ts_tavg-u-hxy-u", + "region": "30S-90S", + "cmip6_compound_name": "Amon.tsSouth30", + "cmip7_compound_name": "atmos.ts.tavg-u-hxy-u.mon.30S-90S", + "uid": "80ac31e5-a698-11ef-914a-613c0433d878" + }, + "atmos.ts.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "surface_temperature", + "units": "K", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Surface Temperature", + "comment": "Surface temperature (skin for open ocean)", + "dimensions": "longitude latitude time", + "out_name": "ts", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Amon", + "physical_parameter_name": "ts", + "variableRootDD": "ts", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "ts_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "Amon.ts", + "cmip7_compound_name": "atmos.ts.tavg-u-hxy-u.mon.GLB", + "uid": "babaef0e-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.ts.tpt-u-hs-u.subhr.GLB": { + "frequency": "subhr", + "modeling_realm": "atmos", + "standard_name": "surface_temperature", + "units": "K", + "cell_methods": "area: point time: point", + "cell_measures": "", + "long_name": "Surface Temperature", + "comment": "Surface temperature (skin for open ocean)", + "dimensions": "site time1", + "out_name": "ts", + "type": "real", + "positive": "", + "spatial_shape": "S-na", + "temporal_shape": "time-point", + "cmip6_table": "CFsubhr", + "physical_parameter_name": "ts", + "variableRootDD": "ts", + "branding_label": "tpt-u-hs-u", + "branded_variable_name": "ts_tpt-u-hs-u", + "region": "GLB", + "cmip6_compound_name": "CFsubhr.ts", + "cmip7_compound_name": "atmos.ts.tpt-u-hs-u.subhr.GLB", + "uid": "80072764-f906-11e6-a176-5404a60d96b5" + }, + "atmos.ts.tpt-u-hxy-u.3hr.GLB": { + "frequency": "3hr", + "modeling_realm": "atmos", + "standard_name": "surface_temperature", + "units": "K", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Surface Temperature", + "comment": "Surface temperature (skin for open ocean)", + "dimensions": "longitude latitude time1", + "out_name": "ts", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-point", + "cmip6_table": "CF3hr", + "physical_parameter_name": "ts", + "variableRootDD": "ts", + "branding_label": "tpt-u-hxy-u", + "branded_variable_name": "ts_tpt-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "CF3hr.ts", + "cmip7_compound_name": "atmos.ts.tpt-u-hxy-u.3hr.GLB", + "uid": "7b309c62-a220-11e6-a33f-ac72891c3257" + }, + "atmos.ts.tpt-u-hxy-u.6hr.GLB": { + "frequency": "6hr", + "modeling_realm": "atmos", + "standard_name": "surface_temperature", + "units": "K", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Surface Temperature", + "comment": "Temperature of the lower boundary of the atmosphere", + "dimensions": "longitude latitude time1", + "out_name": "ts", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-point", + "cmip6_table": "6hrPlevPt", + "physical_parameter_name": "ts", + "variableRootDD": "ts", + "branding_label": "tpt-u-hxy-u", + "branded_variable_name": "ts_tpt-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "6hrPlevPt.ts", + "cmip7_compound_name": "atmos.ts.tpt-u-hxy-u.6hr.GLB", + "uid": "8bb06940-4a5b-11e6-9cd2-ac72891c3257" + }, + "atmos.ua.tavg-al-hxy-u.day.GLB": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "eastward_wind", + "units": "m s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Eastward Wind", + "comment": "Zonal wind (positive in a eastward direction).", + "dimensions": "longitude latitude alevel time", + "out_name": "ua", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-intv", + "cmip6_table": "CFday", + "physical_parameter_name": "ua", + "variableRootDD": "ua", + "branding_label": "tavg-al-hxy-u", + "branded_variable_name": "ua_tavg-al-hxy-u", + "region": "GLB", + "cmip6_compound_name": "CFday.ua", + "cmip7_compound_name": "atmos.ua.tavg-al-hxy-u.day.GLB", + "uid": "babb4cf6-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.ua.tavg-al-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "eastward_wind", + "units": "m s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Eastward Wind", + "comment": "Zonal wind (positive in a eastward direction).", + "dimensions": "longitude latitude alevel time", + "out_name": "ua", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "ua", + "variableRootDD": "ua", + "branding_label": "tavg-al-hxy-u", + "branded_variable_name": "ua_tavg-al-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.ua", + "cmip7_compound_name": "atmos.ua.tavg-al-hxy-u.mon.GLB", + "uid": "19bfc73a-81b1-11e6-92de-ac72891c3257" + }, + "atmos.ua.tavg-h100m-hxy-u.3hr.GLB": { + "frequency": "3hr", + "modeling_realm": "atmos", + "standard_name": "eastward_wind", + "units": "m s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "3-hourly u-wind at 100m", + "comment": "Zonal wind (positive in a eastward direction) at 100m", + "dimensions": "longitude latitude time height100m", + "out_name": "ua100m", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "3hr", + "physical_parameter_name": "ua100m", + "variableRootDD": "ua", + "branding_label": "tavg-h100m-hxy-u", + "branded_variable_name": "ua_tavg-h100m-hxy-u", + "region": "GLB", + "cmip6_compound_name": "3hr.ua100m", + "cmip7_compound_name": "atmos.ua.tavg-h100m-hxy-u.3hr.GLB", + "uid": "83bbfc82-7f07-11ef-9308-b1dd71e64bec" + }, + "atmos.ua.tavg-p19-hxy-air.day.GLB": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "eastward_wind", + "units": "m s-1", + "cell_methods": "area: time: mean where air", + "cell_measures": "area: areacella", + "long_name": "Eastward Wind", + "comment": "Zonal wind (positive in a eastward direction).", + "dimensions": "longitude latitude plev19 time", + "out_name": "ua", + "type": "real", + "positive": "", + "spatial_shape": "XY-P19", + "temporal_shape": "time-intv", + "cmip6_table": "day", + "physical_parameter_name": "ua", + "variableRootDD": "ua", + "branding_label": "tavg-p19-hxy-air", + "branded_variable_name": "ua_tavg-p19-hxy-air", + "region": "GLB", + "cmip6_compound_name": "day.ua", + "cmip7_compound_name": "atmos.ua.tavg-p19-hxy-air.day.GLB", + "uid": "babb5084-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.ua.tavg-p19-hxy-air.mon.30S-90S": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "eastward_wind", + "units": "m s-1", + "cell_methods": "area: time: mean where air", + "cell_measures": "area: areacella", + "long_name": "Eastward Wind", + "comment": "Zonal wind (positive in a eastward direction).", + "dimensions": "longitude latitude plev19 time", + "out_name": "ua", + "type": "real", + "positive": "", + "spatial_shape": "XY-P19", + "temporal_shape": "time-intv", + "cmip6_table": "Amon", + "physical_parameter_name": "ua", + "variableRootDD": "ua", + "branding_label": "tavg-p19-hxy-air", + "branded_variable_name": "ua_tavg-p19-hxy-air", + "region": "30S-90S", + "cmip6_compound_name": "Amon.uaSouth30", + "cmip7_compound_name": "atmos.ua.tavg-p19-hxy-air.mon.30S-90S", + "uid": "80ac31e6-a698-11ef-914a-613c0433d878" + }, + "atmos.ua.tavg-p19-hxy-air.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "eastward_wind", + "units": "m s-1", + "cell_methods": "area: time: mean where air", + "cell_measures": "area: areacella", + "long_name": "Eastward Wind", + "comment": "Zonal wind (positive in a eastward direction).", + "dimensions": "longitude latitude plev19 time", + "out_name": "ua", + "type": "real", + "positive": "", + "spatial_shape": "XY-P19", + "temporal_shape": "time-intv", + "cmip6_table": "Amon", + "physical_parameter_name": "ua", + "variableRootDD": "ua", + "branding_label": "tavg-p19-hxy-air", + "branded_variable_name": "ua_tavg-p19-hxy-air", + "region": "GLB", + "cmip6_compound_name": "Amon.ua", + "cmip7_compound_name": "atmos.ua.tavg-p19-hxy-air.mon.GLB", + "uid": "babb4b34-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.ua.tavg-p39-hy-air.day.GLB": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "eastward_wind", + "units": "m s-1", + "cell_methods": "longitude: time: mean where air", + "cell_measures": "", + "long_name": "Eastward Wind", + "comment": "zonal mean; hence YZT", + "dimensions": "latitude plev39 time", + "out_name": "ua", + "type": "real", + "positive": "", + "spatial_shape": "Y-P39", + "temporal_shape": "time-intv", + "cmip6_table": "EdayZ", + "physical_parameter_name": "ua", + "variableRootDD": "ua", + "branding_label": "tavg-p39-hy-air", + "branded_variable_name": "ua_tavg-p39-hy-air", + "region": "GLB", + "cmip6_compound_name": "EdayZ.ua", + "cmip7_compound_name": "atmos.ua.tavg-p39-hy-air.day.GLB", + "uid": "8b8fab9c-4a5b-11e6-9cd2-ac72891c3257" + }, + "atmos.ua.tavg-p39-hy-air.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "eastward_wind", + "units": "m s-1", + "cell_methods": "longitude: time: mean where air", + "cell_measures": "", + "long_name": "Eastward Wind", + "comment": "Zonal wind (positive in a eastward direction).", + "dimensions": "latitude plev39 time", + "out_name": "ua", + "type": "real", + "positive": "", + "spatial_shape": "Y-P39", + "temporal_shape": "time-intv", + "cmip6_table": "AERmonZ", + "physical_parameter_name": "ua", + "variableRootDD": "ua", + "branding_label": "tavg-p39-hy-air", + "branded_variable_name": "ua_tavg-p39-hy-air", + "region": "GLB", + "cmip6_compound_name": "AERmonZ.ua", + "cmip7_compound_name": "atmos.ua.tavg-p39-hy-air.mon.GLB", + "uid": "f1f36fa2-aa70-11e6-9736-5404a60d96b5" + }, + "atmos.ua.tpt-200hPa-hxy-u.6hr.GLB": { + "frequency": "6hr", + "modeling_realm": "atmos", + "standard_name": "eastward_wind", + "units": "m s-1", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "ua200", + "comment": "Zonal wind (positive in a eastward direction) at 200 hPa, 6hourly instantaneous", + "dimensions": "longitude latitude time1 p200", + "out_name": "ua200", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-point", + "cmip6_table": "6hrPlevPt", + "physical_parameter_name": "ua200", + "variableRootDD": "ua", + "branding_label": "tpt-200hPa-hxy-u", + "branded_variable_name": "ua_tpt-200hPa-hxy-u", + "region": "GLB", + "cmip6_compound_name": "6hrPlevPt.ua200", + "cmip7_compound_name": "atmos.ua.tpt-200hPa-hxy-u.6hr.GLB", + "uid": "83bbfc4b-7f07-11ef-9308-b1dd71e64bec" + }, + "atmos.ua.tpt-al-hs-u.subhr.GLB": { + "frequency": "subhr", + "modeling_realm": "atmos", + "standard_name": "eastward_wind", + "units": "m s-1", + "cell_methods": "area: point time: point", + "cell_measures": "", + "long_name": "Eastward Wind", + "comment": "Zonal wind (positive in a eastward direction).", + "dimensions": "alevel site time1", + "out_name": "ua", + "type": "real", + "positive": "", + "spatial_shape": "S-A", + "temporal_shape": "time-point", + "cmip6_table": "CFsubhr", + "physical_parameter_name": "ua", + "variableRootDD": "ua", + "branding_label": "tpt-al-hs-u", + "branded_variable_name": "ua_tpt-al-hs-u", + "region": "GLB", + "cmip6_compound_name": "CFsubhr.ua", + "cmip7_compound_name": "atmos.ua.tpt-al-hs-u.subhr.GLB", + "uid": "a954a620-817c-11e6-a4e2-5404a60d96b5" + }, + "atmos.ua.tpt-al-hxy-u.6hr.GLB": { + "frequency": "6hr", + "modeling_realm": "atmos", + "standard_name": "eastward_wind", + "units": "m s-1", + "cell_methods": "area: mean time: point", + "cell_measures": "::OPT", + "long_name": "Eastward Wind", + "comment": "Zonal wind (positive in a eastward direction).", + "dimensions": "longitude latitude alevel time1", + "out_name": "ua", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-point", + "cmip6_table": "6hrLev", + "physical_parameter_name": "ua", + "variableRootDD": "ua", + "branding_label": "tpt-al-hxy-u", + "branded_variable_name": "ua_tpt-al-hxy-u", + "region": "GLB", + "cmip6_compound_name": "6hrLev.ua", + "cmip7_compound_name": "atmos.ua.tpt-al-hxy-u.6hr.GLB", + "uid": "babb47a6-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.ua.tpt-h100m-hxy-u.1hr.GLB": { + "frequency": "1hr", + "modeling_realm": "atmos", + "standard_name": "eastward_wind", + "units": "m s-1", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Eastward Wind at 100m", + "comment": "Zonal wind (positive in a eastward direction) at 100m above the surface", + "dimensions": "longitude latitude time1 height100m", + "out_name": "ua100m", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-point", + "cmip6_table": "E1hr", + "physical_parameter_name": "ua100m", + "variableRootDD": "ua", + "branding_label": "tpt-h100m-hxy-u", + "branded_variable_name": "ua_tpt-h100m-hxy-u", + "region": "GLB", + "cmip6_compound_name": "E1hr.ua100m", + "cmip7_compound_name": "atmos.ua.tpt-h100m-hxy-u.1hr.GLB", + "uid": "83bbfc7f-7f07-11ef-9308-b1dd71e64bec" + }, + "atmos.ua.tpt-p3-hxy-air.6hr.GLB": { + "frequency": "6hr", + "modeling_realm": "atmos", + "standard_name": "eastward_wind", + "units": "m s-1", + "cell_methods": "area: mean where air time: point", + "cell_measures": "area: areacella", + "long_name": "Eastward Wind", + "comment": "Zonal wind (positive in a eastward direction).", + "dimensions": "longitude latitude plev3 time1", + "out_name": "ua", + "type": "real", + "positive": "", + "spatial_shape": "XY-P3", + "temporal_shape": "time-point", + "cmip6_table": "6hrPlevPt", + "physical_parameter_name": "ua", + "variableRootDD": "ua", + "branding_label": "tpt-p3-hxy-air", + "branded_variable_name": "ua_tpt-p3-hxy-air", + "region": "GLB", + "cmip6_compound_name": "6hrPlevPt.ua", + "cmip7_compound_name": "atmos.ua.tpt-p3-hxy-air.6hr.GLB", + "uid": "8bae55ba-4a5b-11e6-9cd2-ac72891c3257" + }, + "atmos.ua.tpt-p5u-hxy-air.6hr.GLB": { + "frequency": "6hr", + "modeling_realm": "atmos", + "standard_name": "eastward_wind", + "units": "m s-1", + "cell_methods": "area: mean where air time: point", + "cell_measures": "area: areacella", + "long_name": "6 hourly instantaneous eastward wind in the UTLS region", + "comment": "6 hourly instantaneous eastward wind at 5 pressure levels in the UTLS region (150, 175, 200, 225, and 250 hPa)", + "dimensions": "longitude latitude plev5u time1", + "out_name": "uaUTLS", + "type": "real", + "positive": "", + "spatial_shape": "XY-P5u", + "temporal_shape": "time-point", + "cmip6_table": "6hrPlevPt", + "physical_parameter_name": "uaUTLS", + "variableRootDD": "ua", + "branding_label": "tpt-p5u-hxy-air", + "branded_variable_name": "ua_tpt-p5u-hxy-air", + "region": "GLB", + "cmip6_compound_name": "6hrPlevPt.uaUTLS", + "cmip7_compound_name": "atmos.ua.tpt-p5u-hxy-air.6hr.GLB", + "uid": "83bbfc4a-7f07-11ef-9308-b1dd71e64bec" + }, + "atmos.ua.tpt-p6-hxy-air.3hr.GLB": { + "frequency": "3hr", + "modeling_realm": "atmos", + "standard_name": "eastward_wind", + "units": "m s-1", + "cell_methods": "area: mean where air time: point", + "cell_measures": "area: areacella", + "long_name": "Eastward wind", + "comment": "Zonal wind (positive in a eastward direction) on 6 pressure levels in the lower troposphere", + "dimensions": "longitude latitude plev6 time1", + "out_name": "ua6", + "type": "real", + "positive": "", + "spatial_shape": "XY-P6", + "temporal_shape": "time-point", + "cmip6_table": "E3hrPt", + "physical_parameter_name": "ua6", + "variableRootDD": "ua", + "branding_label": "tpt-p6-hxy-air", + "branded_variable_name": "ua_tpt-p6-hxy-air", + "region": "GLB", + "cmip6_compound_name": "E3hrPt.ua6", + "cmip7_compound_name": "atmos.ua.tpt-p6-hxy-air.3hr.GLB", + "uid": "80ab7431-a698-11ef-914a-613c0433d878" + }, + "atmos.ua.tpt-p7h-hxy-air.6hr.GLB": { + "frequency": "6hr", + "modeling_realm": "atmos", + "standard_name": "eastward_wind", + "units": "m s-1", + "cell_methods": "area: mean where air time: point", + "cell_measures": "area: areacella", + "long_name": "Eastward Wind", + "comment": "Zonal wind (positive in a eastward direction).", + "dimensions": "longitude latitude plev7h time1", + "out_name": "ua", + "type": "real", + "positive": "", + "spatial_shape": "XY-P7T", + "temporal_shape": "time-point", + "cmip6_table": "6hrPlevPt", + "physical_parameter_name": "ua", + "variableRootDD": "ua", + "branding_label": "tpt-p7h-hxy-air", + "branded_variable_name": "ua_tpt-p7h-hxy-air", + "region": "GLB", + "cmip6_compound_name": "6hrPlevPt.ua7h", + "cmip7_compound_name": "atmos.ua.tpt-p7h-hxy-air.6hr.GLB", + "uid": "713f2efa-faa7-11e6-bfb7-ac72891c3257" + }, + "atmos.uas.tavg-h10m-hxy-u.6hr.GLB": { + "frequency": "6hr", + "modeling_realm": "atmos", + "standard_name": "eastward_wind", + "units": "m s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Eastward Near-Surface Wind", + "comment": "Eastward component of the near-surface (usually, 10 meters) wind", + "dimensions": "longitude latitude time height10m", + "out_name": "uas", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "6hrPlev", + "physical_parameter_name": "uas", + "variableRootDD": "uas", + "branding_label": "tavg-h10m-hxy-u", + "branded_variable_name": "uas_tavg-h10m-hxy-u", + "region": "GLB", + "cmip6_compound_name": "6hrPlev.uas", + "cmip7_compound_name": "atmos.uas.tavg-h10m-hxy-u.6hr.GLB", + "uid": "91043e32-267c-11e7-8933-ac72891c3257" + }, + "atmos.uas.tavg-h10m-hxy-u.day.GLB": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "eastward_wind", + "units": "m s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Eastward Near-Surface Wind", + "comment": "Eastward component of the near-surface (usually, 10 meters) wind", + "dimensions": "longitude latitude time height10m", + "out_name": "uas", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "day", + "physical_parameter_name": "uas", + "variableRootDD": "uas", + "branding_label": "tavg-h10m-hxy-u", + "branded_variable_name": "uas_tavg-h10m-hxy-u", + "region": "GLB", + "cmip6_compound_name": "day.uas", + "cmip7_compound_name": "atmos.uas.tavg-h10m-hxy-u.day.GLB", + "uid": "babb6cea-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.uas.tavg-h10m-hxy-u.mon.30S-90S": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "eastward_wind", + "units": "m s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Eastward Near-Surface Wind", + "comment": "Eastward component of the near-surface (usually, 10 meters) wind", + "dimensions": "longitude latitude time height10m", + "out_name": "uas", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Amon", + "physical_parameter_name": "uas", + "variableRootDD": "uas", + "branding_label": "tavg-h10m-hxy-u", + "branded_variable_name": "uas_tavg-h10m-hxy-u", + "region": "30S-90S", + "cmip6_compound_name": "Amon.uasSouth30", + "cmip7_compound_name": "atmos.uas.tavg-h10m-hxy-u.mon.30S-90S", + "uid": "80ac31e7-a698-11ef-914a-613c0433d878" + }, + "atmos.uas.tavg-h10m-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "eastward_wind", + "units": "m s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Eastward Near-Surface Wind", + "comment": "Eastward component of the near-surface (usually, 10 meters) wind", + "dimensions": "longitude latitude time height10m", + "out_name": "uas", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Amon", + "physical_parameter_name": "uas", + "variableRootDD": "uas", + "branding_label": "tavg-h10m-hxy-u", + "branded_variable_name": "uas_tavg-h10m-hxy-u", + "region": "GLB", + "cmip6_compound_name": "Amon.uas", + "cmip7_compound_name": "atmos.uas.tavg-h10m-hxy-u.mon.GLB", + "uid": "babb67c2-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.uas.tpt-h10m-hs-u.subhr.GLB": { + "frequency": "subhr", + "modeling_realm": "atmos", + "standard_name": "eastward_wind", + "units": "m s-1", + "cell_methods": "area: point time: point", + "cell_measures": "", + "long_name": "Eastward Near-Surface Wind", + "comment": "Eastward component of the near-surface (usually, 10 meters) wind", + "dimensions": "site time1 height10m", + "out_name": "uas", + "type": "real", + "positive": "", + "spatial_shape": "S-na", + "temporal_shape": "time-point", + "cmip6_table": "CFsubhr", + "physical_parameter_name": "uas", + "variableRootDD": "uas", + "branding_label": "tpt-h10m-hs-u", + "branded_variable_name": "uas_tpt-h10m-hs-u", + "region": "GLB", + "cmip6_compound_name": "CFsubhr.uas", + "cmip7_compound_name": "atmos.uas.tpt-h10m-hs-u.subhr.GLB", + "uid": "80077a3e-f906-11e6-a176-5404a60d96b5" + }, + "atmos.uas.tpt-h10m-hxy-u.1hr.GLB": { + "frequency": "1hr", + "modeling_realm": "atmos", + "standard_name": "eastward_wind", + "units": "m s-1", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Surface wind speed Eastward Components", + "comment": "Zonal wind (positive in a eastward direction) at 10 meters above the surface.", + "dimensions": "longitude latitude time1 height10m", + "out_name": "uas", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-point", + "cmip6_table": "E1hr", + "physical_parameter_name": "uas", + "variableRootDD": "uas", + "branding_label": "tpt-h10m-hxy-u", + "branded_variable_name": "uas_tpt-h10m-hxy-u", + "region": "GLB", + "cmip6_compound_name": "E1hr.uas", + "cmip7_compound_name": "atmos.uas.tpt-h10m-hxy-u.1hr.GLB", + "uid": "83bbfbbd-7f07-11ef-9308-b1dd71e64bec" + }, + "atmos.uas.tpt-h10m-hxy-u.3hr.GLB": { + "frequency": "3hr", + "modeling_realm": "atmos", + "standard_name": "eastward_wind", + "units": "m s-1", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Eastward Near-Surface Wind", + "comment": "This is sampled synoptically.", + "dimensions": "longitude latitude time1 height10m", + "out_name": "uas", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-point", + "cmip6_table": "3hrPt", + "physical_parameter_name": "uas", + "variableRootDD": "uas", + "branding_label": "tpt-h10m-hxy-u", + "branded_variable_name": "uas_tpt-h10m-hxy-u", + "region": "GLB", + "cmip6_compound_name": "3hrPt.uas", + "cmip7_compound_name": "atmos.uas.tpt-h10m-hxy-u.3hr.GLB", + "uid": "babb5db8-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.uas.tpt-h10m-hxy-u.6hr.GLB": { + "frequency": "6hr", + "modeling_realm": "atmos", + "standard_name": "eastward_wind", + "units": "m s-1", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Eastward Near-Surface Wind", + "comment": "Near surface eastward wind", + "dimensions": "longitude latitude time1 height10m", + "out_name": "uas", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-point", + "cmip6_table": "6hrPlevPt", + "physical_parameter_name": "uas", + "variableRootDD": "uas", + "branding_label": "tpt-h10m-hxy-u", + "branded_variable_name": "uas_tpt-h10m-hxy-u", + "region": "GLB", + "cmip6_compound_name": "6hrPlevPt.uas", + "cmip7_compound_name": "atmos.uas.tpt-h10m-hxy-u.6hr.GLB", + "uid": "9137a7fe-267c-11e7-8933-ac72891c3257" + }, + "atmos.utendepfd.tavg-p39-hy-air.day.GLB": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "tendency_of_eastward_wind_due_to_eliassen_palm_flux_divergence", + "units": "m s-2", + "cell_methods": "longitude: time: mean where air", + "cell_measures": "", + "long_name": "Tendency of Eastward Wind Due to Eliassen-Palm Flux Divergence", + "comment": "Called \"acceldivf\" in CCMI table; we suggest new name. zonal mean; hence YZT", + "dimensions": "latitude plev39 time", + "out_name": "utendepfd", + "type": "real", + "positive": "", + "spatial_shape": "Y-P39", + "temporal_shape": "time-intv", + "cmip6_table": "EdayZ", + "physical_parameter_name": "utendepfd", + "variableRootDD": "utendepfd", + "branding_label": "tavg-p39-hy-air", + "branded_variable_name": "utendepfd_tavg-p39-hy-air", + "region": "GLB", + "cmip6_compound_name": "EdayZ.utendepfd", + "cmip7_compound_name": "atmos.utendepfd.tavg-p39-hy-air.day.GLB", + "uid": "8b97e4c4-4a5b-11e6-9cd2-ac72891c3257" + }, + "atmos.utendepfd.tavg-p39-hy-air.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "tendency_of_eastward_wind_due_to_eliassen_palm_flux_divergence", + "units": "m s-2", + "cell_methods": "longitude: time: mean where air", + "cell_measures": "", + "long_name": "Tendency of Eastward Wind Due to Eliassen-Palm Flux Divergence", + "comment": "Tendency of the zonal mean zonal wind due to the divergence of the Eliassen-Palm flux.", + "dimensions": "latitude plev39 time", + "out_name": "utendepfd", + "type": "real", + "positive": "", + "spatial_shape": "Y-P39", + "temporal_shape": "time-intv", + "cmip6_table": "EmonZ", + "physical_parameter_name": "utendepfd", + "variableRootDD": "utendepfd", + "branding_label": "tavg-p39-hy-air", + "branded_variable_name": "utendepfd_tavg-p39-hy-air", + "region": "GLB", + "cmip6_compound_name": "EmonZ.utendepfd", + "cmip7_compound_name": "atmos.utendepfd.tavg-p39-hy-air.mon.GLB", + "uid": "feeaf438-96ec-11e6-b81e-c9e268aff03a" + }, + "atmos.utendnogw.tavg-p19-hxy-air.day.GLB": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "tendency_of_eastward_wind_due_to_nonorographic_gravity_wave_drag", + "units": "m s-2", + "cell_methods": "area: time: mean where air", + "cell_measures": "area: areacella", + "long_name": "Tendency of eastward wind due to non-orographic gravity waves", + "comment": "Tendency of eastward wind induced by the parameterized non-orographic gravity wave drag", + "dimensions": "longitude latitude plev19 time", + "out_name": "utendnogw", + "type": "real", + "positive": "", + "spatial_shape": "XY-P19", + "temporal_shape": "time-intv", + "cmip6_table": "Eday", + "physical_parameter_name": "utendnogw", + "variableRootDD": "utendnogw", + "branding_label": "tavg-p19-hxy-air", + "branded_variable_name": "utendnogw_tavg-p19-hxy-air", + "region": "GLB", + "cmip6_compound_name": "Eday.utendnogw", + "cmip7_compound_name": "atmos.utendnogw.tavg-p19-hxy-air.day.GLB", + "uid": "83bbfc92-7f07-11ef-9308-b1dd71e64bec" + }, + "atmos.utendnogw.tavg-p19-hxy-air.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "tendency_of_eastward_wind_due_to_nonorographic_gravity_wave_drag", + "units": "m s-2", + "cell_methods": "area: time: mean where air", + "cell_measures": "area: areacella", + "long_name": "Eastward Acceleration Due to Non-Orographic Gravity Wave Drag", + "comment": "Tendency of eastward wind induced by the parameterized non-orographic gravity wave drag", + "dimensions": "longitude latitude plev19 time", + "out_name": "utendnogw", + "type": "real", + "positive": "", + "spatial_shape": "XY-P19", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "utendnogw", + "variableRootDD": "utendnogw", + "branding_label": "tavg-p19-hxy-air", + "branded_variable_name": "utendnogw_tavg-p19-hxy-air", + "region": "GLB", + "cmip6_compound_name": "Emon.utendnogw", + "cmip7_compound_name": "atmos.utendnogw.tavg-p19-hxy-air.mon.GLB", + "uid": "6f17b552-9acb-11e6-b7ee-ac72891c3257" + }, + "atmos.utendnogw.tavg-p39-hy-air.day.GLB": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "tendency_of_eastward_wind_due_to_nonorographic_gravity_wave_drag", + "units": "m s-2", + "cell_methods": "longitude: time: mean where air", + "cell_measures": "", + "long_name": "Eastward Acceleration Due to Non-Orographic Gravity Wave Drag", + "comment": "Zonal mean tendency of eastward wind induced by the parameterized non-orographic gravity wave drag", + "dimensions": "latitude plev39 time", + "out_name": "utendnogw", + "type": "real", + "positive": "", + "spatial_shape": "Y-P39", + "temporal_shape": "time-intv", + "cmip6_table": "EdayZ", + "physical_parameter_name": "utendnogw", + "variableRootDD": "utendnogw", + "branding_label": "tavg-p39-hy-air", + "branded_variable_name": "utendnogw_tavg-p39-hy-air", + "region": "GLB", + "cmip6_compound_name": "EdayZ.utendnogw", + "cmip7_compound_name": "atmos.utendnogw.tavg-p39-hy-air.day.GLB", + "uid": "8b97efc8-4a5b-11e6-9cd2-ac72891c3257" + }, + "atmos.utendnogw.tavg-p39-hy-air.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "tendency_of_eastward_wind_due_to_nonorographic_gravity_wave_drag", + "units": "m s-2", + "cell_methods": "longitude: time: mean where air", + "cell_measures": "", + "long_name": "Eastward Acceleration Due to Non-Orographic Gravity Wave Drag", + "comment": "Zonal mean tendency of eastward wind induced by the parameterized non-orographic gravity wave drag", + "dimensions": "latitude plev39 time", + "out_name": "utendnogw", + "type": "real", + "positive": "", + "spatial_shape": "Y-P39", + "temporal_shape": "time-intv", + "cmip6_table": "EmonZ", + "physical_parameter_name": "utendnogw", + "variableRootDD": "utendnogw", + "branding_label": "tavg-p39-hy-air", + "branded_variable_name": "utendnogw_tavg-p39-hy-air", + "region": "GLB", + "cmip6_compound_name": "EmonZ.utendnogw", + "cmip7_compound_name": "atmos.utendnogw.tavg-p39-hy-air.mon.GLB", + "uid": "8183e5fa-f906-11e6-a176-5404a60d96b5" + }, + "atmos.utendogw.tavg-p19-hxy-air.day.GLB": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "tendency_of_eastward_wind_due_to_orographic_gravity_wave_drag", + "units": "m s-2", + "cell_methods": "area: time: mean where air", + "cell_measures": "area: areacella", + "long_name": "Tendency of eastward wind due to orographic gravity waves", + "comment": "Tendency of eastward wind induced by the parameterized orographic gravity wave drag", + "dimensions": "longitude latitude plev19 time", + "out_name": "utendogw", + "type": "real", + "positive": "", + "spatial_shape": "XY-P19", + "temporal_shape": "time-intv", + "cmip6_table": "Eday", + "physical_parameter_name": "utendogw", + "variableRootDD": "utendogw", + "branding_label": "tavg-p19-hxy-air", + "branded_variable_name": "utendogw_tavg-p19-hxy-air", + "region": "GLB", + "cmip6_compound_name": "Eday.utendogw", + "cmip7_compound_name": "atmos.utendogw.tavg-p19-hxy-air.day.GLB", + "uid": "83bbfc91-7f07-11ef-9308-b1dd71e64bec" + }, + "atmos.utendogw.tavg-p19-hxy-air.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "tendency_of_eastward_wind_due_to_orographic_gravity_wave_drag", + "units": "m s-2", + "cell_methods": "area: time: mean where air", + "cell_measures": "area: areacella", + "long_name": "Eastward Acceleration Due to Orographic Gravity Wave Drag", + "comment": "Tendency of eastward wind induced by the parameterized orographic gravity wave drag", + "dimensions": "longitude latitude plev19 time", + "out_name": "utendogw", + "type": "real", + "positive": "", + "spatial_shape": "XY-P19", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "utendogw", + "variableRootDD": "utendogw", + "branding_label": "tavg-p19-hxy-air", + "branded_variable_name": "utendogw_tavg-p19-hxy-air", + "region": "GLB", + "cmip6_compound_name": "Emon.utendogw", + "cmip7_compound_name": "atmos.utendogw.tavg-p19-hxy-air.mon.GLB", + "uid": "6f17af4e-9acb-11e6-b7ee-ac72891c3257" + }, + "atmos.utendogw.tavg-p39-hy-air.day.GLB": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "tendency_of_eastward_wind_due_to_orographic_gravity_wave_drag", + "units": "m s-2", + "cell_methods": "longitude: time: mean where air", + "cell_measures": "", + "long_name": "Eastward Acceleration Due to Orographic Gravity Wave Drag", + "comment": "Zonal mean tendency of eastward wind induced by the parameterized orographic gravity wave drag", + "dimensions": "latitude plev39 time", + "out_name": "utendogw", + "type": "real", + "positive": "", + "spatial_shape": "Y-P39", + "temporal_shape": "time-intv", + "cmip6_table": "EdayZ", + "physical_parameter_name": "utendogw", + "variableRootDD": "utendogw", + "branding_label": "tavg-p39-hy-air", + "branded_variable_name": "utendogw_tavg-p39-hy-air", + "region": "GLB", + "cmip6_compound_name": "EdayZ.utendogw", + "cmip7_compound_name": "atmos.utendogw.tavg-p39-hy-air.day.GLB", + "uid": "8b97ea3c-4a5b-11e6-9cd2-ac72891c3257" + }, + "atmos.utendogw.tavg-p39-hy-air.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "tendency_of_eastward_wind_due_to_orographic_gravity_wave_drag", + "units": "m s-2", + "cell_methods": "longitude: time: mean where air", + "cell_measures": "", + "long_name": "Eastward Acceleration Due to Orographic Gravity Wave Drag", + "comment": "Zonal mean tendency of eastward wind induced by the parameterized orographic gravity wave drag", + "dimensions": "latitude plev39 time", + "out_name": "utendogw", + "type": "real", + "positive": "", + "spatial_shape": "Y-P39", + "temporal_shape": "time-intv", + "cmip6_table": "EmonZ", + "physical_parameter_name": "utendogw", + "variableRootDD": "utendogw", + "branding_label": "tavg-p39-hy-air", + "branded_variable_name": "utendogw_tavg-p39-hy-air", + "region": "GLB", + "cmip6_compound_name": "EmonZ.utendogw", + "cmip7_compound_name": "atmos.utendogw.tavg-p39-hy-air.mon.GLB", + "uid": "1cfd2c07-8fa0-11ef-b9dd-9b232e140570" + }, + "atmos.utendvtem.tavg-p39-hy-air.day.GLB": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "tendency_of_eastward_wind_due_to_advection_by_northward_transformed_eulerian_mean_air_velocity", + "units": "m s-2", + "cell_methods": "longitude: time: mean where air", + "cell_measures": "", + "long_name": "Tendency of Eastward Wind Due to TEM Northward Advection and Coriolis Term", + "comment": "Zonal mean tendency of eastward wind due to TEM northward advection and Coriolis term", + "dimensions": "latitude plev39 time", + "out_name": "utendvtem", + "type": "real", + "positive": "", + "spatial_shape": "Y-P39", + "temporal_shape": "time-intv", + "cmip6_table": "EdayZ", + "physical_parameter_name": "utendvtem", + "variableRootDD": "utendvtem", + "branding_label": "tavg-p39-hy-air", + "branded_variable_name": "utendvtem_tavg-p39-hy-air", + "region": "GLB", + "cmip6_compound_name": "EdayZ.utendvtem", + "cmip7_compound_name": "atmos.utendvtem.tavg-p39-hy-air.day.GLB", + "uid": "8b97f9a0-4a5b-11e6-9cd2-ac72891c3257" + }, + "atmos.utendwtem.tavg-p39-hy-air.day.GLB": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "tendency_of_eastward_wind_due_to_advection_by_upward_transformed_eulerian_mean_air_velocity", + "units": "m s-2", + "cell_methods": "longitude: time: mean where air", + "cell_measures": "", + "long_name": "Tendency of Eastward Wind Due to TEM Upward Advection", + "comment": "Zonal mean tendency of eastward wind due to TEM upward advection", + "dimensions": "latitude plev39 time", + "out_name": "utendwtem", + "type": "real", + "positive": "", + "spatial_shape": "Y-P39", + "temporal_shape": "time-intv", + "cmip6_table": "EdayZ", + "physical_parameter_name": "utendwtem", + "variableRootDD": "utendwtem", + "branding_label": "tavg-p39-hy-air", + "branded_variable_name": "utendwtem_tavg-p39-hy-air", + "region": "GLB", + "cmip6_compound_name": "EdayZ.utendwtem", + "cmip7_compound_name": "atmos.utendwtem.tavg-p39-hy-air.day.GLB", + "uid": "8b97fe6e-4a5b-11e6-9cd2-ac72891c3257" + }, + "atmos.va.tavg-al-hxy-u.day.GLB": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "northward_wind", + "units": "m s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Northward Wind", + "comment": "Meridional wind (positive in a northward direction).", + "dimensions": "longitude latitude alevel time", + "out_name": "va", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-intv", + "cmip6_table": "CFday", + "physical_parameter_name": "va", + "variableRootDD": "va", + "branding_label": "tavg-al-hxy-u", + "branded_variable_name": "va_tavg-al-hxy-u", + "region": "GLB", + "cmip6_compound_name": "CFday.va", + "cmip7_compound_name": "atmos.va.tavg-al-hxy-u.day.GLB", + "uid": "babbb42a-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.va.tavg-al-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "northward_wind", + "units": "m s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Northward Wind", + "comment": "Meridional wind (positive in a northward direction).", + "dimensions": "longitude latitude alevel time", + "out_name": "va", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "va", + "variableRootDD": "va", + "branding_label": "tavg-al-hxy-u", + "branded_variable_name": "va_tavg-al-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.va", + "cmip7_compound_name": "atmos.va.tavg-al-hxy-u.mon.GLB", + "uid": "19bfc9f6-81b1-11e6-92de-ac72891c3257" + }, + "atmos.va.tavg-h100m-hxy-u.3hr.GLB": { + "frequency": "3hr", + "modeling_realm": "atmos", + "standard_name": "northward_wind", + "units": "m s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "3-hourly v-wind at 100m", + "comment": "Meridional wind (positive in a northward direction) at 100m", + "dimensions": "longitude latitude time height100m", + "out_name": "va100m", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "3hr", + "physical_parameter_name": "va100m", + "variableRootDD": "va", + "branding_label": "tavg-h100m-hxy-u", + "branded_variable_name": "va_tavg-h100m-hxy-u", + "region": "GLB", + "cmip6_compound_name": "3hr.va100m", + "cmip7_compound_name": "atmos.va.tavg-h100m-hxy-u.3hr.GLB", + "uid": "83bbfc81-7f07-11ef-9308-b1dd71e64bec" + }, + "atmos.va.tavg-p19-hxy-air.day.GLB": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "northward_wind", + "units": "m s-1", + "cell_methods": "area: time: mean where air", + "cell_measures": "area: areacella", + "long_name": "Northward Wind", + "comment": "Meridional wind (positive in a northward direction).", + "dimensions": "longitude latitude plev19 time", + "out_name": "va", + "type": "real", + "positive": "", + "spatial_shape": "XY-P19", + "temporal_shape": "time-intv", + "cmip6_table": "day", + "physical_parameter_name": "va", + "variableRootDD": "va", + "branding_label": "tavg-p19-hxy-air", + "branded_variable_name": "va_tavg-p19-hxy-air", + "region": "GLB", + "cmip6_compound_name": "day.va", + "cmip7_compound_name": "atmos.va.tavg-p19-hxy-air.day.GLB", + "uid": "babbbbe6-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.va.tavg-p19-hxy-air.mon.30S-90S": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "northward_wind", + "units": "m s-1", + "cell_methods": "area: time: mean where air", + "cell_measures": "area: areacella", + "long_name": "Northward Wind", + "comment": "Meridional wind (positive in a northward direction).", + "dimensions": "longitude latitude plev19 time", + "out_name": "va", + "type": "real", + "positive": "", + "spatial_shape": "XY-P19", + "temporal_shape": "time-intv", + "cmip6_table": "Amon", + "physical_parameter_name": "va", + "variableRootDD": "va", + "branding_label": "tavg-p19-hxy-air", + "branded_variable_name": "va_tavg-p19-hxy-air", + "region": "30S-90S", + "cmip6_compound_name": "Amon.vaSouth30", + "cmip7_compound_name": "atmos.va.tavg-p19-hxy-air.mon.30S-90S", + "uid": "80ac31ea-a698-11ef-914a-613c0433d878" + }, + "atmos.va.tavg-p19-hxy-air.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "northward_wind", + "units": "m s-1", + "cell_methods": "area: time: mean where air", + "cell_measures": "area: areacella", + "long_name": "Northward Wind", + "comment": "Meridional wind (positive in a northward direction).", + "dimensions": "longitude latitude plev19 time", + "out_name": "va", + "type": "real", + "positive": "", + "spatial_shape": "XY-P19", + "temporal_shape": "time-intv", + "cmip6_table": "Amon", + "physical_parameter_name": "va", + "variableRootDD": "va", + "branding_label": "tavg-p19-hxy-air", + "branded_variable_name": "va_tavg-p19-hxy-air", + "region": "GLB", + "cmip6_compound_name": "Amon.va", + "cmip7_compound_name": "atmos.va.tavg-p19-hxy-air.mon.GLB", + "uid": "babbb25e-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.va.tavg-p39-hy-air.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "northward_wind", + "units": "m s-1", + "cell_methods": "longitude: time: mean where air", + "cell_measures": "", + "long_name": "Northward Wind", + "comment": "Meridional wind (positive in a northward direction).", + "dimensions": "latitude plev39 time", + "out_name": "va", + "type": "real", + "positive": "", + "spatial_shape": "Y-P39", + "temporal_shape": "time-intv", + "cmip6_table": "AERmonZ", + "physical_parameter_name": "va", + "variableRootDD": "va", + "branding_label": "tavg-p39-hy-air", + "branded_variable_name": "va_tavg-p39-hy-air", + "region": "GLB", + "cmip6_compound_name": "AERmonZ.va", + "cmip7_compound_name": "atmos.va.tavg-p39-hy-air.mon.GLB", + "uid": "fda662f6-96ec-11e6-b81e-c9e268aff03a" + }, + "atmos.va.tpt-200hPa-hxy-u.6hr.GLB": { + "frequency": "6hr", + "modeling_realm": "atmos", + "standard_name": "northward_wind", + "units": "m s-1", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "va200", + "comment": "Meridional wind (positive in a northward direction) at 200 hPa, 6 hourly instantaneous", + "dimensions": "longitude latitude time1 p200", + "out_name": "va200", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-point", + "cmip6_table": "6hrPlevPt", + "physical_parameter_name": "va200", + "variableRootDD": "va", + "branding_label": "tpt-200hPa-hxy-u", + "branded_variable_name": "va_tpt-200hPa-hxy-u", + "region": "GLB", + "cmip6_compound_name": "6hrPlevPt.va200", + "cmip7_compound_name": "atmos.va.tpt-200hPa-hxy-u.6hr.GLB", + "uid": "83bbfc48-7f07-11ef-9308-b1dd71e64bec" + }, + "atmos.va.tpt-al-hs-u.subhr.GLB": { + "frequency": "subhr", + "modeling_realm": "atmos", + "standard_name": "northward_wind", + "units": "m s-1", + "cell_methods": "area: point time: point", + "cell_measures": "", + "long_name": "Northward Wind", + "comment": "Meridional wind (positive in a northward direction).", + "dimensions": "alevel site time1", + "out_name": "va", + "type": "real", + "positive": "", + "spatial_shape": "S-A", + "temporal_shape": "time-point", + "cmip6_table": "CFsubhr", + "physical_parameter_name": "va", + "variableRootDD": "va", + "branding_label": "tpt-al-hs-u", + "branded_variable_name": "va_tpt-al-hs-u", + "region": "GLB", + "cmip6_compound_name": "CFsubhr.va", + "cmip7_compound_name": "atmos.va.tpt-al-hs-u.subhr.GLB", + "uid": "a954b1b0-817c-11e6-a4e2-5404a60d96b5" + }, + "atmos.va.tpt-al-hxy-u.6hr.GLB": { + "frequency": "6hr", + "modeling_realm": "atmos", + "standard_name": "northward_wind", + "units": "m s-1", + "cell_methods": "area: mean time: point", + "cell_measures": "::OPT", + "long_name": "Northward Wind", + "comment": "Meridional wind (positive in a northward direction).", + "dimensions": "longitude latitude alevel time1", + "out_name": "va", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-point", + "cmip6_table": "6hrLev", + "physical_parameter_name": "va", + "variableRootDD": "va", + "branding_label": "tpt-al-hxy-u", + "branded_variable_name": "va_tpt-al-hxy-u", + "region": "GLB", + "cmip6_compound_name": "6hrLev.va", + "cmip7_compound_name": "atmos.va.tpt-al-hxy-u.6hr.GLB", + "uid": "babbaebc-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.va.tpt-h100m-hxy-u.1hr.GLB": { + "frequency": "1hr", + "modeling_realm": "atmos", + "standard_name": "northward_wind", + "units": "m s-1", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Northward Wind at 100m", + "comment": "Meridional wind (positive in a northward direction) at 100m above the surface.", + "dimensions": "longitude latitude time1 height100m", + "out_name": "va100m", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-point", + "cmip6_table": "E1hr", + "physical_parameter_name": "va100m", + "variableRootDD": "va", + "branding_label": "tpt-h100m-hxy-u", + "branded_variable_name": "va_tpt-h100m-hxy-u", + "region": "GLB", + "cmip6_compound_name": "E1hr.va100m", + "cmip7_compound_name": "atmos.va.tpt-h100m-hxy-u.1hr.GLB", + "uid": "83bbfc7e-7f07-11ef-9308-b1dd71e64bec" + }, + "atmos.va.tpt-p3-hxy-air.6hr.GLB": { + "frequency": "6hr", + "modeling_realm": "atmos", + "standard_name": "northward_wind", + "units": "m s-1", + "cell_methods": "area: mean where air time: point", + "cell_measures": "area: areacella", + "long_name": "Northward Wind", + "comment": "Meridional wind (positive in a northward direction).", + "dimensions": "longitude latitude plev3 time1", + "out_name": "va", + "type": "real", + "positive": "", + "spatial_shape": "XY-P3", + "temporal_shape": "time-point", + "cmip6_table": "6hrPlevPt", + "physical_parameter_name": "va", + "variableRootDD": "va", + "branding_label": "tpt-p3-hxy-air", + "branded_variable_name": "va_tpt-p3-hxy-air", + "region": "GLB", + "cmip6_compound_name": "6hrPlevPt.va", + "cmip7_compound_name": "atmos.va.tpt-p3-hxy-air.6hr.GLB", + "uid": "8bae5aba-4a5b-11e6-9cd2-ac72891c3257" + }, + "atmos.va.tpt-p5u-hxy-air.6hr.GLB": { + "frequency": "6hr", + "modeling_realm": "atmos", + "standard_name": "northward_wind", + "units": "m s-1", + "cell_methods": "area: mean where air time: point", + "cell_measures": "area: areacella", + "long_name": "6 hourly instantaneous northward wind in the UTLS region", + "comment": "6 hourly instantaneous northward wind at 5 pressure levels in the UTLS region (150, 175, 200, 225, and 250 hPa)", + "dimensions": "longitude latitude plev5u time1", + "out_name": "vaUTLS", + "type": "real", + "positive": "", + "spatial_shape": "XY-P5u", + "temporal_shape": "time-point", + "cmip6_table": "6hrPlevPt", + "physical_parameter_name": "vaUTLS", + "variableRootDD": "va", + "branding_label": "tpt-p5u-hxy-air", + "branded_variable_name": "va_tpt-p5u-hxy-air", + "region": "GLB", + "cmip6_compound_name": "6hrPlevPt.vaUTLS", + "cmip7_compound_name": "atmos.va.tpt-p5u-hxy-air.6hr.GLB", + "uid": "83bbfc47-7f07-11ef-9308-b1dd71e64bec" + }, + "atmos.va.tpt-p6-hxy-air.3hr.GLB": { + "frequency": "3hr", + "modeling_realm": "atmos", + "standard_name": "northward_wind", + "units": "m s-1", + "cell_methods": "area: mean where air time: point", + "cell_measures": "area: areacella", + "long_name": "Northward Wind", + "comment": "Meridional wind (positive in a northward direction) on 6 pressure levels in the lower troposphere", + "dimensions": "longitude latitude plev6 time1", + "out_name": "va6", + "type": "real", + "positive": "", + "spatial_shape": "XY-P6", + "temporal_shape": "time-point", + "cmip6_table": "E3hrPt", + "physical_parameter_name": "va6", + "variableRootDD": "va", + "branding_label": "tpt-p6-hxy-air", + "branded_variable_name": "va_tpt-p6-hxy-air", + "region": "GLB", + "cmip6_compound_name": "E3hrPt.va6", + "cmip7_compound_name": "atmos.va.tpt-p6-hxy-air.3hr.GLB", + "uid": "80ab7432-a698-11ef-914a-613c0433d878" + }, + "atmos.va.tpt-p7h-hxy-air.6hr.GLB": { + "frequency": "6hr", + "modeling_realm": "atmos", + "standard_name": "northward_wind", + "units": "m s-1", + "cell_methods": "area: mean where air time: point", + "cell_measures": "area: areacella", + "long_name": "Northward Wind", + "comment": "Meridional wind (positive in a northward direction).", + "dimensions": "longitude latitude plev7h time1", + "out_name": "va", + "type": "real", + "positive": "", + "spatial_shape": "XY-P7T", + "temporal_shape": "time-point", + "cmip6_table": "6hrPlevPt", + "physical_parameter_name": "va", + "variableRootDD": "va", + "branding_label": "tpt-p7h-hxy-air", + "branded_variable_name": "va_tpt-p7h-hxy-air", + "region": "GLB", + "cmip6_compound_name": "6hrPlevPt.va7h", + "cmip7_compound_name": "atmos.va.tpt-p7h-hxy-air.6hr.GLB", + "uid": "713fda6c-faa7-11e6-bfb7-ac72891c3257" + }, + "atmos.vas.tavg-h10m-hxy-u.6hr.GLB": { + "frequency": "6hr", + "modeling_realm": "atmos", + "standard_name": "northward_wind", + "units": "m s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Northward Near-Surface Wind", + "comment": "Near surface northward wind", + "dimensions": "longitude latitude time height10m", + "out_name": "vas", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "6hrPlev", + "physical_parameter_name": "vas", + "variableRootDD": "vas", + "branding_label": "tavg-h10m-hxy-u", + "branded_variable_name": "vas_tavg-h10m-hxy-u", + "region": "GLB", + "cmip6_compound_name": "6hrPlev.vas", + "cmip7_compound_name": "atmos.vas.tavg-h10m-hxy-u.6hr.GLB", + "uid": "940ff494-4798-11e7-b16a-ac72891c3257" + }, + "atmos.vas.tavg-h10m-hxy-u.day.GLB": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "northward_wind", + "units": "m s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Northward Near-Surface Wind", + "comment": "Northward component of the near surface wind", + "dimensions": "longitude latitude time height10m", + "out_name": "vas", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "day", + "physical_parameter_name": "vas", + "variableRootDD": "vas", + "branding_label": "tavg-h10m-hxy-u", + "branded_variable_name": "vas_tavg-h10m-hxy-u", + "region": "GLB", + "cmip6_compound_name": "day.vas", + "cmip7_compound_name": "atmos.vas.tavg-h10m-hxy-u.day.GLB", + "uid": "babbd25c-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.vas.tavg-h10m-hxy-u.mon.30S-90S": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "northward_wind", + "units": "m s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Northward Near-Surface Wind", + "comment": "Northward component of the near surface wind", + "dimensions": "longitude latitude time height10m", + "out_name": "vas", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Amon", + "physical_parameter_name": "vas", + "variableRootDD": "vas", + "branding_label": "tavg-h10m-hxy-u", + "branded_variable_name": "vas_tavg-h10m-hxy-u", + "region": "30S-90S", + "cmip6_compound_name": "Amon.vasSouth30", + "cmip7_compound_name": "atmos.vas.tavg-h10m-hxy-u.mon.30S-90S", + "uid": "80ac31eb-a698-11ef-914a-613c0433d878" + }, + "atmos.vas.tavg-h10m-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "northward_wind", + "units": "m s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Northward Near-Surface Wind", + "comment": "Northward component of the near surface wind", + "dimensions": "longitude latitude time height10m", + "out_name": "vas", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Amon", + "physical_parameter_name": "vas", + "variableRootDD": "vas", + "branding_label": "tavg-h10m-hxy-u", + "branded_variable_name": "vas_tavg-h10m-hxy-u", + "region": "GLB", + "cmip6_compound_name": "Amon.vas", + "cmip7_compound_name": "atmos.vas.tavg-h10m-hxy-u.mon.GLB", + "uid": "babbcd34-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.vas.tpt-h10m-hs-u.subhr.GLB": { + "frequency": "subhr", + "modeling_realm": "atmos", + "standard_name": "northward_wind", + "units": "m s-1", + "cell_methods": "area: point time: point", + "cell_measures": "", + "long_name": "Northward Near-Surface Wind", + "comment": "Northward component of the near surface wind", + "dimensions": "site time1 height10m", + "out_name": "vas", + "type": "real", + "positive": "", + "spatial_shape": "S-na", + "temporal_shape": "time-point", + "cmip6_table": "CFsubhr", + "physical_parameter_name": "vas", + "variableRootDD": "vas", + "branding_label": "tpt-h10m-hs-u", + "branded_variable_name": "vas_tpt-h10m-hs-u", + "region": "GLB", + "cmip6_compound_name": "CFsubhr.vas", + "cmip7_compound_name": "atmos.vas.tpt-h10m-hs-u.subhr.GLB", + "uid": "80078df8-f906-11e6-a176-5404a60d96b5" + }, + "atmos.vas.tpt-h10m-hxy-u.1hr.GLB": { + "frequency": "1hr", + "modeling_realm": "atmos", + "standard_name": "northward_wind", + "units": "m s-1", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Surface wind speed Northward Component", + "comment": "Meridional wind (positive in a northward direction) at 10 meters above the surface.", + "dimensions": "longitude latitude time1 height10m", + "out_name": "vas", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-point", + "cmip6_table": "E1hr", + "physical_parameter_name": "vas", + "variableRootDD": "vas", + "branding_label": "tpt-h10m-hxy-u", + "branded_variable_name": "vas_tpt-h10m-hxy-u", + "region": "GLB", + "cmip6_compound_name": "E1hr.vas", + "cmip7_compound_name": "atmos.vas.tpt-h10m-hxy-u.1hr.GLB", + "uid": "83bbfbbc-7f07-11ef-9308-b1dd71e64bec" + }, + "atmos.vas.tpt-h10m-hxy-u.3hr.GLB": { + "frequency": "3hr", + "modeling_realm": "atmos", + "standard_name": "northward_wind", + "units": "m s-1", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Northward Near-Surface Wind", + "comment": "This is sampled synoptically.", + "dimensions": "longitude latitude time1 height10m", + "out_name": "vas", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-point", + "cmip6_table": "3hrPt", + "physical_parameter_name": "vas", + "variableRootDD": "vas", + "branding_label": "tpt-h10m-hxy-u", + "branded_variable_name": "vas_tpt-h10m-hxy-u", + "region": "GLB", + "cmip6_compound_name": "3hrPt.vas", + "cmip7_compound_name": "atmos.vas.tpt-h10m-hxy-u.3hr.GLB", + "uid": "babbdec8-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.vas.tpt-h10m-hxy-u.6hr.GLB": { + "frequency": "6hr", + "modeling_realm": "atmos", + "standard_name": "northward_wind", + "units": "m s-1", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Northward Near-Surface Wind", + "comment": "Near surface northward wind", + "dimensions": "longitude latitude time1 height10m", + "out_name": "vas", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-point", + "cmip6_table": "6hrPlevPt", + "physical_parameter_name": "vas", + "variableRootDD": "vas", + "branding_label": "tpt-h10m-hxy-u", + "branded_variable_name": "vas_tpt-h10m-hxy-u", + "region": "GLB", + "cmip6_compound_name": "6hrPlevPt.vas", + "cmip7_compound_name": "atmos.vas.tpt-h10m-hxy-u.6hr.GLB", + "uid": "9137adb2-267c-11e7-8933-ac72891c3257" + }, + "atmos.vtem.tavg-p39-hy-air.day.GLB": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "northward_transformed_eulerian_mean_air_velocity", + "units": "m s-1", + "cell_methods": "longitude: time: mean where air", + "cell_measures": "", + "long_name": "Transformed Eulerian Mean Northward Wind", + "comment": "zonal mean; hence YZT", + "dimensions": "latitude plev39 time", + "out_name": "vtem", + "type": "real", + "positive": "", + "spatial_shape": "Y-P39", + "temporal_shape": "time-intv", + "cmip6_table": "EdayZ", + "physical_parameter_name": "vtem", + "variableRootDD": "vtem", + "branding_label": "tavg-p39-hy-air", + "branded_variable_name": "vtem_tavg-p39-hy-air", + "region": "GLB", + "cmip6_compound_name": "EdayZ.vtem", + "cmip7_compound_name": "atmos.vtem.tavg-p39-hy-air.day.GLB", + "uid": "8b97d150-4a5b-11e6-9cd2-ac72891c3257" + }, + "atmos.vtem.tavg-p39-hy-air.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "northward_transformed_eulerian_mean_air_velocity", + "units": "m s-1", + "cell_methods": "longitude: time: mean where air", + "cell_measures": "", + "long_name": "Transformed Eulerian Mean Northward Wind", + "comment": "Transformed Eulerian Mean Diagnostics v\\*, meridional component of the residual meridional circulation (v\\*, w\\*) derived from 6 hr or higher frequency data fields (use instantaneous daily fields or 12 hr fields if the 6 hr data are not available).", + "dimensions": "latitude plev39 time", + "out_name": "vtem", + "type": "real", + "positive": "", + "spatial_shape": "Y-P39", + "temporal_shape": "time-intv", + "cmip6_table": "EmonZ", + "physical_parameter_name": "vtem", + "variableRootDD": "vtem", + "branding_label": "tavg-p39-hy-air", + "branded_variable_name": "vtem_tavg-p39-hy-air", + "region": "GLB", + "cmip6_compound_name": "EmonZ.vtem", + "cmip7_compound_name": "atmos.vtem.tavg-p39-hy-air.mon.GLB", + "uid": "feeadf5c-96ec-11e6-b81e-c9e268aff03a" + }, + "atmos.vtendnogw.tavg-p19-hxy-air.day.GLB": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "tendency_of_northward_wind_due_to_nonorographic_gravity_wave_drag", + "units": "m s-2", + "cell_methods": "area: time: mean where air", + "cell_measures": "area: areacella", + "long_name": "Tendency of northward wind due to non-orographic gravity waves", + "comment": "Tendency of northward wind induced by the parameterized non-orographic gravity wave drag", + "dimensions": "longitude latitude plev19 time", + "out_name": "vtendnogw", + "type": "real", + "positive": "", + "spatial_shape": "XY-P19", + "temporal_shape": "time-intv", + "cmip6_table": "Eday", + "physical_parameter_name": "vtendnogw", + "variableRootDD": "vtendnogw", + "branding_label": "tavg-p19-hxy-air", + "branded_variable_name": "vtendnogw_tavg-p19-hxy-air", + "region": "GLB", + "cmip6_compound_name": "Eday.vtendnogw", + "cmip7_compound_name": "atmos.vtendnogw.tavg-p19-hxy-air.day.GLB", + "uid": "83bbfc90-7f07-11ef-9308-b1dd71e64bec" + }, + "atmos.vtendnogw.tavg-p19-hxy-air.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "tendency_of_northward_wind_due_to_nonorographic_gravity_wave_drag", + "units": "m s-2", + "cell_methods": "area: time: mean where air", + "cell_measures": "area: areacella", + "long_name": "Northward Acceleration Due to Non-Orographic Gravity Wave Drag", + "comment": "Tendency of northward wind induced by the parameterized non-orographic gravity wave drag", + "dimensions": "longitude latitude plev19 time", + "out_name": "vtendnogw", + "type": "real", + "positive": "", + "spatial_shape": "XY-P19", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "vtendnogw", + "variableRootDD": "vtendnogw", + "branding_label": "tavg-p19-hxy-air", + "branded_variable_name": "vtendnogw_tavg-p19-hxy-air", + "region": "GLB", + "cmip6_compound_name": "Emon.vtendnogw", + "cmip7_compound_name": "atmos.vtendnogw.tavg-p19-hxy-air.mon.GLB", + "uid": "8b97bfda-4a5b-11e6-9cd2-ac72891c3257" + }, + "atmos.vtendogw.tavg-p19-hxy-air.day.GLB": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "tendency_of_northward_wind_due_to_orographic_gravity_wave_drag", + "units": "m s-2", + "cell_methods": "area: time: mean where air", + "cell_measures": "area: areacella", + "long_name": "Tendency of northward wind due to orographic gravity waves", + "comment": "Tendency of northward wind induced by the parameterized orographic gravity wave drag", + "dimensions": "longitude latitude plev19 time", + "out_name": "vtendogw", + "type": "real", + "positive": "", + "spatial_shape": "XY-P19", + "temporal_shape": "time-intv", + "cmip6_table": "Eday", + "physical_parameter_name": "vtendogw", + "variableRootDD": "vtendogw", + "branding_label": "tavg-p19-hxy-air", + "branded_variable_name": "vtendogw_tavg-p19-hxy-air", + "region": "GLB", + "cmip6_compound_name": "Eday.vtendogw", + "cmip7_compound_name": "atmos.vtendogw.tavg-p19-hxy-air.day.GLB", + "uid": "83bbfc8f-7f07-11ef-9308-b1dd71e64bec" + }, + "atmos.vtendogw.tavg-p19-hxy-air.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "tendency_of_northward_wind_due_to_orographic_gravity_wave_drag", + "units": "m s-2", + "cell_methods": "area: time: mean where air", + "cell_measures": "area: areacella", + "long_name": "Northward Acceleration Due to Orographic Gravity Wave Drag", + "comment": "Tendency of northward wind induced by the parameterized orographic gravity wave drag", + "dimensions": "longitude latitude plev19 time", + "out_name": "vtendogw", + "type": "real", + "positive": "", + "spatial_shape": "XY-P19", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "vtendogw", + "variableRootDD": "vtendogw", + "branding_label": "tavg-p19-hxy-air", + "branded_variable_name": "vtendogw_tavg-p19-hxy-air", + "region": "GLB", + "cmip6_compound_name": "Emon.vtendogw", + "cmip7_compound_name": "atmos.vtendogw.tavg-p19-hxy-air.mon.GLB", + "uid": "8b97ba1c-4a5b-11e6-9cd2-ac72891c3257" + }, + "atmos.wap.tavg-500hPa-hxy-air.day.GLB": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "lagrangian_tendency_of_air_pressure", + "units": "Pa s-1", + "cell_methods": "area: time: mean where air", + "cell_measures": "area: areacella", + "long_name": "Pressure Tendency", + "comment": "at 500 hPa level; commonly referred to as \"omega\", this represents the vertical component of velocity in pressure coordinates (positive down)", + "dimensions": "longitude latitude time p500", + "out_name": "wap500", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "CFday", + "physical_parameter_name": "wap500", + "variableRootDD": "wap", + "branding_label": "tavg-500hPa-hxy-air", + "branded_variable_name": "wap_tavg-500hPa-hxy-air", + "region": "GLB", + "cmip6_compound_name": "CFday.wap500", + "cmip7_compound_name": "atmos.wap.tavg-500hPa-hxy-air.day.GLB", + "uid": "babd06a4-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.wap.tavg-al-hxy-u.day.GLB": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "lagrangian_tendency_of_air_pressure", + "units": "Pa s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Omega (=dp/dt)", + "comment": "commonly referred to as \"omega\", this represents the vertical component of velocity in pressure coordinates (positive down)", + "dimensions": "longitude latitude alevel time", + "out_name": "wap", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-intv", + "cmip6_table": "CFday", + "physical_parameter_name": "wap", + "variableRootDD": "wap", + "branding_label": "tavg-al-hxy-u", + "branded_variable_name": "wap_tavg-al-hxy-u", + "region": "GLB", + "cmip6_compound_name": "CFday.wap", + "cmip7_compound_name": "atmos.wap.tavg-al-hxy-u.day.GLB", + "uid": "babd0ad2-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.wap.tavg-p19-hxy-air.mon.30S-90S": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "lagrangian_tendency_of_air_pressure", + "units": "Pa s-1", + "cell_methods": "area: time: mean where air", + "cell_measures": "area: areacella", + "long_name": "Omega (=dp/dt)", + "comment": "commonly referred to as \"omega\", this represents the vertical component of velocity in pressure coordinates (positive down)", + "dimensions": "longitude latitude plev19 time", + "out_name": "wap", + "type": "real", + "positive": "", + "spatial_shape": "XY-P19", + "temporal_shape": "time-intv", + "cmip6_table": "Amon", + "physical_parameter_name": "wap", + "variableRootDD": "wap", + "branding_label": "tavg-p19-hxy-air", + "branded_variable_name": "wap_tavg-p19-hxy-air", + "region": "30S-90S", + "cmip6_compound_name": "Amon.wapSouth30", + "cmip7_compound_name": "atmos.wap.tavg-p19-hxy-air.mon.30S-90S", + "uid": "80ac31ee-a698-11ef-914a-613c0433d878" + }, + "atmos.wap.tavg-p19-hxy-air.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "lagrangian_tendency_of_air_pressure", + "units": "Pa s-1", + "cell_methods": "area: time: mean where air", + "cell_measures": "area: areacella", + "long_name": "Omega (=dp/dt)", + "comment": "commonly referred to as \"omega\", this represents the vertical component of velocity in pressure coordinates (positive down)", + "dimensions": "longitude latitude plev19 time", + "out_name": "wap", + "type": "real", + "positive": "", + "spatial_shape": "XY-P19", + "temporal_shape": "time-intv", + "cmip6_table": "Amon", + "physical_parameter_name": "wap", + "variableRootDD": "wap", + "branding_label": "tavg-p19-hxy-air", + "branded_variable_name": "wap_tavg-p19-hxy-air", + "region": "GLB", + "cmip6_compound_name": "Amon.wap", + "cmip7_compound_name": "atmos.wap.tavg-p19-hxy-air.mon.GLB", + "uid": "babd0906-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.wap.tavg-p19-hxy-u.day.GLB": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "lagrangian_tendency_of_air_pressure", + "units": "Pa s-1", + "cell_methods": "time: mean", + "cell_measures": "area: areacella", + "long_name": "Omega (=dp/dt)", + "comment": "commonly referred to as \"omega\", this represents the vertical component of velocity in pressure coordinates (positive down)", + "dimensions": "longitude latitude plev19 time", + "out_name": "wap", + "type": "real", + "positive": "", + "spatial_shape": "XY-P19", + "temporal_shape": "time-intv", + "cmip6_table": "day", + "physical_parameter_name": "wap", + "variableRootDD": "wap", + "branding_label": "tavg-p19-hxy-u", + "branded_variable_name": "wap_tavg-p19-hxy-u", + "region": "GLB", + "cmip6_compound_name": "day.wap", + "cmip7_compound_name": "atmos.wap.tavg-p19-hxy-u.day.GLB", + "uid": "babd0e56-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.wap.tpt-al-hs-u.subhr.GLB": { + "frequency": "subhr", + "modeling_realm": "atmos", + "standard_name": "lagrangian_tendency_of_air_pressure", + "units": "Pa s-1", + "cell_methods": "area: point time: point", + "cell_measures": "", + "long_name": "Omega (=dp/dt)", + "comment": "commonly referred to as \"omega\", this represents the vertical component of velocity in pressure coordinates (positive down)", + "dimensions": "alevel site time1", + "out_name": "wap", + "type": "real", + "positive": "", + "spatial_shape": "S-A", + "temporal_shape": "time-point", + "cmip6_table": "CFsubhr", + "physical_parameter_name": "wap", + "variableRootDD": "wap", + "branding_label": "tpt-al-hs-u", + "branded_variable_name": "wap_tpt-al-hs-u", + "region": "GLB", + "cmip6_compound_name": "CFsubhr.wap", + "cmip7_compound_name": "atmos.wap.tpt-al-hs-u.subhr.GLB", + "uid": "a954d4ec-817c-11e6-a4e2-5404a60d96b5" + }, + "atmos.wap.tpt-p6-hxy-air.3hr.GLB": { + "frequency": "3hr", + "modeling_realm": "atmos", + "standard_name": "lagrangian_tendency_of_air_pressure", + "units": "Pa s-1", + "cell_methods": "area: mean where air time: point", + "cell_measures": "area: areacella", + "long_name": "Omega (=dp/dt)", + "comment": "Omega (=dp/dt) on 6 pressure levels in the lower troposphere", + "dimensions": "longitude latitude plev6 time1", + "out_name": "wap6", + "type": "real", + "positive": "", + "spatial_shape": "XY-P6", + "temporal_shape": "time-point", + "cmip6_table": "E3hrPt", + "physical_parameter_name": "wap6", + "variableRootDD": "wap", + "branding_label": "tpt-p6-hxy-air", + "branded_variable_name": "wap_tpt-p6-hxy-air", + "region": "GLB", + "cmip6_compound_name": "E3hrPt.wap6", + "cmip7_compound_name": "atmos.wap.tpt-p6-hxy-air.3hr.GLB", + "uid": "80ab7433-a698-11ef-914a-613c0433d878" + }, + "atmos.wbgt.tavg-h2m-hxy-u.day.GLB": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "wet_bulb_globe_temperature", + "units": "degC", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "mean 2m daily wet bulb globe temperature", + "comment": "mean 2m daily wet bulb globe temperature (WBGT). \nWet Bulb Globe Temperature (WBGT) is a particularly effective indicator of heat stress for active populations such as outdoor workers and athletes.\nThe calculation should be done with: \nWBGT = 0.567 \\* T_C + 0.393 \\* e/100 + 3.94, where T_C is temperature in degrees C, and e = huss \\* p \\* M_air / M_H2O, where \"huss=specific humidity in kg/kg\", M_H2O = 18.01528/1000\u00a0# kg/mol, M_air = 28.964/1000\u00a0# kg/mol for dry air and \"P = surface pressure in Pa\"", + "dimensions": "longitude latitude time height2m", + "out_name": "wbgt2m", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "day", + "physical_parameter_name": "wbgt2m", + "variableRootDD": "wbgt", + "branding_label": "tavg-h2m-hxy-u", + "branded_variable_name": "wbgt_tavg-h2m-hxy-u", + "region": "GLB", + "cmip6_compound_name": "day.wbgt2m", + "cmip7_compound_name": "atmos.wbgt.tavg-h2m-hxy-u.day.GLB", + "uid": "83bbfbcd-7f07-11ef-9308-b1dd71e64bec" + }, + "atmos.wbgt.tmax-h2m-hxy-u.day.GLB": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "wet_bulb_globe_temperature", + "units": "degC", + "cell_methods": "area: mean time: maximum", + "cell_measures": "area: areacella", + "long_name": "maximum 2m daily wet bulb globe temperature", + "comment": "max 2m daily wet bulb globe temperature (WGBT): \nWet Bulb Globe Temperature (WBGT) is a particularly effective indicator of heat stress for active populations such as outdoor workers and athletes.\nThe calculation should be done with: \nWBGT = 0.567 \\* T_C + 0.393 \\* e/100 + 3.94, where T_C is temperature in degrees C, and e = huss \\* p \\* M_air / M_H2O, where \"huss=specific humidity in kg/kg\", M_H2O = 18.01528/1000\u00a0# kg/mol, M_air = 28.964/1000\u00a0# kg/mol for dry air and \"P = surface pressure in Pa\"", + "dimensions": "longitude latitude time height2m", + "out_name": "wbgt2mmax", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "day", + "physical_parameter_name": "wbgt2mmax", + "variableRootDD": "wbgt", + "branding_label": "tmax-h2m-hxy-u", + "branded_variable_name": "wbgt_tmax-h2m-hxy-u", + "region": "GLB", + "cmip6_compound_name": "day.wbgt2mmax", + "cmip7_compound_name": "atmos.wbgt.tmax-h2m-hxy-u.day.GLB", + "uid": "83bbfbcc-7f07-11ef-9308-b1dd71e64bec" + }, + "atmos.wsg.tmax-h100m-hxy-u.1hr.GLB": { + "frequency": "1hr", + "modeling_realm": "atmos", + "standard_name": "wind_speed_of_gust", + "units": "m s-1", + "cell_methods": "area: mean time: maximum", + "cell_measures": "area: areacella", + "long_name": "Maximum Wind Speed of Gust at 100m", + "comment": "Wind speed gust maximum at 100m above surface", + "dimensions": "longitude latitude time height100m", + "out_name": "wsgmax100m", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "E1hr", + "physical_parameter_name": "wsgmax100m", + "variableRootDD": "wsg", + "branding_label": "tmax-h100m-hxy-u", + "branded_variable_name": "wsg_tmax-h100m-hxy-u", + "region": "GLB", + "cmip6_compound_name": "E1hr.wsgmax100m", + "cmip7_compound_name": "atmos.wsg.tmax-h100m-hxy-u.1hr.GLB", + "uid": "83bbfc7d-7f07-11ef-9308-b1dd71e64bec" + }, + "atmos.wsg.tmax-h100m-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "wind_speed_of_gust", + "units": "m s-1", + "cell_methods": "area: mean time: maximum", + "cell_measures": "area: areacella", + "long_name": "Maximum Wind Speed of Gust at 100m", + "comment": "Maximum Wind Speed of Gust at 100m, monthly", + "dimensions": "longitude latitude time height100m", + "out_name": "wsgmax100m", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "wsgmax100m", + "variableRootDD": "wsg", + "branding_label": "tmax-h100m-hxy-u", + "branded_variable_name": "wsg_tmax-h100m-hxy-u", + "region": "GLB", + "cmip6_compound_name": "Emon.wsgmax100m", + "cmip7_compound_name": "atmos.wsg.tmax-h100m-hxy-u.mon.GLB", + "uid": "83bbfc7c-7f07-11ef-9308-b1dd71e64bec" + }, + "atmos.wsg.tmax-h10m-hxy-u.1hr.GLB": { + "frequency": "1hr", + "modeling_realm": "atmos", + "standard_name": "wind_speed_of_gust", + "units": "m s-1", + "cell_methods": "area: mean time: maximum", + "cell_measures": "area: areacella", + "long_name": "Maximum Speed of Wind Gust at 10m", + "comment": "Wind speed gust maximum at 10m above surface", + "dimensions": "longitude latitude time height10m", + "out_name": "wsgmax10m", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "E1hr", + "physical_parameter_name": "wsgmax10m", + "variableRootDD": "wsg", + "branding_label": "tmax-h10m-hxy-u", + "branded_variable_name": "wsg_tmax-h10m-hxy-u", + "region": "GLB", + "cmip6_compound_name": "E1hr.wsgmax10m", + "cmip7_compound_name": "atmos.wsg.tmax-h10m-hxy-u.1hr.GLB", + "uid": "83bbfc7b-7f07-11ef-9308-b1dd71e64bec" + }, + "atmos.wsg.tmax-h10m-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "wind_speed_of_gust", + "units": "m s-1", + "cell_methods": "area: mean time: maximum", + "cell_measures": "area: areacella", + "long_name": "Maximum Wind Speed of Gust at 10m", + "comment": "Maximum Wind Speed of Gust at 10m, monthly", + "dimensions": "longitude latitude time height10m", + "out_name": "wsgmax10m", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "wsgmax10m", + "variableRootDD": "wsg", + "branding_label": "tmax-h10m-hxy-u", + "branded_variable_name": "wsg_tmax-h10m-hxy-u", + "region": "GLB", + "cmip6_compound_name": "Emon.wsgmax10m", + "cmip7_compound_name": "atmos.wsg.tmax-h10m-hxy-u.mon.GLB", + "uid": "83bbfc7a-7f07-11ef-9308-b1dd71e64bec" + }, + "atmos.wtem.tavg-p39-hy-air.day.GLB": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "upward_transformed_eulerian_mean_air_velocity", + "units": "m s-1", + "cell_methods": "longitude: time: mean where air", + "cell_measures": "", + "long_name": "Transformed Eulerian Mean Upward Wind", + "comment": "zonal mean; hence YZT", + "dimensions": "latitude plev39 time", + "out_name": "wtem", + "type": "real", + "positive": "", + "spatial_shape": "Y-P39", + "temporal_shape": "time-intv", + "cmip6_table": "EdayZ", + "physical_parameter_name": "wtem", + "variableRootDD": "wtem", + "branding_label": "tavg-p39-hy-air", + "branded_variable_name": "wtem_tavg-p39-hy-air", + "region": "GLB", + "cmip6_compound_name": "EdayZ.wtem", + "cmip7_compound_name": "atmos.wtem.tavg-p39-hy-air.day.GLB", + "uid": "8b97d678-4a5b-11e6-9cd2-ac72891c3257" + }, + "atmos.wtem.tavg-p39-hy-air.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "upward_transformed_eulerian_mean_air_velocity", + "units": "m s-1", + "cell_methods": "longitude: time: mean where air", + "cell_measures": "", + "long_name": "Transformed Eulerian Mean Upward Wind", + "comment": "Transformed Eulerian Mean Diagnostics w\\*, upward component of the residual meridional circulation (v\\*, w\\*) derived from 6 hr or higher frequency data fields (use instantaneous daily fields or 12 hr fields if the 6 hr data are not available). Scale height: 6950 m", + "dimensions": "latitude plev39 time", + "out_name": "wtem", + "type": "real", + "positive": "", + "spatial_shape": "Y-P39", + "temporal_shape": "time-intv", + "cmip6_table": "EmonZ", + "physical_parameter_name": "wtem", + "variableRootDD": "wtem", + "branding_label": "tavg-p39-hy-air", + "branded_variable_name": "wtem_tavg-p39-hy-air", + "region": "GLB", + "cmip6_compound_name": "EmonZ.wtem", + "cmip7_compound_name": "atmos.wtem.tavg-p39-hy-air.mon.GLB", + "uid": "feeae56a-96ec-11e6-b81e-c9e268aff03a" + }, + "atmos.zfull.ti-al-hxy-u.fx.GLB": { + "frequency": "fx", + "modeling_realm": "atmos", + "standard_name": "height_above_reference_ellipsoid", + "units": "m", + "cell_methods": "area: mean", + "cell_measures": "area: areacella", + "long_name": "Altitude of Model Full-Levels", + "comment": "Provide only if altitude of full model levels is fixed", + "dimensions": "longitude latitude alevel", + "out_name": "zfull", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "None", + "cmip6_table": "fx", + "physical_parameter_name": "zfull", + "variableRootDD": "zfull", + "branding_label": "ti-al-hxy-u", + "branded_variable_name": "zfull_ti-al-hxy-u", + "region": "GLB", + "cmip6_compound_name": "fx.zfull", + "cmip7_compound_name": "atmos.zfull.ti-al-hxy-u.fx.GLB", + "uid": "0ea7a738776ef049ed7bef9c701a819c8c9ca036" + }, + "atmos.zg.tavg-1000hPa-hxy-air.6hr.GLB": { + "frequency": "6hr", + "modeling_realm": "atmos", + "standard_name": "geopotential_height", + "units": "m", + "cell_methods": "area: time: mean where air", + "cell_measures": "area: areacella", + "long_name": "Geopotential Height at 1000hPa", + "comment": "Geopotential height on the 1000 hPa surface", + "dimensions": "longitude latitude time p1000", + "out_name": "zg1000", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "6hrPlev", + "physical_parameter_name": "zg1000", + "variableRootDD": "zg", + "branding_label": "tavg-1000hPa-hxy-air", + "branded_variable_name": "zg_tavg-1000hPa-hxy-air", + "region": "GLB", + "cmip6_compound_name": "6hrPlev.zg1000", + "cmip7_compound_name": "atmos.zg.tavg-1000hPa-hxy-air.6hr.GLB", + "uid": "8b920734-4a5b-11e6-9cd2-ac72891c3257" + }, + "atmos.zg.tavg-1000hPa-hxy-air.day.GLB": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "geopotential_height", + "units": "m", + "cell_methods": "area: time: mean where air", + "cell_measures": "area: areacella", + "long_name": "Geopotential Height at 1000hPa", + "comment": "Geopotential height on the 1000 hPa surface", + "dimensions": "longitude latitude time p1000", + "out_name": "zg1000", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "AERday", + "physical_parameter_name": "zg1000", + "variableRootDD": "zg", + "branding_label": "tavg-1000hPa-hxy-air", + "branded_variable_name": "zg_tavg-1000hPa-hxy-air", + "region": "GLB", + "cmip6_compound_name": "AERday.zg1000", + "cmip7_compound_name": "atmos.zg.tavg-1000hPa-hxy-air.day.GLB", + "uid": "19bdf1c6-81b1-11e6-92de-ac72891c3257" + }, + "atmos.zg.tavg-500hPa-hxy-air.day.GLB": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "geopotential_height", + "units": "m", + "cell_methods": "area: time: mean where air", + "cell_measures": "area: areacella", + "long_name": "Geopotential Height at 500hPa", + "comment": "geopotential height on the 500 hPa surface", + "dimensions": "longitude latitude time p500", + "out_name": "zg500", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "AERday", + "physical_parameter_name": "zg500", + "variableRootDD": "zg", + "branding_label": "tavg-500hPa-hxy-air", + "branded_variable_name": "zg_tavg-500hPa-hxy-air", + "region": "GLB", + "cmip6_compound_name": "AERday.zg500", + "cmip7_compound_name": "atmos.zg.tavg-500hPa-hxy-air.day.GLB", + "uid": "0fabb742-817d-11e6-b80b-5404a60d96b5" + }, + "atmos.zg.tavg-al-hxy-u.day.GLB": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "geopotential_height", + "units": "m", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Geopotential Height", + "comment": "Geopotential is the sum of the specific gravitational potential energy relative to the geoid and the specific centripetal potential energy. Geopotential height is the geopotential divided by the standard acceleration due to gravity. It is numerically similar to the altitude (or geometric height) and not to the quantity with standard name height, which is relative to the surface.", + "dimensions": "longitude latitude alevel time", + "out_name": "zg", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-intv", + "cmip6_table": "CFday", + "physical_parameter_name": "zg", + "variableRootDD": "zg", + "branding_label": "tavg-al-hxy-u", + "branded_variable_name": "zg_tavg-al-hxy-u", + "region": "GLB", + "cmip6_compound_name": "CFday.zg", + "cmip7_compound_name": "atmos.zg.tavg-al-hxy-u.day.GLB", + "uid": "babd9cae-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.zg.tavg-al-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "geopotential_height", + "units": "m", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Geopotential Height", + "comment": "Geopotential is the sum of the specific gravitational potential energy relative to the geoid and the specific centripetal potential energy. Geopotential height is the geopotential divided by the standard acceleration due to gravity. It is numerically similar to the altitude (or geometric height) and not to the quantity with standard name height, which is relative to the surface.", + "dimensions": "longitude latitude alevel time", + "out_name": "zg", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "zg", + "variableRootDD": "zg", + "branding_label": "tavg-al-hxy-u", + "branded_variable_name": "zg_tavg-al-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.zg", + "cmip7_compound_name": "atmos.zg.tavg-al-hxy-u.mon.GLB", + "uid": "19bea74c-81b1-11e6-92de-ac72891c3257" + }, + "atmos.zg.tavg-p19-hxy-air.day.GLB": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "geopotential_height", + "units": "m", + "cell_methods": "area: time: mean where air", + "cell_measures": "area: areacella", + "long_name": "Geopotential Height", + "comment": "Geopotential is the sum of the specific gravitational potential energy relative to the geoid and the specific centripetal potential energy. Geopotential height is the geopotential divided by the standard acceleration due to gravity. It is numerically similar to the altitude (or geometric height) and not to the quantity with standard name height, which is relative to the surface.", + "dimensions": "longitude latitude plev19 time", + "out_name": "zg", + "type": "real", + "positive": "", + "spatial_shape": "XY-P19", + "temporal_shape": "time-intv", + "cmip6_table": "day", + "physical_parameter_name": "zg", + "variableRootDD": "zg", + "branding_label": "tavg-p19-hxy-air", + "branded_variable_name": "zg_tavg-p19-hxy-air", + "region": "GLB", + "cmip6_compound_name": "day.zg", + "cmip7_compound_name": "atmos.zg.tavg-p19-hxy-air.day.GLB", + "uid": "babda032-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.zg.tavg-p19-hxy-air.mon.30S-90S": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "geopotential_height", + "units": "m", + "cell_methods": "area: time: mean where air", + "cell_measures": "area: areacella", + "long_name": "Geopotential Height", + "comment": "Geopotential is the sum of the specific gravitational potential energy relative to the geoid and the specific centripetal potential energy. Geopotential height is the geopotential divided by the standard acceleration due to gravity. It is numerically similar to the altitude (or geometric height) and not to the quantity with standard name height, which is relative to the surface.", + "dimensions": "longitude latitude plev19 time", + "out_name": "zg", + "type": "real", + "positive": "", + "spatial_shape": "XY-P19", + "temporal_shape": "time-intv", + "cmip6_table": "Amon", + "physical_parameter_name": "zg", + "variableRootDD": "zg", + "branding_label": "tavg-p19-hxy-air", + "branded_variable_name": "zg_tavg-p19-hxy-air", + "region": "30S-90S", + "cmip6_compound_name": "Amon.zgSouth30", + "cmip7_compound_name": "atmos.zg.tavg-p19-hxy-air.mon.30S-90S", + "uid": "80ac31f1-a698-11ef-914a-613c0433d878" + }, + "atmos.zg.tavg-p19-hxy-air.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "geopotential_height", + "units": "m", + "cell_methods": "area: time: mean where air", + "cell_measures": "area: areacella", + "long_name": "Geopotential Height", + "comment": "Geopotential is the sum of the specific gravitational potential energy relative to the geoid and the specific centripetal potential energy. Geopotential height is the geopotential divided by the standard acceleration due to gravity. It is numerically similar to the altitude (or geometric height) and not to the quantity with standard name height, which is relative to the surface.", + "dimensions": "longitude latitude plev19 time", + "out_name": "zg", + "type": "real", + "positive": "", + "spatial_shape": "XY-P19", + "temporal_shape": "time-intv", + "cmip6_table": "Amon", + "physical_parameter_name": "zg", + "variableRootDD": "zg", + "branding_label": "tavg-p19-hxy-air", + "branded_variable_name": "zg_tavg-p19-hxy-air", + "region": "GLB", + "cmip6_compound_name": "Amon.zg", + "cmip7_compound_name": "atmos.zg.tavg-p19-hxy-air.mon.GLB", + "uid": "babd9ace-e5dd-11e5-8482-ac72891c3257" + }, + "atmos.zg.tavg-p39-hy-air.day.GLB": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "geopotential_height", + "units": "m", + "cell_methods": "longitude: time: mean where air", + "cell_measures": "", + "long_name": "Geopotential Height", + "comment": "zonal mean; hence YZT", + "dimensions": "latitude plev39 time", + "out_name": "zg", + "type": "real", + "positive": "", + "spatial_shape": "Y-P39", + "temporal_shape": "time-intv", + "cmip6_table": "EdayZ", + "physical_parameter_name": "zg", + "variableRootDD": "zg", + "branding_label": "tavg-p39-hy-air", + "branded_variable_name": "zg_tavg-p39-hy-air", + "region": "GLB", + "cmip6_compound_name": "EdayZ.zg", + "cmip7_compound_name": "atmos.zg.tavg-p39-hy-air.day.GLB", + "uid": "8b983a5a-4a5b-11e6-9cd2-ac72891c3257" + }, + "atmos.zg.tavg-p39-hy-air.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "geopotential_height", + "units": "m", + "cell_methods": "longitude: time: mean where air", + "cell_measures": "", + "long_name": "Geopotential Height", + "comment": "Geopotential is the sum of the specific gravitational potential energy relative to the geoid and the specific centripetal potential energy. Geopotential height is the geopotential divided by the standard acceleration due to gravity. It is numerically similar to the altitude (or geometric height) and not to the quantity with standard name height, which is relative to the surface.", + "dimensions": "latitude plev39 time", + "out_name": "zg", + "type": "real", + "positive": "", + "spatial_shape": "Y-P39", + "temporal_shape": "time-intv", + "cmip6_table": "AERmonZ", + "physical_parameter_name": "zg", + "variableRootDD": "zg", + "branding_label": "tavg-p39-hy-air", + "branded_variable_name": "zg_tavg-p39-hy-air", + "region": "GLB", + "cmip6_compound_name": "AERmonZ.zg", + "cmip7_compound_name": "atmos.zg.tavg-p39-hy-air.mon.GLB", + "uid": "fda6ad38-96ec-11e6-b81e-c9e268aff03a" + }, + "atmos.zg.tpt-500hPa-hxy-air.6hr.GLB": { + "frequency": "6hr", + "modeling_realm": "atmos", + "standard_name": "geopotential_height", + "units": "m", + "cell_methods": "area: mean where air time: point", + "cell_measures": "area: areacella", + "long_name": "Geopotential Height at 500hPa", + "comment": "geopotential height on the 500 hPa surface", + "dimensions": "longitude latitude time1 p500", + "out_name": "zg500", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-point", + "cmip6_table": "6hrPlevPt", + "physical_parameter_name": "zg500", + "variableRootDD": "zg", + "branding_label": "tpt-500hPa-hxy-air", + "branded_variable_name": "zg_tpt-500hPa-hxy-air", + "region": "GLB", + "cmip6_compound_name": "6hrPlevPt.zg500", + "cmip7_compound_name": "atmos.zg.tpt-500hPa-hxy-air.6hr.GLB", + "uid": "7c70f59e-1ab7-11e7-8dfc-5404a60d96b5" + }, + "atmos.zg.tpt-700hPa-hxy-u.6hr.GLB": { + "frequency": "6hr", + "modeling_realm": "atmos", + "standard_name": "geopotential_height", + "units": "m", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "zg700", + "comment": "700 hPa geopotential height at 6 hourly instantaneous frequency", + "dimensions": "longitude latitude time1 p700", + "out_name": "zg700", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-point", + "cmip6_table": "6hrPlevPt", + "physical_parameter_name": "zg700", + "variableRootDD": "zg", + "branding_label": "tpt-700hPa-hxy-u", + "branded_variable_name": "zg_tpt-700hPa-hxy-u", + "region": "GLB", + "cmip6_compound_name": "6hrPlevPt.zg700", + "cmip7_compound_name": "atmos.zg.tpt-700hPa-hxy-u.6hr.GLB", + "uid": "83bbfc43-7f07-11ef-9308-b1dd71e64bec" + }, + "atmos.zg.tpt-925hPa-hxy-u.6hr.GLB": { + "frequency": "6hr", + "modeling_realm": "atmos", + "standard_name": "geopotential_height", + "units": "m", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "zg925", + "comment": "Geopotential Height at 925 hPa, 6 hourly instantaneous", + "dimensions": "longitude latitude time1 p925", + "out_name": "zg925", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-point", + "cmip6_table": "6hrPlevPt", + "physical_parameter_name": "zg925", + "variableRootDD": "zg", + "branding_label": "tpt-925hPa-hxy-u", + "branded_variable_name": "zg_tpt-925hPa-hxy-u", + "region": "GLB", + "cmip6_compound_name": "6hrPlevPt.zg925", + "cmip7_compound_name": "atmos.zg.tpt-925hPa-hxy-u.6hr.GLB", + "uid": "83bbfc42-7f07-11ef-9308-b1dd71e64bec" + }, + "atmos.zg.tpt-al-hs-u.subhr.GLB": { + "frequency": "subhr", + "modeling_realm": "atmos", + "standard_name": "geopotential_height", + "units": "m", + "cell_methods": "area: point time: point", + "cell_measures": "", + "long_name": "Geopotential Height", + "comment": "Geopotential is the sum of the specific gravitational potential energy relative to the geoid and the specific centripetal potential energy. Geopotential height is the geopotential divided by the standard acceleration due to gravity. It is numerically similar to the altitude (or geometric height) and not to the quantity with standard name height, which is relative to the surface.", + "dimensions": "alevel site time1", + "out_name": "zg", + "type": "real", + "positive": "", + "spatial_shape": "S-A", + "temporal_shape": "time-point", + "cmip6_table": "CFsubhr", + "physical_parameter_name": "zg", + "variableRootDD": "zg", + "branding_label": "tpt-al-hs-u", + "branded_variable_name": "zg_tpt-al-hs-u", + "region": "GLB", + "cmip6_compound_name": "CFsubhr.zg", + "cmip7_compound_name": "atmos.zg.tpt-al-hs-u.subhr.GLB", + "uid": "a954e054-817c-11e6-a4e2-5404a60d96b5" + }, + "atmos.zg.tpt-al-hxy-u.6hr.GLB": { + "frequency": "6hr", + "modeling_realm": "atmos", + "standard_name": "geopotential_height", + "units": "m", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Geopotential height", + "comment": "Geopotential height", + "dimensions": "longitude latitude alevel time1", + "out_name": "zg", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-point", + "cmip6_table": "6hrLev", + "physical_parameter_name": "zg", + "variableRootDD": "zg", + "branding_label": "tpt-al-hxy-u", + "branded_variable_name": "zg_tpt-al-hxy-u", + "region": "GLB", + "cmip6_compound_name": "6hrLev.zg", + "cmip7_compound_name": "atmos.zg.tpt-al-hxy-u.6hr.GLB", + "uid": "80ab720f-a698-11ef-914a-613c0433d878" + }, + "atmos.zg.tpt-p3-hxy-air.6hr.GLB": { + "frequency": "6hr", + "modeling_realm": "atmos", + "standard_name": "geopotential_height", + "units": "m", + "cell_methods": "area: mean where air time: point", + "cell_measures": "area: areacella", + "long_name": "Geopotential Height", + "comment": "Geopotential is the sum of the specific gravitational potential energy relative to the geoid and the specific centripetal potential energy. Geopotential height is the geopotential divided by the standard acceleration due to gravity. It is numerically similar to the altitude (or geometric height) and not to the quantity with standard name height, which is relative to the surface.", + "dimensions": "longitude latitude plev3 time1", + "out_name": "zg", + "type": "real", + "positive": "", + "spatial_shape": "XY-P3", + "temporal_shape": "time-point", + "cmip6_table": "6hrPlevPt", + "physical_parameter_name": "zg", + "variableRootDD": "zg", + "branding_label": "tpt-p3-hxy-air", + "branded_variable_name": "zg_tpt-p3-hxy-air", + "region": "GLB", + "cmip6_compound_name": "6hrPlevPt.zg", + "cmip7_compound_name": "atmos.zg.tpt-p3-hxy-air.6hr.GLB", + "uid": "8bb0333a-4a5b-11e6-9cd2-ac72891c3257" + }, + "atmos.zg.tpt-p7h-hxy-air.6hr.GLB": { + "frequency": "6hr", + "modeling_realm": "atmos", + "standard_name": "geopotential_height", + "units": "m", + "cell_methods": "area: mean where air time: point", + "cell_measures": "area: areacella", + "long_name": "Geopotential Height", + "comment": "Geopotential is the sum of the specific gravitational potential energy relative to the geoid and the specific centripetal potential energy. Geopotential height is the geopotential divided by the standard acceleration due to gravity. It is numerically similar to the altitude (or geometric height) and not to the quantity with standard name height, which is relative to the surface.", + "dimensions": "longitude latitude plev7h time1", + "out_name": "zg", + "type": "real", + "positive": "", + "spatial_shape": "XY-P7T", + "temporal_shape": "time-point", + "cmip6_table": "6hrPlevPt", + "physical_parameter_name": "zg", + "variableRootDD": "zg", + "branding_label": "tpt-p7h-hxy-air", + "branded_variable_name": "zg_tpt-p7h-hxy-air", + "region": "GLB", + "cmip6_compound_name": "6hrPlevPt.zg7h", + "cmip7_compound_name": "atmos.zg.tpt-p7h-hxy-air.6hr.GLB", + "uid": "7d943832-1ab7-11e7-8dfc-5404a60d96b5" + }, + "atmos.ztp.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "tropopause_altitude", + "units": "m", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Tropopause Altitude Above Geoid", + "comment": "2D monthly mean thermal tropopause calculated using WMO tropopause definition on 3d temperature", + "dimensions": "longitude latitude time", + "out_name": "ztp", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "ztp", + "variableRootDD": "ztp", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "ztp_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.ztp", + "cmip7_compound_name": "atmos.ztp.tavg-u-hxy-u.mon.GLB", + "uid": "19be55a8-81b1-11e6-92de-ac72891c3257" + }, + "atmosChem.c2h4.tavg-al-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmosChem", + "standard_name": "mole_fraction_of_ethene_in_air", + "units": "mol mol-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "C2H4 volume mixing ratio", + "comment": "Mole fraction of ethene (C2H4) in air", + "dimensions": "longitude latitude alevel time", + "out_name": "c2h4", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "c2h4", + "variableRootDD": "c2h4", + "branding_label": "tavg-al-hxy-u", + "branded_variable_name": "c2h4_tavg-al-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.c2h4", + "cmip7_compound_name": "atmosChem.c2h4.tavg-al-hxy-u.mon.GLB", + "uid": "83bbfc1d-7f07-11ef-9308-b1dd71e64bec" + }, + "atmosChem.c2h5oh.tavg-al-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmosChem", + "standard_name": "mole_fraction_of_ethanol_in_air", + "units": "mol mol-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "C2H5OH volume mixing ratio", + "comment": "Mole fraction of ethanol (C2H5OH) in air", + "dimensions": "longitude latitude alevel time", + "out_name": "c2h5oh", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "c2h5oh", + "variableRootDD": "c2h5oh", + "branding_label": "tavg-al-hxy-u", + "branded_variable_name": "c2h5oh_tavg-al-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.c2h5oh", + "cmip7_compound_name": "atmosChem.c2h5oh.tavg-al-hxy-u.mon.GLB", + "uid": "83bbfc1c-7f07-11ef-9308-b1dd71e64bec" + }, + "atmosChem.c4h10.tavg-al-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmosChem", + "standard_name": "mole_fraction_of_butane_in_air", + "units": "mol mol-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "C4H10 volume mixing ratio", + "comment": "Mole fraction of butane (C4H10) in air", + "dimensions": "longitude latitude alevel time", + "out_name": "c4h10", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "c4h10", + "variableRootDD": "c4h10", + "branding_label": "tavg-al-hxy-u", + "branded_variable_name": "c4h10_tavg-al-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.c4h10", + "cmip7_compound_name": "atmosChem.c4h10.tavg-al-hxy-u.mon.GLB", + "uid": "83bbfc1b-7f07-11ef-9308-b1dd71e64bec" + }, + "atmosChem.cfc11.tavg-u-hm-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmosChem", + "standard_name": "mole_fraction_of_cfc11_in_air", + "units": "1E-12", + "cell_methods": "height: area: time: mean (with all samples weighted by the number of moles of air in the sample)", + "cell_measures": "", + "long_name": "Global Mean Mole Fraction of CFC11", + "comment": "Mole fraction is used in the construction mole_fraction_of_X_in_Y, where X is a material constituent of Y. The chemical formula of CFC11 is CFCl3. The IUPAC name for CFC11 is trichloro-fluoro-methane.", + "dimensions": "time", + "out_name": "cfc11global", + "type": "real", + "positive": "", + "spatial_shape": "na-na", + "temporal_shape": "time-intv", + "cmip6_table": "Amon", + "physical_parameter_name": "cfc11global", + "variableRootDD": "cfc11", + "branding_label": "tavg-u-hm-u", + "branded_variable_name": "cfc11_tavg-u-hm-u", + "region": "GLB", + "cmip6_compound_name": "Amon.cfc11global", + "cmip7_compound_name": "atmosChem.cfc11.tavg-u-hm-u.mon.GLB", + "uid": "baa9918c-e5dd-11e5-8482-ac72891c3257" + }, + "atmosChem.cfc113.tavg-u-hm-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmosChem", + "standard_name": "mole_fraction_of_cfc113_in_air", + "units": "1E-12", + "cell_methods": "height: area: time: mean (with all samples weighted by the number of moles of air in the sample)", + "cell_measures": "", + "long_name": "Global Mean Mole Fraction of CFC113", + "comment": "Mole fraction is used in the construction mole_fraction_of_X_in_Y, where X is a material constituent of Y. The chemical formula of CFC113 is CCl2FCClF2. The IUPAC name for CFC113 is 1, 1, 2-trichloro-1, 2, 2-trifluoro-ethane.", + "dimensions": "time", + "out_name": "cfc113global", + "type": "real", + "positive": "", + "spatial_shape": "na-na", + "temporal_shape": "time-intv", + "cmip6_table": "Amon", + "physical_parameter_name": "cfc113global", + "variableRootDD": "cfc113", + "branding_label": "tavg-u-hm-u", + "branded_variable_name": "cfc113_tavg-u-hm-u", + "region": "GLB", + "cmip6_compound_name": "Amon.cfc113global", + "cmip7_compound_name": "atmosChem.cfc113.tavg-u-hm-u.mon.GLB", + "uid": "baa98b1a-e5dd-11e5-8482-ac72891c3257" + }, + "atmosChem.cfc12.tavg-u-hm-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmosChem", + "standard_name": "mole_fraction_of_cfc12_in_air", + "units": "1E-12", + "cell_methods": "height: area: time: mean (with all samples weighted by the number of moles of air in the sample)", + "cell_measures": "", + "long_name": "Global Mean Mole Fraction of CFC12", + "comment": "Mole fraction is used in the construction mole_fraction_of_X_in_Y, where X is a material constituent of Y. The chemical formula of CFC12 is CF2Cl2. The IUPAC name for CFC12 is dichloro-difluoro-methane.", + "dimensions": "time", + "out_name": "cfc12global", + "type": "real", + "positive": "", + "spatial_shape": "na-na", + "temporal_shape": "time-intv", + "cmip6_table": "Amon", + "physical_parameter_name": "cfc12global", + "variableRootDD": "cfc12", + "branding_label": "tavg-u-hm-u", + "branded_variable_name": "cfc12_tavg-u-hm-u", + "region": "GLB", + "cmip6_compound_name": "Amon.cfc12global", + "cmip7_compound_name": "atmosChem.cfc12.tavg-u-hm-u.mon.GLB", + "uid": "baa99736-e5dd-11e5-8482-ac72891c3257" + }, + "atmosChem.ch3oh.tavg-al-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmosChem", + "standard_name": "mole_fraction_of_methanol_in_air", + "units": "mol mol-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "CH3OH volume mixing ratio", + "comment": "Mole fraction of methanol (CH3OH) in air", + "dimensions": "longitude latitude alevel time", + "out_name": "ch3oh", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "ch3oh", + "variableRootDD": "ch3oh", + "branding_label": "tavg-al-hxy-u", + "branded_variable_name": "ch3oh_tavg-al-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.ch3oh", + "cmip7_compound_name": "atmosChem.ch3oh.tavg-al-hxy-u.mon.GLB", + "uid": "83bbfc18-7f07-11ef-9308-b1dd71e64bec" + }, + "atmosChem.ch4.tavg-al-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmosChem", + "standard_name": "mole_fraction_of_methane_in_air", + "units": "mol mol-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Mole Fraction of CH4", + "comment": "Mole fraction is used in the construction mole_fraction_of_X_in_Y, where X is a material constituent of Y.", + "dimensions": "longitude latitude alevel time", + "out_name": "ch4", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "ch4", + "variableRootDD": "ch4", + "branding_label": "tavg-al-hxy-u", + "branded_variable_name": "ch4_tavg-al-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.ch4", + "cmip7_compound_name": "atmosChem.ch4.tavg-al-hxy-u.mon.GLB", + "uid": "19bfc492-81b1-11e6-92de-ac72891c3257" + }, + "atmosChem.ch4.tavg-p19-hxy-air.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmosChem", + "standard_name": "mole_fraction_of_methane_in_air", + "units": "mol mol-1", + "cell_methods": "area: time: mean where air", + "cell_measures": "area: areacella", + "long_name": "Mole Fraction of CH4", + "comment": "Mole fraction is used in the construction mole_fraction_of_X_in_Y, where X is a material constituent of Y.", + "dimensions": "longitude latitude plev19 time", + "out_name": "ch4", + "type": "real", + "positive": "", + "spatial_shape": "XY-P19", + "temporal_shape": "time-intv", + "cmip6_table": "Amon", + "physical_parameter_name": "ch4", + "variableRootDD": "ch4", + "branding_label": "tavg-p19-hxy-air", + "branded_variable_name": "ch4_tavg-p19-hxy-air", + "region": "GLB", + "cmip6_compound_name": "Amon.ch4", + "cmip7_compound_name": "atmosChem.ch4.tavg-p19-hxy-air.mon.GLB", + "uid": "baa9d642-e5dd-11e5-8482-ac72891c3257" + }, + "atmosChem.ch4.tavg-p39-hy-air.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmosChem", + "standard_name": "mole_fraction_of_methane_in_air", + "units": "mol mol-1", + "cell_methods": "longitude: time: mean where air", + "cell_measures": "", + "long_name": "Mole Fraction of CH4", + "comment": "Mole fraction is used in the construction mole_fraction_of_X_in_Y, where X is a material constituent of Y.", + "dimensions": "latitude plev39 time", + "out_name": "ch4", + "type": "real", + "positive": "", + "spatial_shape": "Y-P39", + "temporal_shape": "time-intv", + "cmip6_table": "AERmonZ", + "physical_parameter_name": "ch4", + "variableRootDD": "ch4", + "branding_label": "tavg-p39-hy-air", + "branded_variable_name": "ch4_tavg-p39-hy-air", + "region": "GLB", + "cmip6_compound_name": "AERmonZ.ch4", + "cmip7_compound_name": "atmosChem.ch4.tavg-p39-hy-air.mon.GLB", + "uid": "fda6dd26-96ec-11e6-b81e-c9e268aff03a" + }, + "atmosChem.ch4.tavg-u-hm-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmosChem", + "standard_name": "mole_fraction_of_methane_in_air", + "units": "1E-09", + "cell_methods": "height: area: time: mean (with all samples weighted by the number of moles of air in the sample)", + "cell_measures": "", + "long_name": "Global Mean Mole Fraction of CH4", + "comment": "Global Mean Mole Fraction of CH4", + "dimensions": "time", + "out_name": "ch4global", + "type": "real", + "positive": "", + "spatial_shape": "na-na", + "temporal_shape": "time-intv", + "cmip6_table": "Amon", + "physical_parameter_name": "ch4global", + "variableRootDD": "ch4", + "branding_label": "tavg-u-hm-u", + "branded_variable_name": "ch4_tavg-u-hm-u", + "region": "GLB", + "cmip6_compound_name": "Amon.ch4global", + "cmip7_compound_name": "atmosChem.ch4.tavg-u-hm-u.mon.GLB", + "uid": "baa9e22c-e5dd-11e5-8482-ac72891c3257" + }, + "atmosChem.ch4.tclm-p19-hxy-air.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmosChem", + "standard_name": "mole_fraction_of_methane_in_air", + "units": "mol mol-1", + "cell_methods": "area: mean where air time: mean within years time: mean over years", + "cell_measures": "area: areacella", + "long_name": "Mole Fraction of CH4", + "comment": "Mole fraction is used in the construction mole_fraction_of_X_in_Y, where X is a material constituent of Y.", + "dimensions": "longitude latitude plev19 time2", + "out_name": "ch4", + "type": "real", + "positive": "", + "spatial_shape": "XY-P19", + "temporal_shape": "climatology", + "cmip6_table": "Amon", + "physical_parameter_name": "ch4", + "variableRootDD": "ch4", + "branding_label": "tclm-p19-hxy-air", + "branded_variable_name": "ch4_tclm-p19-hxy-air", + "region": "GLB", + "cmip6_compound_name": "Amon.ch4Clim", + "cmip7_compound_name": "atmosChem.ch4.tclm-p19-hxy-air.mon.GLB", + "uid": "a92e26e4-817c-11e6-a4e2-5404a60d96b5" + }, + "atmosChem.ch4.tclm-u-hm-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmosChem", + "standard_name": "mole_fraction_of_methane_in_air", + "units": "mol mol-1", + "cell_methods": "height: area: time: mean (with all samples weighted by the number of moles of air in the sample)", + "cell_measures": "", + "long_name": "Global Mean Mole Fraction of CH4", + "comment": "Global Mean Mole Fraction of CH4", + "dimensions": "time2", + "out_name": "ch4", + "type": "real", + "positive": "", + "spatial_shape": "na-na", + "temporal_shape": "climatology", + "cmip6_table": "Amon", + "physical_parameter_name": "ch4", + "variableRootDD": "ch4", + "branding_label": "tclm-u-hm-u", + "branded_variable_name": "ch4_tclm-u-hm-u", + "region": "GLB", + "cmip6_compound_name": "Amon.ch4globalClim", + "cmip7_compound_name": "atmosChem.ch4.tclm-u-hm-u.mon.GLB", + "uid": "a92e3b16-817c-11e6-a4e2-5404a60d96b5" + }, + "atmosChem.ch4losssoil.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmosChem", + "standard_name": "surface_downward_mass_flux_of_methane_due_to_soil_biological_consumption", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "loss of methane from the atmosphere due to biological consumption in the soil", + "comment": "Loss rate of methane from the atmosphere due to soil sink", + "dimensions": "longitude latitude time", + "out_name": "ch4losssoil", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "ch4losssoil", + "variableRootDD": "ch4losssoil", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "ch4losssoil_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.ch4losssoil", + "cmip7_compound_name": "atmosChem.ch4losssoil.tavg-u-hxy-u.mon.GLB", + "uid": "83bbfc17-7f07-11ef-9308-b1dd71e64bec" + }, + "atmosChem.ch4ref.ti-al-hxy-u.fx.GLB": { + "frequency": "fx", + "modeling_realm": "atmosChem", + "standard_name": "reference_mole_fraction_of_methane_in_air", + "units": "mol mol-1", + "cell_methods": "area: mean", + "cell_measures": "area: areacella", + "long_name": "Reference mole fraction of methane in air", + "comment": "This is the methane mole fraction that is used in a diagnostic call to the model's radiation scheme. It is only applicable when a methane double call is active in the model.", + "dimensions": "longitude latitude alevel", + "out_name": "ch4ref", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "None", + "cmip6_table": "AERfx", + "physical_parameter_name": "ch4ref", + "variableRootDD": "ch4ref", + "branding_label": "ti-al-hxy-u", + "branded_variable_name": "ch4ref_ti-al-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERfx.ch4ref", + "cmip7_compound_name": "atmosChem.ch4ref.ti-al-hxy-u.fx.GLB", + "uid": "83bbfc2c-7f07-11ef-9308-b1dd71e64bec" + }, + "atmosChem.chegph2oo1d.tavg-al-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmosChem", + "standard_name": "tendency_of_atmosphere_mole_concentration_of_hydroxyl_radical_due_to_chemical_production_from_atomic_singlet_oxygen_and_water_vapor", + "units": "mol m-3 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Primary production of OH (H2O+O1D)", + "comment": "Primary production rate of the hydroxy (OH) radical via H2O+O1D", + "dimensions": "longitude latitude alevel time", + "out_name": "chegph2oo1d", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "chegph2oo1d", + "variableRootDD": "chegph2oo1d", + "branding_label": "tavg-al-hxy-u", + "branded_variable_name": "chegph2oo1d_tavg-al-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.chegph2oo1d", + "cmip7_compound_name": "atmosChem.chegph2oo1d.tavg-al-hxy-u.mon.GLB", + "uid": "83bbfc16-7f07-11ef-9308-b1dd71e64bec" + }, + "atmosChem.chepnh4.tavg-al-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmosChem", + "standard_name": "tendency_of_atmosphere_mass_content_of_ammonium_dry_aerosol_particles_due_to_net_chemical_production", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Net chemical production of ammonium aerosol", + "comment": "Net chemical production rate of ammonium aerosol in the atmosphere.", + "dimensions": "longitude latitude alevel time", + "out_name": "chepnh4", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "chepnh4", + "variableRootDD": "chepnh4", + "branding_label": "tavg-al-hxy-u", + "branded_variable_name": "chepnh4_tavg-al-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.chepnh4", + "cmip7_compound_name": "atmosChem.chepnh4.tavg-al-hxy-u.mon.GLB", + "uid": "83bbfc15-7f07-11ef-9308-b1dd71e64bec" + }, + "atmosChem.chepno3.tavg-al-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmosChem", + "standard_name": "tendency_of_atmosphere_mass_content_of_nitrate_dry_aerosol_particles_due_to_net_chemical_production", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Net chemical production of nitrate aerosol", + "comment": "Net chemical production rate of nitrate aerosol in the atmosphere", + "dimensions": "longitude latitude alevel time", + "out_name": "chepno3", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "chepno3", + "variableRootDD": "chepno3", + "branding_label": "tavg-al-hxy-u", + "branded_variable_name": "chepno3_tavg-al-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.chepno3", + "cmip7_compound_name": "atmosChem.chepno3.tavg-al-hxy-u.mon.GLB", + "uid": "83bbfc14-7f07-11ef-9308-b1dd71e64bec" + }, + "atmosChem.dms.tavg-al-hxy-u.mon.30S-90S": { + "frequency": "mon", + "modeling_realm": "atmosChem", + "standard_name": "mole_fraction_of_dimethyl_sulfide_in_air", + "units": "mol mol-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Dimethyl Sulphide (DMS) Mole Fraction", + "comment": "Mole fraction is used in the construction mole_fraction_of_X_in_Y, where X is a material constituent of Y.", + "dimensions": "longitude latitude alevel time", + "out_name": "dms", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "dms", + "variableRootDD": "dms", + "branding_label": "tavg-al-hxy-u", + "branded_variable_name": "dms_tavg-al-hxy-u", + "region": "30S-90S", + "cmip6_compound_name": "AERmon.dmsSouth30", + "cmip7_compound_name": "atmosChem.dms.tavg-al-hxy-u.mon.30S-90S", + "uid": "80ac3186-a698-11ef-914a-613c0433d878" + }, + "atmosChem.dms.tavg-al-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmosChem", + "standard_name": "mole_fraction_of_dimethyl_sulfide_in_air", + "units": "mol mol-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Dimethyl Sulphide (DMS) Mole Fraction", + "comment": "Mole fraction is used in the construction mole_fraction_of_X_in_Y, where X is a material constituent of Y.", + "dimensions": "longitude latitude alevel time", + "out_name": "dms", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "dms", + "variableRootDD": "dms", + "branding_label": "tavg-al-hxy-u", + "branded_variable_name": "dms_tavg-al-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.dms", + "cmip7_compound_name": "atmosChem.dms.tavg-al-hxy-u.mon.GLB", + "uid": "19bfc1d6-81b1-11e6-92de-ac72891c3257" + }, + "atmosChem.do3chm.tavg-al-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmosChem", + "standard_name": "tendency_of_atmosphere_mole_concentration_of_ozone_due_to_net_chemical_production", + "units": "mol m-3 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Net Chemistry Tendency of O3", + "comment": "Net chemical production of ozone in the atmosphere", + "dimensions": "longitude latitude alevel time", + "out_name": "do3chm", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "do3chm", + "variableRootDD": "do3chm", + "branding_label": "tavg-al-hxy-u", + "branded_variable_name": "do3chm_tavg-al-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.do3chm", + "cmip7_compound_name": "atmosChem.do3chm.tavg-al-hxy-u.mon.GLB", + "uid": "83bbfc12-7f07-11ef-9308-b1dd71e64bec" + }, + "atmosChem.dryh2.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmosChem", + "standard_name": "tendency_of_atmosphere_mass_content_of_molecular_hydrogen_due_to_dry_deposition", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Total loss rate of molecular hydrogen (H2) from the atmosphere via soil sink", + "comment": "This is the total loss rate of molecular hydrogen (H2) from the atmosphere via its soil sink due to bacterial consumption.", + "dimensions": "longitude latitude time", + "out_name": "dryh2", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "dryh2", + "variableRootDD": "dryh2", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "dryh2_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.dryh2", + "cmip7_compound_name": "atmosChem.dryh2.tavg-u-hxy-u.mon.GLB", + "uid": "83bbfc11-7f07-11ef-9308-b1dd71e64bec" + }, + "atmosChem.dryhno3.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmosChem", + "standard_name": "tendency_of_atmosphere_mass_content_of_nitric_acid_due_to_dry_deposition", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Dry deposition of HNO3", + "comment": "This is the loss of nitric acid (HNO3) from the atmosphere due to dry deposition", + "dimensions": "longitude latitude time", + "out_name": "dryhno3", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "dryhno3", + "variableRootDD": "dryhno3", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "dryhno3_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.dryhno3", + "cmip7_compound_name": "atmosChem.dryhno3.tavg-u-hxy-u.mon.GLB", + "uid": "83bbfc10-7f07-11ef-9308-b1dd71e64bec" + }, + "atmosChem.drynh3.tavg-u-hxy-u.day.GLB": { + "frequency": "day", + "modeling_realm": "atmosChem", + "standard_name": "minus_tendency_of_atmosphere_mass_content_of_ammonia_due_to_dry_deposition", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Daily Dry Deposition Rate of NH3", + "comment": "Daily Dry Deposition Rate of NH3 at surface. Vertically integrated throughout the column to the surface.", + "dimensions": "longitude latitude time", + "out_name": "drynh3", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "AERday", + "physical_parameter_name": "drynh3", + "variableRootDD": "drynh3", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "drynh3_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERday.drynh3", + "cmip7_compound_name": "atmosChem.drynh3.tavg-u-hxy-u.day.GLB", + "uid": "83bbfc40-7f07-11ef-9308-b1dd71e64bec" + }, + "atmosChem.drynh3.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmosChem", + "standard_name": "minus_tendency_of_atmosphere_mass_content_of_ammonia_due_to_dry_deposition", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Dry Deposition Rate of NH3", + "comment": "Monthly Dry Deposition Rate of NH3 at surface", + "dimensions": "longitude latitude time", + "out_name": "drynh3", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "drynh3", + "variableRootDD": "drynh3", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "drynh3_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.drynh3", + "cmip7_compound_name": "atmosChem.drynh3.tavg-u-hxy-u.mon.GLB", + "uid": "19bf8acc-81b1-11e6-92de-ac72891c3257" + }, + "atmosChem.drynh4.tavg-u-hxy-u.day.GLB": { + "frequency": "day", + "modeling_realm": "atmosChem", + "standard_name": "minus_tendency_of_atmosphere_mass_content_of_ammonium_dry_aerosol_particles_due_to_dry_deposition", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Daily Dry Deposition Rate of NH4", + "comment": "Daily Dry Deposition Rate of NH4 at surface. Vertically integrated throughout the column to the surface.", + "dimensions": "longitude latitude time", + "out_name": "drynh4", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "AERday", + "physical_parameter_name": "drynh4", + "variableRootDD": "drynh4", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "drynh4_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERday.drynh4", + "cmip7_compound_name": "atmosChem.drynh4.tavg-u-hxy-u.day.GLB", + "uid": "83bbfc3f-7f07-11ef-9308-b1dd71e64bec" + }, + "atmosChem.drynh4.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmosChem", + "standard_name": "minus_tendency_of_atmosphere_mass_content_of_ammonium_dry_aerosol_particles_due_to_dry_deposition", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Dry Deposition Rate of NH4", + "comment": "Dry Deposition Rate of NH4", + "dimensions": "longitude latitude time", + "out_name": "drynh4", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "drynh4", + "variableRootDD": "drynh4", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "drynh4_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.drynh4", + "cmip7_compound_name": "atmosChem.drynh4.tavg-u-hxy-u.mon.GLB", + "uid": "19bf936e-81b1-11e6-92de-ac72891c3257" + }, + "atmosChem.drynoy.tavg-u-hxy-u.day.GLB": { + "frequency": "day", + "modeling_realm": "atmosChem", + "standard_name": "minus_tendency_of_atmosphere_mass_content_of_noy_expressed_as_nitrogen_due_to_dry_deposition", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Daily Dry Deposition Rate of NOy", + "comment": "Daily Dry Deposition Rate of NOy at surface. Vertically integrated throughout the column to the surface.", + "dimensions": "longitude latitude time", + "out_name": "drynoy", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "AERday", + "physical_parameter_name": "drynoy", + "variableRootDD": "drynoy", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "drynoy_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERday.drynoy", + "cmip7_compound_name": "atmosChem.drynoy.tavg-u-hxy-u.day.GLB", + "uid": "83bbfc3e-7f07-11ef-9308-b1dd71e64bec" + }, + "atmosChem.drynoy.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmosChem", + "standard_name": "minus_tendency_of_atmosphere_mass_content_of_noy_expressed_as_nitrogen_due_to_dry_deposition", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Dry Deposition Rate of NOy", + "comment": "Dry Deposition Rate of NOy", + "dimensions": "longitude latitude time", + "out_name": "drynoy", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "drynoy", + "variableRootDD": "drynoy", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "drynoy_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.drynoy", + "cmip7_compound_name": "atmosChem.drynoy.tavg-u-hxy-u.mon.GLB", + "uid": "19bfdaae-81b1-11e6-92de-ac72891c3257" + }, + "atmosChem.e90inst.tpt-al-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmosChem", + "standard_name": "mole_fraction_of_artificial_tracer_with_fixed_lifetime_in_air", + "units": "mol mol-1", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Artificial tracer with 90 day lifetime", + "comment": "Mole fraction of an artificial tracer with a 90-day lifetime (e90)", + "dimensions": "longitude latitude alevel time1", + "out_name": "e90inst", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-point", + "cmip6_table": "AERmon", + "physical_parameter_name": "e90inst", + "variableRootDD": "e90inst", + "branding_label": "tpt-al-hxy-u", + "branded_variable_name": "e90inst_tpt-al-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.e90inst", + "cmip7_compound_name": "atmosChem.e90inst.tpt-al-hxy-u.mon.GLB", + "uid": "83bbfc0e-7f07-11ef-9308-b1dd71e64bec" + }, + "atmosChem.emiach4.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmosChem", + "standard_name": "tendency_of_atmosphere_mass_content_of_methane_due_to_emission", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "anthropogenic emission rate of CH4", + "comment": "Anthropogenic emission rate of methane (CH4) into the atmosphere", + "dimensions": "longitude latitude time", + "out_name": "emiach4", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "emiach4", + "variableRootDD": "emiach4", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "emiach4_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.emiach4", + "cmip7_compound_name": "atmosChem.emiach4.tavg-u-hxy-u.mon.GLB", + "uid": "83bbfc0d-7f07-11ef-9308-b1dd71e64bec" + }, + "atmosChem.emiavnox.tavg-al-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmosChem", + "standard_name": "tendency_of_atmosphere_mole_concentration_of_nox_expressed_as_nitrogen", + "units": "mol m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Emission rate of NOx from aviation", + "comment": "Emission rate of NOx from aircraft", + "dimensions": "longitude latitude alevel time", + "out_name": "emiavnox", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "emiavnox", + "variableRootDD": "emiavnox", + "branding_label": "tavg-al-hxy-u", + "branded_variable_name": "emiavnox_tavg-al-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.emiavnox", + "cmip7_compound_name": "atmosChem.emiavnox.tavg-al-hxy-u.mon.GLB", + "uid": "83bbfc0c-7f07-11ef-9308-b1dd71e64bec" + }, + "atmosChem.emic2h4.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmosChem", + "standard_name": "tendency_of_atmosphere_mass_content_of_ethene_due_to_emission", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "total emission rate of C2H4", + "comment": "Total emission rate of ethene (C2H4) into the atmosphere", + "dimensions": "longitude latitude time", + "out_name": "emic2h4", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "emic2h4", + "variableRootDD": "emic2h4", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "emic2h4_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.emic2h4", + "cmip7_compound_name": "atmosChem.emic2h4.tavg-u-hxy-u.mon.GLB", + "uid": "83bbfc02-7f07-11ef-9308-b1dd71e64bec" + }, + "atmosChem.emic2h5oh.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmosChem", + "standard_name": "tendency_of_atmosphere_mass_content_of_ethanol_due_to_emission", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "total emission rate of C2H5OH", + "comment": "This is the total emission rate of ethanol (C2H5OH) into the atmosphere", + "dimensions": "longitude latitude time", + "out_name": "emic2h5oh", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "emic2h5oh", + "variableRootDD": "emic2h5oh", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "emic2h5oh_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.emic2h5oh", + "cmip7_compound_name": "atmosChem.emic2h5oh.tavg-u-hxy-u.mon.GLB", + "uid": "83bbfc01-7f07-11ef-9308-b1dd71e64bec" + }, + "atmosChem.emic2h6.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmosChem", + "standard_name": "tendency_of_atmosphere_mass_content_of_ethane_due_to_emission", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "total emission rate of C2H6", + "comment": "This is the total emission rate of ethane (C2H6) into the atmosphere", + "dimensions": "longitude latitude time", + "out_name": "emic2h6", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "emic2h6", + "variableRootDD": "emic2h6", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "emic2h6_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.emic2h6", + "cmip7_compound_name": "atmosChem.emic2h6.tavg-u-hxy-u.mon.GLB", + "uid": "83bbfc00-7f07-11ef-9308-b1dd71e64bec" + }, + "atmosChem.emic3h6.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmosChem", + "standard_name": "tendency_of_atmosphere_mass_content_of_propene_due_to_emission", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "total emission rate of C3H6", + "comment": "This is the total emission rate of propene (C3H6) into the atmosphere", + "dimensions": "longitude latitude time", + "out_name": "emic3h6", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "emic3h6", + "variableRootDD": "emic3h6", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "emic3h6_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.emic3h6", + "cmip7_compound_name": "atmosChem.emic3h6.tavg-u-hxy-u.mon.GLB", + "uid": "83bbfbff-7f07-11ef-9308-b1dd71e64bec" + }, + "atmosChem.emic3h8.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmosChem", + "standard_name": "tendency_of_atmosphere_mass_content_of_propane_due_to_emission", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "total emission rate of C3H8", + "comment": "This is the total emission rate of propane (C3H8) into the atmosphere", + "dimensions": "longitude latitude time", + "out_name": "emic3h8", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "emic3h8", + "variableRootDD": "emic3h8", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "emic3h8_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.emic3h8", + "cmip7_compound_name": "atmosChem.emic3h8.tavg-u-hxy-u.mon.GLB", + "uid": "83bbfbfe-7f07-11ef-9308-b1dd71e64bec" + }, + "atmosChem.emic4h10.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmosChem", + "standard_name": "tendency_of_atmosphere_mass_content_of_butane_due_to_emission", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "total emission rate of C4H10", + "comment": "This is the total emission rate of butane (C4H10) into the atmosphere", + "dimensions": "longitude latitude time", + "out_name": "emic4h10", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "emic4h10", + "variableRootDD": "emic4h10", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "emic4h10_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.emic4h10", + "cmip7_compound_name": "atmosChem.emic4h10.tavg-u-hxy-u.mon.GLB", + "uid": "83bbfbfd-7f07-11ef-9308-b1dd71e64bec" + }, + "atmosChem.emich3oh.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmosChem", + "standard_name": "tendency_of_atmosphere_mass_content_of_methanol_due_to_emission", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "total emission rate of CH3OH", + "comment": "This is the total emission rate of methanol (CH3OH) into the atmosphere", + "dimensions": "longitude latitude time", + "out_name": "emich3oh", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "emich3oh", + "variableRootDD": "emich3oh", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "emich3oh_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.emich3oh", + "cmip7_compound_name": "atmosChem.emich3oh.tavg-u-hxy-u.mon.GLB", + "uid": "83bbfbfc-7f07-11ef-9308-b1dd71e64bec" + }, + "atmosChem.emich4.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmosChem", + "standard_name": "tendency_of_atmosphere_mass_content_of_methane_due_to_emission", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "total emission rate of CH4", + "comment": "This is the total emission rate of methane (CH4) into the atmosphere", + "dimensions": "longitude latitude time", + "out_name": "emich4", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "emich4", + "variableRootDD": "emich4", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "emich4_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.emich4", + "cmip7_compound_name": "atmosChem.emich4.tavg-u-hxy-u.mon.GLB", + "uid": "83bbfbfb-7f07-11ef-9308-b1dd71e64bec" + }, + "atmosChem.emih2.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmosChem", + "standard_name": "tendency_of_atmosphere_mass_content_of_molecular_hydrogen_due_to_emission", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Total emission rate of molecular hydrogen (H2)", + "comment": "This is the total emission rate of molecular hydrogen (H2) into the atmosphere (i.e., integrate 3D emission field vertically to 2d field)", + "dimensions": "longitude latitude time", + "out_name": "emih2", + "type": "real", + "positive": "up", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "emih2", + "variableRootDD": "emih2", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "emih2_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.emih2", + "cmip7_compound_name": "atmosChem.emih2.tavg-u-hxy-u.mon.GLB", + "uid": "83bbfbfa-7f07-11ef-9308-b1dd71e64bec" + }, + "atmosChem.emilkch4.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmosChem", + "standard_name": "surface_net_upward_mass_flux_of_methane_due_to_emission_from_freshwater_lakes", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "lake emission rate of CH4", + "comment": "This is the emission rate of methane (CH4) into the atmosphere from freshwater lakes", + "dimensions": "longitude latitude time", + "out_name": "emilkch4", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "emilkch4", + "variableRootDD": "emilkch4", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "emilkch4_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.emilkch4", + "cmip7_compound_name": "atmosChem.emilkch4.tavg-u-hxy-u.mon.GLB", + "uid": "83bbfbf9-7f07-11ef-9308-b1dd71e64bec" + }, + "atmosChem.flashrate.tavg-u-hxy-u.day.GLB": { + "frequency": "day", + "modeling_realm": "atmosChem", + "standard_name": "frequency_of_lightning_flashes_per_unit_area", + "units": "km-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Lightning Flash Rate", + "comment": "Lightning Flash Rate", + "dimensions": "longitude latitude time", + "out_name": "flashrate", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Eday", + "physical_parameter_name": "flashrate", + "variableRootDD": "flashrate", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "flashrate_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "Eday.flashrate", + "cmip7_compound_name": "atmosChem.flashrate.tavg-u-hxy-u.day.GLB", + "uid": "83bbfbae-7f07-11ef-9308-b1dd71e64bec" + }, + "atmosChem.flashrate.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmosChem", + "standard_name": "frequency_of_lightning_flashes_per_unit_area", + "units": "km-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Lightning Flash Rate", + "comment": "Lightning Flash Rate", + "dimensions": "longitude latitude time", + "out_name": "flashrate", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "flashrate", + "variableRootDD": "flashrate", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "flashrate_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "Emon.flashrate", + "cmip7_compound_name": "atmosChem.flashrate.tavg-u-hxy-u.mon.GLB", + "uid": "6f691c58-9acb-11e6-b7ee-ac72891c3257" + }, + "atmosChem.h2.tavg-al-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmosChem", + "standard_name": "mole_fraction_of_molecular_hydrogen_in_air", + "units": "mol mol-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "H2 volume mixing ratio", + "comment": "This is the mole fraction of molecular hydrogen (H2) in air", + "dimensions": "longitude latitude alevel time", + "out_name": "h2", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "h2", + "variableRootDD": "h2", + "branding_label": "tavg-al-hxy-u", + "branded_variable_name": "h2_tavg-al-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.h2", + "cmip7_compound_name": "atmosChem.h2.tavg-al-hxy-u.mon.GLB", + "uid": "83bbfbf8-7f07-11ef-9308-b1dd71e64bec" + }, + "atmosChem.h2loss.tavg-al-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmosChem", + "standard_name": "tendency_of_atmosphere_mole_concentration_of_molecular_hydrogen_due_to_chemical_destruction", + "units": "mol m-3 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Chemical destruction of atmospheric H2", + "comment": "This is the loss rate of molecular hydrogen (H2) from the atmosphere due to chemical destruction", + "dimensions": "longitude latitude alevel time", + "out_name": "h2loss", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "h2loss", + "variableRootDD": "h2loss", + "branding_label": "tavg-al-hxy-u", + "branded_variable_name": "h2loss_tavg-al-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.h2loss", + "cmip7_compound_name": "atmosChem.h2loss.tavg-al-hxy-u.mon.GLB", + "uid": "83bbfbf7-7f07-11ef-9308-b1dd71e64bec" + }, + "atmosChem.h2prod.tavg-al-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmosChem", + "standard_name": "tendency_of_atmosphere_mole_concentration_of_molecular_hydrogen_due_to_chemical_production", + "units": "mol m-3 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "chemical production of atmospheric H2", + "comment": "This is the production of molecular hydrogen (H2) in the atmosphere due to chemical production", + "dimensions": "longitude latitude alevel time", + "out_name": "h2prod", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "h2prod", + "variableRootDD": "h2prod", + "branding_label": "tavg-al-hxy-u", + "branded_variable_name": "h2prod_tavg-al-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.h2prod", + "cmip7_compound_name": "atmosChem.h2prod.tavg-al-hxy-u.mon.GLB", + "uid": "83bbfbf6-7f07-11ef-9308-b1dd71e64bec" + }, + "atmosChem.hcfc22.tavg-u-hm-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmosChem", + "standard_name": "mole_fraction_of_hcfc22_in_air", + "units": "1E-12", + "cell_methods": "height: area: time: mean (with all samples weighted by the number of moles of air in the sample)", + "cell_measures": "", + "long_name": "Global Mean Mole Fraction of HCFC22", + "comment": "Mole fraction is used in the construction mole_fraction_of_X_in_Y, where X is a material constituent of Y. A chemical species denoted by X may be described by a single term such as 'nitrogen' or a phrase such as 'nox_expressed_as_nitrogen'. The chemical formula for HCFC22 is CHClF2. The IUPAC name for HCFC22 is chloro-difluoro-methane.", + "dimensions": "time", + "out_name": "hcfc22global", + "type": "real", + "positive": "", + "spatial_shape": "na-na", + "temporal_shape": "time-intv", + "cmip6_table": "Amon", + "physical_parameter_name": "hcfc22global", + "variableRootDD": "hcfc22", + "branding_label": "tavg-u-hm-u", + "branded_variable_name": "hcfc22_tavg-u-hm-u", + "region": "GLB", + "cmip6_compound_name": "Amon.hcfc22global", + "cmip7_compound_name": "atmosChem.hcfc22.tavg-u-hm-u.mon.GLB", + "uid": "baaeaf1e-e5dd-11e5-8482-ac72891c3257" + }, + "atmosChem.meanage.tavg-al-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmosChem", + "standard_name": "age_of_stratospheric_air", + "units": "yr", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Mean Age of Stratospheric Air", + "comment": "The mean age of air is defined as the mean time that a stratospheric air mass has been out of contact with the well-mixed troposphere.", + "dimensions": "longitude latitude alevel time", + "out_name": "meanage", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "meanage", + "variableRootDD": "meanage", + "branding_label": "tavg-al-hxy-u", + "branded_variable_name": "meanage_tavg-al-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.meanage", + "cmip7_compound_name": "atmosChem.meanage.tavg-al-hxy-u.mon.GLB", + "uid": "83bbfbf5-7f07-11ef-9308-b1dd71e64bec" + }, + "atmosChem.meanage.tavg-p39-hy-air.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmosChem", + "standard_name": "age_of_stratospheric_air", + "units": "yr", + "cell_methods": "longitude: time: mean where air", + "cell_measures": "", + "long_name": "Mean Age of Stratospheric Air", + "comment": "The mean age of air is defined as the mean time that a stratospheric air mass has been out of contact with the well-mixed troposphere.", + "dimensions": "latitude plev39 time", + "out_name": "meanage", + "type": "real", + "positive": "", + "spatial_shape": "Y-P39", + "temporal_shape": "time-intv", + "cmip6_table": "AERmonZ", + "physical_parameter_name": "meanage", + "variableRootDD": "meanage", + "branding_label": "tavg-p39-hy-air", + "branded_variable_name": "meanage_tavg-p39-hy-air", + "region": "GLB", + "cmip6_compound_name": "AERmonZ.meanage", + "cmip7_compound_name": "atmosChem.meanage.tavg-p39-hy-air.mon.GLB", + "uid": "3a049b80-9c3a-11e6-8d5d-ac72891c3257" + }, + "atmosChem.n2o.tavg-al-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmosChem", + "standard_name": "mole_fraction_of_nitrous_oxide_in_air", + "units": "mol mol-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Mole Fraction of N2O", + "comment": "Mole fraction is used in the construction mole_fraction_of_X_in_Y, where X is a material constituent of Y. The chemical formula of nitrous oxide is N2O.", + "dimensions": "longitude latitude alevel time", + "out_name": "n2o", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "n2o", + "variableRootDD": "n2o", + "branding_label": "tavg-al-hxy-u", + "branded_variable_name": "n2o_tavg-al-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.n2o", + "cmip7_compound_name": "atmosChem.n2o.tavg-al-hxy-u.mon.GLB", + "uid": "19bfccbc-81b1-11e6-92de-ac72891c3257" + }, + "atmosChem.n2o.tavg-p19-hxy-air.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmosChem", + "standard_name": "mole_fraction_of_nitrous_oxide_in_air", + "units": "mol mol-1", + "cell_methods": "area: time: mean where air", + "cell_measures": "area: areacella", + "long_name": "Mole Fraction of N2O", + "comment": "Mole fraction is used in the construction mole_fraction_of_X_in_Y, where X is a material constituent of Y. The chemical formula of nitrous oxide is N2O.", + "dimensions": "longitude latitude plev19 time", + "out_name": "n2o", + "type": "real", + "positive": "", + "spatial_shape": "XY-P19", + "temporal_shape": "time-intv", + "cmip6_table": "Amon", + "physical_parameter_name": "n2o", + "variableRootDD": "n2o", + "branding_label": "tavg-p19-hxy-air", + "branded_variable_name": "n2o_tavg-p19-hxy-air", + "region": "GLB", + "cmip6_compound_name": "Amon.n2o", + "cmip7_compound_name": "atmosChem.n2o.tavg-p19-hxy-air.mon.GLB", + "uid": "bab2124e-e5dd-11e5-8482-ac72891c3257" + }, + "atmosChem.n2o.tavg-p39-hy-air.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmosChem", + "standard_name": "mole_fraction_of_nitrous_oxide_in_air", + "units": "mol mol-1", + "cell_methods": "longitude: time: mean where air", + "cell_measures": "", + "long_name": "Mole Fraction of N2O", + "comment": "Mole fraction is used in the construction mole_fraction_of_X_in_Y, where X is a material constituent of Y. The chemical formula of nitrous oxide is N2O.", + "dimensions": "latitude plev39 time", + "out_name": "n2o", + "type": "real", + "positive": "", + "spatial_shape": "Y-P39", + "temporal_shape": "time-intv", + "cmip6_table": "AERmonZ", + "physical_parameter_name": "n2o", + "variableRootDD": "n2o", + "branding_label": "tavg-p39-hy-air", + "branded_variable_name": "n2o_tavg-p39-hy-air", + "region": "GLB", + "cmip6_compound_name": "AERmonZ.n2o", + "cmip7_compound_name": "atmosChem.n2o.tavg-p39-hy-air.mon.GLB", + "uid": "fda67476-96ec-11e6-b81e-c9e268aff03a" + }, + "atmosChem.n2o.tavg-u-hm-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmosChem", + "standard_name": "mole_fraction_of_nitrous_oxide_in_air", + "units": "1E-09", + "cell_methods": "height: area: time: mean (with all samples weighted by the number of moles of air in the sample)", + "cell_measures": "", + "long_name": "Global Mean Mole Fraction of N2O", + "comment": "Global mean Nitrous Oxide (N2O)", + "dimensions": "time", + "out_name": "n2oglobal", + "type": "real", + "positive": "", + "spatial_shape": "na-na", + "temporal_shape": "time-intv", + "cmip6_table": "Amon", + "physical_parameter_name": "n2oglobal", + "variableRootDD": "n2o", + "branding_label": "tavg-u-hm-u", + "branded_variable_name": "n2o_tavg-u-hm-u", + "region": "GLB", + "cmip6_compound_name": "Amon.n2oglobal", + "cmip7_compound_name": "atmosChem.n2o.tavg-u-hm-u.mon.GLB", + "uid": "bab221e4-e5dd-11e5-8482-ac72891c3257" + }, + "atmosChem.n2o.tclm-p19-hxy-air.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmosChem", + "standard_name": "mole_fraction_of_nitrous_oxide_in_air", + "units": "mol mol-1", + "cell_methods": "area: mean where air time: mean within years time: mean over years", + "cell_measures": "area: areacella", + "long_name": "Mole Fraction of N2O", + "comment": "Mole fraction is used in the construction mole_fraction_of_X_in_Y, where X is a material constituent of Y. The chemical formula of nitrous oxide is N2O.", + "dimensions": "longitude latitude plev19 time2", + "out_name": "n2o", + "type": "real", + "positive": "", + "spatial_shape": "XY-P19", + "temporal_shape": "climatology", + "cmip6_table": "Amon", + "physical_parameter_name": "n2o", + "variableRootDD": "n2o", + "branding_label": "tclm-p19-hxy-air", + "branded_variable_name": "n2o_tclm-p19-hxy-air", + "region": "GLB", + "cmip6_compound_name": "Amon.n2oClim", + "cmip7_compound_name": "atmosChem.n2o.tclm-p19-hxy-air.mon.GLB", + "uid": "a92e4ec6-817c-11e6-a4e2-5404a60d96b5" + }, + "atmosChem.n2o.tclm-u-hm-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmosChem", + "standard_name": "mole_fraction_of_nitrous_oxide_in_air", + "units": "mol mol-1", + "cell_methods": "height: area: time: mean (with all samples weighted by the number of moles of air in the sample)", + "cell_measures": "", + "long_name": "Global Mean Mole Fraction of N2O", + "comment": "Global mean Nitrous Oxide (N2O)", + "dimensions": "time2", + "out_name": "n2o", + "type": "real", + "positive": "", + "spatial_shape": "na-na", + "temporal_shape": "climatology", + "cmip6_table": "Amon", + "physical_parameter_name": "n2o", + "variableRootDD": "n2o", + "branding_label": "tclm-u-hm-u", + "branded_variable_name": "n2o_tclm-u-hm-u", + "region": "GLB", + "cmip6_compound_name": "Amon.n2oglobalClim", + "cmip7_compound_name": "atmosChem.n2o.tclm-u-hm-u.mon.GLB", + "uid": "a92e6316-817c-11e6-a4e2-5404a60d96b5" + }, + "atmosChem.o3.tavg-al-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmosChem", + "standard_name": "mole_fraction_of_ozone_in_air", + "units": "mol mol-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Mole Fraction of O3", + "comment": "Mole fraction is used in the construction mole_fraction_of_X_in_Y, where X is a material constituent of Y.", + "dimensions": "longitude latitude alevel time", + "out_name": "o3", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "o3", + "variableRootDD": "o3", + "branding_label": "tavg-al-hxy-u", + "branded_variable_name": "o3_tavg-al-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.o3", + "cmip7_compound_name": "atmosChem.o3.tavg-al-hxy-u.mon.GLB", + "uid": "19bedbc2-81b1-11e6-92de-ac72891c3257" + }, + "atmosChem.o3.tavg-p19-hxy-air.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmosChem", + "standard_name": "mole_fraction_of_ozone_in_air", + "units": "mol mol-1", + "cell_methods": "area: time: mean where air", + "cell_measures": "area: areacella", + "long_name": "Mole Fraction of O3", + "comment": "Mole fraction is used in the construction mole_fraction_of_X_in_Y, where X is a material constituent of Y.", + "dimensions": "longitude latitude plev19 time", + "out_name": "o3", + "type": "real", + "positive": "", + "spatial_shape": "XY-P19", + "temporal_shape": "time-intv", + "cmip6_table": "Amon", + "physical_parameter_name": "o3", + "variableRootDD": "o3", + "branding_label": "tavg-p19-hxy-air", + "branded_variable_name": "o3_tavg-p19-hxy-air", + "region": "GLB", + "cmip6_compound_name": "Amon.o3", + "cmip7_compound_name": "atmosChem.o3.tavg-p19-hxy-air.mon.GLB", + "uid": "59fbf2a8-c77d-11e6-8a33-5404a60d96b5" + }, + "atmosChem.o3.tavg-p39-hy-air.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmosChem", + "standard_name": "mole_fraction_of_ozone_in_air", + "units": "mol mol-1", + "cell_methods": "longitude: time: mean where air", + "cell_measures": "", + "long_name": "Mole Fraction of O3", + "comment": "Mole fraction is used in the construction mole_fraction_of_X_in_Y, where X is a material constituent of Y.", + "dimensions": "latitude plev39 time", + "out_name": "o3", + "type": "real", + "positive": "", + "spatial_shape": "Y-P39", + "temporal_shape": "time-intv", + "cmip6_table": "AERmonZ", + "physical_parameter_name": "o3", + "variableRootDD": "o3", + "branding_label": "tavg-p39-hy-air", + "branded_variable_name": "o3_tavg-p39-hy-air", + "region": "GLB", + "cmip6_compound_name": "AERmonZ.o3", + "cmip7_compound_name": "atmosChem.o3.tavg-p39-hy-air.mon.GLB", + "uid": "fda70c24-96ec-11e6-b81e-c9e268aff03a" + }, + "atmosChem.o3.tclm-p19-hxy-air.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmosChem", + "standard_name": "mole_fraction_of_ozone_in_air", + "units": "mol mol-1", + "cell_methods": "area: mean where air time: mean within years time: mean over years", + "cell_measures": "area: areacella", + "long_name": "Mole Fraction of O3", + "comment": "Mole fraction is used in the construction mole_fraction_of_X_in_Y, where X is a material constituent of Y.", + "dimensions": "longitude latitude plev19 time2", + "out_name": "o3", + "type": "real", + "positive": "", + "spatial_shape": "XY-P19", + "temporal_shape": "climatology", + "cmip6_table": "Amon", + "physical_parameter_name": "o3", + "variableRootDD": "o3", + "branding_label": "tclm-p19-hxy-air", + "branded_variable_name": "o3_tclm-p19-hxy-air", + "region": "GLB", + "cmip6_compound_name": "Amon.o3Clim", + "cmip7_compound_name": "atmosChem.o3.tclm-p19-hxy-air.mon.GLB", + "uid": "59fc01c6-c77d-11e6-8a33-5404a60d96b5" + }, + "atmosChem.o3.tpt-al-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmosChem", + "standard_name": "mole_fraction_of_ozone_in_air", + "units": "mol mol-1", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "O3 volume mixing ratio", + "comment": "This is the mole fraction of ozone in air, sampled on the first day of the month as an instantaneous field.", + "dimensions": "longitude latitude alevel time1", + "out_name": "o3inst", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-point", + "cmip6_table": "AERmon", + "physical_parameter_name": "o3inst", + "variableRootDD": "o3", + "branding_label": "tpt-al-hxy-u", + "branded_variable_name": "o3_tpt-al-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.o3inst", + "cmip7_compound_name": "atmosChem.o3.tpt-al-hxy-u.mon.GLB", + "uid": "83bbfbf4-7f07-11ef-9308-b1dd71e64bec" + }, + "atmosChem.o3ref.tclm-al-hxy-u.fx.GLB": { + "frequency": "fx", + "modeling_realm": "atmosChem", + "standard_name": "reference_mole_fraction_of_ozone_in_air", + "units": "mol mol-1", + "cell_methods": "area: mean time: mean within years time: mean over years", + "cell_measures": "area: areacella", + "long_name": "Fixed Reference Climatology of Mole Fraction of Ozone in Air", + "comment": "This is the ozone mole fraction that is used in a diagnostic call to the model's radiation scheme. It is only applicable when an ozone double call is active in the model.", + "dimensions": "longitude latitude alevel time2", + "out_name": "o3ref", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "climatology", + "cmip6_table": "AERfx", + "physical_parameter_name": "o3ref", + "variableRootDD": "o3ref", + "branding_label": "tclm-al-hxy-u", + "branded_variable_name": "o3ref_tclm-al-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERfx.o3refClim", + "cmip7_compound_name": "atmosChem.o3ref.tclm-al-hxy-u.fx.GLB", + "uid": "80ab72a7-a698-11ef-914a-613c0433d878" + }, + "atmosChem.o3ref.ti-al-hxy-u.fx.GLB": { + "frequency": "fx", + "modeling_realm": "atmosChem", + "standard_name": "reference_mole_fraction_of_ozone_in_air", + "units": "mol mol-1", + "cell_methods": "area: mean", + "cell_measures": "area: areacella", + "long_name": "Fixed Reference Mole Fraction of Ozone in Air", + "comment": "This is the ozone mole fraction that is used in a diagnostic call to the model's radiation scheme. It is only applicable when an ozone double call is active in the model.", + "dimensions": "longitude latitude alevel", + "out_name": "o3ref", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "None", + "cmip6_table": "AERfx", + "physical_parameter_name": "o3ref", + "variableRootDD": "o3ref", + "branding_label": "ti-al-hxy-u", + "branded_variable_name": "o3ref_ti-al-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERfx.o3ref", + "cmip7_compound_name": "atmosChem.o3ref.ti-al-hxy-u.fx.GLB", + "uid": "83bbfc2b-7f07-11ef-9308-b1dd71e64bec" + }, + "atmosChem.o3ste.tavg-al-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmosChem", + "standard_name": "mole_fraction_of_ozone_in_air", + "units": "mol mol-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Stratospheric Ozone Tracer Volume Mixing Ratio", + "comment": "Ozone tracer intended to map out strat-trop exchange (STE) of ozone.", + "dimensions": "longitude latitude alevel time", + "out_name": "o3ste", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "o3ste", + "variableRootDD": "o3ste", + "branding_label": "tavg-al-hxy-u", + "branded_variable_name": "o3ste_tavg-al-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.o3ste", + "cmip7_compound_name": "atmosChem.o3ste.tavg-al-hxy-u.mon.GLB", + "uid": "fdb19130-96ec-11e6-b81e-c9e268aff03a" + }, + "atmosChem.rlutch4ref.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmosChem", + "standard_name": "toa_outgoing_longwave_flux_assuming_reference_mole_fraction_of_methane_in_air", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "TOA outgoing longwave flux assuming reference methane field", + "comment": "This is the outgoing longwave flux at the top-of-atmosphere for all-sky conditions from a diagnostic call to the radiation scheme using a reference methane field", + "dimensions": "longitude latitude time", + "out_name": "rlutch4ref", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "rlutch4ref", + "variableRootDD": "rlutch4ref", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "rlutch4ref_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.rlutch4ref", + "cmip7_compound_name": "atmosChem.rlutch4ref.tavg-u-hxy-u.mon.GLB", + "uid": "83bbfbf3-7f07-11ef-9308-b1dd71e64bec" + }, + "atmosChem.rlutcsch4ref.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmosChem", + "standard_name": "toa_outgoing_longwave_flux_assuming_clear_sky_and_reference_mole_fraction_of_methane_in_air", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "TOA outgoing longwave flux assuming clear sky and reference methane field", + "comment": "This is the outgoing longwave flux at the top-of-atmosphere for clear-sky conditions from a diagnostic call to the radiation scheme with a reference methane field", + "dimensions": "longitude latitude time", + "out_name": "rlutcsch4ref", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "rlutcsch4ref", + "variableRootDD": "rlutcsch4ref", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "rlutcsch4ref_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.rlutcsch4ref", + "cmip7_compound_name": "atmosChem.rlutcsch4ref.tavg-u-hxy-u.mon.GLB", + "uid": "83bbfbf2-7f07-11ef-9308-b1dd71e64bec" + }, + "atmosChem.rlutcso3ref.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmosChem", + "standard_name": "toa_outgoing_longwave_flux_assuming_clear_sky_and_reference_mole_fraction_of_ozone_in_air", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "TOA outgoing longwave flux assuming clear sky and reference ozone field", + "comment": "This is the outgoing longwave flux at the top-of-atmosphere for clear-sky conditions from a diagnostic call to the radiation scheme using a reference ozone field", + "dimensions": "longitude latitude time", + "out_name": "rlutcso3ref", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "rlutcso3ref", + "variableRootDD": "rlutcso3ref", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "rlutcso3ref_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.rlutcso3ref", + "cmip7_compound_name": "atmosChem.rlutcso3ref.tavg-u-hxy-u.mon.GLB", + "uid": "83bbfbf1-7f07-11ef-9308-b1dd71e64bec" + }, + "atmosChem.rluto3ref.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmosChem", + "standard_name": "toa_outgoing_longwave_flux_assuming_reference_mole_fraction_of_ozone_in_air", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "toa_outgoing_longwave_flux_assuming_reference_mole_fraction_of_ozone_in_air", + "comment": "This is outgoing longwave flux at the top-of-atmosphere for all-sky conditions from a diagnostic call to the radiation scheme using a reference ozone field", + "dimensions": "longitude latitude time", + "out_name": "rluto3ref", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "rluto3ref", + "variableRootDD": "rluto3ref", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "rluto3ref_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.rluto3ref", + "cmip7_compound_name": "atmosChem.rluto3ref.tavg-u-hxy-u.mon.GLB", + "uid": "83bbfbf0-7f07-11ef-9308-b1dd71e64bec" + }, + "atmosChem.rsutch4ref.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmosChem", + "standard_name": "toa_outgoing_shortwave_flux_assuming_reference_mole_fraction_of_methane_in_air", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "TOA outgoing shortwave flux assuming reference methane", + "comment": "This is the outgoing shortwave flux at the top-of-atmosphere for all-sky conditions from a diagnostic call to the radiation scheme with a reference methane field", + "dimensions": "longitude latitude time", + "out_name": "rsutch4ref", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "rsutch4ref", + "variableRootDD": "rsutch4ref", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "rsutch4ref_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.rsutch4ref", + "cmip7_compound_name": "atmosChem.rsutch4ref.tavg-u-hxy-u.mon.GLB", + "uid": "83bbfbef-7f07-11ef-9308-b1dd71e64bec" + }, + "atmosChem.rsutcsch4ref.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmosChem", + "standard_name": "toa_outgoing_shortwave_flux_assuming_clear_sky_and_reference_mole_fraction_of_methane_in_air", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "TOA outgoing shortwave flux assuming clear-sky and reference methane field", + "comment": "This is the outgoing shortwave flux at the top-of-atmosphere for clear-sky conditions from a diagnostic call to the radiation scheme with a reference methane field", + "dimensions": "longitude latitude time", + "out_name": "rsutcsch4ref", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "rsutcsch4ref", + "variableRootDD": "rsutcsch4ref", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "rsutcsch4ref_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.rsutcsch4ref", + "cmip7_compound_name": "atmosChem.rsutcsch4ref.tavg-u-hxy-u.mon.GLB", + "uid": "83bbfbee-7f07-11ef-9308-b1dd71e64bec" + }, + "atmosChem.rsutcso3ref.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmosChem", + "standard_name": "toa_outgoing_shortwave_flux_assuming_clear_sky_and_reference_mole_fraction_of_ozone_in_air", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "TOA shortwave flux assuming clear sky and reference ozone", + "comment": "This represents the top-of-atmosphere outgoing shortwave radiative flux assuming clear-sky conditions when a reference ozone field is used in a diagnostic call to the radiation scheme", + "dimensions": "longitude latitude time", + "out_name": "rsutcso3ref", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "rsutcso3ref", + "variableRootDD": "rsutcso3ref", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "rsutcso3ref_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.rsutcso3ref", + "cmip7_compound_name": "atmosChem.rsutcso3ref.tavg-u-hxy-u.mon.GLB", + "uid": "83bbfbed-7f07-11ef-9308-b1dd71e64bec" + }, + "atmosChem.rsuto3ref.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmosChem", + "standard_name": "toa_outgoing_shortwave_flux_assuming_reference_mole_fraction_of_ozone_in_air", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "TOA shortwave flux assuming reference ozone field", + "comment": "This is top-of-atmosphere outgoing shortwave flux for all-sky conditions from a diagnostic call to the radiation scheme, using a reference ozone field", + "dimensions": "longitude latitude time", + "out_name": "rsuto3ref", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "rsuto3ref", + "variableRootDD": "rsuto3ref", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "rsuto3ref_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.rsuto3ref", + "cmip7_compound_name": "atmosChem.rsuto3ref.tavg-u-hxy-u.mon.GLB", + "uid": "83bbfbec-7f07-11ef-9308-b1dd71e64bec" + }, + "atmosChem.stratch4loss.tavg-al-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmosChem", + "standard_name": "tendency_of_atmosphere_mole_concentration_of_methane_due_to_chemical_destruction", + "units": "mol m-3 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Loss of Stratospheric Methane by all chemical destruction", + "comment": "This is the loss rate of stratospheric methane by all chemical destruction. The distinction between the stratosphere and troposphere should be consistent with the tropopause as used in the calculation of the tropopause pressure (ptp). It should have zero values in the troposphere.", + "dimensions": "longitude latitude alevel time", + "out_name": "stratch4loss", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "stratch4loss", + "variableRootDD": "stratch4loss", + "branding_label": "tavg-al-hxy-u", + "branded_variable_name": "stratch4loss_tavg-al-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.stratch4loss", + "cmip7_compound_name": "atmosChem.stratch4loss.tavg-al-hxy-u.mon.GLB", + "uid": "83bbfbeb-7f07-11ef-9308-b1dd71e64bec" + }, + "atmosChem.tropch4loss.tavg-al-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmosChem", + "standard_name": "tendency_of_atmosphere_mole_concentration_of_methane_due_to_chemical_destruction", + "units": "mol m-3 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Loss of Tropospheric Methane by all chemical destruction", + "comment": "This is the loss rate of tropospheric methane by all chemical destruction. The distinction between stratosphere and troposphere should be consistent with the tropopause used in the calculation of the tropopause pressure (ptp). It should have zero values in the stratosphere.", + "dimensions": "longitude latitude alevel time", + "out_name": "tropch4loss", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "tropch4loss", + "variableRootDD": "tropch4loss", + "branding_label": "tavg-al-hxy-u", + "branded_variable_name": "tropch4loss_tavg-al-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.tropch4loss", + "cmip7_compound_name": "atmosChem.tropch4loss.tavg-al-hxy-u.mon.GLB", + "uid": "83bbfbe8-7f07-11ef-9308-b1dd71e64bec" + }, + "atmosChem.tropch4lossoh.tavg-al-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmosChem", + "standard_name": "tendency_of_atmosphere_mole_concentration_of_methane_due_to_chemical_destruction_by_hydroxyl_radical", + "units": "mol m-3 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Tropospheric loss of methane by OH", + "comment": "This is the loss rate of tropospheric methane due to reaction with the hydroxy (OH) radical. The distinction between stratosphere and troposphere should be consistent with the tropopause used to calculate the pressure of the tropopause (ptp). It should have zero values in the stratosphere.", + "dimensions": "longitude latitude alevel time", + "out_name": "tropch4lossoh", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "tropch4lossoh", + "variableRootDD": "tropch4lossoh", + "branding_label": "tavg-al-hxy-u", + "branded_variable_name": "tropch4lossoh_tavg-al-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.tropch4lossoh", + "cmip7_compound_name": "atmosChem.tropch4lossoh.tavg-al-hxy-u.mon.GLB", + "uid": "83bbfbe7-7f07-11ef-9308-b1dd71e64bec" + }, + "atmosChem.tropdo3chm.tavg-al-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmosChem", + "standard_name": "tendency_of_atmosphere_mole_concentration_of_ozone_due_to_net_chemical_production", + "units": "mol m-3 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Net Chemistry Tendency of O3 in troposphere", + "comment": "This is the net chemical tendency of ozone in the troposphere. The distinction between the stratosphere and troposphere should be consistent with the definition of the tropopause used in the calculation of the tropopause pressure (ptp). It should have zero values in the stratosphere.", + "dimensions": "longitude latitude alevel time", + "out_name": "tropdo3chm", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "tropdo3chm", + "variableRootDD": "tropdo3chm", + "branding_label": "tavg-al-hxy-u", + "branded_variable_name": "tropdo3chm_tavg-al-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.tropdo3chm", + "cmip7_compound_name": "atmosChem.tropdo3chm.tavg-al-hxy-u.mon.GLB", + "uid": "83bbfbe6-7f07-11ef-9308-b1dd71e64bec" + }, + "atmosChem.tropo3ste.tavg-al-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmosChem", + "standard_name": "mole_fraction_of_ozone_in_air", + "units": "mol mol-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Tropospheric ozone volume mixing ratio due to stratosphere-troposphere exchange (STE)", + "comment": "Ozone tracer intended to map out strat-trop exchange (STE) of ozone in the troposphere. It represents the ozone volume mixing ratio in the troposphere that is considered to be stratospheric in origin. It should be consistent with the definition of tropopause used to calculate the pressure of the tropopause (ptp). It should have zero values in the stratosphere and non-zero positive values in the troposphere.", + "dimensions": "longitude latitude alevel time", + "out_name": "tropo3ste", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "tropo3ste", + "variableRootDD": "tropo3ste", + "branding_label": "tavg-al-hxy-u", + "branded_variable_name": "tropo3ste_tavg-al-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.tropo3ste", + "cmip7_compound_name": "atmosChem.tropo3ste.tavg-al-hxy-u.mon.GLB", + "uid": "83bbfbe5-7f07-11ef-9308-b1dd71e64bec" + }, + "atmosChem.wethno3.tavg-al-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmosChem", + "standard_name": "tendency_of_atmosphere_mass_content_of_nitric_acid_due_to_wet_deposition", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "wet deposition of HNO3", + "comment": "This is the loss rate of nitric acid (HNO3) from the atmosphere due to wet deposition", + "dimensions": "longitude latitude alevel time", + "out_name": "wethno3", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "wethno3", + "variableRootDD": "wethno3", + "branding_label": "tavg-al-hxy-u", + "branded_variable_name": "wethno3_tavg-al-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.wethno3", + "cmip7_compound_name": "atmosChem.wethno3.tavg-al-hxy-u.mon.GLB", + "uid": "83bbfbe4-7f07-11ef-9308-b1dd71e64bec" + }, + "atmosChem.wetnh3.tavg-u-hxy-u.day.GLB": { + "frequency": "day", + "modeling_realm": "atmosChem", + "standard_name": "minus_tendency_of_atmosphere_mass_content_of_ammonia_due_to_wet_deposition", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Daily Wet Deposition Rate of NH3", + "comment": "Daily Wet Deposition Rate of NH3 at surface. Vertically integrated throughout the column to the surface.", + "dimensions": "longitude latitude time", + "out_name": "wetnh3", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "AERday", + "physical_parameter_name": "wetnh3", + "variableRootDD": "wetnh3", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "wetnh3_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERday.wetnh3", + "cmip7_compound_name": "atmosChem.wetnh3.tavg-u-hxy-u.day.GLB", + "uid": "83bbfc2f-7f07-11ef-9308-b1dd71e64bec" + }, + "atmosChem.wetnh3.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmosChem", + "standard_name": "minus_tendency_of_atmosphere_mass_content_of_ammonia_due_to_wet_deposition", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Wet Deposition Rate of NH3", + "comment": "Surface deposition rate of ammonia (NH3) due to wet processes", + "dimensions": "longitude latitude time", + "out_name": "wetnh3", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "wetnh3", + "variableRootDD": "wetnh3", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "wetnh3_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.wetnh3", + "cmip7_compound_name": "atmosChem.wetnh3.tavg-u-hxy-u.mon.GLB", + "uid": "19be2a60-81b1-11e6-92de-ac72891c3257" + }, + "atmosChem.wetnh4.tavg-u-hxy-u.day.GLB": { + "frequency": "day", + "modeling_realm": "atmosChem", + "standard_name": "minus_tendency_of_atmosphere_mass_content_of_ammonium_dry_aerosol_particles_due_to_wet_deposition", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Daily Wet Deposition Rate of NH4", + "comment": "Daily Wet Deposition Rate of NH4 at surface. Vertically integrated throughout the column to the surface.", + "dimensions": "longitude latitude time", + "out_name": "wetnh4", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "AERday", + "physical_parameter_name": "wetnh4", + "variableRootDD": "wetnh4", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "wetnh4_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERday.wetnh4", + "cmip7_compound_name": "atmosChem.wetnh4.tavg-u-hxy-u.day.GLB", + "uid": "83bbfc2e-7f07-11ef-9308-b1dd71e64bec" + }, + "atmosChem.wetnh4.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmosChem", + "standard_name": "minus_tendency_of_atmosphere_mass_content_of_ammonium_dry_aerosol_particles_due_to_wet_deposition", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Wet Deposition Rate of NH4", + "comment": "Surface deposition rate of ammonium (NH4) due to wet processes", + "dimensions": "longitude latitude time", + "out_name": "wetnh4", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "wetnh4", + "variableRootDD": "wetnh4", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "wetnh4_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.wetnh4", + "cmip7_compound_name": "atmosChem.wetnh4.tavg-u-hxy-u.mon.GLB", + "uid": "19be22b8-81b1-11e6-92de-ac72891c3257" + }, + "atmosChem.wetno3.tavg-al-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmosChem", + "standard_name": "tendency_of_atmosphere_mass_content_of_nitrate_dry_aerosol_particles_due_to_wet_deposition", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Wet deposition of nitrate aerosol", + "comment": "This is the loss rate of nitrate aerosol from the atmosphere due to wet deposition", + "dimensions": "longitude latitude alevel time", + "out_name": "wetno3", + "type": "real", + "positive": "", + "spatial_shape": "XY-A", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "wetno3", + "variableRootDD": "wetno3", + "branding_label": "tavg-al-hxy-u", + "branded_variable_name": "wetno3_tavg-al-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.wetno3", + "cmip7_compound_name": "atmosChem.wetno3.tavg-al-hxy-u.mon.GLB", + "uid": "83bbfbe3-7f07-11ef-9308-b1dd71e64bec" + }, + "atmosChem.wetnoy.tavg-u-hxy-u.day.GLB": { + "frequency": "day", + "modeling_realm": "atmosChem", + "standard_name": "minus_tendency_of_atmosphere_mass_content_of_noy_expressed_as_nitrogen_due_to_wet_deposition", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Daily Wet Deposition Rate of NOy", + "comment": "Daily Wet Deposition Rate of NOy at surface. Vertically integrated throughout the column to the surface.", + "dimensions": "longitude latitude time", + "out_name": "wetnoy", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "AERday", + "physical_parameter_name": "wetnoy", + "variableRootDD": "wetnoy", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "wetnoy_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERday.wetnoy", + "cmip7_compound_name": "atmosChem.wetnoy.tavg-u-hxy-u.day.GLB", + "uid": "83bbfc2d-7f07-11ef-9308-b1dd71e64bec" + }, + "atmosChem.wetnoy.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "atmosChem", + "standard_name": "minus_tendency_of_atmosphere_mass_content_of_noy_expressed_as_nitrogen_due_to_wet_deposition", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Wet Deposition Rate of NOy Including Aerosol Nitrate", + "comment": "NOy is the sum of all simulated oxidized nitrogen species, out of NO, NO2, HNO3, HNO4, NO3aerosol, NO3(radical), N2O5, PAN, other organic nitrates.", + "dimensions": "longitude latitude time", + "out_name": "wetnoy", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "AERmon", + "physical_parameter_name": "wetnoy", + "variableRootDD": "wetnoy", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "wetnoy_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "AERmon.wetnoy", + "cmip7_compound_name": "atmosChem.wetnoy.tavg-u-hxy-u.mon.GLB", + "uid": "19beaf58-81b1-11e6-92de-ac72891c3257" + }, + "land.albc.tavg-u-hxy-veg.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "canopy_albedo", + "units": "1", + "cell_methods": "area: time: mean where vegetation (weighted by canopy area and by downwelling shortwave radiation at the surface)", + "cell_measures": "area: areacella", + "long_name": "Canopy Albedo", + "comment": "Canopy Albedo", + "dimensions": "longitude latitude time", + "out_name": "albc", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "albc", + "variableRootDD": "albc", + "branding_label": "tavg-u-hxy-veg", + "branded_variable_name": "albc_tavg-u-hxy-veg", + "region": "GLB", + "cmip6_compound_name": "Emon.albc", + "cmip7_compound_name": "land.albc.tavg-u-hxy-veg.mon.GLB", + "uid": "80ab7445-a698-11ef-914a-613c0433d878" + }, + "land.areacellg.ti-u-hxy-u.fx.ATA": { + "frequency": "fx", + "modeling_realm": "land", + "standard_name": "cell_area", + "units": "m2", + "cell_methods": "area: sum", + "cell_measures": "", + "long_name": "Grid-Cell Area for Ice Sheet Variables", + "comment": "Cell areas any grid used to report ice sheet variables. These cell areas should be defined to enable exact calculation of area integrals (e.g., of vertical fluxes of energy at the surface and top of the atmosphere)", + "dimensions": "longitude latitude", + "out_name": "areacellg", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "None", + "cmip6_table": "IfxAnt", + "physical_parameter_name": "areacellg", + "variableRootDD": "areacellg", + "branding_label": "ti-u-hxy-u", + "branded_variable_name": "areacellg_ti-u-hxy-u", + "region": "ATA", + "cmip6_compound_name": "IfxAnt.areacellg", + "cmip7_compound_name": "land.areacellg.ti-u-hxy-u.fx.ATA", + "uid": "d5b3804a-c78d-11e6-9b25-5404a60d96b5" + }, + "land.areacellg.ti-u-hxy-u.fx.GRL": { + "frequency": "fx", + "modeling_realm": "land", + "standard_name": "cell_area", + "units": "m2", + "cell_methods": "area: sum", + "cell_measures": "", + "long_name": "Grid-Cell Area for Ice Sheet Variables", + "comment": "Cell areas any grid used to report ice sheet variables. These cell areas should be defined to enable exact calculation of area integrals (e.g., of vertical fluxes of energy at the surface and top of the atmosphere)", + "dimensions": "longitude latitude", + "out_name": "areacellg", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "None", + "cmip6_table": "IfxGre", + "physical_parameter_name": "areacellg", + "variableRootDD": "areacellg", + "branding_label": "ti-u-hxy-u", + "branded_variable_name": "areacellg_ti-u-hxy-u", + "region": "GRL", + "cmip6_compound_name": "IfxGre.areacellg", + "cmip7_compound_name": "land.areacellg.ti-u-hxy-u.fx.GRL", + "uid": "d5b36dbc-c78d-11e6-9b25-5404a60d96b5" + }, + "land.areacellr.ti-u-hxy-u.fx.GLB": { + "frequency": "fx", + "modeling_realm": "land", + "standard_name": "cell_area", + "units": "m2", + "cell_methods": "area: sum", + "cell_measures": "", + "long_name": "Grid-Cell Area for River Model Variables", + "comment": "Cell areas for any grid used to report river model variables (may be the same as for atmospheric variables). These cell areas should be defined to enable exact calculation of area integrals (e.g., of vertical fluxes of energy at the surface and top of the atmosphere).", + "dimensions": "longitude latitude", + "out_name": "areacellr", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "None", + "cmip6_table": "fx", + "physical_parameter_name": "areacellr", + "variableRootDD": "areacellr", + "branding_label": "ti-u-hxy-u", + "branded_variable_name": "areacellr_ti-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "fx.areacellr", + "cmip7_compound_name": "land.areacellr.ti-u-hxy-u.fx.GLB", + "uid": "8306180c-76ca-11e7-ba39-ac72891c3257" + }, + "land.baresoilFrac.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "area_fraction", + "units": "%", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Bare Soil Percentage Area Coverage", + "comment": "Percentage of entire grid cell that is covered by bare soil.", + "dimensions": "longitude latitude time typebare", + "out_name": "baresoilFrac", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Lmon", + "physical_parameter_name": "baresoilFrac", + "variableRootDD": "baresoilFrac", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "baresoilFrac_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "Lmon.baresoilFrac", + "cmip7_compound_name": "land.baresoilFrac.tavg-u-hxy-u.mon.GLB", + "uid": "baa84fd4-e5dd-11e5-8482-ac72891c3257" + }, + "land.baresoilFrac.tavg-u-hxy-u.yr.GLB": { + "frequency": "yr", + "modeling_realm": "land", + "standard_name": "area_fraction", + "units": "%", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Bare Soil Percentage Area Coverage", + "comment": "Percentage of entire grid cell that is covered by bare soil.", + "dimensions": "longitude latitude time typebare", + "out_name": "baresoilFrac", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Eyr", + "physical_parameter_name": "baresoilFrac", + "variableRootDD": "baresoilFrac", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "baresoilFrac_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "Eyr.baresoilFrac", + "cmip7_compound_name": "land.baresoilFrac.tavg-u-hxy-u.yr.GLB", + "uid": "fb018658-be37-11e6-bac1-5404a60d96b5" + }, + "land.burntFractionAll.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "area_fraction", + "units": "%", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Percentage of Entire Grid Cell That Is Covered by Burnt Vegetation (All Classes)", + "comment": "Percentage of grid cell burned due to all fires including natural and anthropogenic fires and those associated with anthropogenic land use change", + "dimensions": "longitude latitude time typeburnt", + "out_name": "burntFractionAll", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Lmon", + "physical_parameter_name": "burntFractionAll", + "variableRootDD": "burntFractionAll", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "burntFractionAll_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "Lmon.burntFractionAll", + "cmip7_compound_name": "land.burntFractionAll.tavg-u-hxy-u.mon.GLB", + "uid": "baa88256-e5dd-11e5-8482-ac72891c3257" + }, + "land.c13Land.tavg-u-hxy-lnd.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "mass_content_of_13C_in_vegetation_and_litter_and_soil_and_forestry_and_agricultural_products", + "units": "kg m-2", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Mass of 13C in All Terrestrial Carbon Pools", + "comment": "Carbon-13 mass content per unit area in vegetation (any living plants e.g. trees, shrubs, grass), litter (dead plant material in or above the soil), soil, and forestry and agricultural products (e.g. paper, cardboard, furniture, timber for construction, biofuels and food for both humans and livestock).", + "dimensions": "longitude latitude time", + "out_name": "c13Land", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "c13Land", + "variableRootDD": "c13Land", + "branding_label": "tavg-u-hxy-lnd", + "branded_variable_name": "c13Land_tavg-u-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "Emon.c13Land", + "cmip7_compound_name": "land.c13Land.tavg-u-hxy-lnd.mon.GLB", + "uid": "8b7f725e-4a5b-11e6-9cd2-ac72891c3257" + }, + "land.c13Litter.tavg-u-hxy-lnd.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "litter_mass_content_of_13C", + "units": "kg m-2", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Mass of 13C in Litter Pool", + "comment": "Carbon-13 mass content per unit area litter (dead plant material in or above the soil).", + "dimensions": "longitude latitude time", + "out_name": "c13Litter", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "c13Litter", + "variableRootDD": "c13Litter", + "branding_label": "tavg-u-hxy-lnd", + "branded_variable_name": "c13Litter_tavg-u-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "Emon.c13Litter", + "cmip7_compound_name": "land.c13Litter.tavg-u-hxy-lnd.mon.GLB", + "uid": "8b7f6728-4a5b-11e6-9cd2-ac72891c3257" + }, + "land.c13Soil.tavg-u-hxy-lnd.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "soil_mass_content_of_13C", + "units": "kg m-2", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Mass of 13C in Soil Pool", + "comment": "Carbon-13 mass content per unit area in soil.", + "dimensions": "longitude latitude time", + "out_name": "c13Soil", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "c13Soil", + "variableRootDD": "c13Soil", + "branding_label": "tavg-u-hxy-lnd", + "branded_variable_name": "c13Soil_tavg-u-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "Emon.c13Soil", + "cmip7_compound_name": "land.c13Soil.tavg-u-hxy-lnd.mon.GLB", + "uid": "6f6af744-9acb-11e6-b7ee-ac72891c3257" + }, + "land.c13Veg.tavg-u-hxy-lnd.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "vegetation_mass_content_of_13C", + "units": "kg m-2", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Mass of 13C in Vegetation", + "comment": "Carbon-13 mass content per unit area in vegetation (any living plants e.g. trees, shrubs, grass).", + "dimensions": "longitude latitude time", + "out_name": "c13Veg", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "c13Veg", + "variableRootDD": "c13Veg", + "branding_label": "tavg-u-hxy-lnd", + "branded_variable_name": "c13Veg_tavg-u-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "Emon.c13Veg", + "cmip7_compound_name": "land.c13Veg.tavg-u-hxy-lnd.mon.GLB", + "uid": "8b7f6192-4a5b-11e6-9cd2-ac72891c3257" + }, + "land.c14Land.tavg-u-hxy-lnd.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "mass_content_of_14C_in_vegetation_and_litter_and_soil_and_forestry_and_agricultural_products", + "units": "kg m-2", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Mass of 14C in All Terrestrial Carbon Pools", + "comment": "Carbon-14 mass content per unit area in vegetation (any living plants e.g. trees, shrubs, grass), litter (dead plant material in or above the soil), soil, and forestry and agricultural products (e.g. paper, cardboard, furniture, timber for construction, biofuels and food for both humans and livestock).", + "dimensions": "longitude latitude time", + "out_name": "c14Land", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "c14Land", + "variableRootDD": "c14Land", + "branding_label": "tavg-u-hxy-lnd", + "branded_variable_name": "c14Land_tavg-u-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "Emon.c14Land", + "cmip7_compound_name": "land.c14Land.tavg-u-hxy-lnd.mon.GLB", + "uid": "8b7f5bfc-4a5b-11e6-9cd2-ac72891c3257" + }, + "land.c14Litter.tavg-u-hxy-lnd.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "litter_mass_content_of_14C", + "units": "kg m-2", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Mass of 14C in Litter Pool", + "comment": "Carbon-14 mass content per unit area litter (dead plant material in or above the soil).", + "dimensions": "longitude latitude time", + "out_name": "c14Litter", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "c14Litter", + "variableRootDD": "c14Litter", + "branding_label": "tavg-u-hxy-lnd", + "branded_variable_name": "c14Litter_tavg-u-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "Emon.c14Litter", + "cmip7_compound_name": "land.c14Litter.tavg-u-hxy-lnd.mon.GLB", + "uid": "8b7f5080-4a5b-11e6-9cd2-ac72891c3257" + }, + "land.c14Soil.tavg-u-hxy-lnd.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "soil_mass_content_of_14C", + "units": "kg m-2", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Mass of 14C in Soil Pool", + "comment": "Carbon-14 mass content per unit area in soil.", + "dimensions": "longitude latitude time", + "out_name": "c14Soil", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "c14Soil", + "variableRootDD": "c14Soil", + "branding_label": "tavg-u-hxy-lnd", + "branded_variable_name": "c14Soil_tavg-u-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "Emon.c14Soil", + "cmip7_compound_name": "land.c14Soil.tavg-u-hxy-lnd.mon.GLB", + "uid": "8b7f5652-4a5b-11e6-9cd2-ac72891c3257" + }, + "land.c14Veg.tavg-u-hxy-lnd.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "vegetation_mass_content_of_14C", + "units": "kg m-2", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Mass of 14C in Vegetation", + "comment": "only requested for DECK HIST", + "dimensions": "longitude latitude time", + "out_name": "c14Veg", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "c14Veg", + "variableRootDD": "c14Veg", + "branding_label": "tavg-u-hxy-lnd", + "branded_variable_name": "c14Veg_tavg-u-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "Emon.c14Veg", + "cmip7_compound_name": "land.c14Veg.tavg-u-hxy-lnd.mon.GLB", + "uid": "6f6ad16a-9acb-11e6-b7ee-ac72891c3257" + }, + "land.c3PftFrac.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "area_fraction", + "units": "%", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Percentage Cover by C3 Plant Functional Type", + "comment": "Percentage of entire grid cell that is covered by C3 PFTs (including grass, crops, and trees).", + "dimensions": "longitude latitude time typec3pft", + "out_name": "c3PftFrac", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Lmon", + "physical_parameter_name": "c3PftFrac", + "variableRootDD": "c3PftFrac", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "c3PftFrac_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "Lmon.c3PftFrac", + "cmip7_compound_name": "land.c3PftFrac.tavg-u-hxy-u.mon.GLB", + "uid": "baa897e6-e5dd-11e5-8482-ac72891c3257" + }, + "land.c4PftFrac.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "area_fraction", + "units": "%", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Percentage Cover by C4 Plant Functional Type", + "comment": "Percentage of entire grid cell that is covered by C4 PFTs (including grass and crops).", + "dimensions": "longitude latitude time typec4pft", + "out_name": "c4PftFrac", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Lmon", + "physical_parameter_name": "c4PftFrac", + "variableRootDD": "c4PftFrac", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "c4PftFrac_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "Lmon.c4PftFrac", + "cmip7_compound_name": "land.c4PftFrac.tavg-u-hxy-u.mon.GLB", + "uid": "baa89f8e-e5dd-11e5-8482-ac72891c3257" + }, + "land.cGeologicStorage.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "carbon_mass_content_of_geological_storage", + "units": "kg m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Carbon Mass in Geologic Storage", + "comment": "Mass of carbon that has been intentionally sequestered in geologic storage. The definition of geologic storage here is that it be stored for periods of time that are long as compared to the simulation.", + "dimensions": "longitude latitude time", + "out_name": "cGeologicStorage", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Lmon", + "physical_parameter_name": "cGeologicStorage", + "variableRootDD": "cGeologicStorage", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "cGeologicStorage_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "Lmon.cGeologicStorage", + "cmip7_compound_name": "land.cGeologicStorage.tavg-u-hxy-u.mon.GLB", + "uid": "80ab72a0-a698-11ef-914a-613c0433d878" + }, + "land.cLand.tavg-u-hxy-lnd.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "mass_content_of_carbon_in_vegetation_and_litter_and_soil_and_forestry_and_agricultural_products", + "units": "kg m-2", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Total Carbon in All Terrestrial Carbon Pools", + "comment": "Report missing data over ocean grid cells. For fractional land report value averaged over the land fraction.", + "dimensions": "longitude latitude time", + "out_name": "cLand", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "cLand", + "variableRootDD": "cLand", + "branding_label": "tavg-u-hxy-lnd", + "branded_variable_name": "cLand_tavg-u-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "Emon.cLand", + "cmip7_compound_name": "land.cLand.tavg-u-hxy-lnd.mon.GLB", + "uid": "8b7eded4-4a5b-11e6-9cd2-ac72891c3257" + }, + "land.cLeaf.tavg-u-hxy-lnd.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "leaf_mass_content_of_carbon", + "units": "kg m-2", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Carbon Mass in Leaves", + "comment": "Carbon mass per unit area in leaves.", + "dimensions": "longitude latitude time", + "out_name": "cLeaf", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Lmon", + "physical_parameter_name": "cLeaf", + "variableRootDD": "cLeaf", + "branding_label": "tavg-u-hxy-lnd", + "branded_variable_name": "cLeaf_tavg-u-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "Lmon.cLeaf", + "cmip7_compound_name": "land.cLeaf.tavg-u-hxy-lnd.mon.GLB", + "uid": "baa8aed4-e5dd-11e5-8482-ac72891c3257" + }, + "land.cLitter.tavg-u-hxy-lnd.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "litter_mass_content_of_carbon", + "units": "kg m-2", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Carbon Mass in Litter Pool", + "comment": "\"Litter\" is dead plant material in or above the soil. It is distinct from coarse wood debris. The precise distinction between \"fine\" and \"coarse\" is model dependent. \"Content\" indicates a quantity per unit area. The sum of the quantities with standard names surface_litter_mass_content_of_carbon and subsurface_litter_mass_content_of_carbon has the standard name litter_mass_content_of_carbon.", + "dimensions": "longitude latitude time", + "out_name": "cLitter", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Lmon", + "physical_parameter_name": "cLitter", + "variableRootDD": "cLitter", + "branding_label": "tavg-u-hxy-lnd", + "branded_variable_name": "cLitter_tavg-u-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "Lmon.cLitter", + "cmip7_compound_name": "land.cLitter.tavg-u-hxy-lnd.mon.GLB", + "uid": "baa8b67c-e5dd-11e5-8482-ac72891c3257" + }, + "land.cLitterCwd.tavg-u-hxy-lnd.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "wood_debris_mass_content_of_carbon", + "units": "kg m-2", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Carbon Mass in Coarse Woody Debris", + "comment": "\"Content\" indicates a quantity per unit area. \"Wood debris\" means dead organic matter composed of coarse wood. It is distinct from fine litter. The precise distinction between \"fine\" and \"coarse\" is model dependent.", + "dimensions": "longitude latitude time", + "out_name": "cLitterCwd", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "cLitterCwd", + "variableRootDD": "cLitterCwd", + "branding_label": "tavg-u-hxy-lnd", + "branded_variable_name": "cLitterCwd_tavg-u-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "Emon.cLitterCwd", + "cmip7_compound_name": "land.cLitterCwd.tavg-u-hxy-lnd.mon.GLB", + "uid": "8b8172de-4a5b-11e6-9cd2-ac72891c3257" + }, + "land.cLitterLut.tpt-u-hxy-multi.yr.GLB": { + "frequency": "yr", + "modeling_realm": "land", + "standard_name": "litter_mass_content_of_carbon", + "units": "kg m-2", + "cell_methods": "area: mean where sector time: point", + "cell_measures": "area: areacella", + "long_name": "Carbon in Above and Below-Ground Litter Pools on Land-Use Tiles", + "comment": "end of year values (not annual mean)", + "dimensions": "longitude latitude landuse time1", + "out_name": "cLitterLut", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-point", + "cmip6_table": "Eyr", + "physical_parameter_name": "cLitterLut", + "variableRootDD": "cLitterLut", + "branding_label": "tpt-u-hxy-multi", + "branded_variable_name": "cLitterLut_tpt-u-hxy-multi", + "region": "GLB", + "cmip6_compound_name": "Eyr.cLitterLut", + "cmip7_compound_name": "land.cLitterLut.tpt-u-hxy-multi.yr.GLB", + "uid": "d22e279c-4a9f-11e6-b84e-ac72891c3257" + }, + "land.cLitterSubSurf.tavg-u-hxy-lnd.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "subsurface_litter_mass_content_of_carbon", + "units": "kg m-2", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Carbon Mass in Below-Ground Litter", + "comment": "subsurface litter pool fed by root inputs.", + "dimensions": "longitude latitude time", + "out_name": "cLitterSubSurf", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "cLitterSubSurf", + "variableRootDD": "cLitterSubSurf", + "branding_label": "tavg-u-hxy-lnd", + "branded_variable_name": "cLitterSubSurf_tavg-u-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "Emon.cLitterSubSurf", + "cmip7_compound_name": "land.cLitterSubSurf.tavg-u-hxy-lnd.mon.GLB", + "uid": "8b817e0a-4a5b-11e6-9cd2-ac72891c3257" + }, + "land.cLitterSurf.tavg-u-hxy-lnd.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "surface_litter_mass_content_of_carbon", + "units": "kg m-2", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Carbon Mass in Above-Ground Litter", + "comment": "Surface or near-surface litter pool fed by leaf and above-ground litterfall", + "dimensions": "longitude latitude time", + "out_name": "cLitterSurf", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "cLitterSurf", + "variableRootDD": "cLitterSurf", + "branding_label": "tavg-u-hxy-lnd", + "branded_variable_name": "cLitterSurf_tavg-u-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "Emon.cLitterSurf", + "cmip7_compound_name": "land.cLitterSurf.tavg-u-hxy-lnd.mon.GLB", + "uid": "8b817892-4a5b-11e6-9cd2-ac72891c3257" + }, + "land.cnc.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "vegetation_area_fraction", + "units": "%", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Canopy Covered Area Percentage", + "comment": "Canopy covered fraction", + "dimensions": "longitude latitude time", + "out_name": "cnc", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "cnc", + "variableRootDD": "cnc", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "cnc_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "Emon.cnc", + "cmip7_compound_name": "land.cnc.tavg-u-hxy-u.mon.GLB", + "uid": "80ab7448-a698-11ef-914a-613c0433d878" + }, + "land.cOther.tavg-u-hxy-lnd.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "miscellaneous_living_matter_mass_content_of_carbon", + "units": "kg m-2", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Carbon Mass in Vegetation Components Other than Leaves, Stems and Roots", + "comment": "E.g. fruits, seeds, etc.", + "dimensions": "longitude latitude time", + "out_name": "cOther", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "cOther", + "variableRootDD": "cOther", + "branding_label": "tavg-u-hxy-lnd", + "branded_variable_name": "cOther_tavg-u-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "Emon.cOther", + "cmip7_compound_name": "land.cOther.tavg-u-hxy-lnd.mon.GLB", + "uid": "8b816d2a-4a5b-11e6-9cd2-ac72891c3257" + }, + "land.cProduct.tavg-u-hxy-lnd.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "carbon_mass_content_of_forestry_and_agricultural_products", + "units": "kg m-2", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Carbon Mass in Products of Land-Use Change", + "comment": "Carbon mass per unit area in that has been removed from the environment through land use change.", + "dimensions": "longitude latitude time", + "out_name": "cProduct", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Lmon", + "physical_parameter_name": "cProduct", + "variableRootDD": "cProduct", + "branding_label": "tavg-u-hxy-lnd", + "branded_variable_name": "cProduct_tavg-u-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "Lmon.cProduct", + "cmip7_compound_name": "land.cProduct.tavg-u-hxy-lnd.mon.GLB", + "uid": "baa8d49a-e5dd-11e5-8482-ac72891c3257" + }, + "land.cProductLut.tpt-u-hxy-multi.yr.GLB": { + "frequency": "yr", + "modeling_realm": "land", + "standard_name": "carbon_mass_content_of_forestry_and_agricultural_products", + "units": "kg m-2", + "cell_methods": "area: mean where sector time: point", + "cell_measures": "area: areacella", + "long_name": "Wood and Agricultural Product Pool Carbon Associated with Land-Use Tiles", + "comment": "Anthropogenic pools associated with land use tiles into which harvests and cleared carbon are deposited before release into atmosphere PLUS any remaining anthropogenic pools that may be associated with lands which were converted into land use tiles during reported period. Examples of products include paper, cardboard, timber for construction, and crop harvest for food or fuel. Does NOT include residue which is deposited into soil or litter; end of year values (not annual mean).", + "dimensions": "longitude latitude landuse time1", + "out_name": "cProductLut", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-point", + "cmip6_table": "Eyr", + "physical_parameter_name": "cProductLut", + "variableRootDD": "cProductLut", + "branding_label": "tpt-u-hxy-multi", + "branded_variable_name": "cProductLut_tpt-u-hxy-multi", + "region": "GLB", + "cmip6_compound_name": "Eyr.cProductLut", + "cmip7_compound_name": "land.cProductLut.tpt-u-hxy-multi.yr.GLB", + "uid": "3e26d502-b89b-11e6-be04-ac72891c3257" + }, + "land.cRoot.tavg-u-hxy-lnd.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "root_mass_content_of_carbon", + "units": "kg m-2", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Carbon Mass in Roots", + "comment": "including fine and coarse roots.", + "dimensions": "longitude latitude time", + "out_name": "cRoot", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Lmon", + "physical_parameter_name": "cRoot", + "variableRootDD": "cRoot", + "branding_label": "tavg-u-hxy-lnd", + "branded_variable_name": "cRoot_tavg-u-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "Lmon.cRoot", + "cmip7_compound_name": "land.cRoot.tavg-u-hxy-lnd.mon.GLB", + "uid": "baa8dc06-e5dd-11e5-8482-ac72891c3257" + }, + "land.cropFrac.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "area_fraction", + "units": "%", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Percentage Crop Cover", + "comment": "Percentage of entire grid cell that is covered by crop.", + "dimensions": "longitude latitude time typecrop", + "out_name": "cropFrac", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Lmon", + "physical_parameter_name": "cropFrac", + "variableRootDD": "cropFrac", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "cropFrac_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "Lmon.cropFrac", + "cmip7_compound_name": "land.cropFrac.tavg-u-hxy-u.mon.GLB", + "uid": "baab87f8-e5dd-11e5-8482-ac72891c3257" + }, + "land.cropFrac.tavg-u-hxy-u.yr.GLB": { + "frequency": "yr", + "modeling_realm": "land", + "standard_name": "area_fraction", + "units": "%", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Percentage Crop Cover", + "comment": "Percentage of entire grid cell that is covered by crop.", + "dimensions": "longitude latitude time typecrop", + "out_name": "cropFrac", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Eyr", + "physical_parameter_name": "cropFrac", + "variableRootDD": "cropFrac", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "cropFrac_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "Eyr.cropFrac", + "cmip7_compound_name": "land.cropFrac.tavg-u-hxy-u.yr.GLB", + "uid": "fb017ce4-be37-11e6-bac1-5404a60d96b5" + }, + "land.cropFracC3.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "area_fraction", + "units": "%", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Percentage Cover by C3 Crops", + "comment": "Percentage of entire grid cell covered by C3 crops", + "dimensions": "longitude latitude time typec3crop", + "out_name": "cropFracC3", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "cropFracC3", + "variableRootDD": "cropFracC3", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "cropFracC3_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "Emon.cropFracC3", + "cmip7_compound_name": "land.cropFracC3.tavg-u-hxy-u.mon.GLB", + "uid": "8b81522c-4a5b-11e6-9cd2-ac72891c3257" + }, + "land.cropFracC4.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "area_fraction", + "units": "%", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Percentage Cover by C4 Crops", + "comment": "Percentage of entire grid cell covered by C4 crops", + "dimensions": "longitude latitude time typec4crop", + "out_name": "cropFracC4", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "cropFracC4", + "variableRootDD": "cropFracC4", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "cropFracC4_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "Emon.cropFracC4", + "cmip7_compound_name": "land.cropFracC4.tavg-u-hxy-u.mon.GLB", + "uid": "6f6a8ea8-9acb-11e6-b7ee-ac72891c3257" + }, + "land.cSoil.tavg-d100cm-hxy-lnd.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "carbon_mass_content_of_soil_layer", + "units": "kg m-2", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Carbon Mass in Soil Pool Above 1m Depth", + "comment": "Report missing data over ocean grid cells. For fractional land report value averaged over the land fraction.", + "dimensions": "longitude latitude time sdepth100cm", + "out_name": "cSoilAbove1m", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "cSoilAbove1m", + "variableRootDD": "cSoil", + "branding_label": "tavg-d100cm-hxy-lnd", + "branded_variable_name": "cSoil_tavg-d100cm-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "Emon.cSoilAbove1m", + "cmip7_compound_name": "land.cSoil.tavg-d100cm-hxy-lnd.mon.GLB", + "uid": "e70578ba-aa7f-11e6-9a4a-5404a60d96b5" + }, + "land.cSoil.tavg-sl-hxy-lnd.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "carbon_mass_content_of_soil_layer", + "units": "kg m-2", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Carbon Mass in Each Model Soil Level (Summed over All Soil Carbon Pools in That Level)", + "comment": "for models with vertically discretised soil carbon, report total soil carbon for each level", + "dimensions": "longitude latitude sdepth time", + "out_name": "cSoilLevels", + "type": "real", + "positive": "", + "spatial_shape": "XY-S", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "cSoilLevels", + "variableRootDD": "cSoil", + "branding_label": "tavg-sl-hxy-lnd", + "branded_variable_name": "cSoil_tavg-sl-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "Emon.cSoilLevels", + "cmip7_compound_name": "land.cSoil.tavg-sl-hxy-lnd.mon.GLB", + "uid": "e7071b02-aa7f-11e6-9a4a-5404a60d96b5" + }, + "land.cSoil.tavg-u-hxy-lnd.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "soil_mass_content_of_carbon", + "units": "kg m-2", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Carbon Mass in Model Soil Pool", + "comment": "Carbon mass in the full depth of the soil model.", + "dimensions": "longitude latitude time", + "out_name": "cSoil", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "cSoil", + "variableRootDD": "cSoil", + "branding_label": "tavg-u-hxy-lnd", + "branded_variable_name": "cSoil_tavg-u-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "Emon.cSoil", + "cmip7_compound_name": "land.cSoil.tavg-u-hxy-lnd.mon.GLB", + "uid": "8b7ed3d0-4a5b-11e6-9cd2-ac72891c3257" + }, + "land.cSoilLut.tpt-u-hxy-multi.yr.GLB": { + "frequency": "yr", + "modeling_realm": "land", + "standard_name": "soil_mass_content_of_carbon", + "units": "kg m-2", + "cell_methods": "area: mean where sector time: point", + "cell_measures": "area: areacella", + "long_name": "Carbon in Soil Pool on Land-Use Tiles", + "comment": "end of year values (not annual mean)", + "dimensions": "longitude latitude landuse time1", + "out_name": "cSoilLut", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-point", + "cmip6_table": "Eyr", + "physical_parameter_name": "cSoilLut", + "variableRootDD": "cSoilLut", + "branding_label": "tpt-u-hxy-multi", + "branded_variable_name": "cSoilLut_tpt-u-hxy-multi", + "region": "GLB", + "cmip6_compound_name": "Eyr.cSoilLut", + "cmip7_compound_name": "land.cSoilLut.tpt-u-hxy-multi.yr.GLB", + "uid": "d22e1ea0-4a9f-11e6-b84e-ac72891c3257" + }, + "land.cSoilPools.tavg-u-hxy-lnd.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "soil_mass_content_of_carbon", + "units": "kg m-2", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Carbon Mass in Each Model Soil Pool (Summed over Vertical Levels)", + "comment": "For models with multiple soil carbon pools, report each pool here. If models also have vertical discretisation these should be aggregated", + "dimensions": "longitude latitude soilpools time", + "out_name": "cSoilPools", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "cSoilPools", + "variableRootDD": "cSoilPools", + "branding_label": "tavg-u-hxy-lnd", + "branded_variable_name": "cSoilPools_tavg-u-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "Emon.cSoilPools", + "cmip7_compound_name": "land.cSoilPools.tavg-u-hxy-lnd.mon.GLB", + "uid": "e7071f58-aa7f-11e6-9a4a-5404a60d96b5" + }, + "land.cStem.tavg-u-hxy-lnd.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "stem_mass_content_of_carbon", + "units": "kg m-2", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Carbon Mass in Stem", + "comment": "including sapwood and hardwood.", + "dimensions": "longitude latitude time", + "out_name": "cStem", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "cStem", + "variableRootDD": "cStem", + "branding_label": "tavg-u-hxy-lnd", + "branded_variable_name": "cStem_tavg-u-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "Emon.cStem", + "cmip7_compound_name": "land.cStem.tavg-u-hxy-lnd.mon.GLB", + "uid": "8b816262-4a5b-11e6-9cd2-ac72891c3257" + }, + "land.cVeg.tavg-u-hxy-lnd.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "vegetation_carbon_content", + "units": "kg m-2", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Carbon Mass in Vegetation", + "comment": "Carbon mass per unit area in vegetation.", + "dimensions": "longitude latitude time", + "out_name": "cVeg", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Lmon", + "physical_parameter_name": "cVeg", + "variableRootDD": "cVeg", + "branding_label": "tavg-u-hxy-lnd", + "branded_variable_name": "cVeg_tavg-u-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "Lmon.cVeg", + "cmip7_compound_name": "land.cVeg.tavg-u-hxy-lnd.mon.GLB", + "uid": "baa90258-e5dd-11e5-8482-ac72891c3257" + }, + "land.cVeg.tavg-u-hxy-ng.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "vegetation_carbon_content", + "units": "kg m-2", + "cell_methods": "area: time: mean where natural_grasses (mask=grassFrac)", + "cell_measures": "area: areacella", + "long_name": "Carbon Mass in Vegetation on Grass Tiles", + "comment": "\"Content\" indicates a quantity per unit area. \"Vegetation\" means any plants e.g. trees, shrubs, grass. Plants are autotrophs i.e. \"producers\" of biomass using carbon obtained from carbon dioxide.", + "dimensions": "longitude latitude time", + "out_name": "cVegGrass", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "cVegGrass", + "variableRootDD": "cVeg", + "branding_label": "tavg-u-hxy-ng", + "branded_variable_name": "cVeg_tavg-u-hxy-ng", + "region": "GLB", + "cmip6_compound_name": "Emon.cVegGrass", + "cmip7_compound_name": "land.cVeg.tavg-u-hxy-ng.mon.GLB", + "uid": "e706fac8-aa7f-11e6-9a4a-5404a60d96b5" + }, + "land.cVeg.tavg-u-hxy-shb.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "vegetation_carbon_content", + "units": "kg m-2", + "cell_methods": "area: time: mean where shrubs (mask=shrubFrac)", + "cell_measures": "area: areacella", + "long_name": "Carbon Mass in Vegetation on Shrub Tiles", + "comment": "\"Content\" indicates a quantity per unit area. \"Vegetation\" means any plants e.g. trees, shrubs, grass. Plants are autotrophs i.e. \"producers\" of biomass using carbon obtained from carbon dioxide.", + "dimensions": "longitude latitude time", + "out_name": "cVegShrub", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "cVegShrub", + "variableRootDD": "cVeg", + "branding_label": "tavg-u-hxy-shb", + "branded_variable_name": "cVeg_tavg-u-hxy-shb", + "region": "GLB", + "cmip6_compound_name": "Emon.cVegShrub", + "cmip7_compound_name": "land.cVeg.tavg-u-hxy-shb.mon.GLB", + "uid": "e706f654-aa7f-11e6-9a4a-5404a60d96b5" + }, + "land.cVeg.tavg-u-hxy-tree.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "vegetation_carbon_content", + "units": "kg m-2", + "cell_methods": "area: time: mean where trees (mask=treeFrac)", + "cell_measures": "area: areacella", + "long_name": "Carbon Mass in Vegetation on Tree Tiles", + "comment": "\"Content\" indicates a quantity per unit area. \"Vegetation\" means any plants e.g. trees, shrubs, grass. Plants are autotrophs i.e. \"producers\" of biomass using carbon obtained from carbon dioxide.", + "dimensions": "longitude latitude time", + "out_name": "cVegTree", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "cVegTree", + "variableRootDD": "cVeg", + "branding_label": "tavg-u-hxy-tree", + "branded_variable_name": "cVeg_tavg-u-hxy-tree", + "region": "GLB", + "cmip6_compound_name": "Emon.cVegTree", + "cmip7_compound_name": "land.cVeg.tavg-u-hxy-tree.mon.GLB", + "uid": "e706f1cc-aa7f-11e6-9a4a-5404a60d96b5" + }, + "land.cVegLut.tpt-u-hxy-multi.yr.GLB": { + "frequency": "yr", + "modeling_realm": "land", + "standard_name": "vegetation_carbon_content", + "units": "kg m-2", + "cell_methods": "area: mean where sector time: point", + "cell_measures": "area: areacella", + "long_name": "Carbon in Vegetation on Land-Use Tiles", + "comment": "end of year values (not annual mean)", + "dimensions": "longitude latitude landuse time1", + "out_name": "cVegLut", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-point", + "cmip6_table": "Eyr", + "physical_parameter_name": "cVegLut", + "variableRootDD": "cVegLut", + "branding_label": "tpt-u-hxy-multi", + "branded_variable_name": "cVegLut_tpt-u-hxy-multi", + "region": "GLB", + "cmip6_compound_name": "Eyr.cVegLut", + "cmip7_compound_name": "land.cVegLut.tpt-u-hxy-multi.yr.GLB", + "uid": "d22e2328-4a9f-11e6-b84e-ac72891c3257" + }, + "land.dcw.tavg-u-hxy-lnd.day.GLB": { + "frequency": "day", + "modeling_realm": "land", + "standard_name": "change_over_time_in_canopy_water_amount", + "units": "kg m-2", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Change in Interception Storage", + "comment": "change_over_time_in_canopy_water_amount", + "dimensions": "longitude latitude time", + "out_name": "dcw", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Eday", + "physical_parameter_name": "dcw", + "variableRootDD": "dcw", + "branding_label": "tavg-u-hxy-lnd", + "branded_variable_name": "dcw_tavg-u-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "Eday.dcw", + "cmip7_compound_name": "land.dcw.tavg-u-hxy-lnd.day.GLB", + "uid": "d2287216-4a9f-11e6-b84e-ac72891c3257" + }, + "land.depthl.ti-u-hxy-u.fx.GLB": { + "frequency": "fx", + "modeling_realm": "land", + "standard_name": "depth", + "units": "m", + "cell_methods": "area: mean", + "cell_measures": "area: areacella", + "long_name": "Depth of Lake Below the Surface", + "comment": "Depth of lakes, if this quantity is present in the model. If computed via volume and area, then this is lake volume divided by lake area.", + "dimensions": "longitude latitude", + "out_name": "depthl", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "None", + "cmip6_table": "fx", + "physical_parameter_name": "depthl", + "variableRootDD": "depthl", + "branding_label": "ti-u-hxy-u", + "branded_variable_name": "depthl_ti-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "fx.depthl", + "cmip7_compound_name": "land.depthl.ti-u-hxy-u.fx.GLB", + "uid": "83bbfb99-7f07-11ef-9308-b1dd71e64bec" + }, + "land.depthsl.ti-u-hxy-u.fx.GLB": { + "frequency": "fx", + "modeling_realm": "land", + "standard_name": "depth", + "units": "m", + "cell_methods": "area: mean", + "cell_measures": "area: areacella", + "long_name": "Total (Cumulative) Thickness of All Soil Layers", + "comment": "Total (cumulative) thickness of all soil layers. This is the sum of individual thicknesses of all soil layers.", + "dimensions": "longitude latitude", + "out_name": "depthsl", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "None", + "cmip6_table": "fx", + "physical_parameter_name": "depthsl", + "variableRootDD": "depthsl", + "branding_label": "ti-u-hxy-u", + "branded_variable_name": "depthsl_ti-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "fx.depthsl", + "cmip7_compound_name": "land.depthsl.ti-u-hxy-u.fx.GLB", + "uid": "83bbfb98-7f07-11ef-9308-b1dd71e64bec" + }, + "land.dgw.tavg-u-hxy-lnd.day.GLB": { + "frequency": "day", + "modeling_realm": "land", + "standard_name": "change_over_time_in_groundwater_amount", + "units": "kg m-2", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacellr", + "long_name": "Change in Groundwater", + "comment": "change_over_time_in_groundwater", + "dimensions": "longitude latitude time", + "out_name": "dgw", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Eday", + "physical_parameter_name": "dgw", + "variableRootDD": "dgw", + "branding_label": "tavg-u-hxy-lnd", + "branded_variable_name": "dgw_tavg-u-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "Eday.dgw", + "cmip7_compound_name": "land.dgw.tavg-u-hxy-lnd.day.GLB", + "uid": "d2287694-4a9f-11e6-b84e-ac72891c3257" + }, + "land.drivw.tavg-u-hxy-lnd.day.GLB": { + "frequency": "day", + "modeling_realm": "land", + "standard_name": "change_over_time_in_river_water_amount", + "units": "kg m-2", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacellr", + "long_name": "Change in River Storage", + "comment": "Change in River Storage", + "dimensions": "longitude latitude time", + "out_name": "drivw", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Eday", + "physical_parameter_name": "drivw", + "variableRootDD": "drivw", + "branding_label": "tavg-u-hxy-lnd", + "branded_variable_name": "drivw_tavg-u-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "Eday.drivw", + "cmip7_compound_name": "land.drivw.tavg-u-hxy-lnd.day.GLB", + "uid": "d2287b08-4a9f-11e6-b84e-ac72891c3257" + }, + "land.dslw.tavg-u-hxy-lnd.day.GLB": { + "frequency": "day", + "modeling_realm": "land", + "standard_name": "change_over_time_in_mass_content_of_water_in_soil", + "units": "kg m-2", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Change in Soil Moisture", + "comment": "Change in Soil Moisture", + "dimensions": "longitude latitude time", + "out_name": "dslw", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Eday", + "physical_parameter_name": "dslw", + "variableRootDD": "dslw", + "branding_label": "tavg-u-hxy-lnd", + "branded_variable_name": "dslw_tavg-u-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "Eday.dslw", + "cmip7_compound_name": "land.dslw.tavg-u-hxy-lnd.day.GLB", + "uid": "d2286460-4a9f-11e6-b84e-ac72891c3257" + }, + "land.dsn.tavg-u-hxy-lnd.day.GLB": { + "frequency": "day", + "modeling_realm": "land", + "standard_name": "change_over_time_in_amount_of_ice_and_snow_on_land", + "units": "kg m-2", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Change in Snow Water Equivalent", + "comment": "Change in Snow Water Equivalent", + "dimensions": "longitude latitude time", + "out_name": "dsn", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Eday", + "physical_parameter_name": "dsn", + "variableRootDD": "dsn", + "branding_label": "tavg-u-hxy-lnd", + "branded_variable_name": "dsn_tavg-u-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "Eday.dsn", + "cmip7_compound_name": "land.dsn.tavg-u-hxy-lnd.day.GLB", + "uid": "d22868f2-4a9f-11e6-b84e-ac72891c3257" + }, + "land.dsw.tavg-u-hxy-lnd.day.GLB": { + "frequency": "day", + "modeling_realm": "land", + "standard_name": "change_over_time_in_land_water_amount", + "units": "kg m-2", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Change in Surface Water Storage", + "comment": "Change in Surface Water Storage", + "dimensions": "longitude latitude time", + "out_name": "dsw", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Eday", + "physical_parameter_name": "dsw", + "variableRootDD": "dsw", + "branding_label": "tavg-u-hxy-lnd", + "branded_variable_name": "dsw_tavg-u-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "Eday.dsw", + "cmip7_compound_name": "land.dsw.tavg-u-hxy-lnd.day.GLB", + "uid": "d2286d84-4a9f-11e6-b84e-ac72891c3257" + }, + "land.esn.tavg-u-hxy-sn.day.GLB": { + "frequency": "day", + "modeling_realm": "land", + "standard_name": "water_evapotranspiration_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where snow (on land only) time: mean", + "cell_measures": "area: areacella", + "long_name": "Snow Evaporation", + "comment": "The flux due to conversion of liquid or solid water into vapor at the surface where there is snow on land", + "dimensions": "longitude latitude time", + "out_name": "esn", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Eday", + "physical_parameter_name": "esn", + "variableRootDD": "esn", + "branding_label": "tavg-u-hxy-sn", + "branded_variable_name": "esn_tavg-u-hxy-sn", + "region": "GLB", + "cmip6_compound_name": "Eday.esn", + "cmip7_compound_name": "land.esn.tavg-u-hxy-sn.day.GLB", + "uid": "d2282aa4-4a9f-11e6-b84e-ac72891c3257" + }, + "land.evspsblpot.tavg-u-hxy-lnd.day.GLB": { + "frequency": "day", + "modeling_realm": "land", + "standard_name": "water_potential_evaporation_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Potential Evapotranspiration", + "comment": "water_potential_evapotranspiration_flux", + "dimensions": "longitude latitude time", + "out_name": "evspsblpot", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Eday", + "physical_parameter_name": "evspsblpot", + "variableRootDD": "evspsblpot", + "branding_label": "tavg-u-hxy-lnd", + "branded_variable_name": "evspsblpot_tavg-u-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "Eday.evspsblpot", + "cmip7_compound_name": "land.evspsblpot.tavg-u-hxy-lnd.day.GLB", + "uid": "d228380a-4a9f-11e6-b84e-ac72891c3257" + }, + "land.evspsblpot.tavg-u-hxy-lnd.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "water_potential_evaporation_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Potential Evapotranspiration", + "comment": "at surface; potential flux of water into the atmosphere due to conversion of both liquid and solid phases to vapor (from underlying surface and vegetation)", + "dimensions": "longitude latitude time", + "out_name": "evspsblpot", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "evspsblpot", + "variableRootDD": "evspsblpot", + "branding_label": "tavg-u-hxy-lnd", + "branded_variable_name": "evspsblpot_tavg-u-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "Emon.evspsblpot", + "cmip7_compound_name": "land.evspsblpot.tavg-u-hxy-lnd.mon.GLB", + "uid": "6f68edb4-9acb-11e6-b7ee-ac72891c3257" + }, + "land.evspsblsoi.tavg-u-hxy-lnd.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "water_evaporation_flux_from_soil", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Water Evaporation from Soil", + "comment": "includes sublimation.", + "dimensions": "longitude latitude time", + "out_name": "evspsblsoi", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Lmon", + "physical_parameter_name": "evspsblsoi", + "variableRootDD": "evspsblsoi", + "branding_label": "tavg-u-hxy-lnd", + "branded_variable_name": "evspsblsoi_tavg-u-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "Lmon.evspsblsoi", + "cmip7_compound_name": "land.evspsblsoi.tavg-u-hxy-lnd.mon.GLB", + "uid": "baad5d9e-e5dd-11e5-8482-ac72891c3257" + }, + "land.evspsblsoi.tavg-u-hxy-u.3hr.GLB": { + "frequency": "3hr", + "modeling_realm": "land", + "standard_name": "water_evaporation_flux_from_soil", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Water evaporation from soil", + "comment": "Water evaporation from soil", + "dimensions": "longitude latitude time", + "out_name": "evspsblsoi", + "type": "real", + "positive": "up", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "3hr", + "physical_parameter_name": "evspsblsoi", + "variableRootDD": "evspsblsoi", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "evspsblsoi_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "3hr.evspsblsoi", + "cmip7_compound_name": "land.evspsblsoi.tavg-u-hxy-u.3hr.GLB", + "uid": "80ab71fb-a698-11ef-914a-613c0433d878" + }, + "land.evspsblsoi.tavg-u-hxy-u.day.GLB": { + "frequency": "day", + "modeling_realm": "land", + "standard_name": "water_evaporation_flux_from_soil", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Daily water evaporation flux from soil", + "comment": "Water evaporation flux from soil but for daily averages i.e., the evspsblsoi variable, which is only currently defined for monthly averages", + "dimensions": "longitude latitude time", + "out_name": "evspsblsoi", + "type": "real", + "positive": "up", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Eday", + "physical_parameter_name": "evspsblsoi", + "variableRootDD": "evspsblsoi", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "evspsblsoi_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "Eday.evspsblsoi", + "cmip7_compound_name": "land.evspsblsoi.tavg-u-hxy-u.day.GLB", + "uid": "83bbfbb0-7f07-11ef-9308-b1dd71e64bec" + }, + "land.evspsblveg.tavg-u-hxy-lnd.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "water_evaporation_flux_from_canopy", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Evaporation from Canopy", + "comment": "the canopy evaporation+sublimation (if present in model).", + "dimensions": "longitude latitude time", + "out_name": "evspsblveg", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Lmon", + "physical_parameter_name": "evspsblveg", + "variableRootDD": "evspsblveg", + "branding_label": "tavg-u-hxy-lnd", + "branded_variable_name": "evspsblveg_tavg-u-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "Lmon.evspsblveg", + "cmip7_compound_name": "land.evspsblveg.tavg-u-hxy-lnd.mon.GLB", + "uid": "baad6596-e5dd-11e5-8482-ac72891c3257" + }, + "land.evspsblveg.tavg-u-hxy-u.3hr.GLB": { + "frequency": "3hr", + "modeling_realm": "land", + "standard_name": "water_evaporation_flux_from_canopy", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Evaporation from canopy", + "comment": "Evaporation from canopy", + "dimensions": "longitude latitude time", + "out_name": "evspsblveg", + "type": "real", + "positive": "up", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "3hr", + "physical_parameter_name": "evspsblveg", + "variableRootDD": "evspsblveg", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "evspsblveg_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "3hr.evspsblveg", + "cmip7_compound_name": "land.evspsblveg.tavg-u-hxy-u.3hr.GLB", + "uid": "80ab71fa-a698-11ef-914a-613c0433d878" + }, + "land.evspsblveg.tavg-u-hxy-u.day.GLB": { + "frequency": "day", + "modeling_realm": "land", + "standard_name": "water_evaporation_flux_from_canopy", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Daily water evaporation flux from canopy", + "comment": "The same as the current variable evspsblveg but defined on daily timescales.", + "dimensions": "longitude latitude time", + "out_name": "evspsblveg", + "type": "real", + "positive": "up", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Eday", + "physical_parameter_name": "evspsblveg", + "variableRootDD": "evspsblveg", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "evspsblveg_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "Eday.evspsblveg", + "cmip7_compound_name": "land.evspsblveg.tavg-u-hxy-u.day.GLB", + "uid": "83bbfbaf-7f07-11ef-9308-b1dd71e64bec" + }, + "land.fAnthDisturb.tavg-u-hxy-lnd.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_anthropogenic_land_use_or_land_cover_change_excluding_forestry_and_agricultural_products", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Carbon Mass Flux from Vegetation, Litter or Soil Pools into the Atmosphere Due to any Human Activity [kgC m-2 s-1]", + "comment": "Anthropogenic flux of carbon as carbon dioxide into the atmosphere. That is, emissions influenced, caused, or created by human activity. Anthropogenic emission of carbon dioxide includes fossil fuel use, cement production, agricultural burning and sources associated with anthropogenic land use change, except forest regrowth.", + "dimensions": "longitude latitude time", + "out_name": "fAnthDisturb", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "fAnthDisturb", + "variableRootDD": "fAnthDisturb", + "branding_label": "tavg-u-hxy-lnd", + "branded_variable_name": "fAnthDisturb_tavg-u-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "Emon.fAnthDisturb", + "cmip7_compound_name": "land.fAnthDisturb.tavg-u-hxy-lnd.mon.GLB", + "uid": "8b8098b4-4a5b-11e6-9cd2-ac72891c3257" + }, + "land.fBNF.tavg-u-hxy-lnd.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "tendency_of_soil_and_vegetation_mass_content_of_nitrogen_compounds_expressed_as_nitrogen_due_to_fixation", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Biological Nitrogen Fixation", + "comment": "The fixation (uptake of nitrogen gas directly from the atmosphere) of nitrogen due to biological processes.", + "dimensions": "longitude latitude time", + "out_name": "fBNF", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "fBNF", + "variableRootDD": "fBNF", + "branding_label": "tavg-u-hxy-lnd", + "branded_variable_name": "fBNF_tavg-u-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "Emon.fBNF", + "cmip7_compound_name": "land.fBNF.tavg-u-hxy-lnd.mon.GLB", + "uid": "8b80db30-4a5b-11e6-9cd2-ac72891c3257" + }, + "land.fCLandToOcean.tavg-u-hxy-lnd.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "mass_flux_of_carbon_into_sea_water_from_rivers", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacellr", + "long_name": "Lateral Transfer of Carbon out of Grid Cell That Eventually Goes into Ocean", + "comment": "leached carbon etc that goes into run off or river routing and finds its way into ocean should be reported here.", + "dimensions": "longitude latitude time", + "out_name": "fCLandToOcean", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "fCLandToOcean", + "variableRootDD": "fCLandToOcean", + "branding_label": "tavg-u-hxy-lnd", + "branded_variable_name": "fCLandToOcean_tavg-u-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "Emon.fCLandToOcean", + "cmip7_compound_name": "land.fCLandToOcean.tavg-u-hxy-lnd.mon.GLB", + "uid": "8b807604-4a5b-11e6-9cd2-ac72891c3257" + }, + "land.fDeforestToAtmos.tavg-u-hxy-lnd.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "surface_net_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_emission_from_anthropogenic_land_use_change", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Deforested Biomass That Goes into Atmosphere as a Result of Anthropogenic Land-Use Change [kgC m-2 s-1]", + "comment": "When land use change results in deforestation of natural vegetation (trees or grasslands) then natural biomass is removed. The treatment of deforested biomass differs significantly across models, but it should be straight-forward to compare deforested biomass across models.", + "dimensions": "longitude latitude time", + "out_name": "fDeforestToAtmos", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "fDeforestToAtmos", + "variableRootDD": "fDeforestToAtmos", + "branding_label": "tavg-u-hxy-lnd", + "branded_variable_name": "fDeforestToAtmos_tavg-u-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "Emon.fDeforestToAtmos", + "cmip7_compound_name": "land.fDeforestToAtmos.tavg-u-hxy-lnd.mon.GLB", + "uid": "8b81caea-4a5b-11e6-9cd2-ac72891c3257" + }, + "land.fDeforestToProduct.tavg-u-hxy-lnd.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "carbon_mass_flux_into_forestry_and_agricultural_products_due_to_anthropogenic_land_use_or_land_cover_change", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Deforested Biomass That Goes into Product Pool as a Result of Anthropogenic Land-Use Change", + "comment": "When land use change results in deforestation of natural vegetation (trees or grasslands) then natural biomass is removed. The treatment of deforested biomass differs significantly across models, but it should be straight-forward to compare deforested biomass across models.", + "dimensions": "longitude latitude time", + "out_name": "fDeforestToProduct", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "fDeforestToProduct", + "variableRootDD": "fDeforestToProduct", + "branding_label": "tavg-u-hxy-lnd", + "branded_variable_name": "fDeforestToProduct_tavg-u-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "Emon.fDeforestToProduct", + "cmip7_compound_name": "land.fDeforestToProduct.tavg-u-hxy-lnd.mon.GLB", + "uid": "8b809ea4-4a5b-11e6-9cd2-ac72891c3257" + }, + "land.fFire.tavg-u-hxy-lnd.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_emission_from_fires_excluding_anthropogenic_land_use_change", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Carbon Mass Flux into Atmosphere Due to CO2 Emission from Fire Excluding Land-Use Change [kgC m-2 s-1]", + "comment": "CO2 emissions (expressed as a carbon mass flux) from natural fires + human ignition fires as calculated by the fire module of the DGVM, but excluding any CO2 flux from fire included in fLuc, defined below (CO2 Flux to Atmosphere from Land Use Change).", + "dimensions": "longitude latitude time", + "out_name": "fFire", + "type": "real", + "positive": "up", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Lmon", + "physical_parameter_name": "fFire", + "variableRootDD": "fFire", + "branding_label": "tavg-u-hxy-lnd", + "branded_variable_name": "fFire_tavg-u-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "Lmon.fFire", + "cmip7_compound_name": "land.fFire.tavg-u-hxy-lnd.mon.GLB", + "uid": "baad7f22-e5dd-11e5-8482-ac72891c3257" + }, + "land.fFireAll.tavg-u-hxy-lnd.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_emission_from_fires", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Carbon Mass Flux into Atmosphere Due to CO2 Emission from Fire Including All Sources [kgC m-2 s-1]", + "comment": "From all sources, Including natural, anthropogenic and Land-use change. Only total fire emissions can be compared to observations.", + "dimensions": "longitude latitude time", + "out_name": "fFireAll", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "fFireAll", + "variableRootDD": "fFireAll", + "branding_label": "tavg-u-hxy-lnd", + "branded_variable_name": "fFireAll_tavg-u-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "Emon.fFireAll", + "cmip7_compound_name": "land.fFireAll.tavg-u-hxy-lnd.mon.GLB", + "uid": "8b819a48-4a5b-11e6-9cd2-ac72891c3257" + }, + "land.fFireNat.tavg-u-hxy-lnd.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_emission_from_natural_fires", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Carbon Mass Flux into Atmosphere Due to CO2 Emission from Natural Fire [kgC m-2 s-1]", + "comment": "CO2 emissions from natural fires", + "dimensions": "longitude latitude time", + "out_name": "fFireNat", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "fFireNat", + "variableRootDD": "fFireNat", + "branding_label": "tavg-u-hxy-lnd", + "branded_variable_name": "fFireNat_tavg-u-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "Emon.fFireNat", + "cmip7_compound_name": "land.fFireNat.tavg-u-hxy-lnd.mon.GLB", + "uid": "8b808d56-4a5b-11e6-9cd2-ac72891c3257" + }, + "land.fHarvestToAtmos.tavg-u-hxy-lnd.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_emission_from_crop_harvesting", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Harvested Biomass That Goes Straight into Atmosphere as Carbon Mass Flux [kgC m-2 s-1]", + "comment": "any harvested carbon that is assumed to decompose immediately into the atmosphere is reported here", + "dimensions": "longitude latitude time", + "out_name": "fHarvestToAtmos", + "type": "real", + "positive": "up", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "fHarvestToAtmos", + "variableRootDD": "fHarvestToAtmos", + "branding_label": "tavg-u-hxy-lnd", + "branded_variable_name": "fHarvestToAtmos_tavg-u-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "Emon.fHarvestToAtmos", + "cmip7_compound_name": "land.fHarvestToAtmos.tavg-u-hxy-lnd.mon.GLB", + "uid": "8b81c54a-4a5b-11e6-9cd2-ac72891c3257" + }, + "land.fHarvestToGeologicStorage.tavg-u-hxy-lnd.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "mass_flux_of_carbon_from_biomass_into_geological_storage", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Harvested Biomass That Goes into Geological Storage", + "comment": "Flux of carbon harvested from biomass that goes into geologic storage for the purposes of intentional carbon dioxide removal, via efforts such as bioenergy with carbon capture and storage (BECCS) or biomass removal and storage (BiCRS). The definition of geologic storage here is that the resulting carbon be stored for a period of time that is long relative to that of the simulation.", + "dimensions": "longitude latitude time", + "out_name": "fHarvestToGeologicStorage", + "type": "real", + "positive": "down", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Lmon", + "physical_parameter_name": "fHarvestToGeologicStorage", + "variableRootDD": "fHarvestToGeologicStorage", + "branding_label": "tavg-u-hxy-lnd", + "branded_variable_name": "fHarvestToGeologicStorage_tavg-u-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "Lmon.fHarvestToGeologicStorage", + "cmip7_compound_name": "land.fHarvestToGeologicStorage.tavg-u-hxy-lnd.mon.GLB", + "uid": "80ab729f-a698-11ef-914a-613c0433d878" + }, + "land.fHarvestToProduct.tavg-u-hxy-lnd.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "mass_flux_of_carbon_into_forestry_and_agricultural_products_due_to_crop_harvesting", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Harvested Biomass That Goes into Product Pool", + "comment": "be it food or wood harvest, any carbon that is subsequently stored is reported here", + "dimensions": "longitude latitude time", + "out_name": "fHarvestToProduct", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "fHarvestToProduct", + "variableRootDD": "fHarvestToProduct", + "branding_label": "tavg-u-hxy-lnd", + "branded_variable_name": "fHarvestToProduct_tavg-u-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "Emon.fHarvestToProduct", + "cmip7_compound_name": "land.fHarvestToProduct.tavg-u-hxy-lnd.mon.GLB", + "uid": "8b80a444-4a5b-11e6-9cd2-ac72891c3257" + }, + "land.fLitterFire.tavg-u-hxy-lnd.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_emission_from_litter_in_fires", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Carbon Mass Flux from Litter, CWD or any non-Living Pool into Atmosphere Due to CO2 Emission from All Fire [kgC m-2 s-1]", + "comment": "Required for unambiguous separation of vegetation and soil + litter turnover times, since total fire flux draws from both sources", + "dimensions": "longitude latitude time", + "out_name": "fLitterFire", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "fLitterFire", + "variableRootDD": "fLitterFire", + "branding_label": "tavg-u-hxy-lnd", + "branded_variable_name": "fLitterFire_tavg-u-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "Emon.fLitterFire", + "cmip7_compound_name": "land.fLitterFire.tavg-u-hxy-lnd.mon.GLB", + "uid": "8b819458-4a5b-11e6-9cd2-ac72891c3257" + }, + "land.fLitterSoil.tavg-u-hxy-lnd.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "carbon_mass_flux_into_soil_from_litter", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Total Carbon Mass Flux from Litter to Soil", + "comment": "Carbon mass flux per unit area into soil from litter (dead plant material in or above the soil).", + "dimensions": "longitude latitude time", + "out_name": "fLitterSoil", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Lmon", + "physical_parameter_name": "fLitterSoil", + "variableRootDD": "fLitterSoil", + "branding_label": "tavg-u-hxy-lnd", + "branded_variable_name": "fLitterSoil_tavg-u-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "Lmon.fLitterSoil", + "cmip7_compound_name": "land.fLitterSoil.tavg-u-hxy-lnd.mon.GLB", + "uid": "baad95d4-e5dd-11e5-8482-ac72891c3257" + }, + "land.fLuc.tavg-u-hxy-lnd.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "surface_net_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_emission_from_anthropogenic_land_use_change", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Net Carbon Mass Flux into Atmosphere Due to Land-Use Change [kgC m-2 s-1]", + "comment": "Net Carbon Mass Flux into Atmosphere due to Land Use Change", + "dimensions": "longitude latitude time", + "out_name": "fLuc", + "type": "real", + "positive": "up", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "fLuc", + "variableRootDD": "fLuc", + "branding_label": "tavg-u-hxy-lnd", + "branded_variable_name": "fLuc_tavg-u-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "Emon.fLuc", + "cmip7_compound_name": "land.fLuc.tavg-u-hxy-lnd.mon.GLB", + "uid": "d229196e-4a9f-11e6-b84e-ac72891c3257" + }, + "land.fLulccAtmLut.tavg-u-hxy-multi.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_anthropogenic_land_use_or_land_cover_change_excluding_forestry_and_agricultural_products", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean where sector", + "cell_measures": "area: areacella", + "long_name": "Carbon Transferred Directly to Atmosphere Due to any Land-Use or Land-Cover Change Activities [kgC m-2 s-1]", + "comment": "This annual mean flux refers to the transfer of carbon directly to the atmosphere due to any land-use or land-cover change activities. Include carbon transferred due to deforestation or agricultural directly into atmosphere, and emissions form anthropogenic pools into atmosphere", + "dimensions": "longitude latitude landuse time", + "out_name": "fLulccAtmLut", + "type": "real", + "positive": "up", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "fLulccAtmLut", + "variableRootDD": "fLulccAtmLut", + "branding_label": "tavg-u-hxy-multi", + "branded_variable_name": "fLulccAtmLut_tavg-u-hxy-multi", + "region": "GLB", + "cmip6_compound_name": "Emon.fLulccAtmLut", + "cmip7_compound_name": "land.fLulccAtmLut.tavg-u-hxy-multi.mon.GLB", + "uid": "3e26c210-b89b-11e6-be04-ac72891c3257" + }, + "land.fN2O.tavg-u-hxy-lnd.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "surface_upward_mass_flux_of_nitrous_oxide_expressed_as_nitrogen_out_of_vegetation_and_litter_and_soil", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Total Land N2O Flux", + "comment": "Surface upward flux of nitrous oxide (N2O) from vegetation (any living plants e.g. trees, shrubs, grass), litter (dead plant material in or above the soil), soil.", + "dimensions": "longitude latitude time", + "out_name": "fN2O", + "type": "real", + "positive": "up", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "fN2O", + "variableRootDD": "fN2O", + "branding_label": "tavg-u-hxy-lnd", + "branded_variable_name": "fN2O_tavg-u-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "Emon.fN2O", + "cmip7_compound_name": "land.fN2O.tavg-u-hxy-lnd.mon.GLB", + "uid": "6f6b608a-9acb-11e6-b7ee-ac72891c3257" + }, + "land.fNAnthDisturb.tavg-u-hxy-lnd.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "tendency_of_atmosphere_mass_content_of_nitrogen_compounds_expressed_as_nitrogen_due_to_anthropogenic_emission", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Nitrogen Mass Flux out of Land Due to any Human Activity", + "comment": "will require some careful definition to make sure we capture everything - any human activity that releases nitrogen from land instead of into product pool goes here. E.g. Deforestation fire, harvest assumed to decompose straight away, grazing...", + "dimensions": "longitude latitude time", + "out_name": "fNAnthDisturb", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "fNAnthDisturb", + "variableRootDD": "fNAnthDisturb", + "branding_label": "tavg-u-hxy-lnd", + "branded_variable_name": "fNAnthDisturb_tavg-u-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "Emon.fNAnthDisturb", + "cmip7_compound_name": "land.fNAnthDisturb.tavg-u-hxy-lnd.mon.GLB", + "uid": "e7068c5a-aa7f-11e6-9a4a-5404a60d96b5" + }, + "land.fNdep.tavg-u-hxy-lnd.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "minus_tendency_of_atmosphere_mass_content_of_nitrogen_compounds_expressed_as_nitrogen_due_to_deposition", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Dry and Wet Deposition of Reactive Nitrogen onto Land", + "comment": "Surface deposition rate of nitrogen.", + "dimensions": "longitude latitude time", + "out_name": "fNdep", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "fNdep", + "variableRootDD": "fNdep", + "branding_label": "tavg-u-hxy-lnd", + "branded_variable_name": "fNdep_tavg-u-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "Emon.fNdep", + "cmip7_compound_name": "land.fNdep.tavg-u-hxy-lnd.mon.GLB", + "uid": "8b80d5fe-4a5b-11e6-9cd2-ac72891c3257" + }, + "land.fNfert.tavg-u-hxy-lnd.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "tendency_of_soil_mass_content_of_nitrogen_compounds_expressed_as_nitrogen_due_to_fertilization", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Total Nitrogen Added for Cropland Fertilisation (Artificial and Manure)", + "comment": "Total Nitrogen added for cropland fertilisation (artificial and manure). Relative to total land area of a grid cell, not relative to agricultural area", + "dimensions": "longitude latitude time", + "out_name": "fNfert", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "fNfert", + "variableRootDD": "fNfert", + "branding_label": "tavg-u-hxy-lnd", + "branded_variable_name": "fNfert_tavg-u-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "Emon.fNfert", + "cmip7_compound_name": "land.fNfert.tavg-u-hxy-lnd.mon.GLB", + "uid": "e7067648-aa7f-11e6-9a4a-5404a60d96b5" + }, + "land.fNgas.tavg-u-hxy-lnd.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "surface_upward_mass_flux_of_nitrogen_compounds_expressed_as_nitrogen", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Total Nitrogen Lost to the Atmosphere (Sum of NHx, NOx, N2O, N2)", + "comment": "Total flux of Nitrogen from the land into the atmosphere.", + "dimensions": "longitude latitude time", + "out_name": "fNgas", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "fNgas", + "variableRootDD": "fNgas", + "branding_label": "tavg-u-hxy-lnd", + "branded_variable_name": "fNgas_tavg-u-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "Emon.fNgas", + "cmip7_compound_name": "land.fNgas.tavg-u-hxy-lnd.mon.GLB", + "uid": "8b8231e2-4a5b-11e6-9cd2-ac72891c3257" + }, + "land.fNgasFire.tavg-u-hxy-lnd.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "surface_upward_mass_flux_of_nitrogen_compounds_expressed_as_nitrogen_due_to_emission_from_fires", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Total Nitrogen Lost to the Atmosphere (Including NHx, NOx, N2O, N2) from Fire", + "comment": "Flux of Nitrogen from the land into the atmosphere due to fire", + "dimensions": "longitude latitude time", + "out_name": "fNgasFire", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "fNgasFire", + "variableRootDD": "fNgasFire", + "branding_label": "tavg-u-hxy-lnd", + "branded_variable_name": "fNgasFire_tavg-u-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "Emon.fNgasFire", + "cmip7_compound_name": "land.fNgasFire.tavg-u-hxy-lnd.mon.GLB", + "uid": "8b823c5a-4a5b-11e6-9cd2-ac72891c3257" + }, + "land.fNgasNonFire.tavg-u-hxy-lnd.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "surface_upward_mass_flux_of_nitrogen_compounds_expressed_as_nitrogen_due_to_all_land_processes_excluding_fires", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Total Nitrogen Lost to the Atmosphere (Including NHx, NOx, N2O, N2) from All Processes Except Fire", + "comment": "Flux of Nitrogen from the land into the atmosphere due to all processes other than fire", + "dimensions": "longitude latitude time", + "out_name": "fNgasNonFire", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "fNgasNonFire", + "variableRootDD": "fNgasNonFire", + "branding_label": "tavg-u-hxy-lnd", + "branded_variable_name": "fNgasNonFire_tavg-u-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "Emon.fNgasNonFire", + "cmip7_compound_name": "land.fNgasNonFire.tavg-u-hxy-lnd.mon.GLB", + "uid": "8b8237c8-4a5b-11e6-9cd2-ac72891c3257" + }, + "land.fNLandToOcean.tavg-u-hxy-lnd.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "mass_flux_of_nitrogen_compounds_expressed_as_nitrogen_into_sea_from_rivers", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Lateral Transfer of Nitrogen out of Grid Cell That Eventually Goes into Ocean", + "comment": "leached nitrogen etc that goes into run off or river routing and finds its way into ocean should be reported here.", + "dimensions": "longitude latitude time", + "out_name": "fNLandToOcean", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "fNLandToOcean", + "variableRootDD": "fNLandToOcean", + "branding_label": "tavg-u-hxy-lnd", + "branded_variable_name": "fNLandToOcean_tavg-u-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "Emon.fNLandToOcean", + "cmip7_compound_name": "land.fNLandToOcean.tavg-u-hxy-lnd.mon.GLB", + "uid": "8b80f0de-4a5b-11e6-9cd2-ac72891c3257" + }, + "land.fNleach.tavg-u-hxy-lnd.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "mass_flux_of_carbon_out_of_soil_due_to_leaching_and_runoff", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Total Nitrogen Loss to Leaching or Runoff (Sum of Ammonium, Nitrite and Nitrate)", + "comment": "In accordance with common usage in geophysical disciplines, \"flux\" implies per unit area, called \"flux density\" in physics. The specification of a physical process by the phrase \"due_to_\" process means that the quantity named is a single term in a sum of terms which together compose the general quantity named by omitting the phrase. \"Leaching\" means the loss of water soluble chemical species from soil. Runoff is the liquid water which drains from land. If not specified, \"runoff\" refers to the sum of surface runoff and subsurface drainage.", + "dimensions": "longitude latitude time", + "out_name": "fNleach", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "fNleach", + "variableRootDD": "fNleach", + "branding_label": "tavg-u-hxy-lnd", + "branded_variable_name": "fNleach_tavg-u-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "Emon.fNleach", + "cmip7_compound_name": "land.fNleach.tavg-u-hxy-lnd.mon.GLB", + "uid": "8b822d82-4a5b-11e6-9cd2-ac72891c3257" + }, + "land.fNLitterSoil.tavg-u-hxy-lnd.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "nitrogen_mass_flux_into_soil_from_litter", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Total Nitrogen Mass Flux from Litter to Soil", + "comment": "In accordance with common usage in geophysical disciplines, \"flux\" implies per unit area, called \"flux density\" in physics. \"Litter\" is dead plant material in or above the soil.", + "dimensions": "longitude latitude time", + "out_name": "fNLitterSoil", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "fNLitterSoil", + "variableRootDD": "fNLitterSoil", + "branding_label": "tavg-u-hxy-lnd", + "branded_variable_name": "fNLitterSoil_tavg-u-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "Emon.fNLitterSoil", + "cmip7_compound_name": "land.fNLitterSoil.tavg-u-hxy-lnd.mon.GLB", + "uid": "8b80f638-4a5b-11e6-9cd2-ac72891c3257" + }, + "land.fNloss.tavg-u-hxy-lnd.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "surface_upward_mass_flux_of_nitrogen_compounds_expressed_as_nitrogen_out_of_vegetation_and_litter_and_soil", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Total Nitrogen Lost (Including NHx, NOx, N2O, N2 and Leaching)", + "comment": "Not all models split losses into gaseous and leaching", + "dimensions": "longitude latitude time", + "out_name": "fNloss", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "fNloss", + "variableRootDD": "fNloss", + "branding_label": "tavg-u-hxy-lnd", + "branded_variable_name": "fNloss_tavg-u-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "Emon.fNloss", + "cmip7_compound_name": "land.fNloss.tavg-u-hxy-lnd.mon.GLB", + "uid": "8b80d0cc-4a5b-11e6-9cd2-ac72891c3257" + }, + "land.fNnetmin.tavg-u-hxy-lnd.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "mass_flux_of_nitrogen_compounds_expressed_as_nitrogen_out_of_litter_and_soil_due_to_immobilisation_and_remineralization", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Net Nitrogen Release from Soil and Litter as the Outcome of Nitrogen Immobilisation and Gross Mineralisation", + "comment": "Loss of soil nitrogen through remineralization and immobilisation. Remineralization is the degradation of organic matter into inorganic forms of carbon, nitrogen, phosphorus and other micronutrients, which consumes oxygen and releases energy. Immobilisation of nitrogen refers to retention of nitrogen by micro-organisms under certain conditions, making it unavailable for plants.", + "dimensions": "longitude latitude time", + "out_name": "fNnetmin", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "fNnetmin", + "variableRootDD": "fNnetmin", + "branding_label": "tavg-u-hxy-lnd", + "branded_variable_name": "fNnetmin_tavg-u-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "Emon.fNnetmin", + "cmip7_compound_name": "land.fNnetmin.tavg-u-hxy-lnd.mon.GLB", + "uid": "8b80e602-4a5b-11e6-9cd2-ac72891c3257" + }, + "land.fNOx.tavg-u-hxy-lnd.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "surface_upward_mass_flux_of_nox_expressed_as_nitrogen_out_of_vegetation_and_litter_and_soil", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Total Land NOx Flux", + "comment": "The surface called \"surface\" means the lower boundary of the atmosphere. \"Upward\" indicates a vector component which is positive when directed upward (negative downward). In accordance with common usage in geophysical disciplines, \"flux\" implies per unit area, called \"flux density\" in physics. The phrase \"expressed_as\" is used in the construction A_expressed_as_B, where B is a chemical constituent of A. It means that the quantity indicated by the standard name is calculated solely with respect to the B contained in A, neglecting all other chemical constituents of A. \"Nox\" means a combination of two radical species containing nitrogen and oxygen NO+NO2. \"Vegetation\" means any living plants e.g. trees, shrubs, grass. \"Litter\" is dead plant material in or above the soil.", + "dimensions": "longitude latitude time", + "out_name": "fNOx", + "type": "real", + "positive": "up", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "fNOx", + "variableRootDD": "fNOx", + "branding_label": "tavg-u-hxy-lnd", + "branded_variable_name": "fNOx_tavg-u-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "Emon.fNOx", + "cmip7_compound_name": "land.fNOx.tavg-u-hxy-lnd.mon.GLB", + "uid": "8b8246d2-4a5b-11e6-9cd2-ac72891c3257" + }, + "land.fNProduct.tavg-u-hxy-lnd.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "nitrogen_mass_flux_into_forestry_and_agricultural_products_due_to_anthropogenic_land_use_or_land_cover_change", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Deforested or Harvested Biomass as a Result of Anthropogenic Land-Use or Change", + "comment": "When land use change results in deforestation of natural vegetation (trees or grasslands) then natural biomass is removed. The treatment of deforested biomass differs significantly across models, but it should be straight-forward to compare deforested biomass across models.", + "dimensions": "longitude latitude time", + "out_name": "fNProduct", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "fNProduct", + "variableRootDD": "fNProduct", + "branding_label": "tavg-u-hxy-lnd", + "branded_variable_name": "fNProduct_tavg-u-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "Emon.fNProduct", + "cmip7_compound_name": "land.fNProduct.tavg-u-hxy-lnd.mon.GLB", + "uid": "8b81025e-4a5b-11e6-9cd2-ac72891c3257" + }, + "land.fNup.tavg-u-hxy-lnd.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "tendency_of_vegetation_mass_content_of_nitrogen_compounds_expressed_as_nitrogen_due_to_fixation", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Total Plant Nitrogen Uptake (Sum of Ammonium and Nitrate) Irrespective of the Source of Nitrogen", + "comment": "The uptake of nitrogen by fixation: nitrogen fixation means the uptake of nitrogen gas directly from the atmosphere.", + "dimensions": "longitude latitude time", + "out_name": "fNup", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "fNup", + "variableRootDD": "fNup", + "branding_label": "tavg-u-hxy-lnd", + "branded_variable_name": "fNup_tavg-u-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "Emon.fNup", + "cmip7_compound_name": "land.fNup.tavg-u-hxy-lnd.mon.GLB", + "uid": "8b80e08a-4a5b-11e6-9cd2-ac72891c3257" + }, + "land.fNVegLitter.tavg-u-hxy-lnd.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "nitrogen_mass_flux_into_litter_from_vegetation", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Total Nitrogen Mass Flux from Vegetation to Litter", + "comment": "In accordance with common usage in geophysical disciplines, \"flux\" implies per unit area, called \"flux density\" in physics. \"Litter\" is dead plant material in or above the soil. \"Vegetation\" means any living plants e.g. trees, shrubs, grass.", + "dimensions": "longitude latitude time", + "out_name": "fNVegLitter", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "fNVegLitter", + "variableRootDD": "fNVegLitter", + "branding_label": "tavg-u-hxy-lnd", + "branded_variable_name": "fNVegLitter_tavg-u-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "Emon.fNVegLitter", + "cmip7_compound_name": "land.fNVegLitter.tavg-u-hxy-lnd.mon.GLB", + "uid": "8b80eb66-4a5b-11e6-9cd2-ac72891c3257" + }, + "land.fNVegSoil.tavg-u-hxy-lnd.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "nitrogen_mass_flux_into_soil_from_vegetation_excluding_litter", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Total Nitrogen Mass Flux from Vegetation Directly to Soil", + "comment": "In some models part of nitrogen (e.g., root exudate) can go directly into the soil pool without entering litter.", + "dimensions": "longitude latitude time", + "out_name": "fNVegSoil", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "fNVegSoil", + "variableRootDD": "fNVegSoil", + "branding_label": "tavg-u-hxy-lnd", + "branded_variable_name": "fNVegSoil_tavg-u-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "Emon.fNVegSoil", + "cmip7_compound_name": "land.fNVegSoil.tavg-u-hxy-lnd.mon.GLB", + "uid": "8b80fc82-4a5b-11e6-9cd2-ac72891c3257" + }, + "land.fProductDecomp.tavg-u-hxy-lnd.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "tendency_of_atmosphere_mass_content_of_carbon_dioxide_expressed_as_carbon_due_to_emission_from_forestry_and_agricultural_products", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Decomposition out of Product Pools to CO2 in Atmosphere as Carbon Mass Flux [kgC m-2 s-1]", + "comment": "Flux of CO2 from product pools into the atmosphere. Examples of \"forestry and agricultural products\" are paper, cardboard, furniture, timber for construction, biofuels and food for both humans and livestock. Models that simulate land use changes have one or more pools of carbon that represent these products in order to conserve carbon and allow its eventual release into the atmosphere, for example, when the products decompose in landfill sites.", + "dimensions": "longitude latitude time", + "out_name": "fProductDecomp", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "fProductDecomp", + "variableRootDD": "fProductDecomp", + "branding_label": "tavg-u-hxy-lnd", + "branded_variable_name": "fProductDecomp_tavg-u-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "Emon.fProductDecomp", + "cmip7_compound_name": "land.fProductDecomp.tavg-u-hxy-lnd.mon.GLB", + "uid": "8b8092e2-4a5b-11e6-9cd2-ac72891c3257" + }, + "land.fracInLut.tsum-u-hxy-lnd.yr.GLB": { + "frequency": "yr", + "modeling_realm": "land", + "standard_name": "area_fraction", + "units": "%", + "cell_methods": "area: mean where land over all_area_types time: sum", + "cell_measures": "area: areacella", + "long_name": "Annual Gross Percentage That Was Transferred into This Tile from Other Land-Use Tiles", + "comment": "Cumulative percentage transitions over the year; note that percentage should be reported as a percentage of atmospheric grid cell", + "dimensions": "longitude latitude landuse time", + "out_name": "fracInLut", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Eyr", + "physical_parameter_name": "fracInLut", + "variableRootDD": "fracInLut", + "branding_label": "tsum-u-hxy-lnd", + "branded_variable_name": "fracInLut_tsum-u-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "Eyr.fracInLut", + "cmip7_compound_name": "land.fracInLut.tsum-u-hxy-lnd.yr.GLB", + "uid": "d22e47d6-4a9f-11e6-b84e-ac72891c3257" + }, + "land.fracLut.tpt-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "area_fraction", + "units": "%", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Percentage of Grid Cell for Each Land-Use Tile", + "comment": "End of month values (not monthly mean); note that percentage should be reported as percentage of land grid cell (example: frac_lnd = 0.5, frac_ocn = 0.5, frac_crop_lnd = 0.2 (of land portion of grid cell), then frac_lut(crop) = 0.5\\*0.2 = 0.1)", + "dimensions": "longitude latitude landuse time1", + "out_name": "fracLut", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-point", + "cmip6_table": "Emon", + "physical_parameter_name": "fracLut", + "variableRootDD": "fracLut", + "branding_label": "tpt-u-hxy-u", + "branded_variable_name": "fracLut_tpt-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "Emon.fracLut", + "cmip7_compound_name": "land.fracLut.tpt-u-hxy-u.mon.GLB", + "uid": "9157856a-267c-11e7-8933-ac72891c3257" + }, + "land.fracLut.tpt-u-hxy-u.yr.GLB": { + "frequency": "yr", + "modeling_realm": "land", + "standard_name": "area_fraction", + "units": "%", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Percentage of Grid Cell for Each Land-Use Tile", + "comment": "End of year values (not annual mean); note that percentage should be reported as percentage of land grid cell (example: frac_lnd = 0.5, frac_ocn = 0.5, frac_crop_lnd = 0.2 (of land portion of grid cell), then frac_lut(crop) = 0.5\\*0.2 = 0.1)", + "dimensions": "longitude latitude landuse time1", + "out_name": "fracLut", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-point", + "cmip6_table": "Eyr", + "physical_parameter_name": "fracLut", + "variableRootDD": "fracLut", + "branding_label": "tpt-u-hxy-u", + "branded_variable_name": "fracLut_tpt-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "Eyr.fracLut", + "cmip7_compound_name": "land.fracLut.tpt-u-hxy-u.yr.GLB", + "uid": "d22e4c68-4a9f-11e6-b84e-ac72891c3257" + }, + "land.fracOutLut.tsum-u-hxy-lnd.yr.GLB": { + "frequency": "yr", + "modeling_realm": "land", + "standard_name": "area_fraction", + "units": "%", + "cell_methods": "area: mean where land over all_area_types time: sum", + "cell_measures": "area: areacella", + "long_name": "Annual Gross Percentage of Land-Use Tile That Was Transferred into Other Land-Use Tiles", + "comment": "Cumulative percentage transitions over the year; note that percentage should be reported as percentage of atmospheric grid cell", + "dimensions": "longitude latitude landuse time", + "out_name": "fracOutLut", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Eyr", + "physical_parameter_name": "fracOutLut", + "variableRootDD": "fracOutLut", + "branding_label": "tsum-u-hxy-lnd", + "branded_variable_name": "fracOutLut_tsum-u-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "Eyr.fracOutLut", + "cmip7_compound_name": "land.fracOutLut.tsum-u-hxy-lnd.yr.GLB", + "uid": "d22e4358-4a9f-11e6-b84e-ac72891c3257" + }, + "land.fVegFire.tavg-u-hxy-lnd.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_emission_from_vegetation_in_fires", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Carbon Mass Flux from Vegetation into Atmosphere Due to CO2 Emission from All Fire [kgC m-2 s-1]", + "comment": "Required for unambiguous separation of vegetation and soil + litter turnover times, since total fire flux draws from both sources", + "dimensions": "longitude latitude time", + "out_name": "fVegFire", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "fVegFire", + "variableRootDD": "fVegFire", + "branding_label": "tavg-u-hxy-lnd", + "branded_variable_name": "fVegFire_tavg-u-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "Emon.fVegFire", + "cmip7_compound_name": "land.fVegFire.tavg-u-hxy-lnd.mon.GLB", + "uid": "8b818ec2-4a5b-11e6-9cd2-ac72891c3257" + }, + "land.fVegLitter.tavg-u-hxy-lnd.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "mass_flux_of_carbon_into_litter_from_vegetation", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Total Carbon Mass Flux from Vegetation to Litter", + "comment": "In accordance with common usage in geophysical disciplines, \"flux\" implies per unit area, called \"flux density\" in physics. \"Vegetation\" means any living plants e.g. trees, shrubs, grass. \"Litter\" is dead plant material in or above the soil. It is distinct from coarse wood debris. The precise distinction between \"fine\" and \"coarse\" is model dependent. The sum of the quantities with standard names mass_flux_of_carbon_into_litter_from_vegetation_due_to_mortality and mass_flux_of_carbon_into_litter_from_vegetation_due_to_senescence is mass_flux_of_carbon_into_litter_from_vegetation.", + "dimensions": "longitude latitude time", + "out_name": "fVegLitter", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Lmon", + "physical_parameter_name": "fVegLitter", + "variableRootDD": "fVegLitter", + "branding_label": "tavg-u-hxy-lnd", + "branded_variable_name": "fVegLitter_tavg-u-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "Lmon.fVegLitter", + "cmip7_compound_name": "land.fVegLitter.tavg-u-hxy-lnd.mon.GLB", + "uid": "baada4ca-e5dd-11e5-8482-ac72891c3257" + }, + "land.fVegLitterMortality.tavg-u-hxy-lnd.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "mass_flux_of_carbon_into_litter_from_vegetation_due_to_mortality", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Total Carbon Mass Flux from Vegetation to Litter as a Result of Mortality", + "comment": "needed to separate changing vegetation C turnover times resulting from changing allocation versus changing mortality", + "dimensions": "longitude latitude time", + "out_name": "fVegLitterMortality", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "fVegLitterMortality", + "variableRootDD": "fVegLitterMortality", + "branding_label": "tavg-u-hxy-lnd", + "branded_variable_name": "fVegLitterMortality_tavg-u-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "Emon.fVegLitterMortality", + "cmip7_compound_name": "land.fVegLitterMortality.tavg-u-hxy-lnd.mon.GLB", + "uid": "8b81a506-4a5b-11e6-9cd2-ac72891c3257" + }, + "land.fVegLitterSenescence.tavg-u-hxy-lnd.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "mass_flux_of_carbon_into_litter_from_vegetation_due_to_senescence", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Total Carbon Mass Flux from Vegetation to Litter as a Result of Leaf, Branch, and Root Senescence", + "comment": "needed to separate changing vegetation C turnover times resulting from changing allocation versus changing mortality", + "dimensions": "longitude latitude time", + "out_name": "fVegLitterSenescence", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "fVegLitterSenescence", + "variableRootDD": "fVegLitterSenescence", + "branding_label": "tavg-u-hxy-lnd", + "branded_variable_name": "fVegLitterSenescence_tavg-u-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "Emon.fVegLitterSenescence", + "cmip7_compound_name": "land.fVegLitterSenescence.tavg-u-hxy-lnd.mon.GLB", + "uid": "8b819fac-4a5b-11e6-9cd2-ac72891c3257" + }, + "land.fVegSoil.tavg-u-hxy-lnd.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "carbon_mass_flux_into_soil_from_vegetation_excluding_litter", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Total Carbon Mass Flux from Vegetation Directly to Soil", + "comment": "In some models part of carbon (e.g., root exudate) can go directly into the soil pool without entering litter.", + "dimensions": "longitude latitude time", + "out_name": "fVegSoil", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Lmon", + "physical_parameter_name": "fVegSoil", + "variableRootDD": "fVegSoil", + "branding_label": "tavg-u-hxy-lnd", + "branded_variable_name": "fVegSoil_tavg-u-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "Lmon.fVegSoil", + "cmip7_compound_name": "land.fVegSoil.tavg-u-hxy-lnd.mon.GLB", + "uid": "baadac22-e5dd-11e5-8482-ac72891c3257" + }, + "land.fVegSoilMortality.tavg-u-hxy-lnd.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "mass_flux_of_carbon_into_soil_from_vegetation_due_to_mortality", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Total Carbon Mass Flux from Vegetation to Soil as a Result of Mortality", + "comment": "needed to separate changing vegetation C turnover times resulting from changing allocation versus changing mortality", + "dimensions": "longitude latitude time", + "out_name": "fVegSoilMortality", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "fVegSoilMortality", + "variableRootDD": "fVegSoilMortality", + "branding_label": "tavg-u-hxy-lnd", + "branded_variable_name": "fVegSoilMortality_tavg-u-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "Emon.fVegSoilMortality", + "cmip7_compound_name": "land.fVegSoilMortality.tavg-u-hxy-lnd.mon.GLB", + "uid": "e7073696-aa7f-11e6-9a4a-5404a60d96b5" + }, + "land.fVegSoilSenescence.tavg-u-hxy-lnd.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "mass_flux_of_carbon_into_soil_from_vegetation_due_to_senescence", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Total Carbon Mass Flux from Vegetation to Soil as a Result of Leaf, Branch, and Root Senescence", + "comment": "needed to separate changing vegetation C turnover times resulting from changing allocation versus changing mortality", + "dimensions": "longitude latitude time", + "out_name": "fVegSoilSenescence", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "fVegSoilSenescence", + "variableRootDD": "fVegSoilSenescence", + "branding_label": "tavg-u-hxy-lnd", + "branded_variable_name": "fVegSoilSenescence_tavg-u-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "Emon.fVegSoilSenescence", + "cmip7_compound_name": "land.fVegSoilSenescence.tavg-u-hxy-lnd.mon.GLB", + "uid": "e70731dc-aa7f-11e6-9a4a-5404a60d96b5" + }, + "land.gpp.tavg-u-hxy-lnd.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "gross_primary_productivity_of_biomass_expressed_as_carbon", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Carbon Mass Flux out of Atmosphere Due to Gross Primary Production on Land [kgC m-2 s-1]", + "comment": "The rate of synthesis of biomass from inorganic precursors by autotrophs (\"producers\") expressed as the mass of carbon which it contains. For example, photosynthesis in plants or phytoplankton. The producers also respire some of this biomass and the difference is referred to as the net primary production.", + "dimensions": "longitude latitude time", + "out_name": "gpp", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Lmon", + "physical_parameter_name": "gpp", + "variableRootDD": "gpp", + "branding_label": "tavg-u-hxy-lnd", + "branded_variable_name": "gpp_tavg-u-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "Lmon.gpp", + "cmip7_compound_name": "land.gpp.tavg-u-hxy-lnd.mon.GLB", + "uid": "baae7800-e5dd-11e5-8482-ac72891c3257" + }, + "land.gpp.tavg-u-hxy-ng.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "gross_primary_productivity_of_biomass_expressed_as_carbon", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean where natural_grasses (mask=grassFrac)", + "cell_measures": "area: areacella", + "long_name": "Gross Primary Production on Grass Tiles as Carbon Mass Flux [kgC m-2 s-1]", + "comment": "Total GPP of grass in the grid cell", + "dimensions": "longitude latitude time", + "out_name": "gppGrass", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "gppGrass", + "variableRootDD": "gpp", + "branding_label": "tavg-u-hxy-ng", + "branded_variable_name": "gpp_tavg-u-hxy-ng", + "region": "GLB", + "cmip6_compound_name": "Emon.gppGrass", + "cmip7_compound_name": "land.gpp.tavg-u-hxy-ng.mon.GLB", + "uid": "e7076878-aa7f-11e6-9a4a-5404a60d96b5" + }, + "land.gpp.tavg-u-hxy-shb.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "gross_primary_productivity_of_biomass_expressed_as_carbon", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean where shrubs (mask=shrubFrac)", + "cell_measures": "area: areacella", + "long_name": "Gross Primary Production on Shrub Tiles as Carbon Mass Flux [kgC m-2 s-1]", + "comment": "Total GPP of shrubs in the grid cell", + "dimensions": "longitude latitude time", + "out_name": "gppShrub", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "gppShrub", + "variableRootDD": "gpp", + "branding_label": "tavg-u-hxy-shb", + "branded_variable_name": "gpp_tavg-u-hxy-shb", + "region": "GLB", + "cmip6_compound_name": "Emon.gppShrub", + "cmip7_compound_name": "land.gpp.tavg-u-hxy-shb.mon.GLB", + "uid": "e707633c-aa7f-11e6-9a4a-5404a60d96b5" + }, + "land.gpp.tavg-u-hxy-tree.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "gross_primary_productivity_of_biomass_expressed_as_carbon", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean where trees (mask=treeFrac)", + "cell_measures": "area: areacella", + "long_name": "Gross Primary Production on Tree Tiles as Carbon Mass Flux [kgC m-2 s-1]", + "comment": "Total GPP of trees in the grid cell", + "dimensions": "longitude latitude time", + "out_name": "gppTree", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "gppTree", + "variableRootDD": "gpp", + "branding_label": "tavg-u-hxy-tree", + "branded_variable_name": "gpp_tavg-u-hxy-tree", + "region": "GLB", + "cmip6_compound_name": "Emon.gppTree", + "cmip7_compound_name": "land.gpp.tavg-u-hxy-tree.mon.GLB", + "uid": "e7075e32-aa7f-11e6-9a4a-5404a60d96b5" + }, + "land.gppc13.tavg-u-hxy-lnd.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "gross_primary_productivity_of_biomass_expressed_as_13C", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Carbon-13 Mass Flux out of Atmosphere Due to Gross Primary Production on Land [kgC m-2 s-1]", + "comment": "The rate of synthesis of carbon-13 in biomass from inorganic precursors by autotrophs (\"producers\") expressed as the mass of carbon which it contains. For example, photosynthesis in plants or phytoplankton. The producers also respire some of this biomass and the difference is referred to as the net primary production.", + "dimensions": "longitude latitude time", + "out_name": "gppc13", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "gppc13", + "variableRootDD": "gppc13", + "branding_label": "tavg-u-hxy-lnd", + "branded_variable_name": "gppc13_tavg-u-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "Emon.gppc13", + "cmip7_compound_name": "land.gppc13.tavg-u-hxy-lnd.mon.GLB", + "uid": "8b7f90fe-4a5b-11e6-9cd2-ac72891c3257" + }, + "land.gppc14.tavg-u-hxy-lnd.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "gross_primary_productivity_of_biomass_expressed_as_14C", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Carbon-14 Mass Flux out of Atmosphere Due to Gross Primary Production on Land [kgC m-2 s-1]", + "comment": "The rate of synthesis of carbon-14 in biomass from inorganic precursors by autotrophs (\"producers\") expressed as the mass of carbon which it contains. For example, photosynthesis in plants or phytoplankton. The producers also respire some of this biomass and the difference is referred to as the net primary production.", + "dimensions": "longitude latitude time", + "out_name": "gppc14", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "gppc14", + "variableRootDD": "gppc14", + "branding_label": "tavg-u-hxy-lnd", + "branded_variable_name": "gppc14_tavg-u-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "Emon.gppc14", + "cmip7_compound_name": "land.gppc14.tavg-u-hxy-lnd.mon.GLB", + "uid": "8b7f7826-4a5b-11e6-9cd2-ac72891c3257" + }, + "land.gppLut.tavg-u-hxy-multi.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "gross_primary_productivity_of_biomass_expressed_as_carbon", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean where sector", + "cell_measures": "area: areacella", + "long_name": "Gross Primary Production on Land-Use Tile as Carbon Mass Flux [kgC m-2 s-1]", + "comment": "The rate of synthesis of biomass from inorganic precursors by autotrophs (\"producers\") expressed as the mass of carbon which it contains. For example, photosynthesis in plants or phytoplankton. The producers also respire some of this biomass and the difference is referred to as the net primary production. Reported on land-use tiles.", + "dimensions": "longitude latitude landuse time", + "out_name": "gppLut", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "gppLut", + "variableRootDD": "gppLut", + "branding_label": "tavg-u-hxy-multi", + "branded_variable_name": "gppLut_tavg-u-hxy-multi", + "region": "GLB", + "cmip6_compound_name": "Emon.gppLut", + "cmip7_compound_name": "land.gppLut.tavg-u-hxy-multi.mon.GLB", + "uid": "d22d8a9e-4a9f-11e6-b84e-ac72891c3257" + }, + "land.gppVgt.tavg-u-hxy-multi.day.GLB": { + "frequency": "day", + "modeling_realm": "land", + "standard_name": "gross_primary_productivity_of_biomass_expressed_as_carbon", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean where sector", + "cell_measures": "area: areacella", + "long_name": "Gross Primary Production on Vegetation type as Carbon Mass Flux [kgC m-2 s-1]", + "comment": "The rate of synthesis of biomass from inorganic precursors by autotrophs (\"producers\") expressed as the mass of carbon which it contains. For example, photosynthesis in plants or phytoplankton. The producers also respire some of this biomass and the difference is referred to as the net primary production. Reported on land-use tiles.", + "dimensions": "longitude latitude vegtype time", + "out_name": "gppVgt", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Eday", + "physical_parameter_name": "gppVgt", + "variableRootDD": "gppVgt", + "branding_label": "tavg-u-hxy-multi", + "branded_variable_name": "gppVgt_tavg-u-hxy-multi", + "region": "GLB", + "cmip6_compound_name": "Eday.gppVgt", + "cmip7_compound_name": "land.gppVgt.tavg-u-hxy-multi.day.GLB", + "uid": "83bbfbad-7f07-11ef-9308-b1dd71e64bec" + }, + "land.grassFrac.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "area_fraction", + "units": "%", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Natural Grass Area Percentage", + "comment": "Percentage of entire grid cell that is covered by natural grass.", + "dimensions": "longitude latitude time typenatgr", + "out_name": "grassFrac", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Lmon", + "physical_parameter_name": "grassFrac", + "variableRootDD": "grassFrac", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "grassFrac_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "Lmon.grassFrac", + "cmip7_compound_name": "land.grassFrac.tavg-u-hxy-u.mon.GLB", + "uid": "baae910a-e5dd-11e5-8482-ac72891c3257" + }, + "land.grassFrac.tavg-u-hxy-u.yr.GLB": { + "frequency": "yr", + "modeling_realm": "land", + "standard_name": "area_fraction", + "units": "%", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Natural Grass Area Percentage", + "comment": "Percentage of entire grid cell that is covered by natural grass.", + "dimensions": "longitude latitude time typenatgr", + "out_name": "grassFrac", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Eyr", + "physical_parameter_name": "grassFrac", + "variableRootDD": "grassFrac", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "grassFrac_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "Eyr.grassFrac", + "cmip7_compound_name": "land.grassFrac.tavg-u-hxy-u.yr.GLB", + "uid": "fb01755a-be37-11e6-bac1-5404a60d96b5" + }, + "land.grassFracC3.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "area_fraction", + "units": "%", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "C3 Natural Grass Area Percentage", + "comment": "Percentage of entire grid cell covered by C3 natural grass.", + "dimensions": "longitude latitude time typec3natg", + "out_name": "grassFracC3", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "grassFracC3", + "variableRootDD": "grassFracC3", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "grassFracC3_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "Emon.grassFracC3", + "cmip7_compound_name": "land.grassFracC3.tavg-u-hxy-u.mon.GLB", + "uid": "8b814764-4a5b-11e6-9cd2-ac72891c3257" + }, + "land.grassFracC4.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "area_fraction", + "units": "%", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "C4 Natural Grass Area Percentage", + "comment": "Percentage of entire grid cell covered by C4 natural grass.", + "dimensions": "longitude latitude time typec4natg", + "out_name": "grassFracC4", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "grassFracC4", + "variableRootDD": "grassFracC4", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "grassFracC4_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "Emon.grassFracC4", + "cmip7_compound_name": "land.grassFracC4.tavg-u-hxy-u.mon.GLB", + "uid": "8b814cc8-4a5b-11e6-9cd2-ac72891c3257" + }, + "land.hfdsl.tavg-u-hxy-lnd.3hr.GLB": { + "frequency": "3hr", + "modeling_realm": "land", + "standard_name": "surface_downward_heat_flux_in_air", + "units": "W m-2", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Ground heat flux at 3hr", + "comment": "Ground heat flux at 3hr", + "dimensions": "longitude latitude time", + "out_name": "hfdsl", + "type": "real", + "positive": "up", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "3hr", + "physical_parameter_name": "hfdsl", + "variableRootDD": "hfdsl", + "branding_label": "tavg-u-hxy-lnd", + "branded_variable_name": "hfdsl_tavg-u-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "3hr.hfdsl", + "cmip7_compound_name": "land.hfdsl.tavg-u-hxy-lnd.3hr.GLB", + "uid": "80ab71f9-a698-11ef-914a-613c0433d878" + }, + "land.hflsLut.tavg-u-hxy-multi.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "surface_upward_latent_heat_flux", + "units": "W m-2", + "cell_methods": "area: time: mean where sector", + "cell_measures": "area: areacella", + "long_name": "Latent Heat Flux on Land-Use Tile", + "comment": "The surface called \"surface\" means the lower boundary of the atmosphere. \"Upward\" indicates a vector component which is positive when directed upward (negative downward). The surface latent heat flux is the exchange of heat between the surface and the air on account of evaporation (including sublimation). In accordance with common usage in geophysical disciplines, \"flux\" implies per unit area, called \"flux density\" in physics.", + "dimensions": "longitude latitude landuse time", + "out_name": "hflsLut", + "type": "real", + "positive": "up", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "hflsLut", + "variableRootDD": "hflsLut", + "branding_label": "tavg-u-hxy-multi", + "branded_variable_name": "hflsLut_tavg-u-hxy-multi", + "region": "GLB", + "cmip6_compound_name": "Emon.hflsLut", + "cmip7_compound_name": "land.hflsLut.tavg-u-hxy-multi.mon.GLB", + "uid": "d22dbe2e-4a9f-11e6-b84e-ac72891c3257" + }, + "land.hfssLut.tavg-u-hxy-multi.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "surface_upward_sensible_heat_flux", + "units": "W m-2", + "cell_methods": "area: time: mean where sector", + "cell_measures": "area: areacella", + "long_name": "Sensible Heat Flux on Land-Use Tile", + "comment": "Upward sensible heat flux on land use tiles. The surface sensible heat flux, also called turbulent heat flux, is the exchange of heat between the surface and the air by motion of air.", + "dimensions": "longitude latitude landuse time", + "out_name": "hfssLut", + "type": "real", + "positive": "up", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "hfssLut", + "variableRootDD": "hfssLut", + "branding_label": "tavg-u-hxy-multi", + "branded_variable_name": "hfssLut_tavg-u-hxy-multi", + "region": "GLB", + "cmip6_compound_name": "Emon.hfssLut", + "cmip7_compound_name": "land.hfssLut.tavg-u-hxy-multi.mon.GLB", + "uid": "d22dc374-4a9f-11e6-b84e-ac72891c3257" + }, + "land.irrDem.tavg-u-hxy-u.day.GLB": { + "frequency": "day", + "modeling_realm": "land", + "standard_name": "surface_downward_mass_flux_of_water_due_to_irrigation", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "irrigation water demand", + "comment": "the total amount of irrigation water demand", + "dimensions": "longitude latitude time", + "out_name": "irrDem", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "day", + "physical_parameter_name": "irrDem", + "variableRootDD": "irrDem", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "irrDem_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "day.irrDem", + "cmip7_compound_name": "land.irrDem.tavg-u-hxy-u.day.GLB", + "uid": "80ab7437-a698-11ef-914a-613c0433d878" + }, + "land.irrGw.tavg-u-hxy-u.day.GLB": { + "frequency": "day", + "modeling_realm": "land", + "standard_name": "surface_downward_mass_flux_of_water_due_to_irrigation", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "irrigation water withdrawal from groundwater", + "comment": "the amount of water withdrawal for irrigation from ground water, including deep soil water, confined and unconfined aquifer, etc", + "dimensions": "longitude latitude time", + "out_name": "irrGw", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "day", + "physical_parameter_name": "irrGw", + "variableRootDD": "irrGw", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "irrGw_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "day.irrGw", + "cmip7_compound_name": "land.irrGw.tavg-u-hxy-u.day.GLB", + "uid": "80ab7439-a698-11ef-914a-613c0433d878" + }, + "land.irrLut.tavg-u-hxy-multi.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "surface_downward_mass_flux_of_water_due_to_irrigation", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean where sector", + "cell_measures": "area: areacella", + "long_name": "Irrigation Flux Including any Irrigation for Crops, Trees, Pasture, or Urban Lawns", + "comment": "Mass flux of water due to irrigation.", + "dimensions": "longitude latitude landuse time", + "out_name": "irrLut", + "type": "real", + "positive": "down", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "irrLut", + "variableRootDD": "irrLut", + "branding_label": "tavg-u-hxy-multi", + "branded_variable_name": "irrLut_tavg-u-hxy-multi", + "region": "GLB", + "cmip6_compound_name": "Emon.irrLut", + "cmip7_compound_name": "land.irrLut.tavg-u-hxy-multi.mon.GLB", + "uid": "3e26abc2-b89b-11e6-be04-ac72891c3257" + }, + "land.irrLut.tavg-u-hxy-u.day.GLB": { + "frequency": "day", + "modeling_realm": "land", + "standard_name": "surface_downward_mass_flux_of_water_due_to_irrigation", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "irrigation water withdrawal", + "comment": "the total amount of water withdrawal from multiple sources", + "dimensions": "longitude latitude time", + "out_name": "irrLut", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "day", + "physical_parameter_name": "irrLut", + "variableRootDD": "irrLut", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "irrLut_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "day.irrLut", + "cmip7_compound_name": "land.irrLut.tavg-u-hxy-u.day.GLB", + "uid": "80ab7436-a698-11ef-914a-613c0433d878" + }, + "land.irrSurf.tavg-u-hxy-u.day.GLB": { + "frequency": "day", + "modeling_realm": "land", + "standard_name": "surface_downward_mass_flux_of_water_due_to_irrigation", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "irrigation water withdrawal from surface water", + "comment": "the amount of water withdrawal for irrigation from surface water, including rivers, lakes, reservoirs, etc.)", + "dimensions": "longitude latitude time", + "out_name": "irrSurf", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "day", + "physical_parameter_name": "irrSurf", + "variableRootDD": "irrSurf", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "irrSurf_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "day.irrSurf", + "cmip7_compound_name": "land.irrSurf.tavg-u-hxy-u.day.GLB", + "uid": "80ab7438-a698-11ef-914a-613c0433d878" + }, + "land.lai.tavg-u-hxy-lnd.day.GLB": { + "frequency": "day", + "modeling_realm": "land", + "standard_name": "leaf_area_index", + "units": "1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Leaf Area Index", + "comment": "A ratio obtained by dividing the total upper leaf surface area of vegetation by the (horizontal) surface area of the land on which it grows.", + "dimensions": "longitude latitude time", + "out_name": "lai", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Eday", + "physical_parameter_name": "lai", + "variableRootDD": "lai", + "branding_label": "tavg-u-hxy-lnd", + "branded_variable_name": "lai_tavg-u-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "Eday.lai", + "cmip7_compound_name": "land.lai.tavg-u-hxy-lnd.day.GLB", + "uid": "8b7ff4ea-4a5b-11e6-9cd2-ac72891c3257" + }, + "land.lai.tavg-u-hxy-lnd.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "leaf_area_index", + "units": "1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Leaf Area Index", + "comment": "A ratio obtained by dividing the total upper leaf surface area of vegetation by the (horizontal) surface area of the land on which it grows.", + "dimensions": "longitude latitude time", + "out_name": "lai", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Lmon", + "physical_parameter_name": "lai", + "variableRootDD": "lai", + "branding_label": "tavg-u-hxy-lnd", + "branded_variable_name": "lai_tavg-u-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "Lmon.lai", + "cmip7_compound_name": "land.lai.tavg-u-hxy-lnd.mon.GLB", + "uid": "bab0919e-e5dd-11e5-8482-ac72891c3257" + }, + "land.laiLut.tavg-u-hxy-multi.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "leaf_area_index", + "units": "1", + "cell_methods": "area: time: mean where sector", + "cell_measures": "area: areacella", + "long_name": "Leaf Area Index on Land-Use Tile", + "comment": "A ratio obtained by dividing the total upper leaf surface area of vegetation by the (horizontal) surface area of the land on which it grows.", + "dimensions": "longitude latitude landuse time", + "out_name": "laiLut", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "laiLut", + "variableRootDD": "laiLut", + "branding_label": "tavg-u-hxy-multi", + "branded_variable_name": "laiLut_tavg-u-hxy-multi", + "region": "GLB", + "cmip6_compound_name": "Emon.laiLut", + "cmip7_compound_name": "land.laiLut.tavg-u-hxy-multi.mon.GLB", + "uid": "d22dd6ac-4a9f-11e6-b84e-ac72891c3257" + }, + "land.laiVgt.tavg-u-hxy-multi.day.GLB": { + "frequency": "day", + "modeling_realm": "land", + "standard_name": "leaf_area_index", + "units": "1", + "cell_methods": "area: time: mean where sector", + "cell_measures": "area: areacella", + "long_name": "Leaf Area Index on Vegetation type", + "comment": "A ratio obtained by dividing the total upper leaf surface area of vegetation by the (horizontal) surface area of the land on which it grows.", + "dimensions": "longitude latitude vegtype time", + "out_name": "laiVgt", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Eday", + "physical_parameter_name": "laiVgt", + "variableRootDD": "laiVgt", + "branding_label": "tavg-u-hxy-multi", + "branded_variable_name": "laiVgt_tavg-u-hxy-multi", + "region": "GLB", + "cmip6_compound_name": "Eday.laiVgt", + "cmip7_compound_name": "land.laiVgt.tavg-u-hxy-multi.day.GLB", + "uid": "83bbfbac-7f07-11ef-9308-b1dd71e64bec" + }, + "land.landCoverFrac.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "area_fraction", + "units": "%", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Percentage of Area by Vegetation or Land-Cover Category", + "comment": "The categories may differ from model to model, depending on their PFT definitions. This may include natural PFTs, anthropogenic PFTs, bare soil, lakes, urban areas, etc. Sum of all should equal the fraction of the grid-cell that is land.", + "dimensions": "longitude latitude vegtype time", + "out_name": "landCoverFrac", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Lmon", + "physical_parameter_name": "landCoverFrac", + "variableRootDD": "landCoverFrac", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "landCoverFrac_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "Lmon.landCoverFrac", + "cmip7_compound_name": "land.landCoverFrac.tavg-u-hxy-u.mon.GLB", + "uid": "bab09a7c-e5dd-11e5-8482-ac72891c3257" + }, + "land.mrro.tavg-u-hxy-lnd.3hr.GLB": { + "frequency": "3hr", + "modeling_realm": "land", + "standard_name": "runoff_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Total Runoff", + "comment": "the total runoff (including \"drainage\" through the base of the soil model) leaving the land portion of the grid cell divided by the land area in the grid cell, averaged over the 3-hour interval.", + "dimensions": "longitude latitude time", + "out_name": "mrro", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "3hr", + "physical_parameter_name": "mrro", + "variableRootDD": "mrro", + "branding_label": "tavg-u-hxy-lnd", + "branded_variable_name": "mrro_tavg-u-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "3hr.mrro", + "cmip7_compound_name": "land.mrro.tavg-u-hxy-lnd.3hr.GLB", + "uid": "bab177b2-e5dd-11e5-8482-ac72891c3257" + }, + "land.mrro.tavg-u-hxy-lnd.day.GLB": { + "frequency": "day", + "modeling_realm": "land", + "standard_name": "runoff_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Total Runoff", + "comment": "computed as the total runoff (including \"drainage\" through the base of the soil model) leaving the land portion of the grid cell divided by the land area in the grid cell.", + "dimensions": "longitude latitude time", + "out_name": "mrro", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "day", + "physical_parameter_name": "mrro", + "variableRootDD": "mrro", + "branding_label": "tavg-u-hxy-lnd", + "branded_variable_name": "mrro_tavg-u-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "day.mrro", + "cmip7_compound_name": "land.mrro.tavg-u-hxy-lnd.day.GLB", + "uid": "bab17cb2-e5dd-11e5-8482-ac72891c3257" + }, + "land.mrro.tavg-u-hxy-lnd.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "runoff_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Total Runoff", + "comment": "the total runoff (including \"drainage\" through the base of the soil model) leaving the land portion of the grid cell.", + "dimensions": "longitude latitude time", + "out_name": "mrro", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Lmon", + "physical_parameter_name": "mrro", + "variableRootDD": "mrro", + "branding_label": "tavg-u-hxy-lnd", + "branded_variable_name": "mrro_tavg-u-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "Lmon.mrro", + "cmip7_compound_name": "land.mrro.tavg-u-hxy-lnd.mon.GLB", + "uid": "bab17a6e-e5dd-11e5-8482-ac72891c3257" + }, + "land.mrrob.tavg-u-hxy-lnd.day.GLB": { + "frequency": "day", + "modeling_realm": "land", + "standard_name": "subsurface_runoff_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Subsurface Runoff", + "comment": "subsurface_runoff_flux", + "dimensions": "longitude latitude time", + "out_name": "mrrob", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Eday", + "physical_parameter_name": "mrrob", + "variableRootDD": "mrrob", + "branding_label": "tavg-u-hxy-lnd", + "branded_variable_name": "mrrob_tavg-u-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "Eday.mrrob", + "cmip7_compound_name": "land.mrrob.tavg-u-hxy-lnd.day.GLB", + "uid": "d22844da-4a9f-11e6-b84e-ac72891c3257" + }, + "land.mrros.tavg-u-hxy-lnd.3hr.GLB": { + "frequency": "3hr", + "modeling_realm": "land", + "standard_name": "surface_runoff_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Surface Runoff", + "comment": "surface_runoff_flux", + "dimensions": "longitude latitude time", + "out_name": "mrros", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "3hr", + "physical_parameter_name": "mrros", + "variableRootDD": "mrros", + "branding_label": "tavg-u-hxy-lnd", + "branded_variable_name": "mrros_tavg-u-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "3hr.mrros", + "cmip7_compound_name": "land.mrros.tavg-u-hxy-lnd.3hr.GLB", + "uid": "80ab73bc-a698-11ef-914a-613c0433d878" + }, + "land.mrros.tavg-u-hxy-lnd.day.GLB": { + "frequency": "day", + "modeling_realm": "land", + "standard_name": "surface_runoff_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Surface Runoff", + "comment": "surface_runoff_flux", + "dimensions": "longitude latitude time", + "out_name": "mrros", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Eday", + "physical_parameter_name": "mrros", + "variableRootDD": "mrros", + "branding_label": "tavg-u-hxy-lnd", + "branded_variable_name": "mrros_tavg-u-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "Eday.mrros", + "cmip7_compound_name": "land.mrros.tavg-u-hxy-lnd.day.GLB", + "uid": "d2284048-4a9f-11e6-b84e-ac72891c3257" + }, + "land.mrros.tavg-u-hxy-lnd.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "surface_runoff_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Surface Runoff", + "comment": "the total surface runoff leaving the land portion of the grid cell.", + "dimensions": "longitude latitude time", + "out_name": "mrros", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Lmon", + "physical_parameter_name": "mrros", + "variableRootDD": "mrros", + "branding_label": "tavg-u-hxy-lnd", + "branded_variable_name": "mrros_tavg-u-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "Lmon.mrros", + "cmip7_compound_name": "land.mrros.tavg-u-hxy-lnd.mon.GLB", + "uid": "bab19ff8-e5dd-11e5-8482-ac72891c3257" + }, + "land.mrsfl.tavg-sl-hxy-lnd.day.GLB": { + "frequency": "day", + "modeling_realm": "land", + "standard_name": "frozen_water_content_of_soil_layer", + "units": "kg m-2", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Frozen Water Content of Soil Layer", + "comment": "in each soil layer, the mass of water in ice phase. Reported as \"missing\" for grid cells occupied entirely by \"sea\"", + "dimensions": "longitude latitude sdepth time", + "out_name": "mrsfl", + "type": "real", + "positive": "", + "spatial_shape": "XY-S", + "temporal_shape": "time-intv", + "cmip6_table": "Eday", + "physical_parameter_name": "mrsfl", + "variableRootDD": "mrsfl", + "branding_label": "tavg-sl-hxy-lnd", + "branded_variable_name": "mrsfl_tavg-sl-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "Eday.mrsfl", + "cmip7_compound_name": "land.mrsfl.tavg-sl-hxy-lnd.day.GLB", + "uid": "8b800566-4a5b-11e6-9cd2-ac72891c3257" + }, + "land.mrsfl.tavg-sl-hxy-lnd.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "frozen_water_content_of_soil_layer", + "units": "kg m-2", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Frozen Water Content of Soil Layer", + "comment": "in each soil layer, the mass of water in ice phase. Reported as \"missing\" for grid cells occupied entirely by \"sea\"", + "dimensions": "longitude latitude sdepth time", + "out_name": "mrsfl", + "type": "real", + "positive": "", + "spatial_shape": "XY-S", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "mrsfl", + "variableRootDD": "mrsfl", + "branding_label": "tavg-sl-hxy-lnd", + "branded_variable_name": "mrsfl_tavg-sl-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "Emon.mrsfl", + "cmip7_compound_name": "land.mrsfl.tavg-sl-hxy-lnd.mon.GLB", + "uid": "8b804774-4a5b-11e6-9cd2-ac72891c3257" + }, + "land.mrsll.tavg-sl-hxy-lnd.day.GLB": { + "frequency": "day", + "modeling_realm": "land", + "standard_name": "liquid_water_content_of_soil_layer", + "units": "kg m-2", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Liquid Water Content of Soil Layer", + "comment": "in each soil layer, the mass of water in liquid phase. Reported as \"missing\" for grid cells occupied entirely by \"sea\"", + "dimensions": "longitude latitude sdepth time", + "out_name": "mrsll", + "type": "real", + "positive": "", + "spatial_shape": "XY-S", + "temporal_shape": "time-intv", + "cmip6_table": "Eday", + "physical_parameter_name": "mrsll", + "variableRootDD": "mrsll", + "branding_label": "tavg-sl-hxy-lnd", + "branded_variable_name": "mrsll_tavg-sl-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "Eday.mrsll", + "cmip7_compound_name": "land.mrsll.tavg-sl-hxy-lnd.day.GLB", + "uid": "8b800002-4a5b-11e6-9cd2-ac72891c3257" + }, + "land.mrsll.tavg-sl-hxy-lnd.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "liquid_water_content_of_soil_layer", + "units": "kg m-2", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Liquid Water Content of Soil Layer", + "comment": "in each soil layer, the mass of water in liquid phase. Reported as \"missing\" for grid cells occupied entirely by \"sea\"", + "dimensions": "longitude latitude sdepth time", + "out_name": "mrsll", + "type": "real", + "positive": "", + "spatial_shape": "XY-S", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "mrsll", + "variableRootDD": "mrsll", + "branding_label": "tavg-sl-hxy-lnd", + "branded_variable_name": "mrsll_tavg-sl-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "Emon.mrsll", + "cmip7_compound_name": "land.mrsll.tavg-sl-hxy-lnd.mon.GLB", + "uid": "6f6a36c4-9acb-11e6-b7ee-ac72891c3257" + }, + "land.mrso.tavg-u-hxy-lnd.day.GLB": { + "frequency": "day", + "modeling_realm": "land", + "standard_name": "mass_content_of_water_in_soil", + "units": "kg m-2", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Total Soil Moisture Content", + "comment": "the mass per unit area (summed over all soil layers) of water in all phases.", + "dimensions": "longitude latitude time", + "out_name": "mrso", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "day", + "physical_parameter_name": "mrso", + "variableRootDD": "mrso", + "branding_label": "tavg-u-hxy-lnd", + "branded_variable_name": "mrso_tavg-u-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "day.mrso", + "cmip7_compound_name": "land.mrso.tavg-u-hxy-lnd.day.GLB", + "uid": "3c641b6c-b89b-11e6-be04-ac72891c3257" + }, + "land.mrso.tavg-u-hxy-lnd.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "mass_content_of_water_in_soil", + "units": "kg m-2", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Total Soil Moisture Content", + "comment": "the mass per unit area (summed over all soil layers) of water in all phases.", + "dimensions": "longitude latitude time", + "out_name": "mrso", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Lmon", + "physical_parameter_name": "mrso", + "variableRootDD": "mrso", + "branding_label": "tavg-u-hxy-lnd", + "branded_variable_name": "mrso_tavg-u-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "Lmon.mrso", + "cmip7_compound_name": "land.mrso.tavg-u-hxy-lnd.mon.GLB", + "uid": "bab1a782-e5dd-11e5-8482-ac72891c3257" + }, + "land.mrsofc.ti-u-hxy-lnd.fx.GLB": { + "frequency": "fx", + "modeling_realm": "land", + "standard_name": "soil_moisture_content_at_field_capacity", + "units": "kg m-2", + "cell_methods": "area: mean where land", + "cell_measures": "area: areacella", + "long_name": "Capacity of Soil to Store Water (Field Capacity)", + "comment": "reported \"where land\": divide the total water holding capacity of all the soil in the grid cell by the land area in the grid cell; reported as \"missing\" where the land fraction is 0.", + "dimensions": "longitude latitude", + "out_name": "mrsofc", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "None", + "cmip6_table": "fx", + "physical_parameter_name": "mrsofc", + "variableRootDD": "mrsofc", + "branding_label": "ti-u-hxy-lnd", + "branded_variable_name": "mrsofc_ti-u-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "fx.mrsofc", + "cmip7_compound_name": "land.mrsofc.ti-u-hxy-lnd.fx.GLB", + "uid": "bab1c08c-e5dd-11e5-8482-ac72891c3257" + }, + "land.mrsol.tavg-d100cm-hxy-lnd.3hr.GLB": { + "frequency": "3hr", + "modeling_realm": "land", + "standard_name": "mass_content_of_water_in_soil_layer", + "units": "kg m-2", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Soil moisture in the top 1 m of the soil column", + "comment": "Soil moisture at 3hr but for 0-1m", + "dimensions": "longitude latitude time sdepth100cm", + "out_name": "mrso100", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "3hr", + "physical_parameter_name": "mrso100", + "variableRootDD": "mrsol", + "branding_label": "tavg-d100cm-hxy-lnd", + "branded_variable_name": "mrsol_tavg-d100cm-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "3hr.mrso100", + "cmip7_compound_name": "land.mrsol.tavg-d100cm-hxy-lnd.3hr.GLB", + "uid": "80ab7435-a698-11ef-914a-613c0433d878" + }, + "land.mrsol.tavg-d10cm-hxy-lnd.day.GLB": { + "frequency": "day", + "modeling_realm": "land", + "standard_name": "mass_content_of_water_in_soil_layer", + "units": "kg m-2", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Moisture in Upper Portion of Soil Column", + "comment": "the mass of water in all phases in a thin surface soil layer.", + "dimensions": "longitude latitude time sdepth10cm", + "out_name": "mrsos", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "day", + "physical_parameter_name": "mrsos", + "variableRootDD": "mrsol", + "branding_label": "tavg-d10cm-hxy-lnd", + "branded_variable_name": "mrsol_tavg-d10cm-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "day.mrsos", + "cmip7_compound_name": "land.mrsol.tavg-d10cm-hxy-lnd.day.GLB", + "uid": "bab1ca14-e5dd-11e5-8482-ac72891c3257" + }, + "land.mrsol.tavg-d10cm-hxy-lnd.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "mass_content_of_water_in_soil_layer", + "units": "kg m-2", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Moisture in Upper Portion of Soil Column", + "comment": "the mass of water in all phases in a thin surface soil layer.", + "dimensions": "longitude latitude time sdepth10cm", + "out_name": "mrsos", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Lmon", + "physical_parameter_name": "mrsos", + "variableRootDD": "mrsol", + "branding_label": "tavg-d10cm-hxy-lnd", + "branded_variable_name": "mrsol_tavg-d10cm-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "Lmon.mrsos", + "cmip7_compound_name": "land.mrsol.tavg-d10cm-hxy-lnd.mon.GLB", + "uid": "bab1c85c-e5dd-11e5-8482-ac72891c3257" + }, + "land.mrsol.tavg-sl-hxy-lnd.day.GLB": { + "frequency": "day", + "modeling_realm": "land", + "standard_name": "mass_content_of_water_in_soil_layer", + "units": "kg m-2", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Total Water Content of Soil Layer", + "comment": "in each soil layer, the mass of water in all phases, including ice. Reported as \"missing\" for grid cells occupied entirely by \"sea\"", + "dimensions": "longitude latitude sdepth time", + "out_name": "mrsol", + "type": "real", + "positive": "", + "spatial_shape": "XY-S", + "temporal_shape": "time-intv", + "cmip6_table": "Eday", + "physical_parameter_name": "mrsol", + "variableRootDD": "mrsol", + "branding_label": "tavg-sl-hxy-lnd", + "branded_variable_name": "mrsol_tavg-sl-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "Eday.mrsol", + "cmip7_compound_name": "land.mrsol.tavg-sl-hxy-lnd.day.GLB", + "uid": "8b7ffa9e-4a5b-11e6-9cd2-ac72891c3257" + }, + "land.mrsol.tavg-sl-hxy-lnd.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "mass_content_of_water_in_soil_layer", + "units": "kg m-2", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Total Water Content of Soil Layer", + "comment": "in each soil layer, the mass of water in all phases, including ice. Reported as \"missing\" for grid cells occupied entirely by \"sea\"", + "dimensions": "longitude latitude sdepth time", + "out_name": "mrsol", + "type": "real", + "positive": "", + "spatial_shape": "XY-S", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "mrsol", + "variableRootDD": "mrsol", + "branding_label": "tavg-sl-hxy-lnd", + "branded_variable_name": "mrsol_tavg-sl-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "Emon.mrsol", + "cmip7_compound_name": "land.mrsol.tavg-sl-hxy-lnd.mon.GLB", + "uid": "8b803cac-4a5b-11e6-9cd2-ac72891c3257" + }, + "land.mrsol.tpt-d10cm-hxy-lnd.3hr.GLB": { + "frequency": "3hr", + "modeling_realm": "land", + "standard_name": "mass_content_of_water_in_soil_layer", + "units": "kg m-2", + "cell_methods": "area: mean where land time: point", + "cell_measures": "area: areacella", + "long_name": "Moisture in Upper Portion of Soil Column", + "comment": "the mass of water in all phases in a thin surface soil layer.", + "dimensions": "longitude latitude time1 sdepth10cm", + "out_name": "mrsos", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-point", + "cmip6_table": "3hr", + "physical_parameter_name": "mrsos", + "variableRootDD": "mrsol", + "branding_label": "tpt-d10cm-hxy-lnd", + "branded_variable_name": "mrsol_tpt-d10cm-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "3hr.mrsos", + "cmip7_compound_name": "land.mrsol.tpt-d10cm-hxy-lnd.3hr.GLB", + "uid": "bab1c668-e5dd-11e5-8482-ac72891c3257" + }, + "land.mrsolLut.tavg-d10cm-hxy-multi.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "mass_content_of_water_in_soil_layer", + "units": "kg m-2", + "cell_methods": "area: time: mean where sector", + "cell_measures": "area: areacella", + "long_name": "Moisture in Upper Portion of Soil Column of Land-Use Tile", + "comment": "the mass of water in all phases in a thin surface layer; integrate over uppermost 10cm", + "dimensions": "longitude latitude landuse time sdepth10cm", + "out_name": "mrsosLut", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "mrsosLut", + "variableRootDD": "mrsolLut", + "branding_label": "tavg-d10cm-hxy-multi", + "branded_variable_name": "mrsolLut_tavg-d10cm-hxy-multi", + "region": "GLB", + "cmip6_compound_name": "Emon.mrsosLut", + "cmip7_compound_name": "land.mrsolLut.tavg-d10cm-hxy-multi.mon.GLB", + "uid": "d22ddb3e-4a9f-11e6-b84e-ac72891c3257" + }, + "land.mrsow.tavg-u-hxy-lnd.day.GLB": { + "frequency": "day", + "modeling_realm": "land", + "standard_name": "volume_fraction_of_condensed_water_in_soil_at_field_capacity", + "units": "1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Total Soil Wetness", + "comment": "relative_soil_moisture_content_above_field_capacity", + "dimensions": "longitude latitude time", + "out_name": "mrsow", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Eday", + "physical_parameter_name": "mrsow", + "variableRootDD": "mrsow", + "branding_label": "tavg-u-hxy-lnd", + "branded_variable_name": "mrsow_tavg-u-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "Eday.mrsow", + "cmip7_compound_name": "land.mrsow.tavg-u-hxy-lnd.day.GLB", + "uid": "d228a402-4a9f-11e6-b84e-ac72891c3257" + }, + "land.mrtws.tavg-u-hxy-lnd.day.GLB": { + "frequency": "day", + "modeling_realm": "land", + "standard_name": "land_water_amount", + "units": "kg m-2", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Terrestrial Water Storage", + "comment": "canopy_and_surface_and_subsurface_water_amount", + "dimensions": "longitude latitude time", + "out_name": "mrtws", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Eday", + "physical_parameter_name": "mrtws", + "variableRootDD": "mrtws", + "branding_label": "tavg-u-hxy-lnd", + "branded_variable_name": "mrtws_tavg-u-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "Eday.mrtws", + "cmip7_compound_name": "land.mrtws.tavg-u-hxy-lnd.day.GLB", + "uid": "d228ad76-4a9f-11e6-b84e-ac72891c3257" + }, + "land.mrtws.tavg-u-hxy-lnd.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "land_water_amount", + "units": "kg m-2", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Terrestrial Water Storage", + "comment": "requested for C4MIP, OCMIP/OMIP, LUMIP, ScenarioMIP, DECK, DAMIP, GeoMIP, LS3MIP, ??", + "dimensions": "longitude latitude time", + "out_name": "mrtws", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "mrtws", + "variableRootDD": "mrtws", + "branding_label": "tavg-u-hxy-lnd", + "branded_variable_name": "mrtws_tavg-u-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "Emon.mrtws", + "cmip7_compound_name": "land.mrtws.tavg-u-hxy-lnd.mon.GLB", + "uid": "6f6a4484-9acb-11e6-b7ee-ac72891c3257" + }, + "land.nbp.tavg-u-hxy-lnd.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "surface_net_downward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_all_land_processes", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Carbon Mass Flux out of Atmosphere Due to Net Biospheric Production on Land [kgC m-2 s-1]", + "comment": "This is the net mass flux of carbon between land and atmosphere calculated as photosynthesis MINUS the sum of plant and soil respiration, carbonfluxes from fire, harvest, grazing and land use change. Positive flux is into the land.", + "dimensions": "longitude latitude time", + "out_name": "nbp", + "type": "real", + "positive": "down", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Lmon", + "physical_parameter_name": "nbp", + "variableRootDD": "nbp", + "branding_label": "tavg-u-hxy-lnd", + "branded_variable_name": "nbp_tavg-u-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "Lmon.nbp", + "cmip7_compound_name": "land.nbp.tavg-u-hxy-lnd.mon.GLB", + "uid": "bab23634-e5dd-11e5-8482-ac72891c3257" + }, + "land.nbpLut.tavg-u-hxy-multi.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "surface_net_downward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_all_land_processes", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean where sector", + "cell_measures": "area: areacella", + "long_name": "Net Carbon Mass Flux into Land-Use Tile [kgC m-2 s-1]", + "comment": "Computed as npp minus heterotrophic respiration minus fire minus C leaching minus harvesting/clearing. Positive rate is into the land, negative rate is from the land. Do not include fluxes from anthropogenic product pools to atmosphere", + "dimensions": "longitude latitude landuse time", + "out_name": "nbpLut", + "type": "real", + "positive": "down", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "nbpLut", + "variableRootDD": "nbpLut", + "branding_label": "tavg-u-hxy-multi", + "branded_variable_name": "nbpLut_tavg-u-hxy-multi", + "region": "GLB", + "cmip6_compound_name": "Emon.nbpLut", + "cmip7_compound_name": "land.nbpLut.tavg-u-hxy-multi.mon.GLB", + "uid": "d22da542-4a9f-11e6-b84e-ac72891c3257" + }, + "land.nep.tavg-u-hxy-lnd.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "surface_net_downward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_all_land_processes_excluding_anthropogenic_land_use_change", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Net Carbon Mass Flux out of Atmosphere Due to Net Ecosystem Productivity on Land [kgC m-2 s-1]", + "comment": "Net Ecosystem Exchange", + "dimensions": "longitude latitude time", + "out_name": "nep", + "type": "real", + "positive": "down", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "nep", + "variableRootDD": "nep", + "branding_label": "tavg-u-hxy-lnd", + "branded_variable_name": "nep_tavg-u-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "Emon.nep", + "cmip7_compound_name": "land.nep.tavg-u-hxy-lnd.mon.GLB", + "uid": "d2290cee-4a9f-11e6-b84e-ac72891c3257" + }, + "land.netAtmosLandC13Flux.tavg-u-hxy-lnd.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "surface_net_downward_mass_flux_of_carbon_dioxide_expressed_as_13C_due_to_all_land_processes", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Net Mass Flux of 13C Between Atmosphere and Land (Positive into Land) as a Result of All Processes [kgC m-2 s-1]", + "comment": "Flux of carbon 31as carbon dioxide into the land. This flux should be reproducible by differencing the sum of all carbon pools (cVeg, cLitter, cSoil, and cProducts or equivalently cLand) from one time step to the next, except in the case of lateral transfer of carbon due to harvest, riverine transport of dissolved organic and/or inorganic carbon, or any other process (in which case the lateral_carbon_transfer_over_land term, see below, will be zero data).-", + "dimensions": "longitude latitude time", + "out_name": "netAtmosLandC13Flux", + "type": "real", + "positive": "down", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "netAtmosLandC13Flux", + "variableRootDD": "netAtmosLandC13Flux", + "branding_label": "tavg-u-hxy-lnd", + "branded_variable_name": "netAtmosLandC13Flux_tavg-u-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "Emon.netAtmosLandC13Flux", + "cmip7_compound_name": "land.netAtmosLandC13Flux.tavg-u-hxy-lnd.mon.GLB", + "uid": "6f6b5004-9acb-11e6-b7ee-ac72891c3257" + }, + "land.netAtmosLandC14Flux.tavg-u-hxy-lnd.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "surface_net_downward_mass_flux_of_carbon_dioxide_expressed_as_14C_due_to_all_land_processes", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Net Mass Flux of 14C Between Atmosphere and Land (Positive into Land) as a Result of All Processes [kgC m-2 s-1]", + "comment": "Flux of carbon-14 as carbon dioxide into the land. This flux should be reproducible by differencing the sum of all carbon pools (cVeg, cLitter, cSoil, and cProducts or equivalently cLand) from one time step to the next, except in the case of lateral transfer of carbon due to harvest, riverine transport of dissolved organic and/or inorganic carbon, or any other process (in which case the lateral_carbon_transfer_over_land term, see below, will be zero data).", + "dimensions": "longitude latitude time", + "out_name": "netAtmosLandC14Flux", + "type": "real", + "positive": "down", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "netAtmosLandC14Flux", + "variableRootDD": "netAtmosLandC14Flux", + "branding_label": "tavg-u-hxy-lnd", + "branded_variable_name": "netAtmosLandC14Flux_tavg-u-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "Emon.netAtmosLandC14Flux", + "cmip7_compound_name": "land.netAtmosLandC14Flux.tavg-u-hxy-lnd.mon.GLB", + "uid": "8b7f8b40-4a5b-11e6-9cd2-ac72891c3257" + }, + "land.nLand.tavg-u-hxy-lnd.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "mass_content_of_nitrogen_in_vegetation_and_litter_and_soil_and_forestry_and_agricultural_products", + "units": "kg m-2", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Total Nitrogen in All Terrestrial Nitrogen Pools", + "comment": "Report missing data over ocean grid cells. For fractional land report value averaged over the land fraction.", + "dimensions": "longitude latitude time", + "out_name": "nLand", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "nLand", + "variableRootDD": "nLand", + "branding_label": "tavg-u-hxy-lnd", + "branded_variable_name": "nLand_tavg-u-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "Emon.nLand", + "cmip7_compound_name": "land.nLand.tavg-u-hxy-lnd.mon.GLB", + "uid": "6f6b1b5c-9acb-11e6-b7ee-ac72891c3257" + }, + "land.nLeaf.tavg-u-hxy-lnd.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "leaf_mass_content_of_nitrogen", + "units": "kg m-2", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Nitrogen Mass in Leaves", + "comment": "\"Content\" indicates a quantity per unit area.", + "dimensions": "longitude latitude time", + "out_name": "nLeaf", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "nLeaf", + "variableRootDD": "nLeaf", + "branding_label": "tavg-u-hxy-lnd", + "branded_variable_name": "nLeaf_tavg-u-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "Emon.nLeaf", + "cmip7_compound_name": "land.nLeaf.tavg-u-hxy-lnd.mon.GLB", + "uid": "8b81f60a-4a5b-11e6-9cd2-ac72891c3257" + }, + "land.nLitter.tavg-u-hxy-lnd.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "litter_mass_content_of_nitrogen", + "units": "kg m-2", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Nitrogen Mass in Litter Pool", + "comment": "Report missing data over ocean grid cells. For fractional land report value averaged over the land fraction.", + "dimensions": "longitude latitude time", + "out_name": "nLitter", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "nLitter", + "variableRootDD": "nLitter", + "branding_label": "tavg-u-hxy-lnd", + "branded_variable_name": "nLitter_tavg-u-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "Emon.nLitter", + "cmip7_compound_name": "land.nLitter.tavg-u-hxy-lnd.mon.GLB", + "uid": "6f6b0a36-9acb-11e6-b7ee-ac72891c3257" + }, + "land.nLitterCwd.tavg-u-hxy-lnd.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "wood_debris_mass_content_of_nitrogen", + "units": "kg m-2", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Nitrogen Mass in Coarse Woody Debris", + "comment": "\"Content\" indicates a quantity per unit area. \"Wood debris\" means dead organic matter composed of coarse wood. It is distinct from fine litter. The precise distinction between \"fine\" and \"coarse\" is model dependent. The sum of the quantities with standard names wood_debris_mass_content_of_nitrogen, surface_litter_mass_content_of_nitrogen and subsurface_litter_mass_content_of_nitrogen is the total nitrogen mass content of dead plant material.", + "dimensions": "longitude latitude time", + "out_name": "nLitterCwd", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "nLitterCwd", + "variableRootDD": "nLitterCwd", + "branding_label": "tavg-u-hxy-lnd", + "branded_variable_name": "nLitterCwd_tavg-u-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "Emon.nLitterCwd", + "cmip7_compound_name": "land.nLitterCwd.tavg-u-hxy-lnd.mon.GLB", + "uid": "8b820b04-4a5b-11e6-9cd2-ac72891c3257" + }, + "land.nLitterSubSurf.tavg-u-hxy-lnd.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "subsurface_litter_mass_content_of_nitrogen", + "units": "kg m-2", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Nitrogen Mass in Below-Ground Litter (non CWD)", + "comment": "\"Content\" indicates a quantity per unit area. \"Litter\" is dead plant material in or above the soil. It is distinct from coarse wood debris. The precise distinction between \"fine\" and \"coarse\" is model dependent. \"Subsurface litter\" means the part of the litter mixed within the soil below the surface. The sum of the quantities with standard names wood_debris_mass_content_of_nitrogen, surface_litter_mass_content_of_nitrogen and subsurface_litter_mass_content_of_nitrogen is the total nitrogen mass content of dead plant material.", + "dimensions": "longitude latitude time", + "out_name": "nLitterSubSurf", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "nLitterSubSurf", + "variableRootDD": "nLitterSubSurf", + "branding_label": "tavg-u-hxy-lnd", + "branded_variable_name": "nLitterSubSurf_tavg-u-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "Emon.nLitterSubSurf", + "cmip7_compound_name": "land.nLitterSubSurf.tavg-u-hxy-lnd.mon.GLB", + "uid": "bcc6ffa2-b8a7-11e6-b7f0-ac72891c3257" + }, + "land.nLitterSurf.tavg-u-hxy-lnd.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "surface_litter_mass_content_of_nitrogen", + "units": "kg m-2", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Nitrogen Mass in Above-Ground Litter (non CWD)", + "comment": "\"Content\" indicates a quantity per unit area. \"Litter\" is dead plant material in or above the soil. It is distinct from coarse wood debris. The precise distinction between \"fine\" and \"coarse\" is model dependent. \"Surface litter\" means the part of the litter resting above the soil surface. The sum of the quantities with standard names wood_debris_mass_content_of_nitrogen, surface_litter_mass_content_of_nitrogen and subsurface_litter_mass_content_of_nitrogen is the total nitrogen mass content of dead plant material.", + "dimensions": "longitude latitude time", + "out_name": "nLitterSurf", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "nLitterSurf", + "variableRootDD": "nLitterSurf", + "branding_label": "tavg-u-hxy-lnd", + "branded_variable_name": "nLitterSurf_tavg-u-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "Emon.nLitterSurf", + "cmip7_compound_name": "land.nLitterSurf.tavg-u-hxy-lnd.mon.GLB", + "uid": "bcc6fc0a-b8a7-11e6-b7f0-ac72891c3257" + }, + "land.nMineral.tavg-u-hxy-lnd.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "soil_mass_content_of_inorganic_nitrogen_expressed_as_nitrogen", + "units": "kg m-2", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Mineral Nitrogen in the Soil", + "comment": "SUM of ammonium, nitrite, nitrate, etc over all soil layers", + "dimensions": "longitude latitude time", + "out_name": "nMineral", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "nMineral", + "variableRootDD": "nMineral", + "branding_label": "tavg-u-hxy-lnd", + "branded_variable_name": "nMineral_tavg-u-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "Emon.nMineral", + "cmip7_compound_name": "land.nMineral.tavg-u-hxy-lnd.mon.GLB", + "uid": "8b80cb4a-4a5b-11e6-9cd2-ac72891c3257" + }, + "land.nMineralNH4.tavg-u-hxy-lnd.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "soil_mass_content_of_inorganic_ammonium_expressed_as_nitrogen", + "units": "kg m-2", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Mineral Ammonium in the Soil", + "comment": "SUM of ammonium over all soil layers", + "dimensions": "longitude latitude time", + "out_name": "nMineralNH4", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "nMineralNH4", + "variableRootDD": "nMineralNH4", + "branding_label": "tavg-u-hxy-lnd", + "branded_variable_name": "nMineralNH4_tavg-u-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "Emon.nMineralNH4", + "cmip7_compound_name": "land.nMineralNH4.tavg-u-hxy-lnd.mon.GLB", + "uid": "8b82154a-4a5b-11e6-9cd2-ac72891c3257" + }, + "land.nMineralNO3.tavg-u-hxy-lnd.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "soil_mass_content_of_inorganic_nitrate_expressed_as_nitrogen", + "units": "kg m-2", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Mineral Nitrate in the Soil", + "comment": "SUM of nitrate over all soil layers", + "dimensions": "longitude latitude time", + "out_name": "nMineralNO3", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "nMineralNO3", + "variableRootDD": "nMineralNO3", + "branding_label": "tavg-u-hxy-lnd", + "branded_variable_name": "nMineralNO3_tavg-u-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "Emon.nMineralNO3", + "cmip7_compound_name": "land.nMineralNO3.tavg-u-hxy-lnd.mon.GLB", + "uid": "8b821a7c-4a5b-11e6-9cd2-ac72891c3257" + }, + "land.nOther.tavg-u-hxy-lnd.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "miscellaneous_living_matter_mass_content_of_nitrogen", + "units": "kg m-2", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Nitrogen Mass in Vegetation Components Other than Leaves, Stem and Root", + "comment": "E.g. fruits, seeds, etc.", + "dimensions": "longitude latitude time", + "out_name": "nOther", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "nOther", + "variableRootDD": "nOther", + "branding_label": "tavg-u-hxy-lnd", + "branded_variable_name": "nOther_tavg-u-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "Emon.nOther", + "cmip7_compound_name": "land.nOther.tavg-u-hxy-lnd.mon.GLB", + "uid": "8b8205b4-4a5b-11e6-9cd2-ac72891c3257" + }, + "land.npp.tavg-u-hxy-lnd.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "net_primary_productivity_of_biomass_expressed_as_carbon", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Net Primary Production on Land as Carbon Mass Flux [kgC m-2 s-1]", + "comment": "\"Production of carbon\" means the production of biomass expressed as the mass of carbon which it contains. Net primary production is the excess of gross primary production (rate of synthesis of biomass from inorganic precursors) by autotrophs (\"producers\"), for example, photosynthesis in plants or phytoplankton, over the rate at which the autotrophs themselves respire some of this biomass. \"Productivity\" means production per unit area. The phrase \"expressed_as\" is used in the construction A_expressed_as_B, where B is a chemical constituent of A. It means that the quantity indicated by the standard name is calculated solely with respect to the B contained in A, neglecting all other chemical constituents of A.", + "dimensions": "longitude latitude time", + "out_name": "npp", + "type": "real", + "positive": "down", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Lmon", + "physical_parameter_name": "npp", + "variableRootDD": "npp", + "branding_label": "tavg-u-hxy-lnd", + "branded_variable_name": "npp_tavg-u-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "Lmon.npp", + "cmip7_compound_name": "land.npp.tavg-u-hxy-lnd.mon.GLB", + "uid": "bab26690-e5dd-11e5-8482-ac72891c3257" + }, + "land.npp.tavg-u-hxy-ng.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "net_primary_productivity_of_biomass_expressed_as_carbon", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean where natural_grasses (mask=grassFrac)", + "cell_measures": "area: areacella", + "long_name": "Net Primary Production on Grass Tiles as Carbon Mass Flux [kgC m-2 s-1]", + "comment": "Total NPP of grass in the grid cell", + "dimensions": "longitude latitude time", + "out_name": "nppGrass", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "nppGrass", + "variableRootDD": "npp", + "branding_label": "tavg-u-hxy-ng", + "branded_variable_name": "npp_tavg-u-hxy-ng", + "region": "GLB", + "cmip6_compound_name": "Emon.nppGrass", + "cmip7_compound_name": "land.npp.tavg-u-hxy-ng.mon.GLB", + "uid": "e70777e6-aa7f-11e6-9a4a-5404a60d96b5" + }, + "land.npp.tavg-u-hxy-shb.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "net_primary_productivity_of_biomass_expressed_as_carbon", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean where shrubs (mask=shrubFrac)", + "cell_measures": "area: areacella", + "long_name": "Net Primary Production on Shrub Tiles as Carbon Mass Flux [kgC m-2 s-1]", + "comment": "Total NPP of shrubs in the grid cell", + "dimensions": "longitude latitude time", + "out_name": "nppShrub", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "nppShrub", + "variableRootDD": "npp", + "branding_label": "tavg-u-hxy-shb", + "branded_variable_name": "npp_tavg-u-hxy-shb", + "region": "GLB", + "cmip6_compound_name": "Emon.nppShrub", + "cmip7_compound_name": "land.npp.tavg-u-hxy-shb.mon.GLB", + "uid": "e70772c8-aa7f-11e6-9a4a-5404a60d96b5" + }, + "land.npp.tavg-u-hxy-tree.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "net_primary_productivity_of_biomass_expressed_as_carbon", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean where trees (mask=treeFrac)", + "cell_measures": "area: areacella", + "long_name": "Net Primary Production on Tree Tiles as Carbon Mass Flux [kgC m-2 s-1]", + "comment": "Total NPP of trees in the grid cell", + "dimensions": "longitude latitude time", + "out_name": "nppTree", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "nppTree", + "variableRootDD": "npp", + "branding_label": "tavg-u-hxy-tree", + "branded_variable_name": "npp_tavg-u-hxy-tree", + "region": "GLB", + "cmip6_compound_name": "Emon.nppTree", + "cmip7_compound_name": "land.npp.tavg-u-hxy-tree.mon.GLB", + "uid": "e7076d96-aa7f-11e6-9a4a-5404a60d96b5" + }, + "land.nppLeaf.tavg-u-hxy-lnd.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "net_primary_productivity_of_biomass_expressed_as_carbon_accumulated_in_leaves", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Net Primary Production Allocated to Leaves as Carbon Mass Flux [kgC m-2 s-1]", + "comment": "This is the rate of carbon uptake by leaves due to NPP", + "dimensions": "longitude latitude time", + "out_name": "nppLeaf", + "type": "real", + "positive": "down", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Lmon", + "physical_parameter_name": "nppLeaf", + "variableRootDD": "nppLeaf", + "branding_label": "tavg-u-hxy-lnd", + "branded_variable_name": "nppLeaf_tavg-u-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "Lmon.nppLeaf", + "cmip7_compound_name": "land.nppLeaf.tavg-u-hxy-lnd.mon.GLB", + "uid": "bab26e24-e5dd-11e5-8482-ac72891c3257" + }, + "land.nppLut.tavg-u-hxy-multi.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "net_primary_productivity_of_biomass_expressed_as_carbon", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean where sector", + "cell_measures": "area: areacella", + "long_name": "Net Primary Production on Land-Use Tile as Carbon Mass Flux [kgC m-2 s-1]", + "comment": "\"Production of carbon\" means the production of biomass expressed as the mass of carbon which it contains. Net primary production is the excess of gross primary production (rate of synthesis of biomass from inorganic precursors) by autotrophs (\"producers\"), for example, photosynthesis in plants or phytoplankton, over the rate at which the autotrophs themselves respire some of this biomass. \"Productivity\" means production per unit area. The phrase \"expressed_as\" is used in the construction A_expressed_as_B, where B is a chemical constituent of A. It means that the quantity indicated by the standard name is calculated solely with respect to the B contained in A, neglecting all other chemical constituents of A.", + "dimensions": "longitude latitude landuse time", + "out_name": "nppLut", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "nppLut", + "variableRootDD": "nppLut", + "branding_label": "tavg-u-hxy-multi", + "branded_variable_name": "nppLut_tavg-u-hxy-multi", + "region": "GLB", + "cmip6_compound_name": "Emon.nppLut", + "cmip7_compound_name": "land.nppLut.tavg-u-hxy-multi.mon.GLB", + "uid": "d22d96ba-4a9f-11e6-b84e-ac72891c3257" + }, + "land.nppOther.tavg-u-hxy-lnd.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "net_primary_productivity_of_biomass_expressed_as_carbon_accumulated_in_miscellaneous_living_matter", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Net Primary Production Allocated to Other Pools (not Leaves Stem or Roots) as Carbon Mass Flux [kgC m-2 s-1]", + "comment": "added for completeness with npp_root", + "dimensions": "longitude latitude time", + "out_name": "nppOther", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "nppOther", + "variableRootDD": "nppOther", + "branding_label": "tavg-u-hxy-lnd", + "branded_variable_name": "nppOther_tavg-u-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "Emon.nppOther", + "cmip7_compound_name": "land.nppOther.tavg-u-hxy-lnd.mon.GLB", + "uid": "e7074974-aa7f-11e6-9a4a-5404a60d96b5" + }, + "land.nppRoot.tavg-u-hxy-lnd.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "net_primary_productivity_of_biomass_expressed_as_carbon_accumulated_in_roots", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Net Primary Production Allocated to Roots as Carbon Mass Flux [kgC m-2 s-1]", + "comment": "This is the rate of carbon uptake by roots due to NPP", + "dimensions": "longitude latitude time", + "out_name": "nppRoot", + "type": "real", + "positive": "down", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Lmon", + "physical_parameter_name": "nppRoot", + "variableRootDD": "nppRoot", + "branding_label": "tavg-u-hxy-lnd", + "branded_variable_name": "nppRoot_tavg-u-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "Lmon.nppRoot", + "cmip7_compound_name": "land.nppRoot.tavg-u-hxy-lnd.mon.GLB", + "uid": "bab275d6-e5dd-11e5-8482-ac72891c3257" + }, + "land.nppStem.tavg-u-hxy-lnd.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "net_primary_productivity_of_biomass_expressed_as_carbon_accumulated_in_stems", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Net Primary Production Allocated to Stem as Carbon Mass Flux [kgC m-2 s-1]", + "comment": "added for completeness with npp_root", + "dimensions": "longitude latitude time", + "out_name": "nppStem", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "nppStem", + "variableRootDD": "nppStem", + "branding_label": "tavg-u-hxy-lnd", + "branded_variable_name": "nppStem_tavg-u-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "Emon.nppStem", + "cmip7_compound_name": "land.nppStem.tavg-u-hxy-lnd.mon.GLB", + "uid": "e70740aa-aa7f-11e6-9a4a-5404a60d96b5" + }, + "land.nppVgt.tavg-u-hxy-multi.day.GLB": { + "frequency": "day", + "modeling_realm": "land", + "standard_name": "net_primary_productivity_of_biomass_expressed_as_carbon", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean where sector", + "cell_measures": "area: areacella", + "long_name": "Net Primary Production on Vegetation type as Carbon Mass Flux [kgC m-2 s-1]", + "comment": "\"Production of carbon\" means the production of biomass expressed as the mass of carbon which it contains. Net primary production is the excess of gross primary production (rate of synthesis of biomass from inorganic precursors) by autotrophs (\"producers\"), for example, photosynthesis in plants or phytoplankton, over the rate at which the autotrophs themselves respire some of this biomass. \"Productivity\" means production per unit area. The phrase \"expressed_as\" is used in the construction A_expressed_as_B, where B is a chemical constituent of A. It means that the quantity indicated by the standard name is calculated solely with respect to the B contained in A, neglecting all other chemical constituents of A.", + "dimensions": "longitude latitude vegtype time", + "out_name": "nppVgt", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Eday", + "physical_parameter_name": "nppVgt", + "variableRootDD": "nppVgt", + "branding_label": "tavg-u-hxy-multi", + "branded_variable_name": "nppVgt_tavg-u-hxy-multi", + "region": "GLB", + "cmip6_compound_name": "Eday.nppVgt", + "cmip7_compound_name": "land.nppVgt.tavg-u-hxy-multi.day.GLB", + "uid": "83bbfba9-7f07-11ef-9308-b1dd71e64bec" + }, + "land.nProduct.tavg-u-hxy-lnd.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "nitrogen_mass_content_of_forestry_and_agricultural_products", + "units": "kg m-2", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Nitrogen Mass in Products of Land-Use Change", + "comment": "Report missing data over ocean grid cells. For fractional land report value averaged over the land fraction.", + "dimensions": "longitude latitude time", + "out_name": "nProduct", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "nProduct", + "variableRootDD": "nProduct", + "branding_label": "tavg-u-hxy-lnd", + "branded_variable_name": "nProduct_tavg-u-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "Emon.nProduct", + "cmip7_compound_name": "land.nProduct.tavg-u-hxy-lnd.mon.GLB", + "uid": "8b80c06e-4a5b-11e6-9cd2-ac72891c3257" + }, + "land.nRoot.tavg-u-hxy-lnd.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "root_mass_content_of_nitrogen", + "units": "kg m-2", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Nitrogen Mass in Roots", + "comment": "including fine and coarse roots.", + "dimensions": "longitude latitude time", + "out_name": "nRoot", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "nRoot", + "variableRootDD": "nRoot", + "branding_label": "tavg-u-hxy-lnd", + "branded_variable_name": "nRoot_tavg-u-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "Emon.nRoot", + "cmip7_compound_name": "land.nRoot.tavg-u-hxy-lnd.mon.GLB", + "uid": "8b820078-4a5b-11e6-9cd2-ac72891c3257" + }, + "land.nSoil.tavg-u-hxy-lnd.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "soil_mass_content_of_nitrogen", + "units": "kg m-2", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Nitrogen Mass in Soil Pool", + "comment": "Report missing data over ocean grid cells. For fractional land report value averaged over the land fraction.", + "dimensions": "longitude latitude time", + "out_name": "nSoil", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "nSoil", + "variableRootDD": "nSoil", + "branding_label": "tavg-u-hxy-lnd", + "branded_variable_name": "nSoil_tavg-u-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "Emon.nSoil", + "cmip7_compound_name": "land.nSoil.tavg-u-hxy-lnd.mon.GLB", + "uid": "8b80baec-4a5b-11e6-9cd2-ac72891c3257" + }, + "land.nStem.tavg-u-hxy-lnd.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "stem_mass_content_of_nitrogen", + "units": "kg m-2", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Nitrogen Mass in Stem", + "comment": "including sapwood and hardwood.", + "dimensions": "longitude latitude time", + "out_name": "nStem", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "nStem", + "variableRootDD": "nStem", + "branding_label": "tavg-u-hxy-lnd", + "branded_variable_name": "nStem_tavg-u-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "Emon.nStem", + "cmip7_compound_name": "land.nStem.tavg-u-hxy-lnd.mon.GLB", + "uid": "8b81fb46-4a5b-11e6-9cd2-ac72891c3257" + }, + "land.nVeg.tavg-u-hxy-lnd.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "vegetation_mass_content_of_nitrogen", + "units": "kg m-2", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Nitrogen Mass in Vegetation", + "comment": "Report missing data over ocean grid cells. For fractional land report value averaged over the land fraction.", + "dimensions": "longitude latitude time", + "out_name": "nVeg", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "nVeg", + "variableRootDD": "nVeg", + "branding_label": "tavg-u-hxy-lnd", + "branded_variable_name": "nVeg_tavg-u-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "Emon.nVeg", + "cmip7_compound_name": "land.nVeg.tavg-u-hxy-lnd.mon.GLB", + "uid": "6f6b0478-9acb-11e6-b7ee-ac72891c3257" + }, + "land.orog.tavg-u-hxy-is.mon.ATA": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "surface_altitude", + "units": "m", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacellg", + "long_name": "Surface Altitude", + "comment": "The surface called \"surface\" means the lower boundary of the atmosphere. Altitude is the (geometric) height above the geoid, which is the reference geopotential surface. The geoid is similar to mean sea level.", + "dimensions": "longitude latitude time", + "out_name": "orog", + "type": "real", + "positive": "", + "spatial_shape": "XYA-na", + "temporal_shape": "time-intv", + "cmip6_table": "ImonAnt", + "physical_parameter_name": "orog", + "variableRootDD": "orog", + "branding_label": "tavg-u-hxy-is", + "branded_variable_name": "orog_tavg-u-hxy-is", + "region": "ATA", + "cmip6_compound_name": "ImonAnt.orog", + "cmip7_compound_name": "land.orog.tavg-u-hxy-is.mon.ATA", + "uid": "d5b3576e-c78d-11e6-9b25-5404a60d96b5" + }, + "land.orog.tavg-u-hxy-is.mon.GRL": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "surface_altitude", + "units": "m", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacellg", + "long_name": "Surface Altitude", + "comment": "The surface called \"surface\" means the lower boundary of the atmosphere. Altitude is the (geometric) height above the geoid, which is the reference geopotential surface. The geoid is similar to mean sea level.", + "dimensions": "longitude latitude time", + "out_name": "orog", + "type": "real", + "positive": "", + "spatial_shape": "XYG-na", + "temporal_shape": "time-intv", + "cmip6_table": "ImonGre", + "physical_parameter_name": "orog", + "variableRootDD": "orog", + "branding_label": "tavg-u-hxy-is", + "branded_variable_name": "orog_tavg-u-hxy-is", + "region": "GRL", + "cmip6_compound_name": "ImonGre.orog", + "cmip7_compound_name": "land.orog.tavg-u-hxy-is.mon.GRL", + "uid": "d5b2df64-c78d-11e6-9b25-5404a60d96b5" + }, + "land.orog.tavg-u-hxy-is.yr.ATA": { + "frequency": "yr", + "modeling_realm": "land", + "standard_name": "surface_altitude", + "units": "m", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacellg", + "long_name": "Surface Altitude", + "comment": "This is needed in case the ice sheet elevation changes in time", + "dimensions": "longitude latitude time", + "out_name": "orog", + "type": "real", + "positive": "", + "spatial_shape": "XYA-na", + "temporal_shape": "time-intv", + "cmip6_table": "IyrAnt", + "physical_parameter_name": "orog", + "variableRootDD": "orog", + "branding_label": "tavg-u-hxy-is", + "branded_variable_name": "orog_tavg-u-hxy-is", + "region": "ATA", + "cmip6_compound_name": "IyrAnt.orog", + "cmip7_compound_name": "land.orog.tavg-u-hxy-is.yr.ATA", + "uid": "d5b42c98-c78d-11e6-9b25-5404a60d96b5" + }, + "land.orog.tavg-u-hxy-is.yr.GRL": { + "frequency": "yr", + "modeling_realm": "land", + "standard_name": "surface_altitude", + "units": "m", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacellg", + "long_name": "Surface Altitude", + "comment": "This is needed in case the ice sheet elevation changes in time", + "dimensions": "longitude latitude time", + "out_name": "orog", + "type": "real", + "positive": "", + "spatial_shape": "XYG-na", + "temporal_shape": "time-intv", + "cmip6_table": "IyrGre", + "physical_parameter_name": "orog", + "variableRootDD": "orog", + "branding_label": "tavg-u-hxy-is", + "branded_variable_name": "orog_tavg-u-hxy-is", + "region": "GRL", + "cmip6_compound_name": "IyrGre.orog", + "cmip7_compound_name": "land.orog.tavg-u-hxy-is.yr.GRL", + "uid": "d5b3951c-c78d-11e6-9b25-5404a60d96b5" + }, + "land.orog.ti-u-hxy-u.fx.30S-90S": { + "frequency": "fx", + "modeling_realm": "land", + "standard_name": "surface_altitude", + "units": "m", + "cell_methods": "area: mean", + "cell_measures": "area: areacella", + "long_name": "Surface Altitude", + "comment": "height above the geoid; as defined here, \"the geoid\" is a surface of constant geopotential that, if the ocean were at rest, would coincide with mean sea level. Under this definition, the geoid changes as the mean volume of the ocean changes (e.g., due to glacial melt, or global warming of the ocean). Reported here is the height above the present-day geoid (0.0 over ocean).", + "dimensions": "longitude latitude", + "out_name": "orog", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "None", + "cmip6_table": "fx", + "physical_parameter_name": "orog", + "variableRootDD": "orog", + "branding_label": "ti-u-hxy-u", + "branded_variable_name": "orog_ti-u-hxy-u", + "region": "30S-90S", + "cmip6_compound_name": "fx.orogSouth30", + "cmip7_compound_name": "land.orog.ti-u-hxy-u.fx.30S-90S", + "uid": "80ac31ae-a698-11ef-914a-613c0433d878" + }, + "land.orog.ti-u-hxy-u.fx.GLB": { + "frequency": "fx", + "modeling_realm": "land", + "standard_name": "surface_altitude", + "units": "m", + "cell_methods": "area: mean", + "cell_measures": "area: areacella", + "long_name": "Surface Altitude", + "comment": "height above the geoid; as defined here, \"the geoid\" is a surface of constant geopotential that, if the ocean were at rest, would coincide with mean sea level. Under this definition, the geoid changes as the mean volume of the ocean changes (e.g., due to glacial melt, or global warming of the ocean). Reported here is the height above the present-day geoid (0.0 over ocean).", + "dimensions": "longitude latitude", + "out_name": "orog", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "None", + "cmip6_table": "fx", + "physical_parameter_name": "orog", + "variableRootDD": "orog", + "branding_label": "ti-u-hxy-u", + "branded_variable_name": "orog_ti-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "fx.orog", + "cmip7_compound_name": "land.orog.ti-u-hxy-u.fx.GLB", + "uid": "bab2f9d4-e5dd-11e5-8482-ac72891c3257" + }, + "land.pastureFrac.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "area_fraction", + "units": "%", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Percentage of Land Which Is Anthropogenic Pasture", + "comment": "fraction of entire grid cell that is covered by anthropogenic pasture.", + "dimensions": "longitude latitude time typepasture", + "out_name": "pastureFrac", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Lmon", + "physical_parameter_name": "pastureFrac", + "variableRootDD": "pastureFrac", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "pastureFrac_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "Lmon.pastureFrac", + "cmip7_compound_name": "land.pastureFrac.tavg-u-hxy-u.mon.GLB", + "uid": "bab30988-e5dd-11e5-8482-ac72891c3257" + }, + "land.pastureFracC3.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "area_fraction", + "units": "%", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "C3 Pasture Area Percentage", + "comment": "Percentage of entire grid cell covered by C3 pasture", + "dimensions": "longitude latitude time typec3pastures", + "out_name": "pastureFracC3", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "pastureFracC3", + "variableRootDD": "pastureFracC3", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "pastureFracC3_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "Emon.pastureFracC3", + "cmip7_compound_name": "land.pastureFracC3.tavg-u-hxy-u.mon.GLB", + "uid": "e706daf2-aa7f-11e6-9a4a-5404a60d96b5" + }, + "land.pastureFracC4.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "area_fraction", + "units": "%", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "C4 Pasture Area Percentage", + "comment": "Percentage of entire grid cell covered by C4 pasture", + "dimensions": "longitude latitude time typec4pastures", + "out_name": "pastureFracC4", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "pastureFracC4", + "variableRootDD": "pastureFracC4", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "pastureFracC4_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "Emon.pastureFracC4", + "cmip7_compound_name": "land.pastureFracC4.tavg-u-hxy-u.mon.GLB", + "uid": "e706df98-aa7f-11e6-9a4a-5404a60d96b5" + }, + "land.prveg.tavg-u-hxy-lnd.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "precipitation_flux_onto_canopy", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Precipitation onto Canopy", + "comment": "the precipitation flux that is intercepted by the vegetation canopy (if present in model) before reaching the ground.", + "dimensions": "longitude latitude time", + "out_name": "prveg", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Lmon", + "physical_parameter_name": "prveg", + "variableRootDD": "prveg", + "branding_label": "tavg-u-hxy-lnd", + "branded_variable_name": "prveg_tavg-u-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "Lmon.prveg", + "cmip7_compound_name": "land.prveg.tavg-u-hxy-lnd.mon.GLB", + "uid": "bab45658-e5dd-11e5-8482-ac72891c3257" + }, + "land.qgwr.tavg-u-hxy-lnd.day.GLB": { + "frequency": "day", + "modeling_realm": "land", + "standard_name": "downward_liquid_water_mass_flux_into_groundwater", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacellr", + "long_name": "Groundwater Recharge from Soil Layer", + "comment": "water_flux_from_soil_layer_to_groundwater", + "dimensions": "longitude latitude time", + "out_name": "qgwr", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Eday", + "physical_parameter_name": "qgwr", + "variableRootDD": "qgwr", + "branding_label": "tavg-u-hxy-lnd", + "branded_variable_name": "qgwr_tavg-u-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "Eday.qgwr", + "cmip7_compound_name": "land.qgwr.tavg-u-hxy-lnd.day.GLB", + "uid": "d22856be-4a9f-11e6-b84e-ac72891c3257" + }, + "land.ra.tavg-u-hxy-lnd.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_plant_respiration", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Carbon Mass Flux into Atmosphere Due to Autotrophic (Plant) Respiration on Land [kgC m-2 s-1]", + "comment": "Carbon mass flux per unit area into atmosphere due to autotrophic respiration on land (respiration by producers) [see rh for heterotrophic production]", + "dimensions": "longitude latitude time", + "out_name": "ra", + "type": "real", + "positive": "up", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Lmon", + "physical_parameter_name": "ra", + "variableRootDD": "ra", + "branding_label": "tavg-u-hxy-lnd", + "branded_variable_name": "ra_tavg-u-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "Lmon.ra", + "cmip7_compound_name": "land.ra.tavg-u-hxy-lnd.mon.GLB", + "uid": "bab4c3ea-e5dd-11e5-8482-ac72891c3257" + }, + "land.ra.tavg-u-hxy-ng.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_plant_respiration", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean where natural_grasses (mask=grassFrac)", + "cell_measures": "area: areacella", + "long_name": "Autotrophic Respiration on Grass Tiles as Carbon Mass Flux [kgC m-2 s-1]", + "comment": "Total RA of grass in the grid cell", + "dimensions": "longitude latitude time", + "out_name": "raGrass", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "raGrass", + "variableRootDD": "ra", + "branding_label": "tavg-u-hxy-ng", + "branded_variable_name": "ra_tavg-u-hxy-ng", + "region": "GLB", + "cmip6_compound_name": "Emon.raGrass", + "cmip7_compound_name": "land.ra.tavg-u-hxy-ng.mon.GLB", + "uid": "e70785c4-aa7f-11e6-9a4a-5404a60d96b5" + }, + "land.ra.tavg-u-hxy-shb.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_plant_respiration", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean where shrubs (mask=shrubFrac)", + "cell_measures": "area: areacella", + "long_name": "Autotrophic Respiration on Shrub Tiles as Carbon Mass Flux [kgC m-2 s-1]", + "comment": "Total RA of shrubs in the grid cell", + "dimensions": "longitude latitude time", + "out_name": "raShrub", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "raShrub", + "variableRootDD": "ra", + "branding_label": "tavg-u-hxy-shb", + "branded_variable_name": "ra_tavg-u-hxy-shb", + "region": "GLB", + "cmip6_compound_name": "Emon.raShrub", + "cmip7_compound_name": "land.ra.tavg-u-hxy-shb.mon.GLB", + "uid": "e707816e-aa7f-11e6-9a4a-5404a60d96b5" + }, + "land.ra.tavg-u-hxy-tree.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_plant_respiration", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean where trees (mask=treeFrac)", + "cell_measures": "area: areacella", + "long_name": "Autotrophic Respiration on Tree Tiles as Carbon Mass Flux [kgC m-2 s-1]", + "comment": "Total RA of trees in the grid cell", + "dimensions": "longitude latitude time", + "out_name": "raTree", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "raTree", + "variableRootDD": "ra", + "branding_label": "tavg-u-hxy-tree", + "branded_variable_name": "ra_tavg-u-hxy-tree", + "region": "GLB", + "cmip6_compound_name": "Emon.raTree", + "cmip7_compound_name": "land.ra.tavg-u-hxy-tree.mon.GLB", + "uid": "e7077d0e-aa7f-11e6-9a4a-5404a60d96b5" + }, + "land.rac13.tavg-u-hxy-lnd.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_13C_due_to_plant_respiration", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Carbon-13 Mass Flux into Atmosphere Due to Autotrophic (Plant) Respiration on Land [kgC m-2 s-1]", + "comment": "Flux of carbon-13 into the atmosphere due to plant respiration. Plant respiration is the sum of respiration by parts of plants both above and below the soil. It is assumed that all the respired carbon dioxide is emitted to the atmosphere.", + "dimensions": "longitude latitude time", + "out_name": "rac13", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "rac13", + "variableRootDD": "rac13", + "branding_label": "tavg-u-hxy-lnd", + "branded_variable_name": "rac13_tavg-u-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "Emon.rac13", + "cmip7_compound_name": "land.rac13.tavg-u-hxy-lnd.mon.GLB", + "uid": "6f6b4384-9acb-11e6-b7ee-ac72891c3257" + }, + "land.rac14.tavg-u-hxy-lnd.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_14C_due_to_plant_respiration", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Carbon-14 Mass Flux into Atmosphere Due to Autotrophic (Plant) Respiration on Land [kgC m-2 s-1]", + "comment": "Flux of carbon-14 into the atmosphere due to plant respiration. Plant respiration is the sum of respiration by parts of plants both above and below the soil. It is assumed that all the respired carbon dioxide is emitted to the atmosphere.", + "dimensions": "longitude latitude time", + "out_name": "rac14", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "rac14", + "variableRootDD": "rac14", + "branding_label": "tavg-u-hxy-lnd", + "branded_variable_name": "rac14_tavg-u-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "Emon.rac14", + "cmip7_compound_name": "land.rac14.tavg-u-hxy-lnd.mon.GLB", + "uid": "6f6b2c96-9acb-11e6-b7ee-ac72891c3257" + }, + "land.raLeaf.tavg-u-hxy-lnd.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_plant_respiration_in_leaves", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Total Respiration from Leaves as Carbon Mass Flux [kgC m-2 s-1]", + "comment": "added for completeness with Ra_root", + "dimensions": "longitude latitude time", + "out_name": "raLeaf", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "raLeaf", + "variableRootDD": "raLeaf", + "branding_label": "tavg-u-hxy-lnd", + "branded_variable_name": "raLeaf_tavg-u-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "Emon.raLeaf", + "cmip7_compound_name": "land.raLeaf.tavg-u-hxy-lnd.mon.GLB", + "uid": "8b81b56e-4a5b-11e6-9cd2-ac72891c3257" + }, + "land.raLut.tavg-u-hxy-multi.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_plant_respiration", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean where sector", + "cell_measures": "area: areacella", + "long_name": "Autotrophic Respiration on Land-Use Tile as Carbon Mass Flux [kgC m-2 s-1]", + "comment": "Carbon mass flux per unit area into atmosphere due to autotrophic respiration on land (respiration by producers) [see rh for heterotrophic production]. Calculated on land-use tiles.", + "dimensions": "longitude latitude landuse time", + "out_name": "raLut", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "raLut", + "variableRootDD": "raLut", + "branding_label": "tavg-u-hxy-multi", + "branded_variable_name": "raLut_tavg-u-hxy-multi", + "region": "GLB", + "cmip6_compound_name": "Emon.raLut", + "cmip7_compound_name": "land.raLut.tavg-u-hxy-multi.mon.GLB", + "uid": "d22d91a6-4a9f-11e6-b84e-ac72891c3257" + }, + "land.raOther.tavg-u-hxy-lnd.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_plant_respiration_in_miscellaneous_living_matter", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Total Respiration from Other Pools (not Leaves Stem or Roots) as Carbon Mass Flux [kgC m-2 s-1]", + "comment": "added for completeness with Ra_root", + "dimensions": "longitude latitude time", + "out_name": "raOther", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "raOther", + "variableRootDD": "raOther", + "branding_label": "tavg-u-hxy-lnd", + "branded_variable_name": "raOther_tavg-u-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "Emon.raOther", + "cmip7_compound_name": "land.raOther.tavg-u-hxy-lnd.mon.GLB", + "uid": "e70755cc-aa7f-11e6-9a4a-5404a60d96b5" + }, + "land.raRoot.tavg-u-hxy-lnd.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_plant_respiration_in_roots", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Total Respiration from Roots as Carbon Mass Flux [kgC m-2 s-1]", + "comment": "Total autotrophic respiration from all belowground plant parts. This has benchmarking value because the sum of Rh and root respiration can be compared to observations of total soil respiration.", + "dimensions": "longitude latitude time", + "out_name": "raRoot", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "raRoot", + "variableRootDD": "raRoot", + "branding_label": "tavg-u-hxy-lnd", + "branded_variable_name": "raRoot_tavg-u-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "Emon.raRoot", + "cmip7_compound_name": "land.raRoot.tavg-u-hxy-lnd.mon.GLB", + "uid": "8b81ab0a-4a5b-11e6-9cd2-ac72891c3257" + }, + "land.raStem.tavg-u-hxy-lnd.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_plant_respiration_in_stems", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Total Respiration from Stem as Carbon Mass Flux [kgC m-2 s-1]", + "comment": "added for completeness with Ra_root", + "dimensions": "longitude latitude time", + "out_name": "raStem", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "raStem", + "variableRootDD": "raStem", + "branding_label": "tavg-u-hxy-lnd", + "branded_variable_name": "raStem_tavg-u-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "Emon.raStem", + "cmip7_compound_name": "land.raStem.tavg-u-hxy-lnd.mon.GLB", + "uid": "8b81b046-4a5b-11e6-9cd2-ac72891c3257" + }, + "land.raVgt.tavg-u-hxy-multi.day.GLB": { + "frequency": "day", + "modeling_realm": "land", + "standard_name": "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_plant_respiration", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean where sector", + "cell_measures": "area: areacella", + "long_name": "Autotrophic Respiration on Vegetation type as Carbon Mass Flux [kgC m-2 s-1]", + "comment": "Carbon mass flux per unit area into atmosphere due to autotrophic respiration on land (respiration by producers) [see rh for heterotrophic production]. Calculated on vegetation type.", + "dimensions": "longitude latitude vegtype time", + "out_name": "raVgt", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Eday", + "physical_parameter_name": "raVgt", + "variableRootDD": "raVgt", + "branding_label": "tavg-u-hxy-multi", + "branded_variable_name": "raVgt_tavg-u-hxy-multi", + "region": "GLB", + "cmip6_compound_name": "Eday.raVgt", + "cmip7_compound_name": "land.raVgt.tavg-u-hxy-multi.day.GLB", + "uid": "83bbfba8-7f07-11ef-9308-b1dd71e64bec" + }, + "land.residualFrac.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "area_fraction", + "units": "%", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Percentage of Grid Cell That Is Land but neither Vegetation Covered nor Bare Soil", + "comment": "fraction of entire grid cell that is land and is covered by \"non-vegetation\" and \"non-bare-soil\" (e.g., urban, ice, lakes, etc.)", + "dimensions": "longitude latitude time typeresidual", + "out_name": "residualFrac", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Lmon", + "physical_parameter_name": "residualFrac", + "variableRootDD": "residualFrac", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "residualFrac_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "Lmon.residualFrac", + "cmip7_compound_name": "land.residualFrac.tavg-u-hxy-u.mon.GLB", + "uid": "bab4f1e4-e5dd-11e5-8482-ac72891c3257" + }, + "land.residualFrac.tavg-u-hxy-u.yr.GLB": { + "frequency": "yr", + "modeling_realm": "land", + "standard_name": "area_fraction", + "units": "%", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Percentage of Grid Cell That Is Land but neither Vegetation Covered nor Bare Soil", + "comment": "Percentage of entire grid cell that is land and is covered by neither vegetation nor bare-soil (e.g., urban, ice, lakes, etc.)", + "dimensions": "longitude latitude time typeresidual", + "out_name": "residualFrac", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Eyr", + "physical_parameter_name": "residualFrac", + "variableRootDD": "residualFrac", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "residualFrac_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "Eyr.residualFrac", + "cmip7_compound_name": "land.residualFrac.tavg-u-hxy-u.yr.GLB", + "uid": "fb018b80-be37-11e6-bac1-5404a60d96b5" + }, + "land.rh.tavg-u-hxy-lnd.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_heterotrophic_respiration", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Total Heterotrophic Respiration on Land as Carbon Mass Flux [kgC m-2 s-1]", + "comment": "Carbon mass flux per unit area into atmosphere due to heterotrophic respiration on land (respiration by consumers)", + "dimensions": "longitude latitude time", + "out_name": "rh", + "type": "real", + "positive": "up", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Lmon", + "physical_parameter_name": "rh", + "variableRootDD": "rh", + "branding_label": "tavg-u-hxy-lnd", + "branded_variable_name": "rh_tavg-u-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "Lmon.rh", + "cmip7_compound_name": "land.rh.tavg-u-hxy-lnd.mon.GLB", + "uid": "bab4f95a-e5dd-11e5-8482-ac72891c3257" + }, + "land.rh.tavg-u-hxy-ng.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_heterotrophic_respiration", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean where natural_grasses (mask=grassFrac)", + "cell_measures": "area: areacella", + "long_name": "Heterotrophic Respiration on Grass Tiles as Carbon Mass Flux [kgC m-2 s-1]", + "comment": "Total RH of grass in the grid cell", + "dimensions": "longitude latitude time", + "out_name": "rhGrass", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "rhGrass", + "variableRootDD": "rh", + "branding_label": "tavg-u-hxy-ng", + "branded_variable_name": "rh_tavg-u-hxy-ng", + "region": "GLB", + "cmip6_compound_name": "Emon.rhGrass", + "cmip7_compound_name": "land.rh.tavg-u-hxy-ng.mon.GLB", + "uid": "e70792da-aa7f-11e6-9a4a-5404a60d96b5" + }, + "land.rh.tavg-u-hxy-shb.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_heterotrophic_respiration", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean where shrubs (mask=shrubFrac)", + "cell_measures": "area: areacella", + "long_name": "Heterotrophic Respiration on Shrub Tiles as Carbon Mass Flux [kgC m-2 s-1]", + "comment": "Total RH of shrubs in the grid cell", + "dimensions": "longitude latitude time", + "out_name": "rhShrub", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "rhShrub", + "variableRootDD": "rh", + "branding_label": "tavg-u-hxy-shb", + "branded_variable_name": "rh_tavg-u-hxy-shb", + "region": "GLB", + "cmip6_compound_name": "Emon.rhShrub", + "cmip7_compound_name": "land.rh.tavg-u-hxy-shb.mon.GLB", + "uid": "e7078e7a-aa7f-11e6-9a4a-5404a60d96b5" + }, + "land.rh.tavg-u-hxy-tree.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_heterotrophic_respiration", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean where trees (mask=treeFrac)", + "cell_measures": "area: areacella", + "long_name": "Heterotrophic Respiration on Tree Tiles as Carbon Mass Flux [kgC m-2 s-1]", + "comment": "Total RH of trees in the grid cell", + "dimensions": "longitude latitude time", + "out_name": "rhTree", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "rhTree", + "variableRootDD": "rh", + "branding_label": "tavg-u-hxy-tree", + "branded_variable_name": "rh_tavg-u-hxy-tree", + "region": "GLB", + "cmip6_compound_name": "Emon.rhTree", + "cmip7_compound_name": "land.rh.tavg-u-hxy-tree.mon.GLB", + "uid": "e7078a24-aa7f-11e6-9a4a-5404a60d96b5" + }, + "land.rhc13.tavg-u-hxy-lnd.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_13C_due_to_heterotrophic_respiration", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Carbon-13 Mass Flux into Atmosphere Due to Heterotrophic Respiration on Land [kgC m-2 s-1]", + "comment": "Heterotrophic respiration is respiration by heterotrophs (\"consumers\"), which are organisms (including animals and decomposers) that consume other organisms or dead organic material, rather than synthesising organic material from inorganic precursors using energy from the environment (especially sunlight) as autotrophs (\"producers\") do. Heterotrophic respiration goes on within both the soil and litter pools.", + "dimensions": "longitude latitude time", + "out_name": "rhc13", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "rhc13", + "variableRootDD": "rhc13", + "branding_label": "tavg-u-hxy-lnd", + "branded_variable_name": "rhc13_tavg-u-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "Emon.rhc13", + "cmip7_compound_name": "land.rhc13.tavg-u-hxy-lnd.mon.GLB", + "uid": "8b7f9cde-4a5b-11e6-9cd2-ac72891c3257" + }, + "land.rhc14.tavg-u-hxy-lnd.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_14C_due_to_heterotrophic_respiration", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Carbon-14 Mass Flux into Atmosphere Due to Heterotrophic Respiration on Land [kgC m-2 s-1]", + "comment": "Heterotrophic respiration is respiration by heterotrophs (\"consumers\"), which are organisms (including animals and decomposers) that consume other organisms or dead organic material, rather than synthesising organic material from inorganic precursors using energy from the environment (especially sunlight) as autotrophs (\"producers\") do. Heterotrophic respiration goes on within both the soil and litter pools.", + "dimensions": "longitude latitude time", + "out_name": "rhc14", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "rhc14", + "variableRootDD": "rhc14", + "branding_label": "tavg-u-hxy-lnd", + "branded_variable_name": "rhc14_tavg-u-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "Emon.rhc14", + "cmip7_compound_name": "land.rhc14.tavg-u-hxy-lnd.mon.GLB", + "uid": "6f6b324a-9acb-11e6-b7ee-ac72891c3257" + }, + "land.rhLitter.tavg-u-hxy-lnd.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "surface_upward_mass_flux_of_carbon_due_to_heterotrophic_respiration_in_litter", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Carbon Mass Flux into Atmosphere Due to Heterotrophic Respiration from Litter on Land", + "comment": "Needed to calculate litter bulk turnover time. Includes respiration from CWD as well.", + "dimensions": "longitude latitude time", + "out_name": "rhLitter", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "rhLitter", + "variableRootDD": "rhLitter", + "branding_label": "tavg-u-hxy-lnd", + "branded_variable_name": "rhLitter_tavg-u-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "Emon.rhLitter", + "cmip7_compound_name": "land.rhLitter.tavg-u-hxy-lnd.mon.GLB", + "uid": "8b81baaa-4a5b-11e6-9cd2-ac72891c3257" + }, + "land.rhLut.tavg-u-hxy-multi.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_heterotrophic_respiration", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean where sector", + "cell_measures": "area: areacella", + "long_name": "Heterotrophic Respiration on Land-Use Tile as Carbon Mass Flux [kgC m-2 s-1]", + "comment": "Carbon mass flux per unit area into atmosphere due to heterotrophic respiration on land (respiration by consumers), calculated on land-use tiles.", + "dimensions": "longitude latitude landuse time", + "out_name": "rhLut", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "rhLut", + "variableRootDD": "rhLut", + "branding_label": "tavg-u-hxy-multi", + "branded_variable_name": "rhLut_tavg-u-hxy-multi", + "region": "GLB", + "cmip6_compound_name": "Emon.rhLut", + "cmip7_compound_name": "land.rhLut.tavg-u-hxy-multi.mon.GLB", + "uid": "d22da074-4a9f-11e6-b84e-ac72891c3257" + }, + "land.rhSoil.tavg-u-hxy-lnd.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "surface_upward_mass_flux_of_carbon_due_to_heterotrophic_respiration_in_soil", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Carbon Mass Flux into Atmosphere Due to Heterotrophic Respiration from Soil on Land", + "comment": "Needed to calculate soil bulk turnover time", + "dimensions": "longitude latitude time", + "out_name": "rhSoil", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "rhSoil", + "variableRootDD": "rhSoil", + "branding_label": "tavg-u-hxy-lnd", + "branded_variable_name": "rhSoil_tavg-u-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "Emon.rhSoil", + "cmip7_compound_name": "land.rhSoil.tavg-u-hxy-lnd.mon.GLB", + "uid": "8b81bfe6-4a5b-11e6-9cd2-ac72891c3257" + }, + "land.rhVgt.tavg-u-hxy-multi.day.GLB": { + "frequency": "day", + "modeling_realm": "land", + "standard_name": "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_heterotrophic_respiration", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean where sector", + "cell_measures": "area: areacella", + "long_name": "Heterotrophic Respiration on Vegetation type as Carbon Mass Flux [kgC m-2 s-1]", + "comment": "Carbon mass flux per unit area into atmosphere due to heterotrophic respiration on land (respiration by consumers), calculated on vegetation type.", + "dimensions": "longitude latitude vegtype time", + "out_name": "rhVgt", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Eday", + "physical_parameter_name": "rhVgt", + "variableRootDD": "rhVgt", + "branding_label": "tavg-u-hxy-multi", + "branded_variable_name": "rhVgt_tavg-u-hxy-multi", + "region": "GLB", + "cmip6_compound_name": "Eday.rhVgt", + "cmip7_compound_name": "land.rhVgt.tavg-u-hxy-multi.day.GLB", + "uid": "83bbfba7-7f07-11ef-9308-b1dd71e64bec" + }, + "land.rivi.tavg-u-hxy-lnd.day.GLB": { + "frequency": "day", + "modeling_realm": "land", + "standard_name": "incoming_water_volume_transport_along_river_channel", + "units": "m3 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacellr", + "long_name": "River Inflow", + "comment": "water_flux_to_downstream", + "dimensions": "longitude latitude time", + "out_name": "rivi", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Eday", + "physical_parameter_name": "rivi", + "variableRootDD": "rivi", + "branding_label": "tavg-u-hxy-lnd", + "branded_variable_name": "rivi_tavg-u-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "Eday.rivi", + "cmip7_compound_name": "land.rivi.tavg-u-hxy-lnd.day.GLB", + "uid": "d2285fce-4a9f-11e6-b84e-ac72891c3257" + }, + "land.rivo.tavg-u-hxy-lnd.day.GLB": { + "frequency": "day", + "modeling_realm": "land", + "standard_name": "outgoing_water_volume_transport_along_river_channel", + "units": "m3 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacellr", + "long_name": "River Discharge", + "comment": "water_flux_from_upstream", + "dimensions": "longitude latitude time", + "out_name": "rivo", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Eday", + "physical_parameter_name": "rivo", + "variableRootDD": "rivo", + "branding_label": "tavg-u-hxy-lnd", + "branded_variable_name": "rivo_tavg-u-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "Eday.rivo", + "cmip7_compound_name": "land.rivo.tavg-u-hxy-lnd.day.GLB", + "uid": "d2285b46-4a9f-11e6-b84e-ac72891c3257" + }, + "land.rootd.ti-u-hxy-lnd.fx.GLB": { + "frequency": "fx", + "modeling_realm": "land", + "standard_name": "root_depth", + "units": "m", + "cell_methods": "area: mean where land", + "cell_measures": "area: areacella", + "long_name": "Maximum Root Depth", + "comment": "report the maximum soil depth reachable by plant roots (if defined in model), i.e., the maximum soil depth from which they can extract moisture; report as \"missing\" where the land fraction is 0.", + "dimensions": "longitude latitude", + "out_name": "rootd", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "None", + "cmip6_table": "fx", + "physical_parameter_name": "rootd", + "variableRootDD": "rootd", + "branding_label": "ti-u-hxy-lnd", + "branded_variable_name": "rootd_ti-u-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "fx.rootd", + "cmip7_compound_name": "land.rootd.ti-u-hxy-lnd.fx.GLB", + "uid": "bab5c7fe-e5dd-11e5-8482-ac72891c3257" + }, + "land.rsds.tavg-u-hxy-lnd.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "surface_downwelling_shortwave_flux_in_air", + "units": "W m-2", + "cell_methods": "area: time: mean where land", + "cell_measures": "area: areacella", + "long_name": "Surface Downwelling Shortwave Radiation over Land", + "comment": "Surface Downwelling Shortwave Radiation over land. Can be used for computation of surface albedo.", + "dimensions": "longitude latitude time", + "out_name": "rsds", + "type": "real", + "positive": "down", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "rsds", + "variableRootDD": "rsds", + "branding_label": "tavg-u-hxy-lnd", + "branded_variable_name": "rsds_tavg-u-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "Emon.rsds", + "cmip7_compound_name": "land.rsds.tavg-u-hxy-lnd.mon.GLB", + "uid": "80aca269-a698-11ef-914a-613c0433d878" + }, + "land.rsds.tavg-u-hxy-sn.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "surface_downwelling_shortwave_flux_in_air", + "units": "W m-2", + "cell_methods": "area: time: mean where snow (mask=snc)", + "cell_measures": "area: areacella", + "long_name": "Surface Downwelling Shortwave Radiation over Snow", + "comment": "Surface Downwelling Shortwave Radiation over the portion of a land grid cell covered by snow but not by ice. Can be used for computation of surface albedo.", + "dimensions": "longitude latitude time", + "out_name": "rsdss", + "type": "real", + "positive": "down", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "rsdss", + "variableRootDD": "rsds", + "branding_label": "tavg-u-hxy-sn", + "branded_variable_name": "rsds_tavg-u-hxy-sn", + "region": "GLB", + "cmip6_compound_name": "Emon.rsdss", + "cmip7_compound_name": "land.rsds.tavg-u-hxy-sn.mon.GLB", + "uid": "80ab7209-a698-11ef-914a-613c0433d878" + }, + "land.rsus.tavg-u-hxy-lnd.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "surface_upwelling_shortwave_flux_in_air", + "units": "W m-2", + "cell_methods": "area: mean where land", + "cell_measures": "area: areacella", + "long_name": "Surface Upwelling Shortwave Radiation over Land", + "comment": "Surface Upwelling Shortwave Radiation over land. Can be used for computation of surface albedo.", + "dimensions": "longitude latitude time", + "out_name": "rsus", + "type": "real", + "positive": "up", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "rsus", + "variableRootDD": "rsus", + "branding_label": "tavg-u-hxy-lnd", + "branded_variable_name": "rsus_tavg-u-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "Emon.rsus", + "cmip7_compound_name": "land.rsus.tavg-u-hxy-lnd.mon.GLB", + "uid": "80aca26a-a698-11ef-914a-613c0433d878" + }, + "land.rsus.tavg-u-hxy-sn.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "surface_upwelling_shortwave_flux_in_air", + "units": "W m-2", + "cell_methods": "area: time: mean where snow (mask=snc)", + "cell_measures": "area: areacella", + "long_name": "Surface Upwelling Shortwave Radiation over Snow", + "comment": "Surface Upwelling Shortwave Radiation over the portion of a land grid cell covered by snow. Can be used for computation of surface albedo.", + "dimensions": "longitude latitude time", + "out_name": "rsuss", + "type": "real", + "positive": "up", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "rsuss", + "variableRootDD": "rsus", + "branding_label": "tavg-u-hxy-sn", + "branded_variable_name": "rsus_tavg-u-hxy-sn", + "region": "GLB", + "cmip6_compound_name": "Emon.rsuss", + "cmip7_compound_name": "land.rsus.tavg-u-hxy-sn.mon.GLB", + "uid": "80ab720a-a698-11ef-914a-613c0433d878" + }, + "land.rzwc.tavg-u-hxy-lnd.day.GLB": { + "frequency": "day", + "modeling_realm": "land", + "standard_name": "mass_content_of_water_in_soil_layer_defined_by_root_depth", + "units": "kg m-2", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Root Zone Soil Moisture", + "comment": "water_content_of_root_zone", + "dimensions": "longitude latitude time", + "out_name": "rzwc", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Eday", + "physical_parameter_name": "rzwc", + "variableRootDD": "rzwc", + "branding_label": "tavg-u-hxy-lnd", + "branded_variable_name": "rzwc_tavg-u-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "Eday.rzwc", + "cmip7_compound_name": "land.rzwc.tavg-u-hxy-lnd.day.GLB", + "uid": "d2287f90-4a9f-11e6-b84e-ac72891c3257" + }, + "land.sftgif.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "land_ice_area_fraction", + "units": "%", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Land Ice Area Percentage", + "comment": "Percentage of grid cell covered by land ice (ice sheet, ice shelf, ice cap, glacier)", + "dimensions": "longitude latitude time", + "out_name": "sftgif", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "LImon", + "physical_parameter_name": "sftgif", + "variableRootDD": "sftgif", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "sftgif_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "LImon.sftgif", + "cmip7_compound_name": "land.sftgif.tavg-u-hxy-u.mon.GLB", + "uid": "8bbb0fa8-4a5b-11e6-9cd2-ac72891c3257" + }, + "land.sftgif.tavg-u-hxy-u.yr.ATA": { + "frequency": "yr", + "modeling_realm": "land", + "standard_name": "land_ice_area_fraction", + "units": "%", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacellg", + "long_name": "Land Ice Area Percentage", + "comment": "This is needed in case the ice sheet area changes in time", + "dimensions": "longitude latitude time", + "out_name": "sftgif", + "type": "real", + "positive": "", + "spatial_shape": "XYA-na", + "temporal_shape": "time-intv", + "cmip6_table": "IyrAnt", + "physical_parameter_name": "sftgif", + "variableRootDD": "sftgif", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "sftgif_tavg-u-hxy-u", + "region": "ATA", + "cmip6_compound_name": "IyrAnt.sftgif", + "cmip7_compound_name": "land.sftgif.tavg-u-hxy-u.yr.ATA", + "uid": "d5b46000-c78d-11e6-9b25-5404a60d96b5" + }, + "land.sftgif.tavg-u-hxy-u.yr.GRL": { + "frequency": "yr", + "modeling_realm": "land", + "standard_name": "land_ice_area_fraction", + "units": "%", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacellg", + "long_name": "Land Ice Area Percentage", + "comment": "This is needed in case the ice sheet area changes in time", + "dimensions": "longitude latitude time", + "out_name": "sftgif", + "type": "real", + "positive": "", + "spatial_shape": "XYG-na", + "temporal_shape": "time-intv", + "cmip6_table": "IyrGre", + "physical_parameter_name": "sftgif", + "variableRootDD": "sftgif", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "sftgif_tavg-u-hxy-u", + "region": "GRL", + "cmip6_compound_name": "IyrGre.sftgif", + "cmip7_compound_name": "land.sftgif.tavg-u-hxy-u.yr.GRL", + "uid": "d5b3c8e8-c78d-11e6-9b25-5404a60d96b5" + }, + "land.sftgif.ti-u-hxy-u.fx.GLB": { + "frequency": "fx", + "modeling_realm": "land", + "standard_name": "land_ice_area_fraction", + "units": "%", + "cell_methods": "area: mean", + "cell_measures": "area: areacella", + "long_name": "Land Ice Area Percentage", + "comment": "fraction of grid cell occupied by \"permanent\" ice (i.e., glaciers).", + "dimensions": "longitude latitude", + "out_name": "sftgif", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "None", + "cmip6_table": "fx", + "physical_parameter_name": "sftgif", + "variableRootDD": "sftgif", + "branding_label": "ti-u-hxy-u", + "branded_variable_name": "sftgif_ti-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "fx.sftgif", + "cmip7_compound_name": "land.sftgif.ti-u-hxy-u.fx.GLB", + "uid": "bab73a76-e5dd-11e5-8482-ac72891c3257" + }, + "land.sftlaf.ti-u-hxy-u.fx.GLB": { + "frequency": "fx", + "modeling_realm": "land", + "standard_name": "area_fraction", + "units": "%", + "cell_methods": "area: mean", + "cell_measures": "area: areacella", + "long_name": "Fraction of the Grid Cell Occupied by Lake", + "comment": "Fraction of horizontal land grid cell area occupied by lake.", + "dimensions": "longitude latitude typelkins", + "out_name": "sftlaf", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "None", + "cmip6_table": "fx", + "physical_parameter_name": "sftlaf", + "variableRootDD": "sftlaf", + "branding_label": "ti-u-hxy-u", + "branded_variable_name": "sftlaf_ti-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "fx.sftlaf", + "cmip7_compound_name": "land.sftlaf.ti-u-hxy-u.fx.GLB", + "uid": "83bbfb96-7f07-11ef-9308-b1dd71e64bec" + }, + "land.shrubFrac.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "area_fraction", + "units": "%", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Percentage Cover by Shrub", + "comment": "fraction of entire grid cell that is covered by shrub.", + "dimensions": "longitude latitude time typeshrub", + "out_name": "shrubFrac", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Lmon", + "physical_parameter_name": "shrubFrac", + "variableRootDD": "shrubFrac", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "shrubFrac_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "Lmon.shrubFrac", + "cmip7_compound_name": "land.shrubFrac.tavg-u-hxy-u.mon.GLB", + "uid": "bab76b9a-e5dd-11e5-8482-ac72891c3257" + }, + "land.shrubFrac.tavg-u-hxy-u.yr.GLB": { + "frequency": "yr", + "modeling_realm": "land", + "standard_name": "area_fraction", + "units": "%", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Percentage Cover by Shrub", + "comment": "Percentage of entire grid cell that is covered by shrub.", + "dimensions": "longitude latitude time typeshrub", + "out_name": "shrubFrac", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Eyr", + "physical_parameter_name": "shrubFrac", + "variableRootDD": "shrubFrac", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "shrubFrac_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "Eyr.shrubFrac", + "cmip7_compound_name": "land.shrubFrac.tavg-u-hxy-u.yr.GLB", + "uid": "fb017924-be37-11e6-bac1-5404a60d96b5" + }, + "land.slthick.ti-sl-hxy-lnd.fx.GLB": { + "frequency": "fx", + "modeling_realm": "land", + "standard_name": "cell_thickness", + "units": "m", + "cell_methods": "area: mean where land", + "cell_measures": "area: areacella", + "long_name": "Thickness of Soil Layers", + "comment": "Thickness of Soil Layers", + "dimensions": "longitude latitude sdepth", + "out_name": "slthick", + "type": "real", + "positive": "", + "spatial_shape": "XY-S", + "temporal_shape": "None", + "cmip6_table": "Efx", + "physical_parameter_name": "slthick", + "variableRootDD": "slthick", + "branding_label": "ti-sl-hxy-lnd", + "branded_variable_name": "slthick_ti-sl-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "Efx.slthick", + "cmip7_compound_name": "land.slthick.ti-sl-hxy-lnd.fx.GLB", + "uid": "f2fad86e-c38d-11e6-abc1-1b922e5e1118" + }, + "land.srfrad.tavg-u-hxy-u.3hr.GLB": { + "frequency": "3hr", + "modeling_realm": "land", + "standard_name": "surface_net_downward_radiative_flux", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Net radiative flux at surface", + "comment": "Net radiative flux at surface", + "dimensions": "longitude latitude time", + "out_name": "srfrad", + "type": "real", + "positive": "down", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "3hr", + "physical_parameter_name": "srfrad", + "variableRootDD": "srfrad", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "srfrad_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "3hr.srfrad", + "cmip7_compound_name": "land.srfrad.tavg-u-hxy-u.3hr.GLB", + "uid": "80ab71fd-a698-11ef-914a-613c0433d878" + }, + "land.sw.tavg-u-hxy-lnd.day.GLB": { + "frequency": "day", + "modeling_realm": "land", + "standard_name": "land_surface_liquid_water_amount", + "units": "kg m-2", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Surface Water Storage", + "comment": "Total liquid water storage, other than soil, snow or interception storage (i.e. lakes, river channel or depression storage).", + "dimensions": "longitude latitude time", + "out_name": "sw", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Eday", + "physical_parameter_name": "sw", + "variableRootDD": "sw", + "branding_label": "tavg-u-hxy-lnd", + "branded_variable_name": "sw_tavg-u-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "Eday.sw", + "cmip7_compound_name": "land.sw.tavg-u-hxy-lnd.day.GLB", + "uid": "d2289714-4a9f-11e6-b84e-ac72891c3257" + }, + "land.sweLut.tavg-u-hxy-multi.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "lwe_thickness_of_surface_snow_amount", + "units": "m", + "cell_methods": "area: time: mean where sector", + "cell_measures": "area: areacella", + "long_name": "Snow Water Equivalent on Land-Use Tile", + "comment": "The surface called \"surface\" means the lower boundary of the atmosphere. \"lwe\" means liquid water equivalent. \"Amount\" means mass per unit area. The construction lwe_thickness_of_X_amount or _content means the vertical extent of a layer of liquid water having the same mass per unit area. Surface amount refers to the amount on the ground, excluding that on the plant or vegetation canopy.", + "dimensions": "longitude latitude landuse time", + "out_name": "sweLut", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "sweLut", + "variableRootDD": "sweLut", + "branding_label": "tavg-u-hxy-multi", + "branded_variable_name": "sweLut_tavg-u-hxy-multi", + "region": "GLB", + "cmip6_compound_name": "Emon.sweLut", + "cmip7_compound_name": "land.sweLut.tavg-u-hxy-multi.mon.GLB", + "uid": "d22dd206-4a9f-11e6-b84e-ac72891c3257" + }, + "land.tas.tavg-u-hxy-u.1hr.30S-90S": { + "frequency": "1hr", + "modeling_realm": "land", + "standard_name": "air_temperature", + "units": "K", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Hourly Temperature at Surface", + "comment": "Hourly Temperature at 2m above the surface", + "dimensions": "longitude latitude time", + "out_name": "tas", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "E1hr", + "physical_parameter_name": "tas", + "variableRootDD": "tas", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "tas_tavg-u-hxy-u", + "region": "30S-90S", + "cmip6_compound_name": "E1hr.tasSouth30", + "cmip7_compound_name": "land.tas.tavg-u-hxy-u.1hr.30S-90S", + "uid": "80ac31e0-a698-11ef-914a-613c0433d878" + }, + "land.tas.tavg-u-hxy-u.1hr.GLB": { + "frequency": "1hr", + "modeling_realm": "land", + "standard_name": "air_temperature", + "units": "K", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Hourly Temperature at Surface", + "comment": "Hourly Temperature at 2m above the surface", + "dimensions": "longitude latitude time", + "out_name": "tas", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "E1hr", + "physical_parameter_name": "tas", + "variableRootDD": "tas", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "tas_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "E1hr.tas", + "cmip7_compound_name": "land.tas.tavg-u-hxy-u.1hr.GLB", + "uid": "83bbfbbf-7f07-11ef-9308-b1dd71e64bec" + }, + "land.tasLut.tavg-h2m-hxy-multi.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "air_temperature", + "units": "K", + "cell_methods": "area: time: mean where sector", + "cell_measures": "area: areacella", + "long_name": "Near-Surface Air Temperature on Land Use Tile", + "comment": "Air temperature is the bulk temperature of the air, not the surface (skin) temperature.", + "dimensions": "longitude latitude landuse time height2m", + "out_name": "tasLut", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "tasLut", + "variableRootDD": "tasLut", + "branding_label": "tavg-h2m-hxy-multi", + "branded_variable_name": "tasLut_tavg-h2m-hxy-multi", + "region": "GLB", + "cmip6_compound_name": "Emon.tasLut", + "cmip7_compound_name": "land.tasLut.tavg-h2m-hxy-multi.mon.GLB", + "uid": "d22dae98-4a9f-11e6-b84e-ac72891c3257" + }, + "land.tran.tavg-u-hxy-lnd.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "transpiration_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Transpiration", + "comment": "Transpiration (may include dew formation as a negative flux).", + "dimensions": "longitude latitude time", + "out_name": "tran", + "type": "real", + "positive": "up", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Lmon", + "physical_parameter_name": "tran", + "variableRootDD": "tran", + "branding_label": "tavg-u-hxy-lnd", + "branded_variable_name": "tran_tavg-u-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "Lmon.tran", + "cmip7_compound_name": "land.tran.tavg-u-hxy-lnd.mon.GLB", + "uid": "baba9752-e5dd-11e5-8482-ac72891c3257" + }, + "land.tran.tavg-u-hxy-u.3hr.GLB": { + "frequency": "3hr", + "modeling_realm": "land", + "standard_name": "transpiration_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Transpiration", + "comment": "Transpiration", + "dimensions": "longitude latitude time", + "out_name": "tran", + "type": "real", + "positive": "up", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "3hr", + "physical_parameter_name": "tran", + "variableRootDD": "tran", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "tran_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "3hr.tran", + "cmip7_compound_name": "land.tran.tavg-u-hxy-u.3hr.GLB", + "uid": "80ab71fc-a698-11ef-914a-613c0433d878" + }, + "land.treeFrac.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "area_fraction", + "units": "%", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Tree Cover Percentage", + "comment": "fraction of entire grid cell that is covered by trees.", + "dimensions": "longitude latitude time typetree", + "out_name": "treeFrac", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Lmon", + "physical_parameter_name": "treeFrac", + "variableRootDD": "treeFrac", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "treeFrac_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "Lmon.treeFrac", + "cmip7_compound_name": "land.treeFrac.tavg-u-hxy-u.mon.GLB", + "uid": "babab3ae-e5dd-11e5-8482-ac72891c3257" + }, + "land.treeFrac.tavg-u-hxy-u.yr.GLB": { + "frequency": "yr", + "modeling_realm": "land", + "standard_name": "area_fraction", + "units": "%", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Tree Cover Percentage", + "comment": "Percentage of entire grid cell that is covered by trees.", + "dimensions": "longitude latitude time typetree", + "out_name": "treeFrac", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Eyr", + "physical_parameter_name": "treeFrac", + "variableRootDD": "treeFrac", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "treeFrac_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "Eyr.treeFrac", + "cmip7_compound_name": "land.treeFrac.tavg-u-hxy-u.yr.GLB", + "uid": "fb017168-be37-11e6-bac1-5404a60d96b5" + }, + "land.treeFracBdlDcd.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "area_fraction", + "units": "%", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Broadleaf Deciduous Tree Area Percentage", + "comment": "This is the percentage of the entire grid cell that is covered by broadleaf deciduous trees.", + "dimensions": "longitude latitude time typetreebd", + "out_name": "treeFracBdlDcd", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "treeFracBdlDcd", + "variableRootDD": "treeFracBdlDcd", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "treeFracBdlDcd_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "Emon.treeFracBdlDcd", + "cmip7_compound_name": "land.treeFracBdlDcd.tavg-u-hxy-u.mon.GLB", + "uid": "6f6a70da-9acb-11e6-b7ee-ac72891c3257" + }, + "land.treeFracBdlEvg.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "area_fraction", + "units": "%", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Broadleaf Evergreen Tree Area Percentage", + "comment": "This is the percentage of the entire grid cell that is covered by broadleaf evergreen trees.", + "dimensions": "longitude latitude time typetreebe", + "out_name": "treeFracBdlEvg", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "treeFracBdlEvg", + "variableRootDD": "treeFracBdlEvg", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "treeFracBdlEvg_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "Emon.treeFracBdlEvg", + "cmip7_compound_name": "land.treeFracBdlEvg.tavg-u-hxy-u.mon.GLB", + "uid": "6f6a6a72-9acb-11e6-b7ee-ac72891c3257" + }, + "land.treeFracNdlDcd.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "area_fraction", + "units": "%", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Needleleaf Deciduous Tree Area Percentage", + "comment": "This is the percentage of the entire grid cell that is covered by needleleaf deciduous trees.", + "dimensions": "longitude latitude time typetreend", + "out_name": "treeFracNdlDcd", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "treeFracNdlDcd", + "variableRootDD": "treeFracNdlDcd", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "treeFracNdlDcd_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "Emon.treeFracNdlDcd", + "cmip7_compound_name": "land.treeFracNdlDcd.tavg-u-hxy-u.mon.GLB", + "uid": "6f6a6464-9acb-11e6-b7ee-ac72891c3257" + }, + "land.treeFracNdlEvg.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "area_fraction", + "units": "%", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Needleleaf Evergreen Tree Area Percentage", + "comment": "This is the percentage of the entire grid cell that is covered by needleleaf evergreen trees.", + "dimensions": "longitude latitude time typetreene", + "out_name": "treeFracNdlEvg", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "treeFracNdlEvg", + "variableRootDD": "treeFracNdlEvg", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "treeFracNdlEvg_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "Emon.treeFracNdlEvg", + "cmip7_compound_name": "land.treeFracNdlEvg.tavg-u-hxy-u.mon.GLB", + "uid": "6f6a5e4c-9acb-11e6-b7ee-ac72891c3257" + }, + "land.tsl.tavg-sl-hxy-lnd.day.GLB": { + "frequency": "day", + "modeling_realm": "land", + "standard_name": "soil_temperature", + "units": "K", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Temperature of Soil", + "comment": "Temperature of each soil layer. Reported as \"missing\" for grid cells occupied entirely by \"sea\".", + "dimensions": "longitude latitude sdepth time", + "out_name": "tsl", + "type": "real", + "positive": "", + "spatial_shape": "XY-S", + "temporal_shape": "time-intv", + "cmip6_table": "Eday", + "physical_parameter_name": "tsl", + "variableRootDD": "tsl", + "branding_label": "tavg-sl-hxy-lnd", + "branded_variable_name": "tsl_tavg-sl-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "Eday.tsl", + "cmip7_compound_name": "land.tsl.tavg-sl-hxy-lnd.day.GLB", + "uid": "d227e094-4a9f-11e6-b84e-ac72891c3257" + }, + "land.tsl.tavg-sl-hxy-lnd.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "soil_temperature", + "units": "K", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Temperature of Soil", + "comment": "Temperature of each soil layer. Reported as \"missing\" for grid cells occupied entirely by \"sea\".", + "dimensions": "longitude latitude sdepth time", + "out_name": "tsl", + "type": "real", + "positive": "", + "spatial_shape": "XY-S", + "temporal_shape": "time-intv", + "cmip6_table": "Lmon", + "physical_parameter_name": "tsl", + "variableRootDD": "tsl", + "branding_label": "tavg-sl-hxy-lnd", + "branded_variable_name": "tsl_tavg-sl-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "Lmon.tsl", + "cmip7_compound_name": "land.tsl.tavg-sl-hxy-lnd.mon.GLB", + "uid": "babb0732-e5dd-11e5-8482-ac72891c3257" + }, + "land.tslsi.tavg-u-hxy-u.day.GLB": { + "frequency": "day", + "modeling_realm": "land", + "standard_name": "surface_temperature", + "units": "K", + "cell_methods": "area: time: mean (over land and sea ice)", + "cell_measures": "area: areacella", + "long_name": "Surface Temperature Where Land or Sea Ice", + "comment": "Surface temperature of all surfaces except open ocean.", + "dimensions": "longitude latitude time", + "out_name": "tslsi", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "day", + "physical_parameter_name": "tslsi", + "variableRootDD": "tslsi", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "tslsi_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "day.tslsi", + "cmip7_compound_name": "land.tslsi.tavg-u-hxy-u.day.GLB", + "uid": "babb0eb2-e5dd-11e5-8482-ac72891c3257" + }, + "land.tslsi.tpt-u-hxy-lsi.3hr.GLB": { + "frequency": "3hr", + "modeling_realm": "land", + "standard_name": "surface_temperature", + "units": "K", + "cell_methods": "area: mean (over land and sea ice) time: point", + "cell_measures": "area: areacella", + "long_name": "Surface Temperature Where Land or Sea Ice", + "comment": "Surface temperature of all surfaces except open ocean, sampled synoptically.", + "dimensions": "longitude latitude time1", + "out_name": "tslsi", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-point", + "cmip6_table": "3hr", + "physical_parameter_name": "tslsi", + "variableRootDD": "tslsi", + "branding_label": "tpt-u-hxy-lsi", + "branded_variable_name": "tslsi_tpt-u-hxy-lsi", + "region": "GLB", + "cmip6_compound_name": "3hr.tslsi", + "cmip7_compound_name": "land.tslsi.tpt-u-hxy-lsi.3hr.GLB", + "uid": "babb12ae-e5dd-11e5-8482-ac72891c3257" + }, + "land.tsLut.tavg-u-hxy-multi.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "surface_temperature", + "units": "K", + "cell_methods": "area: time: mean where sector", + "cell_measures": "area: areacella", + "long_name": "Surface Temperature on Landuse Tile", + "comment": "Surface temperature (i.e. temperature at which long-wave radiation emitted)", + "dimensions": "longitude latitude landuse time", + "out_name": "tslsiLut", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "tslsiLut", + "variableRootDD": "tsLut", + "branding_label": "tavg-u-hxy-multi", + "branded_variable_name": "tsLut_tavg-u-hxy-multi", + "region": "GLB", + "cmip6_compound_name": "Emon.tslsiLut", + "cmip7_compound_name": "land.tsLut.tavg-u-hxy-multi.mon.GLB", + "uid": "d22db4d8-4a9f-11e6-b84e-ac72891c3257" + }, + "land.vegFrac.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "area_fraction", + "units": "%", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Total Vegetated Percentage Cover", + "comment": "Percentage of grid cell that is covered by vegetation.This SHOULD be the sum of tree, grass (natural and pasture), crop and shrub fractions.", + "dimensions": "longitude latitude time typeveg", + "out_name": "vegFrac", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "vegFrac", + "variableRootDD": "vegFrac", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "vegFrac_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "Emon.vegFrac", + "cmip7_compound_name": "land.vegFrac.tavg-u-hxy-u.mon.GLB", + "uid": "6f6a57d0-9acb-11e6-b7ee-ac72891c3257" + }, + "land.vegFrac.tavg-u-hxy-u.yr.GLB": { + "frequency": "yr", + "modeling_realm": "land", + "standard_name": "area_fraction", + "units": "%", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Total Vegetated Percentage Cover", + "comment": "Percentage of grid cell that is covered by vegetation.This SHOULD be the sum of tree, grass (natural and pasture), crop and shrub fractions.", + "dimensions": "longitude latitude time typeveg", + "out_name": "vegFrac", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Eyr", + "physical_parameter_name": "vegFrac", + "variableRootDD": "vegFrac", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "vegFrac_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "Eyr.vegFrac", + "cmip7_compound_name": "land.vegFrac.tavg-u-hxy-u.yr.GLB", + "uid": "fb01828e-be37-11e6-bac1-5404a60d96b5" + }, + "land.vegHeight.tavg-u-hxy-ng.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "canopy_height", + "units": "m", + "cell_methods": "area: time: mean where natural_grasses (mask=grassFrac)", + "cell_measures": "area: areacella", + "long_name": "Height of Grass", + "comment": "Vegetation height averaged over the grass fraction of a grid cell.", + "dimensions": "longitude latitude time", + "out_name": "vegHeightGrass", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "vegHeightGrass", + "variableRootDD": "vegHeight", + "branding_label": "tavg-u-hxy-ng", + "branded_variable_name": "vegHeight_tavg-u-hxy-ng", + "region": "GLB", + "cmip6_compound_name": "Emon.vegHeightGrass", + "cmip7_compound_name": "land.vegHeight.tavg-u-hxy-ng.mon.GLB", + "uid": "8b81da6c-4a5b-11e6-9cd2-ac72891c3257" + }, + "land.vegHeight.tavg-u-hxy-shb.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "canopy_height", + "units": "m", + "cell_methods": "area: time: mean where shrubs (mask=shrubFrac)", + "cell_measures": "area: areacella", + "long_name": "Height of Shrubs", + "comment": "Vegetation height averaged over the shrub fraction of a grid cell.", + "dimensions": "longitude latitude time", + "out_name": "vegHeightShrub", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "vegHeightShrub", + "variableRootDD": "vegHeight", + "branding_label": "tavg-u-hxy-shb", + "branded_variable_name": "vegHeight_tavg-u-hxy-shb", + "region": "GLB", + "cmip6_compound_name": "Emon.vegHeightShrub", + "cmip7_compound_name": "land.vegHeight.tavg-u-hxy-shb.mon.GLB", + "uid": "8b81e142-4a5b-11e6-9cd2-ac72891c3257" + }, + "land.vegHeight.tavg-u-hxy-tree.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "canopy_height", + "units": "m", + "cell_methods": "area: time: mean where trees (mask=treeFrac)", + "cell_measures": "area: areacella", + "long_name": "Height of Trees", + "comment": "Vegetation height averaged over the tree fraction of a grid cell.", + "dimensions": "longitude latitude time", + "out_name": "vegHeightTree", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "vegHeightTree", + "variableRootDD": "vegHeight", + "branding_label": "tavg-u-hxy-tree", + "branded_variable_name": "vegHeight_tavg-u-hxy-tree", + "region": "GLB", + "cmip6_compound_name": "Emon.vegHeightTree", + "cmip7_compound_name": "land.vegHeight.tavg-u-hxy-tree.mon.GLB", + "uid": "6f6ab46e-9acb-11e6-b7ee-ac72891c3257" + }, + "land.vegHeight.tavg-u-hxy-veg.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "canopy_height", + "units": "m", + "cell_methods": "area: time: mean where vegetation (mask=vegFrac)", + "cell_measures": "area: areacella", + "long_name": "Height of the Vegetation Canopy", + "comment": "Vegetation height averaged over all vegetation types and over the vegetated fraction of a grid cell.", + "dimensions": "longitude latitude time", + "out_name": "vegHeight", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "vegHeight", + "variableRootDD": "vegHeight", + "branding_label": "tavg-u-hxy-veg", + "branded_variable_name": "vegHeight_tavg-u-hxy-veg", + "region": "GLB", + "cmip6_compound_name": "Emon.vegHeight", + "cmip7_compound_name": "land.vegHeight.tavg-u-hxy-veg.mon.GLB", + "uid": "6f6aafaa-9acb-11e6-b7ee-ac72891c3257" + }, + "land.wetlandCH4.tavg-u-hxy-lnd.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "surface_net_upward_mass_flux_of_methane_due_to_emission_from_wetland_biological_processes", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Grid Averaged Methane Emissions from Wetlands", + "comment": "Net upward flux of methane (NH4) from wetlands (areas where water covers the soil, or is present either at or near the surface of the soil all year or for varying periods of time during the year, including during the growing season).", + "dimensions": "longitude latitude time", + "out_name": "wetlandCH4", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "wetlandCH4", + "variableRootDD": "wetlandCH4", + "branding_label": "tavg-u-hxy-lnd", + "branded_variable_name": "wetlandCH4_tavg-u-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "Emon.wetlandCH4", + "cmip7_compound_name": "land.wetlandCH4.tavg-u-hxy-lnd.mon.GLB", + "uid": "6f6b2106-9acb-11e6-b7ee-ac72891c3257" + }, + "land.wetlandCH4cons.tavg-u-hxy-lnd.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "surface_downward_mass_flux_of_methane_due_to_wetland_biological_consumption", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Grid Averaged Methane Consumption (Methanotrophy) from Wetlands", + "comment": "Biological consumption (methanotrophy) of methane (NH4) by wetlands (areas where water covers the soil, or is present either at or near the surface of the soil all year or for varying periods of time during the year, including during the growing season).", + "dimensions": "longitude latitude time", + "out_name": "wetlandCH4cons", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "wetlandCH4cons", + "variableRootDD": "wetlandCH4cons", + "branding_label": "tavg-u-hxy-lnd", + "branded_variable_name": "wetlandCH4cons_tavg-u-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "Emon.wetlandCH4cons", + "cmip7_compound_name": "land.wetlandCH4cons.tavg-u-hxy-lnd.mon.GLB", + "uid": "8b822918-4a5b-11e6-9cd2-ac72891c3257" + }, + "land.wetlandCH4prod.tavg-u-hxy-lnd.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "surface_upward_mass_flux_of_methane_due_to_emission_from_wetland_biological_production", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Grid Averaged Methane Production (Methanogenesis) from Wetlands", + "comment": "Biological emissions (methanogenesis) of methane (NH4) from wetlands (areas where water covers the soil, or is present either at or near the surface of the soil all year or for varying periods of time during the year, including during the growing season).", + "dimensions": "longitude latitude time", + "out_name": "wetlandCH4prod", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "wetlandCH4prod", + "variableRootDD": "wetlandCH4prod", + "branding_label": "tavg-u-hxy-lnd", + "branded_variable_name": "wetlandCH4prod_tavg-u-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "Emon.wetlandCH4prod", + "cmip7_compound_name": "land.wetlandCH4prod.tavg-u-hxy-lnd.mon.GLB", + "uid": "8b8224ae-4a5b-11e6-9cd2-ac72891c3257" + }, + "land.wetlandFrac.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "area_fraction", + "units": "%", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Wetland Percentage Cover", + "comment": "Percentage of grid cell covered by wetland. Report only one year if fixed percentage is used, or time series if values are determined dynamically.", + "dimensions": "longitude latitude time typewetla", + "out_name": "wetlandFrac", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "wetlandFrac", + "variableRootDD": "wetlandFrac", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "wetlandFrac_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "Emon.wetlandFrac", + "cmip7_compound_name": "land.wetlandFrac.tavg-u-hxy-u.mon.GLB", + "uid": "6f6acb20-9acb-11e6-b7ee-ac72891c3257" + }, + "land.wtd.tavg-u-hxy-lnd.day.GLB": { + "frequency": "day", + "modeling_realm": "land", + "standard_name": "water_table_depth", + "units": "m", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacellr", + "long_name": "Water Table Depth", + "comment": "depth_of_soil_moisture_saturation", + "dimensions": "longitude latitude time", + "out_name": "wtd", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Eday", + "physical_parameter_name": "wtd", + "variableRootDD": "wtd", + "branding_label": "tavg-u-hxy-lnd", + "branded_variable_name": "wtd_tavg-u-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "Eday.wtd", + "cmip7_compound_name": "land.wtd.tavg-u-hxy-lnd.day.GLB", + "uid": "d228a89e-4a9f-11e6-b84e-ac72891c3257" + }, + "landIce.acabf.tavg-u-hxy-is.mon.ATA": { + "frequency": "mon", + "modeling_realm": "landIce", + "standard_name": "land_ice_surface_specific_mass_balance_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacellg", + "long_name": "Surface Mass Balance Flux", + "comment": "quantity averaged over ice sheet (grounded ice sheet and floating ice shelf) only. Needed to analyse the impact of downscaling methods, and as forcing for ISM", + "dimensions": "longitude latitude time", + "out_name": "acabf", + "type": "real", + "positive": "", + "spatial_shape": "XYA-na", + "temporal_shape": "time-intv", + "cmip6_table": "ImonAnt", + "physical_parameter_name": "acabf", + "variableRootDD": "acabf", + "branding_label": "tavg-u-hxy-is", + "branded_variable_name": "acabf_tavg-u-hxy-is", + "region": "ATA", + "cmip6_compound_name": "ImonAnt.acabf", + "cmip7_compound_name": "landIce.acabf.tavg-u-hxy-is.mon.ATA", + "uid": "d5b30bf6-c78d-11e6-9b25-5404a60d96b5" + }, + "landIce.acabf.tavg-u-hxy-is.mon.GLB": { + "frequency": "mon", + "modeling_realm": "landIce", + "standard_name": "land_ice_surface_specific_mass_balance_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacella", + "long_name": "Ice Sheet Surface Mass Balance Flux", + "comment": "quantity averaged over ice_sheet (meaning grounded ice sheet and floating ice shelf) only, to avoid contamination from other surfaces (eg: permafrost)", + "dimensions": "longitude latitude time", + "out_name": "acabfIs", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "LImon", + "physical_parameter_name": "acabfIs", + "variableRootDD": "acabf", + "branding_label": "tavg-u-hxy-is", + "branded_variable_name": "acabf_tavg-u-hxy-is", + "region": "GLB", + "cmip6_compound_name": "LImon.acabfIs", + "cmip7_compound_name": "landIce.acabf.tavg-u-hxy-is.mon.GLB", + "uid": "8120cf70-bf17-11e6-b0d8-ac72891c3257" + }, + "landIce.acabf.tavg-u-hxy-is.mon.GRL": { + "frequency": "mon", + "modeling_realm": "landIce", + "standard_name": "land_ice_surface_specific_mass_balance_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacellg", + "long_name": "Surface Mass Balance Flux", + "comment": "quantity averaged over ice sheet (grounded ice sheet and floating ice shelf) only. Needed to analyse the impact of downscaling methods, and as forcing for ISM", + "dimensions": "longitude latitude time", + "out_name": "acabf", + "type": "real", + "positive": "", + "spatial_shape": "XYG-na", + "temporal_shape": "time-intv", + "cmip6_table": "ImonGre", + "physical_parameter_name": "acabf", + "variableRootDD": "acabf", + "branding_label": "tavg-u-hxy-is", + "branded_variable_name": "acabf_tavg-u-hxy-is", + "region": "GRL", + "cmip6_compound_name": "ImonGre.acabf", + "cmip7_compound_name": "landIce.acabf.tavg-u-hxy-is.mon.GRL", + "uid": "d5b2946e-c78d-11e6-9b25-5404a60d96b5" + }, + "landIce.acabf.tavg-u-hxy-is.yr.ATA": { + "frequency": "yr", + "modeling_realm": "landIce", + "standard_name": "land_ice_surface_specific_mass_balance_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacellg", + "long_name": "Surface Mass Balance Flux", + "comment": "quantity averaged over ice sheet only, to avoid contamination from other surfaces (eg: permafrost)", + "dimensions": "longitude latitude time", + "out_name": "acabf", + "type": "real", + "positive": "", + "spatial_shape": "XYA-na", + "temporal_shape": "time-intv", + "cmip6_table": "IyrAnt", + "physical_parameter_name": "acabf", + "variableRootDD": "acabf", + "branding_label": "tavg-u-hxy-is", + "branded_variable_name": "acabf_tavg-u-hxy-is", + "region": "ATA", + "cmip6_compound_name": "IyrAnt.acabf", + "cmip7_compound_name": "landIce.acabf.tavg-u-hxy-is.yr.ATA", + "uid": "d5b44890-c78d-11e6-9b25-5404a60d96b5" + }, + "landIce.acabf.tavg-u-hxy-is.yr.GRL": { + "frequency": "yr", + "modeling_realm": "landIce", + "standard_name": "land_ice_surface_specific_mass_balance_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacellg", + "long_name": "Surface Mass Balance Flux", + "comment": "quantity averaged over ice sheet only, to avoid contamination from other surfaces (eg: permafrost)", + "dimensions": "longitude latitude time", + "out_name": "acabf", + "type": "real", + "positive": "", + "spatial_shape": "XYG-na", + "temporal_shape": "time-intv", + "cmip6_table": "IyrGre", + "physical_parameter_name": "acabf", + "variableRootDD": "acabf", + "branding_label": "tavg-u-hxy-is", + "branded_variable_name": "acabf_tavg-u-hxy-is", + "region": "GRL", + "cmip6_compound_name": "IyrGre.acabf", + "cmip7_compound_name": "landIce.acabf.tavg-u-hxy-is.yr.GRL", + "uid": "d5b3b1aa-c78d-11e6-9b25-5404a60d96b5" + }, + "landIce.agesno.tavg-u-hxy-lnd.mon.GLB": { + "frequency": "mon", + "modeling_realm": "landIce", + "standard_name": "age_of_surface_snow", + "units": "day", + "cell_methods": "area: mean where land time: mean (weighted by snow mass on land)", + "cell_measures": "area: areacella", + "long_name": "Mean Age of Snow", + "comment": "When computing the time-mean here, the time samples, weighted by the mass of snow on the land portion of the grid cell, are accumulated and then divided by the sum of the weights. Reported as \"missing in regions free of snow on land.", + "dimensions": "longitude latitude time", + "out_name": "agesno", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "LImon", + "physical_parameter_name": "agesno", + "variableRootDD": "agesno", + "branding_label": "tavg-u-hxy-lnd", + "branded_variable_name": "agesno_tavg-u-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "LImon.agesno", + "cmip7_compound_name": "landIce.agesno.tavg-u-hxy-lnd.mon.GLB", + "uid": "baa7f8ae-e5dd-11e5-8482-ac72891c3257" + }, + "landIce.hfdsn.tavg-u-hxy-lnd.day.GLB": { + "frequency": "day", + "modeling_realm": "landIce", + "standard_name": "surface_downward_heat_flux_in_snow", + "units": "W m-2", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Downward Heat Flux into Snow Where Land over Land", + "comment": "Downward heat flux at snow top", + "dimensions": "longitude latitude time", + "out_name": "hfdsn", + "type": "real", + "positive": "down", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Eday", + "physical_parameter_name": "hfdsn", + "variableRootDD": "hfdsn", + "branding_label": "tavg-u-hxy-lnd", + "branded_variable_name": "hfdsn_tavg-u-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "Eday.hfdsn", + "cmip7_compound_name": "landIce.hfdsn.tavg-u-hxy-lnd.day.GLB", + "uid": "d2279224-4a9f-11e6-b84e-ac72891c3257" + }, + "landIce.hfdsn.tavg-u-hxy-lnd.mon.GLB": { + "frequency": "mon", + "modeling_realm": "landIce", + "standard_name": "surface_downward_heat_flux_in_snow", + "units": "W m-2", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Downward Heat Flux into Snow Where Land over Land", + "comment": "the net downward heat flux from the atmosphere into the snow that lies on land divided by the land area in the grid cell; reported as missing for snow-free land regions or where the land fraction is 0.", + "dimensions": "longitude latitude time", + "out_name": "hfdsn", + "type": "real", + "positive": "down", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "LImon", + "physical_parameter_name": "hfdsn", + "variableRootDD": "hfdsn", + "branding_label": "tavg-u-hxy-lnd", + "branded_variable_name": "hfdsn_tavg-u-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "LImon.hfdsn", + "cmip7_compound_name": "landIce.hfdsn.tavg-u-hxy-lnd.mon.GLB", + "uid": "baaed890-e5dd-11e5-8482-ac72891c3257" + }, + "landIce.hfgeoubed.tavg-u-hxy-gis.yr.ATA": { + "frequency": "yr", + "modeling_realm": "landIce", + "standard_name": "upward_geothermal_heat_flux_at_ground_level_in_land_ice", + "units": "W m-2", + "cell_methods": "area: time: mean where grounded_ice_sheet (mask=sfgrlf)", + "cell_measures": "area: areacellg", + "long_name": "Geothermal Heat Flux Beneath Land Ice", + "comment": "Geothermal Heat Flux Beneath Land Ice", + "dimensions": "longitude latitude time", + "out_name": "hfgeoubed", + "type": "real", + "positive": "", + "spatial_shape": "XYA-na", + "temporal_shape": "time-intv", + "cmip6_table": "IyrAnt", + "physical_parameter_name": "hfgeoubed", + "variableRootDD": "hfgeoubed", + "branding_label": "tavg-u-hxy-gis", + "branded_variable_name": "hfgeoubed_tavg-u-hxy-gis", + "region": "ATA", + "cmip6_compound_name": "IyrAnt.hfgeoubed", + "cmip7_compound_name": "landIce.hfgeoubed.tavg-u-hxy-gis.yr.ATA", + "uid": "d5b48e04-c78d-11e6-9b25-5404a60d96b5" + }, + "landIce.hfgeoubed.tavg-u-hxy-gis.yr.GRL": { + "frequency": "yr", + "modeling_realm": "landIce", + "standard_name": "upward_geothermal_heat_flux_at_ground_level_in_land_ice", + "units": "W m-2", + "cell_methods": "area: time: mean where grounded_ice_sheet (mask=sfgrlf)", + "cell_measures": "area: areacellg", + "long_name": "Geothermal Heat Flux Beneath Land Ice", + "comment": "Geothermal Heat Flux Beneath Land Ice", + "dimensions": "longitude latitude time", + "out_name": "hfgeoubed", + "type": "real", + "positive": "", + "spatial_shape": "XYG-na", + "temporal_shape": "time-intv", + "cmip6_table": "IyrGre", + "physical_parameter_name": "hfgeoubed", + "variableRootDD": "hfgeoubed", + "branding_label": "tavg-u-hxy-gis", + "branded_variable_name": "hfgeoubed_tavg-u-hxy-gis", + "region": "GRL", + "cmip6_compound_name": "IyrGre.hfgeoubed", + "cmip7_compound_name": "landIce.hfgeoubed.tavg-u-hxy-gis.yr.GRL", + "uid": "d5b3f53e-c78d-11e6-9b25-5404a60d96b5" + }, + "landIce.hfgeoubed.ti-u-hxy-gis.fx.ATA": { + "frequency": "fx", + "modeling_realm": "landIce", + "standard_name": "upward_geothermal_heat_flux_at_ground_level_in_land_ice", + "units": "W m-2", + "cell_methods": "area: mean where grounded_ice_sheet", + "cell_measures": "area: areacellg", + "long_name": "Geothermal Heat Flux Beneath Land Ice", + "comment": "Geothermal Heat Flux Beneath Land Ice", + "dimensions": "longitude latitude", + "out_name": "hfgeoubed", + "type": "real", + "positive": "", + "spatial_shape": "XYA-na", + "temporal_shape": "None", + "cmip6_table": "IfxAnt", + "physical_parameter_name": "hfgeoubed", + "variableRootDD": "hfgeoubed", + "branding_label": "ti-u-hxy-gis", + "branded_variable_name": "hfgeoubed_ti-u-hxy-gis", + "region": "ATA", + "cmip6_compound_name": "IfxAnt.hfgeoubed", + "cmip7_compound_name": "landIce.hfgeoubed.ti-u-hxy-gis.fx.ATA", + "uid": "d5b3755a-c78d-11e6-9b25-5404a60d96b5" + }, + "landIce.hfgeoubed.ti-u-hxy-gis.fx.GRL": { + "frequency": "fx", + "modeling_realm": "landIce", + "standard_name": "upward_geothermal_heat_flux_at_ground_level_in_land_ice", + "units": "W m-2", + "cell_methods": "area: mean where grounded_ice_sheet", + "cell_measures": "area: areacellg", + "long_name": "Geothermal Heat Flux Beneath Land Ice", + "comment": "Geothermal Heat Flux Beneath Land Ice", + "dimensions": "longitude latitude", + "out_name": "hfgeoubed", + "type": "real", + "positive": "", + "spatial_shape": "XYG-na", + "temporal_shape": "None", + "cmip6_table": "IfxGre", + "physical_parameter_name": "hfgeoubed", + "variableRootDD": "hfgeoubed", + "branding_label": "ti-u-hxy-gis", + "branded_variable_name": "hfgeoubed_ti-u-hxy-gis", + "region": "GRL", + "cmip6_compound_name": "IfxGre.hfgeoubed", + "cmip7_compound_name": "landIce.hfgeoubed.ti-u-hxy-gis.fx.GRL", + "uid": "d5b362fe-c78d-11e6-9b25-5404a60d96b5" + }, + "landIce.hfls.tavg-u-hxy-is.mon.GLB": { + "frequency": "mon", + "modeling_realm": "landIce", + "standard_name": "surface_upward_latent_heat_flux", + "units": "W m-2", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacella", + "long_name": "Ice Sheet Surface Upward Latent Heat Flux", + "comment": "quantity averaged over ice_sheet (meaning grounded ice sheet and floating ice shelf) only, to avoid contamination from other surfaces (eg: permafrost)", + "dimensions": "longitude latitude time", + "out_name": "hflsIs", + "type": "real", + "positive": "up", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "LImon", + "physical_parameter_name": "hflsIs", + "variableRootDD": "hfls", + "branding_label": "tavg-u-hxy-is", + "branded_variable_name": "hfls_tavg-u-hxy-is", + "region": "GLB", + "cmip6_compound_name": "LImon.hflsIs", + "cmip7_compound_name": "landIce.hfls.tavg-u-hxy-is.mon.GLB", + "uid": "812113d6-bf17-11e6-b0d8-ac72891c3257" + }, + "landIce.hfss.tavg-u-hxy-is.mon.GLB": { + "frequency": "mon", + "modeling_realm": "landIce", + "standard_name": "surface_upward_sensible_heat_flux", + "units": "W m-2", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacella", + "long_name": "Ice Sheet Surface Upward Sensible Heat Flux", + "comment": "quantity averaged over ice_sheet (meaning grounded ice sheet and floating ice shelf) only, to avoid contamination from other surfaces (eg: permafrost)", + "dimensions": "longitude latitude time", + "out_name": "hfssIs", + "type": "real", + "positive": "up", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "LImon", + "physical_parameter_name": "hfssIs", + "variableRootDD": "hfss", + "branding_label": "tavg-u-hxy-is", + "branded_variable_name": "hfss_tavg-u-hxy-is", + "region": "GLB", + "cmip6_compound_name": "LImon.hfssIs", + "cmip7_compound_name": "landIce.hfss.tavg-u-hxy-is.mon.GLB", + "uid": "8121189a-bf17-11e6-b0d8-ac72891c3257" + }, + "landIce.iareafl.tavg-u-hm-fis.yr.ATA": { + "frequency": "yr", + "modeling_realm": "landIce", + "standard_name": "floating_ice_shelf_area", + "units": "m2", + "cell_methods": "area: sum where floating_ice_shelf (mask=sftflf) time: mean", + "cell_measures": "", + "long_name": "Area Covered by Floating Ice Shelves", + "comment": "Antarctica", + "dimensions": "time", + "out_name": "iareafl", + "type": "real", + "positive": "", + "spatial_shape": "na-na", + "temporal_shape": "time-intv", + "cmip6_table": "IyrAnt", + "physical_parameter_name": "iareafl", + "variableRootDD": "iareafl", + "branding_label": "tavg-u-hm-fis", + "branded_variable_name": "iareafl_tavg-u-hm-fis", + "region": "ATA", + "cmip6_compound_name": "IyrAnt.iareafl", + "cmip7_compound_name": "landIce.iareafl.tavg-u-hm-fis.yr.ATA", + "uid": "d5b49ec6-c78d-11e6-9b25-5404a60d96b5" + }, + "landIce.iareafl.tavg-u-hm-fis.yr.GRL": { + "frequency": "yr", + "modeling_realm": "landIce", + "standard_name": "floating_ice_shelf_area", + "units": "m2", + "cell_methods": "area: sum where floating_ice_shelf (mask=sftflf) time: mean", + "cell_measures": "", + "long_name": "Area Covered by Floating Ice Shelves", + "comment": "Greenland", + "dimensions": "time", + "out_name": "iareafl", + "type": "real", + "positive": "", + "spatial_shape": "na-na", + "temporal_shape": "time-intv", + "cmip6_table": "IyrGre", + "physical_parameter_name": "iareafl", + "variableRootDD": "iareafl", + "branding_label": "tavg-u-hm-fis", + "branded_variable_name": "iareafl_tavg-u-hm-fis", + "region": "GRL", + "cmip6_compound_name": "IyrGre.iareafl", + "cmip7_compound_name": "landIce.iareafl.tavg-u-hm-fis.yr.GRL", + "uid": "d5b40830-c78d-11e6-9b25-5404a60d96b5" + }, + "landIce.iareagr.tavg-u-hm-gis.yr.ATA": { + "frequency": "yr", + "modeling_realm": "landIce", + "standard_name": "grounded_ice_sheet_area", + "units": "m2", + "cell_methods": "area: sum where grounded_ice_sheet (mask=sfgrlf) time: mean", + "cell_measures": "", + "long_name": "Area Covered by Grounded Ice Sheet", + "comment": "Antarctica", + "dimensions": "time", + "out_name": "iareagr", + "type": "real", + "positive": "", + "spatial_shape": "na-na", + "temporal_shape": "time-intv", + "cmip6_table": "IyrAnt", + "physical_parameter_name": "iareagr", + "variableRootDD": "iareagr", + "branding_label": "tavg-u-hm-gis", + "branded_variable_name": "iareagr_tavg-u-hm-gis", + "region": "ATA", + "cmip6_compound_name": "IyrAnt.iareagr", + "cmip7_compound_name": "landIce.iareagr.tavg-u-hm-gis.yr.ATA", + "uid": "d5b49a34-c78d-11e6-9b25-5404a60d96b5" + }, + "landIce.iareagr.tavg-u-hm-gis.yr.GRL": { + "frequency": "yr", + "modeling_realm": "landIce", + "standard_name": "grounded_ice_sheet_area", + "units": "m2", + "cell_methods": "area: sum where grounded_ice_sheet (mask=sfgrlf) time: mean", + "cell_measures": "", + "long_name": "Area Covered by Grounded Ice Sheet", + "comment": "Greenland", + "dimensions": "time", + "out_name": "iareagr", + "type": "real", + "positive": "", + "spatial_shape": "na-na", + "temporal_shape": "time-intv", + "cmip6_table": "IyrGre", + "physical_parameter_name": "iareagr", + "variableRootDD": "iareagr", + "branding_label": "tavg-u-hm-gis", + "branded_variable_name": "iareagr_tavg-u-hm-gis", + "region": "GRL", + "cmip6_compound_name": "IyrGre.iareagr", + "cmip7_compound_name": "landIce.iareagr.tavg-u-hm-gis.yr.GRL", + "uid": "d5b401b4-c78d-11e6-9b25-5404a60d96b5" + }, + "landIce.icem.tavg-u-hxy-is.mon.ATA": { + "frequency": "mon", + "modeling_realm": "landIce", + "standard_name": "land_ice_surface_melt_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacellg", + "long_name": "Surface Ice Melt Flux", + "comment": "Loss of ice mass resulting from surface melting. Computed as the total surface melt water on the land ice portion of the grid cell divided by land ice area in the grid cell.", + "dimensions": "longitude latitude time", + "out_name": "icem", + "type": "real", + "positive": "", + "spatial_shape": "XYA-na", + "temporal_shape": "time-intv", + "cmip6_table": "ImonAnt", + "physical_parameter_name": "icem", + "variableRootDD": "icem", + "branding_label": "tavg-u-hxy-is", + "branded_variable_name": "icem_tavg-u-hxy-is", + "region": "ATA", + "cmip6_compound_name": "ImonAnt.icem", + "cmip7_compound_name": "landIce.icem.tavg-u-hxy-is.mon.ATA", + "uid": "d5b322ee-c78d-11e6-9b25-5404a60d96b5" + }, + "landIce.icem.tavg-u-hxy-is.mon.GLB": { + "frequency": "mon", + "modeling_realm": "landIce", + "standard_name": "land_ice_surface_melt_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacella", + "long_name": "Ice Sheet Surface Ice Melt Flux", + "comment": "quantity averaged over ice_sheet (meaning grounded ice sheet and floating ice shelf) only, to avoid contamination from other surfaces (eg: permafrost)", + "dimensions": "longitude latitude time", + "out_name": "icemIs", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "LImon", + "physical_parameter_name": "icemIs", + "variableRootDD": "icem", + "branding_label": "tavg-u-hxy-is", + "branded_variable_name": "icem_tavg-u-hxy-is", + "region": "GLB", + "cmip6_compound_name": "LImon.icemIs", + "cmip7_compound_name": "landIce.icem.tavg-u-hxy-is.mon.GLB", + "uid": "8120ed7a-bf17-11e6-b0d8-ac72891c3257" + }, + "landIce.icem.tavg-u-hxy-is.mon.GRL": { + "frequency": "mon", + "modeling_realm": "landIce", + "standard_name": "land_ice_surface_melt_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacellg", + "long_name": "Surface Ice Melt Flux", + "comment": "Loss of ice mass resulting from surface melting. Computed as the total surface melt water on the land ice portion of the grid cell divided by land ice area in the grid cell.", + "dimensions": "longitude latitude time", + "out_name": "icem", + "type": "real", + "positive": "", + "spatial_shape": "XYG-na", + "temporal_shape": "time-intv", + "cmip6_table": "ImonGre", + "physical_parameter_name": "icem", + "variableRootDD": "icem", + "branding_label": "tavg-u-hxy-is", + "branded_variable_name": "icem_tavg-u-hxy-is", + "region": "GRL", + "cmip6_compound_name": "ImonGre.icem", + "cmip7_compound_name": "landIce.icem.tavg-u-hxy-is.mon.GRL", + "uid": "d5b2ab98-c78d-11e6-9b25-5404a60d96b5" + }, + "landIce.libmassbf.tavg-u-hxy-fis.mon.ATA": { + "frequency": "mon", + "modeling_realm": "landIce", + "standard_name": "land_ice_basal_specific_mass_balance_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean where floating_ice_shelf (mask=sftflf)", + "cell_measures": "area: areacellg", + "long_name": "Basal Specific Mass Balance Flux of Floating Ice Shelf", + "comment": "quantity averaged over floating ice shelf", + "dimensions": "longitude latitude time", + "out_name": "libmassbffl", + "type": "real", + "positive": "", + "spatial_shape": "XYA-na", + "temporal_shape": "time-intv", + "cmip6_table": "ImonAnt", + "physical_parameter_name": "libmassbffl", + "variableRootDD": "libmassbf", + "branding_label": "tavg-u-hxy-fis", + "branded_variable_name": "libmassbf_tavg-u-hxy-fis", + "region": "ATA", + "cmip6_compound_name": "ImonAnt.libmassbffl", + "cmip7_compound_name": "landIce.libmassbf.tavg-u-hxy-fis.mon.ATA", + "uid": "d5b34b3e-c78d-11e6-9b25-5404a60d96b5" + }, + "landIce.libmassbf.tavg-u-hxy-fis.mon.GRL": { + "frequency": "mon", + "modeling_realm": "landIce", + "standard_name": "land_ice_basal_specific_mass_balance_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean where floating_ice_shelf (mask=sftflf)", + "cell_measures": "area: areacellg", + "long_name": "Basal Specific Mass Balance Flux of Floating Ice Shelf", + "comment": "quantity averaged over floating ice shelf", + "dimensions": "longitude latitude time", + "out_name": "libmassbffl", + "type": "real", + "positive": "", + "spatial_shape": "XYG-na", + "temporal_shape": "time-intv", + "cmip6_table": "ImonGre", + "physical_parameter_name": "libmassbffl", + "variableRootDD": "libmassbf", + "branding_label": "tavg-u-hxy-fis", + "branded_variable_name": "libmassbf_tavg-u-hxy-fis", + "region": "GRL", + "cmip6_compound_name": "ImonGre.libmassbffl", + "cmip7_compound_name": "landIce.libmassbf.tavg-u-hxy-fis.mon.GRL", + "uid": "d5b2d47e-c78d-11e6-9b25-5404a60d96b5" + }, + "landIce.libmassbf.tavg-u-hxy-fis.yr.ATA": { + "frequency": "yr", + "modeling_realm": "landIce", + "standard_name": "land_ice_basal_specific_mass_balance_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean where floating_ice_shelf (mask=sftflf)", + "cell_measures": "area: areacellg", + "long_name": "Basal Specific Mass Balance Flux of Floating Ice Shelf", + "comment": "quantity averaged over floating land ice", + "dimensions": "longitude latitude time", + "out_name": "libmassbffl", + "type": "real", + "positive": "", + "spatial_shape": "XYA-na", + "temporal_shape": "time-intv", + "cmip6_table": "IyrAnt", + "physical_parameter_name": "libmassbffl", + "variableRootDD": "libmassbf", + "branding_label": "tavg-u-hxy-fis", + "branded_variable_name": "libmassbf_tavg-u-hxy-fis", + "region": "ATA", + "cmip6_compound_name": "IyrAnt.libmassbffl", + "cmip7_compound_name": "landIce.libmassbf.tavg-u-hxy-fis.yr.ATA", + "uid": "d5b45024-c78d-11e6-9b25-5404a60d96b5" + }, + "landIce.libmassbf.tavg-u-hxy-fis.yr.GRL": { + "frequency": "yr", + "modeling_realm": "landIce", + "standard_name": "land_ice_basal_specific_mass_balance_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean where floating_ice_shelf (mask=sftflf)", + "cell_measures": "area: areacellg", + "long_name": "Basal Specific Mass Balance Flux of Floating Ice Shelf", + "comment": "quantity averaged over floating land ice", + "dimensions": "longitude latitude time", + "out_name": "libmassbffl", + "type": "real", + "positive": "", + "spatial_shape": "XYG-na", + "temporal_shape": "time-intv", + "cmip6_table": "IyrGre", + "physical_parameter_name": "libmassbffl", + "variableRootDD": "libmassbf", + "branding_label": "tavg-u-hxy-fis", + "branded_variable_name": "libmassbf_tavg-u-hxy-fis", + "region": "GRL", + "cmip6_compound_name": "IyrGre.libmassbffl", + "cmip7_compound_name": "landIce.libmassbf.tavg-u-hxy-fis.yr.GRL", + "uid": "d5b3b948-c78d-11e6-9b25-5404a60d96b5" + }, + "landIce.libmassbf.tavg-u-hxy-gis.mon.ATA": { + "frequency": "mon", + "modeling_realm": "landIce", + "standard_name": "land_ice_basal_specific_mass_balance_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean where grounded_ice_sheet (mask=sfgrlf)", + "cell_measures": "area: areacellg", + "long_name": "Basal Specific Mass Balance Flux of Grounded Ice Sheet", + "comment": "quantity averaged over grounded ice sheet", + "dimensions": "longitude latitude time", + "out_name": "libmassbfgr", + "type": "real", + "positive": "", + "spatial_shape": "XYA-na", + "temporal_shape": "time-intv", + "cmip6_table": "ImonAnt", + "physical_parameter_name": "libmassbfgr", + "variableRootDD": "libmassbf", + "branding_label": "tavg-u-hxy-gis", + "branded_variable_name": "libmassbf_tavg-u-hxy-gis", + "region": "ATA", + "cmip6_compound_name": "ImonAnt.libmassbfgr", + "cmip7_compound_name": "landIce.libmassbf.tavg-u-hxy-gis.mon.ATA", + "uid": "d5b3477e-c78d-11e6-9b25-5404a60d96b5" + }, + "landIce.libmassbf.tavg-u-hxy-gis.mon.GRL": { + "frequency": "mon", + "modeling_realm": "landIce", + "standard_name": "land_ice_basal_specific_mass_balance_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean where grounded_ice_sheet (mask=sfgrlf)", + "cell_measures": "area: areacellg", + "long_name": "Basal Specific Mass Balance Flux of Grounded Ice Sheet", + "comment": "quantity averaged over grounded ice sheet", + "dimensions": "longitude latitude time", + "out_name": "libmassbfgr", + "type": "real", + "positive": "", + "spatial_shape": "XYG-na", + "temporal_shape": "time-intv", + "cmip6_table": "ImonGre", + "physical_parameter_name": "libmassbfgr", + "variableRootDD": "libmassbf", + "branding_label": "tavg-u-hxy-gis", + "branded_variable_name": "libmassbf_tavg-u-hxy-gis", + "region": "GRL", + "cmip6_compound_name": "ImonGre.libmassbfgr", + "cmip7_compound_name": "landIce.libmassbf.tavg-u-hxy-gis.mon.GRL", + "uid": "d5b2d06e-c78d-11e6-9b25-5404a60d96b5" + }, + "landIce.libmassbf.tavg-u-hxy-gis.yr.ATA": { + "frequency": "yr", + "modeling_realm": "landIce", + "standard_name": "land_ice_basal_specific_mass_balance_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean where grounded_ice_sheet (mask=sfgrlf)", + "cell_measures": "area: areacellg", + "long_name": "Basal Specific Mass Balance Flux of Grounded Ice Sheet", + "comment": "quantity averaged over grounded land ice", + "dimensions": "longitude latitude time", + "out_name": "libmassbfgr", + "type": "real", + "positive": "", + "spatial_shape": "XYA-na", + "temporal_shape": "time-intv", + "cmip6_table": "IyrAnt", + "physical_parameter_name": "libmassbfgr", + "variableRootDD": "libmassbf", + "branding_label": "tavg-u-hxy-gis", + "branded_variable_name": "libmassbf_tavg-u-hxy-gis", + "region": "ATA", + "cmip6_compound_name": "IyrAnt.libmassbfgr", + "cmip7_compound_name": "landIce.libmassbf.tavg-u-hxy-gis.yr.ATA", + "uid": "d5b44c64-c78d-11e6-9b25-5404a60d96b5" + }, + "landIce.libmassbf.tavg-u-hxy-gis.yr.GRL": { + "frequency": "yr", + "modeling_realm": "landIce", + "standard_name": "land_ice_basal_specific_mass_balance_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean where grounded_ice_sheet (mask=sfgrlf)", + "cell_measures": "area: areacellg", + "long_name": "Basal Specific Mass Balance Flux of Grounded Ice Sheet", + "comment": "quantity averaged over grounded land ice", + "dimensions": "longitude latitude time", + "out_name": "libmassbfgr", + "type": "real", + "positive": "", + "spatial_shape": "XYG-na", + "temporal_shape": "time-intv", + "cmip6_table": "IyrGre", + "physical_parameter_name": "libmassbfgr", + "variableRootDD": "libmassbf", + "branding_label": "tavg-u-hxy-gis", + "branded_variable_name": "libmassbf_tavg-u-hxy-gis", + "region": "GRL", + "cmip6_compound_name": "IyrGre.libmassbfgr", + "cmip7_compound_name": "landIce.libmassbf.tavg-u-hxy-gis.yr.GRL", + "uid": "d5b3b57e-c78d-11e6-9b25-5404a60d96b5" + }, + "landIce.licalvf.tavg-u-hxy-is.mon.ATA": { + "frequency": "mon", + "modeling_realm": "landIce", + "standard_name": "land_ice_specific_mass_flux_due_to_calving", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacellg", + "long_name": "Land Ice Calving Flux", + "comment": "Loss of ice mass resulting from iceberg calving. Computed as the rate of mass loss by the ice shelf (in kg s-1) divided by the horizontal area of the ice sheet (m2) in the grid box.", + "dimensions": "longitude latitude time", + "out_name": "licalvf", + "type": "real", + "positive": "", + "spatial_shape": "XYA-na", + "temporal_shape": "time-intv", + "cmip6_table": "ImonAnt", + "physical_parameter_name": "licalvf", + "variableRootDD": "licalvf", + "branding_label": "tavg-u-hxy-is", + "branded_variable_name": "licalvf_tavg-u-hxy-is", + "region": "ATA", + "cmip6_compound_name": "ImonAnt.licalvf", + "cmip7_compound_name": "landIce.licalvf.tavg-u-hxy-is.mon.ATA", + "uid": "d5b3503e-c78d-11e6-9b25-5404a60d96b5" + }, + "landIce.licalvf.tavg-u-hxy-is.mon.GRL": { + "frequency": "mon", + "modeling_realm": "landIce", + "standard_name": "land_ice_specific_mass_flux_due_to_calving", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacellg", + "long_name": "Land Ice Calving Flux", + "comment": "Loss of ice mass resulting from iceberg calving. Computed as the rate of mass loss by the ice shelf (in kg s-1) divided by the horizontal area of the ice sheet (m2) in the grid box.", + "dimensions": "longitude latitude time", + "out_name": "licalvf", + "type": "real", + "positive": "", + "spatial_shape": "XYG-na", + "temporal_shape": "time-intv", + "cmip6_table": "ImonGre", + "physical_parameter_name": "licalvf", + "variableRootDD": "licalvf", + "branding_label": "tavg-u-hxy-is", + "branded_variable_name": "licalvf_tavg-u-hxy-is", + "region": "GRL", + "cmip6_compound_name": "ImonGre.licalvf", + "cmip7_compound_name": "landIce.licalvf.tavg-u-hxy-is.mon.GRL", + "uid": "d5b2d82a-c78d-11e6-9b25-5404a60d96b5" + }, + "landIce.licalvf.tavg-u-hxy-is.yr.ATA": { + "frequency": "yr", + "modeling_realm": "landIce", + "standard_name": "land_ice_specific_mass_flux_due_to_calving", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacellg", + "long_name": "Land Ice Calving Flux", + "comment": "Loss of ice mass resulting from iceberg calving. Computed as the rate of mass loss by the ice shelf (in kg s-1) divided by the horizontal area of the ice sheet (m2) in the grid box.", + "dimensions": "longitude latitude time", + "out_name": "licalvf", + "type": "real", + "positive": "", + "spatial_shape": "XYA-na", + "temporal_shape": "time-intv", + "cmip6_table": "IyrAnt", + "physical_parameter_name": "licalvf", + "variableRootDD": "licalvf", + "branding_label": "tavg-u-hxy-is", + "branded_variable_name": "licalvf_tavg-u-hxy-is", + "region": "ATA", + "cmip6_compound_name": "IyrAnt.licalvf", + "cmip7_compound_name": "landIce.licalvf.tavg-u-hxy-is.yr.ATA", + "uid": "d5b453da-c78d-11e6-9b25-5404a60d96b5" + }, + "landIce.licalvf.tavg-u-hxy-is.yr.GRL": { + "frequency": "yr", + "modeling_realm": "landIce", + "standard_name": "land_ice_specific_mass_flux_due_to_calving", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacellg", + "long_name": "Land Ice Calving Flux", + "comment": "Loss of ice mass resulting from iceberg calving. Computed as the rate of mass loss by the ice shelf (in kg s-1) divided by the horizontal area of the ice sheet (m2) in the grid box.", + "dimensions": "longitude latitude time", + "out_name": "licalvf", + "type": "real", + "positive": "", + "spatial_shape": "XYG-na", + "temporal_shape": "time-intv", + "cmip6_table": "IyrGre", + "physical_parameter_name": "licalvf", + "variableRootDD": "licalvf", + "branding_label": "tavg-u-hxy-is", + "branded_variable_name": "licalvf_tavg-u-hxy-is", + "region": "GRL", + "cmip6_compound_name": "IyrGre.licalvf", + "cmip7_compound_name": "landIce.licalvf.tavg-u-hxy-is.yr.GRL", + "uid": "d5b3bd08-c78d-11e6-9b25-5404a60d96b5" + }, + "landIce.lifmassbf.tavg-u-hxy-is.mon.ATA": { + "frequency": "mon", + "modeling_realm": "landIce", + "standard_name": "land_ice_specific_mass_flux_due_to_calving_and_ice_front_melting", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacellg", + "long_name": "Land Ice Vertical Front Mass Balance Flux", + "comment": "Total mass balance at the ice front (or vertical margin). It includes both iceberg calving and melt on vertical ice front", + "dimensions": "longitude latitude time", + "out_name": "lifmassbf", + "type": "real", + "positive": "", + "spatial_shape": "XYA-na", + "temporal_shape": "time-intv", + "cmip6_table": "ImonAnt", + "physical_parameter_name": "lifmassbf", + "variableRootDD": "lifmassbf", + "branding_label": "tavg-u-hxy-is", + "branded_variable_name": "lifmassbf_tavg-u-hxy-is", + "region": "ATA", + "cmip6_compound_name": "ImonAnt.lifmassbf", + "cmip7_compound_name": "landIce.lifmassbf.tavg-u-hxy-is.mon.ATA", + "uid": "d5b353e0-c78d-11e6-9b25-5404a60d96b5" + }, + "landIce.lifmassbf.tavg-u-hxy-is.mon.GRL": { + "frequency": "mon", + "modeling_realm": "landIce", + "standard_name": "land_ice_specific_mass_flux_due_to_calving_and_ice_front_melting", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacellg", + "long_name": "Land Ice Vertical Front Mass Balance Flux", + "comment": "Total mass balance at the ice front (or vertical margin). It includes both iceberg calving and melt on vertical ice front", + "dimensions": "longitude latitude time", + "out_name": "lifmassbf", + "type": "real", + "positive": "", + "spatial_shape": "XYG-na", + "temporal_shape": "time-intv", + "cmip6_table": "ImonGre", + "physical_parameter_name": "lifmassbf", + "variableRootDD": "lifmassbf", + "branding_label": "tavg-u-hxy-is", + "branded_variable_name": "lifmassbf_tavg-u-hxy-is", + "region": "GRL", + "cmip6_compound_name": "ImonGre.lifmassbf", + "cmip7_compound_name": "landIce.lifmassbf.tavg-u-hxy-is.mon.GRL", + "uid": "d5b2dbcc-c78d-11e6-9b25-5404a60d96b5" + }, + "landIce.lifmassbf.tavg-u-hxy-is.yr.ATA": { + "frequency": "yr", + "modeling_realm": "landIce", + "standard_name": "land_ice_specific_mass_flux_due_to_calving_and_ice_front_melting", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacellg", + "long_name": "Land Ice Vertical Front Mass Balance Flux", + "comment": "Total mass balance at the ice front (or vertical margin). It includes both iceberg calving and melt on vertical ice front", + "dimensions": "longitude latitude time", + "out_name": "lifmassbf", + "type": "real", + "positive": "", + "spatial_shape": "XYA-na", + "temporal_shape": "time-intv", + "cmip6_table": "IyrAnt", + "physical_parameter_name": "lifmassbf", + "variableRootDD": "lifmassbf", + "branding_label": "tavg-u-hxy-is", + "branded_variable_name": "lifmassbf_tavg-u-hxy-is", + "region": "ATA", + "cmip6_compound_name": "IyrAnt.lifmassbf", + "cmip7_compound_name": "landIce.lifmassbf.tavg-u-hxy-is.yr.ATA", + "uid": "d5b45790-c78d-11e6-9b25-5404a60d96b5" + }, + "landIce.lifmassbf.tavg-u-hxy-is.yr.GRL": { + "frequency": "yr", + "modeling_realm": "landIce", + "standard_name": "land_ice_specific_mass_flux_due_to_calving_and_ice_front_melting", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacellg", + "long_name": "Land Ice Vertical Front Mass Balance Flux", + "comment": "Total mass balance at the ice front (or vertical margin). It includes both iceberg calving and melt on vertical ice front", + "dimensions": "longitude latitude time", + "out_name": "lifmassbf", + "type": "real", + "positive": "", + "spatial_shape": "XYG-na", + "temporal_shape": "time-intv", + "cmip6_table": "IyrGre", + "physical_parameter_name": "lifmassbf", + "variableRootDD": "lifmassbf", + "branding_label": "tavg-u-hxy-is", + "branded_variable_name": "lifmassbf_tavg-u-hxy-is", + "region": "GRL", + "cmip6_compound_name": "IyrGre.lifmassbf", + "cmip7_compound_name": "landIce.lifmassbf.tavg-u-hxy-is.yr.GRL", + "uid": "d5b3c0b4-c78d-11e6-9b25-5404a60d96b5" + }, + "landIce.lim.tavg-u-hm-is.yr.ATA": { + "frequency": "yr", + "modeling_realm": "landIce", + "standard_name": "land_ice_mass", + "units": "kg", + "cell_methods": "area: sum where ice_sheet time: mean", + "cell_measures": "", + "long_name": "Ice Sheet Mass", + "comment": "Antarctica", + "dimensions": "time", + "out_name": "lim", + "type": "real", + "positive": "", + "spatial_shape": "na-na", + "temporal_shape": "time-intv", + "cmip6_table": "IyrAnt", + "physical_parameter_name": "lim", + "variableRootDD": "lim", + "branding_label": "tavg-u-hm-is", + "branded_variable_name": "lim_tavg-u-hm-is", + "region": "ATA", + "cmip6_compound_name": "IyrAnt.lim", + "cmip7_compound_name": "landIce.lim.tavg-u-hm-is.yr.ATA", + "uid": "d5b4921e-c78d-11e6-9b25-5404a60d96b5" + }, + "landIce.lim.tavg-u-hm-is.yr.GRL": { + "frequency": "yr", + "modeling_realm": "landIce", + "standard_name": "land_ice_mass", + "units": "kg", + "cell_methods": "area: sum where ice_sheet time: mean", + "cell_measures": "", + "long_name": "Ice Sheet Mass", + "comment": "Greenland", + "dimensions": "time", + "out_name": "lim", + "type": "real", + "positive": "", + "spatial_shape": "na-na", + "temporal_shape": "time-intv", + "cmip6_table": "IyrGre", + "physical_parameter_name": "lim", + "variableRootDD": "lim", + "branding_label": "tavg-u-hm-is", + "branded_variable_name": "lim_tavg-u-hm-is", + "region": "GRL", + "cmip6_compound_name": "IyrGre.lim", + "cmip7_compound_name": "landIce.lim.tavg-u-hm-is.yr.GRL", + "uid": "d5b3f98a-c78d-11e6-9b25-5404a60d96b5" + }, + "landIce.limnsw.tavg-u-hm-is.yr.ATA": { + "frequency": "yr", + "modeling_realm": "landIce", + "standard_name": "land_ice_mass_not_displacing_sea_water", + "units": "kg", + "cell_methods": "area: sum where ice_sheet time: mean", + "cell_measures": "", + "long_name": "Ice Sheet Mass That Does not Displace Sea Water", + "comment": "Antarctica", + "dimensions": "time", + "out_name": "limnsw", + "type": "real", + "positive": "", + "spatial_shape": "na-na", + "temporal_shape": "time-intv", + "cmip6_table": "IyrAnt", + "physical_parameter_name": "limnsw", + "variableRootDD": "limnsw", + "branding_label": "tavg-u-hm-is", + "branded_variable_name": "limnsw_tavg-u-hm-is", + "region": "ATA", + "cmip6_compound_name": "IyrAnt.limnsw", + "cmip7_compound_name": "landIce.limnsw.tavg-u-hm-is.yr.ATA", + "uid": "d5b4962e-c78d-11e6-9b25-5404a60d96b5" + }, + "landIce.limnsw.tavg-u-hm-is.yr.GRL": { + "frequency": "yr", + "modeling_realm": "landIce", + "standard_name": "land_ice_mass_not_displacing_sea_water", + "units": "kg", + "cell_methods": "area: sum where ice_sheet time: mean", + "cell_measures": "", + "long_name": "Ice Sheet Mass That Does not Displace Sea Water", + "comment": "Greenland", + "dimensions": "time", + "out_name": "limnsw", + "type": "real", + "positive": "", + "spatial_shape": "na-na", + "temporal_shape": "time-intv", + "cmip6_table": "IyrGre", + "physical_parameter_name": "limnsw", + "variableRootDD": "limnsw", + "branding_label": "tavg-u-hm-is", + "branded_variable_name": "limnsw_tavg-u-hm-is", + "region": "GRL", + "cmip6_compound_name": "IyrGre.limnsw", + "cmip7_compound_name": "landIce.limnsw.tavg-u-hm-is.yr.GRL", + "uid": "d5b3fda4-c78d-11e6-9b25-5404a60d96b5" + }, + "landIce.litempbot.tavg-u-hxy-fis.mon.ATA": { + "frequency": "mon", + "modeling_realm": "landIce", + "standard_name": "land_ice_basal_temperature", + "units": "K", + "cell_methods": "area: time: mean where floating_ice_shelf (mask=sftflf)", + "cell_measures": "area: areacellg", + "long_name": "Basal Temperature of Floating Ice Shelf", + "comment": "quantity averaged over floating ice shelf", + "dimensions": "longitude latitude time", + "out_name": "litempbotfl", + "type": "real", + "positive": "", + "spatial_shape": "XYA-na", + "temporal_shape": "time-intv", + "cmip6_table": "ImonAnt", + "physical_parameter_name": "litempbotfl", + "variableRootDD": "litempbot", + "branding_label": "tavg-u-hxy-fis", + "branded_variable_name": "litempbot_tavg-u-hxy-fis", + "region": "ATA", + "cmip6_compound_name": "ImonAnt.litempbotfl", + "cmip7_compound_name": "landIce.litempbot.tavg-u-hxy-fis.mon.ATA", + "uid": "d5b3076e-c78d-11e6-9b25-5404a60d96b5" + }, + "landIce.litempbot.tavg-u-hxy-fis.mon.GRL": { + "frequency": "mon", + "modeling_realm": "landIce", + "standard_name": "land_ice_basal_temperature", + "units": "K", + "cell_methods": "area: time: mean where floating_ice_shelf (mask=sftflf)", + "cell_measures": "area: areacellg", + "long_name": "Basal Temperature of Floating Ice Shelf", + "comment": "quantity averaged over floating ice shelf", + "dimensions": "longitude latitude time", + "out_name": "litempbotfl", + "type": "real", + "positive": "", + "spatial_shape": "XYG-na", + "temporal_shape": "time-intv", + "cmip6_table": "ImonGre", + "physical_parameter_name": "litempbotfl", + "variableRootDD": "litempbot", + "branding_label": "tavg-u-hxy-fis", + "branded_variable_name": "litempbot_tavg-u-hxy-fis", + "region": "GRL", + "cmip6_compound_name": "ImonGre.litempbotfl", + "cmip7_compound_name": "landIce.litempbot.tavg-u-hxy-fis.mon.GRL", + "uid": "d5b290ae-c78d-11e6-9b25-5404a60d96b5" + }, + "landIce.litempbot.tavg-u-hxy-fis.yr.ATA": { + "frequency": "yr", + "modeling_realm": "landIce", + "standard_name": "land_ice_basal_temperature", + "units": "K", + "cell_methods": "area: time: mean where floating_ice_shelf (mask=sftflf)", + "cell_measures": "area: areacellg", + "long_name": "Basal Temperature of Floating Ice Shelf", + "comment": "quantity averaged over floating land ice", + "dimensions": "longitude latitude time", + "out_name": "litempbotfl", + "type": "real", + "positive": "", + "spatial_shape": "XYA-na", + "temporal_shape": "time-intv", + "cmip6_table": "IyrAnt", + "physical_parameter_name": "litempbotfl", + "variableRootDD": "litempbot", + "branding_label": "tavg-u-hxy-fis", + "branded_variable_name": "litempbot_tavg-u-hxy-fis", + "region": "ATA", + "cmip6_compound_name": "IyrAnt.litempbotfl", + "cmip7_compound_name": "landIce.litempbot.tavg-u-hxy-fis.yr.ATA", + "uid": "d5b444b2-c78d-11e6-9b25-5404a60d96b5" + }, + "landIce.litempbot.tavg-u-hxy-fis.yr.GRL": { + "frequency": "yr", + "modeling_realm": "landIce", + "standard_name": "land_ice_basal_temperature", + "units": "K", + "cell_methods": "area: time: mean where floating_ice_shelf (mask=sftflf)", + "cell_measures": "area: areacellg", + "long_name": "Basal Temperature of Floating Ice Shelf", + "comment": "quantity averaged over floating land ice", + "dimensions": "longitude latitude time", + "out_name": "litempbotfl", + "type": "real", + "positive": "", + "spatial_shape": "XYG-na", + "temporal_shape": "time-intv", + "cmip6_table": "IyrGre", + "physical_parameter_name": "litempbotfl", + "variableRootDD": "litempbot", + "branding_label": "tavg-u-hxy-fis", + "branded_variable_name": "litempbot_tavg-u-hxy-fis", + "region": "GRL", + "cmip6_compound_name": "IyrGre.litempbotfl", + "cmip7_compound_name": "landIce.litempbot.tavg-u-hxy-fis.yr.GRL", + "uid": "d5b3ade0-c78d-11e6-9b25-5404a60d96b5" + }, + "landIce.litempbot.tavg-u-hxy-gis.mon.ATA": { + "frequency": "mon", + "modeling_realm": "landIce", + "standard_name": "land_ice_basal_temperature", + "units": "K", + "cell_methods": "area: time: mean where grounded_ice_sheet (mask=sfgrlf)", + "cell_measures": "area: areacellg", + "long_name": "Basal Temperature of Grounded Ice Sheet", + "comment": "quantity averaged over grounded ice sheet", + "dimensions": "longitude latitude time", + "out_name": "litempbotgr", + "type": "real", + "positive": "", + "spatial_shape": "XYA-na", + "temporal_shape": "time-intv", + "cmip6_table": "ImonAnt", + "physical_parameter_name": "litempbotgr", + "variableRootDD": "litempbot", + "branding_label": "tavg-u-hxy-gis", + "branded_variable_name": "litempbot_tavg-u-hxy-gis", + "region": "ATA", + "cmip6_compound_name": "ImonAnt.litempbotgr", + "cmip7_compound_name": "landIce.litempbot.tavg-u-hxy-gis.mon.ATA", + "uid": "d5b303ae-c78d-11e6-9b25-5404a60d96b5" + }, + "landIce.litempbot.tavg-u-hxy-gis.mon.GRL": { + "frequency": "mon", + "modeling_realm": "landIce", + "standard_name": "land_ice_basal_temperature", + "units": "K", + "cell_methods": "area: time: mean where grounded_ice_sheet (mask=sfgrlf)", + "cell_measures": "area: areacellg", + "long_name": "Basal Temperature of Grounded Ice Sheet", + "comment": "quantity averaged over grounded ice sheet", + "dimensions": "longitude latitude time", + "out_name": "litempbotgr", + "type": "real", + "positive": "", + "spatial_shape": "XYG-na", + "temporal_shape": "time-intv", + "cmip6_table": "ImonGre", + "physical_parameter_name": "litempbotgr", + "variableRootDD": "litempbot", + "branding_label": "tavg-u-hxy-gis", + "branded_variable_name": "litempbot_tavg-u-hxy-gis", + "region": "GRL", + "cmip6_compound_name": "ImonGre.litempbotgr", + "cmip7_compound_name": "landIce.litempbot.tavg-u-hxy-gis.mon.GRL", + "uid": "d5b28ce4-c78d-11e6-9b25-5404a60d96b5" + }, + "landIce.litempbot.tavg-u-hxy-gis.yr.ATA": { + "frequency": "yr", + "modeling_realm": "landIce", + "standard_name": "land_ice_basal_temperature", + "units": "K", + "cell_methods": "area: time: mean where grounded_ice_sheet (mask=sfgrlf)", + "cell_measures": "area: areacellg", + "long_name": "Basal Temperature of Grounded Ice Sheet", + "comment": "quantity averaged over grounded land ice", + "dimensions": "longitude latitude time", + "out_name": "litempbotgr", + "type": "real", + "positive": "", + "spatial_shape": "XYA-na", + "temporal_shape": "time-intv", + "cmip6_table": "IyrAnt", + "physical_parameter_name": "litempbotgr", + "variableRootDD": "litempbot", + "branding_label": "tavg-u-hxy-gis", + "branded_variable_name": "litempbot_tavg-u-hxy-gis", + "region": "ATA", + "cmip6_compound_name": "IyrAnt.litempbotgr", + "cmip7_compound_name": "landIce.litempbot.tavg-u-hxy-gis.yr.ATA", + "uid": "d5b440e8-c78d-11e6-9b25-5404a60d96b5" + }, + "landIce.litempbot.tavg-u-hxy-gis.yr.GRL": { + "frequency": "yr", + "modeling_realm": "landIce", + "standard_name": "land_ice_basal_temperature", + "units": "K", + "cell_methods": "area: time: mean where grounded_ice_sheet (mask=sfgrlf)", + "cell_measures": "area: areacellg", + "long_name": "Basal Temperature of Grounded Ice Sheet", + "comment": "quantity averaged over grounded land ice", + "dimensions": "longitude latitude time", + "out_name": "litempbotgr", + "type": "real", + "positive": "", + "spatial_shape": "XYG-na", + "temporal_shape": "time-intv", + "cmip6_table": "IyrGre", + "physical_parameter_name": "litempbotgr", + "variableRootDD": "litempbot", + "branding_label": "tavg-u-hxy-gis", + "branded_variable_name": "litempbot_tavg-u-hxy-gis", + "region": "GRL", + "cmip6_compound_name": "IyrGre.litempbotgr", + "cmip7_compound_name": "landIce.litempbot.tavg-u-hxy-gis.yr.GRL", + "uid": "d5b3aa16-c78d-11e6-9b25-5404a60d96b5" + }, + "landIce.litemptop.tavg-u-hxy-is.mon.ATA": { + "frequency": "mon", + "modeling_realm": "landIce", + "standard_name": "temperature_at_top_of_ice_sheet_model", + "units": "K", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacellg", + "long_name": "Temperature at Top of Ice Sheet Model", + "comment": "quantity averaged over ice sheet (grounded ice sheet and floating ice shelf) only. Needed to analyse the impact of downscaling methods", + "dimensions": "longitude latitude time", + "out_name": "litemptop", + "type": "real", + "positive": "", + "spatial_shape": "XYA-na", + "temporal_shape": "time-intv", + "cmip6_table": "ImonAnt", + "physical_parameter_name": "litemptop", + "variableRootDD": "litemptop", + "branding_label": "tavg-u-hxy-is", + "branded_variable_name": "litemptop_tavg-u-hxy-is", + "region": "ATA", + "cmip6_compound_name": "ImonAnt.litemptop", + "cmip7_compound_name": "landIce.litemptop.tavg-u-hxy-is.mon.ATA", + "uid": "d5b2ff9e-c78d-11e6-9b25-5404a60d96b5" + }, + "landIce.litemptop.tavg-u-hxy-is.mon.GLB": { + "frequency": "mon", + "modeling_realm": "landIce", + "standard_name": "temperature_at_top_of_ice_sheet_model", + "units": "K", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacella", + "long_name": "Ice Sheet Temperature at Top of Ice Sheet Model", + "comment": "quantity averaged over ice_sheet (meaning grounded ice sheet and floating ice shelf) only, to avoid contamination from other surfaces (eg: permafrost)", + "dimensions": "longitude latitude time", + "out_name": "litemptopIs", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "LImon", + "physical_parameter_name": "litemptopIs", + "variableRootDD": "litemptop", + "branding_label": "tavg-u-hxy-is", + "branded_variable_name": "litemptop_tavg-u-hxy-is", + "region": "GLB", + "cmip6_compound_name": "LImon.litemptopIs", + "cmip7_compound_name": "landIce.litemptop.tavg-u-hxy-is.mon.GLB", + "uid": "8120ca5c-bf17-11e6-b0d8-ac72891c3257" + }, + "landIce.litemptop.tavg-u-hxy-is.mon.GRL": { + "frequency": "mon", + "modeling_realm": "landIce", + "standard_name": "temperature_at_top_of_ice_sheet_model", + "units": "K", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacellg", + "long_name": "Temperature at Top of Ice Sheet Model", + "comment": "quantity averaged over ice sheet (grounded ice sheet and floating ice shelf) only. Needed to analyse the impact of downscaling methods", + "dimensions": "longitude latitude time", + "out_name": "litemptop", + "type": "real", + "positive": "", + "spatial_shape": "XYG-na", + "temporal_shape": "time-intv", + "cmip6_table": "ImonGre", + "physical_parameter_name": "litemptop", + "variableRootDD": "litemptop", + "branding_label": "tavg-u-hxy-is", + "branded_variable_name": "litemptop_tavg-u-hxy-is", + "region": "GRL", + "cmip6_compound_name": "ImonGre.litemptop", + "cmip7_compound_name": "landIce.litemptop.tavg-u-hxy-is.mon.GRL", + "uid": "d5b28910-c78d-11e6-9b25-5404a60d96b5" + }, + "landIce.litemptop.tavg-u-hxy-is.yr.ATA": { + "frequency": "yr", + "modeling_realm": "landIce", + "standard_name": "temperature_at_top_of_ice_sheet_model", + "units": "K", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacellg", + "long_name": "Temperature at Top of Ice Sheet Model", + "comment": "quantity averaged over ice sheet only, to avoid contamination from other surfaces (eg: permafrost)", + "dimensions": "longitude latitude time", + "out_name": "litemptop", + "type": "real", + "positive": "", + "spatial_shape": "XYA-na", + "temporal_shape": "time-intv", + "cmip6_table": "IyrAnt", + "physical_parameter_name": "litemptop", + "variableRootDD": "litemptop", + "branding_label": "tavg-u-hxy-is", + "branded_variable_name": "litemptop_tavg-u-hxy-is", + "region": "ATA", + "cmip6_compound_name": "IyrAnt.litemptop", + "cmip7_compound_name": "landIce.litemptop.tavg-u-hxy-is.yr.ATA", + "uid": "d5b43d14-c78d-11e6-9b25-5404a60d96b5" + }, + "landIce.litemptop.tavg-u-hxy-is.yr.GRL": { + "frequency": "yr", + "modeling_realm": "landIce", + "standard_name": "temperature_at_top_of_ice_sheet_model", + "units": "K", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacellg", + "long_name": "Temperature at Top of Ice Sheet Model", + "comment": "quantity averaged over ice sheet only, to avoid contamination from other surfaces (eg: permafrost)", + "dimensions": "longitude latitude time", + "out_name": "litemptop", + "type": "real", + "positive": "", + "spatial_shape": "XYG-na", + "temporal_shape": "time-intv", + "cmip6_table": "IyrGre", + "physical_parameter_name": "litemptop", + "variableRootDD": "litemptop", + "branding_label": "tavg-u-hxy-is", + "branded_variable_name": "litemptop_tavg-u-hxy-is", + "region": "GRL", + "cmip6_compound_name": "IyrGre.litemptop", + "cmip7_compound_name": "landIce.litemptop.tavg-u-hxy-is.yr.GRL", + "uid": "d5b3a606-c78d-11e6-9b25-5404a60d96b5" + }, + "landIce.lithk.tavg-u-hxy-is.yr.ATA": { + "frequency": "yr", + "modeling_realm": "landIce", + "standard_name": "land_ice_thickness", + "units": "m", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacellg", + "long_name": "Ice Sheet Thickness", + "comment": "This is needed in case ice sheet thickness changes in time", + "dimensions": "longitude latitude time", + "out_name": "lithk", + "type": "real", + "positive": "", + "spatial_shape": "XYA-na", + "temporal_shape": "time-intv", + "cmip6_table": "IyrAnt", + "physical_parameter_name": "lithk", + "variableRootDD": "lithk", + "branding_label": "tavg-u-hxy-is", + "branded_variable_name": "lithk_tavg-u-hxy-is", + "region": "ATA", + "cmip6_compound_name": "IyrAnt.lithk", + "cmip7_compound_name": "landIce.lithk.tavg-u-hxy-is.yr.ATA", + "uid": "d5b43076-c78d-11e6-9b25-5404a60d96b5" + }, + "landIce.lithk.tavg-u-hxy-is.yr.GRL": { + "frequency": "yr", + "modeling_realm": "landIce", + "standard_name": "land_ice_thickness", + "units": "m", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacellg", + "long_name": "Ice Sheet Thickness", + "comment": "This is needed in case ice sheet thickness changes in time", + "dimensions": "longitude latitude time", + "out_name": "lithk", + "type": "real", + "positive": "", + "spatial_shape": "XYG-na", + "temporal_shape": "time-intv", + "cmip6_table": "IyrGre", + "physical_parameter_name": "lithk", + "variableRootDD": "lithk", + "branding_label": "tavg-u-hxy-is", + "branded_variable_name": "lithk_tavg-u-hxy-is", + "region": "GRL", + "cmip6_compound_name": "IyrGre.lithk", + "cmip7_compound_name": "landIce.lithk.tavg-u-hxy-is.yr.GRL", + "uid": "d5b3990e-c78d-11e6-9b25-5404a60d96b5" + }, + "landIce.lithk.ti-u-hxy-is.fx.ATA": { + "frequency": "fx", + "modeling_realm": "landIce", + "standard_name": "land_ice_thickness", + "units": "m", + "cell_methods": "area: mean where ice_sheet", + "cell_measures": "area: areacellg", + "long_name": "Ice Sheet Thickness", + "comment": "The thickness of the ice sheet", + "dimensions": "longitude latitude", + "out_name": "lithk", + "type": "real", + "positive": "", + "spatial_shape": "XYA-na", + "temporal_shape": "None", + "cmip6_table": "IfxAnt", + "physical_parameter_name": "lithk", + "variableRootDD": "lithk", + "branding_label": "ti-u-hxy-is", + "branded_variable_name": "lithk_ti-u-hxy-is", + "region": "ATA", + "cmip6_compound_name": "IfxAnt.lithk", + "cmip7_compound_name": "landIce.lithk.ti-u-hxy-is.fx.ATA", + "uid": "d5b37ca8-c78d-11e6-9b25-5404a60d96b5" + }, + "landIce.lithk.ti-u-hxy-is.fx.GRL": { + "frequency": "fx", + "modeling_realm": "landIce", + "standard_name": "land_ice_thickness", + "units": "m", + "cell_methods": "area: mean where ice_sheet", + "cell_measures": "area: areacellg", + "long_name": "Ice Sheet Thickness", + "comment": "The thickness of the ice sheet", + "dimensions": "longitude latitude", + "out_name": "lithk", + "type": "real", + "positive": "", + "spatial_shape": "XYG-na", + "temporal_shape": "None", + "cmip6_table": "IfxGre", + "physical_parameter_name": "lithk", + "variableRootDD": "lithk", + "branding_label": "ti-u-hxy-is", + "branded_variable_name": "lithk_ti-u-hxy-is", + "region": "GRL", + "cmip6_compound_name": "IfxGre.lithk", + "cmip7_compound_name": "landIce.lithk.ti-u-hxy-is.fx.GRL", + "uid": "d5b36a2e-c78d-11e6-9b25-5404a60d96b5" + }, + "landIce.lithk.ti-u-hxy-u.fx.GLB": { + "frequency": "fx", + "modeling_realm": "landIce", + "standard_name": "land_ice_thickness", + "units": "m", + "cell_methods": "area: mean", + "cell_measures": "area: areacella", + "long_name": "Ice sheet thickness", + "comment": "This variable identifies the thickness of a prescribed ice sheet. This information is relevant to better understand how different models treat ice. For models where an ice sheet is just orography + an ice sheet mask, the value should be set to zero. For models that explicitly resolve an ice sheet thickness, the thickness of the ice sheet should be provided.", + "dimensions": "longitude latitude", + "out_name": "lithk", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "None", + "cmip6_table": "fx", + "physical_parameter_name": "lithk", + "variableRootDD": "lithk", + "branding_label": "ti-u-hxy-u", + "branded_variable_name": "lithk_ti-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "fx.lithk", + "cmip7_compound_name": "landIce.lithk.ti-u-hxy-u.fx.GLB", + "uid": "83bbfb97-7f07-11ef-9308-b1dd71e64bec" + }, + "landIce.lwsnl.tavg-u-hxy-lnd.day.GLB": { + "frequency": "day", + "modeling_realm": "landIce", + "standard_name": "liquid_water_content_of_surface_snow", + "units": "kg m-2", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Liquid Water Content of Snow Layer", + "comment": "liquid_water_content_of_snow_layer", + "dimensions": "longitude latitude time", + "out_name": "lwsnl", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Eday", + "physical_parameter_name": "lwsnl", + "variableRootDD": "lwsnl", + "branding_label": "tavg-u-hxy-lnd", + "branded_variable_name": "lwsnl_tavg-u-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "Eday.lwsnl", + "cmip7_compound_name": "landIce.lwsnl.tavg-u-hxy-lnd.day.GLB", + "uid": "d228925a-4a9f-11e6-b84e-ac72891c3257" + }, + "landIce.lwsnl.tavg-u-hxy-lnd.mon.GLB": { + "frequency": "mon", + "modeling_realm": "landIce", + "standard_name": "liquid_water_content_of_surface_snow", + "units": "kg m-2", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Liquid Water Content of Snow Layer", + "comment": "where land over land: this is computed as the total mass of liquid water contained interstitially within the snow layer of the land portion of a grid cell divided by the area of the land portion of the cell.", + "dimensions": "longitude latitude time", + "out_name": "lwsnl", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "LImon", + "physical_parameter_name": "lwsnl", + "variableRootDD": "lwsnl", + "branding_label": "tavg-u-hxy-lnd", + "branded_variable_name": "lwsnl_tavg-u-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "LImon.lwsnl", + "cmip7_compound_name": "landIce.lwsnl.tavg-u-hxy-lnd.mon.GLB", + "uid": "bab0f1a2-e5dd-11e5-8482-ac72891c3257" + }, + "landIce.modelcellareai.tavg-u-hxy-u.yr.ATA": { + "frequency": "yr", + "modeling_realm": "landIce", + "standard_name": "cell_area", + "units": "m2", + "cell_methods": "area: sum time: mean", + "cell_measures": "area: areacellg", + "long_name": "The Cell Area of the Ice Sheet Model", + "comment": "When interpolated to a regular grid, it should be interpolated (not summed) with a conservative scheme to preserve total area", + "dimensions": "longitude latitude time", + "out_name": "modelCellAreai", + "type": "real", + "positive": "", + "spatial_shape": "XYA-na", + "temporal_shape": "time-intv", + "cmip6_table": "IyrAnt", + "physical_parameter_name": "modelCellAreai", + "variableRootDD": "modelcellareai", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "modelcellareai_tavg-u-hxy-u", + "region": "ATA", + "cmip6_compound_name": "IyrAnt.modelCellAreai", + "cmip7_compound_name": "landIce.modelcellareai.tavg-u-hxy-u.yr.ATA", + "uid": "d5b43544-c78d-11e6-9b25-5404a60d96b5" + }, + "landIce.modelcellareai.tavg-u-hxy-u.yr.GRL": { + "frequency": "yr", + "modeling_realm": "landIce", + "standard_name": "cell_area", + "units": "m2", + "cell_methods": "area: sum time: mean", + "cell_measures": "area: areacellg", + "long_name": "The Cell Area of the Ice Sheet Model", + "comment": "When interpolated to a regular grid, it should be interpolated (not summed) with a conservative scheme to preserve total area", + "dimensions": "longitude latitude time", + "out_name": "modelCellAreai", + "type": "real", + "positive": "", + "spatial_shape": "XYG-na", + "temporal_shape": "time-intv", + "cmip6_table": "IyrGre", + "physical_parameter_name": "modelCellAreai", + "variableRootDD": "modelcellareai", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "modelcellareai_tavg-u-hxy-u", + "region": "GRL", + "cmip6_compound_name": "IyrGre.modelCellAreai", + "cmip7_compound_name": "landIce.modelcellareai.tavg-u-hxy-u.yr.GRL", + "uid": "d5b39e54-c78d-11e6-9b25-5404a60d96b5" + }, + "landIce.mrfso.tavg-u-hxy-lnd.mon.GLB": { + "frequency": "mon", + "modeling_realm": "landIce", + "standard_name": "soil_frozen_water_content", + "units": "kg m-2", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Soil Frozen Water Content", + "comment": "the mass (summed over all all layers) of frozen water.", + "dimensions": "longitude latitude time", + "out_name": "mrfso", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Lmon", + "physical_parameter_name": "mrfso", + "variableRootDD": "mrfso", + "branding_label": "tavg-u-hxy-lnd", + "branded_variable_name": "mrfso_tavg-u-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "Lmon.mrfso", + "cmip7_compound_name": "landIce.mrfso.tavg-u-hxy-lnd.mon.GLB", + "uid": "bab1688a-e5dd-11e5-8482-ac72891c3257" + }, + "landIce.mrro.tavg-u-hxy-is.mon.GLB": { + "frequency": "mon", + "modeling_realm": "landIce", + "standard_name": "runoff_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacella", + "long_name": "Ice Sheet Total Runoff", + "comment": "quantity averaged over ice_sheet (meaning grounded ice sheet and floating ice shelf) only, to avoid contamination from other surfaces (eg: permafrost)", + "dimensions": "longitude latitude time", + "out_name": "mrroIs", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "LImon", + "physical_parameter_name": "mrroIs", + "variableRootDD": "mrro", + "branding_label": "tavg-u-hxy-is", + "branded_variable_name": "mrro_tavg-u-hxy-is", + "region": "GLB", + "cmip6_compound_name": "LImon.mrroIs", + "cmip7_compound_name": "landIce.mrro.tavg-u-hxy-is.mon.GLB", + "uid": "132b3a2e-be44-11e6-9e13-f9e3356200b3" + }, + "landIce.mrroLi.tavg-u-hxy-is.mon.ATA": { + "frequency": "mon", + "modeling_realm": "landIce", + "standard_name": "land_ice_runoff_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacellg", + "long_name": "Land Ice Runoff Flux", + "comment": "Runoff flux over land ice is the difference between any available liquid water in the snowpack less any refreezing. Computed as the sum of rainfall and melt of snow or ice less any refreezing or water retained in the snowpack", + "dimensions": "longitude latitude time", + "out_name": "mrroLi", + "type": "real", + "positive": "", + "spatial_shape": "XYA-na", + "temporal_shape": "time-intv", + "cmip6_table": "ImonAnt", + "physical_parameter_name": "mrroLi", + "variableRootDD": "mrroLi", + "branding_label": "tavg-u-hxy-is", + "branded_variable_name": "mrroLi_tavg-u-hxy-is", + "region": "ATA", + "cmip6_compound_name": "ImonAnt.mrroLi", + "cmip7_compound_name": "landIce.mrroLi.tavg-u-hxy-is.mon.ATA", + "uid": "d5b32a1e-c78d-11e6-9b25-5404a60d96b5" + }, + "landIce.mrroLi.tavg-u-hxy-is.mon.GRL": { + "frequency": "mon", + "modeling_realm": "landIce", + "standard_name": "land_ice_runoff_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacellg", + "long_name": "Land Ice Runoff Flux", + "comment": "Runoff flux over land ice is the difference between any available liquid water in the snowpack less any refreezing. Computed as the sum of rainfall and melt of snow or ice less any refreezing or water retained in the snowpack", + "dimensions": "longitude latitude time", + "out_name": "mrroLi", + "type": "real", + "positive": "", + "spatial_shape": "XYG-na", + "temporal_shape": "time-intv", + "cmip6_table": "ImonGre", + "physical_parameter_name": "mrroLi", + "variableRootDD": "mrroLi", + "branding_label": "tavg-u-hxy-is", + "branded_variable_name": "mrroLi_tavg-u-hxy-is", + "region": "GRL", + "cmip6_compound_name": "ImonGre.mrroLi", + "cmip7_compound_name": "landIce.mrroLi.tavg-u-hxy-is.mon.GRL", + "uid": "d5b2b2dc-c78d-11e6-9b25-5404a60d96b5" + }, + "landIce.orog.tavg-u-hxy-is.mon.GLB": { + "frequency": "mon", + "modeling_realm": "landIce", + "standard_name": "surface_altitude", + "units": "m", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacella", + "long_name": "Ice Sheet Surface Altitude", + "comment": "quantity averaged over ice_sheet (meaning grounded ice sheet and floating ice shelf) only, to avoid contamination from other surfaces (eg: permafrost)", + "dimensions": "longitude latitude time", + "out_name": "orogIs", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "LImon", + "physical_parameter_name": "orogIs", + "variableRootDD": "orog", + "branding_label": "tavg-u-hxy-is", + "branded_variable_name": "orog_tavg-u-hxy-is", + "region": "GLB", + "cmip6_compound_name": "LImon.orogIs", + "cmip7_compound_name": "landIce.orog.tavg-u-hxy-is.mon.GLB", + "uid": "81210f1c-bf17-11e6-b0d8-ac72891c3257" + }, + "landIce.pflw.tavg-u-hxy-lnd.day.GLB": { + "frequency": "day", + "modeling_realm": "landIce", + "standard_name": "liquid_water_content_of_permafrost_layer", + "units": "kg m-2", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Liquid Water Content of Permafrost Layer", + "comment": "liquid_water_content_of_permafrost_layer", + "dimensions": "longitude latitude time", + "out_name": "pflw", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Eday", + "physical_parameter_name": "pflw", + "variableRootDD": "pflw", + "branding_label": "tavg-u-hxy-lnd", + "branded_variable_name": "pflw_tavg-u-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "Eday.pflw", + "cmip7_compound_name": "landIce.pflw.tavg-u-hxy-lnd.day.GLB", + "uid": "d228ee4e-4a9f-11e6-b84e-ac72891c3257" + }, + "landIce.pflw.tavg-u-hxy-lnd.mon.GLB": { + "frequency": "mon", + "modeling_realm": "landIce", + "standard_name": "liquid_water_content_of_permafrost_layer", + "units": "kg m-2", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Liquid Water Content of Permafrost Layer", + "comment": "\"where land over land\", i.e., this is the total mass of liquid water contained within the permafrost layer within the land portion of a grid cell divided by the area of the land portion of the cell.", + "dimensions": "longitude latitude time", + "out_name": "pflw", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "LImon", + "physical_parameter_name": "pflw", + "variableRootDD": "pflw", + "branding_label": "tavg-u-hxy-lnd", + "branded_variable_name": "pflw_tavg-u-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "LImon.pflw", + "cmip7_compound_name": "landIce.pflw.tavg-u-hxy-lnd.mon.GLB", + "uid": "bab323d2-e5dd-11e5-8482-ac72891c3257" + }, + "landIce.prra.tavg-u-hxy-is.mon.GLB": { + "frequency": "mon", + "modeling_realm": "landIce", + "standard_name": "rainfall_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacella", + "long_name": "Ice Sheet Rainfall Rate", + "comment": "quantity averaged over ice_sheet (meaning grounded ice sheet and floating ice shelf) only, to avoid contamination from other surfaces (eg: permafrost)", + "dimensions": "longitude latitude time", + "out_name": "prraIs", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "LImon", + "physical_parameter_name": "prraIs", + "variableRootDD": "prra", + "branding_label": "tavg-u-hxy-is", + "branded_variable_name": "prra_tavg-u-hxy-is", + "region": "GLB", + "cmip6_compound_name": "LImon.prraIs", + "cmip7_compound_name": "landIce.prra.tavg-u-hxy-is.mon.GLB", + "uid": "8120d9de-bf17-11e6-b0d8-ac72891c3257" + }, + "landIce.prsn.tavg-u-hxy-is.mon.GLB": { + "frequency": "mon", + "modeling_realm": "landIce", + "standard_name": "snowfall_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacella", + "long_name": "Ice Sheet Snowfall Flux", + "comment": "quantity averaged over ice_sheet (meaning grounded ice sheet and floating ice shelf) only, to avoid contamination from other surfaces (eg: permafrost)", + "dimensions": "longitude latitude time", + "out_name": "prsnIs", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "LImon", + "physical_parameter_name": "prsnIs", + "variableRootDD": "prsn", + "branding_label": "tavg-u-hxy-is", + "branded_variable_name": "prsn_tavg-u-hxy-is", + "region": "GLB", + "cmip6_compound_name": "LImon.prsnIs", + "cmip7_compound_name": "landIce.prsn.tavg-u-hxy-is.mon.GLB", + "uid": "8120d4f2-bf17-11e6-b0d8-ac72891c3257" + }, + "landIce.rlds.tavg-u-hxy-is.mon.GLB": { + "frequency": "mon", + "modeling_realm": "landIce", + "standard_name": "surface_downwelling_longwave_flux_in_air", + "units": "W m-2", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacella", + "long_name": "Ice Sheet Surface Downwelling Longwave Radiation", + "comment": "quantity averaged over ice_sheet (meaning grounded ice sheet and floating ice shelf) only, to avoid contamination from other surfaces (eg: permafrost)", + "dimensions": "longitude latitude time", + "out_name": "rldsIs", + "type": "real", + "positive": "down", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "LImon", + "physical_parameter_name": "rldsIs", + "variableRootDD": "rlds", + "branding_label": "tavg-u-hxy-is", + "branded_variable_name": "rlds_tavg-u-hxy-is", + "region": "GLB", + "cmip6_compound_name": "LImon.rldsIs", + "cmip7_compound_name": "landIce.rlds.tavg-u-hxy-is.mon.GLB", + "uid": "81212830-bf17-11e6-b0d8-ac72891c3257" + }, + "landIce.rlus.tavg-u-hxy-is.mon.GLB": { + "frequency": "mon", + "modeling_realm": "landIce", + "standard_name": "surface_upwelling_longwave_flux_in_air", + "units": "W m-2", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacella", + "long_name": "Ice Sheet Surface Upwelling Longwave Radiation", + "comment": "quantity averaged over ice_sheet (meaning grounded ice sheet and floating ice shelf) only, to avoid contamination from other surfaces (eg: permafrost)", + "dimensions": "longitude latitude time", + "out_name": "rlusIs", + "type": "real", + "positive": "up", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "LImon", + "physical_parameter_name": "rlusIs", + "variableRootDD": "rlus", + "branding_label": "tavg-u-hxy-is", + "branded_variable_name": "rlus_tavg-u-hxy-is", + "region": "GLB", + "cmip6_compound_name": "LImon.rlusIs", + "cmip7_compound_name": "landIce.rlus.tavg-u-hxy-is.mon.GLB", + "uid": "81212d26-bf17-11e6-b0d8-ac72891c3257" + }, + "landIce.rsds.tavg-u-hxy-is.mon.GLB": { + "frequency": "mon", + "modeling_realm": "landIce", + "standard_name": "surface_downwelling_shortwave_flux_in_air", + "units": "W m-2", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacella", + "long_name": "Ice Sheet Surface Downwelling Shortwave Radiation", + "comment": "quantity averaged over ice_sheet (meaning grounded ice sheet and floating ice shelf) only, to avoid contamination from other surfaces (eg: permafrost)", + "dimensions": "longitude latitude time", + "out_name": "rsdsIs", + "type": "real", + "positive": "down", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "LImon", + "physical_parameter_name": "rsdsIs", + "variableRootDD": "rsds", + "branding_label": "tavg-u-hxy-is", + "branded_variable_name": "rsds_tavg-u-hxy-is", + "region": "GLB", + "cmip6_compound_name": "LImon.rsdsIs", + "cmip7_compound_name": "landIce.rsds.tavg-u-hxy-is.mon.GLB", + "uid": "81211d54-bf17-11e6-b0d8-ac72891c3257" + }, + "landIce.rsus.tavg-u-hxy-is.mon.GLB": { + "frequency": "mon", + "modeling_realm": "landIce", + "standard_name": "surface_upwelling_shortwave_flux_in_air", + "units": "W m-2", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacella", + "long_name": "Ice Sheet Surface Upwelling Shortwave Radiation", + "comment": "quantity averaged over ice_sheet (meaning grounded ice sheet and floating ice shelf) only, to avoid contamination from other surfaces (eg: permafrost)", + "dimensions": "longitude latitude time", + "out_name": "rsusIs", + "type": "real", + "positive": "up", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "LImon", + "physical_parameter_name": "rsusIs", + "variableRootDD": "rsus", + "branding_label": "tavg-u-hxy-is", + "branded_variable_name": "rsus_tavg-u-hxy-is", + "region": "GLB", + "cmip6_compound_name": "LImon.rsusIs", + "cmip7_compound_name": "landIce.rsus.tavg-u-hxy-is.mon.GLB", + "uid": "81212218-bf17-11e6-b0d8-ac72891c3257" + }, + "landIce.sbl.tavg-u-hxy-is.mon.ATA": { + "frequency": "mon", + "modeling_realm": "landIce", + "standard_name": "tendency_of_atmosphere_mass_content_of_water_vapor_due_to_sublimation_of_surface_snow_and_ice", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacellg", + "long_name": "Surface Snow and Ice Sublimation Flux", + "comment": "The snow and ice sublimation flux is the loss of snow and ice mass per unit area from the surface resulting from their direct conversion to water vapor that enters the atmosphere.", + "dimensions": "longitude latitude time", + "out_name": "sbl", + "type": "real", + "positive": "", + "spatial_shape": "XYA-na", + "temporal_shape": "time-intv", + "cmip6_table": "ImonAnt", + "physical_parameter_name": "sbl", + "variableRootDD": "sbl", + "branding_label": "tavg-u-hxy-is", + "branded_variable_name": "sbl_tavg-u-hxy-is", + "region": "ATA", + "cmip6_compound_name": "ImonAnt.sbl", + "cmip7_compound_name": "landIce.sbl.tavg-u-hxy-is.mon.ATA", + "uid": "d5b31722-c78d-11e6-9b25-5404a60d96b5" + }, + "landIce.sbl.tavg-u-hxy-is.mon.GLB": { + "frequency": "mon", + "modeling_realm": "landIce", + "standard_name": "tendency_of_atmosphere_mass_content_of_water_vapor_due_to_sublimation_of_surface_snow_and_ice", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacella", + "long_name": "Ice Sheet Surface Snow and Ice Sublimation Flux", + "comment": "quantity averaged over ice_sheet (meaning grounded ice sheet and floating ice shelf) only, to avoid contamination from other surfaces (eg: permafrost)", + "dimensions": "longitude latitude time", + "out_name": "sblIs", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "LImon", + "physical_parameter_name": "sblIs", + "variableRootDD": "sbl", + "branding_label": "tavg-u-hxy-is", + "branded_variable_name": "sbl_tavg-u-hxy-is", + "region": "GLB", + "cmip6_compound_name": "LImon.sblIs", + "cmip7_compound_name": "landIce.sbl.tavg-u-hxy-is.mon.GLB", + "uid": "132b2aca-be44-11e6-9e13-f9e3356200b3" + }, + "landIce.sbl.tavg-u-hxy-is.mon.GRL": { + "frequency": "mon", + "modeling_realm": "landIce", + "standard_name": "tendency_of_atmosphere_mass_content_of_water_vapor_due_to_sublimation_of_surface_snow_and_ice", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacellg", + "long_name": "Surface Snow and Ice Sublimation Flux", + "comment": "The snow and ice sublimation flux is the loss of snow and ice mass per unit area from the surface resulting from their direct conversion to water vapor that enters the atmosphere.", + "dimensions": "longitude latitude time", + "out_name": "sbl", + "type": "real", + "positive": "", + "spatial_shape": "XYG-na", + "temporal_shape": "time-intv", + "cmip6_table": "ImonGre", + "physical_parameter_name": "sbl", + "variableRootDD": "sbl", + "branding_label": "tavg-u-hxy-is", + "branded_variable_name": "sbl_tavg-u-hxy-is", + "region": "GRL", + "cmip6_compound_name": "ImonGre.sbl", + "cmip7_compound_name": "landIce.sbl.tavg-u-hxy-is.mon.GRL", + "uid": "d5b2a0a8-c78d-11e6-9b25-5404a60d96b5" + }, + "landIce.sbl.tavg-u-hxy-lnd.mon.GLB": { + "frequency": "mon", + "modeling_realm": "landIce", + "standard_name": "tendency_of_atmosphere_mass_content_of_water_vapor_due_to_sublimation_of_surface_snow_and_ice", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Surface Snow and Ice Sublimation Flux", + "comment": "The snow and ice sublimation flux is the loss of snow and ice mass resulting from their conversion to water vapor. Computed as the total sublimation on the land portion of the grid cell divided by the land area in the grid cell; reported as missing for snow-free land regions; reported as missing where the land fraction is 0.", + "dimensions": "longitude latitude time", + "out_name": "sbl", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "LImon", + "physical_parameter_name": "sbl", + "variableRootDD": "sbl", + "branding_label": "tavg-u-hxy-lnd", + "branded_variable_name": "sbl_tavg-u-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "LImon.sbl", + "cmip7_compound_name": "landIce.sbl.tavg-u-hxy-lnd.mon.GLB", + "uid": "bab6bba0-e5dd-11e5-8482-ac72891c3257" + }, + "landIce.sbl.tavg-u-hxy-u.day.GLB": { + "frequency": "day", + "modeling_realm": "landIce", + "standard_name": "tendency_of_atmosphere_mass_content_of_water_vapor_due_to_sublimation_of_surface_snow_and_ice", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Surface Snow and Ice Sublimation Flux", + "comment": "surface upward flux of water vapor due to sublimation of surface snow and ice", + "dimensions": "longitude latitude time", + "out_name": "sbl", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Eday", + "physical_parameter_name": "sbl", + "variableRootDD": "sbl", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "sbl_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "Eday.sbl", + "cmip7_compound_name": "landIce.sbl.tavg-u-hxy-u.day.GLB", + "uid": "d2282ebe-4a9f-11e6-b84e-ac72891c3257" + }, + "landIce.sbl.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "landIce", + "standard_name": "tendency_of_atmosphere_mass_content_of_water_vapor_due_to_sublimation_of_surface_snow_and_ice", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Surface Snow and Ice Sublimation Flux", + "comment": "The snow and ice sublimation flux is the loss of snow and ice mass from the surface resulting from their conversion to water vapor that enters the atmosphere.", + "dimensions": "longitude latitude time", + "out_name": "sbl", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Amon", + "physical_parameter_name": "sbl", + "variableRootDD": "sbl", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "sbl_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "Amon.sbl", + "cmip7_compound_name": "landIce.sbl.tavg-u-hxy-u.mon.GLB", + "uid": "bab6b948-e5dd-11e5-8482-ac72891c3257" + }, + "landIce.sbl.tpt-u-hs-u.subhr.GLB": { + "frequency": "subhr", + "modeling_realm": "landIce", + "standard_name": "tendency_of_atmosphere_mass_content_of_water_vapor_due_to_sublimation_of_surface_snow_and_ice", + "units": "kg m-2 s-1", + "cell_methods": "area: point time: point", + "cell_measures": "", + "long_name": "Surface Snow and Ice Sublimation Flux", + "comment": "The snow and ice sublimation flux is the loss of snow and ice mass from the surface resulting from their conversion to water vapor that enters the atmosphere.", + "dimensions": "site time1", + "out_name": "sbl", + "type": "real", + "positive": "", + "spatial_shape": "S-na", + "temporal_shape": "time-point", + "cmip6_table": "CFsubhr", + "physical_parameter_name": "sbl", + "variableRootDD": "sbl", + "branding_label": "tpt-u-hs-u", + "branded_variable_name": "sbl_tpt-u-hs-u", + "region": "GLB", + "cmip6_compound_name": "CFsubhr.sbl", + "cmip7_compound_name": "landIce.sbl.tpt-u-hs-u.subhr.GLB", + "uid": "80082b5a-f906-11e6-a176-5404a60d96b5" + }, + "landIce.sftflf.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "landIce", + "standard_name": "floating_ice_shelf_area_fraction", + "units": "%", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Floating Ice Shelf Area Percentage", + "comment": "Percentage of grid cell covered by floating ice shelf, the component of the ice sheet that is flowing over sea water", + "dimensions": "longitude latitude time", + "out_name": "sftflf", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "LImon", + "physical_parameter_name": "sftflf", + "variableRootDD": "sftflf", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "sftflf_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "LImon.sftflf", + "cmip7_compound_name": "landIce.sftflf.tavg-u-hxy-u.mon.GLB", + "uid": "8bbb1a70-4a5b-11e6-9cd2-ac72891c3257" + }, + "landIce.sftflf.tavg-u-hxy-u.yr.ATA": { + "frequency": "yr", + "modeling_realm": "landIce", + "standard_name": "floating_ice_shelf_area_fraction", + "units": "%", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacellg", + "long_name": "Floating Ice Shelf Area Percentage", + "comment": "This is needed in case the floating ice sheet area changes in time (NO grounded ice sheet)", + "dimensions": "longitude latitude time", + "out_name": "sftflf", + "type": "real", + "positive": "", + "spatial_shape": "XYA-na", + "temporal_shape": "time-intv", + "cmip6_table": "IyrAnt", + "physical_parameter_name": "sftflf", + "variableRootDD": "sftflf", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "sftflf_tavg-u-hxy-u", + "region": "ATA", + "cmip6_compound_name": "IyrAnt.sftflf", + "cmip7_compound_name": "landIce.sftflf.tavg-u-hxy-u.yr.ATA", + "uid": "d5b46780-c78d-11e6-9b25-5404a60d96b5" + }, + "landIce.sftflf.tavg-u-hxy-u.yr.GRL": { + "frequency": "yr", + "modeling_realm": "landIce", + "standard_name": "floating_ice_shelf_area_fraction", + "units": "%", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacellg", + "long_name": "Floating Ice Shelf Area Percentage", + "comment": "This is needed in case the floating ice sheet area changes in time (NO grounded ice sheet)", + "dimensions": "longitude latitude time", + "out_name": "sftflf", + "type": "real", + "positive": "", + "spatial_shape": "XYG-na", + "temporal_shape": "time-intv", + "cmip6_table": "IyrGre", + "physical_parameter_name": "sftflf", + "variableRootDD": "sftflf", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "sftflf_tavg-u-hxy-u", + "region": "GRL", + "cmip6_compound_name": "IyrGre.sftflf", + "cmip7_compound_name": "landIce.sftflf.tavg-u-hxy-u.yr.GRL", + "uid": "d5b3d068-c78d-11e6-9b25-5404a60d96b5" + }, + "landIce.sftflf.ti-u-hxy-u.fx.GLB": { + "frequency": "fx", + "modeling_realm": "landIce", + "standard_name": "floating_ice_shelf_area_fraction", + "units": "%", + "cell_methods": "area: mean", + "cell_measures": "area: areacella", + "long_name": "Floating Ice Shelf Area Percentage", + "comment": "This is needed to distinguish between grounded glaciated ice (grounded = ice sheet and glacier) and ice shelves (floating over sea water), since land_ice is by definition ice sheet, glacier and ice shelves", + "dimensions": "longitude latitude", + "out_name": "sftflf", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "None", + "cmip6_table": "Efx", + "physical_parameter_name": "sftflf", + "variableRootDD": "sftflf", + "branding_label": "ti-u-hxy-u", + "branded_variable_name": "sftflf_ti-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "Efx.sftflf", + "cmip7_compound_name": "landIce.sftflf.ti-u-hxy-u.fx.GLB", + "uid": "b7f3360a-7c00-11e6-bcdf-ac72891c3257" + }, + "landIce.sftgrf.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "landIce", + "standard_name": "grounded_ice_sheet_area_fraction", + "units": "%", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Grounded Ice Sheet Area Percentage", + "comment": "Percentage of grid cell covered by grounded ice sheet", + "dimensions": "longitude latitude time", + "out_name": "sftgrf", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "LImon", + "physical_parameter_name": "sftgrf", + "variableRootDD": "sftgrf", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "sftgrf_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "LImon.sftgrf", + "cmip7_compound_name": "landIce.sftgrf.tavg-u-hxy-u.mon.GLB", + "uid": "8bbb1520-4a5b-11e6-9cd2-ac72891c3257" + }, + "landIce.sftgrf.tavg-u-hxy-u.yr.ATA": { + "frequency": "yr", + "modeling_realm": "landIce", + "standard_name": "grounded_ice_sheet_area_fraction", + "units": "%", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacellg", + "long_name": "Grounded Ice Sheet Area Percentage", + "comment": "This is needed in case the grounded ice sheet area changes in time (NO floating ice shelf)", + "dimensions": "longitude latitude time", + "out_name": "sftgrf", + "type": "real", + "positive": "", + "spatial_shape": "XYA-na", + "temporal_shape": "time-intv", + "cmip6_table": "IyrAnt", + "physical_parameter_name": "sftgrf", + "variableRootDD": "sftgrf", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "sftgrf_tavg-u-hxy-u", + "region": "ATA", + "cmip6_compound_name": "IyrAnt.sftgrf", + "cmip7_compound_name": "landIce.sftgrf.tavg-u-hxy-u.yr.ATA", + "uid": "d5b463c0-c78d-11e6-9b25-5404a60d96b5" + }, + "landIce.sftgrf.tavg-u-hxy-u.yr.GRL": { + "frequency": "yr", + "modeling_realm": "landIce", + "standard_name": "grounded_ice_sheet_area_fraction", + "units": "%", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacellg", + "long_name": "Grounded Ice Sheet Area Percentage", + "comment": "This is needed in case the grounded ice sheet area changes in time (NO floating ice shelf)", + "dimensions": "longitude latitude time", + "out_name": "sftgrf", + "type": "real", + "positive": "", + "spatial_shape": "XYG-na", + "temporal_shape": "time-intv", + "cmip6_table": "IyrGre", + "physical_parameter_name": "sftgrf", + "variableRootDD": "sftgrf", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "sftgrf_tavg-u-hxy-u", + "region": "GRL", + "cmip6_compound_name": "IyrGre.sftgrf", + "cmip7_compound_name": "landIce.sftgrf.tavg-u-hxy-u.yr.GRL", + "uid": "d5b3cca8-c78d-11e6-9b25-5404a60d96b5" + }, + "landIce.sftgrf.ti-u-hxy-u.fx.GLB": { + "frequency": "fx", + "modeling_realm": "landIce", + "standard_name": "grounded_ice_sheet_area_fraction", + "units": "%", + "cell_methods": "area: mean", + "cell_measures": "area: areacella", + "long_name": "Grounded Ice Sheet Area Percentage", + "comment": "This is needed to distinguish between grounded glaciated ice (grounded = ice sheet and glacier) and ice shelves (floating over sea water), since land_ice is by definition ice sheet, glacier and ice shelves", + "dimensions": "longitude latitude", + "out_name": "sftgrf", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "None", + "cmip6_table": "Efx", + "physical_parameter_name": "sftgrf", + "variableRootDD": "sftgrf", + "branding_label": "ti-u-hxy-u", + "branded_variable_name": "sftgrf_ti-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "Efx.sftgrf", + "cmip7_compound_name": "landIce.sftgrf.ti-u-hxy-u.fx.GLB", + "uid": "b7f330ce-7c00-11e6-bcdf-ac72891c3257" + }, + "landIce.snc.tavg-u-hxy-is.mon.ATA": { + "frequency": "mon", + "modeling_realm": "landIce", + "standard_name": "surface_snow_area_fraction", + "units": "%", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacellg", + "long_name": "Snow Area Percentage", + "comment": "quantity averaged over ice sheet (grounded ice sheet and floating ice shelf) only, to avoid contamination from other surfaces (eg: permafrost)", + "dimensions": "longitude latitude time", + "out_name": "snc", + "type": "real", + "positive": "", + "spatial_shape": "XYA-na", + "temporal_shape": "time-intv", + "cmip6_table": "ImonAnt", + "physical_parameter_name": "snc", + "variableRootDD": "snc", + "branding_label": "tavg-u-hxy-is", + "branded_variable_name": "snc_tavg-u-hxy-is", + "region": "ATA", + "cmip6_compound_name": "ImonAnt.snc", + "cmip7_compound_name": "landIce.snc.tavg-u-hxy-is.mon.ATA", + "uid": "d5b35b06-c78d-11e6-9b25-5404a60d96b5" + }, + "landIce.snc.tavg-u-hxy-is.mon.GLB": { + "frequency": "mon", + "modeling_realm": "landIce", + "standard_name": "surface_snow_area_fraction", + "units": "%", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacella", + "long_name": "Ice Sheet Snow Cover Percentage", + "comment": "quantity averaged over ice_sheet (meaning grounded ice sheet and floating ice shelf) only, to avoid contamination from other surfaces (eg: permafrost)", + "dimensions": "longitude latitude time", + "out_name": "sncIs", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "LImon", + "physical_parameter_name": "sncIs", + "variableRootDD": "snc", + "branding_label": "tavg-u-hxy-is", + "branded_variable_name": "snc_tavg-u-hxy-is", + "region": "GLB", + "cmip6_compound_name": "LImon.sncIs", + "cmip7_compound_name": "landIce.snc.tavg-u-hxy-is.mon.GLB", + "uid": "132b3e66-be44-11e6-9e13-f9e3356200b3" + }, + "landIce.snc.tavg-u-hxy-is.mon.GRL": { + "frequency": "mon", + "modeling_realm": "landIce", + "standard_name": "surface_snow_area_fraction", + "units": "%", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacellg", + "long_name": "Snow Area Percentage", + "comment": "quantity averaged over ice sheet (grounded ice sheet and floating ice shelf) only, to avoid contamination from other surfaces (eg: permafrost)", + "dimensions": "longitude latitude time", + "out_name": "snc", + "type": "real", + "positive": "", + "spatial_shape": "XYG-na", + "temporal_shape": "time-intv", + "cmip6_table": "ImonGre", + "physical_parameter_name": "snc", + "variableRootDD": "snc", + "branding_label": "tavg-u-hxy-is", + "branded_variable_name": "snc_tavg-u-hxy-is", + "region": "GRL", + "cmip6_compound_name": "ImonGre.snc", + "cmip7_compound_name": "landIce.snc.tavg-u-hxy-is.mon.GRL", + "uid": "d5b2e306-c78d-11e6-9b25-5404a60d96b5" + }, + "landIce.snc.tavg-u-hxy-is.yr.ATA": { + "frequency": "yr", + "modeling_realm": "landIce", + "standard_name": "surface_snow_area_fraction", + "units": "%", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacellg", + "long_name": "Snow Area Percentage", + "comment": "quantity averaged over ice sheet only, to avoid contamination from other surfaces (eg: permafrost)", + "dimensions": "longitude latitude time", + "out_name": "snc", + "type": "real", + "positive": "", + "spatial_shape": "XYA-na", + "temporal_shape": "time-intv", + "cmip6_table": "IyrAnt", + "physical_parameter_name": "snc", + "variableRootDD": "snc", + "branding_label": "tavg-u-hxy-is", + "branded_variable_name": "snc_tavg-u-hxy-is", + "region": "ATA", + "cmip6_compound_name": "IyrAnt.snc", + "cmip7_compound_name": "landIce.snc.tavg-u-hxy-is.yr.ATA", + "uid": "d5b45c2c-c78d-11e6-9b25-5404a60d96b5" + }, + "landIce.snc.tavg-u-hxy-is.yr.GRL": { + "frequency": "yr", + "modeling_realm": "landIce", + "standard_name": "surface_snow_area_fraction", + "units": "%", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacellg", + "long_name": "Snow Area Percentage", + "comment": "quantity averaged over ice sheet only, to avoid contamination from other surfaces (eg: permafrost)", + "dimensions": "longitude latitude time", + "out_name": "snc", + "type": "real", + "positive": "", + "spatial_shape": "XYG-na", + "temporal_shape": "time-intv", + "cmip6_table": "IyrGre", + "physical_parameter_name": "snc", + "variableRootDD": "snc", + "branding_label": "tavg-u-hxy-is", + "branded_variable_name": "snc_tavg-u-hxy-is", + "region": "GRL", + "cmip6_compound_name": "IyrGre.snc", + "cmip7_compound_name": "landIce.snc.tavg-u-hxy-is.yr.GRL", + "uid": "d5b3c500-c78d-11e6-9b25-5404a60d96b5" + }, + "landIce.snc.tavg-u-hxy-lnd.day.GLB": { + "frequency": "day", + "modeling_realm": "landIce", + "standard_name": "surface_snow_area_fraction", + "units": "%", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Snow Area Percentage", + "comment": "Percentage of each grid cell that is occupied by snow that rests on land portion of cell.", + "dimensions": "longitude latitude time", + "out_name": "snc", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "day", + "physical_parameter_name": "snc", + "variableRootDD": "snc", + "branding_label": "tavg-u-hxy-lnd", + "branded_variable_name": "snc_tavg-u-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "day.snc", + "cmip7_compound_name": "landIce.snc.tavg-u-hxy-lnd.day.GLB", + "uid": "bab7c75c-e5dd-11e5-8482-ac72891c3257" + }, + "landIce.snc.tavg-u-hxy-lnd.mon.GLB": { + "frequency": "mon", + "modeling_realm": "landIce", + "standard_name": "surface_snow_area_fraction", + "units": "%", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Snow Area Percentage", + "comment": "Fraction of each grid cell that is occupied by snow that rests on land portion of cell.", + "dimensions": "longitude latitude time", + "out_name": "snc", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "LImon", + "physical_parameter_name": "snc", + "variableRootDD": "snc", + "branding_label": "tavg-u-hxy-lnd", + "branded_variable_name": "snc_tavg-u-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "LImon.snc", + "cmip7_compound_name": "landIce.snc.tavg-u-hxy-lnd.mon.GLB", + "uid": "bab7c2d4-e5dd-11e5-8482-ac72891c3257" + }, + "landIce.snd.tavg-u-hxy-lnd.day.GLB": { + "frequency": "day", + "modeling_realm": "landIce", + "standard_name": "surface_snow_thickness", + "units": "m", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Snow Depth", + "comment": "where land over land, this is computed as the mean thickness of snow in the land portion of the grid cell (averaging over the entire land portion, including the snow-free fraction). Reported as 0.0 where the land fraction is 0.", + "dimensions": "longitude latitude time", + "out_name": "snd", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Eday", + "physical_parameter_name": "snd", + "variableRootDD": "snd", + "branding_label": "tavg-u-hxy-lnd", + "branded_variable_name": "snd_tavg-u-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "Eday.snd", + "cmip7_compound_name": "landIce.snd.tavg-u-hxy-lnd.day.GLB", + "uid": "b7ccdf0a-7c00-11e6-bcdf-ac72891c3257" + }, + "landIce.snd.tavg-u-hxy-lnd.mon.GLB": { + "frequency": "mon", + "modeling_realm": "landIce", + "standard_name": "surface_snow_thickness", + "units": "m", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Snow Depth", + "comment": "where land over land, this is computed as the mean thickness of snow in the land portion of the grid cell (averaging over the entire land portion, including the snow-free fraction). Reported as missing where the land fraction is 0.", + "dimensions": "longitude latitude time", + "out_name": "snd", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "LImon", + "physical_parameter_name": "snd", + "variableRootDD": "snd", + "branding_label": "tavg-u-hxy-lnd", + "branded_variable_name": "snd_tavg-u-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "LImon.snd", + "cmip7_compound_name": "landIce.snd.tavg-u-hxy-lnd.mon.GLB", + "uid": "bab7e05c-e5dd-11e5-8482-ac72891c3257" + }, + "landIce.snicem.tavg-u-hxy-is.mon.ATA": { + "frequency": "mon", + "modeling_realm": "landIce", + "standard_name": "surface_snow_and_ice_melt_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacellg", + "long_name": "Surface Snow and Ice Melt Flux", + "comment": "Loss of snow and ice mass resulting from surface melting. Computed as the total surface melt on the land ice portion of the grid cell divided by land ice area in the grid cell.", + "dimensions": "longitude latitude time", + "out_name": "snicem", + "type": "real", + "positive": "", + "spatial_shape": "XYA-na", + "temporal_shape": "time-intv", + "cmip6_table": "ImonAnt", + "physical_parameter_name": "snicem", + "variableRootDD": "snicem", + "branding_label": "tavg-u-hxy-is", + "branded_variable_name": "snicem_tavg-u-hxy-is", + "region": "ATA", + "cmip6_compound_name": "ImonAnt.snicem", + "cmip7_compound_name": "landIce.snicem.tavg-u-hxy-is.mon.ATA", + "uid": "d5b31b3c-c78d-11e6-9b25-5404a60d96b5" + }, + "landIce.snicem.tavg-u-hxy-is.mon.GLB": { + "frequency": "mon", + "modeling_realm": "landIce", + "standard_name": "surface_snow_and_ice_melt_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacella", + "long_name": "Ice Sheet Surface Snow and Ice Melt Flux", + "comment": "quantity averaged over ice_sheet (meaning grounded ice sheet and floating ice shelf) only, to avoid contamination from other surfaces (eg: permafrost)", + "dimensions": "longitude latitude time", + "out_name": "snicemIs", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "LImon", + "physical_parameter_name": "snicemIs", + "variableRootDD": "snicem", + "branding_label": "tavg-u-hxy-is", + "branded_variable_name": "snicem_tavg-u-hxy-is", + "region": "GLB", + "cmip6_compound_name": "LImon.snicemIs", + "cmip7_compound_name": "landIce.snicem.tavg-u-hxy-is.mon.GLB", + "uid": "8120e3a2-bf17-11e6-b0d8-ac72891c3257" + }, + "landIce.snicem.tavg-u-hxy-is.mon.GRL": { + "frequency": "mon", + "modeling_realm": "landIce", + "standard_name": "surface_snow_and_ice_melt_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacellg", + "long_name": "Surface Snow and Ice Melt Flux", + "comment": "Loss of snow and ice mass resulting from surface melting. Computed as the total surface melt on the land ice portion of the grid cell divided by land ice area in the grid cell.", + "dimensions": "longitude latitude time", + "out_name": "snicem", + "type": "real", + "positive": "", + "spatial_shape": "XYG-na", + "temporal_shape": "time-intv", + "cmip6_table": "ImonGre", + "physical_parameter_name": "snicem", + "variableRootDD": "snicem", + "branding_label": "tavg-u-hxy-is", + "branded_variable_name": "snicem_tavg-u-hxy-is", + "region": "GRL", + "cmip6_compound_name": "ImonGre.snicem", + "cmip7_compound_name": "landIce.snicem.tavg-u-hxy-is.mon.GRL", + "uid": "d5b2a454-c78d-11e6-9b25-5404a60d96b5" + }, + "landIce.snm.tavg-u-hxy-is.mon.ATA": { + "frequency": "mon", + "modeling_realm": "landIce", + "standard_name": "surface_snow_melt_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacellg", + "long_name": "Surface Snow Melt", + "comment": "The total surface snow melt rate on the land portion of the grid cell divided by the land area in the grid cell; report as zero for snow-free land regions and missing where there is no land.", + "dimensions": "longitude latitude time", + "out_name": "snm", + "type": "real", + "positive": "", + "spatial_shape": "XYA-na", + "temporal_shape": "time-intv", + "cmip6_table": "ImonAnt", + "physical_parameter_name": "snm", + "variableRootDD": "snm", + "branding_label": "tavg-u-hxy-is", + "branded_variable_name": "snm_tavg-u-hxy-is", + "region": "ATA", + "cmip6_compound_name": "ImonAnt.snm", + "cmip7_compound_name": "landIce.snm.tavg-u-hxy-is.mon.ATA", + "uid": "d5b31f56-c78d-11e6-9b25-5404a60d96b5" + }, + "landIce.snm.tavg-u-hxy-is.mon.GLB": { + "frequency": "mon", + "modeling_realm": "landIce", + "standard_name": "surface_snow_melt_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacella", + "long_name": "Ice Sheet Surface Snow Melt", + "comment": "Loss of snow mass resulting from surface melting. Computed as the surface melt water from snow on the ice sheet portion of the grid cell divided by the ice_sheet area in the grid cell; report as 0.0 for snow-free land_ice regions; report as missing where the land fraction is 0.", + "dimensions": "longitude latitude time", + "out_name": "snmIs", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "LImon", + "physical_parameter_name": "snmIs", + "variableRootDD": "snm", + "branding_label": "tavg-u-hxy-is", + "branded_variable_name": "snm_tavg-u-hxy-is", + "region": "GLB", + "cmip6_compound_name": "LImon.snmIs", + "cmip7_compound_name": "landIce.snm.tavg-u-hxy-is.mon.GLB", + "uid": "132b316e-be44-11e6-9e13-f9e3356200b3" + }, + "landIce.snm.tavg-u-hxy-is.mon.GRL": { + "frequency": "mon", + "modeling_realm": "landIce", + "standard_name": "surface_snow_melt_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacellg", + "long_name": "Surface Snow Melt", + "comment": "The total surface snow melt rate on the land portion of the grid cell divided by the land area in the grid cell; report as zero for snow-free land regions and missing where there is no land.", + "dimensions": "longitude latitude time", + "out_name": "snm", + "type": "real", + "positive": "", + "spatial_shape": "XYG-na", + "temporal_shape": "time-intv", + "cmip6_table": "ImonGre", + "physical_parameter_name": "snm", + "variableRootDD": "snm", + "branding_label": "tavg-u-hxy-is", + "branded_variable_name": "snm_tavg-u-hxy-is", + "region": "GRL", + "cmip6_compound_name": "ImonGre.snm", + "cmip7_compound_name": "landIce.snm.tavg-u-hxy-is.mon.GRL", + "uid": "d5b2a7f6-c78d-11e6-9b25-5404a60d96b5" + }, + "landIce.snm.tavg-u-hxy-lnd.day.GLB": { + "frequency": "day", + "modeling_realm": "landIce", + "standard_name": "surface_snow_melt_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Surface Snow Melt", + "comment": "surface_snow_and_ice_melt_flux", + "dimensions": "longitude latitude time", + "out_name": "snm", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Eday", + "physical_parameter_name": "snm", + "variableRootDD": "snm", + "branding_label": "tavg-u-hxy-lnd", + "branded_variable_name": "snm_tavg-u-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "Eday.snm", + "cmip7_compound_name": "landIce.snm.tavg-u-hxy-lnd.day.GLB", + "uid": "d22848ea-4a9f-11e6-b84e-ac72891c3257" + }, + "landIce.snm.tavg-u-hxy-lnd.mon.GLB": { + "frequency": "mon", + "modeling_realm": "landIce", + "standard_name": "surface_snow_melt_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Surface Snow Melt", + "comment": "Computed as the total surface melt water on the land portion of the grid cell divided by the land area in the grid cell; report as 0.0 for snow-free land regions; report as missing where the land fraction is 0.", + "dimensions": "longitude latitude time", + "out_name": "snm", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "LImon", + "physical_parameter_name": "snm", + "variableRootDD": "snm", + "branding_label": "tavg-u-hxy-lnd", + "branded_variable_name": "snm_tavg-u-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "LImon.snm", + "cmip7_compound_name": "landIce.snm.tavg-u-hxy-lnd.mon.GLB", + "uid": "bab802f8-e5dd-11e5-8482-ac72891c3257" + }, + "landIce.snrefr.tavg-u-hxy-is.mon.ATA": { + "frequency": "mon", + "modeling_realm": "landIce", + "standard_name": "surface_snow_and_ice_refreezing_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacellg", + "long_name": "Surface Snow and Ice Refreeze Flux", + "comment": "Mass flux of surface meltwater which refreezes within the snowpack. Computed as the total refreezing on the land ice portion of the grid cell divided by land ice area in the grid cell.", + "dimensions": "longitude latitude time", + "out_name": "snicefreez", + "type": "real", + "positive": "", + "spatial_shape": "XYA-na", + "temporal_shape": "time-intv", + "cmip6_table": "ImonAnt", + "physical_parameter_name": "snicefreez", + "variableRootDD": "snrefr", + "branding_label": "tavg-u-hxy-is", + "branded_variable_name": "snrefr_tavg-u-hxy-is", + "region": "ATA", + "cmip6_compound_name": "ImonAnt.snicefreez", + "cmip7_compound_name": "landIce.snrefr.tavg-u-hxy-is.mon.ATA", + "uid": "d5b32686-c78d-11e6-9b25-5404a60d96b5" + }, + "landIce.snrefr.tavg-u-hxy-is.mon.GLB": { + "frequency": "mon", + "modeling_realm": "landIce", + "standard_name": "surface_snow_and_ice_refreezing_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacella", + "long_name": "Ice Sheet Surface Snow and Ice Refreeze Flux", + "comment": "quantity averaged over ice_sheet (meaning grounded ice sheet and floating ice shelf) only, to avoid contamination from other surfaces (eg: permafrost)", + "dimensions": "longitude latitude time", + "out_name": "snicefreezIs", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "LImon", + "physical_parameter_name": "snicefreezIs", + "variableRootDD": "snrefr", + "branding_label": "tavg-u-hxy-is", + "branded_variable_name": "snrefr_tavg-u-hxy-is", + "region": "GLB", + "cmip6_compound_name": "LImon.snicefreezIs", + "cmip7_compound_name": "landIce.snrefr.tavg-u-hxy-is.mon.GLB", + "uid": "8120f248-bf17-11e6-b0d8-ac72891c3257" + }, + "landIce.snrefr.tavg-u-hxy-is.mon.GRL": { + "frequency": "mon", + "modeling_realm": "landIce", + "standard_name": "surface_snow_and_ice_refreezing_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacellg", + "long_name": "Surface Snow and Ice Refreeze Flux", + "comment": "Mass flux of surface meltwater which refreezes within the snowpack. Computed as the total refreezing on the land ice portion of the grid cell divided by land ice area in the grid cell.", + "dimensions": "longitude latitude time", + "out_name": "snicefreez", + "type": "real", + "positive": "", + "spatial_shape": "XYG-na", + "temporal_shape": "time-intv", + "cmip6_table": "ImonGre", + "physical_parameter_name": "snicefreez", + "variableRootDD": "snrefr", + "branding_label": "tavg-u-hxy-is", + "branded_variable_name": "snrefr_tavg-u-hxy-is", + "region": "GRL", + "cmip6_compound_name": "ImonGre.snicefreez", + "cmip7_compound_name": "landIce.snrefr.tavg-u-hxy-is.mon.GRL", + "uid": "d5b2af3a-c78d-11e6-9b25-5404a60d96b5" + }, + "landIce.snw.tavg-u-hxy-lnd.day.GLB": { + "frequency": "day", + "modeling_realm": "landIce", + "standard_name": "surface_snow_amount", + "units": "kg m-2", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Surface Snow Amount", + "comment": "the mass of surface snow on the land portion of the grid cell divided by the land area in the grid cell; reported as missing where the land fraction is 0; excludes snow on vegetation canopy or on sea ice.", + "dimensions": "longitude latitude time", + "out_name": "snw", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "day", + "physical_parameter_name": "snw", + "variableRootDD": "snw", + "branding_label": "tavg-u-hxy-lnd", + "branded_variable_name": "snw_tavg-u-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "day.snw", + "cmip7_compound_name": "landIce.snw.tavg-u-hxy-lnd.day.GLB", + "uid": "bab820b2-e5dd-11e5-8482-ac72891c3257" + }, + "landIce.snw.tavg-u-hxy-lnd.mon.GLB": { + "frequency": "mon", + "modeling_realm": "landIce", + "standard_name": "surface_snow_amount", + "units": "kg m-2", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Surface Snow Amount", + "comment": "Computed as the mass of surface snow on the land portion of the grid cell divided by the land area in the grid cell; reported as missing where the land fraction is 0; excluded is snow on vegetation canopy or on sea ice.", + "dimensions": "longitude latitude time", + "out_name": "snw", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "LImon", + "physical_parameter_name": "snw", + "variableRootDD": "snw", + "branding_label": "tavg-u-hxy-lnd", + "branded_variable_name": "snw_tavg-u-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "LImon.snw", + "cmip7_compound_name": "landIce.snw.tavg-u-hxy-lnd.mon.GLB", + "uid": "bab81e50-e5dd-11e5-8482-ac72891c3257" + }, + "landIce.sootsn.tavg-u-hxy-lnd.mon.GLB": { + "frequency": "mon", + "modeling_realm": "landIce", + "standard_name": "soot_content_of_surface_snow", + "units": "kg m-2", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Snow Soot Content", + "comment": "the entire land portion of the grid cell is considered, with snow soot content set to 0.0 in regions free of snow.", + "dimensions": "longitude latitude time", + "out_name": "sootsn", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "LImon", + "physical_parameter_name": "sootsn", + "variableRootDD": "sootsn", + "branding_label": "tavg-u-hxy-lnd", + "branded_variable_name": "sootsn_tavg-u-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "LImon.sootsn", + "cmip7_compound_name": "landIce.sootsn.tavg-u-hxy-lnd.mon.GLB", + "uid": "bab83fc0-e5dd-11e5-8482-ac72891c3257" + }, + "landIce.strbasemag.tavg-u-hxy-is.yr.ATA": { + "frequency": "yr", + "modeling_realm": "landIce", + "standard_name": "land_ice_basal_drag", + "units": "Pa", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacellg", + "long_name": "Land Ice Basal Drag", + "comment": "Magnitude of basal drag at land ice base", + "dimensions": "longitude latitude time", + "out_name": "strbasemag", + "type": "real", + "positive": "", + "spatial_shape": "XYA-na", + "temporal_shape": "time-intv", + "cmip6_table": "IyrAnt", + "physical_parameter_name": "strbasemag", + "variableRootDD": "strbasemag", + "branding_label": "tavg-u-hxy-is", + "branded_variable_name": "strbasemag_tavg-u-hxy-is", + "region": "ATA", + "cmip6_compound_name": "IyrAnt.strbasemag", + "cmip7_compound_name": "landIce.strbasemag.tavg-u-hxy-is.yr.ATA", + "uid": "d5b4895e-c78d-11e6-9b25-5404a60d96b5" + }, + "landIce.strbasemag.tavg-u-hxy-is.yr.GRL": { + "frequency": "yr", + "modeling_realm": "landIce", + "standard_name": "land_ice_basal_drag", + "units": "Pa", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacellg", + "long_name": "Land Ice Basal Drag", + "comment": "Magnitude of basal drag at land ice base", + "dimensions": "longitude latitude time", + "out_name": "strbasemag", + "type": "real", + "positive": "", + "spatial_shape": "XYG-na", + "temporal_shape": "time-intv", + "cmip6_table": "IyrGre", + "physical_parameter_name": "strbasemag", + "variableRootDD": "strbasemag", + "branding_label": "tavg-u-hxy-is", + "branded_variable_name": "strbasemag_tavg-u-hxy-is", + "region": "GRL", + "cmip6_compound_name": "IyrGre.strbasemag", + "cmip7_compound_name": "landIce.strbasemag.tavg-u-hxy-is.yr.GRL", + "uid": "d5b3f192-c78d-11e6-9b25-5404a60d96b5" + }, + "landIce.tas.tavg-u-hxy-is.mon.GLB": { + "frequency": "mon", + "modeling_realm": "landIce", + "standard_name": "air_temperature", + "units": "K", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacella", + "long_name": "Ice Sheet Near-Surface Air Temperature", + "comment": "quantity averaged over ice_sheet (meaning grounded ice sheet and floating ice shelf) only, to avoid contamination from other surfaces (eg: permafrost)", + "dimensions": "longitude latitude time", + "out_name": "tasIs", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "LImon", + "physical_parameter_name": "tasIs", + "variableRootDD": "tas", + "branding_label": "tavg-u-hxy-is", + "branded_variable_name": "tas_tavg-u-hxy-is", + "region": "GLB", + "cmip6_compound_name": "LImon.tasIs", + "cmip7_compound_name": "landIce.tas.tavg-u-hxy-is.mon.GLB", + "uid": "8120b9f4-bf17-11e6-b0d8-ac72891c3257" + }, + "landIce.tendacabf.tavg-u-hm-is.yr.ATA": { + "frequency": "yr", + "modeling_realm": "landIce", + "standard_name": "tendency_of_land_ice_mass_due_to_surface_mass_balance", + "units": "kg s-1", + "cell_methods": "area: sum where ice_sheet time: mean", + "cell_measures": "", + "long_name": "Total Surface Mass Balance Flux", + "comment": "Antarctica", + "dimensions": "time", + "out_name": "tendacabf", + "type": "real", + "positive": "", + "spatial_shape": "na-na", + "temporal_shape": "time-intv", + "cmip6_table": "IyrAnt", + "physical_parameter_name": "tendacabf", + "variableRootDD": "tendacabf", + "branding_label": "tavg-u-hm-is", + "branded_variable_name": "tendacabf_tavg-u-hm-is", + "region": "ATA", + "cmip6_compound_name": "IyrAnt.tendacabf", + "cmip7_compound_name": "landIce.tendacabf.tavg-u-hm-is.yr.ATA", + "uid": "d5b4a2d6-c78d-11e6-9b25-5404a60d96b5" + }, + "landIce.tendacabf.tavg-u-hm-is.yr.GRL": { + "frequency": "yr", + "modeling_realm": "landIce", + "standard_name": "tendency_of_land_ice_mass_due_to_surface_mass_balance", + "units": "kg s-1", + "cell_methods": "area: sum where ice_sheet time: mean", + "cell_measures": "", + "long_name": "Total Surface Mass Balance Flux", + "comment": "Greenland", + "dimensions": "time", + "out_name": "tendacabf", + "type": "real", + "positive": "", + "spatial_shape": "na-na", + "temporal_shape": "time-intv", + "cmip6_table": "IyrGre", + "physical_parameter_name": "tendacabf", + "variableRootDD": "tendacabf", + "branding_label": "tavg-u-hm-is", + "branded_variable_name": "tendacabf_tavg-u-hm-is", + "region": "GRL", + "cmip6_compound_name": "IyrGre.tendacabf", + "cmip7_compound_name": "landIce.tendacabf.tavg-u-hm-is.yr.GRL", + "uid": "d5b40e16-c78d-11e6-9b25-5404a60d96b5" + }, + "landIce.tendlibmassbf.tavg-u-hm-is.yr.ATA": { + "frequency": "yr", + "modeling_realm": "landIce", + "standard_name": "tendency_of_land_ice_mass_due_to_basal_mass_balance", + "units": "kg s-1", + "cell_methods": "area: sum where ice_sheet time: mean", + "cell_measures": "", + "long_name": "Total Basal Mass Balance Flux", + "comment": "Antarctica", + "dimensions": "time", + "out_name": "tendlibmassbf", + "type": "real", + "positive": "", + "spatial_shape": "na-na", + "temporal_shape": "time-intv", + "cmip6_table": "IyrAnt", + "physical_parameter_name": "tendlibmassbf", + "variableRootDD": "tendlibmassbf", + "branding_label": "tavg-u-hm-is", + "branded_variable_name": "tendlibmassbf_tavg-u-hm-is", + "region": "ATA", + "cmip6_compound_name": "IyrAnt.tendlibmassbf", + "cmip7_compound_name": "landIce.tendlibmassbf.tavg-u-hm-is.yr.ATA", + "uid": "d5b4a6e6-c78d-11e6-9b25-5404a60d96b5" + }, + "landIce.tendlibmassbf.tavg-u-hm-is.yr.GRL": { + "frequency": "yr", + "modeling_realm": "landIce", + "standard_name": "tendency_of_land_ice_mass_due_to_basal_mass_balance", + "units": "kg s-1", + "cell_methods": "area: sum where ice_sheet time: mean", + "cell_measures": "", + "long_name": "Total Basal Mass Balance Flux", + "comment": "Greenland", + "dimensions": "time", + "out_name": "tendlibmassbf", + "type": "real", + "positive": "", + "spatial_shape": "na-na", + "temporal_shape": "time-intv", + "cmip6_table": "IyrGre", + "physical_parameter_name": "tendlibmassbf", + "variableRootDD": "tendlibmassbf", + "branding_label": "tavg-u-hm-is", + "branded_variable_name": "tendlibmassbf_tavg-u-hm-is", + "region": "GRL", + "cmip6_compound_name": "IyrGre.tendlibmassbf", + "cmip7_compound_name": "landIce.tendlibmassbf.tavg-u-hm-is.yr.GRL", + "uid": "d5b41370-c78d-11e6-9b25-5404a60d96b5" + }, + "landIce.tendlicalvf.tavg-u-hm-is.yr.ATA": { + "frequency": "yr", + "modeling_realm": "landIce", + "standard_name": "tendency_of_land_ice_mass_due_to_calving", + "units": "kg s-1", + "cell_methods": "area: sum where ice_sheet time: mean", + "cell_measures": "", + "long_name": "Total Calving Flux", + "comment": "Antarctica", + "dimensions": "time", + "out_name": "tendlicalvf", + "type": "real", + "positive": "", + "spatial_shape": "na-na", + "temporal_shape": "time-intv", + "cmip6_table": "IyrAnt", + "physical_parameter_name": "tendlicalvf", + "variableRootDD": "tendlicalvf", + "branding_label": "tavg-u-hm-is", + "branded_variable_name": "tendlicalvf_tavg-u-hm-is", + "region": "ATA", + "cmip6_compound_name": "IyrAnt.tendlicalvf", + "cmip7_compound_name": "landIce.tendlicalvf.tavg-u-hm-is.yr.ATA", + "uid": "d5b4aaec-c78d-11e6-9b25-5404a60d96b5" + }, + "landIce.tendlicalvf.tavg-u-hm-is.yr.GRL": { + "frequency": "yr", + "modeling_realm": "landIce", + "standard_name": "tendency_of_land_ice_mass_due_to_calving", + "units": "kg s-1", + "cell_methods": "area: sum where ice_sheet time: mean", + "cell_measures": "", + "long_name": "Total Calving Flux", + "comment": "Greenland", + "dimensions": "time", + "out_name": "tendlicalvf", + "type": "real", + "positive": "", + "spatial_shape": "na-na", + "temporal_shape": "time-intv", + "cmip6_table": "IyrGre", + "physical_parameter_name": "tendlicalvf", + "variableRootDD": "tendlicalvf", + "branding_label": "tavg-u-hm-is", + "branded_variable_name": "tendlicalvf_tavg-u-hm-is", + "region": "GRL", + "cmip6_compound_name": "IyrGre.tendlicalvf", + "cmip7_compound_name": "landIce.tendlicalvf.tavg-u-hm-is.yr.GRL", + "uid": "d5b4179e-c78d-11e6-9b25-5404a60d96b5" + }, + "landIce.topg.tavg-u-hxy-gis.yr.ATA": { + "frequency": "yr", + "modeling_realm": "landIce", + "standard_name": "bedrock_altitude", + "units": "m", + "cell_methods": "area: time: mean where grounded_ice_sheet (mask=sfgrlf)", + "cell_measures": "area: areacellg", + "long_name": "Bedrock Altitude", + "comment": "This is needed in case bed rock elevation changes in time", + "dimensions": "longitude latitude time", + "out_name": "topg", + "type": "real", + "positive": "", + "spatial_shape": "XYA-na", + "temporal_shape": "time-intv", + "cmip6_table": "IyrAnt", + "physical_parameter_name": "topg", + "variableRootDD": "topg", + "branding_label": "tavg-u-hxy-gis", + "branded_variable_name": "topg_tavg-u-hxy-gis", + "region": "ATA", + "cmip6_compound_name": "IyrAnt.topg", + "cmip7_compound_name": "landIce.topg.tavg-u-hxy-gis.yr.ATA", + "uid": "d5b43954-c78d-11e6-9b25-5404a60d96b5" + }, + "landIce.topg.tavg-u-hxy-gis.yr.GRL": { + "frequency": "yr", + "modeling_realm": "landIce", + "standard_name": "bedrock_altitude", + "units": "m", + "cell_methods": "area: time: mean where grounded_ice_sheet (mask=sfgrlf)", + "cell_measures": "area: areacellg", + "long_name": "Bedrock Altitude", + "comment": "This is needed in case bed rock elevation changes in time", + "dimensions": "longitude latitude time", + "out_name": "topg", + "type": "real", + "positive": "", + "spatial_shape": "XYG-na", + "temporal_shape": "time-intv", + "cmip6_table": "IyrGre", + "physical_parameter_name": "topg", + "variableRootDD": "topg", + "branding_label": "tavg-u-hxy-gis", + "branded_variable_name": "topg_tavg-u-hxy-gis", + "region": "GRL", + "cmip6_compound_name": "IyrGre.topg", + "cmip7_compound_name": "landIce.topg.tavg-u-hxy-gis.yr.GRL", + "uid": "d5b3a232-c78d-11e6-9b25-5404a60d96b5" + }, + "landIce.topg.ti-u-hxy-gis.fx.ATA": { + "frequency": "fx", + "modeling_realm": "landIce", + "standard_name": "bedrock_altitude", + "units": "m", + "cell_methods": "area: mean where grounded_ice_sheet", + "cell_measures": "area: areacellg", + "long_name": "Bedrock Altitude", + "comment": "The bedrock topography beneath the land ice", + "dimensions": "longitude latitude", + "out_name": "topg", + "type": "real", + "positive": "", + "spatial_shape": "XYA-na", + "temporal_shape": "None", + "cmip6_table": "IfxAnt", + "physical_parameter_name": "topg", + "variableRootDD": "topg", + "branding_label": "ti-u-hxy-gis", + "branded_variable_name": "topg_ti-u-hxy-gis", + "region": "ATA", + "cmip6_compound_name": "IfxAnt.topg", + "cmip7_compound_name": "landIce.topg.ti-u-hxy-gis.fx.ATA", + "uid": "d5b378fc-c78d-11e6-9b25-5404a60d96b5" + }, + "landIce.topg.ti-u-hxy-gis.fx.GRL": { + "frequency": "fx", + "modeling_realm": "landIce", + "standard_name": "bedrock_altitude", + "units": "m", + "cell_methods": "area: mean where grounded_ice_sheet", + "cell_measures": "area: areacellg", + "long_name": "Bedrock Altitude", + "comment": "The bedrock topography beneath the land ice", + "dimensions": "longitude latitude", + "out_name": "topg", + "type": "real", + "positive": "", + "spatial_shape": "XYG-na", + "temporal_shape": "None", + "cmip6_table": "IfxGre", + "physical_parameter_name": "topg", + "variableRootDD": "topg", + "branding_label": "ti-u-hxy-gis", + "branded_variable_name": "topg_ti-u-hxy-gis", + "region": "GRL", + "cmip6_compound_name": "IfxGre.topg", + "cmip7_compound_name": "landIce.topg.ti-u-hxy-gis.fx.GRL", + "uid": "d5b366a0-c78d-11e6-9b25-5404a60d96b5" + }, + "landIce.tpf.tavg-u-hxy-lnd.day.GLB": { + "frequency": "day", + "modeling_realm": "landIce", + "standard_name": "permafrost_layer_thickness", + "units": "m", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Permafrost Layer Thickness", + "comment": "permafrost_layer_thickness", + "dimensions": "longitude latitude time", + "out_name": "tpf", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Eday", + "physical_parameter_name": "tpf", + "variableRootDD": "tpf", + "branding_label": "tavg-u-hxy-lnd", + "branded_variable_name": "tpf_tavg-u-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "Eday.tpf", + "cmip7_compound_name": "landIce.tpf.tavg-u-hxy-lnd.day.GLB", + "uid": "d228ea34-4a9f-11e6-b84e-ac72891c3257" + }, + "landIce.tpf.tavg-u-hxy-lnd.mon.GLB": { + "frequency": "mon", + "modeling_realm": "landIce", + "standard_name": "permafrost_layer_thickness", + "units": "m", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Permafrost Layer Thickness", + "comment": "where land over land: This is the mean thickness of the permafrost layer in the land portion of the grid cell. Reported as missing in permafrost-free regions.", + "dimensions": "longitude latitude time", + "out_name": "tpf", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "LImon", + "physical_parameter_name": "tpf", + "variableRootDD": "tpf", + "branding_label": "tavg-u-hxy-lnd", + "branded_variable_name": "tpf_tavg-u-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "LImon.tpf", + "cmip7_compound_name": "landIce.tpf.tavg-u-hxy-lnd.mon.GLB", + "uid": "baba8cbc-e5dd-11e5-8482-ac72891c3257" + }, + "landIce.ts.tavg-u-hxy-is.mon.GLB": { + "frequency": "mon", + "modeling_realm": "landIce", + "standard_name": "surface_temperature", + "units": "K", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacella", + "long_name": "Ice Sheet Surface Temperature", + "comment": "quantity averaged over ice_sheet (meaning grounded ice sheet and floating ice shelf) only, to avoid contamination from other surfaces (eg: permafrost)", + "dimensions": "longitude latitude time", + "out_name": "tsIs", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "LImon", + "physical_parameter_name": "tsIs", + "variableRootDD": "ts", + "branding_label": "tavg-u-hxy-is", + "branded_variable_name": "ts_tavg-u-hxy-is", + "region": "GLB", + "cmip6_compound_name": "LImon.tsIs", + "cmip7_compound_name": "landIce.ts.tavg-u-hxy-is.mon.GLB", + "uid": "8120c020-bf17-11e6-b0d8-ac72891c3257" + }, + "landIce.tsn.tavg-u-hxy-is.mon.ATA": { + "frequency": "mon", + "modeling_realm": "landIce", + "standard_name": "temperature_in_surface_snow", + "units": "K", + "cell_methods": "depth: area: time: mean where ice_sheet (weighted by snow mass on ice_sheet)", + "cell_measures": "area: areacellg", + "long_name": "Snow Internal Temperature on Land Ice", + "comment": "quantity averaged over ice sheet (grounded ice sheet and floating ice shelf) only. Needed to analyse the impact of downscaling methods", + "dimensions": "longitude latitude time", + "out_name": "tsn", + "type": "real", + "positive": "", + "spatial_shape": "XYA-na", + "temporal_shape": "time-intv", + "cmip6_table": "ImonAnt", + "physical_parameter_name": "tsn", + "variableRootDD": "tsn", + "branding_label": "tavg-u-hxy-is", + "branded_variable_name": "tsn_tavg-u-hxy-is", + "region": "ATA", + "cmip6_compound_name": "ImonAnt.tsn", + "cmip7_compound_name": "landIce.tsn.tavg-u-hxy-is.mon.ATA", + "uid": "d5b2fb8e-c78d-11e6-9b25-5404a60d96b5" + }, + "landIce.tsn.tavg-u-hxy-is.mon.GLB": { + "frequency": "mon", + "modeling_realm": "landIce", + "standard_name": "temperature_in_surface_snow", + "units": "K", + "cell_methods": "depth: area: time: mean where ice_sheet (weighted by snow mass on ice_sheet)", + "cell_measures": "area: areacella", + "long_name": "Ice Sheet Snow Internal Temperature", + "comment": "quantity averaged over ice_sheet (meaning grounded ice sheet and floating ice shelf) only, to avoid contamination from other surfaces (eg: permafrost)", + "dimensions": "longitude latitude time", + "out_name": "tsnIs", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "LImon", + "physical_parameter_name": "tsnIs", + "variableRootDD": "tsn", + "branding_label": "tavg-u-hxy-is", + "branded_variable_name": "tsn_tavg-u-hxy-is", + "region": "GLB", + "cmip6_compound_name": "LImon.tsnIs", + "cmip7_compound_name": "landIce.tsn.tavg-u-hxy-is.mon.GLB", + "uid": "132b199a-be44-11e6-9e13-f9e3356200b3" + }, + "landIce.tsn.tavg-u-hxy-is.mon.GRL": { + "frequency": "mon", + "modeling_realm": "landIce", + "standard_name": "temperature_in_surface_snow", + "units": "K", + "cell_methods": "depth: area: time: mean where ice_sheet (weighted by snow mass on ice_sheet)", + "cell_measures": "area: areacellg", + "long_name": "Snow Internal Temperature on Land Ice", + "comment": "quantity averaged over ice sheet (grounded ice sheet and floating ice shelf) only. Needed to analyse the impact of downscaling methods", + "dimensions": "longitude latitude time", + "out_name": "tsn", + "type": "real", + "positive": "", + "spatial_shape": "XYG-na", + "temporal_shape": "time-intv", + "cmip6_table": "ImonGre", + "physical_parameter_name": "tsn", + "variableRootDD": "tsn", + "branding_label": "tavg-u-hxy-is", + "branded_variable_name": "tsn_tavg-u-hxy-is", + "region": "GRL", + "cmip6_compound_name": "ImonGre.tsn", + "cmip7_compound_name": "landIce.tsn.tavg-u-hxy-is.mon.GRL", + "uid": "d5b2853c-c78d-11e6-9b25-5404a60d96b5" + }, + "landIce.tsn.tavg-u-hxy-lnd.day.GLB": { + "frequency": "day", + "modeling_realm": "landIce", + "standard_name": "temperature_in_surface_snow", + "units": "K", + "cell_methods": "depth: area: time: mean where land (weighted by snow mass on land)", + "cell_measures": "area: areacella", + "long_name": "Snow Internal Temperature", + "comment": "This temperature is averaged over all the snow in the grid cell that rests on land or land ice. When computing the time-mean here, the time samples, weighted by the mass of snow on the land portion of the grid cell, are accumulated and then divided by the sum of the weights. Reported as \"missing in regions free of snow on land.", + "dimensions": "longitude latitude time", + "out_name": "tsn", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Eday", + "physical_parameter_name": "tsn", + "variableRootDD": "tsn", + "branding_label": "tavg-u-hxy-lnd", + "branded_variable_name": "tsn_tavg-u-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "Eday.tsn", + "cmip7_compound_name": "landIce.tsn.tavg-u-hxy-lnd.day.GLB", + "uid": "d227e53a-4a9f-11e6-b84e-ac72891c3257" + }, + "landIce.tsn.tavg-u-hxy-lnd.mon.GLB": { + "frequency": "mon", + "modeling_realm": "landIce", + "standard_name": "temperature_in_surface_snow", + "units": "K", + "cell_methods": "depth: area: time: mean where land (weighted by snow mass on land)", + "cell_measures": "area: areacella", + "long_name": "Snow Internal Temperature", + "comment": "This temperature is averaged over all the snow in the grid cell that rests on land or land ice. When computing the time-mean here, the time samples, weighted by the mass of snow on the land portion of the grid cell, are accumulated and then divided by the sum of the weights. Reported as \"missing in regions free of snow on land.", + "dimensions": "longitude latitude time", + "out_name": "tsn", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "LImon", + "physical_parameter_name": "tsn", + "variableRootDD": "tsn", + "branding_label": "tavg-u-hxy-lnd", + "branded_variable_name": "tsn_tavg-u-hxy-lnd", + "region": "GLB", + "cmip6_compound_name": "LImon.tsn", + "cmip7_compound_name": "landIce.tsn.tavg-u-hxy-lnd.mon.GLB", + "uid": "8bbac66a-4a5b-11e6-9cd2-ac72891c3257" + }, + "landIce.xvelbase.tavg-u-hxy-is.yr.ATA": { + "frequency": "yr", + "modeling_realm": "landIce", + "standard_name": "land_ice_basal_x_velocity", + "units": "m s-1", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacellg", + "long_name": "X-Component of Land Ice Basal Velocity", + "comment": "A velocity is a vector quantity. \"x\" indicates a vector component along the grid x-axis, positive with increasing x. \"Land ice\" means glaciers, ice-caps and ice-sheets resting on bedrock and also includes ice-shelves. \"basal\" means the lower boundary of the land ice.", + "dimensions": "longitude latitude time", + "out_name": "xvelbase", + "type": "real", + "positive": "", + "spatial_shape": "XYA-na", + "temporal_shape": "time-intv", + "cmip6_table": "IyrAnt", + "physical_parameter_name": "xvelbase", + "variableRootDD": "xvelbase", + "branding_label": "tavg-u-hxy-is", + "branded_variable_name": "xvelbase_tavg-u-hxy-is", + "region": "ATA", + "cmip6_compound_name": "IyrAnt.xvelbase", + "cmip7_compound_name": "landIce.xvelbase.tavg-u-hxy-is.yr.ATA", + "uid": "d5b4763a-c78d-11e6-9b25-5404a60d96b5" + }, + "landIce.xvelbase.tavg-u-hxy-is.yr.GRL": { + "frequency": "yr", + "modeling_realm": "landIce", + "standard_name": "land_ice_basal_x_velocity", + "units": "m s-1", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacellg", + "long_name": "X-Component of Land Ice Basal Velocity", + "comment": "A velocity is a vector quantity. \"x\" indicates a vector component along the grid x-axis, positive with increasing x. \"Land ice\" means glaciers, ice-caps and ice-sheets resting on bedrock and also includes ice-shelves. \"basal\" means the lower boundary of the land ice.", + "dimensions": "longitude latitude time", + "out_name": "xvelbase", + "type": "real", + "positive": "", + "spatial_shape": "XYG-na", + "temporal_shape": "time-intv", + "cmip6_table": "IyrGre", + "physical_parameter_name": "xvelbase", + "variableRootDD": "xvelbase", + "branding_label": "tavg-u-hxy-is", + "branded_variable_name": "xvelbase_tavg-u-hxy-is", + "region": "GRL", + "cmip6_compound_name": "IyrGre.xvelbase", + "cmip7_compound_name": "landIce.xvelbase.tavg-u-hxy-is.yr.GRL", + "uid": "d5b3df36-c78d-11e6-9b25-5404a60d96b5" + }, + "landIce.xvelmean.tavg-u-hxy-is.yr.ATA": { + "frequency": "yr", + "modeling_realm": "landIce", + "standard_name": "land_ice_vertical_mean_x_velocity", + "units": "m s-1", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacellg", + "long_name": "X-Component of Land Ice Vertical Mean Velocity", + "comment": "The vertical mean land ice velocity is the average from the bedrock to the surface of the ice", + "dimensions": "longitude latitude time", + "out_name": "xvelmean", + "type": "real", + "positive": "", + "spatial_shape": "XYA-na", + "temporal_shape": "time-intv", + "cmip6_table": "IyrAnt", + "physical_parameter_name": "xvelmean", + "variableRootDD": "xvelmean", + "branding_label": "tavg-u-hxy-is", + "branded_variable_name": "xvelmean_tavg-u-hxy-is", + "region": "ATA", + "cmip6_compound_name": "IyrAnt.xvelmean", + "cmip7_compound_name": "landIce.xvelmean.tavg-u-hxy-is.yr.ATA", + "uid": "d5b48206-c78d-11e6-9b25-5404a60d96b5" + }, + "landIce.xvelmean.tavg-u-hxy-is.yr.GRL": { + "frequency": "yr", + "modeling_realm": "landIce", + "standard_name": "land_ice_vertical_mean_x_velocity", + "units": "m s-1", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacellg", + "long_name": "X-Component of Land Ice Vertical Mean Velocity", + "comment": "The vertical mean land ice velocity is the average from the bedrock to the surface of the ice", + "dimensions": "longitude latitude time", + "out_name": "xvelmean", + "type": "real", + "positive": "", + "spatial_shape": "XYG-na", + "temporal_shape": "time-intv", + "cmip6_table": "IyrGre", + "physical_parameter_name": "xvelmean", + "variableRootDD": "xvelmean", + "branding_label": "tavg-u-hxy-is", + "branded_variable_name": "xvelmean_tavg-u-hxy-is", + "region": "GRL", + "cmip6_compound_name": "IyrGre.xvelmean", + "cmip7_compound_name": "landIce.xvelmean.tavg-u-hxy-is.yr.GRL", + "uid": "d5b3ea3a-c78d-11e6-9b25-5404a60d96b5" + }, + "landIce.xvelsurf.tavg-u-hxy-is.yr.ATA": { + "frequency": "yr", + "modeling_realm": "landIce", + "standard_name": "land_ice_surface_x_velocity", + "units": "m s-1", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacellg", + "long_name": "X-Component of Land Ice Surface Velocity", + "comment": "A velocity is a vector quantity. \"x\" indicates a vector component along the grid x-axis, positive with increasing x. \"Land ice\" means glaciers, ice-caps and ice-sheets resting on bedrock and also includes ice-shelves. The surface called \"surface\" means the lower boundary of the atmosphere.", + "dimensions": "longitude latitude time", + "out_name": "xvelsurf", + "type": "real", + "positive": "", + "spatial_shape": "XYA-na", + "temporal_shape": "time-intv", + "cmip6_table": "IyrAnt", + "physical_parameter_name": "xvelsurf", + "variableRootDD": "xvelsurf", + "branding_label": "tavg-u-hxy-is", + "branded_variable_name": "xvelsurf_tavg-u-hxy-is", + "region": "ATA", + "cmip6_compound_name": "IyrAnt.xvelsurf", + "cmip7_compound_name": "landIce.xvelsurf.tavg-u-hxy-is.yr.ATA", + "uid": "d5b46b36-c78d-11e6-9b25-5404a60d96b5" + }, + "landIce.xvelsurf.tavg-u-hxy-is.yr.GRL": { + "frequency": "yr", + "modeling_realm": "landIce", + "standard_name": "land_ice_surface_x_velocity", + "units": "m s-1", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacellg", + "long_name": "X-Component of Land Ice Surface Velocity", + "comment": "A velocity is a vector quantity. \"x\" indicates a vector component along the grid x-axis, positive with increasing x. \"Land ice\" means glaciers, ice-caps and ice-sheets resting on bedrock and also includes ice-shelves. The surface called \"surface\" means the lower boundary of the atmosphere.", + "dimensions": "longitude latitude time", + "out_name": "xvelsurf", + "type": "real", + "positive": "", + "spatial_shape": "XYG-na", + "temporal_shape": "time-intv", + "cmip6_table": "IyrGre", + "physical_parameter_name": "xvelsurf", + "variableRootDD": "xvelsurf", + "branding_label": "tavg-u-hxy-is", + "branded_variable_name": "xvelsurf_tavg-u-hxy-is", + "region": "GRL", + "cmip6_compound_name": "IyrGre.xvelsurf", + "cmip7_compound_name": "landIce.xvelsurf.tavg-u-hxy-is.yr.GRL", + "uid": "d5b3d428-c78d-11e6-9b25-5404a60d96b5" + }, + "landIce.yvelbase.tavg-u-hxy-is.yr.ATA": { + "frequency": "yr", + "modeling_realm": "landIce", + "standard_name": "land_ice_basal_y_velocity", + "units": "m s-1", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacellg", + "long_name": "Y-Component of Land Ice Basal Velocity", + "comment": "A velocity is a vector quantity. \"y\" indicates a vector component along the grid y-axis, positive with increasing y. \"Land ice\" means glaciers, ice-caps and ice-sheets resting on bedrock and also includes ice-shelves. \"basal\" means the lower boundary of the land ice.", + "dimensions": "longitude latitude time", + "out_name": "yvelbase", + "type": "real", + "positive": "", + "spatial_shape": "XYA-na", + "temporal_shape": "time-intv", + "cmip6_table": "IyrAnt", + "physical_parameter_name": "yvelbase", + "variableRootDD": "yvelbase", + "branding_label": "tavg-u-hxy-is", + "branded_variable_name": "yvelbase_tavg-u-hxy-is", + "region": "ATA", + "cmip6_compound_name": "IyrAnt.yvelbase", + "cmip7_compound_name": "landIce.yvelbase.tavg-u-hxy-is.yr.ATA", + "uid": "d5b479e6-c78d-11e6-9b25-5404a60d96b5" + }, + "landIce.yvelbase.tavg-u-hxy-is.yr.GRL": { + "frequency": "yr", + "modeling_realm": "landIce", + "standard_name": "land_ice_basal_y_velocity", + "units": "m s-1", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacellg", + "long_name": "Y-Component of Land Ice Basal Velocity", + "comment": "A velocity is a vector quantity. \"y\" indicates a vector component along the grid y-axis, positive with increasing y. \"Land ice\" means glaciers, ice-caps and ice-sheets resting on bedrock and also includes ice-shelves. \"basal\" means the lower boundary of the land ice.", + "dimensions": "longitude latitude time", + "out_name": "yvelbase", + "type": "real", + "positive": "", + "spatial_shape": "XYG-na", + "temporal_shape": "time-intv", + "cmip6_table": "IyrGre", + "physical_parameter_name": "yvelbase", + "variableRootDD": "yvelbase", + "branding_label": "tavg-u-hxy-is", + "branded_variable_name": "yvelbase_tavg-u-hxy-is", + "region": "GRL", + "cmip6_compound_name": "IyrGre.yvelbase", + "cmip7_compound_name": "landIce.yvelbase.tavg-u-hxy-is.yr.GRL", + "uid": "d5b3e2e2-c78d-11e6-9b25-5404a60d96b5" + }, + "landIce.yvelmean.tavg-u-hxy-is.yr.ATA": { + "frequency": "yr", + "modeling_realm": "landIce", + "standard_name": "land_ice_vertical_mean_y_velocity", + "units": "m s-1", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacellg", + "long_name": "Y-Component of Land Ice Vertical Mean Velocity", + "comment": "The vertical mean land ice velocity is the average from the bedrock to the surface of the ice", + "dimensions": "longitude latitude time", + "out_name": "yvelmean", + "type": "real", + "positive": "", + "spatial_shape": "XYA-na", + "temporal_shape": "time-intv", + "cmip6_table": "IyrAnt", + "physical_parameter_name": "yvelmean", + "variableRootDD": "yvelmean", + "branding_label": "tavg-u-hxy-is", + "branded_variable_name": "yvelmean_tavg-u-hxy-is", + "region": "ATA", + "cmip6_compound_name": "IyrAnt.yvelmean", + "cmip7_compound_name": "landIce.yvelmean.tavg-u-hxy-is.yr.ATA", + "uid": "d5b485b2-c78d-11e6-9b25-5404a60d96b5" + }, + "landIce.yvelmean.tavg-u-hxy-is.yr.GRL": { + "frequency": "yr", + "modeling_realm": "landIce", + "standard_name": "land_ice_vertical_mean_y_velocity", + "units": "m s-1", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacellg", + "long_name": "Y-Component of Land Ice Vertical Mean Velocity", + "comment": "The vertical mean land ice velocity is the average from the bedrock to the surface of the ice", + "dimensions": "longitude latitude time", + "out_name": "yvelmean", + "type": "real", + "positive": "", + "spatial_shape": "XYG-na", + "temporal_shape": "time-intv", + "cmip6_table": "IyrGre", + "physical_parameter_name": "yvelmean", + "variableRootDD": "yvelmean", + "branding_label": "tavg-u-hxy-is", + "branded_variable_name": "yvelmean_tavg-u-hxy-is", + "region": "GRL", + "cmip6_compound_name": "IyrGre.yvelmean", + "cmip7_compound_name": "landIce.yvelmean.tavg-u-hxy-is.yr.GRL", + "uid": "d5b3ede6-c78d-11e6-9b25-5404a60d96b5" + }, + "landIce.yvelsurf.tavg-u-hxy-is.yr.ATA": { + "frequency": "yr", + "modeling_realm": "landIce", + "standard_name": "land_ice_surface_y_velocity", + "units": "m s-1", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacellg", + "long_name": "Y-Component of Land Ice Surface Velocity", + "comment": "A velocity is a vector quantity. \"y\" indicates a vector component along the grid y-axis, positive with increasing y. \"Land ice\" means glaciers, ice-caps and ice-sheets resting on bedrock and also includes ice-shelves. The surface called \"surface\" means the lower boundary of the atmosphere.'", + "dimensions": "longitude latitude time", + "out_name": "yvelsurf", + "type": "real", + "positive": "", + "spatial_shape": "XYA-na", + "temporal_shape": "time-intv", + "cmip6_table": "IyrAnt", + "physical_parameter_name": "yvelsurf", + "variableRootDD": "yvelsurf", + "branding_label": "tavg-u-hxy-is", + "branded_variable_name": "yvelsurf_tavg-u-hxy-is", + "region": "ATA", + "cmip6_compound_name": "IyrAnt.yvelsurf", + "cmip7_compound_name": "landIce.yvelsurf.tavg-u-hxy-is.yr.ATA", + "uid": "d5b46ee2-c78d-11e6-9b25-5404a60d96b5" + }, + "landIce.yvelsurf.tavg-u-hxy-is.yr.GRL": { + "frequency": "yr", + "modeling_realm": "landIce", + "standard_name": "land_ice_surface_y_velocity", + "units": "m s-1", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacellg", + "long_name": "Y-Component of Land Ice Surface Velocity", + "comment": "A velocity is a vector quantity. \"y\" indicates a vector component along the grid y-axis, positive with increasing y. \"Land ice\" means glaciers, ice-caps and ice-sheets resting on bedrock and also includes ice-shelves. The surface called \"surface\" means the lower boundary of the atmosphere.'", + "dimensions": "longitude latitude time", + "out_name": "yvelsurf", + "type": "real", + "positive": "", + "spatial_shape": "XYG-na", + "temporal_shape": "time-intv", + "cmip6_table": "IyrGre", + "physical_parameter_name": "yvelsurf", + "variableRootDD": "yvelsurf", + "branding_label": "tavg-u-hxy-is", + "branded_variable_name": "yvelsurf_tavg-u-hxy-is", + "region": "GRL", + "cmip6_compound_name": "IyrGre.yvelsurf", + "cmip7_compound_name": "landIce.yvelsurf.tavg-u-hxy-is.yr.GRL", + "uid": "d5b3d7de-c78d-11e6-9b25-5404a60d96b5" + }, + "landIce.zvelbase.tavg-u-hxy-is.yr.ATA": { + "frequency": "yr", + "modeling_realm": "landIce", + "standard_name": "land_ice_basal_upward_velocity", + "units": "m s-1", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacellg", + "long_name": "Upward Component of Land-Ice Basal Velocity", + "comment": "A velocity is a vector quantity. \"Upward\" indicates a vector component which is positive when directed upward (negative downward). \"basal\" means the lower boundary of the atmosphere", + "dimensions": "longitude latitude time", + "out_name": "zvelbase", + "type": "real", + "positive": "", + "spatial_shape": "XYA-na", + "temporal_shape": "time-intv", + "cmip6_table": "IyrAnt", + "physical_parameter_name": "zvelbase", + "variableRootDD": "zvelbase", + "branding_label": "tavg-u-hxy-is", + "branded_variable_name": "zvelbase_tavg-u-hxy-is", + "region": "ATA", + "cmip6_compound_name": "IyrAnt.zvelbase", + "cmip7_compound_name": "landIce.zvelbase.tavg-u-hxy-is.yr.ATA", + "uid": "d5b47e5a-c78d-11e6-9b25-5404a60d96b5" + }, + "landIce.zvelbase.tavg-u-hxy-is.yr.GRL": { + "frequency": "yr", + "modeling_realm": "landIce", + "standard_name": "land_ice_basal_upward_velocity", + "units": "m s-1", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacellg", + "long_name": "Upward Component of Land-Ice Basal Velocity", + "comment": "A velocity is a vector quantity. \"Upward\" indicates a vector component which is positive when directed upward (negative downward). \"basal\" means the lower boundary of the atmosphere", + "dimensions": "longitude latitude time", + "out_name": "zvelbase", + "type": "real", + "positive": "", + "spatial_shape": "XYG-na", + "temporal_shape": "time-intv", + "cmip6_table": "IyrGre", + "physical_parameter_name": "zvelbase", + "variableRootDD": "zvelbase", + "branding_label": "tavg-u-hxy-is", + "branded_variable_name": "zvelbase_tavg-u-hxy-is", + "region": "GRL", + "cmip6_compound_name": "IyrGre.zvelbase", + "cmip7_compound_name": "landIce.zvelbase.tavg-u-hxy-is.yr.GRL", + "uid": "d5b3e68e-c78d-11e6-9b25-5404a60d96b5" + }, + "landIce.zvelsurf.tavg-u-hxy-is.yr.ATA": { + "frequency": "yr", + "modeling_realm": "landIce", + "standard_name": "land_ice_surface_upward_velocity", + "units": "m s-1", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacellg", + "long_name": "Upward Component of Land-Ice Surface Velocity", + "comment": "A velocity is a vector quantity. \"Upward\" indicates a vector component which is positive when directed upward (negative downward). The surface called \"surface\" means the lower boundary of the atmosphere", + "dimensions": "longitude latitude time", + "out_name": "zvelsurf", + "type": "real", + "positive": "", + "spatial_shape": "XYA-na", + "temporal_shape": "time-intv", + "cmip6_table": "IyrAnt", + "physical_parameter_name": "zvelsurf", + "variableRootDD": "zvelsurf", + "branding_label": "tavg-u-hxy-is", + "branded_variable_name": "zvelsurf_tavg-u-hxy-is", + "region": "ATA", + "cmip6_compound_name": "IyrAnt.zvelsurf", + "cmip7_compound_name": "landIce.zvelsurf.tavg-u-hxy-is.yr.ATA", + "uid": "d5b4728e-c78d-11e6-9b25-5404a60d96b5" + }, + "landIce.zvelsurf.tavg-u-hxy-is.yr.GRL": { + "frequency": "yr", + "modeling_realm": "landIce", + "standard_name": "land_ice_surface_upward_velocity", + "units": "m s-1", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacellg", + "long_name": "Upward Component of Land-Ice Surface Velocity", + "comment": "A velocity is a vector quantity. \"Upward\" indicates a vector component which is positive when directed upward (negative downward). The surface called \"surface\" means the lower boundary of the atmosphere", + "dimensions": "longitude latitude time", + "out_name": "zvelsurf", + "type": "real", + "positive": "", + "spatial_shape": "XYG-na", + "temporal_shape": "time-intv", + "cmip6_table": "IyrGre", + "physical_parameter_name": "zvelsurf", + "variableRootDD": "zvelsurf", + "branding_label": "tavg-u-hxy-is", + "branded_variable_name": "zvelsurf_tavg-u-hxy-is", + "region": "GRL", + "cmip6_compound_name": "IyrGre.zvelsurf", + "cmip7_compound_name": "landIce.zvelsurf.tavg-u-hxy-is.yr.GRL", + "uid": "d5b3db8a-c78d-11e6-9b25-5404a60d96b5" + }, + "ocean.absscint.tavg-op4-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "integral_wrt_depth_of_sea_water_absolute_salinity_expressed_as_salt_mass_content", + "units": "kg m-2", + "cell_methods": "area: time: mean where sea", + "cell_measures": "area: areacello", + "long_name": "Integral wrt depth of seawater absolute salinity expressed as salt mass content", + "comment": "This is a fundamental aspect of the changes in the hydrological cycle and their impact on the oceans, and due to new numerical schemes and vertical discretizations, it is important to calculate it consistently with the model formulation.", + "dimensions": "longitude latitude oplayer4 time", + "out_name": "absscint", + "type": "real", + "positive": "", + "spatial_shape": "XY-B", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "absscint", + "variableRootDD": "absscint", + "branding_label": "tavg-op4-hxy-sea", + "branded_variable_name": "absscint_tavg-op4-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.absscint", + "cmip7_compound_name": "ocean.absscint.tavg-op4-hxy-sea.mon.GLB", + "uid": "80ab72a5-a698-11ef-914a-613c0433d878" + }, + "ocean.agessc.tavg-ol-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "sea_water_age_since_surface_contact", + "units": "yr", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Sea Water Age Since Surface Contact", + "comment": "Time elapsed since water was last in surface layer of the ocean.", + "dimensions": "longitude latitude olevel time", + "out_name": "agessc", + "type": "real", + "positive": "", + "spatial_shape": "XY-O", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "agessc", + "variableRootDD": "agessc", + "branding_label": "tavg-ol-hxy-sea", + "branded_variable_name": "agessc_tavg-ol-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.agessc", + "cmip7_compound_name": "ocean.agessc.tavg-ol-hxy-sea.mon.GLB", + "uid": "baa56de6-e5dd-11e5-8482-ac72891c3257" + }, + "ocean.areacello.ti-u-hxy-u.fx.GLB": { + "frequency": "fx", + "modeling_realm": "ocean", + "standard_name": "cell_area", + "units": "m2", + "cell_methods": "area: sum", + "cell_measures": "", + "long_name": "Grid-Cell Area for Ocean Variables", + "comment": "Cell areas for any grid used to report ocean variables and variables which are requested as used on the model ocean grid (e.g. hfsso, which is a downward heat flux from the atmosphere interpolated onto the ocean grid). These cell areas should be defined to enable exact calculation of global integrals (e.g., of vertical fluxes of energy at the surface and top of the atmosphere).", + "dimensions": "longitude latitude", + "out_name": "areacello", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "None", + "cmip6_table": "Ofx", + "physical_parameter_name": "areacello", + "variableRootDD": "areacello", + "branding_label": "ti-u-hxy-u", + "branded_variable_name": "areacello_ti-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "Ofx.areacello", + "cmip7_compound_name": "ocean.areacello.ti-u-hxy-u.fx.GLB", + "uid": "baa3ee94-e5dd-11e5-8482-ac72891c3257" + }, + "ocean.basin.ti-u-hxy-u.fx.GLB": { + "frequency": "fx", + "modeling_realm": "ocean", + "standard_name": "region", + "units": "1", + "cell_methods": "area: mean", + "cell_measures": "area: areacello", + "long_name": "Region Selection Index", + "comment": "A variable with the standard name of region contains strings which indicate geographical regions. These strings must be chosen from the standard region list.", + "dimensions": "longitude latitude", + "out_name": "basin", + "type": "integer", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "None", + "cmip6_table": "Ofx", + "physical_parameter_name": "basin", + "variableRootDD": "basin", + "branding_label": "ti-u-hxy-u", + "branded_variable_name": "basin_ti-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "Ofx.basin", + "cmip7_compound_name": "ocean.basin.ti-u-hxy-u.fx.GLB", + "uid": "baa3f718-e5dd-11e5-8482-ac72891c3257" + }, + "ocean.bigthetao.tavg-ol-hm-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "sea_water_conservative_temperature", + "units": "degC", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "", + "long_name": "Global Average Sea Water Conservative Temperature", + "comment": "Diagnostic should be contributed only for models using conservative temperature as prognostic field.", + "dimensions": "olevel time", + "out_name": "bigthetaoga", + "type": "real", + "positive": "", + "spatial_shape": "na-O", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "bigthetaoga", + "variableRootDD": "bigthetao", + "branding_label": "tavg-ol-hm-sea", + "branded_variable_name": "bigthetao_tavg-ol-hm-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.bigthetaoga", + "cmip7_compound_name": "ocean.bigthetao.tavg-ol-hm-sea.mon.GLB", + "uid": "baa52994-e5dd-11e5-8482-ac72891c3257" + }, + "ocean.bigthetao.tavg-ol-hxy-sea.dec.GLB": { + "frequency": "dec", + "modeling_realm": "ocean", + "standard_name": "sea_water_conservative_temperature", + "units": "degC", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Sea Water Conservative Temperature", + "comment": "Diagnostic should be contributed only for models using conservative temperature as prognostic field.", + "dimensions": "longitude latitude olevel time", + "out_name": "bigthetao", + "type": "real", + "positive": "", + "spatial_shape": "XY-O", + "temporal_shape": "time-intv", + "cmip6_table": "Odec", + "physical_parameter_name": "bigthetao", + "variableRootDD": "bigthetao", + "branding_label": "tavg-ol-hxy-sea", + "branded_variable_name": "bigthetao_tavg-ol-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Odec.bigthetao", + "cmip7_compound_name": "ocean.bigthetao.tavg-ol-hxy-sea.dec.GLB", + "uid": "134c7db2-1026-11e8-9d87-1c4d70487308" + }, + "ocean.bigthetao.tavg-ol-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "sea_water_conservative_temperature", + "units": "degC", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Sea Water Conservative Temperature", + "comment": "Diagnostic should be contributed only for models using conservative temperature as prognostic field.", + "dimensions": "longitude latitude olevel time", + "out_name": "bigthetao", + "type": "real", + "positive": "", + "spatial_shape": "XY-O", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "bigthetao", + "variableRootDD": "bigthetao", + "branding_label": "tavg-ol-hxy-sea", + "branded_variable_name": "bigthetao_tavg-ol-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.bigthetao", + "cmip7_compound_name": "ocean.bigthetao.tavg-ol-hxy-sea.mon.GLB", + "uid": "baa5255c-e5dd-11e5-8482-ac72891c3257" + }, + "ocean.bigthetao.tavg-op20bar-hxy-sea.day.GLB": { + "frequency": "day", + "modeling_realm": "ocean", + "standard_name": "sea_water_conservative_temperature", + "units": "degC", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Sea Water Conservative Temperature at 200 meters", + "comment": "Diagnostic should be contributed even for models using conservative temperature as prognostic field.", + "dimensions": "longitude latitude time op20bar", + "out_name": "bigthetao", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Oday", + "physical_parameter_name": "bigthetao", + "variableRootDD": "bigthetao", + "branding_label": "tavg-op20bar-hxy-sea", + "branded_variable_name": "bigthetao_tavg-op20bar-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Oday.bigthetao200", + "cmip7_compound_name": "ocean.bigthetao.tavg-op20bar-hxy-sea.day.GLB", + "uid": "823b4d1e-9159-11ef-949c-b9e189121872" + }, + "ocean.chcint.tavg-op4-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "integral_wrt_depth_of_sea_water_conservative_temperature_expressed_as_heat_content", + "units": "J m-2", + "cell_methods": "area: time: mean where sea", + "cell_measures": "area: areacello", + "long_name": "Depth Integrated Seawater Conservative Temperature Expressed As Heat Content", + "comment": "This is the vertically-integrated heat content derived from conservative temperature (bigthetao).", + "dimensions": "longitude latitude oplayer4 time", + "out_name": "chcint", + "type": "real", + "positive": "", + "spatial_shape": "XY-B", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "chcint", + "variableRootDD": "chcint", + "branding_label": "tavg-op4-hxy-sea", + "branded_variable_name": "chcint_tavg-op4-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.chcint", + "cmip7_compound_name": "ocean.chcint.tavg-op4-hxy-sea.mon.GLB", + "uid": "80ab72a2-a698-11ef-914a-613c0433d878" + }, + "ocean.deptho.ti-u-hxy-sea.fx.GLB": { + "frequency": "fx", + "modeling_realm": "ocean", + "standard_name": "sea_floor_depth_below_geoid", + "units": "m", + "cell_methods": "area: mean where sea", + "cell_measures": "area: areacello", + "long_name": "Sea Floor Depth Below Geoid", + "comment": "Ocean bathymetry. Reported here is the sea floor depth for present day relative to z=0 geoid. Reported as missing for land grid cells.", + "dimensions": "longitude latitude", + "out_name": "deptho", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "None", + "cmip6_table": "Ofx", + "physical_parameter_name": "deptho", + "variableRootDD": "deptho", + "branding_label": "ti-u-hxy-sea", + "branded_variable_name": "deptho_ti-u-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Ofx.deptho", + "cmip7_compound_name": "ocean.deptho.ti-u-hxy-sea.fx.GLB", + "uid": "baa3e4d0-e5dd-11e5-8482-ac72891c3257" + }, + "ocean.difmxybo.tavg-ol-hxy-sea.yr.GLB": { + "frequency": "yr", + "modeling_realm": "ocean", + "standard_name": "ocean_momentum_xy_biharmonic_diffusivity", + "units": "m4 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Ocean Momentum XY Biharmonic Diffusivity", + "comment": "Lateral biharmonic viscosity applied to the momentum equations.", + "dimensions": "longitude latitude olevel time", + "out_name": "difmxybo", + "type": "real", + "positive": "", + "spatial_shape": "XY-O", + "temporal_shape": "time-intv", + "cmip6_table": "Oyr", + "physical_parameter_name": "difmxybo", + "variableRootDD": "difmxybo", + "branding_label": "tavg-ol-hxy-sea", + "branded_variable_name": "difmxybo_tavg-ol-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Oyr.difmxybo", + "cmip7_compound_name": "ocean.difmxybo.tavg-ol-hxy-sea.yr.GLB", + "uid": "baa4e8ee-e5dd-11e5-8482-ac72891c3257" + }, + "ocean.difmxylo.tavg-ol-hxy-sea.yr.GLB": { + "frequency": "yr", + "modeling_realm": "ocean", + "standard_name": "ocean_momentum_xy_laplacian_diffusivity", + "units": "m2 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Ocean Momentum XY Laplacian Diffusivity", + "comment": "Lateral Laplacian viscosity applied to the momentum equations.", + "dimensions": "longitude latitude olevel time", + "out_name": "difmxylo", + "type": "real", + "positive": "", + "spatial_shape": "XY-O", + "temporal_shape": "time-intv", + "cmip6_table": "Oyr", + "physical_parameter_name": "difmxylo", + "variableRootDD": "difmxylo", + "branding_label": "tavg-ol-hxy-sea", + "branded_variable_name": "difmxylo_tavg-ol-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Oyr.difmxylo", + "cmip7_compound_name": "ocean.difmxylo.tavg-ol-hxy-sea.yr.GLB", + "uid": "baa4e4a2-e5dd-11e5-8482-ac72891c3257" + }, + "ocean.diftrblo.tavg-ol-hxy-sea.yr.GLB": { + "frequency": "yr", + "modeling_realm": "ocean", + "standard_name": "ocean_tracer_laplacian_diffusivity_due_to_parameterized_mesoscale_eddy_advection", + "units": "m2 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Ocean Tracer Diffusivity Due to Parameterized Mesoscale Advection", + "comment": "Ocean tracer diffusivity associated with parameterized eddy-induced advective transport. Sometimes this diffusivity is called the \"thickness\" diffusivity. For CMIP5, this diagnostic was called \"ocean tracer bolus laplacian diffusivity\". The CMIP6 name is physically more relevant.", + "dimensions": "longitude latitude olevel time", + "out_name": "diftrblo", + "type": "real", + "positive": "", + "spatial_shape": "XY-O", + "temporal_shape": "time-intv", + "cmip6_table": "Oyr", + "physical_parameter_name": "diftrblo", + "variableRootDD": "diftrblo", + "branding_label": "tavg-ol-hxy-sea", + "branded_variable_name": "diftrblo_tavg-ol-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Oyr.diftrblo", + "cmip7_compound_name": "ocean.diftrblo.tavg-ol-hxy-sea.yr.GLB", + "uid": "baa4d82c-e5dd-11e5-8482-ac72891c3257" + }, + "ocean.diftrelo.tavg-ol-hxy-sea.yr.GLB": { + "frequency": "yr", + "modeling_realm": "ocean", + "standard_name": "ocean_tracer_epineutral_laplacian_diffusivity", + "units": "m2 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Ocean Tracer Epineutral Laplacian Diffusivity", + "comment": "Ocean tracer diffusivity associated with parameterized eddy-induced diffusive transport oriented along neutral or isopycnal directions. Sometimes this diffusivity is called the neutral diffusivity or isopycnal diffusivity or Redi diffusivity.", + "dimensions": "longitude latitude olevel time", + "out_name": "diftrelo", + "type": "real", + "positive": "", + "spatial_shape": "XY-O", + "temporal_shape": "time-intv", + "cmip6_table": "Oyr", + "physical_parameter_name": "diftrelo", + "variableRootDD": "diftrelo", + "branding_label": "tavg-ol-hxy-sea", + "branded_variable_name": "diftrelo_tavg-ol-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Oyr.diftrelo", + "cmip7_compound_name": "ocean.diftrelo.tavg-ol-hxy-sea.yr.GLB", + "uid": "baa4dc50-e5dd-11e5-8482-ac72891c3257" + }, + "ocean.difvho.tavg-ol-hxy-sea.yr.GLB": { + "frequency": "yr", + "modeling_realm": "ocean", + "standard_name": "ocean_vertical_heat_diffusivity", + "units": "m2 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Ocean Vertical Heat Diffusivity", + "comment": "Vertical/dianeutral diffusivity applied to prognostic temperature field.", + "dimensions": "longitude latitude olevel time", + "out_name": "difvho", + "type": "real", + "positive": "", + "spatial_shape": "XY-O", + "temporal_shape": "time-intv", + "cmip6_table": "Oyr", + "physical_parameter_name": "difvho", + "variableRootDD": "difvho", + "branding_label": "tavg-ol-hxy-sea", + "branded_variable_name": "difvho_tavg-ol-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Oyr.difvho", + "cmip7_compound_name": "ocean.difvho.tavg-ol-hxy-sea.yr.GLB", + "uid": "baa4ac8a-e5dd-11e5-8482-ac72891c3257" + }, + "ocean.difvso.tavg-ol-hxy-sea.yr.GLB": { + "frequency": "yr", + "modeling_realm": "ocean", + "standard_name": "ocean_vertical_salt_diffusivity", + "units": "m2 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Ocean Vertical Salt Diffusivity", + "comment": "Vertical/dianeutral diffusivity applied to prognostic salinity field.", + "dimensions": "longitude latitude olevel time", + "out_name": "difvso", + "type": "real", + "positive": "", + "spatial_shape": "XY-O", + "temporal_shape": "time-intv", + "cmip6_table": "Oyr", + "physical_parameter_name": "difvso", + "variableRootDD": "difvso", + "branding_label": "tavg-ol-hxy-sea", + "branded_variable_name": "difvso_tavg-ol-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Oyr.difvso", + "cmip7_compound_name": "ocean.difvso.tavg-ol-hxy-sea.yr.GLB", + "uid": "baa4b0b8-e5dd-11e5-8482-ac72891c3257" + }, + "ocean.dispkexyfo.tavg-u-hxy-sea.yr.GLB": { + "frequency": "yr", + "modeling_realm": "ocean", + "standard_name": "ocean_kinetic_energy_dissipation_per_unit_area_due_to_xy_friction", + "units": "W m-2", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Ocean Kinetic Energy Dissipation per Unit Area Due to XY Friction", + "comment": "Depth integrated impacts on kinetic energy arising from lateral frictional dissipation associated with Laplacian and/or biharmonic viscosity. For CMIP5, this diagnostic was 3d, whereas the CMIP6 depth integrated diagnostic is sufficient for many purposes and reduces archive requirements.", + "dimensions": "longitude latitude time", + "out_name": "dispkexyfo", + "type": "real", + "positive": "", + "spatial_shape": "XY-int", + "temporal_shape": "time-intv", + "cmip6_table": "Oyr", + "physical_parameter_name": "dispkexyfo", + "variableRootDD": "dispkexyfo", + "branding_label": "tavg-u-hxy-sea", + "branded_variable_name": "dispkexyfo_tavg-u-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Oyr.dispkexyfo", + "cmip7_compound_name": "ocean.dispkexyfo.tavg-u-hxy-sea.yr.GLB", + "uid": "baa4ed3a-e5dd-11e5-8482-ac72891c3257" + }, + "ocean.dxto.ti-u-hxy-u.fx.GLB": { + "frequency": "fx", + "modeling_realm": "ocean", + "standard_name": "cell_x_length", + "units": "m", + "cell_methods": "area: point", + "cell_measures": "::MODEL", + "long_name": "Cell Length in the X Direction at t-points", + "comment": "The linear extent of the cell in the x direction of the horizontal grid centered at t-points (points for tracers such as temperature, salinity, etc.). Not applicable to unstructured grids.", + "dimensions": "longitude latitude", + "out_name": "dxto", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "None", + "cmip6_table": "Ofx", + "physical_parameter_name": "dxto", + "variableRootDD": "dxto", + "branding_label": "ti-u-hxy-u", + "branded_variable_name": "dxto_ti-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "Ofx.dxto", + "cmip7_compound_name": "ocean.dxto.ti-u-hxy-u.fx.GLB", + "uid": "83bbfb67-7f07-11ef-9308-b1dd71e64bec" + }, + "ocean.dxuo.ti-u-hxy-u.fx.GLB": { + "frequency": "fx", + "modeling_realm": "ocean", + "standard_name": "cell_x_length", + "units": "m", + "cell_methods": "area: point", + "cell_measures": "::MODEL", + "long_name": "Cell Length in the X Direction at u-points", + "comment": "The linear extent of the cell in the x direction of the horizontal grid centered at u-points (points for velocity in the x-direction). Not applicable to unstructured grids.", + "dimensions": "longitude latitude", + "out_name": "dxuo", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "None", + "cmip6_table": "Ofx", + "physical_parameter_name": "dxuo", + "variableRootDD": "dxuo", + "branding_label": "ti-u-hxy-u", + "branded_variable_name": "dxuo_ti-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "Ofx.dxuo", + "cmip7_compound_name": "ocean.dxuo.ti-u-hxy-u.fx.GLB", + "uid": "83bbfb66-7f07-11ef-9308-b1dd71e64bec" + }, + "ocean.dxvo.ti-u-hxy-u.fx.GLB": { + "frequency": "fx", + "modeling_realm": "ocean", + "standard_name": "cell_x_length", + "units": "m", + "cell_methods": "area: point", + "cell_measures": "::MODEL", + "long_name": "Cell Length in the X Direction at v-points", + "comment": "The linear extent of the cell in the x direction of the horizontal grid centered at v-points (points for velocity in the y-direction). Not applicable to unstructured grids.", + "dimensions": "longitude latitude", + "out_name": "dxvo", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "None", + "cmip6_table": "Ofx", + "physical_parameter_name": "dxvo", + "variableRootDD": "dxvo", + "branding_label": "ti-u-hxy-u", + "branded_variable_name": "dxvo_ti-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "Ofx.dxvo", + "cmip7_compound_name": "ocean.dxvo.ti-u-hxy-u.fx.GLB", + "uid": "83bbfb65-7f07-11ef-9308-b1dd71e64bec" + }, + "ocean.dyto.ti-u-hxy-u.fx.GLB": { + "frequency": "fx", + "modeling_realm": "ocean", + "standard_name": "cell_y_length", + "units": "m", + "cell_methods": "area: point", + "cell_measures": "::MODEL", + "long_name": "Cell Length in the Y Direction at t-points", + "comment": "The linear extent of the cell in the y direction of the horizontal grid centered at t-points (points for tracers such as temperature, salinity, etc.). Not applicable to unstructured grids.", + "dimensions": "longitude latitude", + "out_name": "dyto", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "None", + "cmip6_table": "Ofx", + "physical_parameter_name": "dyto", + "variableRootDD": "dyto", + "branding_label": "ti-u-hxy-u", + "branded_variable_name": "dyto_ti-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "Ofx.dyto", + "cmip7_compound_name": "ocean.dyto.ti-u-hxy-u.fx.GLB", + "uid": "83bbfb64-7f07-11ef-9308-b1dd71e64bec" + }, + "ocean.dyuo.ti-u-hxy-u.fx.GLB": { + "frequency": "fx", + "modeling_realm": "ocean", + "standard_name": "cell_y_length", + "units": "m", + "cell_methods": "area: point", + "cell_measures": "::MODEL", + "long_name": "Cell Length in the Y Direction at u-points", + "comment": "The linear extent of the cell in the y direction of the horizontal grid centered at u-points (points for velocity in the x-direction). Not applicable to unstructured grids.", + "dimensions": "longitude latitude", + "out_name": "dyuo", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "None", + "cmip6_table": "Ofx", + "physical_parameter_name": "dyuo", + "variableRootDD": "dyuo", + "branding_label": "ti-u-hxy-u", + "branded_variable_name": "dyuo_ti-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "Ofx.dyuo", + "cmip7_compound_name": "ocean.dyuo.ti-u-hxy-u.fx.GLB", + "uid": "83bbfb63-7f07-11ef-9308-b1dd71e64bec" + }, + "ocean.dyvo.ti-u-hxy-u.fx.GLB": { + "frequency": "fx", + "modeling_realm": "ocean", + "standard_name": "cell_y_length", + "units": "m", + "cell_methods": "area: point", + "cell_measures": "::MODEL", + "long_name": "Cell Length in the Y Direction at v-points", + "comment": "The linear extent of the cell in the y direction of the horizontal grid centered at v-points (points for velocity in the y-direction). Not applicable to unstructured grids.", + "dimensions": "longitude latitude", + "out_name": "dyvo", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "None", + "cmip6_table": "Ofx", + "physical_parameter_name": "dyvo", + "variableRootDD": "dyvo", + "branding_label": "ti-u-hxy-u", + "branded_variable_name": "dyvo_ti-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "Ofx.dyvo", + "cmip7_compound_name": "ocean.dyvo.ti-u-hxy-u.fx.GLB", + "uid": "83bbfb62-7f07-11ef-9308-b1dd71e64bec" + }, + "ocean.evspsbl.tavg-u-hxy-ifs.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "water_evapotranspiration_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where ice_free_sea over sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Water Evaporation Flux Where Ice Free Ocean over Sea", + "comment": "computed as the total mass of water vapor evaporating from the ice-free portion of the ocean divided by the area of the ocean portion of the grid cell.", + "dimensions": "longitude latitude time", + "out_name": "evs", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "evs", + "variableRootDD": "evspsbl", + "branding_label": "tavg-u-hxy-ifs", + "branded_variable_name": "evspsbl_tavg-u-hxy-ifs", + "region": "GLB", + "cmip6_compound_name": "Omon.evs", + "cmip7_compound_name": "ocean.evspsbl.tavg-u-hxy-ifs.mon.GLB", + "uid": "baa6204c-e5dd-11e5-8482-ac72891c3257" + }, + "ocean.ficeberg.tavg-ol-hxy-sea.3hr.GLB": { + "frequency": "3hr", + "modeling_realm": "ocean", + "standard_name": "water_flux_into_sea_water_from_icebergs", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Water Flux into Sea Water from Icebergs", + "comment": "Computed as the iceberg melt water flux into the ocean divided by the area of the ocean portion of the grid cell.", + "dimensions": "longitude latitude olevel time", + "out_name": "ficeberg", + "type": "real", + "positive": "", + "spatial_shape": "XY-O", + "temporal_shape": "time-intv", + "cmip6_table": "3hr", + "physical_parameter_name": "ficeberg", + "variableRootDD": "ficeberg", + "branding_label": "tavg-ol-hxy-sea", + "branded_variable_name": "ficeberg_tavg-ol-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "3hr.ficeberg", + "cmip7_compound_name": "ocean.ficeberg.tavg-ol-hxy-sea.3hr.GLB", + "uid": "83bbfc6a-7f07-11ef-9308-b1dd71e64bec" + }, + "ocean.ficeberg.tavg-ol-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "water_flux_into_sea_water_from_icebergs", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Water Flux into Sea Water from Icebergs", + "comment": "computed as the iceberg melt water flux into the ocean divided by the area of the ocean portion of the grid cell.", + "dimensions": "longitude latitude olevel time", + "out_name": "ficeberg", + "type": "real", + "positive": "", + "spatial_shape": "XY-O", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "ficeberg", + "variableRootDD": "ficeberg", + "branding_label": "tavg-ol-hxy-sea", + "branded_variable_name": "ficeberg_tavg-ol-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.ficeberg", + "cmip7_compound_name": "ocean.ficeberg.tavg-ol-hxy-sea.mon.GLB", + "uid": "baa628c6-e5dd-11e5-8482-ac72891c3257" + }, + "ocean.ficeberg.tavg-u-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "water_flux_into_sea_water_from_icebergs", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Water Flux into Sea Water from Icebergs", + "comment": "computed as the iceberg melt water flux into the ocean divided by the area of the ocean portion of the grid cell.", + "dimensions": "longitude latitude time", + "out_name": "ficeberg", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "ficeberg", + "variableRootDD": "ficeberg", + "branding_label": "tavg-u-hxy-sea", + "branded_variable_name": "ficeberg_tavg-u-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.ficeberg2d", + "cmip7_compound_name": "ocean.ficeberg.tavg-u-hxy-sea.mon.GLB", + "uid": "baa62cea-e5dd-11e5-8482-ac72891c3257" + }, + "ocean.flandice.tavg-u-hxy-sea.3hr.GLB": { + "frequency": "3hr", + "modeling_realm": "ocean", + "standard_name": "water_flux_into_sea_water_from_land_ice", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Water Flux into Sea Water from Land Ice", + "comment": "Computed as the water flux into the ocean due to land ice (runoff water from surface and base of land ice or melt from base of ice shelf or vertical ice front) into the ocean divided by the area ocean portion of the grid cell.", + "dimensions": "longitude latitude time", + "out_name": "flandice", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "3hr", + "physical_parameter_name": "flandice", + "variableRootDD": "flandice", + "branding_label": "tavg-u-hxy-sea", + "branded_variable_name": "flandice_tavg-u-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "3hr.flandice", + "cmip7_compound_name": "ocean.flandice.tavg-u-hxy-sea.3hr.GLB", + "uid": "83bbfc69-7f07-11ef-9308-b1dd71e64bec" + }, + "ocean.flandice.tavg-u-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "water_flux_into_sea_water_from_land_ice", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Water Flux into Sea Water from Land Ice", + "comment": "Computed as the water flux into the ocean due to land ice (runoff water from surface and base of land ice or melt from base of ice shelf or vertical ice front) into the ocean divided by the area ocean portion of the grid cell", + "dimensions": "longitude latitude time", + "out_name": "flandice", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "flandice", + "variableRootDD": "flandice", + "branding_label": "tavg-u-hxy-sea", + "branded_variable_name": "flandice_tavg-u-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Emon.flandice", + "cmip7_compound_name": "ocean.flandice.tavg-u-hxy-sea.mon.GLB", + "uid": "d2234af2-4a9f-11e6-b84e-ac72891c3257" + }, + "ocean.friver.tavg-u-hxy-sea.3hr.GLB": { + "frequency": "3hr", + "modeling_realm": "ocean", + "standard_name": "water_flux_into_sea_water_from_rivers", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Water Flux into Sea Water from Rivers", + "comment": "Computed as the river flux of water into the ocean divided by the area of the ocean portion of the grid cell.", + "dimensions": "longitude latitude time", + "out_name": "friver", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "3hr", + "physical_parameter_name": "friver", + "variableRootDD": "friver", + "branding_label": "tavg-u-hxy-sea", + "branded_variable_name": "friver_tavg-u-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "3hr.friver", + "cmip7_compound_name": "ocean.friver.tavg-u-hxy-sea.3hr.GLB", + "uid": "83bbfc68-7f07-11ef-9308-b1dd71e64bec" + }, + "ocean.friver.tavg-u-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "water_flux_into_sea_water_from_rivers", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Water Flux into Sea Water from Rivers", + "comment": "computed as the river flux of water into the ocean divided by the area of the ocean portion of the grid cell.", + "dimensions": "longitude latitude time", + "out_name": "friver", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "friver", + "variableRootDD": "friver", + "branding_label": "tavg-u-hxy-sea", + "branded_variable_name": "friver_tavg-u-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.friver", + "cmip7_compound_name": "ocean.friver.tavg-u-hxy-sea.mon.GLB", + "uid": "baa6247a-e5dd-11e5-8482-ac72891c3257" + }, + "ocean.hfacrossline.tavg-u-ht-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "ocean_heat_transport_across_line", + "units": "W", + "cell_methods": "area: mean where sea depth: sum where sea time: mean", + "cell_measures": "", + "long_name": "Ocean Heat Transport across Lines", + "comment": "Depth-integrated total heat transport from resolved and parameterized processes across different lines on the Earth's surface (based on appendix J and table J1 of Griffies\u00a0et al., 2016). Formally, this means the integral along the line of the normal component of the heat transport. Positive and negative numbers refer to total northward/eastward and southward/westward transports, respectively. The transport should be evaluated for the full depth of the ocean, except for the Pacific Equatorial Undercurrent, which is averaged from the surface to 350m. Use Celsius for temperature scale.", + "dimensions": "oline time", + "out_name": "hfacrossline", + "type": "real", + "positive": "", + "spatial_shape": "TR-na", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "hfacrossline", + "variableRootDD": "hfacrossline", + "branding_label": "tavg-u-ht-sea", + "branded_variable_name": "hfacrossline_tavg-u-ht-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.hfacrossline", + "cmip7_compound_name": "ocean.hfacrossline.tavg-u-ht-sea.mon.GLB", + "uid": "80ab7446-a698-11ef-914a-613c0433d878" + }, + "ocean.hfbasin.tavg-u-hyb-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "northward_ocean_heat_transport", + "units": "W", + "cell_methods": "depth: longitude: sum where sea (along a zig-zag grid path spanning a basin) where sea time: mean", + "cell_measures": "", + "long_name": "Northward Ocean Heat Transport", + "comment": "Contains contributions from all physical processes affecting the northward heat transport, including resolved advection, parameterized advection, lateral diffusion, etc. Diagnosed here as a function of latitude and basin. Use Celsius for temperature scale.", + "dimensions": "latitude basin time", + "out_name": "hfbasin", + "type": "real", + "positive": "", + "spatial_shape": "YB-na", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "hfbasin", + "variableRootDD": "hfbasin", + "branding_label": "tavg-u-hyb-sea", + "branded_variable_name": "hfbasin_tavg-u-hyb-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.hfbasin", + "cmip7_compound_name": "ocean.hfbasin.tavg-u-hyb-sea.mon.GLB", + "uid": "baa5c87c-e5dd-11e5-8482-ac72891c3257" + }, + "ocean.hfbasinpadv.tavg-u-hyb-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "northward_ocean_heat_transport_due_to_parameterized_eddy_advection", + "units": "W", + "cell_methods": "depth: longitude: sum where sea (along a zig-zag grid path spanning a basin) where sea time: mean", + "cell_measures": "", + "long_name": "Northward Ocean Heat Transport Due to Parameterized Eddy Advection", + "comment": "Contributions to heat transport from parameterized eddy-induced advective transport due to any subgrid advective process. Diagnosed here as a function of latitude and basin. Use Celsius for temperature scale.", + "dimensions": "latitude basin time", + "out_name": "hfbasinpadv", + "type": "real", + "positive": "", + "spatial_shape": "YB-na", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "hfbasinpadv", + "variableRootDD": "hfbasinpadv", + "branding_label": "tavg-u-hyb-sea", + "branded_variable_name": "hfbasinpadv_tavg-u-hyb-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.hfbasinpadv", + "cmip7_compound_name": "ocean.hfbasinpadv.tavg-u-hyb-sea.mon.GLB", + "uid": "baa5d952-e5dd-11e5-8482-ac72891c3257" + }, + "ocean.hfbasinpmadv.tavg-u-hyb-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "northward_ocean_heat_transport_due_to_parameterized_mesoscale_eddy_advection", + "units": "W", + "cell_methods": "depth: longitude: sum where sea (along a zig-zag grid path spanning a basin) where sea time: mean", + "cell_measures": "", + "long_name": "Northward Ocean Heat Transport Due to Parameterized Mesoscale Advection", + "comment": "Contributions to heat transport from parameterized mesoscale eddy-induced advective transport. Diagnosed here as a function of latitude and basin. Use Celsius for temperature scale.", + "dimensions": "latitude basin time", + "out_name": "hfbasinpmadv", + "type": "real", + "positive": "", + "spatial_shape": "YB-na", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "hfbasinpmadv", + "variableRootDD": "hfbasinpmadv", + "branding_label": "tavg-u-hyb-sea", + "branded_variable_name": "hfbasinpmadv_tavg-u-hyb-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.hfbasinpmadv", + "cmip7_compound_name": "ocean.hfbasinpmadv.tavg-u-hyb-sea.mon.GLB", + "uid": "baa5ccb4-e5dd-11e5-8482-ac72891c3257" + }, + "ocean.hfbasinpmdiff.tavg-u-hyb-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "northward_ocean_heat_transport_due_to_parameterized_mesoscale_eddy_diffusion", + "units": "W", + "cell_methods": "depth: longitude: sum where sea (along a zig-zag grid path spanning a basin) where sea time: mean", + "cell_measures": "", + "long_name": "Northward Ocean Heat Transport Due to Parameterized Mesoscale Diffusion", + "comment": "Contributions to heat transport from parameterized mesoscale eddy-induced diffusive transport (i.e., neutral diffusion). Diagnosed here as a function of latitude and basin.", + "dimensions": "latitude basin time", + "out_name": "hfbasinpmdiff", + "type": "real", + "positive": "", + "spatial_shape": "YB-na", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "hfbasinpmdiff", + "variableRootDD": "hfbasinpmdiff", + "branding_label": "tavg-u-hyb-sea", + "branded_variable_name": "hfbasinpmdiff_tavg-u-hyb-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.hfbasinpmdiff", + "cmip7_compound_name": "ocean.hfbasinpmdiff.tavg-u-hyb-sea.mon.GLB", + "uid": "baa5d0ec-e5dd-11e5-8482-ac72891c3257" + }, + "ocean.hfbasinpsmadv.tavg-u-hyb-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "northward_ocean_heat_transport_due_to_parameterized_submesoscale_eddy_advection", + "units": "W", + "cell_methods": "depth: longitude: sum where sea (along a zig-zag grid path spanning a basin) where sea time: mean", + "cell_measures": "", + "long_name": "Northward Ocean Heat Transport Due to Parameterized Submesoscale Advection", + "comment": "Contributions to heat transport from parameterized mesoscale eddy-induced advective transport. Diagnosed here as a function of latitude and basin. Use Celsius for temperature scale.", + "dimensions": "latitude basin time", + "out_name": "hfbasinpsmadv", + "type": "real", + "positive": "", + "spatial_shape": "YB-na", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "hfbasinpsmadv", + "variableRootDD": "hfbasinpsmadv", + "branding_label": "tavg-u-hyb-sea", + "branded_variable_name": "hfbasinpsmadv_tavg-u-hyb-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.hfbasinpsmadv", + "cmip7_compound_name": "ocean.hfbasinpsmadv.tavg-u-hyb-sea.mon.GLB", + "uid": "baa5d524-e5dd-11e5-8482-ac72891c3257" + }, + "ocean.hfds.tavg-u-hxy-sea.3hr.GLB": { + "frequency": "3hr", + "modeling_realm": "ocean", + "standard_name": "surface_downward_heat_flux_in_sea_water", + "units": "W m-2", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Downward Heat Flux at Sea Water Surface", + "comment": "Net flux of heat entering the liquid water column through its upper surface (excluding any 'flux adjustment').", + "dimensions": "longitude latitude time", + "out_name": "hfds", + "type": "real", + "positive": "down", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "3hr", + "physical_parameter_name": "hfds", + "variableRootDD": "hfds", + "branding_label": "tavg-u-hxy-sea", + "branded_variable_name": "hfds_tavg-u-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "3hr.hfds", + "cmip7_compound_name": "ocean.hfds.tavg-u-hxy-sea.3hr.GLB", + "uid": "83bbfc67-7f07-11ef-9308-b1dd71e64bec" + }, + "ocean.hfds.tavg-u-hxy-sea.mon.30S-90S": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "surface_downward_heat_flux_in_sea_water", + "units": "W m-2", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Downward Heat Flux at Sea Water Surface", + "comment": "This is the net flux of heat entering the liquid water column through its upper surface (excluding any \"flux adjustment\") .", + "dimensions": "longitude latitude time", + "out_name": "hfds", + "type": "real", + "positive": "down", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "hfds", + "variableRootDD": "hfds", + "branding_label": "tavg-u-hxy-sea", + "branded_variable_name": "hfds_tavg-u-hxy-sea", + "region": "30S-90S", + "cmip6_compound_name": "Omon.hfdsSouth30", + "cmip7_compound_name": "ocean.hfds.tavg-u-hxy-sea.mon.30S-90S", + "uid": "80ac318d-a698-11ef-914a-613c0433d878" + }, + "ocean.hfds.tavg-u-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "surface_downward_heat_flux_in_sea_water", + "units": "W m-2", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Downward Heat Flux at Sea Water Surface", + "comment": "This is the net flux of heat entering the liquid water column through its upper surface (excluding any \"flux adjustment\") .", + "dimensions": "longitude latitude time", + "out_name": "hfds", + "type": "real", + "positive": "down", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "hfds", + "variableRootDD": "hfds", + "branding_label": "tavg-u-hxy-sea", + "branded_variable_name": "hfds_tavg-u-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.hfds", + "cmip7_compound_name": "ocean.hfds.tavg-u-hxy-sea.mon.GLB", + "uid": "baa6c33a-e5dd-11e5-8482-ac72891c3257" + }, + "ocean.hfevapds.tavg-u-hxy-ifs.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "temperature_flux_due_to_evaporation_expressed_as_heat_flux_out_of_sea_water", + "units": "W m-2", + "cell_methods": "area: time: mean where ice_free_sea over sea", + "cell_measures": "area: areacello", + "long_name": "Temperature Flux Due to Evaporation Expressed as Heat Flux out of Sea Water", + "comment": "This is defined as \"where ice_free_sea over sea\"", + "dimensions": "longitude latitude time", + "out_name": "hfevapds", + "type": "real", + "positive": "up", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "hfevapds", + "variableRootDD": "hfevapds", + "branding_label": "tavg-u-hxy-ifs", + "branded_variable_name": "hfevapds_tavg-u-hxy-ifs", + "region": "GLB", + "cmip6_compound_name": "Omon.hfevapds", + "cmip7_compound_name": "ocean.hfevapds.tavg-u-hxy-ifs.mon.GLB", + "uid": "baa67b8c-e5dd-11e5-8482-ac72891c3257" + }, + "ocean.hfgeou.tavg-u-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "upward_geothermal_heat_flux_at_sea_floor", + "units": "W m-2", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Upward Geothermal Heat Flux at Sea Floor", + "comment": "Upward geothermal heat flux per unit area on the sea floor", + "dimensions": "longitude latitude time", + "out_name": "hfgeou", + "type": "real", + "positive": "up", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "hfgeou", + "variableRootDD": "hfgeou", + "branding_label": "tavg-u-hxy-sea", + "branded_variable_name": "hfgeou_tavg-u-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.hfgeou", + "cmip7_compound_name": "ocean.hfgeou.tavg-u-hxy-sea.mon.GLB", + "uid": "baa67344-e5dd-11e5-8482-ac72891c3257" + }, + "ocean.hfgeou.ti-u-hxy-sea.fx.GLB": { + "frequency": "fx", + "modeling_realm": "ocean", + "standard_name": "upward_geothermal_heat_flux_at_sea_floor", + "units": "W m-2", + "cell_methods": "area: mean where sea", + "cell_measures": "area: areacello", + "long_name": "Upward Geothermal Heat Flux at Sea Floor", + "comment": "Upward geothermal heat flux per unit area on the sea floor", + "dimensions": "longitude latitude", + "out_name": "hfgeou", + "type": "real", + "positive": "up", + "spatial_shape": "XY-na", + "temporal_shape": "None", + "cmip6_table": "Ofx", + "physical_parameter_name": "hfgeou", + "variableRootDD": "hfgeou", + "branding_label": "ti-u-hxy-sea", + "branded_variable_name": "hfgeou_ti-u-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Ofx.hfgeou", + "cmip7_compound_name": "ocean.hfgeou.ti-u-hxy-sea.fx.GLB", + "uid": "baa3fb50-e5dd-11e5-8482-ac72891c3257" + }, + "ocean.hfibthermds.tavg-ol-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "heat_flux_into_sea_water_due_to_iceberg_thermodynamics", + "units": "W m-2", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Heat Flux into Sea Water Due to Iceberg Thermodynamics", + "comment": "Heat Flux into Sea Water Due to Iceberg Thermodynamics", + "dimensions": "longitude latitude olevel time", + "out_name": "hfibthermds", + "type": "real", + "positive": "", + "spatial_shape": "XY-O", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "hfibthermds", + "variableRootDD": "hfibthermds", + "branding_label": "tavg-ol-hxy-sea", + "branded_variable_name": "hfibthermds_tavg-ol-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.hfibthermds", + "cmip7_compound_name": "ocean.hfibthermds.tavg-ol-hxy-sea.mon.GLB", + "uid": "baa6a18e-e5dd-11e5-8482-ac72891c3257" + }, + "ocean.hfibthermds.tavg-u-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "heat_flux_into_sea_water_due_to_iceberg_thermodynamics", + "units": "W m-2", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Heat Flux into Sea Water Due to Iceberg Thermodynamics", + "comment": "Heat Flux into Sea Water Due to Iceberg Thermodynamics", + "dimensions": "longitude latitude time", + "out_name": "hfibthermds", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "hfibthermds", + "variableRootDD": "hfibthermds", + "branding_label": "tavg-u-hxy-sea", + "branded_variable_name": "hfibthermds_tavg-u-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.hfibthermds2d", + "cmip7_compound_name": "ocean.hfibthermds.tavg-u-hxy-sea.mon.GLB", + "uid": "baa6a5bc-e5dd-11e5-8482-ac72891c3257" + }, + "ocean.hfrainds.tavg-u-hxy-ifs.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "temperature_flux_due_to_rainfall_expressed_as_heat_flux_into_sea_water", + "units": "W m-2", + "cell_methods": "area: time: mean where ice_free_sea over sea", + "cell_measures": "area: areacello", + "long_name": "Temperature Flux Due to Rainfall Expressed as Heat Flux into Sea Water", + "comment": "This is defined as \"where ice_free_sea over sea\"; i.e., the total flux (considered here) entering the ice-free portion of the grid cell divided by the area of the ocean portion of the grid cell. All such heat fluxes are computed based on Celsius scale.", + "dimensions": "longitude latitude time", + "out_name": "hfrainds", + "type": "real", + "positive": "down", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "hfrainds", + "variableRootDD": "hfrainds", + "branding_label": "tavg-u-hxy-ifs", + "branded_variable_name": "hfrainds_tavg-u-hxy-ifs", + "region": "GLB", + "cmip6_compound_name": "Omon.hfrainds", + "cmip7_compound_name": "ocean.hfrainds.tavg-u-hxy-ifs.mon.GLB", + "uid": "baa67768-e5dd-11e5-8482-ac72891c3257" + }, + "ocean.hfrunoffds.tavg-ol-hxy-sea.3hr.GLB": { + "frequency": "3hr", + "modeling_realm": "ocean", + "standard_name": "temperature_flux_due_to_runoff_expressed_as_heat_flux_into_sea_water", + "units": "W m-2", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Temperature Flux Due to Runoff Expressed as Heat Flux into Sea Water", + "comment": "Heat flux associated with liquid water which drains from land. It is calculated relative to the heat that would be transported by runoff water entering the sea at zero degrees Celsius.", + "dimensions": "longitude latitude olevel time", + "out_name": "hfrunoffds", + "type": "real", + "positive": "", + "spatial_shape": "XY-O", + "temporal_shape": "time-intv", + "cmip6_table": "3hr", + "physical_parameter_name": "hfrunoffds", + "variableRootDD": "hfrunoffds", + "branding_label": "tavg-ol-hxy-sea", + "branded_variable_name": "hfrunoffds_tavg-ol-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "3hr.hfrunoffds", + "cmip7_compound_name": "ocean.hfrunoffds.tavg-ol-hxy-sea.3hr.GLB", + "uid": "83bbfc66-7f07-11ef-9308-b1dd71e64bec" + }, + "ocean.hfrunoffds.tavg-ol-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "temperature_flux_due_to_runoff_expressed_as_heat_flux_into_sea_water", + "units": "W m-2", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Temperature Flux Due to Runoff Expressed as Heat Flux into Sea Water", + "comment": "Heat flux associated with liquid water which drains from land. It is calculated relative to the heat that would be transported by runoff water entering the sea at zero degrees Celsius.", + "dimensions": "longitude latitude olevel time", + "out_name": "hfrunoffds", + "type": "real", + "positive": "", + "spatial_shape": "XY-O", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "hfrunoffds", + "variableRootDD": "hfrunoffds", + "branding_label": "tavg-ol-hxy-sea", + "branded_variable_name": "hfrunoffds_tavg-ol-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.hfrunoffds", + "cmip7_compound_name": "ocean.hfrunoffds.tavg-ol-hxy-sea.mon.GLB", + "uid": "baa68000-e5dd-11e5-8482-ac72891c3257" + }, + "ocean.hfrunoffds.tavg-u-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "temperature_flux_due_to_runoff_expressed_as_heat_flux_into_sea_water", + "units": "W m-2", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Temperature Flux Due to Runoff Expressed as Heat Flux into Sea Water", + "comment": "Heat flux associated with liquid water which drains from land. It is calculated relative to the heat that would be transported by runoff water entering the sea at zero degrees Celsius.", + "dimensions": "longitude latitude time", + "out_name": "hfrunoffds", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "hfrunoffds", + "variableRootDD": "hfrunoffds", + "branding_label": "tavg-u-hxy-sea", + "branded_variable_name": "hfrunoffds_tavg-u-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.hfrunoffds2d", + "cmip7_compound_name": "ocean.hfrunoffds.tavg-u-hxy-sea.mon.GLB", + "uid": "baa6842e-e5dd-11e5-8482-ac72891c3257" + }, + "ocean.hfsnthermds.tavg-ol-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "heat_flux_into_sea_water_due_to_snow_thermodynamics", + "units": "W m-2", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Heat Flux into Sea Water Due to Snow Thermodynamics", + "comment": "In accordance with common usage in geophysical disciplines, \"flux\" implies per unit area, called \"flux density\" in physics. The specification of a physical process by the phrase due_to_process means that the quantity named is a single term in a sum of terms which together compose the general quantity named by omitting the phrase. \"Snow thermodynamics\" refers to the addition or subtraction of mass due to surface and basal fluxes, i.e., due to melting, sublimation and fusion.", + "dimensions": "longitude latitude olevel time", + "out_name": "hfsnthermds", + "type": "real", + "positive": "", + "spatial_shape": "XY-O", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "hfsnthermds", + "variableRootDD": "hfsnthermds", + "branding_label": "tavg-ol-hxy-sea", + "branded_variable_name": "hfsnthermds_tavg-ol-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.hfsnthermds", + "cmip7_compound_name": "ocean.hfsnthermds.tavg-ol-hxy-sea.mon.GLB", + "uid": "baa68852-e5dd-11e5-8482-ac72891c3257" + }, + "ocean.hfsnthermds.tavg-u-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "heat_flux_into_sea_water_due_to_snow_thermodynamics", + "units": "W m-2", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Heat Flux into Sea Water Due to Snow Thermodynamics", + "comment": "In accordance with common usage in geophysical disciplines, \"flux\" implies per unit area, called \"flux density\" in physics. The specification of a physical process by the phrase due_to_process means that the quantity named is a single term in a sum of terms which together compose the general quantity named by omitting the phrase. \"Snow thermodynamics\" refers to the addition or subtraction of mass due to surface and basal fluxes, i.e., due to melting, sublimation and fusion.", + "dimensions": "longitude latitude time", + "out_name": "hfsnthermds", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "hfsnthermds", + "variableRootDD": "hfsnthermds", + "branding_label": "tavg-u-hxy-sea", + "branded_variable_name": "hfsnthermds_tavg-u-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.hfsnthermds2d", + "cmip7_compound_name": "ocean.hfsnthermds.tavg-u-hxy-sea.mon.GLB", + "uid": "baa68c80-e5dd-11e5-8482-ac72891c3257" + }, + "ocean.hfx.tavg-ol-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "ocean_heat_x_transport", + "units": "W", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "3D Ocean Heat X Transport", + "comment": "Contains all contributions to 'x-ward' heat transport from resolved and parameterized processes. Use Celsius for temperature scale", + "dimensions": "longitude latitude olevel time", + "out_name": "hfx", + "type": "real", + "positive": "", + "spatial_shape": "XY-O", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "hfx", + "variableRootDD": "hfx", + "branding_label": "tavg-ol-hxy-sea", + "branded_variable_name": "hfx_tavg-ol-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.hfx", + "cmip7_compound_name": "ocean.hfx.tavg-ol-hxy-sea.mon.GLB", + "uid": "83bbfb51-7f07-11ef-9308-b1dd71e64bec" + }, + "ocean.hfx.tavg-u-hxy-sea.day.GLB": { + "frequency": "day", + "modeling_realm": "ocean", + "standard_name": "ocean_heat_x_transport", + "units": "W", + "cell_methods": "area: mean where sea depth: sum where sea (over entire ocean column) time: mean", + "cell_measures": "area: areacello", + "long_name": "Vertically Integrated Ocean Heat X Transport", + "comment": "Ocean heat x transport vertically integrated over the whole ocean depth. Contains all contributions to 'x-ward' heat transport from resolved and parameterized processes. Use Celsius for temperature scale. Report on native horizontal grid.", + "dimensions": "longitude latitude time", + "out_name": "hfx", + "type": "real", + "positive": "", + "spatial_shape": "XY-int", + "temporal_shape": "time-intv", + "cmip6_table": "Oday", + "physical_parameter_name": "hfx", + "variableRootDD": "hfx", + "branding_label": "tavg-u-hxy-sea", + "branded_variable_name": "hfx_tavg-u-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Oday.hfxint", + "cmip7_compound_name": "ocean.hfx.tavg-u-hxy-sea.day.GLB", + "uid": "83bbfb89-7f07-11ef-9308-b1dd71e64bec" + }, + "ocean.hfx.tavg-u-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "ocean_heat_x_transport", + "units": "W", + "cell_methods": "area: mean where sea depth: sum where sea (over entire ocean column) time: mean", + "cell_measures": "area: areacello", + "long_name": "Vertically Integrated Ocean Heat X Transport", + "comment": "Ocean heat x transport vertically integrated over the whole ocean depth. Contains all contributions to 'x-ward' heat transport from resolved and parameterized processes. Use Celsius for temperature scale. Report on native horizontal grid.", + "dimensions": "longitude latitude time", + "out_name": "hfx", + "type": "real", + "positive": "", + "spatial_shape": "XY-int", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "hfx", + "variableRootDD": "hfx", + "branding_label": "tavg-u-hxy-sea", + "branded_variable_name": "hfx_tavg-u-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.hfxint", + "cmip7_compound_name": "ocean.hfx.tavg-u-hxy-sea.mon.GLB", + "uid": "baa5e2e4-e5dd-11e5-8482-ac72891c3257" + }, + "ocean.hfy.tavg-ol-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "ocean_heat_y_transport", + "units": "W", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "3D Ocean Heat Y Transport", + "comment": "Contains all contributions to 'y-ward' heat transport from resolved and parameterized processes. Use Celsius for temperature scale.", + "dimensions": "longitude latitude olevel time", + "out_name": "hfy", + "type": "real", + "positive": "", + "spatial_shape": "XY-O", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "hfy", + "variableRootDD": "hfy", + "branding_label": "tavg-ol-hxy-sea", + "branded_variable_name": "hfy_tavg-ol-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.hfy", + "cmip7_compound_name": "ocean.hfy.tavg-ol-hxy-sea.mon.GLB", + "uid": "83bbfb50-7f07-11ef-9308-b1dd71e64bec" + }, + "ocean.hfy.tavg-u-hxy-sea.day.GLB": { + "frequency": "day", + "modeling_realm": "ocean", + "standard_name": "ocean_heat_y_transport", + "units": "W", + "cell_methods": "area: mean where sea depth: sum where sea (over entire ocean column) time: mean", + "cell_measures": "area: areacello", + "long_name": "Vertically Integrated Ocean Heat Y Transport", + "comment": "Ocean heat y transport vertically integrated over the whole ocean depth. Contains all contributions to 'y-ward' heat transport from resolved and parameterized processes. Use Celsius for temperature scale. Report on native horizontal grid.", + "dimensions": "longitude latitude time", + "out_name": "hfy", + "type": "real", + "positive": "", + "spatial_shape": "XY-int", + "temporal_shape": "time-intv", + "cmip6_table": "Oday", + "physical_parameter_name": "hfy", + "variableRootDD": "hfy", + "branding_label": "tavg-u-hxy-sea", + "branded_variable_name": "hfy_tavg-u-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Oday.hfyint", + "cmip7_compound_name": "ocean.hfy.tavg-u-hxy-sea.day.GLB", + "uid": "83bbfb88-7f07-11ef-9308-b1dd71e64bec" + }, + "ocean.hfy.tavg-u-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "ocean_heat_y_transport", + "units": "W", + "cell_methods": "area: mean where sea depth: sum where sea (over entire ocean column) time: mean", + "cell_measures": "area: areacello", + "long_name": "Vertically Integrated Ocean Heat Y Transport", + "comment": "Ocean heat y transport vertically integrated over the whole ocean depth. Contains all contributions to 'y-ward' heat transport from resolved and parameterized processes. Use Celsius for temperature scale. Report on native horizontal grid.", + "dimensions": "longitude latitude time", + "out_name": "hfy", + "type": "real", + "positive": "", + "spatial_shape": "XY-int", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "hfy", + "variableRootDD": "hfy", + "branding_label": "tavg-u-hxy-sea", + "branded_variable_name": "hfy_tavg-u-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.hfyint", + "cmip7_compound_name": "ocean.hfy.tavg-u-hxy-sea.mon.GLB", + "uid": "baa5e758-e5dd-11e5-8482-ac72891c3257" + }, + "ocean.htovgyre.tavg-u-hyb-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "northward_ocean_heat_transport_due_to_gyre", + "units": "W", + "cell_methods": "depth: longitude: sum where sea (along a zig-zag grid path spanning a basin) time: mean", + "cell_measures": "", + "long_name": "Northward Ocean Heat Transport Due to Gyre", + "comment": "From all advective mass transport processes, resolved and parameterized.", + "dimensions": "latitude basin time", + "out_name": "htovgyre", + "type": "real", + "positive": "", + "spatial_shape": "YB-na", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "htovgyre", + "variableRootDD": "htovgyre", + "branding_label": "tavg-u-hyb-sea", + "branded_variable_name": "htovgyre_tavg-u-hyb-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.htovgyre", + "cmip7_compound_name": "ocean.htovgyre.tavg-u-hyb-sea.mon.GLB", + "uid": "baa5ef8c-e5dd-11e5-8482-ac72891c3257" + }, + "ocean.htovovrt.tavg-u-hyb-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "northward_ocean_heat_transport_due_to_overturning", + "units": "W", + "cell_methods": "depth: longitude: sum where sea (along a zig-zag grid path spanning a basin) time: mean", + "cell_measures": "", + "long_name": "Northward Ocean Heat Transport Due to Overturning", + "comment": "From all advective mass transport processes, resolved and parameterized.", + "dimensions": "latitude basin time", + "out_name": "htovovrt", + "type": "real", + "positive": "", + "spatial_shape": "YB-na", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "htovovrt", + "variableRootDD": "htovovrt", + "branding_label": "tavg-u-hyb-sea", + "branded_variable_name": "htovovrt_tavg-u-hyb-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.htovovrt", + "cmip7_compound_name": "ocean.htovovrt.tavg-u-hyb-sea.mon.GLB", + "uid": "baa5f3ba-e5dd-11e5-8482-ac72891c3257" + }, + "ocean.masscello.tavg-ol-hxy-sea.dec.GLB": { + "frequency": "dec", + "modeling_realm": "ocean", + "standard_name": "sea_water_mass_per_unit_area", + "units": "kg m-2", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Ocean Grid-Cell Mass per Area", + "comment": "For Boussinesq models, report this diagnostic as Boussinesq reference density times grid celll volume.", + "dimensions": "longitude latitude olevel time", + "out_name": "masscello", + "type": "real", + "positive": "", + "spatial_shape": "XY-O", + "temporal_shape": "time-intv", + "cmip6_table": "Odec", + "physical_parameter_name": "masscello", + "variableRootDD": "masscello", + "branding_label": "tavg-ol-hxy-sea", + "branded_variable_name": "masscello_tavg-ol-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Odec.masscello", + "cmip7_compound_name": "ocean.masscello.tavg-ol-hxy-sea.dec.GLB", + "uid": "8872d1a8-1027-11e8-9d87-1c4d70487308" + }, + "ocean.masscello.tavg-ol-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "sea_water_mass_per_unit_area", + "units": "kg m-2", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Ocean Grid-Cell Mass per Area", + "comment": "For Boussinesq models, report this diagnostic as Boussinesq reference density times grid celll volume.", + "dimensions": "longitude latitude olevel time", + "out_name": "masscello", + "type": "real", + "positive": "", + "spatial_shape": "XY-O", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "masscello", + "variableRootDD": "masscello", + "branding_label": "tavg-ol-hxy-sea", + "branded_variable_name": "masscello_tavg-ol-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.masscello", + "cmip7_compound_name": "ocean.masscello.tavg-ol-hxy-sea.mon.GLB", + "uid": "baa5147c-e5dd-11e5-8482-ac72891c3257" + }, + "ocean.masscello.ti-ol-hxy-sea.fx.GLB": { + "frequency": "fx", + "modeling_realm": "ocean", + "standard_name": "sea_water_mass_per_unit_area", + "units": "kg m-2", + "cell_methods": "area: mean where sea", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Ocean Grid-Cell Mass per Area", + "comment": "Tracer grid-cell mass per unit area used for computing tracer budgets. For Boussinesq models with static ocean grid cell thickness, masscello = rhozero\\*thickcello, where thickcello is static cell thickness and rhozero is constant Boussinesq reference density. More generally, masscello is time dependent and reported as part of Omon.", + "dimensions": "longitude latitude olevel", + "out_name": "masscello", + "type": "real", + "positive": "", + "spatial_shape": "XY-O", + "temporal_shape": "None", + "cmip6_table": "Ofx", + "physical_parameter_name": "masscello", + "variableRootDD": "masscello", + "branding_label": "ti-ol-hxy-sea", + "branded_variable_name": "masscello_ti-ol-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Ofx.masscello", + "cmip7_compound_name": "ocean.masscello.ti-ol-hxy-sea.fx.GLB", + "uid": "baa3ea2a-e5dd-11e5-8482-ac72891c3257" + }, + "ocean.masso.tavg-u-hm-sea.dec.GLB": { + "frequency": "dec", + "modeling_realm": "ocean", + "standard_name": "sea_water_mass", + "units": "kg", + "cell_methods": "area: sum where sea time: mean", + "cell_measures": "", + "long_name": "Sea Water Mass", + "comment": "Total mass of liquid sea water. For Boussinesq models, report this diagnostic as Boussinesq reference density times total volume.", + "dimensions": "time", + "out_name": "masso", + "type": "real", + "positive": "", + "spatial_shape": "na-na", + "temporal_shape": "time-intv", + "cmip6_table": "Odec", + "physical_parameter_name": "masso", + "variableRootDD": "masso", + "branding_label": "tavg-u-hm-sea", + "branded_variable_name": "masso_tavg-u-hm-sea", + "region": "GLB", + "cmip6_compound_name": "Odec.masso", + "cmip7_compound_name": "ocean.masso.tavg-u-hm-sea.dec.GLB", + "uid": "4794f818-bb0b-11e6-8316-5980f7b176d1" + }, + "ocean.masso.tavg-u-hm-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "sea_water_mass", + "units": "kg", + "cell_methods": "area: sum where sea time: mean", + "cell_measures": "", + "long_name": "Sea Water Mass", + "comment": "Total mass of liquid sea water. For Boussinesq models, report this diagnostic as Boussinesq reference density times total volume.", + "dimensions": "time", + "out_name": "masso", + "type": "real", + "positive": "", + "spatial_shape": "na-na", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "masso", + "variableRootDD": "masso", + "branding_label": "tavg-u-hm-sea", + "branded_variable_name": "masso_tavg-u-hm-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.masso", + "cmip7_compound_name": "ocean.masso.tavg-u-hm-sea.mon.GLB", + "uid": "baa4f730-e5dd-11e5-8482-ac72891c3257" + }, + "ocean.mfo.tavg-u-ht-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "sea_water_transport_across_line", + "units": "kg s-1", + "cell_methods": "depth: sum where sea time: mean", + "cell_measures": "", + "long_name": "Sea Water Transport", + "comment": "Transport across_line means that which crosses a particular line on the Earth's surface (based on appendix J and table J1 of Griffies et al, 2016 (). Formally this means the integral along the line of the normal component of the transport. The transport should be evaluated for the full depth of the ocean, except for the Pacific Equatorial Undercurrent, which is averaged from the surface to 350m.", + "dimensions": "oline time", + "out_name": "mfo", + "type": "real", + "positive": "", + "spatial_shape": "TR-na", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "mfo", + "variableRootDD": "mfo", + "branding_label": "tavg-u-ht-sea", + "branded_variable_name": "mfo_tavg-u-ht-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.mfo", + "cmip7_compound_name": "ocean.mfo.tavg-u-ht-sea.mon.GLB", + "uid": "baa60bf2-e5dd-11e5-8482-ac72891c3257" + }, + "ocean.mlotst.tavg-u-hxy-sea.day.GLB": { + "frequency": "day", + "modeling_realm": "ocean", + "standard_name": "ocean_mixed_layer_thickness_defined_by_sigma_t", + "units": "m", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Ocean Mixed Layer Thickness Defined by Delta Sigma T of 0.03 kg m-3 referenced to the model level closest to 10 m depth", + "comment": "Sigma T is potential density referenced to ocean surface. Defined by Sigma T of 0.03 kg m-3 wrt to model level closest to 10 m depth.", + "dimensions": "longitude latitude time deltasigt", + "out_name": "mlotst", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Eday", + "physical_parameter_name": "mlotst", + "variableRootDD": "mlotst", + "branding_label": "tavg-u-hxy-sea", + "branded_variable_name": "mlotst_tavg-u-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Eday.mlotst", + "cmip7_compound_name": "ocean.mlotst.tavg-u-hxy-sea.day.GLB", + "uid": "8168b848-f906-11e6-a176-5404a60d96b5" + }, + "ocean.mlotst.tavg-u-hxy-sea.mon.30S-90S": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "ocean_mixed_layer_thickness_defined_by_sigma_t", + "units": "m", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Ocean Mixed Layer Thickness Defined by Delta Sigma T of 0.03 kg m-3 referenced to the model level closest to 10 m depth", + "comment": "Sigma T is potential density referenced to ocean surface. Defined by Sigma T of 0.03 kg m-3 wrt to model level closest to 10 m depth.", + "dimensions": "longitude latitude time deltasigt", + "out_name": "mlotst", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "mlotst", + "variableRootDD": "mlotst", + "branding_label": "tavg-u-hxy-sea", + "branded_variable_name": "mlotst_tavg-u-hxy-sea", + "region": "30S-90S", + "cmip6_compound_name": "Omon.mlotstSouth30", + "cmip7_compound_name": "ocean.mlotst.tavg-u-hxy-sea.mon.30S-90S", + "uid": "80ac31a0-a698-11ef-914a-613c0433d878" + }, + "ocean.mlotst.tavg-u-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "ocean_mixed_layer_thickness_defined_by_sigma_t", + "units": "m", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Ocean Mixed Layer Thickness Defined by Delta Sigma T of 0.03 kg m-3 referenced to the model level closest to 10 m depth", + "comment": "Sigma T is potential density referenced to ocean surface. Defined by Sigma T of 0.03 kg m-3 wrt to model level closest to 10 m depth.", + "dimensions": "longitude latitude time deltasigt", + "out_name": "mlotst", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "mlotst", + "variableRootDD": "mlotst", + "branding_label": "tavg-u-hxy-sea", + "branded_variable_name": "mlotst_tavg-u-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.mlotst", + "cmip7_compound_name": "ocean.mlotst.tavg-u-hxy-sea.mon.GLB", + "uid": "baa57688-e5dd-11e5-8482-ac72891c3257" + }, + "ocean.mlotst.tmax-u-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "ocean_mixed_layer_thickness_defined_by_sigma_t", + "units": "m", + "cell_methods": "area: mean where sea time: maximum", + "cell_measures": "area: areacello", + "long_name": "Maximum Ocean Mixed Layer Thickness Defined by Delta Sigma T of 0.03 kg m-3 referenced to the model level closest to 10 m depth", + "comment": "Sigma T is potential density referenced to ocean surface. Defined by Sigma T of 0.03 kg m-3 wrt to model level closest to 10 m depth.", + "dimensions": "longitude latitude time deltasigt", + "out_name": "mlotstmax", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "mlotstmax", + "variableRootDD": "mlotst", + "branding_label": "tmax-u-hxy-sea", + "branded_variable_name": "mlotst_tmax-u-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.mlotstmax", + "cmip7_compound_name": "ocean.mlotst.tmax-u-hxy-sea.mon.GLB", + "uid": "1aab3e76-b006-11e6-9289-ac72891c3257" + }, + "ocean.mlotst.tmin-u-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "ocean_mixed_layer_thickness_defined_by_sigma_t", + "units": "m", + "cell_methods": "area: mean where sea time: minimum", + "cell_measures": "area: areacello", + "long_name": "Minimum Ocean Mixed Layer Thickness Defined by Delta Sigma T of 0.03 kg m-3 referenced to the model level closest to 10 m depth", + "comment": "Sigma T is potential density referenced to ocean surface. Defined by Sigma T of 0.03 kg m-3 wrt to model level closest to 10 m depth.", + "dimensions": "longitude latitude time deltasigt", + "out_name": "mlotstmin", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "mlotstmin", + "variableRootDD": "mlotst", + "branding_label": "tmin-u-hxy-sea", + "branded_variable_name": "mlotst_tmin-u-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.mlotstmin", + "cmip7_compound_name": "ocean.mlotst.tmin-u-hxy-sea.mon.GLB", + "uid": "1aab4e7a-b006-11e6-9289-ac72891c3257" + }, + "ocean.mlotstsq.tavg-u-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "square_of_ocean_mixed_layer_thickness_defined_by_sigma_t", + "units": "m2", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Square of Ocean Mixed Layer Thickness Defined by Delta Sigma T of 0.03 kg m-3 referenced to the model level closest to 10 m depth", + "comment": "Sigma T is potential density referenced to ocean surface. The phrase \"square_of_X\" means X\\*X. The ocean mixed layer is the upper part of the ocean, regarded as being well-mixed. The base of the mixed layer defined by \"temperature\", \"sigma\", \"sigma_theta\", \"sigma_t\" or vertical diffusivity is the level at which the quantity indicated differs from its surface value by a certain amount. A coordinate variable or scalar coordinate variable with standard name sea_water_sigma_t_difference can be used to specify the sigma_t criterion that determines the layer thickness. Sigma-t of sea water is the density of water at atmospheric pressure (i.e. the surface) having the same temperature and salinity, minus 1000 kg m-3. \"Thickness\" means the vertical extent of a layer.", + "dimensions": "longitude latitude time deltasigt", + "out_name": "mlotstsq", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "mlotstsq", + "variableRootDD": "mlotstsq", + "branding_label": "tavg-u-hxy-sea", + "branded_variable_name": "mlotstsq_tavg-u-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.mlotstsq", + "cmip7_compound_name": "ocean.mlotstsq.tavg-u-hxy-sea.mon.GLB", + "uid": "baa57ac0-e5dd-11e5-8482-ac72891c3257" + }, + "ocean.mpw.tavg-u-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "sea_surface_wave_mean_period", + "units": "s", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Total Wave Mean Period", + "comment": "Average wave period (i.e., time in-between two wave crests) across the entire two-dimensional wave spectrum, incorporating both wind-sea and swell waves. In spectral wind wave models, it is calculated using spectral moments, mathematical measures that describe the shape and characteristics of the wave spectrum.", + "dimensions": "longitude latitude time", + "out_name": "mpw", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "mpw", + "variableRootDD": "mpw", + "branding_label": "tavg-u-hxy-sea", + "branded_variable_name": "mpw_tavg-u-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.mpw", + "cmip7_compound_name": "ocean.mpw.tavg-u-hxy-sea.mon.GLB", + "uid": "80ab7419-a698-11ef-914a-613c0433d878" + }, + "ocean.mpw.tpt-u-hxy-sea.3hr.GLB": { + "frequency": "3hr", + "modeling_realm": "ocean", + "standard_name": "sea_surface_wave_mean_period", + "units": "s", + "cell_methods": "area: mean where sea time: point", + "cell_measures": "area: areacello", + "long_name": "Total Wave Mean Period", + "comment": "Average wave period (i.e., time in-between two wave crests) across the entire two-dimensional wave spectrum, incorporating both wind-sea and swell waves. In spectral wind wave models, it is calculated using spectral moments, mathematical measures that describe the shape and characteristics of the wave spectrum.", + "dimensions": "longitude latitude time1", + "out_name": "mpw", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-point", + "cmip6_table": "3hrPt", + "physical_parameter_name": "mpw", + "variableRootDD": "mpw", + "branding_label": "tpt-u-hxy-sea", + "branded_variable_name": "mpw_tpt-u-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "3hrPt.mpw", + "cmip7_compound_name": "ocean.mpw.tpt-u-hxy-sea.3hr.GLB", + "uid": "80ab744a-a698-11ef-914a-613c0433d878" + }, + "ocean.mpwswell.tavg-u-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "sea_surface_swell_wave_mean_period", + "units": "s", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Swell Wave Mean Period", + "comment": "Average wave period (i.e., time in-between two wave crests) of swell waves only (i.e., waves that have propagated away from their generation area). In spectral wind wave models, it is calculated using spectral moments, mathematical measures that describe the shape and characteristics of the wave spectrum.", + "dimensions": "longitude latitude time", + "out_name": "mpwswell", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "mpwswell", + "variableRootDD": "mpwswell", + "branding_label": "tavg-u-hxy-sea", + "branded_variable_name": "mpwswell_tavg-u-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.mpwswell", + "cmip7_compound_name": "ocean.mpwswell.tavg-u-hxy-sea.mon.GLB", + "uid": "80ab7425-a698-11ef-914a-613c0433d878" + }, + "ocean.mpwswell.tpt-u-hxy-sea.3hr.GLB": { + "frequency": "3hr", + "modeling_realm": "ocean", + "standard_name": "sea_surface_swell_wave_mean_period", + "units": "s", + "cell_methods": "area: mean where sea time: point", + "cell_measures": "area: areacello", + "long_name": "Swell Wave Mean Period", + "comment": "Average wave period (i.e., time in-between two wave crests) of swell waves only (i.e., waves that have propagated away from their generation area). In spectral wind wave models, it is calculated using spectral moments, mathematical measures that describe the shape and characteristics of the wave spectrum.", + "dimensions": "longitude latitude time1", + "out_name": "mpwswell", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-point", + "cmip6_table": "3hrPt", + "physical_parameter_name": "mpwswell", + "variableRootDD": "mpwswell", + "branding_label": "tpt-u-hxy-sea", + "branded_variable_name": "mpwswell_tpt-u-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "3hrPt.mpwswell", + "cmip7_compound_name": "ocean.mpwswell.tpt-u-hxy-sea.3hr.GLB", + "uid": "80ab741c-a698-11ef-914a-613c0433d878" + }, + "ocean.mpwwindsea.tavg-u-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "sea_surface_wind_wave_mean_period", + "units": "s", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Wind Sea Wave Mean Period", + "comment": "Average wave period (i.e., time in-between two wave crests) of wind-sea waves only (i.e., local wind waves). In spectral wind wave models, it is calculated using spectral moments, mathematical measures that describe the shape and characteristics of the wave spectrum.", + "dimensions": "longitude latitude time", + "out_name": "mpwwindsea", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "mpwwindsea", + "variableRootDD": "mpwwindsea", + "branding_label": "tavg-u-hxy-sea", + "branded_variable_name": "mpwwindsea_tavg-u-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.mpwwindsea", + "cmip7_compound_name": "ocean.mpwwindsea.tavg-u-hxy-sea.mon.GLB", + "uid": "80ab743d-a698-11ef-914a-613c0433d878" + }, + "ocean.mpwwindsea.tpt-u-hxy-sea.3hr.GLB": { + "frequency": "3hr", + "modeling_realm": "ocean", + "standard_name": "sea_surface_wind_wave_mean_period", + "units": "s", + "cell_methods": "area: mean where sea time: point", + "cell_measures": "area: areacello", + "long_name": "Wind Sea Wave Mean Period", + "comment": "Average wave period (i.e., time in-between two wave crests) of wind-sea waves only (i.e., local wind waves). In spectral wind wave models, it is calculated using spectral moments, mathematical measures that describe the shape and characteristics of the wave spectrum.", + "dimensions": "longitude latitude time1", + "out_name": "mpwwindsea", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-point", + "cmip6_table": "3hrPt", + "physical_parameter_name": "mpwwindsea", + "variableRootDD": "mpwwindsea", + "branding_label": "tpt-u-hxy-sea", + "branded_variable_name": "mpwwindsea_tpt-u-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "3hrPt.mpwwindsea", + "cmip7_compound_name": "ocean.mpwwindsea.tpt-u-hxy-sea.3hr.GLB", + "uid": "80ab7424-a698-11ef-914a-613c0433d878" + }, + "ocean.msftbarot.tavg-u-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "ocean_barotropic_mass_streamfunction", + "units": "kg s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Ocean Barotropic Mass Streamfunction", + "comment": "Streamfunction or its approximation for free surface models. See OMDP document for details.", + "dimensions": "longitude latitude time", + "out_name": "msftbarot", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "msftbarot", + "variableRootDD": "msftbarot", + "branding_label": "tavg-u-hxy-sea", + "branded_variable_name": "msftbarot_tavg-u-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.msftbarot", + "cmip7_compound_name": "ocean.msftbarot.tavg-u-hxy-sea.mon.GLB", + "uid": "baa57250-e5dd-11e5-8482-ac72891c3257" + }, + "ocean.msftm.tavg-ol-hyb-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "ocean_meridional_overturning_mass_streamfunction", + "units": "kg s-1", + "cell_methods": "depth: longitude: sum where sea (along a zig-zag grid path spanning a basin) time: mean", + "cell_measures": "", + "long_name": "Ocean Meridional Overturning Mass Streamfunction", + "comment": "Overturning mass streamfunction arising from all advective mass transport processes, resolved and parameterized.", + "dimensions": "latitude olevel basin time", + "out_name": "msftmz", + "type": "real", + "positive": "", + "spatial_shape": "YB-O", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "msftmz", + "variableRootDD": "msftm", + "branding_label": "tavg-ol-hyb-sea", + "branded_variable_name": "msftm_tavg-ol-hyb-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.msftmz", + "cmip7_compound_name": "ocean.msftm.tavg-ol-hyb-sea.mon.GLB", + "uid": "baa59d48-e5dd-11e5-8482-ac72891c3257" + }, + "ocean.msftm.tavg-rho-hyb-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "ocean_meridional_overturning_mass_streamfunction", + "units": "kg s-1", + "cell_methods": "depth: longitude: sum where sea (along a zig-zag grid path spanning a basin) time: mean", + "cell_measures": "", + "long_name": "Ocean Meridional Overturning Mass Streamfunction", + "comment": "Overturning mass streamfunction arising from all advective mass transport processes, resolved and parameterized.", + "dimensions": "latitude rho basin time", + "out_name": "msftmrho", + "type": "real", + "positive": "", + "spatial_shape": "YB-R", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "msftmrho", + "variableRootDD": "msftm", + "branding_label": "tavg-rho-hyb-sea", + "branded_variable_name": "msftm_tavg-rho-hyb-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.msftmrho", + "cmip7_compound_name": "ocean.msftm.tavg-rho-hyb-sea.mon.GLB", + "uid": "baa5a1da-e5dd-11e5-8482-ac72891c3257" + }, + "ocean.msftmmpa.tavg-ol-hyb-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "ocean_meridional_overturning_mass_streamfunction_due_to_parameterized_mesoscale_eddy_advection", + "units": "kg s-1", + "cell_methods": "depth: longitude: sum where sea (along a zig-zag grid path spanning a basin) time: mean", + "cell_measures": "", + "long_name": "Ocean Meridional Overturning Mass Streamfunction Due to Parameterized Mesoscale Advection", + "comment": "CMIP5 called this \"due to Bolus Advection\". Name change respects the more general physics of the mesoscale parameterizations.", + "dimensions": "latitude olevel basin time", + "out_name": "msftmzmpa", + "type": "real", + "positive": "", + "spatial_shape": "YB-O", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "msftmzmpa", + "variableRootDD": "msftmmpa", + "branding_label": "tavg-ol-hyb-sea", + "branded_variable_name": "msftmmpa_tavg-ol-hyb-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.msftmzmpa", + "cmip7_compound_name": "ocean.msftmmpa.tavg-ol-hyb-sea.mon.GLB", + "uid": "baa5af36-e5dd-11e5-8482-ac72891c3257" + }, + "ocean.msftmmpa.tavg-rho-hyb-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "ocean_meridional_overturning_mass_streamfunction_due_to_parameterized_mesoscale_eddy_advection", + "units": "kg s-1", + "cell_methods": "depth: longitude: sum where sea (along a zig-zag grid path spanning a basin) time: mean", + "cell_measures": "", + "long_name": "Ocean Meridional Overturning Mass Streamfunction Due to Parameterized Mesoscale Advection", + "comment": "CMIP5 called this \"due to Bolus Advection\". Name change respects the more general physics of the mesoscale parameterizations.", + "dimensions": "latitude rho basin time", + "out_name": "msftmrhompa", + "type": "real", + "positive": "", + "spatial_shape": "YB-R", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "msftmrhompa", + "variableRootDD": "msftmmpa", + "branding_label": "tavg-rho-hyb-sea", + "branded_variable_name": "msftmmpa_tavg-rho-hyb-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.msftmrhompa", + "cmip7_compound_name": "ocean.msftmmpa.tavg-rho-hyb-sea.mon.GLB", + "uid": "baa5b364-e5dd-11e5-8482-ac72891c3257" + }, + "ocean.msftmsmpa.tavg-ol-hyb-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "ocean_meridional_overturning_mass_streamfunction_due_to_parameterized_submesoscale_eddy_advection", + "units": "kg s-1", + "cell_methods": "depth: longitude: sum where sea (along a zig-zag grid path spanning a basin) time: mean", + "cell_measures": "", + "long_name": "Ocean Meridional Overturning Mass Streamfunction Due to Parameterized Submesoscale Advection", + "comment": "Report only if there is a submesoscale eddy parameterization.", + "dimensions": "latitude olevel basin time", + "out_name": "msftmzsmpa", + "type": "real", + "positive": "", + "spatial_shape": "YB-O", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "msftmzsmpa", + "variableRootDD": "msftmsmpa", + "branding_label": "tavg-ol-hyb-sea", + "branded_variable_name": "msftmsmpa_tavg-ol-hyb-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.msftmzsmpa", + "cmip7_compound_name": "ocean.msftmsmpa.tavg-ol-hyb-sea.mon.GLB", + "uid": "baa5c020-e5dd-11e5-8482-ac72891c3257" + }, + "ocean.msfty.tavg-ol-ht-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "ocean_y_overturning_mass_streamfunction", + "units": "kg s-1", + "cell_methods": "grid_longitude: sum where sea time: mean", + "cell_measures": "", + "long_name": "Ocean Y Overturning Mass Streamfunction", + "comment": "Overturning mass streamfunction arising from all advective mass transport processes, resolved and parameterized.", + "dimensions": "gridlatitude olevel basin time", + "out_name": "msftyz", + "type": "real", + "positive": "", + "spatial_shape": "GYB-O", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "msftyz", + "variableRootDD": "msfty", + "branding_label": "tavg-ol-ht-sea", + "branded_variable_name": "msfty_tavg-ol-ht-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.msftyz", + "cmip7_compound_name": "ocean.msfty.tavg-ol-ht-sea.mon.GLB", + "uid": "baa5a662-e5dd-11e5-8482-ac72891c3257" + }, + "ocean.msfty.tavg-rho-ht-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "ocean_y_overturning_mass_streamfunction", + "units": "kg s-1", + "cell_methods": "grid_longitude: sum where sea time: mean", + "cell_measures": "", + "long_name": "Ocean Y Overturning Mass Streamfunction", + "comment": "Overturning mass streamfunction arising from all advective mass transport processes, resolved and parameterized.", + "dimensions": "gridlatitude rho basin time", + "out_name": "msftyrho", + "type": "real", + "positive": "", + "spatial_shape": "GYB-R", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "msftyrho", + "variableRootDD": "msfty", + "branding_label": "tavg-rho-ht-sea", + "branded_variable_name": "msfty_tavg-rho-ht-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.msftyrho", + "cmip7_compound_name": "ocean.msfty.tavg-rho-ht-sea.mon.GLB", + "uid": "baa5aafe-e5dd-11e5-8482-ac72891c3257" + }, + "ocean.msftypa.tavg-ol-ht-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "ocean_y_overturning_mass_streamfunction_due_to_parameterized_mesoscale_eddy_advection", + "units": "kg s-1", + "cell_methods": "grid_longitude: sum where sea time: mean", + "cell_measures": "", + "long_name": "Ocean Y Overturning Mass Streamfunction Due to Parameterized Mesoscale Advection", + "comment": "CMIP5 called this \"due to Bolus Advection\". Name change respects the more general physics of the mesoscale parameterizations.", + "dimensions": "gridlatitude olevel basin time", + "out_name": "msftyzmpa", + "type": "real", + "positive": "", + "spatial_shape": "GYB-O", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "msftyzmpa", + "variableRootDD": "msftypa", + "branding_label": "tavg-ol-ht-sea", + "branded_variable_name": "msftypa_tavg-ol-ht-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.msftyzmpa", + "cmip7_compound_name": "ocean.msftypa.tavg-ol-ht-sea.mon.GLB", + "uid": "baa5b79c-e5dd-11e5-8482-ac72891c3257" + }, + "ocean.msftypa.tavg-rho-ht-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "ocean_y_overturning_mass_streamfunction_due_to_parameterized_mesoscale_eddy_advection", + "units": "kg s-1", + "cell_methods": "grid_longitude: sum where sea time: mean", + "cell_measures": "", + "long_name": "Ocean Y Overturning Mass Streamfunction Due to Parameterized Mesoscale Advection", + "comment": "CMIP5 called this \"due to Bolus Advection\". Name change respects the more general physics of the mesoscale parameterizations.", + "dimensions": "gridlatitude rho basin time", + "out_name": "msftyrhompa", + "type": "real", + "positive": "", + "spatial_shape": "GYB-R", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "msftyrhompa", + "variableRootDD": "msftypa", + "branding_label": "tavg-rho-ht-sea", + "branded_variable_name": "msftypa_tavg-rho-ht-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.msftyrhompa", + "cmip7_compound_name": "ocean.msftypa.tavg-rho-ht-sea.mon.GLB", + "uid": "baa5bbe8-e5dd-11e5-8482-ac72891c3257" + }, + "ocean.obvfsq.tavg-ol-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "square_of_brunt_vaisala_frequency_in_sea_water", + "units": "s-2", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Square of Brunt Vaisala Frequency in Sea Water", + "comment": "The phrase \"square_of_X\" means X\\*X. Frequency is the number of oscillations of a wave per unit time. Brunt-Vaisala frequency is also sometimes called \"buoyancy frequency\" and is a measure of the vertical stratification of the medium.", + "dimensions": "longitude latitude olevel time", + "out_name": "obvfsq", + "type": "real", + "positive": "", + "spatial_shape": "XY-O", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "obvfsq", + "variableRootDD": "obvfsq", + "branding_label": "tavg-ol-hxy-sea", + "branded_variable_name": "obvfsq_tavg-ol-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.obvfsq", + "cmip7_compound_name": "ocean.obvfsq.tavg-ol-hxy-sea.mon.GLB", + "uid": "1aab5d20-b006-11e6-9289-ac72891c3257" + }, + "ocean.ocontempdiff.tavg-ol-hxy-sea.yr.GLB": { + "frequency": "yr", + "modeling_realm": "ocean", + "standard_name": "tendency_of_sea_water_conservative_temperature_expressed_as_heat_content_due_to_parameterized_dianeutral_mixing", + "units": "W m-2", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Tendency of Sea Water Conservative Temperature Expressed as Heat Content Due to Parameterized Dianeutral Mixing", + "comment": "Tendency of heat content for a grid cell from parameterized dianeutral mixing. Reported only for models that use conservative temperature as prognostic field.", + "dimensions": "longitude latitude olevel time", + "out_name": "ocontempdiff", + "type": "real", + "positive": "", + "spatial_shape": "XY-O", + "temporal_shape": "time-intv", + "cmip6_table": "Oyr", + "physical_parameter_name": "ocontempdiff", + "variableRootDD": "ocontempdiff", + "branding_label": "tavg-ol-hxy-sea", + "branded_variable_name": "ocontempdiff_tavg-ol-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Oyr.ocontempdiff", + "cmip7_compound_name": "ocean.ocontempdiff.tavg-ol-hxy-sea.yr.GLB", + "uid": "baa46770-e5dd-11e5-8482-ac72891c3257" + }, + "ocean.ocontempmint.tavg-u-hxy-sea.yr.GLB": { + "frequency": "yr", + "modeling_realm": "ocean", + "standard_name": "integral_wrt_depth_of_product_of_conservative_temperature_and_sea_water_density", + "units": "degC kg m-2", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Depth Integral of Product of Sea Water Density and Conservative Temperature", + "comment": "Full column sum of density\\*cell thickness\\*conservative temperature. If the model is Boussinesq, then use Boussinesq reference density for the density factor.", + "dimensions": "longitude latitude time", + "out_name": "ocontempmint", + "type": "real", + "positive": "", + "spatial_shape": "XY-int", + "temporal_shape": "time-intv", + "cmip6_table": "Oyr", + "physical_parameter_name": "ocontempmint", + "variableRootDD": "ocontempmint", + "branding_label": "tavg-u-hxy-sea", + "branded_variable_name": "ocontempmint_tavg-u-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Oyr.ocontempmint", + "cmip7_compound_name": "ocean.ocontempmint.tavg-u-hxy-sea.yr.GLB", + "uid": "1aaf3ea4-b006-11e6-9289-ac72891c3257" + }, + "ocean.ocontemppadvect.tavg-ol-hxy-sea.yr.GLB": { + "frequency": "yr", + "modeling_realm": "ocean", + "standard_name": "tendency_of_sea_water_conservative_temperature_expressed_as_heat_content_due_to_parameterized_eddy_advection", + "units": "W m-2", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Tendency of Sea Water Conservative Temperature Expressed as Heat Content Due to Parameterized Eddy Advection", + "comment": "Tendency of heat content for a grid cell from parameterized eddy advection (all forms of eddy advection). Reported only for models that use conservative temperature as prognostic field.", + "dimensions": "longitude latitude olevel time", + "out_name": "ocontemppadvect", + "type": "real", + "positive": "", + "spatial_shape": "XY-O", + "temporal_shape": "time-intv", + "cmip6_table": "Oyr", + "physical_parameter_name": "ocontemppadvect", + "variableRootDD": "ocontemppadvect", + "branding_label": "tavg-ol-hxy-sea", + "branded_variable_name": "ocontemppadvect_tavg-ol-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Oyr.ocontemppadvect", + "cmip7_compound_name": "ocean.ocontemppadvect.tavg-ol-hxy-sea.yr.GLB", + "uid": "baa4569a-e5dd-11e5-8482-ac72891c3257" + }, + "ocean.ocontemppmdiff.tavg-ol-hxy-sea.yr.GLB": { + "frequency": "yr", + "modeling_realm": "ocean", + "standard_name": "tendency_of_sea_water_conservative_temperature_expressed_as_heat_content_due_to_parameterized_mesoscale_eddy_diffusion", + "units": "W m-2", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Tendency of Sea Water Conservative Temperature Expressed as Heat Content Due to Parameterized Mesoscale Diffusion", + "comment": "Tendency of heat content for a grid cell from parameterized mesoscale eddy diffusion. Reported only for models that use conservative temperature as prognostic field.", + "dimensions": "longitude latitude olevel time", + "out_name": "ocontemppmdiff", + "type": "real", + "positive": "", + "spatial_shape": "XY-O", + "temporal_shape": "time-intv", + "cmip6_table": "Oyr", + "physical_parameter_name": "ocontemppmdiff", + "variableRootDD": "ocontemppmdiff", + "branding_label": "tavg-ol-hxy-sea", + "branded_variable_name": "ocontemppmdiff_tavg-ol-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Oyr.ocontemppmdiff", + "cmip7_compound_name": "ocean.ocontemppmdiff.tavg-ol-hxy-sea.yr.GLB", + "uid": "baa45f14-e5dd-11e5-8482-ac72891c3257" + }, + "ocean.ocontemppsmadvect.tavg-ol-hxy-sea.yr.GLB": { + "frequency": "yr", + "modeling_realm": "ocean", + "standard_name": "tendency_of_sea_water_conservative_temperature_expressed_as_heat_content_due_to_parameterized_submesoscale_eddy_advection", + "units": "W m-2", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Tendency of Sea Water Conservative Temperature Expressed as Heat Content Due to Parameterized Submesoscale Advection", + "comment": "Tendency of heat content for a grid cell from parameterized submesoscale eddy advection. Reported only for models that use conservative temperature as prognostic field.", + "dimensions": "longitude latitude olevel time", + "out_name": "ocontemppsmadvect", + "type": "real", + "positive": "", + "spatial_shape": "XY-O", + "temporal_shape": "time-intv", + "cmip6_table": "Oyr", + "physical_parameter_name": "ocontemppsmadvect", + "variableRootDD": "ocontemppsmadvect", + "branding_label": "tavg-ol-hxy-sea", + "branded_variable_name": "ocontemppsmadvect_tavg-ol-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Oyr.ocontemppsmadvect", + "cmip7_compound_name": "ocean.ocontemppsmadvect.tavg-ol-hxy-sea.yr.GLB", + "uid": "baa46342-e5dd-11e5-8482-ac72891c3257" + }, + "ocean.ocontemprmadvect.tavg-ol-hxy-sea.yr.GLB": { + "frequency": "yr", + "modeling_realm": "ocean", + "standard_name": "tendency_of_sea_water_conservative_temperature_expressed_as_heat_content_due_to_residual_mean_advection", + "units": "W m-2", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Tendency of Sea Water Conservative Temperature Expressed as Heat Content Due to Residual Mean Advection", + "comment": "Tendency of heat content for a grid cell from residual mean (sum of Eulerian mean + parameterized eddy-induced) advection. Reported only for models that use conservative temperature as prognostic field.", + "dimensions": "longitude latitude olevel time", + "out_name": "ocontemprmadvect", + "type": "real", + "positive": "", + "spatial_shape": "XY-O", + "temporal_shape": "time-intv", + "cmip6_table": "Oyr", + "physical_parameter_name": "ocontemprmadvect", + "variableRootDD": "ocontemprmadvect", + "branding_label": "tavg-ol-hxy-sea", + "branded_variable_name": "ocontemprmadvect_tavg-ol-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Oyr.ocontemprmadvect", + "cmip7_compound_name": "ocean.ocontemprmadvect.tavg-ol-hxy-sea.yr.GLB", + "uid": "1aafb96a-b006-11e6-9289-ac72891c3257" + }, + "ocean.ocontemptend.tavg-ol-hxy-sea.yr.GLB": { + "frequency": "yr", + "modeling_realm": "ocean", + "standard_name": "tendency_of_sea_water_conservative_temperature_expressed_as_heat_content", + "units": "W m-2", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Tendency of Sea Water Conservative Temperature Expressed as Heat Content", + "comment": "Tendency of heat content for a grid cell from all processes. Reported only for models that use conservative temperature as prognostic field.", + "dimensions": "longitude latitude olevel time", + "out_name": "ocontemptend", + "type": "real", + "positive": "", + "spatial_shape": "XY-O", + "temporal_shape": "time-intv", + "cmip6_table": "Oyr", + "physical_parameter_name": "ocontemptend", + "variableRootDD": "ocontemptend", + "branding_label": "tavg-ol-hxy-sea", + "branded_variable_name": "ocontemptend_tavg-ol-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Oyr.ocontemptend", + "cmip7_compound_name": "ocean.ocontemptend.tavg-ol-hxy-sea.yr.GLB", + "uid": "baa44e34-e5dd-11e5-8482-ac72891c3257" + }, + "ocean.opottempdiff.tavg-ol-hxy-sea.yr.GLB": { + "frequency": "yr", + "modeling_realm": "ocean", + "standard_name": "tendency_of_sea_water_potential_temperature_expressed_as_heat_content_due_to_parameterized_dianeutral_mixing", + "units": "W m-2", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Tendency of Sea Water Potential Temperature Expressed as Heat Content Due to Parameterized Dianeutral Mixing", + "comment": "Tendency of heat content for a grid cell from parameterized dianeutral mixing. Reported only for models that use potential temperature as prognostic field.", + "dimensions": "longitude latitude olevel time", + "out_name": "opottempdiff", + "type": "real", + "positive": "", + "spatial_shape": "XY-O", + "temporal_shape": "time-intv", + "cmip6_table": "Oyr", + "physical_parameter_name": "opottempdiff", + "variableRootDD": "opottempdiff", + "branding_label": "tavg-ol-hxy-sea", + "branded_variable_name": "opottempdiff_tavg-ol-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Oyr.opottempdiff", + "cmip7_compound_name": "ocean.opottempdiff.tavg-ol-hxy-sea.yr.GLB", + "uid": "baa4461e-e5dd-11e5-8482-ac72891c3257" + }, + "ocean.opottempmint.tavg-u-hxy-sea.yr.GLB": { + "frequency": "yr", + "modeling_realm": "ocean", + "standard_name": "integral_wrt_depth_of_product_of_potential_temperature_and_sea_water_density", + "units": "degC kg m-2", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Integral with Respect to Depth of Product of Sea Water Density and Potential Temperature", + "comment": "Full column sum of density\\*cell thickness\\*potential temperature. If the model is Boussinesq, then use Boussinesq reference density for the density factor.", + "dimensions": "longitude latitude time", + "out_name": "opottempmint", + "type": "real", + "positive": "", + "spatial_shape": "XY-int", + "temporal_shape": "time-intv", + "cmip6_table": "Oyr", + "physical_parameter_name": "opottempmint", + "variableRootDD": "opottempmint", + "branding_label": "tavg-u-hxy-sea", + "branded_variable_name": "opottempmint_tavg-u-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Oyr.opottempmint", + "cmip7_compound_name": "ocean.opottempmint.tavg-u-hxy-sea.yr.GLB", + "uid": "1aaf2e6e-b006-11e6-9289-ac72891c3257" + }, + "ocean.opottemppadvect.tavg-ol-hxy-sea.yr.GLB": { + "frequency": "yr", + "modeling_realm": "ocean", + "standard_name": "tendency_of_sea_water_potential_temperature_expressed_as_heat_content_due_to_parameterized_eddy_advection", + "units": "W m-2", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Tendency of Sea Water Potential Temperature Expressed as Heat Content Due to Parameterized Eddy Advection", + "comment": "Tendency of heat content for a grid cell from parameterized eddy advection (all forms of eddy advection). Reported only for models that use potential temperature as prognostic field.", + "dimensions": "longitude latitude olevel time", + "out_name": "opottemppadvect", + "type": "real", + "positive": "", + "spatial_shape": "XY-O", + "temporal_shape": "time-intv", + "cmip6_table": "Oyr", + "physical_parameter_name": "opottemppadvect", + "variableRootDD": "opottemppadvect", + "branding_label": "tavg-ol-hxy-sea", + "branded_variable_name": "opottemppadvect_tavg-ol-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Oyr.opottemppadvect", + "cmip7_compound_name": "ocean.opottemppadvect.tavg-ol-hxy-sea.yr.GLB", + "uid": "baa4353e-e5dd-11e5-8482-ac72891c3257" + }, + "ocean.opottemppmdiff.tavg-ol-hxy-sea.yr.GLB": { + "frequency": "yr", + "modeling_realm": "ocean", + "standard_name": "tendency_of_sea_water_potential_temperature_expressed_as_heat_content_due_to_parameterized_mesoscale_eddy_diffusion", + "units": "W m-2", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Tendency of Sea Water Potential Temperature Expressed as Heat Content Due to Parameterized Mesoscale Diffusion", + "comment": "Tendency of heat content for a grid cell from parameterized mesoscale eddy diffusion. Reported only for models that use potential temperature as prognostic field.", + "dimensions": "longitude latitude olevel time", + "out_name": "opottemppmdiff", + "type": "real", + "positive": "", + "spatial_shape": "XY-O", + "temporal_shape": "time-intv", + "cmip6_table": "Oyr", + "physical_parameter_name": "opottemppmdiff", + "variableRootDD": "opottemppmdiff", + "branding_label": "tavg-ol-hxy-sea", + "branded_variable_name": "opottemppmdiff_tavg-ol-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Oyr.opottemppmdiff", + "cmip7_compound_name": "ocean.opottemppmdiff.tavg-ol-hxy-sea.yr.GLB", + "uid": "baa43db8-e5dd-11e5-8482-ac72891c3257" + }, + "ocean.opottemppsmadvect.tavg-ol-hxy-sea.yr.GLB": { + "frequency": "yr", + "modeling_realm": "ocean", + "standard_name": "tendency_of_sea_water_potential_temperature_expressed_as_heat_content_due_to_parameterized_submesoscale_eddy_advection", + "units": "W m-2", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Tendency of Sea Water Potential Temperature Expressed as Heat Content Due to Parameterized Submesoscale Advection", + "comment": "Tendency of heat content for a grid cell from parameterized submesoscale eddy advection. Reported only for models that use potential temperature as prognostic field.", + "dimensions": "longitude latitude olevel time", + "out_name": "opottemppsmadvect", + "type": "real", + "positive": "", + "spatial_shape": "XY-O", + "temporal_shape": "time-intv", + "cmip6_table": "Oyr", + "physical_parameter_name": "opottemppsmadvect", + "variableRootDD": "opottemppsmadvect", + "branding_label": "tavg-ol-hxy-sea", + "branded_variable_name": "opottemppsmadvect_tavg-ol-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Oyr.opottemppsmadvect", + "cmip7_compound_name": "ocean.opottemppsmadvect.tavg-ol-hxy-sea.yr.GLB", + "uid": "baa441f0-e5dd-11e5-8482-ac72891c3257" + }, + "ocean.opottemprmadvect.tavg-ol-hxy-sea.yr.GLB": { + "frequency": "yr", + "modeling_realm": "ocean", + "standard_name": "tendency_of_sea_water_potential_temperature_expressed_as_heat_content_due_to_residual_mean_advection", + "units": "W m-2", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Tendency of Sea Water Potential Temperature Expressed as Heat Content Due to Residual Mean Advection", + "comment": "Tendency of heat content for a grid cell from residual mean (sum of Eulerian mean + parameterized eddy-induced) advection. Reported only for models that use potential temperature as prognostic field.", + "dimensions": "longitude latitude olevel time", + "out_name": "opottemprmadvect", + "type": "real", + "positive": "", + "spatial_shape": "XY-O", + "temporal_shape": "time-intv", + "cmip6_table": "Oyr", + "physical_parameter_name": "opottemprmadvect", + "variableRootDD": "opottemprmadvect", + "branding_label": "tavg-ol-hxy-sea", + "branded_variable_name": "opottemprmadvect_tavg-ol-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Oyr.opottemprmadvect", + "cmip7_compound_name": "ocean.opottemprmadvect.tavg-ol-hxy-sea.yr.GLB", + "uid": "1aaf7360-b006-11e6-9289-ac72891c3257" + }, + "ocean.opottemptend.tavg-ol-hxy-sea.dec.GLB": { + "frequency": "dec", + "modeling_realm": "ocean", + "standard_name": "tendency_of_sea_water_potential_temperature_expressed_as_heat_content", + "units": "W m-2", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Tendency of Sea Water Potential Temperature Expressed as Heat Content", + "comment": "Tendency of heat content for a grid cell from all processes. Reported only for models that use potential temperature as prognostic field.", + "dimensions": "longitude latitude olevel time", + "out_name": "opottemptend", + "type": "real", + "positive": "", + "spatial_shape": "XY-O", + "temporal_shape": "time-intv", + "cmip6_table": "Odec", + "physical_parameter_name": "opottemptend", + "variableRootDD": "opottemptend", + "branding_label": "tavg-ol-hxy-sea", + "branded_variable_name": "opottemptend_tavg-ol-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Odec.opottemptend", + "cmip7_compound_name": "ocean.opottemptend.tavg-ol-hxy-sea.dec.GLB", + "uid": "80ab740c-a698-11ef-914a-613c0433d878" + }, + "ocean.opottemptend.tavg-ol-hxy-sea.yr.GLB": { + "frequency": "yr", + "modeling_realm": "ocean", + "standard_name": "tendency_of_sea_water_potential_temperature_expressed_as_heat_content", + "units": "W m-2", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Tendency of Sea Water Potential Temperature Expressed as Heat Content", + "comment": "Tendency of heat content for a grid cell from all processes. Reported only for models that use potential temperature as prognostic field.", + "dimensions": "longitude latitude olevel time", + "out_name": "opottemptend", + "type": "real", + "positive": "", + "spatial_shape": "XY-O", + "temporal_shape": "time-intv", + "cmip6_table": "Oyr", + "physical_parameter_name": "opottemptend", + "variableRootDD": "opottemptend", + "branding_label": "tavg-ol-hxy-sea", + "branded_variable_name": "opottemptend_tavg-ol-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Oyr.opottemptend", + "cmip7_compound_name": "ocean.opottemptend.tavg-ol-hxy-sea.yr.GLB", + "uid": "baa42c60-e5dd-11e5-8482-ac72891c3257" + }, + "ocean.osaltdiff.tavg-ol-hxy-sea.yr.GLB": { + "frequency": "yr", + "modeling_realm": "ocean", + "standard_name": "tendency_of_sea_water_salinity_expressed_as_salt_content_due_to_parameterized_dianeutral_mixing", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Tendency of Sea Water Salinity Expressed as Salt Content Due to Parameterized Dianeutral Mixing", + "comment": "Tendency of salt content for a grid cell from parameterized dianeutral mixing.", + "dimensions": "longitude latitude olevel time", + "out_name": "osaltdiff", + "type": "real", + "positive": "", + "spatial_shape": "XY-O", + "temporal_shape": "time-intv", + "cmip6_table": "Oyr", + "physical_parameter_name": "osaltdiff", + "variableRootDD": "osaltdiff", + "branding_label": "tavg-ol-hxy-sea", + "branded_variable_name": "osaltdiff_tavg-ol-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Oyr.osaltdiff", + "cmip7_compound_name": "ocean.osaltdiff.tavg-ol-hxy-sea.yr.GLB", + "uid": "baa48caa-e5dd-11e5-8482-ac72891c3257" + }, + "ocean.osaltpadvect.tavg-ol-hxy-sea.yr.GLB": { + "frequency": "yr", + "modeling_realm": "ocean", + "standard_name": "tendency_of_sea_water_salinity_expressed_as_salt_content_due_to_parameterized_eddy_advection", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Tendency of Sea Water Salinity Expressed as Salt Content Due to Parameterized Eddy Advection", + "comment": "Tendency of salt content for a grid cell from parameterized eddy advection (any form of eddy advection).", + "dimensions": "longitude latitude olevel time", + "out_name": "osaltpadvect", + "type": "real", + "positive": "", + "spatial_shape": "XY-O", + "temporal_shape": "time-intv", + "cmip6_table": "Oyr", + "physical_parameter_name": "osaltpadvect", + "variableRootDD": "osaltpadvect", + "branding_label": "tavg-ol-hxy-sea", + "branded_variable_name": "osaltpadvect_tavg-ol-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Oyr.osaltpadvect", + "cmip7_compound_name": "ocean.osaltpadvect.tavg-ol-hxy-sea.yr.GLB", + "uid": "baa47bfc-e5dd-11e5-8482-ac72891c3257" + }, + "ocean.osaltpmdiff.tavg-ol-hxy-sea.yr.GLB": { + "frequency": "yr", + "modeling_realm": "ocean", + "standard_name": "tendency_of_sea_water_salinity_expressed_as_salt_content_due_to_parameterized_mesoscale_eddy_diffusion", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Tendency of Sea Water Salinity Expressed as Salt Content Due to Parameterized Mesoscale Diffusion", + "comment": "Tendency of salt content for a grid cell from parameterized mesoscale eddy diffusion.", + "dimensions": "longitude latitude olevel time", + "out_name": "osaltpmdiff", + "type": "real", + "positive": "", + "spatial_shape": "XY-O", + "temporal_shape": "time-intv", + "cmip6_table": "Oyr", + "physical_parameter_name": "osaltpmdiff", + "variableRootDD": "osaltpmdiff", + "branding_label": "tavg-ol-hxy-sea", + "branded_variable_name": "osaltpmdiff_tavg-ol-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Oyr.osaltpmdiff", + "cmip7_compound_name": "ocean.osaltpmdiff.tavg-ol-hxy-sea.yr.GLB", + "uid": "baa4844e-e5dd-11e5-8482-ac72891c3257" + }, + "ocean.osaltpsmadvect.tavg-ol-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "tendency_of_sea_water_salinity_expressed_as_salt_content_due_to_parameterized_submesoscale_eddy_advection", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Tendency of Sea Water Salinity Expressed as Salt Content Due to Parameterized Submesoscale Advection", + "comment": "Tendency of salt content for a grid cell from parameterized submesoscale eddy advection.", + "dimensions": "longitude latitude olevel time", + "out_name": "osaltpsmadvect", + "type": "real", + "positive": "", + "spatial_shape": "XY-O", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "osaltpsmadvect", + "variableRootDD": "osaltpsmadvect", + "branding_label": "tavg-ol-hxy-sea", + "branded_variable_name": "osaltpsmadvect_tavg-ol-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Emon.osaltpsmadvect", + "cmip7_compound_name": "ocean.osaltpsmadvect.tavg-ol-hxy-sea.mon.GLB", + "uid": "8b9e32d4-4a5b-11e6-9cd2-ac72891c3257" + }, + "ocean.osaltpsmadvect.tavg-ol-hxy-sea.yr.GLB": { + "frequency": "yr", + "modeling_realm": "ocean", + "standard_name": "tendency_of_sea_water_salinity_expressed_as_salt_content_due_to_parameterized_submesoscale_eddy_advection", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Tendency of Sea Water Salinity Expressed as Salt Content Due to Parameterized Submesoscale Advection", + "comment": "Tendency of salt content for a grid cell from parameterized submesoscale eddy advection.", + "dimensions": "longitude latitude olevel time", + "out_name": "osaltpsmadvect", + "type": "real", + "positive": "", + "spatial_shape": "XY-O", + "temporal_shape": "time-intv", + "cmip6_table": "Oyr", + "physical_parameter_name": "osaltpsmadvect", + "variableRootDD": "osaltpsmadvect", + "branding_label": "tavg-ol-hxy-sea", + "branded_variable_name": "osaltpsmadvect_tavg-ol-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Oyr.osaltpsmadvect", + "cmip7_compound_name": "ocean.osaltpsmadvect.tavg-ol-hxy-sea.yr.GLB", + "uid": "baa4887c-e5dd-11e5-8482-ac72891c3257" + }, + "ocean.osaltrmadvect.tavg-ol-hxy-sea.yr.GLB": { + "frequency": "yr", + "modeling_realm": "ocean", + "standard_name": "tendency_of_sea_water_salinity_expressed_as_salt_content_due_to_residual_mean_advection", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Tendency of Sea Water Salinity Expressed as Salt Content Due to Residual Mean Advection", + "comment": "Tendency of salt content for a grid cell from residual mean (sum of Eulerian mean + parameterized eddy-induced) advection.", + "dimensions": "longitude latitude olevel time", + "out_name": "osaltrmadvect", + "type": "real", + "positive": "", + "spatial_shape": "XY-O", + "temporal_shape": "time-intv", + "cmip6_table": "Oyr", + "physical_parameter_name": "osaltrmadvect", + "variableRootDD": "osaltrmadvect", + "branding_label": "tavg-ol-hxy-sea", + "branded_variable_name": "osaltrmadvect_tavg-ol-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Oyr.osaltrmadvect", + "cmip7_compound_name": "ocean.osaltrmadvect.tavg-ol-hxy-sea.yr.GLB", + "uid": "1aaffce0-b006-11e6-9289-ac72891c3257" + }, + "ocean.osalttend.tavg-ol-hxy-sea.yr.GLB": { + "frequency": "yr", + "modeling_realm": "ocean", + "standard_name": "tendency_of_sea_water_salinity_expressed_as_salt_content", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Tendency of Sea Water Salinity Expressed as Salt Content", + "comment": "Tendency of salt content for a grid cell from all processes.", + "dimensions": "longitude latitude olevel time", + "out_name": "osalttend", + "type": "real", + "positive": "", + "spatial_shape": "XY-O", + "temporal_shape": "time-intv", + "cmip6_table": "Oyr", + "physical_parameter_name": "osalttend", + "variableRootDD": "osalttend", + "branding_label": "tavg-ol-hxy-sea", + "branded_variable_name": "osalttend_tavg-ol-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Oyr.osalttend", + "cmip7_compound_name": "ocean.osalttend.tavg-ol-hxy-sea.yr.GLB", + "uid": "baa47378-e5dd-11e5-8482-ac72891c3257" + }, + "ocean.pbo.tavg-u-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "sea_water_pressure_at_sea_floor", + "units": "Pa", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Sea Water Pressure at Sea Floor", + "comment": "\"Sea water pressure\" is the pressure that exists in the medium of sea water. It includes the pressure due to overlying sea water, sea ice, air and any other medium that may be present.", + "dimensions": "longitude latitude time", + "out_name": "pbo", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "pbo", + "variableRootDD": "pbo", + "branding_label": "tavg-u-hxy-sea", + "branded_variable_name": "pbo_tavg-u-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.pbo", + "cmip7_compound_name": "ocean.pbo.tavg-u-hxy-sea.mon.GLB", + "uid": "baa4fb54-e5dd-11e5-8482-ac72891c3257" + }, + "ocean.pfscint.tavg-op4-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "integral_wrt_depth_of_sea_water_preformed_salinity_expressed_as_salt_mass_content", + "units": "kg m-2", + "cell_methods": "area: time: mean where sea", + "cell_measures": "area: areacello", + "long_name": "Integral wrt depth of seawater preformed salinity expressed as salt mass content", + "comment": "This is a fundamental aspect of the changes in the hydrological cycle and their impact on the oceans, and due to new numerical schemes and vertical discretizations, it is important to calculate it consistently with the model formulation.", + "dimensions": "longitude latitude oplayer4 time", + "out_name": "pfscint", + "type": "real", + "positive": "", + "spatial_shape": "XY-B", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "pfscint", + "variableRootDD": "pfscint", + "branding_label": "tavg-op4-hxy-sea", + "branded_variable_name": "pfscint_tavg-op4-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.pfscint", + "cmip7_compound_name": "ocean.pfscint.tavg-op4-hxy-sea.mon.GLB", + "uid": "80ab72a4-a698-11ef-914a-613c0433d878" + }, + "ocean.phcint.tavg-op4-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "integral_wrt_depth_of_sea_water_potential_temperature_expressed_as_heat_content", + "units": "J m-2", + "cell_methods": "area: time: mean where sea", + "cell_measures": "area: areacello", + "long_name": "Integrated Ocean Heat Content from Potential Temperature", + "comment": "This is the vertically-integrated heat content derived from potential temperature (thetao).", + "dimensions": "longitude latitude oplayer4 time", + "out_name": "phcint", + "type": "real", + "positive": "down", + "spatial_shape": "XY-B", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "phcint", + "variableRootDD": "phcint", + "branding_label": "tavg-op4-hxy-sea", + "branded_variable_name": "phcint_tavg-op4-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.phcint", + "cmip7_compound_name": "ocean.phcint.tavg-op4-hxy-sea.mon.GLB", + "uid": "80ab72a1-a698-11ef-914a-613c0433d878" + }, + "ocean.pso.tavg-u-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "sea_water_pressure_at_sea_water_surface", + "units": "Pa", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Sea Water Pressure at Sea Water Surface", + "comment": "The phrase \"sea water surface\" means the upper boundary of the liquid portion of an ocean or sea, including the boundary to floating ice if present. \"Sea water pressure\" is the pressure that exists in the medium of sea water. It includes the pressure due to overlying sea water, sea ice, air and any other medium that may be present.", + "dimensions": "longitude latitude time", + "out_name": "pso", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "pso", + "variableRootDD": "pso", + "branding_label": "tavg-u-hxy-sea", + "branded_variable_name": "pso_tavg-u-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.pso", + "cmip7_compound_name": "ocean.pso.tavg-u-hxy-sea.mon.GLB", + "uid": "baa4ff96-e5dd-11e5-8482-ac72891c3257" + }, + "ocean.rsdo.tavg-ol-hxy-sea.day.GLB": { + "frequency": "day", + "modeling_realm": "ocean", + "standard_name": "downwelling_shortwave_flux_in_sea_water", + "units": "W m-2", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Downwelling Shortwave Radiation in Sea Water", + "comment": "Downwelling Shortwave Radiation in Sea Water", + "dimensions": "longitude latitude olevel time", + "out_name": "rsdo", + "type": "real", + "positive": "down", + "spatial_shape": "XY-O", + "temporal_shape": "time-intv", + "cmip6_table": "Oday", + "physical_parameter_name": "rsdo", + "variableRootDD": "rsdo", + "branding_label": "tavg-ol-hxy-sea", + "branded_variable_name": "rsdo_tavg-ol-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Oday.rsdo", + "cmip7_compound_name": "ocean.rsdo.tavg-ol-hxy-sea.day.GLB", + "uid": "83bbfb73-7f07-11ef-9308-b1dd71e64bec" + }, + "ocean.rsdoabsorb.tavg-ol-hxy-sea.yr.GLB": { + "frequency": "yr", + "modeling_realm": "ocean", + "standard_name": "net_rate_of_absorption_of_shortwave_energy_in_ocean_layer", + "units": "W m-2", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Net Rate of Absorption of Shortwave Energy in Ocean Layer", + "comment": "Tendency of heat content for a grid cell from penetrative shortwave radiation within a grid cell.", + "dimensions": "longitude latitude olevel time", + "out_name": "rsdoabsorb", + "type": "real", + "positive": "", + "spatial_shape": "XY-O", + "temporal_shape": "time-intv", + "cmip6_table": "Oyr", + "physical_parameter_name": "rsdoabsorb", + "variableRootDD": "rsdoabsorb", + "branding_label": "tavg-ol-hxy-sea", + "branded_variable_name": "rsdoabsorb_tavg-ol-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Oyr.rsdoabsorb", + "cmip7_compound_name": "ocean.rsdoabsorb.tavg-ol-hxy-sea.yr.GLB", + "uid": "1aaf5b6e-b006-11e6-9289-ac72891c3257" + }, + "ocean.rsds.tavg-u-hxy-ifs.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "surface_downwelling_shortwave_flux_in_air", + "units": "W m-2", + "cell_methods": "area: time: mean where ice_free_sea over sea", + "cell_measures": "area: areacello", + "long_name": "Surface Downwelling Shortwave Radiation over Ocean Not Covered by Sea Ice", + "comment": "Surface Downwelling Shortwave Radiation over the portion of an ocean grid cell not covered by sea ice. Can be used for computation of surface albedo.", + "dimensions": "longitude latitude time", + "out_name": "rsdsoni", + "type": "real", + "positive": "down", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "rsdsoni", + "variableRootDD": "rsds", + "branding_label": "tavg-u-hxy-ifs", + "branded_variable_name": "rsds_tavg-u-hxy-ifs", + "region": "GLB", + "cmip6_compound_name": "Emon.rsdsoni", + "cmip7_compound_name": "ocean.rsds.tavg-u-hxy-ifs.mon.GLB", + "uid": "80ab7207-a698-11ef-914a-613c0433d878" + }, + "ocean.rsntds.tavg-u-hxy-sea.3hr.GLB": { + "frequency": "3hr", + "modeling_realm": "ocean", + "standard_name": "net_downward_shortwave_flux_at_sea_water_surface", + "units": "W m-2", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Net Downward Shortwave Radiation at Sea Water Surface", + "comment": "The radiative flux into the surface of liquid sea water only. This excludes shortwave flux absorbed by sea ice, but includes any light that passes through the ice and is absorbed by the ocean.", + "dimensions": "longitude latitude time", + "out_name": "rsntds", + "type": "real", + "positive": "down", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "3hr", + "physical_parameter_name": "rsntds", + "variableRootDD": "rsntds", + "branding_label": "tavg-u-hxy-sea", + "branded_variable_name": "rsntds_tavg-u-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "3hr.rsntds", + "cmip7_compound_name": "ocean.rsntds.tavg-u-hxy-sea.3hr.GLB", + "uid": "83bbfc64-7f07-11ef-9308-b1dd71e64bec" + }, + "ocean.rsus.tavg-u-hxy-ifs.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "surface_upwelling_shortwave_flux_in_air", + "units": "W m-2", + "cell_methods": "area: time: mean where ice_free_sea over sea", + "cell_measures": "area: areacello", + "long_name": "Surface Upwelling Shortwave Radiation over Ocean Not Covered by Sea Ice", + "comment": "Surface Upwelling Shortwave Radiation over the portion of an ocean grid cell not covered by sea ice. Can be used for computation of surface albedo.", + "dimensions": "longitude latitude time", + "out_name": "rsusoni", + "type": "real", + "positive": "up", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "rsusoni", + "variableRootDD": "rsus", + "branding_label": "tavg-u-hxy-ifs", + "branded_variable_name": "rsus_tavg-u-hxy-ifs", + "region": "GLB", + "cmip6_compound_name": "Emon.rsusoni", + "cmip7_compound_name": "ocean.rsus.tavg-u-hxy-ifs.mon.GLB", + "uid": "80ab7208-a698-11ef-914a-613c0433d878" + }, + "ocean.scint.tavg-op4-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "integral_wrt_depth_of_sea_water_practical_salinity_expressed_as_salt_mass_content", + "units": "kg m-2", + "cell_methods": "area: time: mean where sea", + "cell_measures": "area: areacello", + "long_name": "Integral wrt depth of seawater practical salinity expressed as salt mass content", + "comment": "This is a fundamental aspect of the changes in the hydrological cycle and their impact on the oceans, and due to new numerical schemes and vertical discretizations, it is important to calculate it consistently with the model formulation.", + "dimensions": "longitude latitude oplayer4 time", + "out_name": "scint", + "type": "real", + "positive": "", + "spatial_shape": "XY-B", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "scint", + "variableRootDD": "scint", + "branding_label": "tavg-op4-hxy-sea", + "branded_variable_name": "scint_tavg-op4-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.scint", + "cmip7_compound_name": "ocean.scint.tavg-op4-hxy-sea.mon.GLB", + "uid": "80ab72a3-a698-11ef-914a-613c0433d878" + }, + "ocean.sduo.tavg-u-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "sea_surface_wave_stokes_drift_eastward_velocity", + "units": "m s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Eastward Surface Stokes Drift", + "comment": "The eastward component of the net drift velocity of ocean water caused by surface wind-sea waves. The Stokes drift velocity could be defined as the difference between the\u00a0average\u00a0Lagrangian\u00a0flow velocity\u00a0of a fluid parcel, and the average Eulerian flow velocity\u00a0of the\u00a0fluid\u00a0at a fixed position.", + "dimensions": "longitude latitude time", + "out_name": "sduo", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "sduo", + "variableRootDD": "sduo", + "branding_label": "tavg-u-hxy-sea", + "branded_variable_name": "sduo_tavg-u-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.sduo", + "cmip7_compound_name": "ocean.sduo.tavg-u-hxy-sea.mon.GLB", + "uid": "80ab7426-a698-11ef-914a-613c0433d878" + }, + "ocean.sduo.tpt-u-hxy-sea.3hr.GLB": { + "frequency": "3hr", + "modeling_realm": "ocean", + "standard_name": "sea_surface_wave_stokes_drift_eastward_velocity", + "units": "m s-1", + "cell_methods": "area: mean where sea time: point", + "cell_measures": "area: areacello", + "long_name": "Eastward Surface Stokes Drift", + "comment": "The eastward component of the net drift velocity of ocean water caused by surface wind-sea waves. The Stokes drift velocity could be defined as the difference between the\u00a0average\u00a0Lagrangian\u00a0flow velocity\u00a0of a fluid parcel, and the average Eulerian flow velocity\u00a0of the\u00a0fluid\u00a0at a fixed position.", + "dimensions": "longitude latitude time1", + "out_name": "sduo", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-point", + "cmip6_table": "3hrPt", + "physical_parameter_name": "sduo", + "variableRootDD": "sduo", + "branding_label": "tpt-u-hxy-sea", + "branded_variable_name": "sduo_tpt-u-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "3hrPt.sduo", + "cmip7_compound_name": "ocean.sduo.tpt-u-hxy-sea.3hr.GLB", + "uid": "80ab741b-a698-11ef-914a-613c0433d878" + }, + "ocean.sdvo.tavg-u-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "sea_surface_wave_stokes_drift_northward_velocity", + "units": "m s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Northward Surface Stokes Drift", + "comment": "The northward component of the net drift velocity of ocean water caused by surface wind-sea waves. The Stokes drift velocity could be defined as the difference between the\u00a0average\u00a0Lagrangian\u00a0flow velocity\u00a0of a fluid parcel, and the average Eulerian flow velocity\u00a0of the\u00a0fluid\u00a0at a fixed position.", + "dimensions": "longitude latitude time", + "out_name": "sdvo", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "sdvo", + "variableRootDD": "sdvo", + "branding_label": "tavg-u-hxy-sea", + "branded_variable_name": "sdvo_tavg-u-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.sdvo", + "cmip7_compound_name": "ocean.sdvo.tavg-u-hxy-sea.mon.GLB", + "uid": "80ab7427-a698-11ef-914a-613c0433d878" + }, + "ocean.sdvo.tpt-u-hxy-sea.3hr.GLB": { + "frequency": "3hr", + "modeling_realm": "ocean", + "standard_name": "sea_surface_wave_stokes_drift_northward_velocity", + "units": "m s-1", + "cell_methods": "area: mean where sea time: point", + "cell_measures": "area: areacello", + "long_name": "Northward Surface Stokes Drift", + "comment": "The northward component of the net drift velocity of ocean water caused by surface wind-sea waves. The Stokes drift velocity could be defined as the difference between the\u00a0average\u00a0Lagrangian\u00a0flow velocity\u00a0of a fluid parcel, and the average Eulerian flow velocity\u00a0of the\u00a0fluid\u00a0at a fixed position.", + "dimensions": "longitude latitude time1", + "out_name": "sdvo", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-point", + "cmip6_table": "3hrPt", + "physical_parameter_name": "sdvo", + "variableRootDD": "sdvo", + "branding_label": "tpt-u-hxy-sea", + "branded_variable_name": "sdvo_tpt-u-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "3hrPt.sdvo", + "cmip7_compound_name": "ocean.sdvo.tpt-u-hxy-sea.3hr.GLB", + "uid": "80ab7418-a698-11ef-914a-613c0433d878" + }, + "ocean.sf6.tavg-ol-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "mole_concentration_of_sulfur_hexafluoride_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Mole Concentration of SF6 in Sea Water", + "comment": "Mole concentration means number of moles per unit volume, also called \"molarity\", and is used in the construction \"mole_concentration_of_X_in_Y\", where X is a material constituent of Y. A chemical or biological species denoted by X may be described by a single term such as \"nitrogen\" or a phrase such as \"nox_expressed_as_nitrogen\". The chemical formula of sulfur hexafluoride is SF6.", + "dimensions": "longitude latitude olevel time", + "out_name": "sf6", + "type": "real", + "positive": "", + "spatial_shape": "XY-O", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "sf6", + "variableRootDD": "sf6", + "branding_label": "tavg-ol-hxy-sea", + "branded_variable_name": "sf6_tavg-ol-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.sf6", + "cmip7_compound_name": "ocean.sf6.tavg-ol-hxy-sea.mon.GLB", + "uid": "ba9b2d36-e5dd-11e5-8482-ac72891c3257" + }, + "ocean.sfacrossline.tavg-u-ht-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "ocean_salt_transport_across_line", + "units": "W", + "cell_methods": "depth: sum where sea time: mean", + "cell_measures": "", + "long_name": "Ocean Salt Mass Transport across Lines", + "comment": "Depth-integrated total salt mass transport from resolved and parameterized processes across different lines on the Earth's surface (based on appendix J and table J1 of Griffies\u00a0et al., 2016). Formally, this means the integral along the line of the normal component of the heat transport. Positive and negative numbers refer to total northward/eastward and southward/westward transports, respectively. The transport should be evaluated for the full depth of the ocean, except for the Pacific Equatorial Undercurrent, which is averaged from the surface to 350m.", + "dimensions": "oline time", + "out_name": "sfacrossline", + "type": "real", + "positive": "", + "spatial_shape": "TR-na", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "sfacrossline", + "variableRootDD": "sfacrossline", + "branding_label": "tavg-u-ht-sea", + "branded_variable_name": "sfacrossline_tavg-u-ht-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.sfacrossline", + "cmip7_compound_name": "ocean.sfacrossline.tavg-u-ht-sea.mon.GLB", + "uid": "80ab7447-a698-11ef-914a-613c0433d878" + }, + "ocean.sfdsi.tavg-u-hxy-sea.3hr.GLB": { + "frequency": "3hr", + "modeling_realm": "ocean", + "standard_name": "downward_sea_ice_basal_salt_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Downward Sea Ice Basal Salt Flux", + "comment": "Basal salt flux into ocean from sea ice. This field is physical, and it arises since sea ice has a nonzero salt content, so it exchanges salt with the liquid ocean upon melting and freezing.", + "dimensions": "longitude latitude time", + "out_name": "sfdsi", + "type": "real", + "positive": "down", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "3hr", + "physical_parameter_name": "sfdsi", + "variableRootDD": "sfdsi", + "branding_label": "tavg-u-hxy-sea", + "branded_variable_name": "sfdsi_tavg-u-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "3hr.sfdsi", + "cmip7_compound_name": "ocean.sfdsi.tavg-u-hxy-sea.3hr.GLB", + "uid": "83bbfc63-7f07-11ef-9308-b1dd71e64bec" + }, + "ocean.sfdsi.tavg-u-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "downward_sea_ice_basal_salt_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Downward Sea Ice Basal Salt Flux", + "comment": "This field is physical, and it arises since sea ice has a nonzero salt content, so it exchanges salt with the liquid ocean upon melting and freezing.", + "dimensions": "longitude latitude time", + "out_name": "sfdsi", + "type": "real", + "positive": "down", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "sfdsi", + "variableRootDD": "sfdsi", + "branding_label": "tavg-u-hxy-sea", + "branded_variable_name": "sfdsi_tavg-u-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.sfdsi", + "cmip7_compound_name": "ocean.sfdsi.tavg-u-hxy-sea.mon.GLB", + "uid": "baa662fa-e5dd-11e5-8482-ac72891c3257" + }, + "ocean.sfriver.tavg-u-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "salt_flux_into_sea_water_from_rivers", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Salt Flux into Sea Water from Rivers", + "comment": "This field is physical, and it arises when rivers carry a nonzero salt content. Often this is zero, with rivers assumed to be fresh.", + "dimensions": "longitude latitude time", + "out_name": "sfriver", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "sfriver", + "variableRootDD": "sfriver", + "branding_label": "tavg-u-hxy-sea", + "branded_variable_name": "sfriver_tavg-u-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.sfriver", + "cmip7_compound_name": "ocean.sfriver.tavg-u-hxy-sea.mon.GLB", + "uid": "baa66746-e5dd-11e5-8482-ac72891c3257" + }, + "ocean.sftof.ti-u-hxy-u.fx.GLB": { + "frequency": "fx", + "modeling_realm": "ocean", + "standard_name": "sea_area_fraction", + "units": "%", + "cell_methods": "area: mean", + "cell_measures": "area: areacello", + "long_name": "Sea Area Percentage", + "comment": "This is the area fraction at the ocean surface.", + "dimensions": "longitude latitude", + "out_name": "sftof", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "None", + "cmip6_table": "Ofx", + "physical_parameter_name": "sftof", + "variableRootDD": "sftof", + "branding_label": "ti-u-hxy-u", + "branded_variable_name": "sftof_ti-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "Ofx.sftof", + "cmip7_compound_name": "ocean.sftof.ti-u-hxy-u.fx.GLB", + "uid": "baa3f2e0-e5dd-11e5-8482-ac72891c3257" + }, + "ocean.sfx.tavg-ol-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "ocean_salt_x_transport", + "units": "kg s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "3D Ocean Salt Mass X Transport", + "comment": "Contains all contributions to 'x-ward' salt mass transport from resolved and parameterized processes. Report on native horizontal grid.", + "dimensions": "longitude latitude olevel time", + "out_name": "sfx", + "type": "real", + "positive": "", + "spatial_shape": "XY-O", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "sfx", + "variableRootDD": "sfx", + "branding_label": "tavg-ol-hxy-sea", + "branded_variable_name": "sfx_tavg-ol-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.sfx", + "cmip7_compound_name": "ocean.sfx.tavg-ol-hxy-sea.mon.GLB", + "uid": "527f5ccd-8c97-11ef-944e-41a8eb05f654" + }, + "ocean.sfx.tavg-u-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "ocean_salt_x_transport", + "units": "kg s-1", + "cell_methods": "area: mean where sea depth: sum where sea (over entire ocean column) time: mean", + "cell_measures": "area: areacello", + "long_name": "Vertically Integrated Ocean Salt Mass X Transport", + "comment": "Ocean salt mass x transport vertically integrated over the whole ocean depth. Contains all contributions to 'x-ward' salt mass transport from resolved and parameterized processes. Report on native horizontal grid.", + "dimensions": "longitude latitude time", + "out_name": "sfx", + "type": "real", + "positive": "", + "spatial_shape": "XY-int", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "sfx", + "variableRootDD": "sfx", + "branding_label": "tavg-u-hxy-sea", + "branded_variable_name": "sfx_tavg-u-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.sfxint", + "cmip7_compound_name": "ocean.sfx.tavg-u-hxy-sea.mon.GLB", + "uid": "80ab72a8-a698-11ef-914a-613c0433d878" + }, + "ocean.sfy.tavg-ol-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "ocean_salt_y_transport", + "units": "kg s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "3D Ocean Salt Mass Y Transport", + "comment": "Contains all contributions to 'y-ward' salt mass transport from resolved and parameterized processes. Report on native horizontal grid.", + "dimensions": "longitude latitude olevel time", + "out_name": "sfy", + "type": "real", + "positive": "", + "spatial_shape": "XY-O", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "sfy", + "variableRootDD": "sfy", + "branding_label": "tavg-ol-hxy-sea", + "branded_variable_name": "sfy_tavg-ol-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.sfy", + "cmip7_compound_name": "ocean.sfy.tavg-ol-hxy-sea.mon.GLB", + "uid": "527f5cce-8c97-11ef-944e-41a8eb05f654" + }, + "ocean.sfy.tavg-u-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "ocean_salt_y_transport", + "units": "kg s-1", + "cell_methods": "area: mean where sea depth: sum where sea (over entire ocean column) time: mean", + "cell_measures": "area: areacello", + "long_name": "Vertically Integrated Ocean Salt Mass Y Transport", + "comment": "Ocean salt mass y transport vertically integrated over the whole ocean depth. Contains all contributions to 'y-ward' salt mass transport from resolved and parameterized processes. Report on native horizontal grid.", + "dimensions": "longitude latitude time", + "out_name": "sfy", + "type": "real", + "positive": "", + "spatial_shape": "XY-int", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "sfy", + "variableRootDD": "sfy", + "branding_label": "tavg-u-hxy-sea", + "branded_variable_name": "sfy_tavg-u-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.sfyint", + "cmip7_compound_name": "ocean.sfy.tavg-u-hxy-sea.mon.GLB", + "uid": "80ab72a9-a698-11ef-914a-613c0433d878" + }, + "ocean.siflfwbot.tavg-u-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "water_flux_into_sea_water_due_to_sea_ice_thermodynamics", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Water Flux into Sea Water Due to Sea Ice Thermodynamics", + "comment": "computed as the sea ice thermodynamic water flux into the ocean divided by the area of the ocean portion of the grid cell.", + "dimensions": "longitude latitude time", + "out_name": "fsitherm", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "fsitherm", + "variableRootDD": "siflfwbot", + "branding_label": "tavg-u-hxy-sea", + "branded_variable_name": "siflfwbot_tavg-u-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.fsitherm", + "cmip7_compound_name": "ocean.siflfwbot.tavg-u-hxy-sea.mon.GLB", + "uid": "baa63136-e5dd-11e5-8482-ac72891c3257" + }, + "ocean.sltbasin.tavg-u-hyb-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "northward_ocean_salt_transport", + "units": "kg s-1", + "cell_methods": "depth: longitude: sum where sea (along a zig-zag grid path spanning a basin) time: mean", + "cell_measures": "", + "long_name": "Northward Ocean Salt Transport", + "comment": "Northward Ocean Salt Transport from all physical processes affecting northward salt transport, resolved and parameterized. Diagnosed here as a function of latitude and basin.", + "dimensions": "latitude basin time", + "out_name": "sltbasin", + "type": "real", + "positive": "", + "spatial_shape": "YB-na", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "sltbasin", + "variableRootDD": "sltbasin", + "branding_label": "tavg-u-hyb-sea", + "branded_variable_name": "sltbasin_tavg-u-hyb-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.sltbasin", + "cmip7_compound_name": "ocean.sltbasin.tavg-u-hyb-sea.mon.GLB", + "uid": "83bbfb4d-7f07-11ef-9308-b1dd71e64bec" + }, + "ocean.sltovgyre.tavg-u-hyb-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "northward_ocean_salt_transport_due_to_gyre", + "units": "kg s-1", + "cell_methods": "depth: longitude: sum where sea (along a zig-zag grid path spanning a basin) time: mean", + "cell_measures": "", + "long_name": "Northward Ocean Salt Transport Due to Gyre", + "comment": "From all advective mass transport processes, resolved and parameterized.", + "dimensions": "latitude basin time", + "out_name": "sltovgyre", + "type": "real", + "positive": "", + "spatial_shape": "YB-na", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "sltovgyre", + "variableRootDD": "sltovgyre", + "branding_label": "tavg-u-hyb-sea", + "branded_variable_name": "sltovgyre_tavg-u-hyb-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.sltovgyre", + "cmip7_compound_name": "ocean.sltovgyre.tavg-u-hyb-sea.mon.GLB", + "uid": "baa5f7de-e5dd-11e5-8482-ac72891c3257" + }, + "ocean.sltovovrt.tavg-u-hyb-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "northward_ocean_salt_transport_due_to_overturning", + "units": "kg s-1", + "cell_methods": "depth: longitude: sum where sea (along a zig-zag grid path spanning a basin) time: mean", + "cell_measures": "", + "long_name": "Northward Ocean Salt Transport Due to Overturning", + "comment": "From all advective mass transport processes, resolved and parameterized.", + "dimensions": "latitude basin time", + "out_name": "sltovovrt", + "type": "real", + "positive": "", + "spatial_shape": "YB-na", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "sltovovrt", + "variableRootDD": "sltovovrt", + "branding_label": "tavg-u-hyb-sea", + "branded_variable_name": "sltovovrt_tavg-u-hyb-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.sltovovrt", + "cmip7_compound_name": "ocean.sltovovrt.tavg-u-hyb-sea.mon.GLB", + "uid": "baa5fc0c-e5dd-11e5-8482-ac72891c3257" + }, + "ocean.so.tavg-ol-hm-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "sea_water_salinity", + "units": "1E-03", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "", + "long_name": "Global Mean Sea Water Salinity", + "comment": "Sea water salinity is the salt content of sea water, often on the Practical Salinity Scale of 1978. However, the unqualified term 'salinity' is generic and does not necessarily imply any particular method of calculation. The units of salinity are dimensionless and the units attribute should normally be given as 1e-3 or 0.001 i.e. parts per thousand.", + "dimensions": "olevel time", + "out_name": "soga", + "type": "real", + "positive": "", + "spatial_shape": "na-O", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "soga", + "variableRootDD": "so", + "branding_label": "tavg-ol-hm-sea", + "branded_variable_name": "so_tavg-ol-hm-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.soga", + "cmip7_compound_name": "ocean.so.tavg-ol-hm-sea.mon.GLB", + "uid": "baa55086-e5dd-11e5-8482-ac72891c3257" + }, + "ocean.so.tavg-ol-hxy-sea.day.GLB": { + "frequency": "day", + "modeling_realm": "ocean", + "standard_name": "sea_water_salinity", + "units": "1E-03", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Sea water salinity", + "comment": "Sea water salinity is the salt content of sea water, often on the Practical Salinity Scale of 1978. However, the unqualified term 'salinity' is generic and does not necessarily imply any particular method of calculation.", + "dimensions": "longitude latitude olevel time", + "out_name": "so", + "type": "real", + "positive": "", + "spatial_shape": "XY-O", + "temporal_shape": "time-intv", + "cmip6_table": "Oday", + "physical_parameter_name": "so", + "variableRootDD": "so", + "branding_label": "tavg-ol-hxy-sea", + "branded_variable_name": "so_tavg-ol-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Oday.so", + "cmip7_compound_name": "ocean.so.tavg-ol-hxy-sea.day.GLB", + "uid": "83bbfb71-7f07-11ef-9308-b1dd71e64bec" + }, + "ocean.so.tavg-ol-hxy-sea.dec.GLB": { + "frequency": "dec", + "modeling_realm": "ocean", + "standard_name": "sea_water_salinity", + "units": "1E-03", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Sea Water Salinity", + "comment": "Sea water salinity is the salt content of sea water, often on the Practical Salinity Scale of 1978. However, the unqualified term 'salinity' is generic and does not necessarily imply any particular method of calculation. The units of salinity are dimensionless and the units attribute should normally be given as 1e-3 or 0.001 i.e. parts per thousand.", + "dimensions": "longitude latitude olevel time", + "out_name": "so", + "type": "real", + "positive": "", + "spatial_shape": "XY-O", + "temporal_shape": "time-intv", + "cmip6_table": "Odec", + "physical_parameter_name": "so", + "variableRootDD": "so", + "branding_label": "tavg-ol-hxy-sea", + "branded_variable_name": "so_tavg-ol-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Odec.so", + "cmip7_compound_name": "ocean.so.tavg-ol-hxy-sea.dec.GLB", + "uid": "4795682a-bb0b-11e6-8316-5980f7b176d1" + }, + "ocean.so.tavg-ol-hxy-sea.mon.30S-90S": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "sea_water_salinity", + "units": "1E-03", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Sea Water Salinity", + "comment": "Sea water salinity is the salt content of sea water, often on the Practical Salinity Scale of 1978. However, the unqualified term 'salinity' is generic and does not necessarily imply any particular method of calculation. The units of salinity are dimensionless and the units attribute should normally be given as 1e-3 or 0.001 i.e. parts per thousand.", + "dimensions": "longitude latitude olevel time", + "out_name": "so", + "type": "real", + "positive": "", + "spatial_shape": "XY-O", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "so", + "variableRootDD": "so", + "branding_label": "tavg-ol-hxy-sea", + "branded_variable_name": "so_tavg-ol-hxy-sea", + "region": "30S-90S", + "cmip6_compound_name": "Omon.soSouth30", + "cmip7_compound_name": "ocean.so.tavg-ol-hxy-sea.mon.30S-90S", + "uid": "80ac31d9-a698-11ef-914a-613c0433d878" + }, + "ocean.so.tavg-ol-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "sea_water_salinity", + "units": "1E-03", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Sea Water Salinity", + "comment": "Sea water salinity is the salt content of sea water, often on the Practical Salinity Scale of 1978. However, the unqualified term 'salinity' is generic and does not necessarily imply any particular method of calculation. The units of salinity are dimensionless and the units attribute should normally be given as 1e-3 or 0.001 i.e. parts per thousand.", + "dimensions": "longitude latitude olevel time", + "out_name": "so", + "type": "real", + "positive": "", + "spatial_shape": "XY-O", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "so", + "variableRootDD": "so", + "branding_label": "tavg-ol-hxy-sea", + "branded_variable_name": "so_tavg-ol-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.so", + "cmip7_compound_name": "ocean.so.tavg-ol-hxy-sea.mon.GLB", + "uid": "baa5491a-e5dd-11e5-8482-ac72891c3257" + }, + "ocean.sob.tavg-u-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "sea_water_salinity_at_sea_floor", + "units": "1E-03", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Sea Water Salinity at Sea Floor", + "comment": "Model prognostic salinity at bottom-most model grid cell", + "dimensions": "longitude latitude time", + "out_name": "sob", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "sob", + "variableRootDD": "sob", + "branding_label": "tavg-u-hxy-sea", + "branded_variable_name": "sob_tavg-u-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.sob", + "cmip7_compound_name": "ocean.sob.tavg-u-hxy-sea.mon.GLB", + "uid": "baa55f4a-e5dd-11e5-8482-ac72891c3257" + }, + "ocean.somint.tavg-u-hxy-sea.yr.GLB": { + "frequency": "yr", + "modeling_realm": "ocean", + "standard_name": "integral_wrt_depth_of_product_of_salinity_and_sea_water_density", + "units": "g m-2", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Depth Integral of Product of Sea Water Density and Prognostic Salinity", + "comment": "Full column sum of density\\*cell thickness\\*salinity. If the model is Boussinesq, then use Boussinesq reference density for the density factor.", + "dimensions": "longitude latitude time", + "out_name": "somint", + "type": "real", + "positive": "", + "spatial_shape": "XY-int", + "temporal_shape": "time-intv", + "cmip6_table": "Oyr", + "physical_parameter_name": "somint", + "variableRootDD": "somint", + "branding_label": "tavg-u-hxy-sea", + "branded_variable_name": "somint_tavg-u-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Oyr.somint", + "cmip7_compound_name": "ocean.somint.tavg-u-hxy-sea.yr.GLB", + "uid": "1aaf4d2c-b006-11e6-9289-ac72891c3257" + }, + "ocean.sos.tavg-u-hm-sea.mon.30S-90S": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "sea_surface_salinity", + "units": "1E-03", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "", + "long_name": "Global Average Sea Surface Salinity", + "comment": "Sea water salinity is the salt content of sea water, often on the Practical Salinity Scale of 1978. However, the unqualified term 'salinity' is generic and does not necessarily imply any particular method of calculation. The units of salinity are dimensionless and the units attribute should normally be given as 1e-3 or 0.001 i.e. parts per thousand.", + "dimensions": "time", + "out_name": "sosga", + "type": "real", + "positive": "", + "spatial_shape": "na-na", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "sosga", + "variableRootDD": "sos", + "branding_label": "tavg-u-hm-sea", + "branded_variable_name": "sos_tavg-u-hm-sea", + "region": "30S-90S", + "cmip6_compound_name": "Omon.sosgaSouth30", + "cmip7_compound_name": "ocean.sos.tavg-u-hm-sea.mon.30S-90S", + "uid": "80ac31db-a698-11ef-914a-613c0433d878" + }, + "ocean.sos.tavg-u-hm-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "sea_surface_salinity", + "units": "1E-03", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "", + "long_name": "Global Average Sea Surface Salinity", + "comment": "Sea water salinity is the salt content of sea water, often on the Practical Salinity Scale of 1978. However, the unqualified term 'salinity' is generic and does not necessarily imply any particular method of calculation. The units of salinity are dimensionless and the units attribute should normally be given as 1e-3 or 0.001 i.e. parts per thousand.", + "dimensions": "time", + "out_name": "sosga", + "type": "real", + "positive": "", + "spatial_shape": "na-na", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "sosga", + "variableRootDD": "sos", + "branding_label": "tavg-u-hm-sea", + "branded_variable_name": "sos_tavg-u-hm-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.sosga", + "cmip7_compound_name": "ocean.sos.tavg-u-hm-sea.mon.GLB", + "uid": "1aaaf7fe-b006-11e6-9289-ac72891c3257" + }, + "ocean.sos.tavg-u-hxy-sea.day.GLB": { + "frequency": "day", + "modeling_realm": "ocean", + "standard_name": "sea_surface_salinity", + "units": "1E-03", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Sea Surface Salinity", + "comment": "Sea water salinity is the salt content of sea water, often on the Practical Salinity Scale of 1978. However, the unqualified term 'salinity' is generic and does not necessarily imply any particular method of calculation. The units of salinity are dimensionless and the units attribute should normally be given as 1e-3 or 0.001 i.e. parts per thousand.", + "dimensions": "longitude latitude time", + "out_name": "sos", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Oday", + "physical_parameter_name": "sos", + "variableRootDD": "sos", + "branding_label": "tavg-u-hxy-sea", + "branded_variable_name": "sos_tavg-u-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Oday.sos", + "cmip7_compound_name": "ocean.sos.tavg-u-hxy-sea.day.GLB", + "uid": "baa72514-e5dd-11e5-8482-ac72891c3257" + }, + "ocean.sos.tavg-u-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "sea_surface_salinity", + "units": "1E-03", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Sea Surface Salinity", + "comment": "Sea water salinity is the salt content of sea water, often on the Practical Salinity Scale of 1978. However, the unqualified term 'salinity' is generic and does not necessarily imply any particular method of calculation. The units of salinity are dimensionless and the units attribute should normally be given as 1e-3 or 0.001 i.e. parts per thousand.", + "dimensions": "longitude latitude time", + "out_name": "sos", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "sos", + "variableRootDD": "sos", + "branding_label": "tavg-u-hxy-sea", + "branded_variable_name": "sos_tavg-u-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.sos", + "cmip7_compound_name": "ocean.sos.tavg-u-hxy-sea.mon.GLB", + "uid": "baa557f2-e5dd-11e5-8482-ac72891c3257" + }, + "ocean.sossq.tavg-u-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "square_of_sea_surface_salinity", + "units": "1E-06", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Square of Sea Surface Salinity", + "comment": "Sea water salinity is the salt content of sea water, often on the Practical Salinity Scale of 1978. However, the unqualified term 'salinity' is generic and does not necessarily imply any particular method of calculation. The units of salinity are dimensionless and the units attribute should normally be given as 1e-3 or 0.001 i.e. parts per thousand.", + "dimensions": "longitude latitude time", + "out_name": "sossq", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "sossq", + "variableRootDD": "sossq", + "branding_label": "tavg-u-hxy-sea", + "branded_variable_name": "sossq_tavg-u-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.sossq", + "cmip7_compound_name": "ocean.sossq.tavg-u-hxy-sea.mon.GLB", + "uid": "1aab073a-b006-11e6-9289-ac72891c3257" + }, + "ocean.sw17O.tavg-ol-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "isotope_ratio_of_17O_to_16O_in_sea_water_excluding_solutes_and_solids", + "units": "1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Isotopic Ratio of Oxygen-17 in Sea Water", + "comment": "Ratio of abundance of oxygen-17 (17O) atoms to oxygen-16 (16O) atoms in sea water", + "dimensions": "longitude latitude olevel time", + "out_name": "sw17O", + "type": "real", + "positive": "", + "spatial_shape": "XY-O", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "sw17O", + "variableRootDD": "sw17O", + "branding_label": "tavg-ol-hxy-sea", + "branded_variable_name": "sw17O_tavg-ol-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Emon.sw17O", + "cmip7_compound_name": "ocean.sw17O.tavg-ol-hxy-sea.mon.GLB", + "uid": "fdca5cc1-4d35-11e8-be0a-1c4d70487308" + }, + "ocean.sw18O.tavg-ol-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "isotope_ratio_of_18O_to_16O_in_sea_water_excluding_solutes_and_solids", + "units": "1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Isotopic Ratio of Oxygen-18 in Sea Water", + "comment": "Ratio of abundance of oxygen-18 (18O) atoms to oxygen-16 (16O) atoms in sea water", + "dimensions": "longitude latitude olevel time", + "out_name": "sw18O", + "type": "real", + "positive": "", + "spatial_shape": "XY-O", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "sw18O", + "variableRootDD": "sw18O", + "branding_label": "tavg-ol-hxy-sea", + "branded_variable_name": "sw18O_tavg-ol-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Emon.sw18O", + "cmip7_compound_name": "ocean.sw18O.tavg-ol-hxy-sea.mon.GLB", + "uid": "6f68c8f2-9acb-11e6-b7ee-ac72891c3257" + }, + "ocean.sw2H.tavg-ol-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "isotope_ratio_of_2H_to_1H_in_sea_water_excluding_solutes_and_solids", + "units": "1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Isotopic Ratio of Deuterium in Sea Water", + "comment": "Ratio of abundance of hydrogen-2 (2H) atoms to hydrogen-1 (1H) atoms in sea water", + "dimensions": "longitude latitude olevel time", + "out_name": "sw2H", + "type": "real", + "positive": "", + "spatial_shape": "XY-O", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "sw2H", + "variableRootDD": "sw2H", + "branding_label": "tavg-ol-hxy-sea", + "branded_variable_name": "sw2H_tavg-ol-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Emon.sw2H", + "cmip7_compound_name": "ocean.sw2H.tavg-ol-hxy-sea.mon.GLB", + "uid": "fdca5cc2-4d35-11e8-be0a-1c4d70487308" + }, + "ocean.swh.tavg-u-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "sea_surface_wave_significant_height", + "units": "m", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Total Significant Wave Height", + "comment": "Average height of the highest one-third of waves present in the sea state, incorporating both wind-sea and swell waves. This is a key parameter for describing wave energy and is derived from the wave spectrum using spectral moments. Specifically, this parameter is four times the square root of the integral over all directions and all frequencies of the two-dimensional wave spectrum.", + "dimensions": "longitude latitude time", + "out_name": "swh", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "swh", + "variableRootDD": "swh", + "branding_label": "tavg-u-hxy-sea", + "branded_variable_name": "swh_tavg-u-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.swh", + "cmip7_compound_name": "ocean.swh.tavg-u-hxy-sea.mon.GLB", + "uid": "80ab740d-a698-11ef-914a-613c0433d878" + }, + "ocean.swh.tpt-u-hxy-sea.3hr.GLB": { + "frequency": "3hr", + "modeling_realm": "ocean", + "standard_name": "sea_surface_wave_significant_height", + "units": "m", + "cell_methods": "area: mean where sea time: point", + "cell_measures": "area: areacello", + "long_name": "Total Significant Wave Height", + "comment": "Average height of the highest one-third of waves present in the sea state, incorporating both wind-sea and swell waves. This is a key parameter for describing wave energy and is derived from the wave spectrum using spectral moments. Specifically, this parameter is four times the square root of the integral over all directions and all frequencies of the two-dimensional wave spectrum.", + "dimensions": "longitude latitude time1", + "out_name": "swh", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-point", + "cmip6_table": "3hrPt", + "physical_parameter_name": "swh", + "variableRootDD": "swh", + "branding_label": "tpt-u-hxy-sea", + "branded_variable_name": "swh_tpt-u-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "3hrPt.swh", + "cmip7_compound_name": "ocean.swh.tpt-u-hxy-sea.3hr.GLB", + "uid": "80ab744b-a698-11ef-914a-613c0433d878" + }, + "ocean.swhmax.tmax-u-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "sea_surface_wave_significant_height", + "units": "m", + "cell_methods": "area: mean where sea time: maximum", + "cell_measures": "area: areacello", + "long_name": "Maximum Significant Wave Height", + "comment": "Highest value of the significant wave height simulated within a given time range (e.g., daily or monthly). The significant wave height (swh) is derived from the wave spectrum using spectral moments. Specifically, swh is four times the square root of the integral over all directions and all frequencies of the two-dimensional wave spectrum.", + "dimensions": "longitude latitude time", + "out_name": "swhmax", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "swhmax", + "variableRootDD": "swhmax", + "branding_label": "tmax-u-hxy-sea", + "branded_variable_name": "swhmax_tmax-u-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.swhmax", + "cmip7_compound_name": "ocean.swhmax.tmax-u-hxy-sea.mon.GLB", + "uid": "80ab740e-a698-11ef-914a-613c0433d878" + }, + "ocean.swhmax.tpt-u-hxy-sea.3hr.GLB": { + "frequency": "3hr", + "modeling_realm": "ocean", + "standard_name": "sea_surface_wave_significant_height", + "units": "m", + "cell_methods": "area: mean where sea time: point", + "cell_measures": "area: areacello", + "long_name": "Maximum Significant Wave Height", + "comment": "Highest value of the significant wave height simulated within a given time range (e.g., daily or monthly). The significant wave height (swh) is derived from the wave spectrum using spectral moments. Specifically, swh is four times the square root of the integral over all directions and all frequencies of the two-dimensional wave spectrum.", + "dimensions": "longitude latitude time1", + "out_name": "swhmax", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-point", + "cmip6_table": "3hrPt", + "physical_parameter_name": "swhmax", + "variableRootDD": "swhmax", + "branding_label": "tpt-u-hxy-sea", + "branded_variable_name": "swhmax_tpt-u-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "3hrPt.swhmax", + "cmip7_compound_name": "ocean.swhmax.tpt-u-hxy-sea.3hr.GLB", + "uid": "80ab7417-a698-11ef-914a-613c0433d878" + }, + "ocean.swhswell.tavg-u-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "sea_surface_swell_wave_significant_height", + "units": "m", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Swell Significant Wave Height", + "comment": "Average height of the highest one-third of waves present in the sea state, incorporating just swell waves (i.e., waves that have propagated away from their generation area). This parameter is derived from all swell partitions of the wave spectrum using spectral moments. Specifically, this parameter is four times the square root of the integral over all directions and all frequencies of the\u00a0components of the two-dimensional wave spectrum that are not under the influence of local wind.", + "dimensions": "longitude latitude time", + "out_name": "swhswell", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "swhswell", + "variableRootDD": "swhswell", + "branding_label": "tavg-u-hxy-sea", + "branded_variable_name": "swhswell_tavg-u-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.swhswell", + "cmip7_compound_name": "ocean.swhswell.tavg-u-hxy-sea.mon.GLB", + "uid": "80ab741d-a698-11ef-914a-613c0433d878" + }, + "ocean.swhswell.tpt-u-hxy-sea.3hr.GLB": { + "frequency": "3hr", + "modeling_realm": "ocean", + "standard_name": "sea_surface_swell_wave_significant_height", + "units": "m", + "cell_methods": "area: mean where sea time: point", + "cell_measures": "area: areacello", + "long_name": "Swell Significant Wave Height", + "comment": "Average height of the highest one-third of waves present in the sea state, incorporating just swell waves (i.e., waves that have propagated away from their generation area). This parameter is derived from all swell partitions of the wave spectrum using spectral moments. Specifically, this parameter is four times the square root of the integral over all directions and all frequencies of the\u00a0components of the two-dimensional wave spectrum that are not under the influence of local wind.", + "dimensions": "longitude latitude time1", + "out_name": "swhswell", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-point", + "cmip6_table": "3hrPt", + "physical_parameter_name": "swhswell", + "variableRootDD": "swhswell", + "branding_label": "tpt-u-hxy-sea", + "branded_variable_name": "swhswell_tpt-u-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "3hrPt.swhswell", + "cmip7_compound_name": "ocean.swhswell.tpt-u-hxy-sea.3hr.GLB", + "uid": "80ab7429-a698-11ef-914a-613c0433d878" + }, + "ocean.swhwindsea.tavg-u-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "sea_surface_wind_wave_significant_height", + "units": "m", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Wind Sea Significant Wave Height", + "comment": "Average height of the highest one-third of waves present in the sea state, incorporating just wind-sea waves (i.e., local wind waves). It is derived from the wind-sea wave spectrum using spectral moments. Specifically, this parameter is four times the square root of the integral over all directions and all frequencies of the two-dimensional wind-sea wave spectrum.", + "dimensions": "longitude latitude time", + "out_name": "swhwindsea", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "swhwindsea", + "variableRootDD": "swhwindsea", + "branding_label": "tavg-u-hxy-sea", + "branded_variable_name": "swhwindsea_tavg-u-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.swhwindsea", + "cmip7_compound_name": "ocean.swhwindsea.tavg-u-hxy-sea.mon.GLB", + "uid": "80ab741e-a698-11ef-914a-613c0433d878" + }, + "ocean.swhwindsea.tpt-u-hxy-sea.3hr.GLB": { + "frequency": "3hr", + "modeling_realm": "ocean", + "standard_name": "sea_surface_wind_wave_significant_height", + "units": "m", + "cell_methods": "area: mean where sea time: point", + "cell_measures": "area: areacello", + "long_name": "Wind Sea Significant Wave Height", + "comment": "Average height of the highest one-third of waves present in the sea state, incorporating just wind-sea waves (i.e., local wind waves). It is derived from the wind-sea wave spectrum using spectral moments. Specifically, this parameter is four times the square root of the integral over all directions and all frequencies of the two-dimensional wind-sea wave spectrum.", + "dimensions": "longitude latitude time1", + "out_name": "swhwindsea", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-point", + "cmip6_table": "3hrPt", + "physical_parameter_name": "swhwindsea", + "variableRootDD": "swhwindsea", + "branding_label": "tpt-u-hxy-sea", + "branded_variable_name": "swhwindsea_tpt-u-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "3hrPt.swhwindsea", + "cmip7_compound_name": "ocean.swhwindsea.tpt-u-hxy-sea.3hr.GLB", + "uid": "80ab7428-a698-11ef-914a-613c0433d878" + }, + "ocean.t17d.tavg-u-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "depth_of_isosurface_of_sea_water_potential_temperature", + "units": "m", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Depth of 17 degree Celsius Isotherm", + "comment": "Monthly 17C isotherm depth", + "dimensions": "longitude latitude time", + "out_name": "t17d", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "t17d", + "variableRootDD": "t17d", + "branding_label": "tavg-u-hxy-sea", + "branded_variable_name": "t17d_tavg-u-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Emon.t17d", + "cmip7_compound_name": "ocean.t17d.tavg-u-hxy-sea.mon.GLB", + "uid": "83bbfbe0-7f07-11ef-9308-b1dd71e64bec" + }, + "ocean.t20d.tavg-u-hxy-sea.day.GLB": { + "frequency": "day", + "modeling_realm": "ocean", + "standard_name": "depth_of_isosurface_of_sea_water_potential_temperature", + "units": "m", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Depth of 20 degree Celsius Isotherm", + "comment": "Daily 20C isotherm depth", + "dimensions": "longitude latitude time", + "out_name": "t20d", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Eday", + "physical_parameter_name": "t20d", + "variableRootDD": "t20d", + "branding_label": "tavg-u-hxy-sea", + "branded_variable_name": "t20d_tavg-u-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Eday.t20d", + "cmip7_compound_name": "ocean.t20d.tavg-u-hxy-sea.day.GLB", + "uid": "8b927340-4a5b-11e6-9cd2-ac72891c3257" + }, + "ocean.t20d.tavg-u-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "depth_of_isosurface_of_sea_water_potential_temperature", + "units": "m", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Depth of 20 degree Celsius Isotherm", + "comment": "Monthly 20C isotherm depth", + "dimensions": "longitude latitude time", + "out_name": "t20d", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "t20d", + "variableRootDD": "t20d", + "branding_label": "tavg-u-hxy-sea", + "branded_variable_name": "t20d_tavg-u-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Emon.t20d", + "cmip7_compound_name": "ocean.t20d.tavg-u-hxy-sea.mon.GLB", + "uid": "8b922f7a-4a5b-11e6-9cd2-ac72891c3257" + }, + "ocean.tauuo.tavg-u-hxy-sea.3hr.GLB": { + "frequency": "3hr", + "modeling_realm": "ocean", + "standard_name": "downward_x_stress_at_sea_water_surface", + "units": "N m-2", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "::OPT", + "long_name": "Sea Water Surface Downward X Stress", + "comment": "The stress on the liquid ocean from interactions with overlying atmosphere, sea ice, ice shelf, etc.", + "dimensions": "longitude latitude time", + "out_name": "tauuo", + "type": "real", + "positive": "down", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "3hr", + "physical_parameter_name": "tauuo", + "variableRootDD": "tauuo", + "branding_label": "tavg-u-hxy-sea", + "branded_variable_name": "tauuo_tavg-u-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "3hr.tauuo", + "cmip7_compound_name": "ocean.tauuo.tavg-u-hxy-sea.3hr.GLB", + "uid": "83bbfc62-7f07-11ef-9308-b1dd71e64bec" + }, + "ocean.tauuo.tavg-u-hxy-sea.dec.GLB": { + "frequency": "dec", + "modeling_realm": "ocean", + "standard_name": "downward_x_stress_at_sea_water_surface", + "units": "N m-2", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Sea Water Surface Downward X Stress", + "comment": "This is the stress on the liquid ocean from overlying atmosphere, sea ice, ice shelf, etc.", + "dimensions": "longitude latitude time", + "out_name": "tauuo", + "type": "real", + "positive": "down", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Odec", + "physical_parameter_name": "tauuo", + "variableRootDD": "tauuo", + "branding_label": "tavg-u-hxy-sea", + "branded_variable_name": "tauuo_tavg-u-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Odec.tauuo", + "cmip7_compound_name": "ocean.tauuo.tavg-u-hxy-sea.dec.GLB", + "uid": "ac26fd4c-bb0d-11e6-83c8-bf7187cdbd68" + }, + "ocean.tauuo.tavg-u-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "downward_x_stress_at_sea_water_surface", + "units": "N m-2", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "::OPT", + "long_name": "Sea Water Surface Downward X Stress", + "comment": "This is the stress on the liquid ocean from overlying atmosphere, sea ice, ice shelf, etc.", + "dimensions": "longitude latitude time", + "out_name": "tauuo", + "type": "real", + "positive": "down", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "tauuo", + "variableRootDD": "tauuo", + "branding_label": "tavg-u-hxy-sea", + "branded_variable_name": "tauuo_tavg-u-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.tauuo", + "cmip7_compound_name": "ocean.tauuo.tavg-u-hxy-sea.mon.GLB", + "uid": "baa6cf38-e5dd-11e5-8482-ac72891c3257" + }, + "ocean.tauvo.tavg-u-hxy-sea.3hr.GLB": { + "frequency": "3hr", + "modeling_realm": "ocean", + "standard_name": "downward_y_stress_at_sea_water_surface", + "units": "N m-2", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "::OPT", + "long_name": "Sea Water Surface Downward Y Stress", + "comment": "The stress on the liquid ocean from interactions with overlying atmosphere, sea ice, ice shelf, etc.", + "dimensions": "longitude latitude time", + "out_name": "tauvo", + "type": "real", + "positive": "down", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "3hr", + "physical_parameter_name": "tauvo", + "variableRootDD": "tauvo", + "branding_label": "tavg-u-hxy-sea", + "branded_variable_name": "tauvo_tavg-u-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "3hr.tauvo", + "cmip7_compound_name": "ocean.tauvo.tavg-u-hxy-sea.3hr.GLB", + "uid": "83bbfc61-7f07-11ef-9308-b1dd71e64bec" + }, + "ocean.tauvo.tavg-u-hxy-sea.dec.GLB": { + "frequency": "dec", + "modeling_realm": "ocean", + "standard_name": "downward_y_stress_at_sea_water_surface", + "units": "N m-2", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Sea Water Surface Downward Y Stress", + "comment": "This is the stress on the liquid ocean from overlying atmosphere, sea ice, ice shelf, etc.", + "dimensions": "longitude latitude time", + "out_name": "tauvo", + "type": "real", + "positive": "down", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Odec", + "physical_parameter_name": "tauvo", + "variableRootDD": "tauvo", + "branding_label": "tavg-u-hxy-sea", + "branded_variable_name": "tauvo_tavg-u-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Odec.tauvo", + "cmip7_compound_name": "ocean.tauvo.tavg-u-hxy-sea.dec.GLB", + "uid": "ac270e9a-bb0d-11e6-83c8-bf7187cdbd68" + }, + "ocean.tauvo.tavg-u-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "downward_y_stress_at_sea_water_surface", + "units": "N m-2", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "::OPT", + "long_name": "Sea Water Surface Downward Y Stress", + "comment": "This is the stress on the liquid ocean from overlying atmosphere, sea ice, ice shelf, etc.", + "dimensions": "longitude latitude time", + "out_name": "tauvo", + "type": "real", + "positive": "down", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "tauvo", + "variableRootDD": "tauvo", + "branding_label": "tavg-u-hxy-sea", + "branded_variable_name": "tauvo_tavg-u-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.tauvo", + "cmip7_compound_name": "ocean.tauvo.tavg-u-hxy-sea.mon.GLB", + "uid": "baa6d366-e5dd-11e5-8482-ac72891c3257" + }, + "ocean.thetao.tavg-d2000m-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "sea_water_potential_temperature", + "units": "degC", + "cell_methods": "area: depth: time: mean where sea", + "cell_measures": "area: areacello", + "long_name": "Depth Average Potential Temperature of Upper 2000m", + "comment": "Upper 2000m, 2D field", + "dimensions": "longitude latitude time olayer2000m", + "out_name": "thetaot2000", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "thetaot2000", + "variableRootDD": "thetao", + "branding_label": "tavg-d2000m-hxy-sea", + "branded_variable_name": "thetao_tavg-d2000m-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Emon.thetaot2000", + "cmip7_compound_name": "ocean.thetao.tavg-d2000m-hxy-sea.mon.GLB", + "uid": "8b924fa0-4a5b-11e6-9cd2-ac72891c3257" + }, + "ocean.thetao.tavg-d300m-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "sea_water_potential_temperature", + "units": "degC", + "cell_methods": "area: depth: time: mean where sea", + "cell_measures": "area: areacello", + "long_name": "Depth Average Potential Temperature of Upper 300m", + "comment": "Upper 300m, 2D field", + "dimensions": "longitude latitude time olayer300m", + "out_name": "thetaot300", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "thetaot300", + "variableRootDD": "thetao", + "branding_label": "tavg-d300m-hxy-sea", + "branded_variable_name": "thetao_tavg-d300m-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Emon.thetaot300", + "cmip7_compound_name": "ocean.thetao.tavg-d300m-hxy-sea.mon.GLB", + "uid": "8b92450a-4a5b-11e6-9cd2-ac72891c3257" + }, + "ocean.thetao.tavg-d700m-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "sea_water_potential_temperature", + "units": "degC", + "cell_methods": "area: depth: time: mean where sea", + "cell_measures": "area: areacello", + "long_name": "Depth Average Potential Temperature of Upper 700m", + "comment": "Upper 700m, 2D field", + "dimensions": "longitude latitude time olayer700m", + "out_name": "thetaot700", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "thetaot700", + "variableRootDD": "thetao", + "branding_label": "tavg-d700m-hxy-sea", + "branded_variable_name": "thetao_tavg-d700m-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Emon.thetaot700", + "cmip7_compound_name": "ocean.thetao.tavg-d700m-hxy-sea.mon.GLB", + "uid": "8b924a46-4a5b-11e6-9cd2-ac72891c3257" + }, + "ocean.thetao.tavg-ol-hm-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "sea_water_potential_temperature", + "units": "degC", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "", + "long_name": "Global Average Sea Water Potential Temperature", + "comment": "Diagnostic should be contributed even for models using conservative temperature as prognostic field", + "dimensions": "olevel time", + "out_name": "thetaoga", + "type": "real", + "positive": "", + "spatial_shape": "na-O", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "thetaoga", + "variableRootDD": "thetao", + "branding_label": "tavg-ol-hm-sea", + "branded_variable_name": "thetao_tavg-ol-hm-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.thetaoga", + "cmip7_compound_name": "ocean.thetao.tavg-ol-hm-sea.mon.GLB", + "uid": "baa52138-e5dd-11e5-8482-ac72891c3257" + }, + "ocean.thetao.tavg-ol-hxy-sea.dec.GLB": { + "frequency": "dec", + "modeling_realm": "ocean", + "standard_name": "sea_water_potential_temperature", + "units": "degC", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Sea Water Potential Temperature", + "comment": "Diagnostic should be contributed even for models using conservative temperature as prognostic field.", + "dimensions": "longitude latitude olevel time", + "out_name": "thetao", + "type": "real", + "positive": "", + "spatial_shape": "XY-O", + "temporal_shape": "time-intv", + "cmip6_table": "Odec", + "physical_parameter_name": "thetao", + "variableRootDD": "thetao", + "branding_label": "tavg-ol-hxy-sea", + "branded_variable_name": "thetao_tavg-ol-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Odec.thetao", + "cmip7_compound_name": "ocean.thetao.tavg-ol-hxy-sea.dec.GLB", + "uid": "479522ca-bb0b-11e6-8316-5980f7b176d1" + }, + "ocean.thetao.tavg-ol-hxy-sea.mon.30S-90S": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "sea_water_potential_temperature", + "units": "degC", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Sea Water Potential Temperature", + "comment": "Diagnostic should be contributed even for models using conservative temperature as prognostic field.", + "dimensions": "longitude latitude olevel time", + "out_name": "thetao", + "type": "real", + "positive": "", + "spatial_shape": "XY-O", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "thetao", + "variableRootDD": "thetao", + "branding_label": "tavg-ol-hxy-sea", + "branded_variable_name": "thetao_tavg-ol-hxy-sea", + "region": "30S-90S", + "cmip6_compound_name": "Omon.thetaoSouth30", + "cmip7_compound_name": "ocean.thetao.tavg-ol-hxy-sea.mon.30S-90S", + "uid": "80ac31e3-a698-11ef-914a-613c0433d878" + }, + "ocean.thetao.tavg-ol-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "sea_water_potential_temperature", + "units": "degC", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Sea Water Potential Temperature", + "comment": "Diagnostic should be contributed even for models using conservative temperature as prognostic field.", + "dimensions": "longitude latitude olevel time", + "out_name": "thetao", + "type": "real", + "positive": "", + "spatial_shape": "XY-O", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "thetao", + "variableRootDD": "thetao", + "branding_label": "tavg-ol-hxy-sea", + "branded_variable_name": "thetao_tavg-ol-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.thetao", + "cmip7_compound_name": "ocean.thetao.tavg-ol-hxy-sea.mon.GLB", + "uid": "baa51d00-e5dd-11e5-8482-ac72891c3257" + }, + "ocean.thetao.tavg-op20bar-hxy-sea.day.GLB": { + "frequency": "day", + "modeling_realm": "ocean", + "standard_name": "sea_water_potential_temperature", + "units": "degC", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Sea Water Potential Temperature at 200 meters", + "comment": "Diagnostic should be contributed even for models using conservative temperature as prognostic field.", + "dimensions": "longitude latitude time op20bar", + "out_name": "thetao", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Oday", + "physical_parameter_name": "thetao", + "variableRootDD": "thetao", + "branding_label": "tavg-op20bar-hxy-sea", + "branded_variable_name": "thetao_tavg-op20bar-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Oday.thetao200", + "cmip7_compound_name": "ocean.thetao.tavg-op20bar-hxy-sea.day.GLB", + "uid": "83bbfb6e-7f07-11ef-9308-b1dd71e64bec" + }, + "ocean.thetaot.tavg-u-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "sea_water_potential_temperature", + "units": "degC", + "cell_methods": "area: depth: time: mean where sea", + "cell_measures": "area: areacello", + "long_name": "Vertically Averaged Sea Water Potential Temperature", + "comment": "Vertically averaged ocean temperature", + "dimensions": "longitude latitude time", + "out_name": "thetaot", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "thetaot", + "variableRootDD": "thetaot", + "branding_label": "tavg-u-hxy-sea", + "branded_variable_name": "thetaot_tavg-u-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Emon.thetaot", + "cmip7_compound_name": "ocean.thetaot.tavg-u-hxy-sea.mon.GLB", + "uid": "6f69f1b4-9acb-11e6-b7ee-ac72891c3257" + }, + "ocean.thkcello.tavg-ol-hxy-sea.dec.GLB": { + "frequency": "dec", + "modeling_realm": "ocean", + "standard_name": "cell_thickness", + "units": "m", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Ocean Model Cell Thickness", + "comment": "The time varying thickness of ocean cells. \"Thickness\" means the vertical extent of a layer. \"Cell\" refers to a model grid-cell.", + "dimensions": "longitude latitude olevel time", + "out_name": "thkcello", + "type": "real", + "positive": "", + "spatial_shape": "XY-O", + "temporal_shape": "time-intv", + "cmip6_table": "Odec", + "physical_parameter_name": "thkcello", + "variableRootDD": "thkcello", + "branding_label": "tavg-ol-hxy-sea", + "branded_variable_name": "thkcello_tavg-ol-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Odec.thkcello", + "cmip7_compound_name": "ocean.thkcello.tavg-ol-hxy-sea.dec.GLB", + "uid": "479514a6-bb0b-11e6-8316-5980f7b176d1" + }, + "ocean.thkcello.tavg-ol-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "cell_thickness", + "units": "m", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Ocean Model Cell Thickness", + "comment": "The time varying thickness of ocean cells. \"Thickness\" means the vertical extent of a layer. \"Cell\" refers to a model grid-cell.", + "dimensions": "longitude latitude olevel time", + "out_name": "thkcello", + "type": "real", + "positive": "", + "spatial_shape": "XY-O", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "thkcello", + "variableRootDD": "thkcello", + "branding_label": "tavg-ol-hxy-sea", + "branded_variable_name": "thkcello_tavg-ol-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.thkcello", + "cmip7_compound_name": "ocean.thkcello.tavg-ol-hxy-sea.mon.GLB", + "uid": "baa518c8-e5dd-11e5-8482-ac72891c3257" + }, + "ocean.thkcello.ti-ol-hxy-sea.fx.GLB": { + "frequency": "fx", + "modeling_realm": "ocean", + "standard_name": "cell_thickness", + "units": "m", + "cell_methods": "area: mean where sea", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Ocean Model Cell Thickness", + "comment": "Thickness of ocean cells. \"Thickness\" means the vertical extent of a layer. \"Cell\" refers to a model grid-cell.", + "dimensions": "longitude latitude olevel", + "out_name": "thkcello", + "type": "real", + "positive": "", + "spatial_shape": "XY-O", + "temporal_shape": "None", + "cmip6_table": "Ofx", + "physical_parameter_name": "thkcello", + "variableRootDD": "thkcello", + "branding_label": "ti-ol-hxy-sea", + "branded_variable_name": "thkcello_ti-ol-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Ofx.thkcello", + "cmip7_compound_name": "ocean.thkcello.ti-ol-hxy-sea.fx.GLB", + "uid": "bab9bd00-e5dd-11e5-8482-ac72891c3257" + }, + "ocean.thkcelluo.tavg-ol-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "cell_thickness", + "units": "m", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Ocean Model Cell Thickness at u-points", + "comment": "The time varying thickness of ocean cells centered at u-points (points for velocity in the x-direction). \"Thickness\" means the vertical extent of a layer. \"Cell\" refers to a model grid-cell.", + "dimensions": "longitude latitude olevel time", + "out_name": "thkcelluo", + "type": "real", + "positive": "", + "spatial_shape": "XY-O", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "thkcelluo", + "variableRootDD": "thkcelluo", + "branding_label": "tavg-ol-hxy-sea", + "branded_variable_name": "thkcelluo_tavg-ol-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.thkcelluo", + "cmip7_compound_name": "ocean.thkcelluo.tavg-ol-hxy-sea.mon.GLB", + "uid": "83bbfb4c-7f07-11ef-9308-b1dd71e64bec" + }, + "ocean.thkcellvo.tavg-ol-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "cell_thickness", + "units": "m", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Ocean Model Cell Thickness at v-points", + "comment": "The time varying thickness of ocean cells centered at v-points (points for velocity in the y-direction). \"Thickness\" means the vertical extent of a layer. \"Cell\" refers to a model grid-cell.", + "dimensions": "longitude latitude olevel time", + "out_name": "thkcellvo", + "type": "real", + "positive": "", + "spatial_shape": "XY-O", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "thkcellvo", + "variableRootDD": "thkcellvo", + "branding_label": "tavg-ol-hxy-sea", + "branded_variable_name": "thkcellvo_tavg-ol-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.thkcellvo", + "cmip7_compound_name": "ocean.thkcellvo.tavg-ol-hxy-sea.mon.GLB", + "uid": "83bbfb4b-7f07-11ef-9308-b1dd71e64bec" + }, + "ocean.tnkebto.tavg-u-hxy-sea.yr.GLB": { + "frequency": "yr", + "modeling_realm": "ocean", + "standard_name": "tendency_of_ocean_eddy_kinetic_energy_content_due_to_parameterized_eddy_advection", + "units": "W m-2", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Tendency of Ocean Eddy Kinetic Energy Content Due to Parameterized Eddy Advection", + "comment": "Depth integrated impacts on kinetic energy arising from parameterized eddy-induced advection. For CMIP5, this diagnostic was 3d, whereas the CMIP6 depth integrated diagnostic is sufficient for many purposes and reduces archive requirements.", + "dimensions": "longitude latitude time", + "out_name": "tnkebto", + "type": "real", + "positive": "", + "spatial_shape": "XY-int", + "temporal_shape": "time-intv", + "cmip6_table": "Oyr", + "physical_parameter_name": "tnkebto", + "variableRootDD": "tnkebto", + "branding_label": "tavg-u-hxy-sea", + "branded_variable_name": "tnkebto_tavg-u-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Oyr.tnkebto", + "cmip7_compound_name": "ocean.tnkebto.tavg-u-hxy-sea.yr.GLB", + "uid": "baa4e07e-e5dd-11e5-8482-ac72891c3257" + }, + "ocean.tnpeo.tavg-u-hxy-sea.yr.GLB": { + "frequency": "yr", + "modeling_realm": "ocean", + "standard_name": "tendency_of_ocean_potential_energy_content", + "units": "W m-2", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Tendency of Ocean Potential Energy Content", + "comment": "Rate that work is done against vertical stratification, as measured by the vertical heat and salt diffusivity. Report here as depth integrated two-dimensional field.", + "dimensions": "longitude latitude time", + "out_name": "tnpeo", + "type": "real", + "positive": "", + "spatial_shape": "XY-int", + "temporal_shape": "time-intv", + "cmip6_table": "Oyr", + "physical_parameter_name": "tnpeo", + "variableRootDD": "tnpeo", + "branding_label": "tavg-u-hxy-sea", + "branded_variable_name": "tnpeo_tavg-u-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Oyr.tnpeo", + "cmip7_compound_name": "ocean.tnpeo.tavg-u-hxy-sea.yr.GLB", + "uid": "baa4b4e6-e5dd-11e5-8482-ac72891c3257" + }, + "ocean.tob.tavg-u-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "sea_water_potential_temperature_at_sea_floor", + "units": "degC", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Sea Water Potential Temperature at Sea Floor", + "comment": "Potential temperature at the ocean bottom-most grid cell.", + "dimensions": "longitude latitude time", + "out_name": "tob", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "tob", + "variableRootDD": "tob", + "branding_label": "tavg-u-hxy-sea", + "branded_variable_name": "tob_tavg-u-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.tob", + "cmip7_compound_name": "ocean.tob.tavg-u-hxy-sea.mon.GLB", + "uid": "baa53218-e5dd-11e5-8482-ac72891c3257" + }, + "ocean.tos.tavg-u-hm-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "sea_surface_temperature", + "units": "degC", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "", + "long_name": "Global Average Sea Surface Temperature", + "comment": "This may differ from \"surface temperature\" in regions of sea ice or floating ice shelves. For models using conservative temperature as the prognostic field, they should report the top ocean layer as surface potential temperature, which is the same as surface in situ temperature.", + "dimensions": "time", + "out_name": "tosga", + "type": "real", + "positive": "", + "spatial_shape": "na-na", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "tosga", + "variableRootDD": "tos", + "branding_label": "tavg-u-hm-sea", + "branded_variable_name": "tos_tavg-u-hm-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.tosga", + "cmip7_compound_name": "ocean.tos.tavg-u-hm-sea.mon.GLB", + "uid": "baa53ace-e5dd-11e5-8482-ac72891c3257" + }, + "ocean.tos.tavg-u-hxy-sea.day.GLB": { + "frequency": "day", + "modeling_realm": "ocean", + "standard_name": "sea_surface_temperature", + "units": "degC", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Sea Surface Temperature", + "comment": "This may differ from \"surface temperature\" in regions of sea ice or floating ice shelves. For models using conservative temperature as the prognostic field, they should report the top ocean layer as surface potential temperature, which is the same as surface in situ temperature.", + "dimensions": "longitude latitude time", + "out_name": "tos", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Oday", + "physical_parameter_name": "tos", + "variableRootDD": "tos", + "branding_label": "tavg-u-hxy-sea", + "branded_variable_name": "tos_tavg-u-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Oday.tos", + "cmip7_compound_name": "ocean.tos.tavg-u-hxy-sea.day.GLB", + "uid": "baa720e6-e5dd-11e5-8482-ac72891c3257" + }, + "ocean.tos.tavg-u-hxy-sea.mon.30S-90S": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "sea_surface_temperature", + "units": "degC", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Sea Surface Temperature", + "comment": "This may differ from \"surface temperature\" in regions of sea ice or floating ice shelves. For models using conservative temperature as the prognostic field, they should report the top ocean layer as surface potential temperature, which is the same as surface in situ temperature.", + "dimensions": "longitude latitude time", + "out_name": "tos", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "tos", + "variableRootDD": "tos", + "branding_label": "tavg-u-hxy-sea", + "branded_variable_name": "tos_tavg-u-hxy-sea", + "region": "30S-90S", + "cmip6_compound_name": "Omon.tosSouth30", + "cmip7_compound_name": "ocean.tos.tavg-u-hxy-sea.mon.30S-90S", + "uid": "80ac31e4-a698-11ef-914a-613c0433d878" + }, + "ocean.tos.tavg-u-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "sea_surface_temperature", + "units": "degC", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Sea Surface Temperature", + "comment": "This may differ from \"surface temperature\" in regions of sea ice or floating ice shelves. For models using conservative temperature as the prognostic field, they should report the top ocean layer as surface potential temperature, which is the same as surface in situ temperature.", + "dimensions": "longitude latitude time", + "out_name": "tos", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "tos", + "variableRootDD": "tos", + "branding_label": "tavg-u-hxy-sea", + "branded_variable_name": "tos_tavg-u-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.tos", + "cmip7_compound_name": "ocean.tos.tavg-u-hxy-sea.mon.GLB", + "uid": "baa52de0-e5dd-11e5-8482-ac72891c3257" + }, + "ocean.tos.tpt-u-hxy-sea.3hr.GLB": { + "frequency": "3hr", + "modeling_realm": "ocean", + "standard_name": "sea_surface_temperature", + "units": "degC", + "cell_methods": "area: mean where sea time: point", + "cell_measures": "area: areacello", + "long_name": "Sea Surface Temperature", + "comment": "temperature of surface of open ocean, sampled synoptically.", + "dimensions": "longitude latitude time1", + "out_name": "tos", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-point", + "cmip6_table": "3hr", + "physical_parameter_name": "tos", + "variableRootDD": "tos", + "branding_label": "tpt-u-hxy-sea", + "branded_variable_name": "tos_tpt-u-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "3hr.tos", + "cmip7_compound_name": "ocean.tos.tpt-u-hxy-sea.3hr.GLB", + "uid": "babb20b4-e5dd-11e5-8482-ac72891c3257" + }, + "ocean.tossq.tavg-u-hxy-sea.day.GLB": { + "frequency": "day", + "modeling_realm": "ocean", + "standard_name": "square_of_sea_surface_temperature", + "units": "degC2", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Square of Sea Surface Temperature", + "comment": "Square of temperature of liquid ocean, averaged over the day.", + "dimensions": "longitude latitude time", + "out_name": "tossq", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Oday", + "physical_parameter_name": "tossq", + "variableRootDD": "tossq", + "branding_label": "tavg-u-hxy-sea", + "branded_variable_name": "tossq_tavg-u-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Oday.tossq", + "cmip7_compound_name": "ocean.tossq.tavg-u-hxy-sea.day.GLB", + "uid": "baa71c7c-e5dd-11e5-8482-ac72891c3257" + }, + "ocean.tossq.tavg-u-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "square_of_sea_surface_temperature", + "units": "degC2", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Square of Sea Surface Temperature", + "comment": "Square of temperature of liquid ocean, averaged over the day.", + "dimensions": "longitude latitude time", + "out_name": "tossq", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "tossq", + "variableRootDD": "tossq", + "branding_label": "tavg-u-hxy-sea", + "branded_variable_name": "tossq_tavg-u-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.tossq", + "cmip7_compound_name": "ocean.tossq.tavg-u-hxy-sea.mon.GLB", + "uid": "baa53ee8-e5dd-11e5-8482-ac72891c3257" + }, + "ocean.umo.tavg-ol-hxy-sea.mon.30S-90S": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "ocean_mass_x_transport", + "units": "kg s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Ocean Mass X Transport", + "comment": "X-ward mass transport from residual mean (resolved plus parameterized) advective transport.", + "dimensions": "longitude latitude olevel time", + "out_name": "umo", + "type": "real", + "positive": "", + "spatial_shape": "XY-O", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "umo", + "variableRootDD": "umo", + "branding_label": "tavg-ol-hxy-sea", + "branded_variable_name": "umo_tavg-ol-hxy-sea", + "region": "30S-90S", + "cmip6_compound_name": "Omon.umoSouth30", + "cmip7_compound_name": "ocean.umo.tavg-ol-hxy-sea.mon.30S-90S", + "uid": "80ac31e8-a698-11ef-914a-613c0433d878" + }, + "ocean.umo.tavg-ol-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "ocean_mass_x_transport", + "units": "kg s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Ocean Mass X Transport", + "comment": "X-ward mass transport from residual mean (resolved plus parameterized) advective transport.", + "dimensions": "longitude latitude olevel time", + "out_name": "umo", + "type": "real", + "positive": "", + "spatial_shape": "XY-O", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "umo", + "variableRootDD": "umo", + "branding_label": "tavg-ol-hxy-sea", + "branded_variable_name": "umo_tavg-ol-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.umo", + "cmip7_compound_name": "ocean.umo.tavg-ol-hxy-sea.mon.GLB", + "uid": "baa5942e-e5dd-11e5-8482-ac72891c3257" + }, + "ocean.uo.tavg-ol-hxy-sea.mon.30S-90S": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "sea_water_x_velocity", + "units": "m s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Sea Water X Velocity", + "comment": "Prognostic x-ward velocity component resolved by the model.", + "dimensions": "longitude latitude olevel time", + "out_name": "uo", + "type": "real", + "positive": "", + "spatial_shape": "XY-O", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "uo", + "variableRootDD": "uo", + "branding_label": "tavg-ol-hxy-sea", + "branded_variable_name": "uo_tavg-ol-hxy-sea", + "region": "30S-90S", + "cmip6_compound_name": "Omon.uoSouth30", + "cmip7_compound_name": "ocean.uo.tavg-ol-hxy-sea.mon.30S-90S", + "uid": "80ac31e9-a698-11ef-914a-613c0433d878" + }, + "ocean.uo.tavg-ol-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "sea_water_x_velocity", + "units": "m s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Sea Water X Velocity", + "comment": "Prognostic x-ward velocity component resolved by the model.", + "dimensions": "longitude latitude olevel time", + "out_name": "uo", + "type": "real", + "positive": "", + "spatial_shape": "XY-O", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "uo", + "variableRootDD": "uo", + "branding_label": "tavg-ol-hxy-sea", + "branded_variable_name": "uo_tavg-ol-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.uo", + "cmip7_compound_name": "ocean.uo.tavg-ol-hxy-sea.mon.GLB", + "uid": "baa586e6-e5dd-11e5-8482-ac72891c3257" + }, + "ocean.uos.tavg-u-hxy-sea.day.GLB": { + "frequency": "day", + "modeling_realm": "ocean", + "standard_name": "surface_sea_water_x_velocity", + "units": "m s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Daily Surface Sea Water X Velocity", + "comment": "Daily surface prognostic x-ward velocity component resolved by the model.", + "dimensions": "longitude latitude time", + "out_name": "uos", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Oday", + "physical_parameter_name": "uos", + "variableRootDD": "uos", + "branding_label": "tavg-u-hxy-sea", + "branded_variable_name": "uos_tavg-u-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Oday.uos", + "cmip7_compound_name": "ocean.uos.tavg-u-hxy-sea.day.GLB", + "uid": "83bbfc6f-7f07-11ef-9308-b1dd71e64bec" + }, + "ocean.vmo.tavg-ol-hxy-sea.mon.30S-90S": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "ocean_mass_y_transport", + "units": "kg s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Ocean Mass Y Transport", + "comment": "Y-ward mass transport from residual mean (resolved plus parameterized) advective transport.", + "dimensions": "longitude latitude olevel time", + "out_name": "vmo", + "type": "real", + "positive": "", + "spatial_shape": "XY-O", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "vmo", + "variableRootDD": "vmo", + "branding_label": "tavg-ol-hxy-sea", + "branded_variable_name": "vmo_tavg-ol-hxy-sea", + "region": "30S-90S", + "cmip6_compound_name": "Omon.vmoSouth30", + "cmip7_compound_name": "ocean.vmo.tavg-ol-hxy-sea.mon.30S-90S", + "uid": "80ac31ec-a698-11ef-914a-613c0433d878" + }, + "ocean.vmo.tavg-ol-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "ocean_mass_y_transport", + "units": "kg s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Ocean Mass Y Transport", + "comment": "Y-ward mass transport from residual mean (resolved plus parameterized) advective transport.", + "dimensions": "longitude latitude olevel time", + "out_name": "vmo", + "type": "real", + "positive": "", + "spatial_shape": "XY-O", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "vmo", + "variableRootDD": "vmo", + "branding_label": "tavg-ol-hxy-sea", + "branded_variable_name": "vmo_tavg-ol-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.vmo", + "cmip7_compound_name": "ocean.vmo.tavg-ol-hxy-sea.mon.GLB", + "uid": "baa598c0-e5dd-11e5-8482-ac72891c3257" + }, + "ocean.vo.tavg-ol-hxy-sea.mon.30S-90S": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "sea_water_y_velocity", + "units": "m s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Sea Water Y Velocity", + "comment": "Prognostic y-ward velocity component resolved by the model.", + "dimensions": "longitude latitude olevel time", + "out_name": "vo", + "type": "real", + "positive": "", + "spatial_shape": "XY-O", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "vo", + "variableRootDD": "vo", + "branding_label": "tavg-ol-hxy-sea", + "branded_variable_name": "vo_tavg-ol-hxy-sea", + "region": "30S-90S", + "cmip6_compound_name": "Omon.voSouth30", + "cmip7_compound_name": "ocean.vo.tavg-ol-hxy-sea.mon.30S-90S", + "uid": "80ac31ed-a698-11ef-914a-613c0433d878" + }, + "ocean.vo.tavg-ol-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "sea_water_y_velocity", + "units": "m s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Sea Water Y Velocity", + "comment": "Prognostic y-ward velocity component resolved by the model.", + "dimensions": "longitude latitude olevel time", + "out_name": "vo", + "type": "real", + "positive": "", + "spatial_shape": "XY-O", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "vo", + "variableRootDD": "vo", + "branding_label": "tavg-ol-hxy-sea", + "branded_variable_name": "vo_tavg-ol-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.vo", + "cmip7_compound_name": "ocean.vo.tavg-ol-hxy-sea.mon.GLB", + "uid": "baa58b1e-e5dd-11e5-8482-ac72891c3257" + }, + "ocean.volcello.tavg-ol-hxy-sea.dec.GLB": { + "frequency": "dec", + "modeling_realm": "ocean", + "standard_name": "ocean_volume", + "units": "m3", + "cell_methods": "area: sum where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Ocean Grid-Cell Volume", + "comment": "For oceans with more than 1 mesh (e.g. staggered grids), report areas that apply to surface vertical fluxes of energy. If this field is time-dependent then save it instead as one of your Omon and Odec fields", + "dimensions": "longitude latitude olevel time", + "out_name": "volcello", + "type": "real", + "positive": "", + "spatial_shape": "XY-O", + "temporal_shape": "time-intv", + "cmip6_table": "Odec", + "physical_parameter_name": "volcello", + "variableRootDD": "volcello", + "branding_label": "tavg-ol-hxy-sea", + "branded_variable_name": "volcello_tavg-ol-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Odec.volcello", + "cmip7_compound_name": "ocean.volcello.tavg-ol-hxy-sea.dec.GLB", + "uid": "0d321850-1027-11e8-9d87-1c4d70487308" + }, + "ocean.volcello.tavg-ol-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "ocean_volume", + "units": "m3", + "cell_methods": "area: sum where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Ocean Grid-Cell Volume", + "comment": "For oceans with more than 1 mesh (e.g. staggered grids), report areas that apply to surface vertical fluxes of energy. If this field is time-dependent then save it instead as one of your Omon and Odec fields", + "dimensions": "longitude latitude olevel time", + "out_name": "volcello", + "type": "real", + "positive": "", + "spatial_shape": "XY-O", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "volcello", + "variableRootDD": "volcello", + "branding_label": "tavg-ol-hxy-sea", + "branded_variable_name": "volcello_tavg-ol-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.volcello", + "cmip7_compound_name": "ocean.volcello.tavg-ol-hxy-sea.mon.GLB", + "uid": "e0739eaa-e1ab-11e7-9db4-1c4d70487308" + }, + "ocean.volcello.tavg-ol-hxy-sea.yr.GLB": { + "frequency": "yr", + "modeling_realm": "ocean", + "standard_name": "ocean_volume", + "units": "m3", + "cell_methods": "area: sum where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Ocean Grid-Cell Volume", + "comment": "For oceans with more than 1 mesh (e.g. staggered grids), report areas that apply to surface vertical fluxes of energy. If this field is time-dependent then save it instead as one of your Omon and Odec fields", + "dimensions": "longitude latitude olevel time", + "out_name": "volcello", + "type": "real", + "positive": "", + "spatial_shape": "XY-O", + "temporal_shape": "time-intv", + "cmip6_table": "Oyr", + "physical_parameter_name": "volcello", + "variableRootDD": "volcello", + "branding_label": "tavg-ol-hxy-sea", + "branded_variable_name": "volcello_tavg-ol-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Oyr.volcello", + "cmip7_compound_name": "ocean.volcello.tavg-ol-hxy-sea.yr.GLB", + "uid": "ebf66136-e1ab-11e7-9db4-1c4d70487308" + }, + "ocean.volcello.ti-ol-hxy-sea.fx.GLB": { + "frequency": "fx", + "modeling_realm": "ocean", + "standard_name": "ocean_volume", + "units": "m3", + "cell_methods": "area: sum where sea", + "cell_measures": "area: areacello", + "long_name": "Ocean Grid-Cell Volume", + "comment": "For oceans with more than 1 mesh (e.g. staggered grids), report areas that apply to surface vertical fluxes of energy. If this field is time-dependent then save it instead as one of your Omon and Odec fields", + "dimensions": "longitude latitude olevel", + "out_name": "volcello", + "type": "real", + "positive": "", + "spatial_shape": "XY-O", + "temporal_shape": "None", + "cmip6_table": "Ofx", + "physical_parameter_name": "volcello", + "variableRootDD": "volcello", + "branding_label": "ti-ol-hxy-sea", + "branded_variable_name": "volcello_ti-ol-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Ofx.volcello", + "cmip7_compound_name": "ocean.volcello.ti-ol-hxy-sea.fx.GLB", + "uid": "babcc39c-e5dd-11e5-8482-ac72891c3257" + }, + "ocean.volo.tavg-u-hm-sea.dec.GLB": { + "frequency": "dec", + "modeling_realm": "ocean", + "standard_name": "sea_water_volume", + "units": "m3", + "cell_methods": "depth: area: sum where sea time: mean", + "cell_measures": "", + "long_name": "Sea Water Volume", + "comment": "Total volume of liquid sea water.", + "dimensions": "time", + "out_name": "volo", + "type": "real", + "positive": "", + "spatial_shape": "na-na", + "temporal_shape": "time-intv", + "cmip6_table": "Odec", + "physical_parameter_name": "volo", + "variableRootDD": "volo", + "branding_label": "tavg-u-hm-sea", + "branded_variable_name": "volo_tavg-u-hm-sea", + "region": "GLB", + "cmip6_compound_name": "Odec.volo", + "cmip7_compound_name": "ocean.volo.tavg-u-hm-sea.dec.GLB", + "uid": "47950696-bb0b-11e6-8316-5980f7b176d1" + }, + "ocean.volo.tavg-u-hm-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "sea_water_volume", + "units": "m3", + "cell_methods": "depth: area: sum where sea time: mean", + "cell_measures": "", + "long_name": "Sea Water Volume", + "comment": "Total volume of liquid sea water.", + "dimensions": "time", + "out_name": "volo", + "type": "real", + "positive": "", + "spatial_shape": "na-na", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "volo", + "variableRootDD": "volo", + "branding_label": "tavg-u-hm-sea", + "branded_variable_name": "volo_tavg-u-hm-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.volo", + "cmip7_compound_name": "ocean.volo.tavg-u-hm-sea.mon.GLB", + "uid": "baa503ce-e5dd-11e5-8482-ac72891c3257" + }, + "ocean.vos.tavg-u-hxy-sea.day.GLB": { + "frequency": "day", + "modeling_realm": "ocean", + "standard_name": "surface_sea_water_y_velocity", + "units": "m s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Daily Surface Sea Water Y Velocity", + "comment": "Daily surface prognostic y-ward velocity component resolved by the model.", + "dimensions": "longitude latitude time", + "out_name": "vos", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Oday", + "physical_parameter_name": "vos", + "variableRootDD": "vos", + "branding_label": "tavg-u-hxy-sea", + "branded_variable_name": "vos_tavg-u-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Oday.vos", + "cmip7_compound_name": "ocean.vos.tavg-u-hxy-sea.day.GLB", + "uid": "83bbfc6e-7f07-11ef-9308-b1dd71e64bec" + }, + "ocean.vsf.tavg-u-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "virtual_salt_flux_into_sea_water", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Virtual Salt Flux into Sea Water", + "comment": "It is set to zero in models which receive a real water flux.", + "dimensions": "longitude latitude time", + "out_name": "vsf", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "vsf", + "variableRootDD": "vsf", + "branding_label": "tavg-u-hxy-sea", + "branded_variable_name": "vsf_tavg-u-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.vsf", + "cmip7_compound_name": "ocean.vsf.tavg-u-hxy-sea.mon.GLB", + "uid": "baa65a76-e5dd-11e5-8482-ac72891c3257" + }, + "ocean.vsfcorr.tavg-u-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "virtual_salt_flux_correction", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Virtual Salt Flux Correction", + "comment": "It is set to zero in models which receive a real water flux.", + "dimensions": "longitude latitude time", + "out_name": "vsfcorr", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "vsfcorr", + "variableRootDD": "vsfcorr", + "branding_label": "tavg-u-hxy-sea", + "branded_variable_name": "vsfcorr_tavg-u-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.vsfcorr", + "cmip7_compound_name": "ocean.vsfcorr.tavg-u-hxy-sea.mon.GLB", + "uid": "baa65eae-e5dd-11e5-8482-ac72891c3257" + }, + "ocean.vsfevap.tavg-u-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "virtual_salt_flux_into_sea_water_due_to_evaporation", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Virtual Salt Flux into Sea Water Due to Evaporation", + "comment": "zero for models using real water fluxes.", + "dimensions": "longitude latitude time", + "out_name": "vsfevap", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "vsfevap", + "variableRootDD": "vsfevap", + "branding_label": "tavg-u-hxy-sea", + "branded_variable_name": "vsfevap_tavg-u-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.vsfevap", + "cmip7_compound_name": "ocean.vsfevap.tavg-u-hxy-sea.mon.GLB", + "uid": "baa64df6-e5dd-11e5-8482-ac72891c3257" + }, + "ocean.vsfpr.tavg-u-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "virtual_salt_flux_into_sea_water_due_to_rainfall", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Virtual Salt Flux into Sea Water Due to Rainfall", + "comment": "zero for models using real water fluxes.", + "dimensions": "longitude latitude time", + "out_name": "vsfpr", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "vsfpr", + "variableRootDD": "vsfpr", + "branding_label": "tavg-u-hxy-sea", + "branded_variable_name": "vsfpr_tavg-u-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.vsfpr", + "cmip7_compound_name": "ocean.vsfpr.tavg-u-hxy-sea.mon.GLB", + "uid": "baa649d2-e5dd-11e5-8482-ac72891c3257" + }, + "ocean.vsfriver.tavg-u-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "virtual_salt_flux_into_sea_water_from_rivers", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Virtual Salt Flux into Sea Water from Rivers", + "comment": "zero for models using real water fluxes.", + "dimensions": "longitude latitude time", + "out_name": "vsfriver", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "vsfriver", + "variableRootDD": "vsfriver", + "branding_label": "tavg-u-hxy-sea", + "branded_variable_name": "vsfriver_tavg-u-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.vsfriver", + "cmip7_compound_name": "ocean.vsfriver.tavg-u-hxy-sea.mon.GLB", + "uid": "baa65224-e5dd-11e5-8482-ac72891c3257" + }, + "ocean.vsfsit.tavg-u-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "virtual_salt_flux_into_sea_water_due_to_sea_ice_thermodynamics", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Virtual Salt Flux into Sea Water Due to Sea Ice Thermodynamics", + "comment": "This variable measures the virtual salt flux into sea water due to the melting of sea ice. It is set to zero in models which receive a real water flux.", + "dimensions": "longitude latitude time", + "out_name": "vsfsit", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "vsfsit", + "variableRootDD": "vsfsit", + "branding_label": "tavg-u-hxy-sea", + "branded_variable_name": "vsfsit_tavg-u-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.vsfsit", + "cmip7_compound_name": "ocean.vsfsit.tavg-u-hxy-sea.mon.GLB", + "uid": "baa65648-e5dd-11e5-8482-ac72891c3257" + }, + "ocean.wdir.tavg-u-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "sea_surface_wave_from_direction", + "units": "degree", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Total Wave Direction", + "comment": "Mean direction of wave propagation (direction from which the wave is coming) derived from the total wave energy spectrum, incorporating both wind-sea and swell waves.\u00a0This variable is usually expressed in degrees relative to true north.", + "dimensions": "longitude latitude time", + "out_name": "wdir", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "wdir", + "variableRootDD": "wdir", + "branding_label": "tavg-u-hxy-sea", + "branded_variable_name": "wdir_tavg-u-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.wdir", + "cmip7_compound_name": "ocean.wdir.tavg-u-hxy-sea.mon.GLB", + "uid": "80ab741a-a698-11ef-914a-613c0433d878" + }, + "ocean.wdir.tpt-u-hxy-sea.3hr.GLB": { + "frequency": "3hr", + "modeling_realm": "ocean", + "standard_name": "sea_surface_wave_from_direction", + "units": "degree", + "cell_methods": "area: mean where sea time: point", + "cell_measures": "area: areacello", + "long_name": "Total Wave Direction", + "comment": "Mean direction of wave propagation (direction from which the wave is coming) derived from the total wave energy spectrum, incorporating both wind-sea and swell waves.\u00a0This variable is usually expressed in degrees relative to true north.", + "dimensions": "longitude latitude time1", + "out_name": "wdir", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-point", + "cmip6_table": "3hrPt", + "physical_parameter_name": "wdir", + "variableRootDD": "wdir", + "branding_label": "tpt-u-hxy-sea", + "branded_variable_name": "wdir_tpt-u-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "3hrPt.wdir", + "cmip7_compound_name": "ocean.wdir.tpt-u-hxy-sea.3hr.GLB", + "uid": "80ab744c-a698-11ef-914a-613c0433d878" + }, + "ocean.wdirswell.tavg-u-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "sea_surface_swell_wave_from_direction", + "units": "degree", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Swell Wave Direction", + "comment": "Mean direction of wave propagation (direction from which the wave is coming) derived from the swell component of the wave energy spectrum (i.e., waves that have propagated away from their generation area). This variable is usually expressed in degrees relative to true north.", + "dimensions": "longitude latitude time", + "out_name": "wdirswell", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "wdirswell", + "variableRootDD": "wdirswell", + "branding_label": "tavg-u-hxy-sea", + "branded_variable_name": "wdirswell_tavg-u-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.wdirswell", + "cmip7_compound_name": "ocean.wdirswell.tavg-u-hxy-sea.mon.GLB", + "uid": "80ab741f-a698-11ef-914a-613c0433d878" + }, + "ocean.wdirswell.tpt-u-hxy-sea.3hr.GLB": { + "frequency": "3hr", + "modeling_realm": "ocean", + "standard_name": "sea_surface_swell_wave_from_direction", + "units": "degree", + "cell_methods": "area: mean where sea time: point", + "cell_measures": "area: areacello", + "long_name": "Swell Wave Direction", + "comment": "Mean direction of wave propagation (direction from which the wave is coming) derived from the swell component of the wave energy spectrum (i.e., waves that have propagated away from their generation area). This variable is usually expressed in degrees relative to true north.", + "dimensions": "longitude latitude time1", + "out_name": "wdirswell", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-point", + "cmip6_table": "3hrPt", + "physical_parameter_name": "wdirswell", + "variableRootDD": "wdirswell", + "branding_label": "tpt-u-hxy-sea", + "branded_variable_name": "wdirswell_tpt-u-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "3hrPt.wdirswell", + "cmip7_compound_name": "ocean.wdirswell.tpt-u-hxy-sea.3hr.GLB", + "uid": "80ab742c-a698-11ef-914a-613c0433d878" + }, + "ocean.wdirwindsea.tavg-u-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "sea_surface_wind_wave_from_direction", + "units": "degree", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Sea Wave Direction", + "comment": "Mean direction of wave propagation (direction from which the wave is coming) derived from the wind-sea component of the wave energy spectrum (i.e., local wind waves). This variable is usually expressed in degrees relative to true north.", + "dimensions": "longitude latitude time", + "out_name": "wdirwindsea", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "wdirwindsea", + "variableRootDD": "wdirwindsea", + "branding_label": "tavg-u-hxy-sea", + "branded_variable_name": "wdirwindsea_tavg-u-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.wdirwindsea", + "cmip7_compound_name": "ocean.wdirwindsea.tavg-u-hxy-sea.mon.GLB", + "uid": "80ab7420-a698-11ef-914a-613c0433d878" + }, + "ocean.wdirwindsea.tpt-u-hxy-sea.3hr.GLB": { + "frequency": "3hr", + "modeling_realm": "ocean", + "standard_name": "sea_surface_wind_wave_from_direction", + "units": "degree", + "cell_methods": "area: mean where sea time: point", + "cell_measures": "area: areacello", + "long_name": "Sea Wave Direction", + "comment": "Mean direction of wave propagation (direction from which the wave is coming) derived from the wind-sea component of the wave energy spectrum (i.e., local wind waves). This variable is usually expressed in degrees relative to true north.", + "dimensions": "longitude latitude time1", + "out_name": "wdirwindsea", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-point", + "cmip6_table": "3hrPt", + "physical_parameter_name": "wdirwindsea", + "variableRootDD": "wdirwindsea", + "branding_label": "tpt-u-hxy-sea", + "branded_variable_name": "wdirwindsea_tpt-u-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "3hrPt.wdirwindsea", + "cmip7_compound_name": "ocean.wdirwindsea.tpt-u-hxy-sea.3hr.GLB", + "uid": "80ab742b-a698-11ef-914a-613c0433d878" + }, + "ocean.wfcorr.tavg-u-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "water_flux_correction", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Water Flux Correction", + "comment": "Computed as the water flux into the ocean due to flux correction divided by the area of the ocean portion of the grid cell.", + "dimensions": "longitude latitude time", + "out_name": "wfcorr", + "type": "real", + "positive": "down", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "wfcorr", + "variableRootDD": "wfcorr", + "branding_label": "tavg-u-hxy-sea", + "branded_variable_name": "wfcorr_tavg-u-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.wfcorr", + "cmip7_compound_name": "ocean.wfcorr.tavg-u-hxy-sea.mon.GLB", + "uid": "baa63dd4-e5dd-11e5-8482-ac72891c3257" + }, + "ocean.wfo.tavg-u-hxy-sea.3hr.GLB": { + "frequency": "3hr", + "modeling_realm": "ocean", + "standard_name": "water_flux_into_sea_water", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Water Flux into Sea Water", + "comment": "Computed as the water flux into the ocean divided by the area of the ocean portion of the grid cell. This is the sum \\*wfonocorr\\* and \\*wfcorr\\*.", + "dimensions": "longitude latitude time", + "out_name": "wfo", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "3hr", + "physical_parameter_name": "wfo", + "variableRootDD": "wfo", + "branding_label": "tavg-u-hxy-sea", + "branded_variable_name": "wfo_tavg-u-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "3hr.wfo", + "cmip7_compound_name": "ocean.wfo.tavg-u-hxy-sea.3hr.GLB", + "uid": "83bbfc5d-7f07-11ef-9308-b1dd71e64bec" + }, + "ocean.wfo.tavg-u-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "water_flux_into_sea_water", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Water Flux into Sea Water", + "comment": "Computed as the water flux into the ocean divided by the area of the ocean portion of the grid cell. This is the sum \\*wfonocorr\\* and \\*wfcorr\\*.", + "dimensions": "longitude latitude time", + "out_name": "wfo", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "wfo", + "variableRootDD": "wfo", + "branding_label": "tavg-u-hxy-sea", + "branded_variable_name": "wfo_tavg-u-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.wfo", + "cmip7_compound_name": "ocean.wfo.tavg-u-hxy-sea.mon.GLB", + "uid": "baa63578-e5dd-11e5-8482-ac72891c3257" + }, + "ocean.wmo.tavg-ol-hxy-sea.mon.30S-90S": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "upward_ocean_mass_transport", + "units": "kg s-1", + "cell_methods": "area: sum where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Upward Ocean Mass Transport", + "comment": "Upward mass transport from residual mean (resolved plus parameterized) advective transport.", + "dimensions": "longitude latitude olevel time", + "out_name": "wmo", + "type": "real", + "positive": "", + "spatial_shape": "XY-O", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "wmo", + "variableRootDD": "wmo", + "branding_label": "tavg-ol-hxy-sea", + "branded_variable_name": "wmo_tavg-ol-hxy-sea", + "region": "30S-90S", + "cmip6_compound_name": "Omon.wmoSouth30", + "cmip7_compound_name": "ocean.wmo.tavg-ol-hxy-sea.mon.30S-90S", + "uid": "80ac31ef-a698-11ef-914a-613c0433d878" + }, + "ocean.wmo.tavg-ol-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "upward_ocean_mass_transport", + "units": "kg s-1", + "cell_methods": "area: sum where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Upward Ocean Mass Transport", + "comment": "Upward mass transport from residual mean (resolved plus parameterized) advective transport.", + "dimensions": "longitude latitude olevel time", + "out_name": "wmo", + "type": "real", + "positive": "", + "spatial_shape": "XY-O", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "wmo", + "variableRootDD": "wmo", + "branding_label": "tavg-ol-hxy-sea", + "branded_variable_name": "wmo_tavg-ol-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.wmo", + "cmip7_compound_name": "ocean.wmo.tavg-ol-hxy-sea.mon.GLB", + "uid": "baa58f74-e5dd-11e5-8482-ac72891c3257" + }, + "ocean.wo.tavg-ol-hxy-sea.day.GLB": { + "frequency": "day", + "modeling_realm": "ocean", + "standard_name": "upward_sea_water_velocity", + "units": "m s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Sea Water Vertical Velocity", + "comment": "Prognostic z-ward velocity component resolved by the model.", + "dimensions": "longitude latitude olevel time", + "out_name": "wo", + "type": "real", + "positive": "", + "spatial_shape": "XY-O", + "temporal_shape": "time-intv", + "cmip6_table": "Oday", + "physical_parameter_name": "wo", + "variableRootDD": "wo", + "branding_label": "tavg-ol-hxy-sea", + "branded_variable_name": "wo_tavg-ol-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Oday.wo", + "cmip7_compound_name": "ocean.wo.tavg-ol-hxy-sea.day.GLB", + "uid": "527f5cc9-8c97-11ef-944e-41a8eb05f654" + }, + "ocean.wo.tavg-ol-hxy-sea.mon.30S-90S": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "upward_sea_water_velocity", + "units": "m s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Sea Water Vertical Velocity", + "comment": "Prognostic z-ward velocity component resolved by the model.", + "dimensions": "longitude latitude olevel time", + "out_name": "wo", + "type": "real", + "positive": "", + "spatial_shape": "XY-O", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "wo", + "variableRootDD": "wo", + "branding_label": "tavg-ol-hxy-sea", + "branded_variable_name": "wo_tavg-ol-hxy-sea", + "region": "30S-90S", + "cmip6_compound_name": "Omon.woSouth30", + "cmip7_compound_name": "ocean.wo.tavg-ol-hxy-sea.mon.30S-90S", + "uid": "80ac31f0-a698-11ef-914a-613c0433d878" + }, + "ocean.wo.tavg-ol-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "upward_sea_water_velocity", + "units": "m s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Sea Water Vertical Velocity", + "comment": "Prognostic z-ward velocity component resolved by the model.", + "dimensions": "longitude latitude olevel time", + "out_name": "wo", + "type": "real", + "positive": "", + "spatial_shape": "XY-O", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "wo", + "variableRootDD": "wo", + "branding_label": "tavg-ol-hxy-sea", + "branded_variable_name": "wo_tavg-ol-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.wo", + "cmip7_compound_name": "ocean.wo.tavg-ol-hxy-sea.mon.GLB", + "uid": "1aab80fc-b006-11e6-9289-ac72891c3257" + }, + "ocean.wpdir.tavg-u-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "sea_surface_wave_from_direction_at_variance_spectral_density_maximum", + "units": "degree", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Total Peak Wave Direction", + "comment": "Direction of wave propagation (direction from which the wave is coming)\u00a0derived from the total wave energy spectrum, incorporating both wind-sea and swell waves, by identifying the direction associated with the peak (maximum) energy density. This variable is usually expressed in degrees relative to true north.", + "dimensions": "longitude latitude time", + "out_name": "wpdir", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "wpdir", + "variableRootDD": "wpdir", + "branding_label": "tavg-u-hxy-sea", + "branded_variable_name": "wpdir_tavg-u-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.wpdir", + "cmip7_compound_name": "ocean.wpdir.tavg-u-hxy-sea.mon.GLB", + "uid": "80ab743e-a698-11ef-914a-613c0433d878" + }, + "ocean.wpdir.tpt-u-hxy-sea.3hr.GLB": { + "frequency": "3hr", + "modeling_realm": "ocean", + "standard_name": "sea_surface_wave_from_direction_at_variance_spectral_density_maximum", + "units": "degree", + "cell_methods": "area: mean where sea time: point", + "cell_measures": "area: areacello", + "long_name": "Total Peak Wave Direction", + "comment": "Direction of wave propagation (direction from which the wave is coming)\u00a0derived from the total wave energy spectrum, incorporating both wind-sea and swell waves, by identifying the direction associated with the peak (maximum) energy density. This variable is usually expressed in degrees relative to true north.", + "dimensions": "longitude latitude time1", + "out_name": "wpdir", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-point", + "cmip6_table": "3hrPt", + "physical_parameter_name": "wpdir", + "variableRootDD": "wpdir", + "branding_label": "tpt-u-hxy-sea", + "branded_variable_name": "wpdir_tpt-u-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "3hrPt.wpdir", + "cmip7_compound_name": "ocean.wpdir.tpt-u-hxy-sea.3hr.GLB", + "uid": "80ab744d-a698-11ef-914a-613c0433d878" + }, + "ocean.wpdirswell.tavg-u-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "sea_surface_swell_wave_from_direction_at_variance_spectral_density_maximum", + "units": "degree", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Swell Peak Wave Direction", + "comment": "Direction of wave propagation (direction from which the wave is coming) derived from the swell component of the wave energy spectrum (i.e., waves that have propagated away from their generation area), by identifying the direction associated with the peak (maximum) energy density. This variable is typically expressed in degrees relative to true north.", + "dimensions": "longitude latitude time", + "out_name": "wpdirswell", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "wpdirswell", + "variableRootDD": "wpdirswell", + "branding_label": "tavg-u-hxy-sea", + "branded_variable_name": "wpdirswell_tavg-u-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.wpdirswell", + "cmip7_compound_name": "ocean.wpdirswell.tavg-u-hxy-sea.mon.GLB", + "uid": "80ab7443-a698-11ef-914a-613c0433d878" + }, + "ocean.wpdirswell.tpt-u-hxy-sea.3hr.GLB": { + "frequency": "3hr", + "modeling_realm": "ocean", + "standard_name": "sea_surface_swell_wave_from_direction_at_variance_spectral_density_maximum", + "units": "degree", + "cell_methods": "area: mean where sea time: point", + "cell_measures": "area: areacello", + "long_name": "Swell Peak Wave Direction", + "comment": "Direction of wave propagation (direction from which the wave is coming) derived from the swell component of the wave energy spectrum (i.e., waves that have propagated away from their generation area), by identifying the direction associated with the peak (maximum) energy density. This variable is typically expressed in degrees relative to true north.", + "dimensions": "longitude latitude time1", + "out_name": "wpdirswell", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-point", + "cmip6_table": "3hrPt", + "physical_parameter_name": "wpdirswell", + "variableRootDD": "wpdirswell", + "branding_label": "tpt-u-hxy-sea", + "branded_variable_name": "wpdirswell_tpt-u-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "3hrPt.wpdirswell", + "cmip7_compound_name": "ocean.wpdirswell.tpt-u-hxy-sea.3hr.GLB", + "uid": "80ab7444-a698-11ef-914a-613c0433d878" + }, + "ocean.wpdirwindsea.tavg-u-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "sea_surface_wind_wave_from_direction_at_variance_spectral_density_maximum", + "units": "degree", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Wind Sea Peak Wave Direction", + "comment": "Direction of wave propagation (direction from which the wave is coming) derived from the wind-sea component of the wave energy spectrum (i.e., local wind waves), by identifying the direction associated with the peak (maximum) energy density. This variable is typically expressed in degrees relative to true north.", + "dimensions": "longitude latitude time", + "out_name": "wpdirwindsea", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "wpdirwindsea", + "variableRootDD": "wpdirwindsea", + "branding_label": "tavg-u-hxy-sea", + "branded_variable_name": "wpdirwindsea_tavg-u-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.wpdirwindsea", + "cmip7_compound_name": "ocean.wpdirwindsea.tavg-u-hxy-sea.mon.GLB", + "uid": "80ab7441-a698-11ef-914a-613c0433d878" + }, + "ocean.wpdirwindsea.tpt-u-hxy-sea.3hr.GLB": { + "frequency": "3hr", + "modeling_realm": "ocean", + "standard_name": "sea_surface_wind_wave_from_direction_at_variance_spectral_density_maximum", + "units": "degree", + "cell_methods": "area: mean where sea time: point", + "cell_measures": "area: areacello", + "long_name": "Wind Sea Peak Wave Direction", + "comment": "Direction of wave propagation (direction from which the wave is coming) derived from the wind-sea component of the wave energy spectrum (i.e., local wind waves), by identifying the direction associated with the peak (maximum) energy density. This variable is typically expressed in degrees relative to true north.", + "dimensions": "longitude latitude time1", + "out_name": "wpdirwindsea", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-point", + "cmip6_table": "3hrPt", + "physical_parameter_name": "wpdirwindsea", + "variableRootDD": "wpdirwindsea", + "branding_label": "tpt-u-hxy-sea", + "branded_variable_name": "wpdirwindsea_tpt-u-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "3hrPt.wpdirwindsea", + "cmip7_compound_name": "ocean.wpdirwindsea.tpt-u-hxy-sea.3hr.GLB", + "uid": "80ab7442-a698-11ef-914a-613c0433d878" + }, + "ocean.wpp.tavg-u-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "sea_surface_wave_period_at_variance_spectral_density_maximum", + "units": "s", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Total Wave Peak Period", + "comment": "Wave period associated with the most energetic waves in total wave spectrum, incorporating both wind-sea and swell waves.\u00a0In spectral wind wave models,\u00a0this represents the spectral peak\u00a0across the entire two-dimensional wave spectrum, incorporating both wind-sea and swell waves.", + "dimensions": "longitude latitude time", + "out_name": "wpp", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "wpp", + "variableRootDD": "wpp", + "branding_label": "tavg-u-hxy-sea", + "branded_variable_name": "wpp_tavg-u-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.wpp", + "cmip7_compound_name": "ocean.wpp.tavg-u-hxy-sea.mon.GLB", + "uid": "80ab7410-a698-11ef-914a-613c0433d878" + }, + "ocean.wpp.tpt-u-hxy-sea.3hr.GLB": { + "frequency": "3hr", + "modeling_realm": "ocean", + "standard_name": "sea_surface_wave_period_at_variance_spectral_density_maximum", + "units": "s", + "cell_methods": "area: mean where sea time: point", + "cell_measures": "area: areacello", + "long_name": "Total Wave Peak Period", + "comment": "Wave period associated with the most energetic waves in total wave spectrum, incorporating both wind-sea and swell waves.\u00a0In spectral wind wave models,\u00a0this represents the spectral peak\u00a0across the entire two-dimensional wave spectrum, incorporating both wind-sea and swell waves.", + "dimensions": "longitude latitude time1", + "out_name": "wpp", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-point", + "cmip6_table": "3hrPt", + "physical_parameter_name": "wpp", + "variableRootDD": "wpp", + "branding_label": "tpt-u-hxy-sea", + "branded_variable_name": "wpp_tpt-u-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "3hrPt.wpp", + "cmip7_compound_name": "ocean.wpp.tpt-u-hxy-sea.3hr.GLB", + "uid": "80ab744e-a698-11ef-914a-613c0433d878" + }, + "ocean.wppswell.tavg-u-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "sea_surface_swell_wave_period_at_variance_spectral_density_maximum", + "units": "s", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Swell Wave Peak Period", + "comment": "Wave period associated with the most energetic swell waves (i.e., waves that have propagated away from their generation area).\u00a0In spectral wind wave models,\u00a0this represents the spectral peak\u00a0across part of the two-dimensional wave spectrum, incorporating just swell waves.", + "dimensions": "longitude latitude time", + "out_name": "wppswell", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "wppswell", + "variableRootDD": "wppswell", + "branding_label": "tavg-u-hxy-sea", + "branded_variable_name": "wppswell_tavg-u-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.wppswell", + "cmip7_compound_name": "ocean.wppswell.tavg-u-hxy-sea.mon.GLB", + "uid": "80ab7421-a698-11ef-914a-613c0433d878" + }, + "ocean.wppswell.tpt-u-hxy-sea.3hr.GLB": { + "frequency": "3hr", + "modeling_realm": "ocean", + "standard_name": "sea_surface_swell_wave_period_at_variance_spectral_density_maximum", + "units": "s", + "cell_methods": "area: mean where sea time: point", + "cell_measures": "area: areacello", + "long_name": "Swell Wave Peak Period", + "comment": "Wave period associated with the most energetic swell waves (i.e., waves that have propagated away from their generation area).\u00a0In spectral wind wave models,\u00a0this represents the spectral peak\u00a0across part of the two-dimensional wave spectrum, incorporating just swell waves.", + "dimensions": "longitude latitude time1", + "out_name": "wppswell", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-point", + "cmip6_table": "3hrPt", + "physical_parameter_name": "wppswell", + "variableRootDD": "wppswell", + "branding_label": "tpt-u-hxy-sea", + "branded_variable_name": "wppswell_tpt-u-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "3hrPt.wppswell", + "cmip7_compound_name": "ocean.wppswell.tpt-u-hxy-sea.3hr.GLB", + "uid": "80ab742e-a698-11ef-914a-613c0433d878" + }, + "ocean.wppwindsea.tavg-u-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "sea_surface_wind_wave_period_at_variance_spectral_density_maximum", + "units": "s", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Wind Sea Wave Peak Period", + "comment": "Wave period associated with the most energetic wind-sea waves (i.e., local wind waves).\u00a0In spectral wind wave models,\u00a0this represents the spectral peak\u00a0across part of the two-dimensional wave spectrum, incorporating just wind-sea waves.", + "dimensions": "longitude latitude time", + "out_name": "wppwindsea", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "wppwindsea", + "variableRootDD": "wppwindsea", + "branding_label": "tavg-u-hxy-sea", + "branded_variable_name": "wppwindsea_tavg-u-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.wppwindsea", + "cmip7_compound_name": "ocean.wppwindsea.tavg-u-hxy-sea.mon.GLB", + "uid": "80ab7422-a698-11ef-914a-613c0433d878" + }, + "ocean.wppwindsea.tpt-u-hxy-sea.3hr.GLB": { + "frequency": "3hr", + "modeling_realm": "ocean", + "standard_name": "sea_surface_wind_wave_period_at_variance_spectral_density_maximum", + "units": "s", + "cell_methods": "area: mean where sea time: point", + "cell_measures": "area: areacello", + "long_name": "Wind Sea Wave Peak Period", + "comment": "Wave period associated with the most energetic wind-sea waves (i.e., local wind waves).\u00a0In spectral wind wave models,\u00a0this represents the spectral peak\u00a0across part of the two-dimensional wave spectrum, incorporating just wind-sea waves.", + "dimensions": "longitude latitude time1", + "out_name": "wppwindsea", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-point", + "cmip6_table": "3hrPt", + "physical_parameter_name": "wppwindsea", + "variableRootDD": "wppwindsea", + "branding_label": "tpt-u-hxy-sea", + "branded_variable_name": "wppwindsea_tpt-u-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "3hrPt.wppwindsea", + "cmip7_compound_name": "ocean.wppwindsea.tpt-u-hxy-sea.3hr.GLB", + "uid": "80ab742d-a698-11ef-914a-613c0433d878" + }, + "ocean.zfullo.tavg-ol-hxy-sea.yr.GLB": { + "frequency": "yr", + "modeling_realm": "ocean", + "standard_name": "depth_below_geoid", + "units": "m", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Depth Below Geoid of Ocean Layer", + "comment": "Depth below geoid", + "dimensions": "longitude latitude olevel time", + "out_name": "zfullo", + "type": "real", + "positive": "", + "spatial_shape": "XY-O", + "temporal_shape": "time-intv", + "cmip6_table": "Eyr", + "physical_parameter_name": "zfullo", + "variableRootDD": "zfullo", + "branding_label": "tavg-ol-hxy-sea", + "branded_variable_name": "zfullo_tavg-ol-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Eyr.zfullo", + "cmip7_compound_name": "ocean.zfullo.tavg-ol-hxy-sea.yr.GLB", + "uid": "90e8026c-267c-11e7-8933-ac72891c3257" + }, + "ocean.zos.tavg-u-hxy-sea.day.GLB": { + "frequency": "day", + "modeling_realm": "ocean", + "standard_name": "sea_surface_height_above_geoid", + "units": "m", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Sea Surface Height above Geoid", + "comment": "This is the dynamic sea level, so should have zero global area mean. zos is the effective sea level as if sea ice (and snow) at a grid cell were converted to liquid seawater (Campin et al., 2008). For OMIP, do _not _record inverse barometer responses from sea-ice (and snow) loading in zos. See (Griffies et al, 2016, https://doi.org/10.5194/gmd-9-3231-2016).", + "dimensions": "longitude latitude time", + "out_name": "zos", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Oday", + "physical_parameter_name": "zos", + "variableRootDD": "zos", + "branding_label": "tavg-u-hxy-sea", + "branded_variable_name": "zos_tavg-u-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Oday.zos", + "cmip7_compound_name": "ocean.zos.tavg-u-hxy-sea.day.GLB", + "uid": "83bbfb69-7f07-11ef-9308-b1dd71e64bec" + }, + "ocean.zos.tavg-u-hxy-sea.mon.30S-90S": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "sea_surface_height_above_geoid", + "units": "m", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Sea Surface Height Above Geoid", + "comment": "This is the dynamic sea level, so should have zero global area mean. It should not include inverse barometer depressions from sea ice.", + "dimensions": "longitude latitude time", + "out_name": "zos", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "zos", + "variableRootDD": "zos", + "branding_label": "tavg-u-hxy-sea", + "branded_variable_name": "zos_tavg-u-hxy-sea", + "region": "30S-90S", + "cmip6_compound_name": "Omon.zosSouth30", + "cmip7_compound_name": "ocean.zos.tavg-u-hxy-sea.mon.30S-90S", + "uid": "80ac31f2-a698-11ef-914a-613c0433d878" + }, + "ocean.zos.tavg-u-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "sea_surface_height_above_geoid", + "units": "m", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Sea Surface Height Above Geoid", + "comment": "This is the dynamic sea level, so should have zero global area mean. It should not include inverse barometer depressions from sea ice.", + "dimensions": "longitude latitude time", + "out_name": "zos", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "zos", + "variableRootDD": "zos", + "branding_label": "tavg-u-hxy-sea", + "branded_variable_name": "zos_tavg-u-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.zos", + "cmip7_compound_name": "ocean.zos.tavg-u-hxy-sea.mon.GLB", + "uid": "baa507f2-e5dd-11e5-8482-ac72891c3257" + }, + "ocean.zossq.tavg-u-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "square_of_sea_surface_height_above_geoid", + "units": "m2", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Square of Sea Surface Height Above Geoid", + "comment": "Surface ocean geoid defines z=0.", + "dimensions": "longitude latitude time", + "out_name": "zossq", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "zossq", + "variableRootDD": "zossq", + "branding_label": "tavg-u-hxy-sea", + "branded_variable_name": "zossq_tavg-u-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.zossq", + "cmip7_compound_name": "ocean.zossq.tavg-u-hxy-sea.mon.GLB", + "uid": "baa50c2a-e5dd-11e5-8482-ac72891c3257" + }, + "ocean.zostoga.tavg-u-hm-sea.day.GLB": { + "frequency": "day", + "modeling_realm": "ocean", + "standard_name": "global_average_thermosteric_sea_level_change", + "units": "m", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "", + "long_name": "global_average_thermosteric_sea_level_change", + "comment": "Global Average Thermosteric Sea Level Change", + "dimensions": "time", + "out_name": "zostoga", + "type": "real", + "positive": "", + "spatial_shape": "na-na", + "temporal_shape": "time-intv", + "cmip6_table": "Oday", + "physical_parameter_name": "zostoga", + "variableRootDD": "zostoga", + "branding_label": "tavg-u-hm-sea", + "branded_variable_name": "zostoga_tavg-u-hm-sea", + "region": "GLB", + "cmip6_compound_name": "Oday.zostoga", + "cmip7_compound_name": "ocean.zostoga.tavg-u-hm-sea.day.GLB", + "uid": "527f5ccc-8c97-11ef-944e-41a8eb05f654" + }, + "ocean.zostoga.tavg-u-hm-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "global_average_thermosteric_sea_level_change", + "units": "m", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "", + "long_name": "Global Average Thermosteric Sea Level Change", + "comment": "There is no CMIP6 request for zosga nor zossga.", + "dimensions": "time", + "out_name": "zostoga", + "type": "real", + "positive": "", + "spatial_shape": "na-na", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "zostoga", + "variableRootDD": "zostoga", + "branding_label": "tavg-u-hm-sea", + "branded_variable_name": "zostoga_tavg-u-hm-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.zostoga", + "cmip7_compound_name": "ocean.zostoga.tavg-u-hm-sea.mon.GLB", + "uid": "baa51058-e5dd-11e5-8482-ac72891c3257" + }, + "ocnBgchem.arag.tavg-d0m-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_aragonite_expressed_as_carbon_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Surface Aragonite Concentration", + "comment": "sum of particulate aragonite components (e.g. Phytoplankton, Detrital, etc.)", + "dimensions": "longitude latitude time depth0m", + "out_name": "aragos", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "aragos", + "variableRootDD": "arag", + "branding_label": "tavg-d0m-hxy-sea", + "branded_variable_name": "arag_tavg-d0m-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.aragos", + "cmip7_compound_name": "ocnBgchem.arag.tavg-d0m-hxy-sea.mon.GLB", + "uid": "c9181982-c5e8-11e6-84e6-5404a60d96b5" + }, + "ocnBgchem.arag.tavg-ol-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_aragonite_expressed_as_carbon_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Aragonite Concentration", + "comment": "sum of particulate aragonite components (e.g. Phytoplankton, Detrital, etc.)", + "dimensions": "longitude latitude olevel time", + "out_name": "arag", + "type": "real", + "positive": "", + "spatial_shape": "XY-O", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "arag", + "variableRootDD": "arag", + "branding_label": "tavg-ol-hxy-sea", + "branded_variable_name": "arag_tavg-ol-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.arag", + "cmip7_compound_name": "ocnBgchem.arag.tavg-ol-hxy-sea.mon.GLB", + "uid": "ba9f686a-e5dd-11e5-8482-ac72891c3257" + }, + "ocnBgchem.bacc.tavg-d0m-hxy-sea.mon.30S-90S": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_bacteria_expressed_as_carbon_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Surface Bacterial Carbon Concentration", + "comment": "sum of bacterial carbon component concentrations", + "dimensions": "longitude latitude time depth0m", + "out_name": "baccos", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "baccos", + "variableRootDD": "bacc", + "branding_label": "tavg-d0m-hxy-sea", + "branded_variable_name": "bacc_tavg-d0m-hxy-sea", + "region": "30S-90S", + "cmip6_compound_name": "Omon.baccos", + "cmip7_compound_name": "ocnBgchem.bacc.tavg-d0m-hxy-sea.mon.30S-90S", + "uid": "c917ef02-c5e8-11e6-84e6-5404a60d96b5" + }, + "ocnBgchem.calc.tavg-d0m-hxy-sea.mon.30S-90S": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_calcite_expressed_as_carbon_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Surface Calcite Concentration", + "comment": "sum of particulate calcite component concentrations (e.g. Phytoplankton, Detrital, etc.)", + "dimensions": "longitude latitude time depth0m", + "out_name": "calcos", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "calcos", + "variableRootDD": "calc", + "branding_label": "tavg-d0m-hxy-sea", + "branded_variable_name": "calc_tavg-d0m-hxy-sea", + "region": "30S-90S", + "cmip6_compound_name": "Omon.calcosSouth30", + "cmip7_compound_name": "ocnBgchem.calc.tavg-d0m-hxy-sea.mon.30S-90S", + "uid": "80ac3164-a698-11ef-914a-613c0433d878" + }, + "ocnBgchem.calc.tavg-d0m-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_calcite_expressed_as_carbon_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Surface Calcite Concentration", + "comment": "sum of particulate calcite component concentrations (e.g. Phytoplankton, Detrital, etc.)", + "dimensions": "longitude latitude time depth0m", + "out_name": "calcos", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "calcos", + "variableRootDD": "calc", + "branding_label": "tavg-d0m-hxy-sea", + "branded_variable_name": "calc_tavg-d0m-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.calcos", + "cmip7_compound_name": "ocnBgchem.calc.tavg-d0m-hxy-sea.mon.GLB", + "uid": "c9180bae-c5e8-11e6-84e6-5404a60d96b5" + }, + "ocnBgchem.calc.tavg-ol-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_calcite_expressed_as_carbon_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Calcite Concentration", + "comment": "sum of particulate calcite component concentrations (e.g. Phytoplankton, Detrital, etc.)", + "dimensions": "longitude latitude olevel time", + "out_name": "calc", + "type": "real", + "positive": "", + "spatial_shape": "XY-O", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "calc", + "variableRootDD": "calc", + "branding_label": "tavg-ol-hxy-sea", + "branded_variable_name": "calc_tavg-ol-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.calc", + "cmip7_compound_name": "ocnBgchem.calc.tavg-ol-hxy-sea.mon.GLB", + "uid": "ba9f643c-e5dd-11e5-8482-ac72891c3257" + }, + "ocnBgchem.chl.tavg-d0m-hxy-sea.day.GLB": { + "frequency": "day", + "modeling_realm": "ocnBgchem", + "standard_name": "mass_concentration_of_phytoplankton_expressed_as_chlorophyll_in_sea_water", + "units": "kg m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Surface Mass Concentration of Total Phytoplankton Expressed as Chlorophyll in Sea Water", + "comment": "sum of chlorophyll from all phytoplankton group concentrations at the sea surface. In most models this is equal to chldiat+chlmisc, that is the sum of \"Diatom Chlorophyll Mass Concentration\" plus \"Other Phytoplankton Chlorophyll Mass Concentration\"", + "dimensions": "longitude latitude time depth0m", + "out_name": "chlos", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Oday", + "physical_parameter_name": "chlos", + "variableRootDD": "chl", + "branding_label": "tavg-d0m-hxy-sea", + "branded_variable_name": "chl_tavg-d0m-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Oday.chlos", + "cmip7_compound_name": "ocnBgchem.chl.tavg-d0m-hxy-sea.day.GLB", + "uid": "baa161ba-e5dd-11e5-8482-ac72891c3257" + }, + "ocnBgchem.chl.tavg-d0m-hxy-sea.mon.30S-90S": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "mass_concentration_of_phytoplankton_expressed_as_chlorophyll_in_sea_water", + "units": "kg m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Surface Mass Concentration of Total Phytoplankton Expressed as Chlorophyll in Sea Water", + "comment": "sum of chlorophyll from all phytoplankton group concentrations. In most models this is equal to chldiat+chlmisc, that is the sum of \"Diatom Chlorophyll Mass Concentration\" plus \"Other Phytoplankton Chlorophyll Mass Concentration\"", + "dimensions": "longitude latitude time depth0m", + "out_name": "chlos", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "chlos", + "variableRootDD": "chl", + "branding_label": "tavg-d0m-hxy-sea", + "branded_variable_name": "chl_tavg-d0m-hxy-sea", + "region": "30S-90S", + "cmip6_compound_name": "Omon.chlosSouth30", + "cmip7_compound_name": "ocnBgchem.chl.tavg-d0m-hxy-sea.mon.30S-90S", + "uid": "80ac3169-a698-11ef-914a-613c0433d878" + }, + "ocnBgchem.chl.tavg-d0m-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "mass_concentration_of_phytoplankton_expressed_as_chlorophyll_in_sea_water", + "units": "kg m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Surface Mass Concentration of Total Phytoplankton Expressed as Chlorophyll in Sea Water", + "comment": "sum of chlorophyll from all phytoplankton group concentrations. In most models this is equal to chldiat+chlmisc, that is the sum of \"Diatom Chlorophyll Mass Concentration\" plus \"Other Phytoplankton Chlorophyll Mass Concentration\"", + "dimensions": "longitude latitude time depth0m", + "out_name": "chlos", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "chlos", + "variableRootDD": "chl", + "branding_label": "tavg-d0m-hxy-sea", + "branded_variable_name": "chl_tavg-d0m-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.chlos", + "cmip7_compound_name": "ocnBgchem.chl.tavg-d0m-hxy-sea.mon.GLB", + "uid": "c9195d60-c5e8-11e6-84e6-5404a60d96b5" + }, + "ocnBgchem.chl.tavg-ol-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "mass_concentration_of_phytoplankton_expressed_as_chlorophyll_in_sea_water", + "units": "kg m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Mass Concentration of Total Phytoplankton Expressed as Chlorophyll in Sea Water", + "comment": "sum of chlorophyll from all phytoplankton group concentrations. In most models this is equal to chldiat+chlmisc, that is the sum of \"Diatom Chlorophyll Mass Concentration\" plus \"Other Phytoplankton Chlorophyll Mass Concentration\"", + "dimensions": "longitude latitude olevel time", + "out_name": "chl", + "type": "real", + "positive": "", + "spatial_shape": "XY-O", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "chl", + "variableRootDD": "chl", + "branding_label": "tavg-ol-hxy-sea", + "branded_variable_name": "chl_tavg-ol-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.chl", + "cmip7_compound_name": "ocnBgchem.chl.tavg-ol-hxy-sea.mon.GLB", + "uid": "ba9fb75c-e5dd-11e5-8482-ac72891c3257" + }, + "ocnBgchem.chl.tavg-op20bar-hxy-sea.day.GLB": { + "frequency": "day", + "modeling_realm": "ocnBgchem", + "standard_name": "mass_concentration_of_phytoplankton_expressed_as_chlorophyll_in_sea_water", + "units": "kg m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Mass Concentration of Total Phytoplankton Expressed as Chlorophyll in Sea Water at 200 meters", + "comment": "Sum of chlorophyll from all phytoplankton group concentrations. In most models this is equal to chldiat+chlmisc, that is the sum of Diatom Chlorophyll Mass Concentration and Other Phytoplankton Chlorophyll Mass Concentration", + "dimensions": "longitude latitude time op20bar", + "out_name": "chl", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Oday", + "physical_parameter_name": "chl", + "variableRootDD": "chl", + "branding_label": "tavg-op20bar-hxy-sea", + "branded_variable_name": "chl_tavg-op20bar-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Oday.chl200", + "cmip7_compound_name": "ocnBgchem.chl.tavg-op20bar-hxy-sea.day.GLB", + "uid": "83bbfb94-7f07-11ef-9308-b1dd71e64bec" + }, + "ocnBgchem.chlcalc.tavg-d0m-hxy-sea.mon.30S-90S": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "mass_concentration_of_calcareous_phytoplankton_expressed_as_chlorophyll_in_sea_water", + "units": "kg m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Surface Mass Concentration of Calcareous Phytoplankton Expressed as Chlorophyll in Sea Water", + "comment": "chlorophyll concentration from the calcite-producing phytoplankton component alone", + "dimensions": "longitude latitude time depth0m", + "out_name": "chlcalcos", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "chlcalcos", + "variableRootDD": "chlcalc", + "branding_label": "tavg-d0m-hxy-sea", + "branded_variable_name": "chlcalc_tavg-d0m-hxy-sea", + "region": "30S-90S", + "cmip6_compound_name": "Omon.chlcalcos", + "cmip7_compound_name": "ocnBgchem.chlcalc.tavg-d0m-hxy-sea.mon.30S-90S", + "uid": "c919877c-c5e8-11e6-84e6-5404a60d96b5" + }, + "ocnBgchem.chlcalc.tavg-ol-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "mass_concentration_of_calcareous_phytoplankton_expressed_as_chlorophyll_in_sea_water", + "units": "kg m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Mass Concentration of Calcareous Phytoplankton Expressed as Chlorophyll in Sea Water", + "comment": "chlorophyll concentration from the calcite-producing phytoplankton component alone", + "dimensions": "longitude latitude olevel time", + "out_name": "chlcalc", + "type": "real", + "positive": "", + "spatial_shape": "XY-O", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "chlcalc", + "variableRootDD": "chlcalc", + "branding_label": "tavg-ol-hxy-sea", + "branded_variable_name": "chlcalc_tavg-ol-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.chlcalc", + "cmip7_compound_name": "ocnBgchem.chlcalc.tavg-ol-hxy-sea.mon.GLB", + "uid": "ba9fc3fa-e5dd-11e5-8482-ac72891c3257" + }, + "ocnBgchem.chldiat.tavg-d0m-hxy-sea.mon.30S-90S": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "mass_concentration_of_diatoms_expressed_as_chlorophyll_in_sea_water", + "units": "kg m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Surface Mass Concentration of Diatoms Expressed as Chlorophyll in Sea Water", + "comment": "chlorophyll from diatom phytoplankton component concentration alone", + "dimensions": "longitude latitude time depth0m", + "out_name": "chldiatos", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "chldiatos", + "variableRootDD": "chldiat", + "branding_label": "tavg-d0m-hxy-sea", + "branded_variable_name": "chldiat_tavg-d0m-hxy-sea", + "region": "30S-90S", + "cmip6_compound_name": "Omon.chldiatos", + "cmip7_compound_name": "ocnBgchem.chldiat.tavg-d0m-hxy-sea.mon.30S-90S", + "uid": "c9196b52-c5e8-11e6-84e6-5404a60d96b5" + }, + "ocnBgchem.chldiat.tavg-ol-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "mass_concentration_of_diatoms_expressed_as_chlorophyll_in_sea_water", + "units": "kg m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Mass Concentration of Diatoms Expressed as Chlorophyll in Sea Water", + "comment": "chlorophyll from diatom phytoplankton component concentration alone", + "dimensions": "longitude latitude olevel time", + "out_name": "chldiat", + "type": "real", + "positive": "", + "spatial_shape": "XY-O", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "chldiat", + "variableRootDD": "chldiat", + "branding_label": "tavg-ol-hxy-sea", + "branded_variable_name": "chldiat_tavg-ol-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.chldiat", + "cmip7_compound_name": "ocnBgchem.chldiat.tavg-ol-hxy-sea.mon.GLB", + "uid": "ba9fbb80-e5dd-11e5-8482-ac72891c3257" + }, + "ocnBgchem.chldiaz.tavg-d0m-hxy-sea.mon.30S-90S": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "mass_concentration_of_diazotrophic_phytoplankton_expressed_as_chlorophyll_in_sea_water", + "units": "kg m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Surface Mass Concentration of Diazotrophs Expressed as Chlorophyll in Sea Water", + "comment": "chlorophyll concentration from the diazotrophic phytoplankton component alone", + "dimensions": "longitude latitude time depth0m", + "out_name": "chldiazos", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "chldiazos", + "variableRootDD": "chldiaz", + "branding_label": "tavg-d0m-hxy-sea", + "branded_variable_name": "chldiaz_tavg-d0m-hxy-sea", + "region": "30S-90S", + "cmip6_compound_name": "Omon.chldiazos", + "cmip7_compound_name": "ocnBgchem.chldiaz.tavg-d0m-hxy-sea.mon.30S-90S", + "uid": "c91979b2-c5e8-11e6-84e6-5404a60d96b5" + }, + "ocnBgchem.chldiaz.tavg-ol-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "mass_concentration_of_diazotrophic_phytoplankton_expressed_as_chlorophyll_in_sea_water", + "units": "kg m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Mass Concentration of Diazotrophs Expressed as Chlorophyll in Sea Water", + "comment": "chlorophyll concentration from the diazotrophic phytoplankton component alone", + "dimensions": "longitude latitude olevel time", + "out_name": "chldiaz", + "type": "real", + "positive": "", + "spatial_shape": "XY-O", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "chldiaz", + "variableRootDD": "chldiaz", + "branding_label": "tavg-ol-hxy-sea", + "branded_variable_name": "chldiaz_tavg-ol-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.chldiaz", + "cmip7_compound_name": "ocnBgchem.chldiaz.tavg-ol-hxy-sea.mon.GLB", + "uid": "ba9fbfcc-e5dd-11e5-8482-ac72891c3257" + }, + "ocnBgchem.chlmisc.tavg-d0m-hxy-sea.mon.30S-90S": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "mass_concentration_of_miscellaneous_phytoplankton_expressed_as_chlorophyll_in_sea_water", + "units": "kg m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Surface Mass Concentration of Other Phytoplankton Expressed as Chlorophyll in Sea Water", + "comment": "chlorophyll from additional phytoplankton component concentrations alone", + "dimensions": "longitude latitude time depth0m", + "out_name": "chlmiscos", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "chlmiscos", + "variableRootDD": "chlmisc", + "branding_label": "tavg-d0m-hxy-sea", + "branded_variable_name": "chlmisc_tavg-d0m-hxy-sea", + "region": "30S-90S", + "cmip6_compound_name": "Omon.chlmiscos", + "cmip7_compound_name": "ocnBgchem.chlmisc.tavg-d0m-hxy-sea.mon.30S-90S", + "uid": "c919a342-c5e8-11e6-84e6-5404a60d96b5" + }, + "ocnBgchem.chlmisc.tavg-ol-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "mass_concentration_of_miscellaneous_phytoplankton_expressed_as_chlorophyll_in_sea_water", + "units": "kg m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Mass Concentration of Other Phytoplankton Expressed as Chlorophyll in Sea Water", + "comment": "chlorophyll from additional phytoplankton component concentrations alone", + "dimensions": "longitude latitude olevel time", + "out_name": "chlmisc", + "type": "real", + "positive": "", + "spatial_shape": "XY-O", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "chlmisc", + "variableRootDD": "chlmisc", + "branding_label": "tavg-ol-hxy-sea", + "branded_variable_name": "chlmisc_tavg-ol-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.chlmisc", + "cmip7_compound_name": "ocnBgchem.chlmisc.tavg-ol-hxy-sea.mon.GLB", + "uid": "ba9fcc88-e5dd-11e5-8482-ac72891c3257" + }, + "ocnBgchem.chlpico.tavg-d0m-hxy-sea.mon.30S-90S": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "mass_concentration_of_picophytoplankton_expressed_as_chlorophyll_in_sea_water", + "units": "kg m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Surface Mass Concentration of Picophytoplankton Expressed as Chlorophyll in Sea Water", + "comment": "chlorophyll concentration from the picophytoplankton (<2 um) component alone", + "dimensions": "longitude latitude time depth0m", + "out_name": "chlpicoos", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "chlpicoos", + "variableRootDD": "chlpico", + "branding_label": "tavg-d0m-hxy-sea", + "branded_variable_name": "chlpico_tavg-d0m-hxy-sea", + "region": "30S-90S", + "cmip6_compound_name": "Omon.chlpicoos", + "cmip7_compound_name": "ocnBgchem.chlpico.tavg-d0m-hxy-sea.mon.30S-90S", + "uid": "c919953c-c5e8-11e6-84e6-5404a60d96b5" + }, + "ocnBgchem.chlpico.tavg-ol-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "mass_concentration_of_picophytoplankton_expressed_as_chlorophyll_in_sea_water", + "units": "kg m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Mass Concentration of Picophytoplankton Expressed as Chlorophyll in Sea Water", + "comment": "chlorophyll concentration from the picophytoplankton (<2 um) component alone", + "dimensions": "longitude latitude olevel time", + "out_name": "chlpico", + "type": "real", + "positive": "", + "spatial_shape": "XY-O", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "chlpico", + "variableRootDD": "chlpico", + "branding_label": "tavg-ol-hxy-sea", + "branded_variable_name": "chlpico_tavg-ol-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.chlpico", + "cmip7_compound_name": "ocnBgchem.chlpico.tavg-ol-hxy-sea.mon.GLB", + "uid": "ba9fc85a-e5dd-11e5-8482-ac72891c3257" + }, + "ocnBgchem.co3.tavg-d0m-hxy-sea.day.GLB": { + "frequency": "day", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_carbonate_expressed_as_carbon_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Surface Carbonate Ion Concentration", + "comment": "Near surface mole concentration (number of moles per unit volume: molarity) of the carbonate anion (CO3).", + "dimensions": "longitude latitude time depth0m", + "out_name": "co3os", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Oday", + "physical_parameter_name": "co3os", + "variableRootDD": "co3", + "branding_label": "tavg-d0m-hxy-sea", + "branded_variable_name": "co3_tavg-d0m-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Oday.co3os", + "cmip7_compound_name": "ocnBgchem.co3.tavg-d0m-hxy-sea.day.GLB", + "uid": "83bbfb91-7f07-11ef-9308-b1dd71e64bec" + }, + "ocnBgchem.co3.tavg-op20bar-hxy-sea.day.GLB": { + "frequency": "day", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_carbonate_expressed_as_carbon_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Carbonate Ion Concentration", + "comment": "Mole concentration (number of moles per unit volume: molarity) of the carbonate anion (CO3).", + "dimensions": "longitude latitude time op20bar", + "out_name": "co3", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Oday", + "physical_parameter_name": "co3", + "variableRootDD": "co3", + "branding_label": "tavg-op20bar-hxy-sea", + "branded_variable_name": "co3_tavg-op20bar-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Oday.co3200", + "cmip7_compound_name": "ocnBgchem.co3.tavg-op20bar-hxy-sea.day.GLB", + "uid": "83bbfb92-7f07-11ef-9308-b1dd71e64bec" + }, + "ocnBgchem.co3satarag.tavg-d0m-hxy-sea.day.GLB": { + "frequency": "day", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_carbonate_expressed_as_carbon_at_equilibrium_with_pure_aragonite_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Surface Mole Concentration of Carbonate Ion in Equilibrium with Pure Aragonite in Sea Water", + "comment": "Near surface mole concentration (number of moles per unit volume: molarity) of the carbonate anion (CO3) for sea water in equilibrium with pure Aragonite. Aragonite (CaCO3) is a mineral that is a polymorph of calcium carbonate.", + "dimensions": "longitude latitude time depth0m", + "out_name": "co3sataragos", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Oday", + "physical_parameter_name": "co3sataragos", + "variableRootDD": "co3satarag", + "branding_label": "tavg-d0m-hxy-sea", + "branded_variable_name": "co3satarag_tavg-d0m-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Oday.co3sataragos", + "cmip7_compound_name": "ocnBgchem.co3satarag.tavg-d0m-hxy-sea.day.GLB", + "uid": "83bbfb8f-7f07-11ef-9308-b1dd71e64bec" + }, + "ocnBgchem.co3satarag.tavg-op20bar-hxy-sea.day.GLB": { + "frequency": "day", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_carbonate_expressed_as_carbon_at_equilibrium_with_pure_aragonite_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Mole Concentration of Carbonate Ion in Equilibrium with Pure Aragonite in Sea Water", + "comment": "Mole concentration (number of moles per unit volume: molarity) of the carbonate anion (CO3) for sea water in equilibrium with pure Aragonite. Aragonite (CaCO3) is a mineral that is a polymorph of calcium carbonate.", + "dimensions": "longitude latitude time op20bar", + "out_name": "co3satarag", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Oday", + "physical_parameter_name": "co3satarag", + "variableRootDD": "co3satarag", + "branding_label": "tavg-op20bar-hxy-sea", + "branded_variable_name": "co3satarag_tavg-op20bar-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Oday.co3satarag200", + "cmip7_compound_name": "ocnBgchem.co3satarag.tavg-op20bar-hxy-sea.day.GLB", + "uid": "83bbfb90-7f07-11ef-9308-b1dd71e64bec" + }, + "ocnBgchem.detoc.tavg-ol-hxy-sea.day.GLB": { + "frequency": "day", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_organic_detritus_expressed_as_carbon_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Detrital Organic Carbon Concentration", + "comment": "sum of detrital organic carbon component concentrations", + "dimensions": "longitude latitude olevel time", + "out_name": "detoc", + "type": "real", + "positive": "", + "spatial_shape": "XY-O", + "temporal_shape": "time-intv", + "cmip6_table": "Oday", + "physical_parameter_name": "detoc", + "variableRootDD": "detoc", + "branding_label": "tavg-ol-hxy-sea", + "branded_variable_name": "detoc_tavg-ol-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Oday.detoc", + "cmip7_compound_name": "ocnBgchem.detoc.tavg-ol-hxy-sea.day.GLB", + "uid": "527f5cc7-8c97-11ef-944e-41a8eb05f654" + }, + "ocnBgchem.detoc.tavg-ol-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_organic_detritus_expressed_as_carbon_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Detrital Organic Carbon Concentration", + "comment": "sum of detrital organic carbon component concentrations", + "dimensions": "longitude latitude olevel time", + "out_name": "detoc", + "type": "real", + "positive": "", + "spatial_shape": "XY-O", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "detoc", + "variableRootDD": "detoc", + "branding_label": "tavg-ol-hxy-sea", + "branded_variable_name": "detoc_tavg-ol-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.detoc", + "cmip7_compound_name": "ocnBgchem.detoc.tavg-ol-hxy-sea.mon.GLB", + "uid": "ba9f6018-e5dd-11e5-8482-ac72891c3257" + }, + "ocnBgchem.dfe.tavg-d0m-hxy-sea.mon.30S-90S": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_dissolved_iron_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Surface Dissolved Iron Concentration", + "comment": "dissolved iron in sea water is meant to include both Fe2+ and Fe3+ ions (but not, e.g., particulate detrital iron)", + "dimensions": "longitude latitude time depth0m", + "out_name": "dfeos", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "dfeos", + "variableRootDD": "dfe", + "branding_label": "tavg-d0m-hxy-sea", + "branded_variable_name": "dfe_tavg-d0m-hxy-sea", + "region": "30S-90S", + "cmip6_compound_name": "Omon.dfeosSouth30", + "cmip7_compound_name": "ocnBgchem.dfe.tavg-d0m-hxy-sea.mon.30S-90S", + "uid": "80ac3184-a698-11ef-914a-613c0433d878" + }, + "ocnBgchem.dfe.tavg-d0m-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_dissolved_iron_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Surface Dissolved Iron Concentration", + "comment": "dissolved iron in sea water is meant to include both Fe2+ and Fe3+ ions (but not, e.g., particulate detrital iron)", + "dimensions": "longitude latitude time depth0m", + "out_name": "dfeos", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "dfeos", + "variableRootDD": "dfe", + "branding_label": "tavg-d0m-hxy-sea", + "branded_variable_name": "dfe_tavg-d0m-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.dfeos", + "cmip7_compound_name": "ocnBgchem.dfe.tavg-d0m-hxy-sea.mon.GLB", + "uid": "c9194000-c5e8-11e6-84e6-5404a60d96b5" + }, + "ocnBgchem.dfe.tavg-ol-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_dissolved_iron_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Dissolved Iron Concentration", + "comment": "dissolved iron in sea water is meant to include both Fe2+ and Fe3+ ions (but not, e.g., particulate detrital iron)", + "dimensions": "longitude latitude olevel time", + "out_name": "dfe", + "type": "real", + "positive": "", + "spatial_shape": "XY-O", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "dfe", + "variableRootDD": "dfe", + "branding_label": "tavg-ol-hxy-sea", + "branded_variable_name": "dfe_tavg-ol-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.dfe", + "cmip7_compound_name": "ocnBgchem.dfe.tavg-ol-hxy-sea.mon.GLB", + "uid": "ba9faf0a-e5dd-11e5-8482-ac72891c3257" + }, + "ocnBgchem.dissi13c.tavg-d0m-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_dissolved_inorganic_13C_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Surface Dissolved Inorganic Carbon-13 Concentration", + "comment": "Dissolved inorganic 14carbon (CO3+HCO3+H2CO3) concentration", + "dimensions": "longitude latitude time depth0m", + "out_name": "dissi13cos", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "dissi13cos", + "variableRootDD": "dissi13c", + "branding_label": "tavg-d0m-hxy-sea", + "branded_variable_name": "dissi13c_tavg-d0m-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.dissi13cos", + "cmip7_compound_name": "ocnBgchem.dissi13c.tavg-d0m-hxy-sea.mon.GLB", + "uid": "c917b686-c5e8-11e6-84e6-5404a60d96b5" + }, + "ocnBgchem.dissi13c.tavg-ol-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_dissolved_inorganic_13C_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Dissolved Inorganic Carbon-13 Concentration", + "comment": "Dissolved inorganic 14carbon (CO3+HCO3+H2CO3) concentration", + "dimensions": "longitude latitude olevel time", + "out_name": "dissi13c", + "type": "real", + "positive": "", + "spatial_shape": "XY-O", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "dissi13c", + "variableRootDD": "dissi13c", + "branding_label": "tavg-ol-hxy-sea", + "branded_variable_name": "dissi13c_tavg-ol-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.dissi13c", + "cmip7_compound_name": "ocnBgchem.dissi13c.tavg-ol-hxy-sea.mon.GLB", + "uid": "c91aa80a-c5e8-11e6-84e6-5404a60d96b5" + }, + "ocnBgchem.dissi14c.tavg-ol-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_dissolved_inorganic_14C_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Dissolved Inorganic Carbon-14 Concentration", + "comment": "Dissolved inorganic carbon-14 (CO3+HCO3+H2CO3) concentration", + "dimensions": "longitude latitude olevel time", + "out_name": "dissi14c", + "type": "real", + "positive": "", + "spatial_shape": "XY-O", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "dissi14c", + "variableRootDD": "dissi14c", + "branding_label": "tavg-ol-hxy-sea", + "branded_variable_name": "dissi14c_tavg-ol-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Emon.dissi14c", + "cmip7_compound_name": "ocnBgchem.dissi14c.tavg-ol-hxy-sea.mon.GLB", + "uid": "8b7fa828-4a5b-11e6-9cd2-ac72891c3257" + }, + "ocnBgchem.dissi14cabio.tavg-d0m-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_dissolved_inorganic_14C_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Surface Abiotic Dissolved Inorganic Carbon-14 Concentration", + "comment": "Abiotic Dissolved inorganic 14carbon (CO3+HCO3+H2CO3) concentration", + "dimensions": "longitude latitude time depth0m", + "out_name": "dissi14cabioos", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "dissi14cabioos", + "variableRootDD": "dissi14cabio", + "branding_label": "tavg-d0m-hxy-sea", + "branded_variable_name": "dissi14cabio_tavg-d0m-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.dissi14cabioos", + "cmip7_compound_name": "ocnBgchem.dissi14cabio.tavg-d0m-hxy-sea.mon.GLB", + "uid": "c917a70e-c5e8-11e6-84e6-5404a60d96b5" + }, + "ocnBgchem.dissi14cabio.tavg-ol-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_dissolved_inorganic_14C_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Abiotic Dissolved Inorganic Carbon-14 Concentration", + "comment": "Abiotic Dissolved inorganic 14carbon (CO3+HCO3+H2CO3) concentration", + "dimensions": "longitude latitude olevel time", + "out_name": "dissi14cabio", + "type": "real", + "positive": "", + "spatial_shape": "XY-O", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "dissi14cabio", + "variableRootDD": "dissi14cabio", + "branding_label": "tavg-ol-hxy-sea", + "branded_variable_name": "dissi14cabio_tavg-ol-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.dissi14cabio", + "cmip7_compound_name": "ocnBgchem.dissi14cabio.tavg-ol-hxy-sea.mon.GLB", + "uid": "ba9f474a-e5dd-11e5-8482-ac72891c3257" + }, + "ocnBgchem.dissic.tavg-d0m-hxy-sea.mon.30S-90S": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_dissolved_inorganic_carbon_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Surface Dissolved Inorganic Carbon Concentration", + "comment": "Dissolved inorganic carbon (CO3+HCO3+H2CO3) concentration", + "dimensions": "longitude latitude time depth0m", + "out_name": "dissicos", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "dissicos", + "variableRootDD": "dissic", + "branding_label": "tavg-d0m-hxy-sea", + "branded_variable_name": "dissic_tavg-d0m-hxy-sea", + "region": "30S-90S", + "cmip6_compound_name": "Omon.dissicos", + "cmip7_compound_name": "ocnBgchem.dissic.tavg-d0m-hxy-sea.mon.30S-90S", + "uid": "803e5f7c-f906-11e6-a176-5404a60d96b5" + }, + "ocnBgchem.dissic.tavg-ol-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_dissolved_inorganic_carbon_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Dissolved Inorganic Carbon Concentration", + "comment": "Dissolved inorganic carbon (CO3+HCO3+H2CO3) concentration", + "dimensions": "longitude latitude olevel time", + "out_name": "dissic", + "type": "real", + "positive": "", + "spatial_shape": "XY-O", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "dissic", + "variableRootDD": "dissic", + "branding_label": "tavg-ol-hxy-sea", + "branded_variable_name": "dissic_tavg-ol-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.dissic", + "cmip7_compound_name": "ocnBgchem.dissic.tavg-ol-hxy-sea.mon.GLB", + "uid": "ba9f3ac0-e5dd-11e5-8482-ac72891c3257" + }, + "ocnBgchem.dissoc.tavg-ol-hxy-sea.day.GLB": { + "frequency": "day", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_dissolved_organic_carbon_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Dissolved Organic Carbon Concentration", + "comment": "Sum of dissolved carbon component concentrations explicitly represented (i.e. not ~40 uM refractory unless explicit)", + "dimensions": "longitude latitude olevel time", + "out_name": "dissoc", + "type": "real", + "positive": "", + "spatial_shape": "XY-O", + "temporal_shape": "time-intv", + "cmip6_table": "Oday", + "physical_parameter_name": "dissoc", + "variableRootDD": "dissoc", + "branding_label": "tavg-ol-hxy-sea", + "branded_variable_name": "dissoc_tavg-ol-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Oday.dissoc", + "cmip7_compound_name": "ocnBgchem.dissoc.tavg-ol-hxy-sea.day.GLB", + "uid": "527f5cc8-8c97-11ef-944e-41a8eb05f654" + }, + "ocnBgchem.dissoc.tavg-ol-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_dissolved_organic_carbon_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Dissolved Organic Carbon Concentration", + "comment": "Sum of dissolved carbon component concentrations explicitly represented (i.e. not ~40 uM refractory unless explicit)", + "dimensions": "longitude latitude olevel time", + "out_name": "dissoc", + "type": "real", + "positive": "", + "spatial_shape": "XY-O", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "dissoc", + "variableRootDD": "dissoc", + "branding_label": "tavg-ol-hxy-sea", + "branded_variable_name": "dissoc_tavg-ol-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.dissoc", + "cmip7_compound_name": "ocnBgchem.dissoc.tavg-ol-hxy-sea.mon.GLB", + "uid": "ba9f4f60-e5dd-11e5-8482-ac72891c3257" + }, + "ocnBgchem.dmso.tavg-d0m-hxy-sea.mon.30S-90S": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_dimethyl_sulfide_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Surface Mole Concentration of Dimethyl Sulphide in Sea Water", + "comment": "Mole concentration of dimethyl sulphide in water in the near surface layer", + "dimensions": "longitude latitude time depth0m", + "out_name": "dmsos", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "dmsos", + "variableRootDD": "dmso", + "branding_label": "tavg-d0m-hxy-sea", + "branded_variable_name": "dmso_tavg-d0m-hxy-sea", + "region": "30S-90S", + "cmip6_compound_name": "Omon.dmsosSouth30", + "cmip7_compound_name": "ocnBgchem.dmso.tavg-d0m-hxy-sea.mon.30S-90S", + "uid": "80ac3187-a698-11ef-914a-613c0433d878" + }, + "ocnBgchem.dmso.tavg-d0m-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_dimethyl_sulfide_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Surface Mole Concentration of Dimethyl Sulphide in Sea Water", + "comment": "Mole concentration of dimethyl sulphide in water in the near surface layer", + "dimensions": "longitude latitude time depth0m", + "out_name": "dmsos", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "dmsos", + "variableRootDD": "dmso", + "branding_label": "tavg-d0m-hxy-sea", + "branded_variable_name": "dmso_tavg-d0m-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.dmsos", + "cmip7_compound_name": "ocnBgchem.dmso.tavg-d0m-hxy-sea.mon.GLB", + "uid": "c91a2a2e-c5e8-11e6-84e6-5404a60d96b5" + }, + "ocnBgchem.dmso.tavg-ol-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_dimethyl_sulfide_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Mole Concentration of Dimethyl Sulphide in Sea Water", + "comment": "Mole concentration of dimethyl sulphide in water", + "dimensions": "longitude latitude olevel time", + "out_name": "dmso", + "type": "real", + "positive": "", + "spatial_shape": "XY-O", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "dmso", + "variableRootDD": "dmso", + "branding_label": "tavg-ol-hxy-sea", + "branded_variable_name": "dmso_tavg-ol-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.dmso", + "cmip7_compound_name": "ocnBgchem.dmso.tavg-ol-hxy-sea.mon.GLB", + "uid": "487c3ad6-2e41-11e6-b631-6f2cd59aa922" + }, + "ocnBgchem.dpco2.tavg-u-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "surface_carbon_dioxide_partial_pressure_difference_between_sea_water_and_air", + "units": "Pa", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Delta CO2 Partial Pressure", + "comment": "Difference in partial pressure of carbon dioxide between sea water and air. The partial pressure of a dissolved gas in sea water is the partial pressure in air with which it would be in equilibrium.", + "dimensions": "longitude latitude time", + "out_name": "dpco2", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "dpco2", + "variableRootDD": "dpco2", + "branding_label": "tavg-u-hxy-sea", + "branded_variable_name": "dpco2_tavg-u-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.dpco2", + "cmip7_compound_name": "ocnBgchem.dpco2.tavg-u-hxy-sea.mon.GLB", + "uid": "baa0cbc4-e5dd-11e5-8482-ac72891c3257" + }, + "ocnBgchem.dpo2.tavg-u-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "surface_molecular_oxygen_partial_pressure_difference_between_sea_water_and_air", + "units": "Pa", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Delta O2 Partial Pressure", + "comment": "The partial pressure of a dissolved gas in sea water is the partial pressure in air with which it would be in equilibrium. The partial pressure of a gaseous constituent of air is the pressure which it alone would exert with unchanged temperature and number of moles per unit volume. The surface called \"surface\" means the lower boundary of the atmosphere.", + "dimensions": "longitude latitude time", + "out_name": "dpo2", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "dpo2", + "variableRootDD": "dpo2", + "branding_label": "tavg-u-hxy-sea", + "branded_variable_name": "dpo2_tavg-u-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.dpo2", + "cmip7_compound_name": "ocnBgchem.dpo2.tavg-u-hxy-sea.mon.GLB", + "uid": "baa0cff2-e5dd-11e5-8482-ac72891c3257" + }, + "ocnBgchem.epn.tavg-d100m-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "sinking_mole_flux_of_particulate_organic_nitrogen_in_sea_water", + "units": "mol m-2 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Downward Flux of Particulate Nitrogen", + "comment": "In accordance with common usage in geophysical disciplines, \"flux\" implies per unit area, called \"flux density\" in physics. 'Sinking' is the gravitational settling of particulate matter suspended in a liquid. A sinking flux is positive downwards and is calculated relative to the movement of the surrounding fluid.", + "dimensions": "longitude latitude time depth100m", + "out_name": "epn100", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "epn100", + "variableRootDD": "epn", + "branding_label": "tavg-d100m-hxy-sea", + "branded_variable_name": "epn_tavg-d100m-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.epn100", + "cmip7_compound_name": "ocnBgchem.epn.tavg-d100m-hxy-sea.mon.GLB", + "uid": "c91df87a-c5e8-11e6-84e6-5404a60d96b5" + }, + "ocnBgchem.epp.tavg-d100m-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "sinking_mole_flux_of_particulate_organic_phosphorus_in_sea_water", + "units": "mol m-2 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Downward Flux of Particulate Phosphorus", + "comment": "In accordance with common usage in geophysical disciplines, \"flux\" implies per unit area, called \"flux density\" in physics. 'Sinking' is the gravitational settling of particulate matter suspended in a liquid. A sinking flux is positive downwards and is calculated relative to the movement of the surrounding fluid.", + "dimensions": "longitude latitude time depth100m", + "out_name": "epp100", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "epp100", + "variableRootDD": "epp", + "branding_label": "tavg-d100m-hxy-sea", + "branded_variable_name": "epp_tavg-d100m-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.epp100", + "cmip7_compound_name": "ocnBgchem.epp.tavg-d100m-hxy-sea.mon.GLB", + "uid": "c91e0702-c5e8-11e6-84e6-5404a60d96b5" + }, + "ocnBgchem.epsi.tavg-d100m-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "sinking_mole_flux_of_particulate_silicon_in_sea_water", + "units": "mol m-2 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Downward Flux of Particulate Silicon", + "comment": "In accordance with common usage in geophysical disciplines, \"flux\" implies per unit area, called \"flux density\" in physics. 'Sinking' is the gravitational settling of particulate matter suspended in a liquid. A sinking flux is positive downwards and is calculated relative to the movement of the surrounding fluid.", + "dimensions": "longitude latitude time depth100m", + "out_name": "epsi100", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "epsi100", + "variableRootDD": "epsi", + "branding_label": "tavg-d100m-hxy-sea", + "branded_variable_name": "epsi_tavg-d100m-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.epsi100", + "cmip7_compound_name": "ocnBgchem.epsi.tavg-d100m-hxy-sea.mon.GLB", + "uid": "5a35f1ba-c77d-11e6-8a33-5404a60d96b5" + }, + "ocnBgchem.exparagob.tavg-u-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "sinking_mole_flux_at_the_sea_floor_of_aragonite_expressed_as_carbon_in_sea_water", + "units": "mol m-2 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Sinking Flux of Aragonite Reaching the Ocean Bottom", + "comment": "Downward sinking flux of aragonite at sea floor", + "dimensions": "longitude latitude time", + "out_name": "exparagob", + "type": "real", + "positive": "down", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "exparagob", + "variableRootDD": "exparagob", + "branding_label": "tavg-u-hxy-sea", + "branded_variable_name": "exparagob_tavg-u-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.exparagob", + "cmip7_compound_name": "ocnBgchem.exparagob.tavg-u-hxy-sea.mon.GLB", + "uid": "83bbfb58-7f07-11ef-9308-b1dd71e64bec" + }, + "ocnBgchem.expc.tavg-d1000m-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "sinking_mole_flux_of_particulate_organic_matter_expressed_as_carbon_in_sea_water", + "units": "mol m-2 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Downward Flux of Particulate Organic Carbon at 1000m", + "comment": "The phrase 'expressed_as' is used in the construction A_expressed_as_B, where B is a chemical constituent of A. It means that the quantity indicated by the standard name is calculated solely with respect to the B contained in A, neglecting all other chemical constituents of A. In accordance with common usage in geophysical disciplines, \"flux\" implies per unit area, called \"flux density\" in physics. 'Sinking' is the gravitational settling of particulate matter suspended in a liquid. A sinking flux is positive downwards and is calculated relative to the movement of the surrounding fluid.", + "dimensions": "longitude latitude time depth1000m", + "out_name": "epc1000", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "epc1000", + "variableRootDD": "expc", + "branding_label": "tavg-d1000m-hxy-sea", + "branded_variable_name": "expc_tavg-d1000m-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.epc1000", + "cmip7_compound_name": "ocnBgchem.expc.tavg-d1000m-hxy-sea.mon.GLB", + "uid": "83bbfb5a-7f07-11ef-9308-b1dd71e64bec" + }, + "ocnBgchem.expc.tavg-d100m-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "sinking_mole_flux_of_particulate_organic_matter_expressed_as_carbon_in_sea_water", + "units": "mol m-2 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Downward Flux of Particulate Organic Carbon", + "comment": "The phrase 'expressed_as' is used in the construction A_expressed_as_B, where B is a chemical constituent of A. It means that the quantity indicated by the standard name is calculated solely with respect to the B contained in A, neglecting all other chemical constituents of A. In accordance with common usage in geophysical disciplines, \"flux\" implies per unit area, called \"flux density\" in physics. 'Sinking' is the gravitational settling of particulate matter suspended in a liquid. A sinking flux is positive downwards and is calculated relative to the movement of the surrounding fluid.", + "dimensions": "longitude latitude time depth100m", + "out_name": "epc100", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "epc100", + "variableRootDD": "expc", + "branding_label": "tavg-d100m-hxy-sea", + "branded_variable_name": "expc_tavg-d100m-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.epc100", + "cmip7_compound_name": "ocnBgchem.expc.tavg-d100m-hxy-sea.mon.GLB", + "uid": "5a35b628-c77d-11e6-8a33-5404a60d96b5" + }, + "ocnBgchem.expc.tavg-ol-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "sinking_mole_flux_of_particulate_organic_matter_expressed_as_carbon_in_sea_water", + "units": "mol m-2 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Downward Flux of Particulate Organic Carbon", + "comment": "Downward flux of particulate organic carbon", + "dimensions": "longitude latitude olevel time", + "out_name": "expc", + "type": "real", + "positive": "down", + "spatial_shape": "XY-O", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "expc", + "variableRootDD": "expc", + "branding_label": "tavg-ol-hxy-sea", + "branded_variable_name": "expc_tavg-ol-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.expc", + "cmip7_compound_name": "ocnBgchem.expc.tavg-ol-hxy-sea.mon.GLB", + "uid": "baa00ed2-e5dd-11e5-8482-ac72891c3257" + }, + "ocnBgchem.expcalc.tavg-d1000m-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "sinking_mole_flux_of_calcite_expressed_as_carbon_in_sea_water", + "units": "mol m-2 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Downward Flux of Calcite at 1000m", + "comment": "The phrase 'expressed_as' is used in the construction A_expressed_as_B, where B is a chemical constituent of A. It means that the quantity indicated by the standard name is calculated solely with respect to the B contained in A, neglecting all other chemical constituents of A. In accordance with common usage in geophysical disciplines, \"flux\" implies per unit area, called \"flux density\" in physics. 'Sinking' is the gravitational settling of particulate matter suspended in a liquid. A sinking flux is positive downwards and is calculated relative to the movement of the surrounding fluid. Calcite is a mineral that is a polymorph of calcium carbonate. The chemical formula of calcite is CaCO3. Standard names also exist for aragonite, another polymorph of calcium carbonate.", + "dimensions": "longitude latitude time depth1000m", + "out_name": "epcalc1000", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "epcalc1000", + "variableRootDD": "expcalc", + "branding_label": "tavg-d1000m-hxy-sea", + "branded_variable_name": "expcalc_tavg-d1000m-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.epcalc1000", + "cmip7_compound_name": "ocnBgchem.expcalc.tavg-d1000m-hxy-sea.mon.GLB", + "uid": "83bbfb59-7f07-11ef-9308-b1dd71e64bec" + }, + "ocnBgchem.expcalc.tavg-d100m-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "sinking_mole_flux_of_calcite_expressed_as_carbon_in_sea_water", + "units": "mol m-2 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Downward Flux of Calcite", + "comment": "The phrase 'expressed_as' is used in the construction A_expressed_as_B, where B is a chemical constituent of A. It means that the quantity indicated by the standard name is calculated solely with respect to the B contained in A, neglecting all other chemical constituents of A. In accordance with common usage in geophysical disciplines, \"flux\" implies per unit area, called \"flux density\" in physics. 'Sinking' is the gravitational settling of particulate matter suspended in a liquid. A sinking flux is positive downwards and is calculated relative to the movement of the surrounding fluid. Calcite is a mineral that is a polymorph of calcium carbonate. The chemical formula of calcite is CaCO3. Standard names also exist for aragonite, another polymorph of calcium carbonate.", + "dimensions": "longitude latitude time depth100m", + "out_name": "epcalc100", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "epcalc100", + "variableRootDD": "expcalc", + "branding_label": "tavg-d100m-hxy-sea", + "branded_variable_name": "expcalc_tavg-d100m-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.epcalc100", + "cmip7_compound_name": "ocnBgchem.expcalc.tavg-d100m-hxy-sea.mon.GLB", + "uid": "5a3602cc-c77d-11e6-8a33-5404a60d96b5" + }, + "ocnBgchem.expcalc.tavg-ol-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "sinking_mole_flux_of_calcite_expressed_as_carbon_in_sea_water", + "units": "mol m-2 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Downward Flux of Calcite", + "comment": "Downward flux of Calcite", + "dimensions": "longitude latitude olevel time", + "out_name": "expcalc", + "type": "real", + "positive": "down", + "spatial_shape": "XY-O", + "temporal_shape": "time-intv", + "cmip6_table": "Emon", + "physical_parameter_name": "expcalc", + "variableRootDD": "expcalc", + "branding_label": "tavg-ol-hxy-sea", + "branded_variable_name": "expcalc_tavg-ol-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Emon.expcalc", + "cmip7_compound_name": "ocnBgchem.expcalc.tavg-ol-hxy-sea.mon.GLB", + "uid": "e708cb5a-aa7f-11e6-9a4a-5404a60d96b5" + }, + "ocnBgchem.expcalcob.tavg-u-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "sinking_mole_flux_at_sea_floor_of_calcite_expressed_as_carbon_in_sea_water", + "units": "mol m-2 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Sinking Flux of Calcite Reaching the Ocean Bottom", + "comment": "Downward sinking flux of calcite at seafloor", + "dimensions": "longitude latitude time", + "out_name": "expcalcob", + "type": "real", + "positive": "down", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "expcalcob", + "variableRootDD": "expcalcob", + "branding_label": "tavg-u-hxy-sea", + "branded_variable_name": "expcalcob_tavg-u-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.expcalcob", + "cmip7_compound_name": "ocnBgchem.expcalcob.tavg-u-hxy-sea.mon.GLB", + "uid": "83bbfb57-7f07-11ef-9308-b1dd71e64bec" + }, + "ocnBgchem.expcob.tavg-u-hxy-sea.day.GLB": { + "frequency": "day", + "modeling_realm": "ocnBgchem", + "standard_name": "sinking_mole_flux_at_sea_floor_of_particulate_organic_matter_expressed_as_carbon_in_sea_water", + "units": "mol m-2 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Sinking Flux of Particulate Organic Carbon Reaching the Ocean Bottom", + "comment": "Downward sinking flux of particulate organic carbon at sea floor. Reported at the sea floor depth for present day relative to z=0 geoid. Reported as missing for land grid cells.", + "dimensions": "longitude latitude time", + "out_name": "expcob", + "type": "real", + "positive": "down", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Oday", + "physical_parameter_name": "expcob", + "variableRootDD": "expcob", + "branding_label": "tavg-u-hxy-sea", + "branded_variable_name": "expcob_tavg-u-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Oday.expcob", + "cmip7_compound_name": "ocnBgchem.expcob.tavg-u-hxy-sea.day.GLB", + "uid": "527f5ccb-8c97-11ef-944e-41a8eb05f654" + }, + "ocnBgchem.expcob.tavg-u-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "sinking_mole_flux_at_sea_floor_of_particulate_organic_matter_expressed_as_carbon_in_sea_water", + "units": "mol m-2 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Sinking Flux of Particulate Organic Carbon Reaching the Ocean Bottom", + "comment": "Downward sinking flux of particulate organic carbon at seafloor", + "dimensions": "longitude latitude time", + "out_name": "expcob", + "type": "real", + "positive": "down", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "expcob", + "variableRootDD": "expcob", + "branding_label": "tavg-u-hxy-sea", + "branded_variable_name": "expcob_tavg-u-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.expcob", + "cmip7_compound_name": "ocnBgchem.expcob.tavg-u-hxy-sea.mon.GLB", + "uid": "83bbfb56-7f07-11ef-9308-b1dd71e64bec" + }, + "ocnBgchem.expfeob.tavg-u-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "sinking_mole_flux_at_sea_floor_of_particulate_iron_in_sea_water", + "units": "mol m-2 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Sinking Flux of Particulate Iron Reaching the Ocean Bottom", + "comment": "Downward sinking flux of particulate iron at seafloor", + "dimensions": "longitude latitude time", + "out_name": "expfeob", + "type": "real", + "positive": "down", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "expfeob", + "variableRootDD": "expfeob", + "branding_label": "tavg-u-hxy-sea", + "branded_variable_name": "expfeob_tavg-u-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.expfeob", + "cmip7_compound_name": "ocnBgchem.expfeob.tavg-u-hxy-sea.mon.GLB", + "uid": "83bbfb55-7f07-11ef-9308-b1dd71e64bec" + }, + "ocnBgchem.expnob.tavg-u-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "sinking_mole_flux_at_sea_floor_of_particulate_organic_nitrogen_in_sea_water", + "units": "mol m-2 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Sinking Flux of Particulate Organic Nitrogen Reaching the Ocean Bottom", + "comment": "Downward sinking flux of particulate organic nitrogen at seafloor", + "dimensions": "longitude latitude time", + "out_name": "expnob", + "type": "real", + "positive": "down", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "expnob", + "variableRootDD": "expnob", + "branding_label": "tavg-u-hxy-sea", + "branded_variable_name": "expnob_tavg-u-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.expnob", + "cmip7_compound_name": "ocnBgchem.expnob.tavg-u-hxy-sea.mon.GLB", + "uid": "83bbfb54-7f07-11ef-9308-b1dd71e64bec" + }, + "ocnBgchem.exppob.tavg-u-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "sinking_mole_flux_at_sea_floor_of_particulate_organic_phosphorus_in_sea_water", + "units": "mol m-2 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Sinking Flux of Particulate Organic Phosphorus Reaching the Ocean Bottom", + "comment": "Downward sinking flux of particulate organic phosphorus at seafloor", + "dimensions": "longitude latitude time", + "out_name": "exppob", + "type": "real", + "positive": "down", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "exppob", + "variableRootDD": "exppob", + "branding_label": "tavg-u-hxy-sea", + "branded_variable_name": "exppob_tavg-u-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.exppob", + "cmip7_compound_name": "ocnBgchem.exppob.tavg-u-hxy-sea.mon.GLB", + "uid": "83bbfb53-7f07-11ef-9308-b1dd71e64bec" + }, + "ocnBgchem.expsiob.tavg-u-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "sinking_mole_flux_at_sea_floor_of_particulate_silicon_in_sea_water", + "units": "mol m-2 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Sinking Flux of Particulate Silicon Reaching the Ocean Bottom", + "comment": "Downward sinking flux of particulate silicon at seafloor", + "dimensions": "longitude latitude time", + "out_name": "expsiob", + "type": "real", + "positive": "down", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "expsiob", + "variableRootDD": "expsiob", + "branding_label": "tavg-u-hxy-sea", + "branded_variable_name": "expsiob_tavg-u-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.expsiob", + "cmip7_compound_name": "ocnBgchem.expsiob.tavg-u-hxy-sea.mon.GLB", + "uid": "83bbfb52-7f07-11ef-9308-b1dd71e64bec" + }, + "ocnBgchem.fg13co2.tavg-u-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "surface_downward_mass_flux_of_13C_dioxide_abiotic_analogue_expressed_as_13C", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Surface Downward Mass Flux of Carbon-13 as 13CO2 [kgC m-2 s-1]", + "comment": "Gas exchange flux of abiotic 13CO2 (positive into ocean)", + "dimensions": "longitude latitude time", + "out_name": "fg13co2", + "type": "real", + "positive": "down", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "fg13co2", + "variableRootDD": "fg13co2", + "branding_label": "tavg-u-hxy-sea", + "branded_variable_name": "fg13co2_tavg-u-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.fg13co2", + "cmip7_compound_name": "ocnBgchem.fg13co2.tavg-u-hxy-sea.mon.GLB", + "uid": "804534f0-f906-11e6-a176-5404a60d96b5" + }, + "ocnBgchem.fg14co2abio.tavg-u-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "surface_downward_mass_flux_of_14C_dioxide_abiotic_analogue_expressed_as_carbon", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Surface Downward Mass Flux of Carbon-14 as Abiotic 14CO2 [kgC m-2 s-1]", + "comment": "Gas exchange flux of abiotic 14CO2 (positive into ocean)", + "dimensions": "longitude latitude time", + "out_name": "fg14co2abio", + "type": "real", + "positive": "down", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "fg14co2abio", + "variableRootDD": "fg14co2abio", + "branding_label": "tavg-u-hxy-sea", + "branded_variable_name": "fg14co2abio_tavg-u-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.fg14co2abio", + "cmip7_compound_name": "ocnBgchem.fg14co2abio.tavg-u-hxy-sea.mon.GLB", + "uid": "baa0e08c-e5dd-11e5-8482-ac72891c3257" + }, + "ocnBgchem.fgco2.tavg-u-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "surface_downward_mass_flux_of_carbon_dioxide_expressed_as_carbon", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Surface Downward Mass Flux of Carbon as CO2 [kgC m-2 s-1]", + "comment": "Gas exchange flux of CO2 (positive into ocean)", + "dimensions": "longitude latitude time", + "out_name": "fgco2", + "type": "real", + "positive": "down", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "fgco2", + "variableRootDD": "fgco2", + "branding_label": "tavg-u-hxy-sea", + "branded_variable_name": "fgco2_tavg-u-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.fgco2", + "cmip7_compound_name": "ocnBgchem.fgco2.tavg-u-hxy-sea.mon.GLB", + "uid": "baa0d420-e5dd-11e5-8482-ac72891c3257" + }, + "ocnBgchem.fgdms.tavg-u-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "surface_upward_mole_flux_of_dimethyl_sulfide", + "units": "mol m-2 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Surface Upward Flux of DMS", + "comment": "Gas exchange flux of DMS (positive into atmosphere)", + "dimensions": "longitude latitude time", + "out_name": "fgdms", + "type": "real", + "positive": "up", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "fgdms", + "variableRootDD": "fgdms", + "branding_label": "tavg-u-hxy-sea", + "branded_variable_name": "fgdms_tavg-u-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.fgdms", + "cmip7_compound_name": "ocnBgchem.fgdms.tavg-u-hxy-sea.mon.GLB", + "uid": "baa0e906-e5dd-11e5-8482-ac72891c3257" + }, + "ocnBgchem.frfe.tavg-u-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "minus_tendency_of_ocean_mole_content_of_iron_due_to_sedimentation", + "units": "mol m-2 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Iron Loss to Sediments", + "comment": "\"Content\" indicates a quantity per unit area. The specification of a physical process by the phrase due_to_process means that the quantity named is a single term in a sum of terms which together compose the general quantity named by omitting the phrase. \"tendency_of_X\" means derivative of X with respect to time.", + "dimensions": "longitude latitude time", + "out_name": "frfe", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "frfe", + "variableRootDD": "frfe", + "branding_label": "tavg-u-hxy-sea", + "branded_variable_name": "frfe_tavg-u-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.frfe", + "cmip7_compound_name": "ocnBgchem.frfe.tavg-u-hxy-sea.mon.GLB", + "uid": "baa10f12-e5dd-11e5-8482-ac72891c3257" + }, + "ocnBgchem.fric.tavg-u-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "minus_tendency_of_ocean_mole_content_of_inorganic_carbon_due_to_sedimentation", + "units": "mol m-2 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Downward Inorganic Carbon Flux at Ocean Bottom", + "comment": "Inorganic Carbon loss to sediments", + "dimensions": "longitude latitude time", + "out_name": "fric", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "fric", + "variableRootDD": "fric", + "branding_label": "tavg-u-hxy-sea", + "branded_variable_name": "fric_tavg-u-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.fric", + "cmip7_compound_name": "ocnBgchem.fric.tavg-u-hxy-sea.mon.GLB", + "uid": "baa0f14e-e5dd-11e5-8482-ac72891c3257" + }, + "ocnBgchem.frn.tavg-u-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "minus_tendency_of_ocean_mole_content_of_elemental_nitrogen_due_to_denitrification_and_sedimentation", + "units": "mol m-2 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Nitrogen Loss to Sediments and Through Denitrification", + "comment": "\"Content\" indicates a quantity per unit area. The specification of a physical process by the phrase due_to_process means that the quantity named is a single term in a sum of terms which together compose the general quantity named by omitting the phrase. 'Denitrification' is the conversion of nitrate into gaseous compounds such as nitric oxide, nitrous oxide and molecular nitrogen which are then emitted to the atmosphere. 'Sedimentation' is the sinking of particulate matter to the floor of a body of water. \"tendency_of_X\" means derivative of X with respect to time.", + "dimensions": "longitude latitude time", + "out_name": "frn", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "frn", + "variableRootDD": "frn", + "branding_label": "tavg-u-hxy-sea", + "branded_variable_name": "frn_tavg-u-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.frn", + "cmip7_compound_name": "ocnBgchem.frn.tavg-u-hxy-sea.mon.GLB", + "uid": "baa106c0-e5dd-11e5-8482-ac72891c3257" + }, + "ocnBgchem.froc.tavg-u-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "minus_tendency_of_ocean_mole_content_of_organic_carbon_due_to_sedimentation", + "units": "mol m-2 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Downward Organic Carbon Flux at Ocean Bottom", + "comment": "Organic Carbon loss to sediments", + "dimensions": "longitude latitude time", + "out_name": "froc", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "froc", + "variableRootDD": "froc", + "branding_label": "tavg-u-hxy-sea", + "branded_variable_name": "froc_tavg-u-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.froc", + "cmip7_compound_name": "ocnBgchem.froc.tavg-u-hxy-sea.mon.GLB", + "uid": "baa0f9b4-e5dd-11e5-8482-ac72891c3257" + }, + "ocnBgchem.fsfe.tavg-u-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "tendency_of_ocean_mole_content_of_iron_due_to_deposition_and_runoff_and_sediment_dissolution", + "units": "mol m-2 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Surface Downward Net Flux of Iron", + "comment": "Iron supply through deposition flux onto sea surface, runoff, coasts, sediments, etc", + "dimensions": "longitude latitude time", + "out_name": "fsfe", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "fsfe", + "variableRootDD": "fsfe", + "branding_label": "tavg-u-hxy-sea", + "branded_variable_name": "fsfe_tavg-u-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.fsfe", + "cmip7_compound_name": "ocnBgchem.fsfe.tavg-u-hxy-sea.mon.GLB", + "uid": "baa10aee-e5dd-11e5-8482-ac72891c3257" + }, + "ocnBgchem.fsn.tavg-u-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "tendency_of_ocean_mole_content_of_elemental_nitrogen_due_to_deposition_and_fixation_and_runoff", + "units": "mol m-2 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Surface Downward Net Flux of Nitrogen", + "comment": "Flux of nitrogen into the ocean due to deposition (sum of dry and wet deposition), fixation (the production of ammonia from nitrogen gas by diazotrophs) and runoff (liquid water which drains from land).", + "dimensions": "longitude latitude time", + "out_name": "fsn", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "fsn", + "variableRootDD": "fsn", + "branding_label": "tavg-u-hxy-sea", + "branded_variable_name": "fsn_tavg-u-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.fsn", + "cmip7_compound_name": "ocnBgchem.fsn.tavg-u-hxy-sea.mon.GLB", + "uid": "baa10292-e5dd-11e5-8482-ac72891c3257" + }, + "ocnBgchem.graz.tavg-ol-hxy-sea.mon.30S-90S": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "tendency_of_mole_concentration_of_particulate_organic_matter_expressed_as_carbon_in_sea_water_due_to_grazing_of_phytoplankton", + "units": "mol m-3 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Total Grazing of Phytoplankton by Zooplankton", + "comment": "Total grazing of phytoplankton by zooplankton defined as tendency of moles of carbon per cubic metre.", + "dimensions": "longitude latitude olevel time", + "out_name": "graz", + "type": "real", + "positive": "", + "spatial_shape": "XY-O", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "graz", + "variableRootDD": "graz", + "branding_label": "tavg-ol-hxy-sea", + "branded_variable_name": "graz_tavg-ol-hxy-sea", + "region": "30S-90S", + "cmip6_compound_name": "Omon.grazSouth30", + "cmip7_compound_name": "ocnBgchem.graz.tavg-ol-hxy-sea.mon.30S-90S", + "uid": "80ac318c-a698-11ef-914a-613c0433d878" + }, + "ocnBgchem.graz.tavg-ol-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "tendency_of_mole_concentration_of_particulate_organic_matter_expressed_as_carbon_in_sea_water_due_to_grazing_of_phytoplankton", + "units": "mol m-3 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Total Grazing of Phytoplankton by Zooplankton", + "comment": "Total grazing of phytoplankton by zooplankton defined as tendency of moles of carbon per cubic metre.", + "dimensions": "longitude latitude olevel time", + "out_name": "graz", + "type": "real", + "positive": "", + "spatial_shape": "XY-O", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "graz", + "variableRootDD": "graz", + "branding_label": "tavg-ol-hxy-sea", + "branded_variable_name": "graz_tavg-ol-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.graz", + "cmip7_compound_name": "ocnBgchem.graz.tavg-ol-hxy-sea.mon.GLB", + "uid": "baa00ab8-e5dd-11e5-8482-ac72891c3257" + }, + "ocnBgchem.icfriver.tavg-u-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "tendency_of_ocean_mole_content_of_inorganic_carbon_due_to_runoff_and_sediment_dissolution", + "units": "mol m-2 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Flux of Inorganic Carbon into Ocean Surface by Runoff", + "comment": "Inorganic Carbon supply to ocean through runoff (separate from gas exchange)", + "dimensions": "longitude latitude time", + "out_name": "icfriver", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "icfriver", + "variableRootDD": "icfriver", + "branding_label": "tavg-u-hxy-sea", + "branded_variable_name": "icfriver_tavg-u-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.icfriver", + "cmip7_compound_name": "ocnBgchem.icfriver.tavg-u-hxy-sea.mon.GLB", + "uid": "baa0ed2a-e5dd-11e5-8482-ac72891c3257" + }, + "ocnBgchem.intdic.tavg-u-hxy-sea.mon.30S-90S": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "ocean_mass_content_of_dissolved_inorganic_carbon", + "units": "kg m-2", + "cell_methods": "area: mean where sea depth: sum where sea (over entire ocean column) time: mean", + "cell_measures": "area: areacello", + "long_name": "Dissolved Inorganic Carbon Content", + "comment": "Vertically integrated DIC", + "dimensions": "longitude latitude time", + "out_name": "intdic", + "type": "real", + "positive": "", + "spatial_shape": "XY-int", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "intdic", + "variableRootDD": "intdic", + "branding_label": "tavg-u-hxy-sea", + "branded_variable_name": "intdic_tavg-u-hxy-sea", + "region": "30S-90S", + "cmip6_compound_name": "Omon.intdic", + "cmip7_compound_name": "ocnBgchem.intdic.tavg-u-hxy-sea.mon.30S-90S", + "uid": "c91e4b7c-c5e8-11e6-84e6-5404a60d96b5" + }, + "ocnBgchem.intdoc.tavg-u-hxy-sea.mon.30S-90S": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "ocean_mass_content_of_dissolved_organic_carbon", + "units": "kg m-2", + "cell_methods": "area: mean where sea depth: sum where sea (over entire ocean column) time: mean", + "cell_measures": "area: areacello", + "long_name": "Dissolved Organic Carbon Content", + "comment": "Vertically integrated DOC (explicit pools only)", + "dimensions": "longitude latitude time", + "out_name": "intdoc", + "type": "real", + "positive": "", + "spatial_shape": "XY-int", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "intdoc", + "variableRootDD": "intdoc", + "branding_label": "tavg-u-hxy-sea", + "branded_variable_name": "intdoc_tavg-u-hxy-sea", + "region": "30S-90S", + "cmip6_compound_name": "Omon.intdoc", + "cmip7_compound_name": "ocnBgchem.intdoc.tavg-u-hxy-sea.mon.30S-90S", + "uid": "c91e58f6-c5e8-11e6-84e6-5404a60d96b5" + }, + "ocnBgchem.intparag.tavg-u-hxy-sea.mon.30S-90S": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "tendency_of_ocean_mole_content_of_aragonite_expressed_as_carbon_due_to_biological_production", + "units": "mol m-2 s-1", + "cell_methods": "area: mean where sea depth: sum where sea (over entire ocean column) time: mean", + "cell_measures": "area: areacello", + "long_name": "Aragonite Production", + "comment": "Vertically integrated aragonite production", + "dimensions": "longitude latitude time", + "out_name": "intparag", + "type": "real", + "positive": "", + "spatial_shape": "XY-int", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "intparag", + "variableRootDD": "intparag", + "branding_label": "tavg-u-hxy-sea", + "branded_variable_name": "intparag_tavg-u-hxy-sea", + "region": "30S-90S", + "cmip6_compound_name": "Omon.intparag", + "cmip7_compound_name": "ocnBgchem.intparag.tavg-u-hxy-sea.mon.30S-90S", + "uid": "baa0999c-e5dd-11e5-8482-ac72891c3257" + }, + "ocnBgchem.intpbfe.tavg-u-hxy-sea.mon.30S-90S": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "tendency_of_ocean_mole_content_of_iron_due_to_biological_production", + "units": "mol m-2 s-1", + "cell_methods": "area: mean where sea depth: sum where sea (over entire ocean column) time: mean", + "cell_measures": "area: areacello", + "long_name": "Iron Production", + "comment": "Vertically integrated biogenic iron production", + "dimensions": "longitude latitude time", + "out_name": "intpbfe", + "type": "real", + "positive": "", + "spatial_shape": "XY-int", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "intpbfe", + "variableRootDD": "intpbfe", + "branding_label": "tavg-u-hxy-sea", + "branded_variable_name": "intpbfe_tavg-u-hxy-sea", + "region": "30S-90S", + "cmip6_compound_name": "Omon.intpbfe", + "cmip7_compound_name": "ocnBgchem.intpbfe.tavg-u-hxy-sea.mon.30S-90S", + "uid": "baa08984-e5dd-11e5-8482-ac72891c3257" + }, + "ocnBgchem.intpbn.tavg-u-hxy-sea.mon.30S-90S": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "tendency_of_ocean_mole_content_of_nitrogen_due_to_biological_production", + "units": "mol m-2 s-1", + "cell_methods": "area: mean where sea depth: sum where sea (over entire ocean column) time: mean", + "cell_measures": "area: areacello", + "long_name": "Nitrogen Production", + "comment": "Vertically integrated biogenic nitrogen production", + "dimensions": "longitude latitude time", + "out_name": "intpbn", + "type": "real", + "positive": "", + "spatial_shape": "XY-int", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "intpbn", + "variableRootDD": "intpbn", + "branding_label": "tavg-u-hxy-sea", + "branded_variable_name": "intpbn_tavg-u-hxy-sea", + "region": "30S-90S", + "cmip6_compound_name": "Omon.intpbn", + "cmip7_compound_name": "ocnBgchem.intpbn.tavg-u-hxy-sea.mon.30S-90S", + "uid": "baa07e58-e5dd-11e5-8482-ac72891c3257" + }, + "ocnBgchem.intpbp.tavg-u-hxy-sea.mon.30S-90S": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "tendency_of_ocean_mole_content_of_phosphorus_due_to_biological_production", + "units": "mol m-2 s-1", + "cell_methods": "area: mean where sea depth: sum where sea (over entire ocean column) time: mean", + "cell_measures": "area: areacello", + "long_name": "Phosphorus Production", + "comment": "Vertically integrated biogenic phosphorus production", + "dimensions": "longitude latitude time", + "out_name": "intpbp", + "type": "real", + "positive": "", + "spatial_shape": "XY-int", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "intpbp", + "variableRootDD": "intpbp", + "branding_label": "tavg-u-hxy-sea", + "branded_variable_name": "intpbp_tavg-u-hxy-sea", + "region": "30S-90S", + "cmip6_compound_name": "Omon.intpbp", + "cmip7_compound_name": "ocnBgchem.intpbp.tavg-u-hxy-sea.mon.30S-90S", + "uid": "baa08420-e5dd-11e5-8482-ac72891c3257" + }, + "ocnBgchem.intpbsi.tavg-u-hxy-sea.mon.30S-90S": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "tendency_of_ocean_mole_content_of_silicon_due_to_biological_production", + "units": "mol m-2 s-1", + "cell_methods": "area: mean where sea depth: sum where sea (over entire ocean column) time: mean", + "cell_measures": "area: areacello", + "long_name": "Silicon Production", + "comment": "Vertically integrated biogenic silica production", + "dimensions": "longitude latitude time", + "out_name": "intpbsi", + "type": "real", + "positive": "", + "spatial_shape": "XY-int", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "intpbsi", + "variableRootDD": "intpbsi", + "branding_label": "tavg-u-hxy-sea", + "branded_variable_name": "intpbsi_tavg-u-hxy-sea", + "region": "30S-90S", + "cmip6_compound_name": "Omon.intpbsi", + "cmip7_compound_name": "ocnBgchem.intpbsi.tavg-u-hxy-sea.mon.30S-90S", + "uid": "baa08f6a-e5dd-11e5-8482-ac72891c3257" + }, + "ocnBgchem.intpcalcite.tavg-u-hxy-sea.mon.30S-90S": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "tendency_of_ocean_mole_content_of_calcite_expressed_as_carbon_due_to_biological_production", + "units": "mol m-2 s-1", + "cell_methods": "area: mean where sea depth: sum where sea (over entire ocean column) time: mean", + "cell_measures": "area: areacello", + "long_name": "Calcite Production", + "comment": "Vertically integrated calcite production", + "dimensions": "longitude latitude time", + "out_name": "intpcalcite", + "type": "real", + "positive": "", + "spatial_shape": "XY-int", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "intpcalcite", + "variableRootDD": "intpcalcite", + "branding_label": "tavg-u-hxy-sea", + "branded_variable_name": "intpcalcite_tavg-u-hxy-sea", + "region": "30S-90S", + "cmip6_compound_name": "Omon.intpcalcite", + "cmip7_compound_name": "ocnBgchem.intpcalcite.tavg-u-hxy-sea.mon.30S-90S", + "uid": "baa0944c-e5dd-11e5-8482-ac72891c3257" + }, + "ocnBgchem.intpn2.tavg-u-hxy-sea.mon.30S-90S": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "tendency_of_ocean_mole_content_of_elemental_nitrogen_due_to_fixation", + "units": "mol m-2 s-1", + "cell_methods": "area: mean where sea depth: sum where sea (over entire ocean column) time: mean", + "cell_measures": "area: areacello", + "long_name": "Nitrogen Fixation Rate in Ocean", + "comment": "Vertically integrated nitrogen fixation", + "dimensions": "longitude latitude time", + "out_name": "intpn2", + "type": "real", + "positive": "", + "spatial_shape": "XY-int", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "intpn2", + "variableRootDD": "intpn2", + "branding_label": "tavg-u-hxy-sea", + "branded_variable_name": "intpn2_tavg-u-hxy-sea", + "region": "30S-90S", + "cmip6_compound_name": "Omon.intpn2", + "cmip7_compound_name": "ocnBgchem.intpn2.tavg-u-hxy-sea.mon.30S-90S", + "uid": "baa0fe00-e5dd-11e5-8482-ac72891c3257" + }, + "ocnBgchem.intpoc.tavg-u-hxy-sea.day.GLB": { + "frequency": "day", + "modeling_realm": "ocnBgchem", + "standard_name": "ocean_mass_content_of_particulate_organic_matter_expressed_as_carbon", + "units": "kg m-2", + "cell_methods": "area: mean where sea depth: sum where sea (over entire ocean column) time: mean", + "cell_measures": "area: areacello", + "long_name": "Particulate Organic Carbon Content", + "comment": "Vertically integrated POC", + "dimensions": "longitude latitude time", + "out_name": "intpoc", + "type": "real", + "positive": "", + "spatial_shape": "XY-int", + "temporal_shape": "time-intv", + "cmip6_table": "Oday", + "physical_parameter_name": "intpoc", + "variableRootDD": "intpoc", + "branding_label": "tavg-u-hxy-sea", + "branded_variable_name": "intpoc_tavg-u-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Oday.intpoc", + "cmip7_compound_name": "ocnBgchem.intpoc.tavg-u-hxy-sea.day.GLB", + "uid": "527f5cc6-8c97-11ef-944e-41a8eb05f654" + }, + "ocnBgchem.intpoc.tavg-u-hxy-sea.mon.30S-90S": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "ocean_mass_content_of_particulate_organic_matter_expressed_as_carbon", + "units": "kg m-2", + "cell_methods": "area: mean where sea depth: sum where sea (over entire ocean column) time: mean", + "cell_measures": "area: areacello", + "long_name": "Particulate Organic Carbon Content", + "comment": "Vertically integrated POC", + "dimensions": "longitude latitude time", + "out_name": "intpoc", + "type": "real", + "positive": "", + "spatial_shape": "XY-int", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "intpoc", + "variableRootDD": "intpoc", + "branding_label": "tavg-u-hxy-sea", + "branded_variable_name": "intpoc_tavg-u-hxy-sea", + "region": "30S-90S", + "cmip6_compound_name": "Omon.intpoc", + "cmip7_compound_name": "ocnBgchem.intpoc.tavg-u-hxy-sea.mon.30S-90S", + "uid": "baa0c37c-e5dd-11e5-8482-ac72891c3257" + }, + "ocnBgchem.intpp.tavg-u-hxy-sea.day.GLB": { + "frequency": "day", + "modeling_realm": "ocnBgchem", + "standard_name": "net_primary_mole_productivity_of_biomass_expressed_as_carbon_by_phytoplankton", + "units": "mol m-2 s-1", + "cell_methods": "area: mean where sea depth: sum where sea (over entire ocean column) time: mean", + "cell_measures": "area: areacello", + "long_name": "Primary Organic Carbon Production by All Types of Phytoplankton", + "comment": "Vertically integrated total primary (organic carbon) production by phytoplankton. This should equal the sum of intpdiat+intpphymisc, but those individual components may be unavailable in some models.", + "dimensions": "longitude latitude time", + "out_name": "intpp", + "type": "real", + "positive": "", + "spatial_shape": "XY-int", + "temporal_shape": "time-intv", + "cmip6_table": "Oday", + "physical_parameter_name": "intpp", + "variableRootDD": "intpp", + "branding_label": "tavg-u-hxy-sea", + "branded_variable_name": "intpp_tavg-u-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Oday.intpp", + "cmip7_compound_name": "ocnBgchem.intpp.tavg-u-hxy-sea.day.GLB", + "uid": "83bbfb87-7f07-11ef-9308-b1dd71e64bec" + }, + "ocnBgchem.intpp.tavg-u-hxy-sea.mon.30S-90S": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "net_primary_mole_productivity_of_biomass_expressed_as_carbon_by_phytoplankton", + "units": "mol m-2 s-1", + "cell_methods": "area: mean where sea depth: sum where sea (over entire ocean column) time: mean", + "cell_measures": "area: areacello", + "long_name": "Primary Organic Carbon Production by All Types of Phytoplankton", + "comment": "Vertically integrated total primary (organic carbon) production by phytoplankton. This should equal the sum of intpdiat+intpphymisc, but those individual components may be unavailable in some models.", + "dimensions": "longitude latitude time", + "out_name": "intpp", + "type": "real", + "positive": "", + "spatial_shape": "XY-int", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "intpp", + "variableRootDD": "intpp", + "branding_label": "tavg-u-hxy-sea", + "branded_variable_name": "intpp_tavg-u-hxy-sea", + "region": "30S-90S", + "cmip6_compound_name": "Omon.intppSouth30", + "cmip7_compound_name": "ocnBgchem.intpp.tavg-u-hxy-sea.mon.30S-90S", + "uid": "80ac3197-a698-11ef-914a-613c0433d878" + }, + "ocnBgchem.intpp.tavg-u-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "net_primary_mole_productivity_of_biomass_expressed_as_carbon_by_phytoplankton", + "units": "mol m-2 s-1", + "cell_methods": "area: mean where sea depth: sum where sea (over entire ocean column) time: mean", + "cell_measures": "area: areacello", + "long_name": "Primary Organic Carbon Production by All Types of Phytoplankton", + "comment": "Vertically integrated total primary (organic carbon) production by phytoplankton. This should equal the sum of intpdiat+intpphymisc, but those individual components may be unavailable in some models.", + "dimensions": "longitude latitude time", + "out_name": "intpp", + "type": "real", + "positive": "", + "spatial_shape": "XY-int", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "intpp", + "variableRootDD": "intpp", + "branding_label": "tavg-u-hxy-sea", + "branded_variable_name": "intpp_tavg-u-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.intpp", + "cmip7_compound_name": "ocnBgchem.intpp.tavg-u-hxy-sea.mon.GLB", + "uid": "baa054f0-e5dd-11e5-8482-ac72891c3257" + }, + "ocnBgchem.intppcalc.tavg-u-hxy-sea.mon.30S-90S": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "net_primary_mole_productivity_of_biomass_expressed_as_carbon_by_calcareous_phytoplankton", + "units": "mol m-2 s-1", + "cell_methods": "area: mean where sea depth: sum where sea (over entire ocean column) time: mean", + "cell_measures": "area: areacello", + "long_name": "Net Primary Mole Productivity of Carbon by Calcareous Phytoplankton", + "comment": "Vertically integrated primary (organic carbon) production by the calcareous phytoplankton component alone", + "dimensions": "longitude latitude time", + "out_name": "intppcalc", + "type": "real", + "positive": "", + "spatial_shape": "XY-int", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "intppcalc", + "variableRootDD": "intppcalc", + "branding_label": "tavg-u-hxy-sea", + "branded_variable_name": "intppcalc_tavg-u-hxy-sea", + "region": "30S-90S", + "cmip6_compound_name": "Omon.intppcalcSouth30", + "cmip7_compound_name": "ocnBgchem.intppcalc.tavg-u-hxy-sea.mon.30S-90S", + "uid": "80ac3198-a698-11ef-914a-613c0433d878" + }, + "ocnBgchem.intppcalc.tavg-u-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "net_primary_mole_productivity_of_biomass_expressed_as_carbon_by_calcareous_phytoplankton", + "units": "mol m-2 s-1", + "cell_methods": "area: mean where sea depth: sum where sea (over entire ocean column) time: mean", + "cell_measures": "area: areacello", + "long_name": "Net Primary Mole Productivity of Carbon by Calcareous Phytoplankton", + "comment": "Vertically integrated primary (organic carbon) production by the calcareous phytoplankton component alone", + "dimensions": "longitude latitude time", + "out_name": "intppcalc", + "type": "real", + "positive": "", + "spatial_shape": "XY-int", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "intppcalc", + "variableRootDD": "intppcalc", + "branding_label": "tavg-u-hxy-sea", + "branded_variable_name": "intppcalc_tavg-u-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.intppcalc", + "cmip7_compound_name": "ocnBgchem.intppcalc.tavg-u-hxy-sea.mon.GLB", + "uid": "baa069c2-e5dd-11e5-8482-ac72891c3257" + }, + "ocnBgchem.intppdiat.tavg-u-hxy-sea.mon.30S-90S": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "net_primary_mole_productivity_of_biomass_expressed_as_carbon_by_diatoms", + "units": "mol m-2 s-1", + "cell_methods": "area: mean where sea depth: sum where sea (over entire ocean column) time: mean", + "cell_measures": "area: areacello", + "long_name": "Net Primary Organic Carbon Production by Diatoms", + "comment": "Vertically integrated primary (organic carbon) production by the diatom phytoplankton component alone", + "dimensions": "longitude latitude time", + "out_name": "intppdiat", + "type": "real", + "positive": "", + "spatial_shape": "XY-int", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "intppdiat", + "variableRootDD": "intppdiat", + "branding_label": "tavg-u-hxy-sea", + "branded_variable_name": "intppdiat_tavg-u-hxy-sea", + "region": "30S-90S", + "cmip6_compound_name": "Omon.intppdiatSouth30", + "cmip7_compound_name": "ocnBgchem.intppdiat.tavg-u-hxy-sea.mon.30S-90S", + "uid": "80ac3199-a698-11ef-914a-613c0433d878" + }, + "ocnBgchem.intppdiat.tavg-u-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "net_primary_mole_productivity_of_biomass_expressed_as_carbon_by_diatoms", + "units": "mol m-2 s-1", + "cell_methods": "area: mean where sea depth: sum where sea (over entire ocean column) time: mean", + "cell_measures": "area: areacello", + "long_name": "Net Primary Organic Carbon Production by Diatoms", + "comment": "Vertically integrated primary (organic carbon) production by the diatom phytoplankton component alone", + "dimensions": "longitude latitude time", + "out_name": "intppdiat", + "type": "real", + "positive": "", + "spatial_shape": "XY-int", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "intppdiat", + "variableRootDD": "intppdiat", + "branding_label": "tavg-u-hxy-sea", + "branded_variable_name": "intppdiat_tavg-u-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.intppdiat", + "cmip7_compound_name": "ocnBgchem.intppdiat.tavg-u-hxy-sea.mon.GLB", + "uid": "baa05d2e-e5dd-11e5-8482-ac72891c3257" + }, + "ocnBgchem.intppdiaz.tavg-u-hxy-sea.mon.30S-90S": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "net_primary_mole_productivity_of_biomass_expressed_as_carbon_by_diazotrophic_phytoplankton", + "units": "mol m-2 s-1", + "cell_methods": "area: mean where sea depth: sum where sea (over entire ocean column) time: mean", + "cell_measures": "area: areacello", + "long_name": "Net Primary Mole Productivity of Carbon by Diazotrophs", + "comment": "Vertically integrated primary (organic carbon) production by the diazotrophs alone", + "dimensions": "longitude latitude time", + "out_name": "intppdiaz", + "type": "real", + "positive": "", + "spatial_shape": "XY-int", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "intppdiaz", + "variableRootDD": "intppdiaz", + "branding_label": "tavg-u-hxy-sea", + "branded_variable_name": "intppdiaz_tavg-u-hxy-sea", + "region": "30S-90S", + "cmip6_compound_name": "Omon.intppdiazSouth30", + "cmip7_compound_name": "ocnBgchem.intppdiaz.tavg-u-hxy-sea.mon.30S-90S", + "uid": "80ac319a-a698-11ef-914a-613c0433d878" + }, + "ocnBgchem.intppdiaz.tavg-u-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "net_primary_mole_productivity_of_biomass_expressed_as_carbon_by_diazotrophic_phytoplankton", + "units": "mol m-2 s-1", + "cell_methods": "area: mean where sea depth: sum where sea (over entire ocean column) time: mean", + "cell_measures": "area: areacello", + "long_name": "Net Primary Mole Productivity of Carbon by Diazotrophs", + "comment": "Vertically integrated primary (organic carbon) production by the diazotrophs alone", + "dimensions": "longitude latitude time", + "out_name": "intppdiaz", + "type": "real", + "positive": "", + "spatial_shape": "XY-int", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "intppdiaz", + "variableRootDD": "intppdiaz", + "branding_label": "tavg-u-hxy-sea", + "branded_variable_name": "intppdiaz_tavg-u-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.intppdiaz", + "cmip7_compound_name": "ocnBgchem.intppdiaz.tavg-u-hxy-sea.mon.GLB", + "uid": "baa063d2-e5dd-11e5-8482-ac72891c3257" + }, + "ocnBgchem.intppmisc.tavg-u-hxy-sea.mon.30S-90S": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "net_primary_mole_productivity_of_biomass_expressed_as_carbon_by_miscellaneous_phytoplankton", + "units": "mol m-2 s-1", + "cell_methods": "area: mean where sea depth: sum where sea (over entire ocean column) time: mean", + "cell_measures": "area: areacello", + "long_name": "Net Primary Organic Carbon Production by Other Phytoplankton", + "comment": "Vertically integrated total primary (organic carbon) production by other phytoplankton components alone", + "dimensions": "longitude latitude time", + "out_name": "intppmisc", + "type": "real", + "positive": "", + "spatial_shape": "XY-int", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "intppmisc", + "variableRootDD": "intppmisc", + "branding_label": "tavg-u-hxy-sea", + "branded_variable_name": "intppmisc_tavg-u-hxy-sea", + "region": "30S-90S", + "cmip6_compound_name": "Omon.intppmiscSouth30", + "cmip7_compound_name": "ocnBgchem.intppmisc.tavg-u-hxy-sea.mon.30S-90S", + "uid": "80ac319b-a698-11ef-914a-613c0433d878" + }, + "ocnBgchem.intppmisc.tavg-u-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "net_primary_mole_productivity_of_biomass_expressed_as_carbon_by_miscellaneous_phytoplankton", + "units": "mol m-2 s-1", + "cell_methods": "area: mean where sea depth: sum where sea (over entire ocean column) time: mean", + "cell_measures": "area: areacello", + "long_name": "Net Primary Organic Carbon Production by Other Phytoplankton", + "comment": "Vertically integrated total primary (organic carbon) production by other phytoplankton components alone", + "dimensions": "longitude latitude time", + "out_name": "intppmisc", + "type": "real", + "positive": "", + "spatial_shape": "XY-int", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "intppmisc", + "variableRootDD": "intppmisc", + "branding_label": "tavg-u-hxy-sea", + "branded_variable_name": "intppmisc_tavg-u-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.intppmisc", + "cmip7_compound_name": "ocnBgchem.intppmisc.tavg-u-hxy-sea.mon.GLB", + "uid": "baa079e4-e5dd-11e5-8482-ac72891c3257" + }, + "ocnBgchem.intppnano.tavg-u-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "net_primary_mole_productivity_of_biomass_expressed_as_carbon_by_nanophytoplankton", + "units": "mol m-2 s-1", + "cell_methods": "area: mean where sea depth: sum where sea (over entire ocean column) time: mean", + "cell_measures": "area: areacello", + "long_name": "Net Primary Organic Carbon Production by Nanophytoplankton", + "comment": "Vertically integrated total primary (organic carbon) production by nanophytoplankton.", + "dimensions": "longitude latitude time", + "out_name": "intppnano", + "type": "real", + "positive": "", + "spatial_shape": "XY-int", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "intppnano", + "variableRootDD": "intppnano", + "branding_label": "tavg-u-hxy-sea", + "branded_variable_name": "intppnano_tavg-u-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.intppnano", + "cmip7_compound_name": "ocnBgchem.intppnano.tavg-u-hxy-sea.mon.GLB", + "uid": "83bbfb4f-7f07-11ef-9308-b1dd71e64bec" + }, + "ocnBgchem.intppnitrate.tavg-u-hxy-sea.mon.30S-90S": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "net_primary_mole_productivity_of_biomass_expressed_as_carbon_due_to_nitrate_utilization", + "units": "mol m-2 s-1", + "cell_methods": "area: mean where sea depth: sum where sea (over entire ocean column) time: mean", + "cell_measures": "area: areacello", + "long_name": "Primary Organic Carbon Production by Phytoplankton Based on Nitrate Uptake Alone", + "comment": "Vertically integrated primary (organic carbon) production by phytoplankton based on nitrate uptake alone", + "dimensions": "longitude latitude time", + "out_name": "intppnitrate", + "type": "real", + "positive": "", + "spatial_shape": "XY-int", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "intppnitrate", + "variableRootDD": "intppnitrate", + "branding_label": "tavg-u-hxy-sea", + "branded_variable_name": "intppnitrate_tavg-u-hxy-sea", + "region": "30S-90S", + "cmip6_compound_name": "Omon.intppnitrateSouth30", + "cmip7_compound_name": "ocnBgchem.intppnitrate.tavg-u-hxy-sea.mon.30S-90S", + "uid": "80ac319c-a698-11ef-914a-613c0433d878" + }, + "ocnBgchem.intppnitrate.tavg-u-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "net_primary_mole_productivity_of_biomass_expressed_as_carbon_due_to_nitrate_utilization", + "units": "mol m-2 s-1", + "cell_methods": "area: mean where sea depth: sum where sea (over entire ocean column) time: mean", + "cell_measures": "area: areacello", + "long_name": "Primary Organic Carbon Production by Phytoplankton Based on Nitrate Uptake Alone", + "comment": "Vertically integrated primary (organic carbon) production by phytoplankton based on nitrate uptake alone", + "dimensions": "longitude latitude time", + "out_name": "intppnitrate", + "type": "real", + "positive": "", + "spatial_shape": "XY-int", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "intppnitrate", + "variableRootDD": "intppnitrate", + "branding_label": "tavg-u-hxy-sea", + "branded_variable_name": "intppnitrate_tavg-u-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.intppnitrate", + "cmip7_compound_name": "ocnBgchem.intppnitrate.tavg-u-hxy-sea.mon.GLB", + "uid": "c91d722e-c5e8-11e6-84e6-5404a60d96b5" + }, + "ocnBgchem.intpppico.tavg-u-hxy-sea.mon.30S-90S": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "net_primary_mole_productivity_of_biomass_expressed_as_carbon_by_picophytoplankton", + "units": "mol m-2 s-1", + "cell_methods": "area: mean where sea depth: sum where sea (over entire ocean column) time: mean", + "cell_measures": "area: areacello", + "long_name": "Net Primary Mole Productivity of Carbon by Picophytoplankton", + "comment": "Vertically integrated primary (organic carbon) production by the picophytoplankton component alone", + "dimensions": "longitude latitude time", + "out_name": "intpppico", + "type": "real", + "positive": "", + "spatial_shape": "XY-int", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "intpppico", + "variableRootDD": "intpppico", + "branding_label": "tavg-u-hxy-sea", + "branded_variable_name": "intpppico_tavg-u-hxy-sea", + "region": "30S-90S", + "cmip6_compound_name": "Omon.intpppicoSouth30", + "cmip7_compound_name": "ocnBgchem.intpppico.tavg-u-hxy-sea.mon.30S-90S", + "uid": "80ac319d-a698-11ef-914a-613c0433d878" + }, + "ocnBgchem.intpppico.tavg-u-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "net_primary_mole_productivity_of_biomass_expressed_as_carbon_by_picophytoplankton", + "units": "mol m-2 s-1", + "cell_methods": "area: mean where sea depth: sum where sea (over entire ocean column) time: mean", + "cell_measures": "area: areacello", + "long_name": "Net Primary Mole Productivity of Carbon by Picophytoplankton", + "comment": "Vertically integrated primary (organic carbon) production by the picophytoplankton component alone", + "dimensions": "longitude latitude time", + "out_name": "intpppico", + "type": "real", + "positive": "", + "spatial_shape": "XY-int", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "intpppico", + "variableRootDD": "intpppico", + "branding_label": "tavg-u-hxy-sea", + "branded_variable_name": "intpppico_tavg-u-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.intpppico", + "cmip7_compound_name": "ocnBgchem.intpppico.tavg-u-hxy-sea.mon.GLB", + "uid": "baa0749e-e5dd-11e5-8482-ac72891c3257" + }, + "ocnBgchem.limfecalc.tavg-u-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "iron_growth_limitation_of_calcareous_phytoplankton", + "units": "1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Iron Limitation of Calcareous Phytoplankton", + "comment": "\"Calcareous phytoplankton\" are phytoplankton that produce calcite. Calcite is a mineral that is a polymorph of calcium carbonate. The chemical formula of calcite is CaCO3. Phytoplankton are algae that grow where there is sufficient light to support photosynthesis. \"Iron growth limitation\" means the ratio of the growth rate of a species population in the environment (where there is a finite availability of iron) to the theoretical growth rate if there were no such limit on iron availability.", + "dimensions": "longitude latitude time", + "out_name": "limfecalc", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "limfecalc", + "variableRootDD": "limfecalc", + "branding_label": "tavg-u-hxy-sea", + "branded_variable_name": "limfecalc_tavg-u-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.limfecalc", + "cmip7_compound_name": "ocnBgchem.limfecalc.tavg-u-hxy-sea.mon.GLB", + "uid": "baa0449c-e5dd-11e5-8482-ac72891c3257" + }, + "ocnBgchem.limfediat.tavg-u-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "iron_growth_limitation_of_diatoms", + "units": "1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Iron Limitation of Diatoms", + "comment": "Diatoms are phytoplankton with an external skeleton made of silica. Phytoplankton are algae that grow where there is sufficient light to support photosynthesis. \"Iron growth limitation\" means the ratio of the growth rate of a species population in the environment (where there is a finite availability of iron) to the theoretical growth rate if there were no such limit on iron availability.", + "dimensions": "longitude latitude time", + "out_name": "limfediat", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "limfediat", + "variableRootDD": "limfediat", + "branding_label": "tavg-u-hxy-sea", + "branded_variable_name": "limfediat_tavg-u-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.limfediat", + "cmip7_compound_name": "ocnBgchem.limfediat.tavg-u-hxy-sea.mon.GLB", + "uid": "baa03c54-e5dd-11e5-8482-ac72891c3257" + }, + "ocnBgchem.limfediaz.tavg-u-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "iron_growth_limitation_of_diazotrophic_phytoplankton", + "units": "1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Iron Limitation of Diazotrophs", + "comment": "In ocean modelling, diazotrophs are phytoplankton of the phylum cyanobacteria distinct from other phytoplankton groups in their ability to fix nitrogen gas in addition to nitrate and ammonium. Phytoplankton are algae that grow where there is sufficient light to support photosynthesis. \"Iron growth limitation\" means the ratio of the growth rate of a species population in the environment (where there is a finite availability of iron) to the theoretical growth rate if there were no such limit on iron availability.", + "dimensions": "longitude latitude time", + "out_name": "limfediaz", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "limfediaz", + "variableRootDD": "limfediaz", + "branding_label": "tavg-u-hxy-sea", + "branded_variable_name": "limfediaz_tavg-u-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.limfediaz", + "cmip7_compound_name": "ocnBgchem.limfediaz.tavg-u-hxy-sea.mon.GLB", + "uid": "baa0406e-e5dd-11e5-8482-ac72891c3257" + }, + "ocnBgchem.limfemisc.tavg-u-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "iron_growth_limitation_of_miscellaneous_phytoplankton", + "units": "1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Iron Limitation of Other Phytoplankton", + "comment": "Phytoplankton are algae that grow where there is sufficient light to support photosynthesis. \"Miscellaneous phytoplankton\" are all those phytoplankton that are not diatoms, diazotrophs, calcareous phytoplankton, picophytoplankton or other separately named components of the phytoplankton population. \"Iron growth limitation\" means the ratio of the growth rate of a species population in the environment (where there is a finite availability of iron) to the theoretical growth rate if there were no such limit on iron availability.", + "dimensions": "longitude latitude time", + "out_name": "limfemisc", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "limfemisc", + "variableRootDD": "limfemisc", + "branding_label": "tavg-u-hxy-sea", + "branded_variable_name": "limfemisc_tavg-u-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.limfemisc", + "cmip7_compound_name": "ocnBgchem.limfemisc.tavg-u-hxy-sea.mon.GLB", + "uid": "baa04cda-e5dd-11e5-8482-ac72891c3257" + }, + "ocnBgchem.limfepico.tavg-u-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "iron_growth_limitation_of_picophytoplankton", + "units": "1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Iron Limitation of Picophytoplankton", + "comment": "Picophytoplankton are phytoplankton of less than 2 micrometers in size. Phytoplankton are algae that grow where there is sufficient light to support photosynthesis. \"Iron growth limitation\" means the ratio of the growth rate of a species population in the environment (where there is a finite availability of iron) to the theoretical growth rate if there were no such limit on iron availability.", + "dimensions": "longitude latitude time", + "out_name": "limfepico", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "limfepico", + "variableRootDD": "limfepico", + "branding_label": "tavg-u-hxy-sea", + "branded_variable_name": "limfepico_tavg-u-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.limfepico", + "cmip7_compound_name": "ocnBgchem.limfepico.tavg-u-hxy-sea.mon.GLB", + "uid": "baa048b6-e5dd-11e5-8482-ac72891c3257" + }, + "ocnBgchem.limirrcalc.tavg-u-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "growth_limitation_of_calcareous_phytoplankton_due_to_solar_irradiance", + "units": "1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Irradiance Limitation of Calcareous Phytoplankton", + "comment": "Growth limitation of calcareous phytoplankton due to solar irradiance. \"Growth limitation due to solar irradiance\" means the ratio of the growth rate of a species population in the environment (where the amount of sunlight reaching a location may be limited) to the theoretical growth rate if there were no such limit on solar irradiance.", + "dimensions": "longitude latitude time", + "out_name": "limirrcalc", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "limirrcalc", + "variableRootDD": "limirrcalc", + "branding_label": "tavg-u-hxy-sea", + "branded_variable_name": "limirrcalc_tavg-u-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.limirrcalc", + "cmip7_compound_name": "ocnBgchem.limirrcalc.tavg-u-hxy-sea.mon.GLB", + "uid": "baa02ff2-e5dd-11e5-8482-ac72891c3257" + }, + "ocnBgchem.limirrdiat.tavg-u-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "growth_limitation_of_diatoms_due_to_solar_irradiance", + "units": "1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Irradiance Limitation of Diatoms", + "comment": "Growth limitation of diatoms due to solar irradiance. \"Growth limitation due to solar irradiance\" means the ratio of the growth rate of a species population in the environment (where the amount of sunlight reaching a location may be limited) to the theoretical growth rate if there were no such limit on solar irradiance.", + "dimensions": "longitude latitude time", + "out_name": "limirrdiat", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "limirrdiat", + "variableRootDD": "limirrdiat", + "branding_label": "tavg-u-hxy-sea", + "branded_variable_name": "limirrdiat_tavg-u-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.limirrdiat", + "cmip7_compound_name": "ocnBgchem.limirrdiat.tavg-u-hxy-sea.mon.GLB", + "uid": "baa027a0-e5dd-11e5-8482-ac72891c3257" + }, + "ocnBgchem.limirrdiaz.tavg-u-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "growth_limitation_of_diazotrophic_phytoplankton_due_to_solar_irradiance", + "units": "1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Irradiance Limitation of Diazotrophs", + "comment": "Growth limitation of diazotrophs due to solar irradiance. \"Growth limitation due to solar irradiance\" means the ratio of the growth rate of a species population in the environment (where the amount of sunlight reaching a location may be limited) to the theoretical growth rate if there were no such limit on solar irradiance.", + "dimensions": "longitude latitude time", + "out_name": "limirrdiaz", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "limirrdiaz", + "variableRootDD": "limirrdiaz", + "branding_label": "tavg-u-hxy-sea", + "branded_variable_name": "limirrdiaz_tavg-u-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.limirrdiaz", + "cmip7_compound_name": "ocnBgchem.limirrdiaz.tavg-u-hxy-sea.mon.GLB", + "uid": "baa02bc4-e5dd-11e5-8482-ac72891c3257" + }, + "ocnBgchem.limirrmisc.tavg-u-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "growth_limitation_of_miscellaneous_phytoplankton_due_to_solar_irradiance", + "units": "1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Irradiance Limitation of Other Phytoplankton", + "comment": "Growth limitation of miscellaneous phytoplankton due to solar irradiance. \"Growth limitation due to solar irradiance\" means the ratio of the growth rate of a species population in the environment (where the amount of sunlight reaching a location may be limited) to the theoretical growth rate if there were no such limit on solar irradiance.", + "dimensions": "longitude latitude time", + "out_name": "limirrmisc", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "limirrmisc", + "variableRootDD": "limirrmisc", + "branding_label": "tavg-u-hxy-sea", + "branded_variable_name": "limirrmisc_tavg-u-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.limirrmisc", + "cmip7_compound_name": "ocnBgchem.limirrmisc.tavg-u-hxy-sea.mon.GLB", + "uid": "baa03826-e5dd-11e5-8482-ac72891c3257" + }, + "ocnBgchem.limirrpico.tavg-u-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "growth_limitation_of_picophytoplankton_due_to_solar_irradiance", + "units": "1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Irradiance Limitation of Picophytoplankton", + "comment": "Growth limitation of picophytoplankton due to solar irradiance. \"Growth limitation due to solar irradiance\" means the ratio of the growth rate of a species population in the environment (where the amount of sunlight reaching a location may be limited) to the theoretical growth rate if there were no such limit on solar irradiance.", + "dimensions": "longitude latitude time", + "out_name": "limirrpico", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "limirrpico", + "variableRootDD": "limirrpico", + "branding_label": "tavg-u-hxy-sea", + "branded_variable_name": "limirrpico_tavg-u-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.limirrpico", + "cmip7_compound_name": "ocnBgchem.limirrpico.tavg-u-hxy-sea.mon.GLB", + "uid": "baa0340c-e5dd-11e5-8482-ac72891c3257" + }, + "ocnBgchem.limncalc.tavg-u-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "nitrogen_growth_limitation_of_calcareous_phytoplankton", + "units": "1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Nitrogen Limitation of Calcareous Phytoplankton", + "comment": "\"Calcareous phytoplankton\" are phytoplankton that produce calcite. Calcite is a mineral that is a polymorph of calcium carbonate. The chemical formula of calcite is CaCO3. Phytoplankton are algae that grow where there is sufficient light to support photosynthesis. \"Nitrogen growth limitation\" means the ratio of the growth rate of a species population in the environment (where there is a finite availability of nitrogen) to the theoretical growth rate if there were no such limit on nitrogen availability.", + "dimensions": "longitude latitude time", + "out_name": "limncalc", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "limncalc", + "variableRootDD": "limncalc", + "branding_label": "tavg-u-hxy-sea", + "branded_variable_name": "limncalc_tavg-u-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.limncalc", + "cmip7_compound_name": "ocnBgchem.limncalc.tavg-u-hxy-sea.mon.GLB", + "uid": "baa01b3e-e5dd-11e5-8482-ac72891c3257" + }, + "ocnBgchem.limndiat.tavg-u-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "nitrogen_growth_limitation_of_diatoms", + "units": "1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Nitrogen Limitation of Diatoms", + "comment": "Diatoms are phytoplankton with an external skeleton made of silica. Phytoplankton are algae that grow where there is sufficient light to support photosynthesis. \"Nitrogen growth limitation\" means the ratio of the growth rate of a species population in the environment (where there is a finite availability of nitrogen) to the theoretical growth rate if there were no such limit on nitrogen availability.", + "dimensions": "longitude latitude time", + "out_name": "limndiat", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "limndiat", + "variableRootDD": "limndiat", + "branding_label": "tavg-u-hxy-sea", + "branded_variable_name": "limndiat_tavg-u-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.limndiat", + "cmip7_compound_name": "ocnBgchem.limndiat.tavg-u-hxy-sea.mon.GLB", + "uid": "baa01300-e5dd-11e5-8482-ac72891c3257" + }, + "ocnBgchem.limndiaz.tavg-u-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "nitrogen_growth_limitation_of_diazotrophic_phytoplankton", + "units": "1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Nitrogen Limitation of Diazotrophs", + "comment": "In ocean modelling, diazotrophs are phytoplankton of the phylum cyanobacteria distinct from other phytoplankton groups in their ability to fix nitrogen gas in addition to nitrate and ammonium. Phytoplankton are algae that grow where there is sufficient light to support photosynthesis. \"Nitrogen growth limitation\" means the ratio of the growth rate of a species population in the environment (where there is a finite availability of nitrogen) to the theoretical growth rate if there were no such limit on nitrogen availability.", + "dimensions": "longitude latitude time", + "out_name": "limndiaz", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "limndiaz", + "variableRootDD": "limndiaz", + "branding_label": "tavg-u-hxy-sea", + "branded_variable_name": "limndiaz_tavg-u-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.limndiaz", + "cmip7_compound_name": "ocnBgchem.limndiaz.tavg-u-hxy-sea.mon.GLB", + "uid": "baa01724-e5dd-11e5-8482-ac72891c3257" + }, + "ocnBgchem.limnmisc.tavg-u-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "nitrogen_growth_limitation_of_miscellaneous_phytoplankton", + "units": "1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Nitrogen Limitation of Other Phytoplankton", + "comment": "Phytoplankton are algae that grow where there is sufficient light to support photosynthesis. \"Miscellaneous phytoplankton\" are all those phytoplankton that are not diatoms, diazotrophs, calcareous phytoplankton, picophytoplankton or other separately named components of the phytoplankton population. \"Nitrogen growth limitation\" means the ratio of the growth rate of a species population in the environment (where there is a finite availability of nitrogen) to the theoretical growth rate if there were no such limit on nitrogen availability.", + "dimensions": "longitude latitude time", + "out_name": "limnmisc", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "limnmisc", + "variableRootDD": "limnmisc", + "branding_label": "tavg-u-hxy-sea", + "branded_variable_name": "limnmisc_tavg-u-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.limnmisc", + "cmip7_compound_name": "ocnBgchem.limnmisc.tavg-u-hxy-sea.mon.GLB", + "uid": "baa0237c-e5dd-11e5-8482-ac72891c3257" + }, + "ocnBgchem.limnpico.tavg-u-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "nitrogen_growth_limitation_of_picophytoplankton", + "units": "1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Nitrogen Limitation of Picophytoplankton", + "comment": "Picophytoplankton are phytoplankton of less than 2 micrometers in size. Phytoplankton are algae that grow where there is sufficient light to support photosynthesis. \"Nitrogen growth limitation\" means the ratio of the growth rate of a species population in the environment (where there is a finite availability of nitrogen) to the theoretical growth rate if there were no such limit on nitrogen availability.", + "dimensions": "longitude latitude time", + "out_name": "limnpico", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "limnpico", + "variableRootDD": "limnpico", + "branding_label": "tavg-u-hxy-sea", + "branded_variable_name": "limnpico_tavg-u-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.limnpico", + "cmip7_compound_name": "ocnBgchem.limnpico.tavg-u-hxy-sea.mon.GLB", + "uid": "baa01f62-e5dd-11e5-8482-ac72891c3257" + }, + "ocnBgchem.nh4.tavg-d0m-hxy-sea.mon.30S-90S": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_ammonium_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Surface Dissolved Ammonium Concentration", + "comment": "Mole concentration means moles (amount of substance) per unit volume and is used in the construction mole_concentration_of_X_in_Y, where X is a material constituent of Y.", + "dimensions": "longitude latitude time depth0m", + "out_name": "nh4os", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "nh4os", + "variableRootDD": "nh4", + "branding_label": "tavg-d0m-hxy-sea", + "branded_variable_name": "nh4_tavg-d0m-hxy-sea", + "region": "30S-90S", + "cmip6_compound_name": "Omon.nh4os", + "cmip7_compound_name": "ocnBgchem.nh4.tavg-d0m-hxy-sea.mon.30S-90S", + "uid": "c9192462-c5e8-11e6-84e6-5404a60d96b5" + }, + "ocnBgchem.nh4.tavg-ol-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_ammonium_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Dissolved Ammonium Concentration", + "comment": "Mole concentration means moles (amount of substance) per unit volume and is used in the construction mole_concentration_of_X_in_Y, where X is a material constituent of Y.", + "dimensions": "longitude latitude olevel time", + "out_name": "nh4", + "type": "real", + "positive": "", + "spatial_shape": "XY-O", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "nh4", + "variableRootDD": "nh4", + "branding_label": "tavg-ol-hxy-sea", + "branded_variable_name": "nh4_tavg-ol-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.nh4", + "cmip7_compound_name": "ocnBgchem.nh4.tavg-ol-hxy-sea.mon.GLB", + "uid": "ba9fa6b8-e5dd-11e5-8482-ac72891c3257" + }, + "ocnBgchem.no3.tavg-d0m-hxy-sea.mon.30S-90S": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_nitrate_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Surface Dissolved Nitrate Concentration", + "comment": "Mole concentration means moles (amount of substance) per unit volume and is used in the construction mole_concentration_of_X_in_Y, where X is a material constituent of Y.", + "dimensions": "longitude latitude time depth0m", + "out_name": "no3os", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "no3os", + "variableRootDD": "no3", + "branding_label": "tavg-d0m-hxy-sea", + "branded_variable_name": "no3_tavg-d0m-hxy-sea", + "region": "30S-90S", + "cmip6_compound_name": "Omon.no3osSouth30", + "cmip7_compound_name": "ocnBgchem.no3.tavg-d0m-hxy-sea.mon.30S-90S", + "uid": "80ac31ac-a698-11ef-914a-613c0433d878" + }, + "ocnBgchem.no3.tavg-d0m-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_nitrate_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Surface Dissolved Nitrate Concentration", + "comment": "Mole concentration means moles (amount of substance) per unit volume and is used in the construction mole_concentration_of_X_in_Y, where X is a material constituent of Y.", + "dimensions": "longitude latitude time depth0m", + "out_name": "no3os", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "no3os", + "variableRootDD": "no3", + "branding_label": "tavg-d0m-hxy-sea", + "branded_variable_name": "no3_tavg-d0m-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.no3os", + "cmip7_compound_name": "ocnBgchem.no3.tavg-d0m-hxy-sea.mon.GLB", + "uid": "c91915f8-c5e8-11e6-84e6-5404a60d96b5" + }, + "ocnBgchem.no3.tavg-ol-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_nitrate_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Dissolved Nitrate Concentration", + "comment": "Mole concentration means moles (amount of substance) per unit volume and is used in the construction mole_concentration_of_X_in_Y, where X is a material constituent of Y.", + "dimensions": "longitude latitude olevel time", + "out_name": "no3", + "type": "real", + "positive": "", + "spatial_shape": "XY-O", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "no3", + "variableRootDD": "no3", + "branding_label": "tavg-ol-hxy-sea", + "branded_variable_name": "no3_tavg-ol-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.no3", + "cmip7_compound_name": "ocnBgchem.no3.tavg-ol-hxy-sea.mon.GLB", + "uid": "ba9fa29e-e5dd-11e5-8482-ac72891c3257" + }, + "ocnBgchem.o2.tavg-d0m-hxy-sea.day.GLB": { + "frequency": "day", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_dissolved_molecular_oxygen_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Surface Dissolved Oxygen Concentration", + "comment": "Near surface 'Mole concentration' means number of moles per unit volume, also called \"molarity\", and is used in the construction mole_concentration_of_X_in_Y, where X is a material constituent of Y. A chemical or biological species denoted by X may be described by a single term such as 'nitrogen' or a phrase such as 'nox_expressed_as_nitrogen'. The chemical formula for molecular oxygen is O2.", + "dimensions": "longitude latitude time depth0m", + "out_name": "o2os", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Oday", + "physical_parameter_name": "o2os", + "variableRootDD": "o2", + "branding_label": "tavg-d0m-hxy-sea", + "branded_variable_name": "o2_tavg-d0m-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Oday.o2os", + "cmip7_compound_name": "ocnBgchem.o2.tavg-d0m-hxy-sea.day.GLB", + "uid": "83bbfb7d-7f07-11ef-9308-b1dd71e64bec" + }, + "ocnBgchem.o2.tavg-d0m-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_dissolved_molecular_oxygen_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Surface Dissolved Oxygen Concentration", + "comment": "'Mole concentration' means number of moles per unit volume, also called \"molarity\", and is used in the construction mole_concentration_of_X_in_Y, where X is a material constituent of Y. A chemical or biological species denoted by X may be described by a single term such as 'nitrogen' or a phrase such as 'nox_expressed_as_nitrogen'.", + "dimensions": "longitude latitude time depth0m", + "out_name": "o2os", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "o2os", + "variableRootDD": "o2", + "branding_label": "tavg-d0m-hxy-sea", + "branded_variable_name": "o2_tavg-d0m-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.o2os", + "cmip7_compound_name": "ocnBgchem.o2.tavg-d0m-hxy-sea.mon.GLB", + "uid": "c918f7d0-c5e8-11e6-84e6-5404a60d96b5" + }, + "ocnBgchem.o2.tavg-ol-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_dissolved_molecular_oxygen_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Dissolved Oxygen Concentration", + "comment": "'Mole concentration' means number of moles per unit volume, also called \"molarity\", and is used in the construction mole_concentration_of_X_in_Y, where X is a material constituent of Y. A chemical or biological species denoted by X may be described by a single term such as 'nitrogen' or a phrase such as 'nox_expressed_as_nitrogen'.", + "dimensions": "longitude latitude olevel time", + "out_name": "o2", + "type": "real", + "positive": "", + "spatial_shape": "XY-O", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "o2", + "variableRootDD": "o2", + "branding_label": "tavg-ol-hxy-sea", + "branded_variable_name": "o2_tavg-ol-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.o2", + "cmip7_compound_name": "ocnBgchem.o2.tavg-ol-hxy-sea.mon.GLB", + "uid": "ba9f9e7a-e5dd-11e5-8482-ac72891c3257" + }, + "ocnBgchem.o2.tavg-op20bar-hxy-sea.day.GLB": { + "frequency": "day", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_dissolved_molecular_oxygen_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Dissolved Oxygen Concentration at 200 meters", + "comment": "'Mole concentration' means number of moles per unit volume, also called \"molarity\", and is used in the construction mole_concentration_of_X_in_Y, where X is a material constituent of Y. A chemical or biological species denoted by X may be described by a single term such as 'nitrogen' or a phrase such as 'nox_expressed_as_nitrogen'.", + "dimensions": "longitude latitude time op20bar", + "out_name": "o2", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Oday", + "physical_parameter_name": "o2", + "variableRootDD": "o2", + "branding_label": "tavg-op20bar-hxy-sea", + "branded_variable_name": "o2_tavg-op20bar-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Oday.o2200", + "cmip7_compound_name": "ocnBgchem.o2.tavg-op20bar-hxy-sea.day.GLB", + "uid": "83bbfb7f-7f07-11ef-9308-b1dd71e64bec" + }, + "ocnBgchem.o2min.tavg-u-hxy-sea.day.GLB": { + "frequency": "day", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_dissolved_molecular_oxygen_in_sea_water_at_shallowest_local_minimum_in_vertical_profile", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Oxygen Minimum Concentration", + "comment": "mole concentration of oxygen at the local minimum in the concentration profile that occurs closest to the sea surface.", + "dimensions": "longitude latitude time", + "out_name": "o2min", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Oday", + "physical_parameter_name": "o2min", + "variableRootDD": "o2min", + "branding_label": "tavg-u-hxy-sea", + "branded_variable_name": "o2min_tavg-u-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Oday.o2min", + "cmip7_compound_name": "ocnBgchem.o2min.tavg-u-hxy-sea.day.GLB", + "uid": "83bbfb7e-7f07-11ef-9308-b1dd71e64bec" + }, + "ocnBgchem.o2sat.tavg-ol-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_dissolved_molecular_oxygen_in_sea_water_at_saturation", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Dissolved Oxygen Concentration at Saturation", + "comment": "\"Mole concentration at saturation\" means the mole concentration in a saturated solution. Mole concentration means number of moles per unit volume, also called \"molarity\", and is used in the construction \"mole_concentration_of_X_in_Y\", where X is a material constituent of Y. A chemical or biological species denoted by X may be described by a single term such as \"nitrogen\" or a phrase such as \"nox_expressed_as_nitrogen\".", + "dimensions": "longitude latitude olevel time", + "out_name": "o2sat", + "type": "real", + "positive": "", + "spatial_shape": "XY-O", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "o2sat", + "variableRootDD": "o2sat", + "branding_label": "tavg-ol-hxy-sea", + "branded_variable_name": "o2sat_tavg-ol-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.o2sat", + "cmip7_compound_name": "ocnBgchem.o2sat.tavg-ol-hxy-sea.mon.GLB", + "uid": "a95e9f72-817c-11e6-a4e2-5404a60d96b5" + }, + "ocnBgchem.ocfriver.tavg-u-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "tendency_of_ocean_mole_content_of_organic_carbon_due_to_runoff_and_sediment_dissolution", + "units": "mol m-2 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Flux of Organic Carbon into Ocean Surface by Runoff", + "comment": "Organic Carbon supply to ocean through runoff (separate from gas exchange)", + "dimensions": "longitude latitude time", + "out_name": "ocfriver", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "ocfriver", + "variableRootDD": "ocfriver", + "branding_label": "tavg-u-hxy-sea", + "branded_variable_name": "ocfriver_tavg-u-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.ocfriver", + "cmip7_compound_name": "ocnBgchem.ocfriver.tavg-u-hxy-sea.mon.GLB", + "uid": "baa0f57c-e5dd-11e5-8482-ac72891c3257" + }, + "ocnBgchem.ph.tavg-d0m-hxy-sea.day.GLB": { + "frequency": "day", + "modeling_realm": "ocnBgchem", + "standard_name": "sea_water_ph_reported_on_total_scale", + "units": "1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Surface pH", + "comment": "Near surface negative log10 of hydrogen ion concentration with the concentration expressed as mol H kg-1.", + "dimensions": "longitude latitude time depth0m", + "out_name": "phos", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Oday", + "physical_parameter_name": "phos", + "variableRootDD": "ph", + "branding_label": "tavg-d0m-hxy-sea", + "branded_variable_name": "ph_tavg-d0m-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Oday.phos", + "cmip7_compound_name": "ocnBgchem.ph.tavg-d0m-hxy-sea.day.GLB", + "uid": "83bbfb7b-7f07-11ef-9308-b1dd71e64bec" + }, + "ocnBgchem.ph.tavg-d0m-hxy-sea.mon.30S-90S": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "sea_water_ph_reported_on_total_scale", + "units": "1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Surface pH", + "comment": "negative log10 of hydrogen ion concentration with the concentration expressed as mol H kg-1.", + "dimensions": "longitude latitude time depth0m", + "out_name": "phos", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "phos", + "variableRootDD": "ph", + "branding_label": "tavg-d0m-hxy-sea", + "branded_variable_name": "ph_tavg-d0m-hxy-sea", + "region": "30S-90S", + "cmip6_compound_name": "Omon.phos", + "cmip7_compound_name": "ocnBgchem.ph.tavg-d0m-hxy-sea.mon.30S-90S", + "uid": "c918bbf8-c5e8-11e6-84e6-5404a60d96b5" + }, + "ocnBgchem.ph.tavg-ol-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "sea_water_ph_reported_on_total_scale", + "units": "1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "pH", + "comment": "negative log10 of hydrogen ion concentration with the concentration expressed as mol H kg-1.", + "dimensions": "longitude latitude olevel time", + "out_name": "ph", + "type": "real", + "positive": "", + "spatial_shape": "XY-O", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "ph", + "variableRootDD": "ph", + "branding_label": "tavg-ol-hxy-sea", + "branded_variable_name": "ph_tavg-ol-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.ph", + "cmip7_compound_name": "ocnBgchem.ph.tavg-ol-hxy-sea.mon.GLB", + "uid": "ba9f9a4c-e5dd-11e5-8482-ac72891c3257" + }, + "ocnBgchem.ph.tavg-op20bar-hxy-sea.day.GLB": { + "frequency": "day", + "modeling_realm": "ocnBgchem", + "standard_name": "sea_water_ph_reported_on_total_scale", + "units": "1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "pH", + "comment": "negative log10 of hydrogen ion concentration with the concentration expressed as mol H kg-1.", + "dimensions": "longitude latitude time op20bar", + "out_name": "ph", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Oday", + "physical_parameter_name": "ph", + "variableRootDD": "ph", + "branding_label": "tavg-op20bar-hxy-sea", + "branded_variable_name": "ph_tavg-op20bar-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Oday.ph200", + "cmip7_compound_name": "ocnBgchem.ph.tavg-op20bar-hxy-sea.day.GLB", + "uid": "83bbfb7c-7f07-11ef-9308-b1dd71e64bec" + }, + "ocnBgchem.phyc.tavg-d0m-hxy-sea.day.GLB": { + "frequency": "day", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_phytoplankton_expressed_as_carbon_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Sea Surface Phytoplankton Carbon Concentration", + "comment": "sum of phytoplankton organic carbon component concentrations at the sea surface", + "dimensions": "longitude latitude time depth0m", + "out_name": "phycos", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Oday", + "physical_parameter_name": "phycos", + "variableRootDD": "phyc", + "branding_label": "tavg-d0m-hxy-sea", + "branded_variable_name": "phyc_tavg-d0m-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Oday.phycos", + "cmip7_compound_name": "ocnBgchem.phyc.tavg-d0m-hxy-sea.day.GLB", + "uid": "baa165e8-e5dd-11e5-8482-ac72891c3257" + }, + "ocnBgchem.phyc.tavg-d0m-hxy-sea.mon.30S-90S": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_phytoplankton_expressed_as_carbon_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Sea Surface Phytoplankton Carbon Concentration", + "comment": "sum of phytoplankton carbon component concentrations. In most (all?) cases this is the sum of phycdiat and phycmisc (i.e., \"Diatom Carbon Concentration\" and \"Non-Diatom Phytoplankton Carbon Concentration\"", + "dimensions": "longitude latitude time depth0m", + "out_name": "phycos", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "phycos", + "variableRootDD": "phyc", + "branding_label": "tavg-d0m-hxy-sea", + "branded_variable_name": "phyc_tavg-d0m-hxy-sea", + "region": "30S-90S", + "cmip6_compound_name": "Omon.phycosSouth30", + "cmip7_compound_name": "ocnBgchem.phyc.tavg-d0m-hxy-sea.mon.30S-90S", + "uid": "80ac31b1-a698-11ef-914a-613c0433d878" + }, + "ocnBgchem.phyc.tavg-d0m-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_phytoplankton_expressed_as_carbon_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Sea Surface Phytoplankton Carbon Concentration", + "comment": "sum of phytoplankton carbon component concentrations. In most (all?) cases this is the sum of phycdiat and phycmisc (i.e., \"Diatom Carbon Concentration\" and \"Non-Diatom Phytoplankton Carbon Concentration\"", + "dimensions": "longitude latitude time depth0m", + "out_name": "phycos", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "phycos", + "variableRootDD": "phyc", + "branding_label": "tavg-d0m-hxy-sea", + "branded_variable_name": "phyc_tavg-d0m-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.phycos", + "cmip7_compound_name": "ocnBgchem.phyc.tavg-d0m-hxy-sea.mon.GLB", + "uid": "c917d274-c5e8-11e6-84e6-5404a60d96b5" + }, + "ocnBgchem.phyc.tavg-ol-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_phytoplankton_expressed_as_carbon_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Phytoplankton Carbon Concentration", + "comment": "sum of phytoplankton carbon component concentrations. In most (all?) cases this is the sum of phycdiat and phycmisc (i.e., \"Diatom Carbon Concentration\" and \"Non-Diatom Phytoplankton Carbon Concentration\"", + "dimensions": "longitude latitude olevel time", + "out_name": "phyc", + "type": "real", + "positive": "", + "spatial_shape": "XY-O", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "phyc", + "variableRootDD": "phyc", + "branding_label": "tavg-ol-hxy-sea", + "branded_variable_name": "phyc_tavg-ol-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.phyc", + "cmip7_compound_name": "ocnBgchem.phyc.tavg-ol-hxy-sea.mon.GLB", + "uid": "ba9f5398-e5dd-11e5-8482-ac72891c3257" + }, + "ocnBgchem.phyc.tavg-op20bar-hxy-sea.day.GLB": { + "frequency": "day", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_phytoplankton_expressed_as_carbon_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Phytoplankton Carbon Concentration", + "comment": "sum of phytoplankton carbon component concentrations. In most (all?) cases this is the sum of phycdiat and phycmisc (i.e., \"Diatom Carbon Concentration\" and \"Non-Diatom Phytoplankton Carbon Concentration\"", + "dimensions": "longitude latitude time op20bar", + "out_name": "phyc", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Oday", + "physical_parameter_name": "phyc", + "variableRootDD": "phyc", + "branding_label": "tavg-op20bar-hxy-sea", + "branded_variable_name": "phyc_tavg-op20bar-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Oday.phyc200", + "cmip7_compound_name": "ocnBgchem.phyc.tavg-op20bar-hxy-sea.day.GLB", + "uid": "83bbfb7a-7f07-11ef-9308-b1dd71e64bec" + }, + "ocnBgchem.phycalc.tavg-d0m-hxy-sea.mon.30S-90S": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_calcareous_phytoplankton_expressed_as_carbon_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Surface Mole Concentration of Calcareous Phytoplankton Expressed as Carbon in Sea Water", + "comment": "carbon concentration from calcareous (calcite-producing) phytoplankton component alone", + "dimensions": "longitude latitude time depth0m", + "out_name": "phycalcos", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "phycalcos", + "variableRootDD": "phycalc", + "branding_label": "tavg-d0m-hxy-sea", + "branded_variable_name": "phycalc_tavg-d0m-hxy-sea", + "region": "30S-90S", + "cmip6_compound_name": "Omon.phycalcos", + "cmip7_compound_name": "ocnBgchem.phycalc.tavg-d0m-hxy-sea.mon.30S-90S", + "uid": "c9184416-c5e8-11e6-84e6-5404a60d96b5" + }, + "ocnBgchem.phycalc.tavg-ol-hxy-sea.day.GLB": { + "frequency": "day", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_calcareous_phytoplankton_expressed_as_carbon_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Mole Concentration of Calcareous Phytoplankton Expressed as Carbon in Sea Water", + "comment": "Mole Concentration of Calcareous Phytoplankton Expressed as Carbon in Sea Water", + "dimensions": "longitude latitude olevel time", + "out_name": "phycalc", + "type": "real", + "positive": "", + "spatial_shape": "XY-O", + "temporal_shape": "time-intv", + "cmip6_table": "Oday", + "physical_parameter_name": "phycalc", + "variableRootDD": "phycalc", + "branding_label": "tavg-ol-hxy-sea", + "branded_variable_name": "phycalc_tavg-ol-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Oday.phycalc", + "cmip7_compound_name": "ocnBgchem.phycalc.tavg-ol-hxy-sea.day.GLB", + "uid": "527f5cca-8c97-11ef-944e-41a8eb05f654" + }, + "ocnBgchem.phycalc.tavg-ol-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_calcareous_phytoplankton_expressed_as_carbon_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Mole Concentration of Calcareous Phytoplankton Expressed as Carbon in Sea Water", + "comment": "carbon concentration from calcareous (calcite-producing) phytoplankton component alone", + "dimensions": "longitude latitude olevel time", + "out_name": "phycalc", + "type": "real", + "positive": "", + "spatial_shape": "XY-O", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "phycalc", + "variableRootDD": "phycalc", + "branding_label": "tavg-ol-hxy-sea", + "branded_variable_name": "phycalc_tavg-ol-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.phycalc", + "cmip7_compound_name": "ocnBgchem.phycalc.tavg-ol-hxy-sea.mon.GLB", + "uid": "ba9f74fe-e5dd-11e5-8482-ac72891c3257" + }, + "ocnBgchem.phydiat.tavg-d0m-hxy-sea.day.GLB": { + "frequency": "day", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_diatoms_expressed_as_carbon_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Surface concentration of diatoms", + "comment": "Mole Concentration of Diatoms Expressed as Carbon in Sea Water", + "dimensions": "longitude latitude time depth0m", + "out_name": "phydiatos", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Oday", + "physical_parameter_name": "phydiatos", + "variableRootDD": "phydiat", + "branding_label": "tavg-d0m-hxy-sea", + "branded_variable_name": "phydiat_tavg-d0m-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Oday.phydiatos", + "cmip7_compound_name": "ocnBgchem.phydiat.tavg-d0m-hxy-sea.day.GLB", + "uid": "83bbfb79-7f07-11ef-9308-b1dd71e64bec" + }, + "ocnBgchem.phydiat.tavg-d0m-hxy-sea.mon.30S-90S": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_diatoms_expressed_as_carbon_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Surface Mole Concentration of Diatoms Expressed as Carbon in Sea Water", + "comment": "carbon from the diatom phytoplankton component concentration alone", + "dimensions": "longitude latitude time depth0m", + "out_name": "phydiatos", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "phydiatos", + "variableRootDD": "phydiat", + "branding_label": "tavg-d0m-hxy-sea", + "branded_variable_name": "phydiat_tavg-d0m-hxy-sea", + "region": "30S-90S", + "cmip6_compound_name": "Omon.phydiatos", + "cmip7_compound_name": "ocnBgchem.phydiat.tavg-d0m-hxy-sea.mon.30S-90S", + "uid": "c91827ba-c5e8-11e6-84e6-5404a60d96b5" + }, + "ocnBgchem.phydiat.tavg-ol-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_diatoms_expressed_as_carbon_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Mole Concentration of Diatoms Expressed as Carbon in Sea Water", + "comment": "carbon from the diatom phytoplankton component concentration alone", + "dimensions": "longitude latitude olevel time", + "out_name": "phydiat", + "type": "real", + "positive": "", + "spatial_shape": "XY-O", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "phydiat", + "variableRootDD": "phydiat", + "branding_label": "tavg-ol-hxy-sea", + "branded_variable_name": "phydiat_tavg-ol-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.phydiat", + "cmip7_compound_name": "ocnBgchem.phydiat.tavg-ol-hxy-sea.mon.GLB", + "uid": "ba9f6c98-e5dd-11e5-8482-ac72891c3257" + }, + "ocnBgchem.phydiaz.tavg-d0m-hxy-sea.day.GLB": { + "frequency": "day", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_diazotrophic_phytoplankton_expressed_as_carbon_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Surface concentration of diazotrophs", + "comment": "Mole Concentration of Diazotrophs Expressed as Carbon in Sea Water", + "dimensions": "longitude latitude time depth0m", + "out_name": "phydiazos", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Oday", + "physical_parameter_name": "phydiazos", + "variableRootDD": "phydiaz", + "branding_label": "tavg-d0m-hxy-sea", + "branded_variable_name": "phydiaz_tavg-d0m-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Oday.phydiazos", + "cmip7_compound_name": "ocnBgchem.phydiaz.tavg-d0m-hxy-sea.day.GLB", + "uid": "83bbfb78-7f07-11ef-9308-b1dd71e64bec" + }, + "ocnBgchem.phydiaz.tavg-d0m-hxy-sea.mon.30S-90S": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_diazotrophic_phytoplankton_expressed_as_carbon_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Surface Mole Concentration of Diazotrophs Expressed as Carbon in Sea Water", + "comment": "carbon concentration from the diazotrophic phytoplankton component alone", + "dimensions": "longitude latitude time depth0m", + "out_name": "phydiazos", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "phydiazos", + "variableRootDD": "phydiaz", + "branding_label": "tavg-d0m-hxy-sea", + "branded_variable_name": "phydiaz_tavg-d0m-hxy-sea", + "region": "30S-90S", + "cmip6_compound_name": "Omon.phydiazos", + "cmip7_compound_name": "ocnBgchem.phydiaz.tavg-d0m-hxy-sea.mon.30S-90S", + "uid": "c918358e-c5e8-11e6-84e6-5404a60d96b5" + }, + "ocnBgchem.phydiaz.tavg-ol-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_diazotrophic_phytoplankton_expressed_as_carbon_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Mole Concentration of Diazotrophs Expressed as Carbon in Sea Water", + "comment": "carbon concentration from the diazotrophic phytoplankton component alone", + "dimensions": "longitude latitude olevel time", + "out_name": "phydiaz", + "type": "real", + "positive": "", + "spatial_shape": "XY-O", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "phydiaz", + "variableRootDD": "phydiaz", + "branding_label": "tavg-ol-hxy-sea", + "branded_variable_name": "phydiaz_tavg-ol-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.phydiaz", + "cmip7_compound_name": "ocnBgchem.phydiaz.tavg-ol-hxy-sea.mon.GLB", + "uid": "ba9f70bc-e5dd-11e5-8482-ac72891c3257" + }, + "ocnBgchem.phymisc.tavg-d0m-hxy-sea.day.GLB": { + "frequency": "day", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_miscellaneous_phytoplankton_expressed_as_carbon_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Surface concentration of miscellaneous phytoplankton", + "comment": "Mole Concentration of Miscellaneous Phytoplankton Expressed as Carbon in Sea Water", + "dimensions": "longitude latitude time depth0m", + "out_name": "phymiscos", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Oday", + "physical_parameter_name": "phymiscos", + "variableRootDD": "phymisc", + "branding_label": "tavg-d0m-hxy-sea", + "branded_variable_name": "phymisc_tavg-d0m-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Oday.phymiscos", + "cmip7_compound_name": "ocnBgchem.phymisc.tavg-d0m-hxy-sea.day.GLB", + "uid": "83bbfb77-7f07-11ef-9308-b1dd71e64bec" + }, + "ocnBgchem.phymisc.tavg-d0m-hxy-sea.mon.30S-90S": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_miscellaneous_phytoplankton_expressed_as_carbon_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Surface Mole Concentration of Miscellaneous Phytoplankton Expressed as Carbon in Sea Water", + "comment": "carbon concentration from additional phytoplankton component alone", + "dimensions": "longitude latitude time depth0m", + "out_name": "phymiscos", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "phymiscos", + "variableRootDD": "phymisc", + "branding_label": "tavg-d0m-hxy-sea", + "branded_variable_name": "phymisc_tavg-d0m-hxy-sea", + "region": "30S-90S", + "cmip6_compound_name": "Omon.phymiscos", + "cmip7_compound_name": "ocnBgchem.phymisc.tavg-d0m-hxy-sea.mon.30S-90S", + "uid": "c9185fa0-c5e8-11e6-84e6-5404a60d96b5" + }, + "ocnBgchem.phymisc.tavg-ol-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_miscellaneous_phytoplankton_expressed_as_carbon_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Mole Concentration of Miscellaneous Phytoplankton Expressed as Carbon in Sea Water", + "comment": "carbon concentration from additional phytoplankton component alone", + "dimensions": "longitude latitude olevel time", + "out_name": "phymisc", + "type": "real", + "positive": "", + "spatial_shape": "XY-O", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "phymisc", + "variableRootDD": "phymisc", + "branding_label": "tavg-ol-hxy-sea", + "branded_variable_name": "phymisc_tavg-ol-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.phymisc", + "cmip7_compound_name": "ocnBgchem.phymisc.tavg-ol-hxy-sea.mon.GLB", + "uid": "ba9f7d50-e5dd-11e5-8482-ac72891c3257" + }, + "ocnBgchem.phynano.tavg-u-hxy-sea.day.GLB": { + "frequency": "day", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_nanophytoplankton_expressed_as_carbon_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Mole Concentration of Nanophytoplankton Expressed as Carbon in Sea Water", + "comment": "Mole Concentration of Nanophytoplankton Expressed as Carbon in Sea Water", + "dimensions": "longitude latitude time", + "out_name": "phynano", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Oday", + "physical_parameter_name": "phynano", + "variableRootDD": "phynano", + "branding_label": "tavg-u-hxy-sea", + "branded_variable_name": "phynano_tavg-u-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Oday.phynano", + "cmip7_compound_name": "ocnBgchem.phynano.tavg-u-hxy-sea.day.GLB", + "uid": "83bbfb76-7f07-11ef-9308-b1dd71e64bec" + }, + "ocnBgchem.phypico.tavg-d0m-hxy-sea.mon.30S-90S": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_picophytoplankton_expressed_as_carbon_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Surface Mole Concentration of Picophytoplankton Expressed as Carbon in Sea Water", + "comment": "carbon concentration from the picophytoplankton (<2 um) component alone", + "dimensions": "longitude latitude time depth0m", + "out_name": "phypicoos", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "phypicoos", + "variableRootDD": "phypico", + "branding_label": "tavg-d0m-hxy-sea", + "branded_variable_name": "phypico_tavg-d0m-hxy-sea", + "region": "30S-90S", + "cmip6_compound_name": "Omon.phypicoos", + "cmip7_compound_name": "ocnBgchem.phypico.tavg-d0m-hxy-sea.mon.30S-90S", + "uid": "c91851ea-c5e8-11e6-84e6-5404a60d96b5" + }, + "ocnBgchem.phypico.tavg-ol-hxy-sea.day.GLB": { + "frequency": "day", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_picophytoplankton_expressed_as_carbon_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Carbon concentration of picophytoplankton", + "comment": "Mole Concentration of Picophytoplankton Expressed as Carbon in Sea Water", + "dimensions": "longitude latitude olevel time", + "out_name": "phypico", + "type": "real", + "positive": "", + "spatial_shape": "XY-O", + "temporal_shape": "time-intv", + "cmip6_table": "Oday", + "physical_parameter_name": "phypico", + "variableRootDD": "phypico", + "branding_label": "tavg-ol-hxy-sea", + "branded_variable_name": "phypico_tavg-ol-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Oday.phypico", + "cmip7_compound_name": "ocnBgchem.phypico.tavg-ol-hxy-sea.day.GLB", + "uid": "83bbfb74-7f07-11ef-9308-b1dd71e64bec" + }, + "ocnBgchem.phypico.tavg-ol-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_picophytoplankton_expressed_as_carbon_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Mole Concentration of Picophytoplankton Expressed as Carbon in Sea Water", + "comment": "carbon concentration from the picophytoplankton (<2 um) component alone", + "dimensions": "longitude latitude olevel time", + "out_name": "phypico", + "type": "real", + "positive": "", + "spatial_shape": "XY-O", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "phypico", + "variableRootDD": "phypico", + "branding_label": "tavg-ol-hxy-sea", + "branded_variable_name": "phypico_tavg-ol-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.phypico", + "cmip7_compound_name": "ocnBgchem.phypico.tavg-ol-hxy-sea.mon.GLB", + "uid": "ba9f792c-e5dd-11e5-8482-ac72891c3257" + }, + "ocnBgchem.po4.tavg-ol-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_dissolved_inorganic_phosphorus_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Total Dissolved Inorganic Phosphorus Concentration", + "comment": "Mole concentration means number of moles per unit volume, also called \"molarity\", and is used in the construction \"mole_concentration_of_X_in_Y\", where X is a material constituent of Y. A chemical or biological species denoted by X may be described by a single term such as \"nitrogen\" or a phrase such as \"nox_expressed_as_nitrogen\". \"Dissolved inorganic phosphorus\" means the sum of all inorganic phosphorus in solution (including phosphate, hydrogen phosphate, dihydrogen phosphate, and phosphoric acid).", + "dimensions": "longitude latitude olevel time", + "out_name": "po4", + "type": "real", + "positive": "", + "spatial_shape": "XY-O", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "po4", + "variableRootDD": "po4", + "branding_label": "tavg-ol-hxy-sea", + "branded_variable_name": "po4_tavg-ol-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.po4", + "cmip7_compound_name": "ocnBgchem.po4.tavg-ol-hxy-sea.mon.GLB", + "uid": "ba9faae6-e5dd-11e5-8482-ac72891c3257" + }, + "ocnBgchem.pp.tavg-d0m-hxy-sea.mon.30S-90S": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "tendency_of_mole_concentration_of_particulate_organic_matter_expressed_as_carbon_in_sea_water_due_to_net_primary_production", + "units": "mol m-3 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Primary Carbon Production by Phytoplankton", + "comment": "total primary (organic carbon) production by phytoplankton", + "dimensions": "longitude latitude time depth0m", + "out_name": "ppos", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "ppos", + "variableRootDD": "pp", + "branding_label": "tavg-d0m-hxy-sea", + "branded_variable_name": "pp_tavg-d0m-hxy-sea", + "region": "30S-90S", + "cmip6_compound_name": "Omon.pposSouth30", + "cmip7_compound_name": "ocnBgchem.pp.tavg-d0m-hxy-sea.mon.30S-90S", + "uid": "80ac31b2-a698-11ef-914a-613c0433d878" + }, + "ocnBgchem.pp.tavg-d0m-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "tendency_of_mole_concentration_of_particulate_organic_matter_expressed_as_carbon_in_sea_water_due_to_net_primary_production", + "units": "mol m-3 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Primary Carbon Production by Phytoplankton", + "comment": "total primary (organic carbon) production by phytoplankton", + "dimensions": "longitude latitude time depth0m", + "out_name": "ppos", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "ppos", + "variableRootDD": "pp", + "branding_label": "tavg-d0m-hxy-sea", + "branded_variable_name": "pp_tavg-d0m-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.ppos", + "cmip7_compound_name": "ocnBgchem.pp.tavg-d0m-hxy-sea.mon.GLB", + "uid": "baa0069e-e5dd-11e5-8482-ac72891c3257" + }, + "ocnBgchem.pp.tavg-ol-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "tendency_of_mole_concentration_of_particulate_organic_matter_expressed_as_carbon_in_sea_water_due_to_net_primary_production", + "units": "mol m-3 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Primary Carbon Production by Phytoplankton", + "comment": "total primary (organic carbon) production by phytoplankton", + "dimensions": "longitude latitude olevel time", + "out_name": "pp", + "type": "real", + "positive": "", + "spatial_shape": "XY-O", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "pp", + "variableRootDD": "pp", + "branding_label": "tavg-ol-hxy-sea", + "branded_variable_name": "pp_tavg-ol-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.pp", + "cmip7_compound_name": "ocnBgchem.pp.tavg-ol-hxy-sea.mon.GLB", + "uid": "d934ae66-90cb-11e8-8e2e-a44cc8186c64" + }, + "ocnBgchem.si.tavg-d0m-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_dissolved_inorganic_silicon_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Surface Total Dissolved Inorganic Silicon Concentration", + "comment": "Mole concentration means number of moles per unit volume, also called \"molarity\", and is used in the construction \"mole_concentration_of_X_in_Y\", where X is a material constituent of Y. A chemical or biological species denoted by X may be described by a single term such as \"nitrogen\" or a phrase such as \"nox_expressed_as_nitrogen\". \"Dissolved inorganic silicon\" means the sum of all inorganic silicon in solution (including silicic acid and its first dissociated anion SiO(OH)3-).", + "dimensions": "longitude latitude time depth0m", + "out_name": "sios", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "sios", + "variableRootDD": "si", + "branding_label": "tavg-d0m-hxy-sea", + "branded_variable_name": "si_tavg-d0m-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.sios", + "cmip7_compound_name": "ocnBgchem.si.tavg-d0m-hxy-sea.mon.GLB", + "uid": "c9194dd4-c5e8-11e6-84e6-5404a60d96b5" + }, + "ocnBgchem.si.tavg-ol-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_dissolved_inorganic_silicon_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Total Dissolved Inorganic Silicon Concentration", + "comment": "Mole concentration means number of moles per unit volume, also called \"molarity\", and is used in the construction \"mole_concentration_of_X_in_Y\", where X is a material constituent of Y. A chemical or biological species denoted by X may be described by a single term such as \"nitrogen\" or a phrase such as \"nox_expressed_as_nitrogen\". \"Dissolved inorganic silicon\" means the sum of all inorganic silicon in solution (including silicic acid and its first dissociated anion SiO(OH)3-).", + "dimensions": "longitude latitude olevel time", + "out_name": "si", + "type": "real", + "positive": "", + "spatial_shape": "XY-O", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "si", + "variableRootDD": "si", + "branding_label": "tavg-ol-hxy-sea", + "branded_variable_name": "si_tavg-ol-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.si", + "cmip7_compound_name": "ocnBgchem.si.tavg-ol-hxy-sea.mon.GLB", + "uid": "ba9fb338-e5dd-11e5-8482-ac72891c3257" + }, + "ocnBgchem.sialgc.tavg-u-hxy-si.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "sea_ice_mole_content_of_ice_algae_expressed_as_carbon", + "units": "mol m-2", + "cell_methods": "area: mean where sea_ice (mask=siconc) depth: sum where sea_ice time: mean", + "cell_measures": "area: areacello", + "long_name": "Total Ice Algal Carbon Amount in Sea Ice", + "comment": "Vertically-integrated content of carbon in ice algae, expressed as moles of carbon per square meter of sea ice.", + "dimensions": "longitude latitude time", + "out_name": "sialgc", + "type": "real", + "positive": "", + "spatial_shape": "XY-int", + "temporal_shape": "time-intv", + "cmip6_table": "SImon", + "physical_parameter_name": "sialgc", + "variableRootDD": "sialgc", + "branding_label": "tavg-u-hxy-si", + "branded_variable_name": "sialgc_tavg-u-hxy-si", + "region": "GLB", + "cmip6_compound_name": "SImon.sialgc", + "cmip7_compound_name": "ocnBgchem.sialgc.tavg-u-hxy-si.mon.GLB", + "uid": "83bbfb27-7f07-11ef-9308-b1dd71e64bec" + }, + "ocnBgchem.sichl.tavg-u-hxy-si.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "sea_ice_mass_content_of_ice_algae_expressed_as_chlorophyll", + "units": "kg m-2", + "cell_methods": "area: mean where sea_ice (mask=siconc) depth: sum where sea_ice time: mean", + "cell_measures": "area: areacello", + "long_name": "Amount of Total Ice Algae Expressed as Chlorophyll in Sea Ice", + "comment": "Vertically-integrated content of Chl-a in ice algae, expressed as kg of Chl-a per square meter of sea ice.", + "dimensions": "longitude latitude time", + "out_name": "sichl", + "type": "real", + "positive": "", + "spatial_shape": "XY-int", + "temporal_shape": "time-intv", + "cmip6_table": "SImon", + "physical_parameter_name": "sichl", + "variableRootDD": "sichl", + "branding_label": "tavg-u-hxy-si", + "branded_variable_name": "sichl_tavg-u-hxy-si", + "region": "GLB", + "cmip6_compound_name": "SImon.sichl", + "cmip7_compound_name": "ocnBgchem.sichl.tavg-u-hxy-si.mon.GLB", + "uid": "83bbfb26-7f07-11ef-9308-b1dd71e64bec" + }, + "ocnBgchem.sigpp.tavg-u-hxy-si.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "gross_primary_productivity_of_biomass_expressed_as_carbon_due_to_ice_algae_in_sea_ice", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean where sea_ice (mask=siconc)", + "cell_measures": "area: areacello", + "long_name": "Gross Primary Productivity in Sea Ice as Carbon Amount Flux", + "comment": "Change in ice algal carbon mass due to photosynthesis per sea ice unit area per unit time.", + "dimensions": "longitude latitude time", + "out_name": "sigpp", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "SImon", + "physical_parameter_name": "sigpp", + "variableRootDD": "sigpp", + "branding_label": "tavg-u-hxy-si", + "branded_variable_name": "sigpp_tavg-u-hxy-si", + "region": "GLB", + "cmip6_compound_name": "SImon.sigpp", + "cmip7_compound_name": "ocnBgchem.sigpp.tavg-u-hxy-si.mon.GLB", + "uid": "83bbfb24-7f07-11ef-9308-b1dd71e64bec" + }, + "ocnBgchem.sino3.tavg-u-hxy-si.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "sea_ice_mole_content_of_nitrate", + "units": "mol m-2", + "cell_methods": "area: mean where sea_ice (mask=siconc) depth: sum where sea_ice time: mean", + "cell_measures": "area: areacello", + "long_name": "Dissolved Nitrate Amount in Sea Ice", + "comment": "Vertically-integrated amount of nitrate in ice algae, expressed in moles of nitrogen per square meter of sea ice.", + "dimensions": "longitude latitude time", + "out_name": "sino3", + "type": "real", + "positive": "", + "spatial_shape": "XY-int", + "temporal_shape": "time-intv", + "cmip6_table": "SImon", + "physical_parameter_name": "sino3", + "variableRootDD": "sino3", + "branding_label": "tavg-u-hxy-si", + "branded_variable_name": "sino3_tavg-u-hxy-si", + "region": "GLB", + "cmip6_compound_name": "SImon.sino3", + "cmip7_compound_name": "ocnBgchem.sino3.tavg-u-hxy-si.mon.GLB", + "uid": "83bbfb23-7f07-11ef-9308-b1dd71e64bec" + }, + "ocnBgchem.sisi.tavg-u-hxy-si.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "sea_ice_mole_content_of_silicon", + "units": "mol m-2", + "cell_methods": "area: mean where sea_ice (mask=siconc) depth: sum where sea_ice time: mean", + "cell_measures": "area: areacello", + "long_name": "Dissolved Silicon Amount in Sea Ice", + "comment": "Vertically-integrated amount of silicate in ice algae, expressed in moles of silicon per square meter of sea ice.", + "dimensions": "longitude latitude time", + "out_name": "sisi", + "type": "real", + "positive": "", + "spatial_shape": "XY-int", + "temporal_shape": "time-intv", + "cmip6_table": "SImon", + "physical_parameter_name": "sisi", + "variableRootDD": "sisi", + "branding_label": "tavg-u-hxy-si", + "branded_variable_name": "sisi_tavg-u-hxy-si", + "region": "GLB", + "cmip6_compound_name": "SImon.sisi", + "cmip7_compound_name": "ocnBgchem.sisi.tavg-u-hxy-si.mon.GLB", + "uid": "83bbfb22-7f07-11ef-9308-b1dd71e64bec" + }, + "ocnBgchem.spco2.tavg-u-hxy-sea.mon.30S-90S": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "surface_partial_pressure_of_carbon_dioxide_in_sea_water", + "units": "Pa", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Surface Aqueous Partial Pressure of CO2", + "comment": "The surface called \"surface\" means the lower boundary of the atmosphere. The partial pressure of a dissolved gas in sea water is the partial pressure in air with which it would be in equilibrium. The partial pressure of a gaseous constituent of air is the pressure which it alone would exert with unchanged temperature and number of moles per unit volume. The chemical formula for carbon dioxide is CO2.", + "dimensions": "longitude latitude time", + "out_name": "spco2", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "spco2", + "variableRootDD": "spco2", + "branding_label": "tavg-u-hxy-sea", + "branded_variable_name": "spco2_tavg-u-hxy-sea", + "region": "30S-90S", + "cmip6_compound_name": "Omon.spco2South30", + "cmip7_compound_name": "ocnBgchem.spco2.tavg-u-hxy-sea.mon.30S-90S", + "uid": "80ac31dc-a698-11ef-914a-613c0433d878" + }, + "ocnBgchem.spco2.tavg-u-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "surface_partial_pressure_of_carbon_dioxide_in_sea_water", + "units": "Pa", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Surface Aqueous Partial Pressure of CO2", + "comment": "The surface called \"surface\" means the lower boundary of the atmosphere. The partial pressure of a dissolved gas in sea water is the partial pressure in air with which it would be in equilibrium. The partial pressure of a gaseous constituent of air is the pressure which it alone would exert with unchanged temperature and number of moles per unit volume. The chemical formula for carbon dioxide is CO2.", + "dimensions": "longitude latitude time", + "out_name": "spco2", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "spco2", + "variableRootDD": "spco2", + "branding_label": "tavg-u-hxy-sea", + "branded_variable_name": "spco2_tavg-u-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.spco2", + "cmip7_compound_name": "ocnBgchem.spco2.tavg-u-hxy-sea.mon.GLB", + "uid": "baa0c7a0-e5dd-11e5-8482-ac72891c3257" + }, + "ocnBgchem.talk.tavg-ol-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "sea_water_alkalinity_expressed_as_mole_equivalent", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Total Alkalinity", + "comment": "total alkalinity equivalent concentration (including carbonate, borate, phosphorus, silicon, and nitrogen components)", + "dimensions": "longitude latitude olevel time", + "out_name": "talk", + "type": "real", + "positive": "", + "spatial_shape": "XY-O", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "talk", + "variableRootDD": "talk", + "branding_label": "tavg-ol-hxy-sea", + "branded_variable_name": "talk_tavg-ol-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.talk", + "cmip7_compound_name": "ocnBgchem.talk.tavg-ol-hxy-sea.mon.GLB", + "uid": "ba9f91f0-e5dd-11e5-8482-ac72891c3257" + }, + "ocnBgchem.zmeso.tavg-d0m-hxy-sea.mon.30S-90S": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_mesozooplankton_expressed_as_carbon_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Surface Mole Concentration of Mesozooplankton Expressed as Carbon in Sea Water", + "comment": "carbon concentration from mesozooplankton (20-200 um) component alone", + "dimensions": "longitude latitude time depth0m", + "out_name": "zmesoos", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "zmesoos", + "variableRootDD": "zmeso", + "branding_label": "tavg-d0m-hxy-sea", + "branded_variable_name": "zmeso_tavg-d0m-hxy-sea", + "region": "30S-90S", + "cmip6_compound_name": "Omon.zmesoos", + "cmip7_compound_name": "ocnBgchem.zmeso.tavg-d0m-hxy-sea.mon.30S-90S", + "uid": "c9187c60-c5e8-11e6-84e6-5404a60d96b5" + }, + "ocnBgchem.zmeso.tavg-ol-hxy-sea.day.GLB": { + "frequency": "day", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_mesozooplankton_expressed_as_carbon_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Mole Concentration of Mesozooplankton Expressed as Carbon in Sea Water", + "comment": "carbon concentration from mesozooplankton (20-200 um) component alone", + "dimensions": "longitude latitude olevel time", + "out_name": "zmeso", + "type": "real", + "positive": "", + "spatial_shape": "XY-O", + "temporal_shape": "time-intv", + "cmip6_table": "Oday", + "physical_parameter_name": "zmeso", + "variableRootDD": "zmeso", + "branding_label": "tavg-ol-hxy-sea", + "branded_variable_name": "zmeso_tavg-ol-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Oday.zmeso", + "cmip7_compound_name": "ocnBgchem.zmeso.tavg-ol-hxy-sea.day.GLB", + "uid": "83bbfb6c-7f07-11ef-9308-b1dd71e64bec" + }, + "ocnBgchem.zmeso.tavg-ol-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_mesozooplankton_expressed_as_carbon_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Mole Concentration of Mesozooplankton Expressed as Carbon in Sea Water", + "comment": "carbon concentration from mesozooplankton (20-200 um) component alone", + "dimensions": "longitude latitude olevel time", + "out_name": "zmeso", + "type": "real", + "positive": "", + "spatial_shape": "XY-O", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "zmeso", + "variableRootDD": "zmeso", + "branding_label": "tavg-ol-hxy-sea", + "branded_variable_name": "zmeso_tavg-ol-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.zmeso", + "cmip7_compound_name": "ocnBgchem.zmeso.tavg-ol-hxy-sea.mon.GLB", + "uid": "c92305ae-c5e8-11e6-84e6-5404a60d96b5" + }, + "ocnBgchem.zmicro.tavg-d0m-hxy-sea.mon.30S-90S": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_microzooplankton_expressed_as_carbon_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Surface Mole Concentration of Microzooplankton Expressed as Carbon in Sea Water", + "comment": "carbon concentration from the microzooplankton (<20 um) component alone", + "dimensions": "longitude latitude time depth0m", + "out_name": "zmicroos", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "zmicroos", + "variableRootDD": "zmicro", + "branding_label": "tavg-d0m-hxy-sea", + "branded_variable_name": "zmicro_tavg-d0m-hxy-sea", + "region": "30S-90S", + "cmip6_compound_name": "Omon.zmicroos", + "cmip7_compound_name": "ocnBgchem.zmicro.tavg-d0m-hxy-sea.mon.30S-90S", + "uid": "c9186d38-c5e8-11e6-84e6-5404a60d96b5" + }, + "ocnBgchem.zmicro.tavg-ol-hxy-sea.day.GLB": { + "frequency": "day", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_microzooplankton_expressed_as_carbon_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Mole Concentration of microzooplankton Expressed as Carbon in Sea Water", + "comment": "carbon\u00a0concentration from the microzooplankton (<20 um) component alone", + "dimensions": "longitude latitude olevel time", + "out_name": "zmicro", + "type": "real", + "positive": "", + "spatial_shape": "XY-O", + "temporal_shape": "time-intv", + "cmip6_table": "Oday", + "physical_parameter_name": "zmicro", + "variableRootDD": "zmicro", + "branding_label": "tavg-ol-hxy-sea", + "branded_variable_name": "zmicro_tavg-ol-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Oday.zmicro", + "cmip7_compound_name": "ocnBgchem.zmicro.tavg-ol-hxy-sea.day.GLB", + "uid": "83bbfb6b-7f07-11ef-9308-b1dd71e64bec" + }, + "ocnBgchem.zmicro.tavg-ol-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_microzooplankton_expressed_as_carbon_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Mole Concentration of Microzooplankton Expressed as Carbon in Sea Water", + "comment": "carbon concentration from the microzooplankton (<20 um) component alone", + "dimensions": "longitude latitude olevel time", + "out_name": "zmicro", + "type": "real", + "positive": "", + "spatial_shape": "XY-O", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "zmicro", + "variableRootDD": "zmicro", + "branding_label": "tavg-ol-hxy-sea", + "branded_variable_name": "zmicro_tavg-ol-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.zmicro", + "cmip7_compound_name": "ocnBgchem.zmicro.tavg-ol-hxy-sea.mon.GLB", + "uid": "c91b3dba-c5e8-11e6-84e6-5404a60d96b5" + }, + "ocnBgchem.zmisc.tavg-d0m-hxy-sea.mon.30S-90S": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_miscellaneous_zooplankton_expressed_as_carbon_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Surface Mole Concentration of Other Zooplankton Expressed as Carbon in Sea Water", + "comment": "carbon from additional zooplankton component concentrations alone (e.g. Micro, meso). Since the models all have different numbers of components, this variable has been included to provide a check for intercomparison between models since some phytoplankton groups are supersets.", + "dimensions": "longitude latitude time depth0m", + "out_name": "zmiscos", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "zmiscos", + "variableRootDD": "zmisc", + "branding_label": "tavg-d0m-hxy-sea", + "branded_variable_name": "zmisc_tavg-d0m-hxy-sea", + "region": "30S-90S", + "cmip6_compound_name": "Omon.zmiscos", + "cmip7_compound_name": "ocnBgchem.zmisc.tavg-d0m-hxy-sea.mon.30S-90S", + "uid": "c9188a3e-c5e8-11e6-84e6-5404a60d96b5" + }, + "ocnBgchem.zmisc.tavg-ol-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_miscellaneous_zooplankton_expressed_as_carbon_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Mole Concentration of Other Zooplankton Expressed as Carbon in Sea Water", + "comment": "carbon from additional zooplankton component concentrations alone (e.g. Micro, meso). Since the models all have different numbers of components, this variable has been included to provide a check for intercomparison between models since some phytoplankton groups are supersets.", + "dimensions": "longitude latitude olevel time", + "out_name": "zmisc", + "type": "real", + "positive": "", + "spatial_shape": "XY-O", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "zmisc", + "variableRootDD": "zmisc", + "branding_label": "tavg-ol-hxy-sea", + "branded_variable_name": "zmisc_tavg-ol-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.zmisc", + "cmip7_compound_name": "ocnBgchem.zmisc.tavg-ol-hxy-sea.mon.GLB", + "uid": "c91b5aa2-c5e8-11e6-84e6-5404a60d96b5" + }, + "ocnBgchem.zooc.tavg-d0m-hxy-sea.mon.30S-90S": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_zooplankton_expressed_as_carbon_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Surface Zooplankton Carbon Concentration", + "comment": "sum of zooplankton carbon component concentrations", + "dimensions": "longitude latitude time depth0m", + "out_name": "zoocos", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "zoocos", + "variableRootDD": "zooc", + "branding_label": "tavg-d0m-hxy-sea", + "branded_variable_name": "zooc_tavg-d0m-hxy-sea", + "region": "30S-90S", + "cmip6_compound_name": "Omon.zoocos", + "cmip7_compound_name": "ocnBgchem.zooc.tavg-d0m-hxy-sea.mon.30S-90S", + "uid": "c917e0b6-c5e8-11e6-84e6-5404a60d96b5" + }, + "ocnBgchem.zooc.tavg-ol-hxy-sea.day.GLB": { + "frequency": "day", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_zooplankton_expressed_as_carbon_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Zooplankton Carbon Concentration", + "comment": "sum of zooplankton carbon component concentrations", + "dimensions": "longitude latitude olevel time", + "out_name": "zooc", + "type": "real", + "positive": "", + "spatial_shape": "XY-O", + "temporal_shape": "time-intv", + "cmip6_table": "Oday", + "physical_parameter_name": "zooc", + "variableRootDD": "zooc", + "branding_label": "tavg-ol-hxy-sea", + "branded_variable_name": "zooc_tavg-ol-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Oday.zooc", + "cmip7_compound_name": "ocnBgchem.zooc.tavg-ol-hxy-sea.day.GLB", + "uid": "83bbfb6a-7f07-11ef-9308-b1dd71e64bec" + }, + "ocnBgchem.zooc.tavg-ol-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_zooplankton_expressed_as_carbon_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Zooplankton Carbon Concentration", + "comment": "sum of zooplankton carbon component concentrations", + "dimensions": "longitude latitude olevel time", + "out_name": "zooc", + "type": "real", + "positive": "", + "spatial_shape": "XY-O", + "temporal_shape": "time-intv", + "cmip6_table": "Omon", + "physical_parameter_name": "zooc", + "variableRootDD": "zooc", + "branding_label": "tavg-ol-hxy-sea", + "branded_variable_name": "zooc_tavg-ol-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "Omon.zooc", + "cmip7_compound_name": "ocnBgchem.zooc.tavg-ol-hxy-sea.mon.GLB", + "uid": "ba9f57bc-e5dd-11e5-8482-ac72891c3257" + }, + "seaIce.evspsbl.tavg-u-hxy-si.mon.GLB": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "water_evapotranspiration_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean where sea_ice over all_area_types", + "cell_measures": "area: areacello", + "long_name": "Sea-Ice Mass Change Through Evaporation and Sublimation", + "comment": "Rate of change of sea-ice mass change through evaporation and sublimation divided by grid-cell area. If a model does not differentiate between the sublimation of snow and sea ice, we recommend to report sidmassevapsubl as zero as long as the ice is snow covered, and to report any sublimation within the variable sisndmasssubl.", + "dimensions": "longitude latitude time", + "out_name": "sidmassevapsubl", + "type": "real", + "positive": "up", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "SImon", + "physical_parameter_name": "sidmassevapsubl", + "variableRootDD": "evspsbl", + "branding_label": "tavg-u-hxy-si", + "branded_variable_name": "evspsbl_tavg-u-hxy-si", + "region": "GLB", + "cmip6_compound_name": "SImon.sidmassevapsubl", + "cmip7_compound_name": "seaIce.evspsbl.tavg-u-hxy-si.mon.GLB", + "uid": "713aff10-faa7-11e6-bfb7-ac72891c3257" + }, + "seaIce.prra.tavg-u-hxy-si.mon.GLB": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "rainfall_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean where sea_ice (mask=siconc)", + "cell_measures": "area: areacello", + "long_name": "Rainfall Rate over Sea Ice", + "comment": "Mass of liquid precipitation falling onto sea ice divided by grid-cell area. If the rain is directly put into the ocean, it should not be counted towards sipr. Always positive or zero.", + "dimensions": "longitude latitude time", + "out_name": "sipr", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "SImon", + "physical_parameter_name": "sipr", + "variableRootDD": "prra", + "branding_label": "tavg-u-hxy-si", + "branded_variable_name": "prra_tavg-u-hxy-si", + "region": "GLB", + "cmip6_compound_name": "SImon.sipr", + "cmip7_compound_name": "seaIce.prra.tavg-u-hxy-si.mon.GLB", + "uid": "7109e6a0-faa7-11e6-bfb7-ac72891c3257" + }, + "seaIce.prsn.tavg-u-hxy-si.mon.GLB": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "snowfall_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean where sea_ice (mask=siconc)", + "cell_measures": "area: areacello", + "long_name": "Snow Mass Change Through Snowfall", + "comment": "Rate of change of snow mass due to solid precipitation (i.e. snowfall) falling onto sea ice divided by grid-cell area. Always positive or zero.", + "dimensions": "longitude latitude time", + "out_name": "sisndmasssnf", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "SImon", + "physical_parameter_name": "sisndmasssnf", + "variableRootDD": "prsn", + "branding_label": "tavg-u-hxy-si", + "branded_variable_name": "prsn_tavg-u-hxy-si", + "region": "GLB", + "cmip6_compound_name": "SImon.sisndmasssnf", + "cmip7_compound_name": "seaIce.prsn.tavg-u-hxy-si.mon.GLB", + "uid": "71401c0c-faa7-11e6-bfb7-ac72891c3257" + }, + "seaIce.rlds.tavg-u-hxy-si.day.GLB": { + "frequency": "day", + "modeling_realm": "seaIce", + "standard_name": "surface_downwelling_longwave_flux_in_air", + "units": "W m-2", + "cell_methods": "area: time: mean where sea_ice (mask=siconca)", + "cell_measures": "area: areacella", + "long_name": "Downwelling Longwave Flux over Sea Ice", + "comment": "Downwelling longwave flux from the atmosphere to the sea-ice surface\u00a0(energy flow per sea ice area). Always positive or zero.", + "dimensions": "longitude latitude time", + "out_name": "sifllwdtop", + "type": "real", + "positive": "down", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "SIday", + "physical_parameter_name": "sifllwdtop", + "variableRootDD": "rlds", + "branding_label": "tavg-u-hxy-si", + "branded_variable_name": "rlds_tavg-u-hxy-si", + "region": "GLB", + "cmip6_compound_name": "SIday.sifllwdtop", + "cmip7_compound_name": "seaIce.rlds.tavg-u-hxy-si.day.GLB", + "uid": "83bbfb40-7f07-11ef-9308-b1dd71e64bec" + }, + "seaIce.rlds.tavg-u-hxy-si.mon.GLB": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "surface_downwelling_longwave_flux_in_air", + "units": "W m-2", + "cell_methods": "area: time: mean where sea_ice (mask=siconca)", + "cell_measures": "area: areacella", + "long_name": "Downwelling Longwave Flux over Sea Ice", + "comment": "Downwelling longwave flux from the atmosphere to the sea-ice surface\u00a0(energy flow per sea ice area). Always positive or zero.", + "dimensions": "longitude latitude time", + "out_name": "sifllwdtop", + "type": "real", + "positive": "down", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "SImon", + "physical_parameter_name": "sifllwdtop", + "variableRootDD": "rlds", + "branding_label": "tavg-u-hxy-si", + "branded_variable_name": "rlds_tavg-u-hxy-si", + "region": "GLB", + "cmip6_compound_name": "SImon.sifllwdtop", + "cmip7_compound_name": "seaIce.rlds.tavg-u-hxy-si.mon.GLB", + "uid": "710a7534-faa7-11e6-bfb7-ac72891c3257" + }, + "seaIce.rlus.tavg-u-hxy-si.day.GLB": { + "frequency": "day", + "modeling_realm": "seaIce", + "standard_name": "surface_upwelling_longwave_flux_in_air", + "units": "W m-2", + "cell_methods": "area: time: mean where sea_ice (mask=siconca)", + "cell_measures": "area: areacella", + "long_name": "Upwelling Longwave Flux over Sea Ice", + "comment": "Upward longwave flux from the sea-ice surface to the atmosphere\u00a0(energy flow per sea ice area). Always positive or zero.", + "dimensions": "longitude latitude time", + "out_name": "sifllwutop", + "type": "real", + "positive": "up", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "SIday", + "physical_parameter_name": "sifllwutop", + "variableRootDD": "rlus", + "branding_label": "tavg-u-hxy-si", + "branded_variable_name": "rlus_tavg-u-hxy-si", + "region": "GLB", + "cmip6_compound_name": "SIday.sifllwutop", + "cmip7_compound_name": "seaIce.rlus.tavg-u-hxy-si.day.GLB", + "uid": "83bbfb3f-7f07-11ef-9308-b1dd71e64bec" + }, + "seaIce.rlus.tavg-u-hxy-si.mon.GLB": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "surface_upwelling_longwave_flux_in_air", + "units": "W m-2", + "cell_methods": "area: time: mean where sea_ice (mask=siconca)", + "cell_measures": "area: areacella", + "long_name": "Upwelling Longwave Flux over Sea Ice", + "comment": "Upward longwave flux from the sea-ice surface to the atmosphere\u00a0(energy flow per sea ice area). Always positive or zero.", + "dimensions": "longitude latitude time", + "out_name": "sifllwutop", + "type": "real", + "positive": "up", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "SImon", + "physical_parameter_name": "sifllwutop", + "variableRootDD": "rlus", + "branding_label": "tavg-u-hxy-si", + "branded_variable_name": "rlus_tavg-u-hxy-si", + "region": "GLB", + "cmip6_compound_name": "SImon.sifllwutop", + "cmip7_compound_name": "seaIce.rlus.tavg-u-hxy-si.mon.GLB", + "uid": "71460f22-faa7-11e6-bfb7-ac72891c3257" + }, + "seaIce.rsds.tavg-u-hxy-si.day.GLB": { + "frequency": "day", + "modeling_realm": "seaIce", + "standard_name": "surface_downwelling_shortwave_flux_in_air", + "units": "W m-2", + "cell_methods": "area: time: mean where sea_ice (mask=siconca)", + "cell_measures": "area: areacella", + "long_name": "Downwelling Shortwave Flux over Sea Ice", + "comment": "Downwelling shortwave flux from the atmosphere to the sea-ice surface (energy flow per sea ice area). Always positive or zero.", + "dimensions": "longitude latitude time", + "out_name": "siflswdtop", + "type": "real", + "positive": "down", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "SIday", + "physical_parameter_name": "siflswdtop", + "variableRootDD": "rsds", + "branding_label": "tavg-u-hxy-si", + "branded_variable_name": "rsds_tavg-u-hxy-si", + "region": "GLB", + "cmip6_compound_name": "SIday.siflswdtop", + "cmip7_compound_name": "seaIce.rsds.tavg-u-hxy-si.day.GLB", + "uid": "83bbfb3b-7f07-11ef-9308-b1dd71e64bec" + }, + "seaIce.rsds.tavg-u-hxy-si.mon.GLB": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "surface_downwelling_shortwave_flux_in_air", + "units": "W m-2", + "cell_methods": "area: time: mean where sea_ice (mask=siconca)", + "cell_measures": "area: areacella", + "long_name": "Downwelling Shortwave Flux over Sea Ice", + "comment": "Downwelling shortwave flux from the atmosphere to the sea-ice surface\u00a0(energy flow per sea ice area). Always positive or zero.", + "dimensions": "longitude latitude time", + "out_name": "siflswdtop", + "type": "real", + "positive": "down", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "SImon", + "physical_parameter_name": "siflswdtop", + "variableRootDD": "rsds", + "branding_label": "tavg-u-hxy-si", + "branded_variable_name": "rsds_tavg-u-hxy-si", + "region": "GLB", + "cmip6_compound_name": "SImon.siflswdtop", + "cmip7_compound_name": "seaIce.rsds.tavg-u-hxy-si.mon.GLB", + "uid": "713bf6d6-faa7-11e6-bfb7-ac72891c3257" + }, + "seaIce.rsus.tavg-u-hxy-si.day.GLB": { + "frequency": "day", + "modeling_realm": "seaIce", + "standard_name": "surface_upwelling_shortwave_flux_in_air", + "units": "W m-2", + "cell_methods": "area: time: mean where sea_ice (mask=siconca)", + "cell_measures": "area: areacella", + "long_name": "Upwelling Shortwave Flux over Sea Ice", + "comment": "Upward shortwave flux from the sea-ice surface to the atmosphere\u00a0(energy flow per sea ice area). Always positive or zero.", + "dimensions": "longitude latitude time", + "out_name": "siflswutop", + "type": "real", + "positive": "up", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "SIday", + "physical_parameter_name": "siflswutop", + "variableRootDD": "rsus", + "branding_label": "tavg-u-hxy-si", + "branded_variable_name": "rsus_tavg-u-hxy-si", + "region": "GLB", + "cmip6_compound_name": "SIday.siflswutop", + "cmip7_compound_name": "seaIce.rsus.tavg-u-hxy-si.day.GLB", + "uid": "83bbfb3a-7f07-11ef-9308-b1dd71e64bec" + }, + "seaIce.rsus.tavg-u-hxy-si.mon.GLB": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "surface_upwelling_shortwave_flux_in_air", + "units": "W m-2", + "cell_methods": "area: time: mean where sea_ice (mask=siconca)", + "cell_measures": "area: areacella", + "long_name": "Upwelling Shortwave Flux over Sea Ice", + "comment": "Upward shortwave flux from the sea-ice surface to the atmosphere\u00a0(energy flow per sea ice area). Always positive or zero.", + "dimensions": "longitude latitude time", + "out_name": "siflswutop", + "type": "real", + "positive": "up", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "SImon", + "physical_parameter_name": "siflswutop", + "variableRootDD": "rsus", + "branding_label": "tavg-u-hxy-si", + "branded_variable_name": "rsus_tavg-u-hxy-si", + "region": "GLB", + "cmip6_compound_name": "SImon.siflswutop", + "cmip7_compound_name": "seaIce.rsus.tavg-u-hxy-si.mon.GLB", + "uid": "710ad164-faa7-11e6-bfb7-ac72891c3257" + }, + "seaIce.sbl.tavg-u-hxy-si.mon.GLB": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "tendency_of_atmosphere_mass_content_of_water_vapor_due_to_sublimation_of_surface_snow_and_ice", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean where sea_ice (mask=siconc)", + "cell_measures": "area: areacello", + "long_name": "Snow Mass Rate of Change Through Evaporation or Sublimation", + "comment": "Rate of change of snow mass through sublimation divided by grid-cell area. If a model does not differentiate between the sublimation of snow and sea ice, we recommend to report all sublimation within sisndmasssubl as long as the ice is snow covered.", + "dimensions": "longitude latitude time", + "out_name": "sisndmasssubl", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "SImon", + "physical_parameter_name": "sisndmasssubl", + "variableRootDD": "sbl", + "branding_label": "tavg-u-hxy-si", + "branded_variable_name": "sbl_tavg-u-hxy-si", + "region": "GLB", + "cmip6_compound_name": "SImon.sisndmasssubl", + "cmip7_compound_name": "seaIce.sbl.tavg-u-hxy-si.mon.GLB", + "uid": "712fc2da-faa7-11e6-bfb7-ac72891c3257" + }, + "seaIce.sfdsi.tavg-u-hxy-si.mon.GLB": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "downward_sea_ice_basal_salt_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean where sea_ice (mask=siconc)", + "cell_measures": "area: areacello", + "long_name": "Salt Flux from Sea Ice", + "comment": "Total flux of salt from water into sea ice. This flux is upward (negative) during ice growth when salt is embedded into the ice and downward (positive) during melt when salt from sea ice is again released to the ocean.", + "dimensions": "longitude latitude time", + "out_name": "siflsaltbot", + "type": "real", + "positive": "down", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "SImon", + "physical_parameter_name": "siflsaltbot", + "variableRootDD": "sfdsi", + "branding_label": "tavg-u-hxy-si", + "branded_variable_name": "sfdsi_tavg-u-hxy-si", + "region": "GLB", + "cmip6_compound_name": "SImon.siflsaltbot", + "cmip7_compound_name": "seaIce.sfdsi.tavg-u-hxy-si.mon.GLB", + "uid": "83bbfb25-7f07-11ef-9308-b1dd71e64bec" + }, + "seaIce.siage.tavg-u-hxy-si.day.GLB": { + "frequency": "day", + "modeling_realm": "seaIce", + "standard_name": "age_of_sea_ice", + "units": "s", + "cell_methods": "area: time: mean where sea_ice (mask=siconc)", + "cell_measures": "area: areacello", + "long_name": "Age of Sea Ice", + "comment": "Age of sea ice since its formation in open water.", + "dimensions": "longitude latitude time", + "out_name": "siage", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "SIday", + "physical_parameter_name": "siage", + "variableRootDD": "siage", + "branding_label": "tavg-u-hxy-si", + "branded_variable_name": "siage_tavg-u-hxy-si", + "region": "GLB", + "cmip6_compound_name": "SIday.siage", + "cmip7_compound_name": "seaIce.siage.tavg-u-hxy-si.day.GLB", + "uid": "83bbfb48-7f07-11ef-9308-b1dd71e64bec" + }, + "seaIce.siage.tavg-u-hxy-si.mon.30S-90S": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "age_of_sea_ice", + "units": "s", + "cell_methods": "area: time: mean where sea_ice (mask=siconc)", + "cell_measures": "area: areacello", + "long_name": "Age of Sea Ice", + "comment": "Age of sea ice since its formation in open water.", + "dimensions": "longitude latitude time", + "out_name": "siage", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "SImon", + "physical_parameter_name": "siage", + "variableRootDD": "siage", + "branding_label": "tavg-u-hxy-si", + "branded_variable_name": "siage_tavg-u-hxy-si", + "region": "30S-90S", + "cmip6_compound_name": "SImon.siageSouth30", + "cmip7_compound_name": "seaIce.siage.tavg-u-hxy-si.mon.30S-90S", + "uid": "80ac31d1-a698-11ef-914a-613c0433d878" + }, + "seaIce.siage.tavg-u-hxy-si.mon.GLB": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "age_of_sea_ice", + "units": "s", + "cell_methods": "area: time: mean where sea_ice (mask=siconc)", + "cell_measures": "area: areacello", + "long_name": "Age of Sea Ice", + "comment": "Age of sea ice since its formation in open water.", + "dimensions": "longitude latitude time", + "out_name": "siage", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "SImon", + "physical_parameter_name": "siage", + "variableRootDD": "siage", + "branding_label": "tavg-u-hxy-si", + "branded_variable_name": "siage_tavg-u-hxy-si", + "region": "GLB", + "cmip6_compound_name": "SImon.siage", + "cmip7_compound_name": "seaIce.siage.tavg-u-hxy-si.mon.GLB", + "uid": "712ebec6-faa7-11e6-bfb7-ac72891c3257" + }, + "seaIce.siarea.tavg-u-hm-u.day.NH": { + "frequency": "day", + "modeling_realm": "seaIce", + "standard_name": "sea_ice_area", + "units": "1e6 km2", + "cell_methods": "area: sum time: mean", + "cell_measures": "", + "long_name": "Sea-Ice Area North", + "comment": "Total integrated area of sea ice in the Northern Hemisphere (where siconc > 0). Does not include grid cells partially covered by land.", + "dimensions": "time", + "out_name": "siarean", + "type": "real", + "positive": "", + "spatial_shape": "na-na", + "temporal_shape": "time-intv", + "cmip6_table": "SIday", + "physical_parameter_name": "siarean", + "variableRootDD": "siarea", + "branding_label": "tavg-u-hm-u", + "branded_variable_name": "siarea_tavg-u-hm-u", + "region": "NH", + "cmip6_compound_name": "SIday.siarean", + "cmip7_compound_name": "seaIce.siarea.tavg-u-hm-u.day.NH", + "uid": "80ab725d-a698-11ef-914a-613c0433d878" + }, + "seaIce.siarea.tavg-u-hm-u.day.SH": { + "frequency": "day", + "modeling_realm": "seaIce", + "standard_name": "sea_ice_area", + "units": "1e6 km2", + "cell_methods": "area: sum time: mean", + "cell_measures": "", + "long_name": "Sea-Ice Area South", + "comment": "Total integrated area of sea ice in the Southern Hemisphere (where siconc > 0). Does not include grid cells partially covered by land.", + "dimensions": "time", + "out_name": "siareas", + "type": "real", + "positive": "", + "spatial_shape": "na-na", + "temporal_shape": "time-intv", + "cmip6_table": "SIday", + "physical_parameter_name": "siareas", + "variableRootDD": "siarea", + "branding_label": "tavg-u-hm-u", + "branded_variable_name": "siarea_tavg-u-hm-u", + "region": "SH", + "cmip6_compound_name": "SIday.siareas", + "cmip7_compound_name": "seaIce.siarea.tavg-u-hm-u.day.SH", + "uid": "80ab725e-a698-11ef-914a-613c0433d878" + }, + "seaIce.siarea.tavg-u-hm-u.mon.NH": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "sea_ice_area", + "units": "1e6 km2", + "cell_methods": "area: sum time: mean", + "cell_measures": "", + "long_name": "Sea-Ice Area North", + "comment": "Total integrated area of sea ice in the Northern Hemisphere (where siconc > 0). Does not include grid cells partially covered by land.", + "dimensions": "time", + "out_name": "siarean", + "type": "real", + "positive": "", + "spatial_shape": "na-na", + "temporal_shape": "time-intv", + "cmip6_table": "SImon", + "physical_parameter_name": "siarean", + "variableRootDD": "siarea", + "branding_label": "tavg-u-hm-u", + "branded_variable_name": "siarea_tavg-u-hm-u", + "region": "NH", + "cmip6_compound_name": "SImon.siarean", + "cmip7_compound_name": "seaIce.siarea.tavg-u-hm-u.mon.NH", + "uid": "7132f446-faa7-11e6-bfb7-ac72891c3257" + }, + "seaIce.siarea.tavg-u-hm-u.mon.SH": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "sea_ice_area", + "units": "1e6 km2", + "cell_methods": "area: sum time: mean", + "cell_measures": "", + "long_name": "Sea-Ice Area South", + "comment": "Total integrated area of sea ice in the Southern Hemisphere (where siconc > 0). Does not include grid cells partially covered by land.", + "dimensions": "time", + "out_name": "siareas", + "type": "real", + "positive": "", + "spatial_shape": "na-na", + "temporal_shape": "time-intv", + "cmip6_table": "SImon", + "physical_parameter_name": "siareas", + "variableRootDD": "siarea", + "branding_label": "tavg-u-hm-u", + "branded_variable_name": "siarea_tavg-u-hm-u", + "region": "SH", + "cmip6_compound_name": "SImon.siareas", + "cmip7_compound_name": "seaIce.siarea.tavg-u-hm-u.mon.SH", + "uid": "7124f9a4-faa7-11e6-bfb7-ac72891c3257" + }, + "seaIce.siareaacrossline.tavg-u-ht-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "sea_ice_area_transport_across_line", + "units": "m2 s-1", + "cell_methods": "time: mean", + "cell_measures": "", + "long_name": "Sea-Ice Area Flux Through Straits", + "comment": "Net (sum of transport in all directions) sea ice area transport through the following four passages, positive into the Arctic Ocean. Note that the definitions of the passages are for SIMIP purposes just meant as default values as given by the physical ocean MIP described in Griffies et al. (2016). Individual models might chose slightly different definitions as given by their grid geometry. 1. Fram Strait: (11.5W, 81.3N) to (10.5E, 79.6N). 2. Canadian Arctic Archipelago: (128.2W, 70.6N) to (59.3W, 82.1N). 3. Barents Sea Opening: (16.8E, 76.5N) to (19.2E, 70.2N). 4. Bering Strait: (171W, 66.2N) to (166W, 65N).", + "dimensions": "siline time", + "out_name": "siareaacrossline", + "type": "real", + "positive": "", + "spatial_shape": "TRS-na", + "temporal_shape": "time-intv", + "cmip6_table": "SImon", + "physical_parameter_name": "siareaacrossline", + "variableRootDD": "siareaacrossline", + "branding_label": "tavg-u-ht-u", + "branded_variable_name": "siareaacrossline_tavg-u-ht-u", + "region": "GLB", + "cmip6_compound_name": "SImon.siareaacrossline", + "cmip7_compound_name": "seaIce.siareaacrossline.tavg-u-ht-u.mon.GLB", + "uid": "712442ca-faa7-11e6-bfb7-ac72891c3257" + }, + "seaIce.sicompstren.tavg-u-hxy-si.mon.GLB": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "compressive_strength_of_sea_ice", + "units": "N m-1", + "cell_methods": "area: time: mean where sea_ice (mask=siconc)", + "cell_measures": "area: areacello", + "long_name": "Compressive Sea Ice Strength", + "comment": "Computed strength of the ice pack, defined as the energy (J m-2) dissipated per unit area removed from the ice pack under compression, and assumed proportional to the change in potential energy caused by ridging. For Hibler-type models, this is P = P\\* h exp(-C(1-A)) where P\\* is compressive strength, h is ice thickness, A is compactness and C is strength reduction constant.", + "dimensions": "longitude latitude time", + "out_name": "sicompstren", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "SImon", + "physical_parameter_name": "sicompstren", + "variableRootDD": "sicompstren", + "branding_label": "tavg-u-hxy-si", + "branded_variable_name": "sicompstren_tavg-u-hxy-si", + "region": "GLB", + "cmip6_compound_name": "SImon.sicompstren", + "cmip7_compound_name": "seaIce.sicompstren.tavg-u-hxy-si.mon.GLB", + "uid": "71166880-faa7-11e6-bfb7-ac72891c3257" + }, + "seaIce.siconc.tavg-u-hxy-u.day.GLB": { + "frequency": "day", + "modeling_realm": "seaIce", + "standard_name": "sea_ice_area_fraction", + "units": "%", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacello", + "long_name": "Sea-Ice Area Percentage (Ocean Grid)", + "comment": "Percentage of a given grid cell that is covered by sea ice on the ocean grid, independent of the thickness of that ice.", + "dimensions": "longitude latitude time", + "out_name": "siconc", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "SIday", + "physical_parameter_name": "siconc", + "variableRootDD": "siconc", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "siconc_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "SIday.siconc", + "cmip7_compound_name": "seaIce.siconc.tavg-u-hxy-u.day.GLB", + "uid": "85c3e888-357c-11e7-8257-5404a60d96b5" + }, + "seaIce.siconc.tavg-u-hxy-u.mon.30S-90S": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "sea_ice_area_fraction", + "units": "%", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacello", + "long_name": "Sea-Ice Area Percentage (Ocean Grid)", + "comment": "Percentage of a given grid cell that is covered by sea ice on the ocean grid, independent of the thickness of that ice.", + "dimensions": "longitude latitude time", + "out_name": "siconc", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "SImon", + "physical_parameter_name": "siconc", + "variableRootDD": "siconc", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "siconc_tavg-u-hxy-u", + "region": "30S-90S", + "cmip6_compound_name": "SImon.siconcSouth30", + "cmip7_compound_name": "seaIce.siconc.tavg-u-hxy-u.mon.30S-90S", + "uid": "80ac31d2-a698-11ef-914a-613c0433d878" + }, + "seaIce.siconc.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "sea_ice_area_fraction", + "units": "%", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacello", + "long_name": "Sea-Ice Area Percentage (Ocean Grid)(Ocean Grid)", + "comment": "Percentage of a given grid cell that is covered by sea ice on the ocean grid, independent of the thickness of that ice.", + "dimensions": "longitude latitude time", + "out_name": "siconc", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "SImon", + "physical_parameter_name": "siconc", + "variableRootDD": "siconc", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "siconc_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "SImon.siconc", + "cmip7_compound_name": "seaIce.siconc.tavg-u-hxy-u.mon.GLB", + "uid": "86119ff6-357c-11e7-8257-5404a60d96b5" + }, + "seaIce.siconca.tavg-u-hxy-u.day.GLB": { + "frequency": "day", + "modeling_realm": "seaIce", + "standard_name": "sea_ice_area_fraction", + "units": "%", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Sea-Ice Area Percentage (Atmospheric Grid)", + "comment": "Percentage of a given grid cell that is covered by sea ice on the atmosphere grid, independent of the thickness of that ice.", + "dimensions": "longitude latitude time", + "out_name": "siconca", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "SIday", + "physical_parameter_name": "siconca", + "variableRootDD": "siconca", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "siconca_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "SIday.siconca", + "cmip7_compound_name": "seaIce.siconca.tavg-u-hxy-u.day.GLB", + "uid": "d243b4a4-4a9f-11e6-b84e-ac72891c3257" + }, + "seaIce.siconca.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "sea_ice_area_fraction", + "units": "%", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Sea-Ice Area Percentage (Atmospheric Grid)", + "comment": "Percentage of a given grid cell that is covered by sea ice on the atmosphere grid, independent of the thickness of that ice.", + "dimensions": "longitude latitude time", + "out_name": "siconca", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "SImon", + "physical_parameter_name": "siconca", + "variableRootDD": "siconca", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "siconca_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "SImon.siconca", + "cmip7_compound_name": "seaIce.siconca.tavg-u-hxy-u.mon.GLB", + "uid": "71190054-faa7-11e6-bfb7-ac72891c3257" + }, + "seaIce.sidconcdyn.tavg-u-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "tendency_of_sea_ice_area_fraction_due_to_dynamics", + "units": "s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Sea-Ice Area Fraction Tendency Due to Dynamics", + "comment": "Total rate of change in sea-ice area fraction through dynamics-related processes (advection, divergence, etc.).", + "dimensions": "longitude latitude time", + "out_name": "sidconcdyn", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "SImon", + "physical_parameter_name": "sidconcdyn", + "variableRootDD": "sidconcdyn", + "branding_label": "tavg-u-hxy-sea", + "branded_variable_name": "sidconcdyn_tavg-u-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "SImon.sidconcdyn", + "cmip7_compound_name": "seaIce.sidconcdyn.tavg-u-hxy-sea.mon.GLB", + "uid": "714c1d90-faa7-11e6-bfb7-ac72891c3257" + }, + "seaIce.sidconcth.tavg-u-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "tendency_of_sea_ice_area_fraction_due_to_thermodynamics", + "units": "s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Sea-Ice Area Fraction Tendency Due to Thermodynamics", + "comment": "Total rate of change in sea-ice area fraction through thermodynamic processes.", + "dimensions": "longitude latitude time", + "out_name": "sidconcth", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "SImon", + "physical_parameter_name": "sidconcth", + "variableRootDD": "sidconcth", + "branding_label": "tavg-u-hxy-sea", + "branded_variable_name": "sidconcth_tavg-u-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "SImon.sidconcth", + "cmip7_compound_name": "seaIce.sidconcth.tavg-u-hxy-sea.mon.GLB", + "uid": "711e985c-faa7-11e6-bfb7-ac72891c3257" + }, + "seaIce.sidivvel.tpt-u-hxy-si.mon.GLB": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "divergence_of_sea_ice_velocity", + "units": "s-1", + "cell_methods": "area: mean where sea_ice (mask=siconc) time: point", + "cell_measures": "area: areacello", + "long_name": "Divergence of the Sea-Ice Velocity Field", + "comment": "Divergence of sea-ice velocity field (first shear strain invariant). Requested as instantaneous value at the center of the month (i.e., first timestep of the 15th day of the month).", + "dimensions": "longitude latitude time1", + "out_name": "sidivvel", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-point", + "cmip6_table": "SImon", + "physical_parameter_name": "sidivvel", + "variableRootDD": "sidivvel", + "branding_label": "tpt-u-hxy-si", + "branded_variable_name": "sidivvel_tpt-u-hxy-si", + "region": "GLB", + "cmip6_compound_name": "SImon.sidivvel", + "cmip7_compound_name": "seaIce.sidivvel.tpt-u-hxy-si.mon.GLB", + "uid": "71436966-faa7-11e6-bfb7-ac72891c3257" + }, + "seaIce.sidmassdyn.tavg-u-hxy-si.mon.GLB": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "tendency_of_sea_ice_amount_due_to_sea_ice_dynamics", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean where sea_ice over all_area_types", + "cell_measures": "area: areacello", + "long_name": "Sea-Ice Mass Change from Dynamics", + "comment": "Total rate of change in sea-ice mass through dynamics-related processes (advection, divergence, etc.) divided by grid-cell area.", + "dimensions": "longitude latitude time", + "out_name": "sidmassdyn", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "SImon", + "physical_parameter_name": "sidmassdyn", + "variableRootDD": "sidmassdyn", + "branding_label": "tavg-u-hxy-si", + "branded_variable_name": "sidmassdyn_tavg-u-hxy-si", + "region": "GLB", + "cmip6_compound_name": "SImon.sidmassdyn", + "cmip7_compound_name": "seaIce.sidmassdyn.tavg-u-hxy-si.mon.GLB", + "uid": "711e3862-faa7-11e6-bfb7-ac72891c3257" + }, + "seaIce.sidmassgrowthbot.tavg-u-hxy-si.mon.GLB": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "tendency_of_sea_ice_amount_due_to_congelation_ice_accumulation", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean where sea_ice over all_area_types", + "cell_measures": "area: areacello", + "long_name": "Sea-Ice Mass Change Through Basal Growth", + "comment": "Rate of change of sea-ice mass due to vertical growth of existing sea ice at its base divided by grid-cell area. Note that this number is always positive or zero since sea-ice melt is collected in sidmassmeltbot. This is to account for differential growth and melt in models with a sub-grid scale ice thickness distribution.", + "dimensions": "longitude latitude time", + "out_name": "sidmassgrowthbot", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "SImon", + "physical_parameter_name": "sidmassgrowthbot", + "variableRootDD": "sidmassgrowthbot", + "branding_label": "tavg-u-hxy-si", + "branded_variable_name": "sidmassgrowthbot_tavg-u-hxy-si", + "region": "GLB", + "cmip6_compound_name": "SImon.sidmassgrowthbot", + "cmip7_compound_name": "seaIce.sidmassgrowthbot.tavg-u-hxy-si.mon.GLB", + "uid": "71190c48-faa7-11e6-bfb7-ac72891c3257" + }, + "seaIce.sidmassgrowthsi.tavg-u-hxy-si.mon.GLB": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "tendency_of_sea_ice_amount_due_to_conversion_of_snow_to_sea_ice", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean where sea_ice over all_area_types", + "cell_measures": "area: areacello", + "long_name": "Sea-Ice Mass Change Through Snow-to-Ice Conversion", + "comment": "Rate of change of sea-ice mass due to transformation of snow to sea ice divided by grid-cell area. Always positive or zero.", + "dimensions": "longitude latitude time", + "out_name": "sidmassgrowthsi", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "SImon", + "physical_parameter_name": "sidmassgrowthsi", + "variableRootDD": "sidmassgrowthsi", + "branding_label": "tavg-u-hxy-si", + "branded_variable_name": "sidmassgrowthsi_tavg-u-hxy-si", + "region": "GLB", + "cmip6_compound_name": "SImon.sidmassgrowthsi", + "cmip7_compound_name": "seaIce.sidmassgrowthsi.tavg-u-hxy-si.mon.GLB", + "uid": "714ef880-faa7-11e6-bfb7-ac72891c3257" + }, + "seaIce.sidmassgrowthwat.tavg-u-hxy-si.mon.GLB": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "tendency_of_sea_ice_amount_due_to_frazil_ice_accumulation_in_leads", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean where sea_ice over all_area_types", + "cell_measures": "area: areacello", + "long_name": "Sea-Ice Mass Change Through Growth in Supercooled Open Water (Frazil)", + "comment": "Rate of change of sea-ice mass due to sea ice formation in supercooled water (often through frazil formation) divided by grid-cell area. Always positive or zero.", + "dimensions": "longitude latitude time", + "out_name": "sidmassgrowthwat", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "SImon", + "physical_parameter_name": "sidmassgrowthwat", + "variableRootDD": "sidmassgrowthwat", + "branding_label": "tavg-u-hxy-si", + "branded_variable_name": "sidmassgrowthwat_tavg-u-hxy-si", + "region": "GLB", + "cmip6_compound_name": "SImon.sidmassgrowthwat", + "cmip7_compound_name": "seaIce.sidmassgrowthwat.tavg-u-hxy-si.mon.GLB", + "uid": "71310690-faa7-11e6-bfb7-ac72891c3257" + }, + "seaIce.sidmassmeltbot.tavg-u-hxy-si.mon.GLB": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "tendency_of_sea_ice_amount_due_to_basal_melting", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean where sea_ice over all_area_types", + "cell_measures": "area: areacello", + "long_name": "Sea-Ice Mass Change Through Bottom Melting", + "comment": "Rate of change of sea-ice mass through melting/dissolution at the ice bottom divided by grid-cell area. Note that this number is always zero or negative since sea-ice growth is collected in sidmassgrowthbot. This is to account for differential growth and melt in models with a sub-grid scale ice thickness distribution.", + "dimensions": "longitude latitude time", + "out_name": "sidmassmeltbot", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "SImon", + "physical_parameter_name": "sidmassmeltbot", + "variableRootDD": "sidmassmeltbot", + "branding_label": "tavg-u-hxy-si", + "branded_variable_name": "sidmassmeltbot_tavg-u-hxy-si", + "region": "GLB", + "cmip6_compound_name": "SImon.sidmassmeltbot", + "cmip7_compound_name": "seaIce.sidmassmeltbot.tavg-u-hxy-si.mon.GLB", + "uid": "7129c466-faa7-11e6-bfb7-ac72891c3257" + }, + "seaIce.sidmassmeltlat.tavg-u-hxy-si.mon.GLB": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "tendency_of_sea_ice_amount_due_to_lateral_melting", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean where sea_ice over all_area_types", + "cell_measures": "area: areacello", + "long_name": "Sea-Ice Mass Change Through Lateral Melting", + "comment": "Rate of change of sea-ice mass through lateral melting/dissolution divided by grid-cell area (report zero if not explicitly calculated thermodynamically). Always negative or zero.", + "dimensions": "longitude latitude time", + "out_name": "sidmassmeltlat", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "SImon", + "physical_parameter_name": "sidmassmeltlat", + "variableRootDD": "sidmassmeltlat", + "branding_label": "tavg-u-hxy-si", + "branded_variable_name": "sidmassmeltlat_tavg-u-hxy-si", + "region": "GLB", + "cmip6_compound_name": "SImon.sidmassmeltlat", + "cmip7_compound_name": "seaIce.sidmassmeltlat.tavg-u-hxy-si.mon.GLB", + "uid": "7124ed7e-faa7-11e6-bfb7-ac72891c3257" + }, + "seaIce.sidmassmelttop.tavg-u-hxy-si.mon.GLB": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "tendency_of_sea_ice_amount_due_to_surface_melting", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean where sea_ice over all_area_types", + "cell_measures": "area: areacello", + "long_name": "Sea-Ice Mass Change Through Surface Melting", + "comment": "Rate of change of sea-ice mass through melting at the ice surface divided by grid-cell area. This number is independent of the actual fate of the meltwater, and will hence include all sea-ice meltwater that drains into the ocean and all sea-ice meltwater that is collected by a melt-pond parameterisation. Always negative or zero.", + "dimensions": "longitude latitude time", + "out_name": "sidmassmelttop", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "SImon", + "physical_parameter_name": "sidmassmelttop", + "variableRootDD": "sidmassmelttop", + "branding_label": "tavg-u-hxy-si", + "branded_variable_name": "sidmassmelttop_tavg-u-hxy-si", + "region": "GLB", + "cmip6_compound_name": "SImon.sidmassmelttop", + "cmip7_compound_name": "seaIce.sidmassmelttop.tavg-u-hxy-si.mon.GLB", + "uid": "7124e0ea-faa7-11e6-bfb7-ac72891c3257" + }, + "seaIce.sidmassth.tavg-u-hxy-si.mon.GLB": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "tendency_of_sea_ice_amount_due_to_sea_ice_thermodynamics", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean where sea_ice over all_area_types", + "cell_measures": "area: areacello", + "long_name": "Sea-Ice Mass Change from Thermodynamics", + "comment": "Total rate of change in sea-ice mass from thermodynamic processes divided by grid-cell area.", + "dimensions": "longitude latitude time", + "out_name": "sidmassth", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "SImon", + "physical_parameter_name": "sidmassth", + "variableRootDD": "sidmassth", + "branding_label": "tavg-u-hxy-si", + "branded_variable_name": "sidmassth_tavg-u-hxy-si", + "region": "GLB", + "cmip6_compound_name": "SImon.sidmassth", + "cmip7_compound_name": "seaIce.sidmassth.tavg-u-hxy-si.mon.GLB", + "uid": "7127bce8-faa7-11e6-bfb7-ac72891c3257" + }, + "seaIce.sidmasstranx.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "sea_ice_x_transport", + "units": "kg s-1", + "cell_methods": "area: time: mean", + "cell_measures": "::MODEL", + "long_name": "X-Component of Sea-Ice Mass Transport", + "comment": "X-component of the sea-ice drift-induced transport of snow and sea ice mass.", + "dimensions": "longitude latitude time", + "out_name": "sidmasstranx", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "SImon", + "physical_parameter_name": "sidmasstranx", + "variableRootDD": "sidmasstranx", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "sidmasstranx_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "SImon.sidmasstranx", + "cmip7_compound_name": "seaIce.sidmasstranx.tavg-u-hxy-u.mon.GLB", + "uid": "71375d1a-faa7-11e6-bfb7-ac72891c3257" + }, + "seaIce.sidmasstrany.tavg-u-hxy-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "sea_ice_y_transport", + "units": "kg s-1", + "cell_methods": "area: time: mean", + "cell_measures": "::MODEL", + "long_name": "Y-Component of Sea-Ice Mass Transport", + "comment": "Y-component of the sea-ice drift-induced transport of snow and sea ice mass.", + "dimensions": "longitude latitude time", + "out_name": "sidmasstrany", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "SImon", + "physical_parameter_name": "sidmasstrany", + "variableRootDD": "sidmasstrany", + "branding_label": "tavg-u-hxy-u", + "branded_variable_name": "sidmasstrany_tavg-u-hxy-u", + "region": "GLB", + "cmip6_compound_name": "SImon.sidmasstrany", + "cmip7_compound_name": "seaIce.sidmasstrany.tavg-u-hxy-u.mon.GLB", + "uid": "714b47f8-faa7-11e6-bfb7-ac72891c3257" + }, + "seaIce.sidragbot.tavg-u-hxy-si.mon.GLB": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "sea_ice_basal_drag_coefficient_for_momentum_in_sea_water", + "units": "1", + "cell_methods": "area: time: mean where sea_ice (mask=siconc)", + "cell_measures": "area: areacello", + "long_name": "Ocean Drag Coefficient", + "comment": "Oceanic drag coefficient that is used to calculate the oceanic momentum drag on sea ice.", + "dimensions": "longitude latitude time", + "out_name": "sidragbot", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "SImon", + "physical_parameter_name": "sidragbot", + "variableRootDD": "sidragbot", + "branding_label": "tavg-u-hxy-si", + "branded_variable_name": "sidragbot_tavg-u-hxy-si", + "region": "GLB", + "cmip6_compound_name": "SImon.sidragbot", + "cmip7_compound_name": "seaIce.sidragbot.tavg-u-hxy-si.mon.GLB", + "uid": "7142bf02-faa7-11e6-bfb7-ac72891c3257" + }, + "seaIce.sidragtop.tavg-u-hxy-si.mon.GLB": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "surface_drag_coefficient_for_momentum_in_air", + "units": "1", + "cell_methods": "area: time: mean where sea_ice (mask=siconc)", + "cell_measures": "area: areacello", + "long_name": "Atmospheric Drag Coefficient", + "comment": "Atmospheric drag coefficient that is used to calculate the atmospheric momentum drag on sea ice.", + "dimensions": "longitude latitude time", + "out_name": "sidragtop", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "SImon", + "physical_parameter_name": "sidragtop", + "variableRootDD": "sidragtop", + "branding_label": "tavg-u-hxy-si", + "branded_variable_name": "sidragtop_tavg-u-hxy-si", + "region": "GLB", + "cmip6_compound_name": "SImon.sidragtop", + "cmip7_compound_name": "seaIce.sidragtop.tavg-u-hxy-si.mon.GLB", + "uid": "711ece62-faa7-11e6-bfb7-ac72891c3257" + }, + "seaIce.sieqthick.tavg-u-hxy-si.mon.GLB": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "sea_ice_thickness", + "units": "m", + "cell_methods": "area: time: mean where sea_ice over all_area_types", + "cell_measures": "area: areacello", + "long_name": "Sea-Ice Volume per Area", + "comment": "Total volume of sea ice divided by grid-cell area, also known as the equivalent thickness of sea ice.", + "dimensions": "longitude latitude time", + "out_name": "sivol", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "SImon", + "physical_parameter_name": "sivol", + "variableRootDD": "sieqthick", + "branding_label": "tavg-u-hxy-si", + "branded_variable_name": "sieqthick_tavg-u-hxy-si", + "region": "GLB", + "cmip6_compound_name": "SImon.sivol", + "cmip7_compound_name": "seaIce.sieqthick.tavg-u-hxy-si.mon.GLB", + "uid": "71291d86-faa7-11e6-bfb7-ac72891c3257" + }, + "seaIce.siextent.tavg-u-hm-u.day.NH": { + "frequency": "day", + "modeling_realm": "seaIce", + "standard_name": "sea_ice_extent", + "units": "1e6 km2", + "cell_methods": "area: time: mean", + "cell_measures": "", + "long_name": "Sea-Ice Extent North", + "comment": "Total integrated area of all Northern Hemisphere grid cells that are covered by at least 15% areal fraction of sea ice (siconc >= 15). Does not include grid cells partially covered by land.", + "dimensions": "time", + "out_name": "siextentn", + "type": "real", + "positive": "", + "spatial_shape": "na-na", + "temporal_shape": "time-intv", + "cmip6_table": "SIday", + "physical_parameter_name": "siextentn", + "variableRootDD": "siextent", + "branding_label": "tavg-u-hm-u", + "branded_variable_name": "siextent_tavg-u-hm-u", + "region": "NH", + "cmip6_compound_name": "SIday.siextentn", + "cmip7_compound_name": "seaIce.siextent.tavg-u-hm-u.day.NH", + "uid": "80ab725f-a698-11ef-914a-613c0433d878" + }, + "seaIce.siextent.tavg-u-hm-u.day.SH": { + "frequency": "day", + "modeling_realm": "seaIce", + "standard_name": "sea_ice_extent", + "units": "1e6 km2", + "cell_methods": "area: time: mean", + "cell_measures": "", + "long_name": "Sea-Ice Extent South", + "comment": "Total integrated area of all Southern Hemisphere grid cells that are covered by at least 15% areal fraction of sea ice (siconc >= 15). Does not include grid cells partially covered by land.", + "dimensions": "time", + "out_name": "siextents", + "type": "real", + "positive": "", + "spatial_shape": "na-na", + "temporal_shape": "time-intv", + "cmip6_table": "SIday", + "physical_parameter_name": "siextents", + "variableRootDD": "siextent", + "branding_label": "tavg-u-hm-u", + "branded_variable_name": "siextent_tavg-u-hm-u", + "region": "SH", + "cmip6_compound_name": "SIday.siextents", + "cmip7_compound_name": "seaIce.siextent.tavg-u-hm-u.day.SH", + "uid": "80ab7260-a698-11ef-914a-613c0433d878" + }, + "seaIce.siextent.tavg-u-hm-u.mon.NH": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "sea_ice_extent", + "units": "1e6 km2", + "cell_methods": "area: time: mean", + "cell_measures": "", + "long_name": "Sea-Ice Extent North", + "comment": "Total integrated area of all Northern Hemisphere grid cells that are covered by at least 15% areal fraction of sea ice (siconc >= 15). Does not include grid cells partially covered by land.", + "dimensions": "time", + "out_name": "siextentn", + "type": "real", + "positive": "", + "spatial_shape": "na-na", + "temporal_shape": "time-intv", + "cmip6_table": "SImon", + "physical_parameter_name": "siextentn", + "variableRootDD": "siextent", + "branding_label": "tavg-u-hm-u", + "branded_variable_name": "siextent_tavg-u-hm-u", + "region": "NH", + "cmip6_compound_name": "SImon.siextentn", + "cmip7_compound_name": "seaIce.siextent.tavg-u-hm-u.mon.NH", + "uid": "713a5c36-faa7-11e6-bfb7-ac72891c3257" + }, + "seaIce.siextent.tavg-u-hm-u.mon.SH": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "sea_ice_extent", + "units": "1e6 km2", + "cell_methods": "area: time: mean", + "cell_measures": "", + "long_name": "Sea-Ice Extent South", + "comment": "Total integrated area of all Southern Hemisphere grid cells that are covered by at least 15% areal fraction of sea ice (siconc >= 15). Does not include grid cells partially covered by land.", + "dimensions": "time", + "out_name": "siextents", + "type": "real", + "positive": "", + "spatial_shape": "na-na", + "temporal_shape": "time-intv", + "cmip6_table": "SImon", + "physical_parameter_name": "siextents", + "variableRootDD": "siextent", + "branding_label": "tavg-u-hm-u", + "branded_variable_name": "siextent_tavg-u-hm-u", + "region": "SH", + "cmip6_compound_name": "SImon.siextents", + "cmip7_compound_name": "seaIce.siextent.tavg-u-hm-u.mon.SH", + "uid": "7146a28e-faa7-11e6-bfb7-ac72891c3257" + }, + "seaIce.sifb.tavg-u-hxy-si.day.GLB": { + "frequency": "day", + "modeling_realm": "seaIce", + "standard_name": "sea_ice_freeboard", + "units": "m", + "cell_methods": "area: time: mean where sea_ice (mask=siconc)", + "cell_measures": "area: areacello", + "long_name": "Sea-Ice Freeboard", + "comment": "Mean height of sea-ice surface (i.e. snow-ice interface when snow covered) above sea level. This follows the classical definition of freeboard for in situ observations. In the satellite community, sometimes the total height of sea ice and snow above sea level is referred to as freeboard. This can easily be calculated by adding sisnthick to sifb.", + "dimensions": "longitude latitude time", + "out_name": "sifb", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "SIday", + "physical_parameter_name": "sifb", + "variableRootDD": "sifb", + "branding_label": "tavg-u-hxy-si", + "branded_variable_name": "sifb_tavg-u-hxy-si", + "region": "GLB", + "cmip6_compound_name": "SIday.sifb", + "cmip7_compound_name": "seaIce.sifb.tavg-u-hxy-si.day.GLB", + "uid": "83bbfb44-7f07-11ef-9308-b1dd71e64bec" + }, + "seaIce.sifb.tavg-u-hxy-si.mon.GLB": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "sea_ice_freeboard", + "units": "m", + "cell_methods": "area: time: mean where sea_ice (mask=siconc)", + "cell_measures": "area: areacello", + "long_name": "Sea-Ice Freeboard", + "comment": "Mean height of sea-ice surface (i.e. snow-ice interface when snow covered) above sea level. This follows the classical definition of freeboard for in situ observations. In the satellite community, sometimes the total height of sea ice and snow above sea level is referred to as freeboard. This can easily be calculated by adding sisnthick to sifb.", + "dimensions": "longitude latitude time", + "out_name": "sifb", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "SImon", + "physical_parameter_name": "sifb", + "variableRootDD": "sifb", + "branding_label": "tavg-u-hxy-si", + "branded_variable_name": "sifb_tavg-u-hxy-si", + "region": "GLB", + "cmip6_compound_name": "SImon.sifb", + "cmip7_compound_name": "seaIce.sifb.tavg-u-hxy-si.mon.GLB", + "uid": "714718d6-faa7-11e6-bfb7-ac72891c3257" + }, + "seaIce.siflcondbot.tavg-u-hxy-si.day.GLB": { + "frequency": "day", + "modeling_realm": "seaIce", + "standard_name": "basal_downward_heat_flux_in_sea_ice", + "units": "W m-2", + "cell_methods": "area: time: mean where sea_ice (mask=siconc)", + "cell_measures": "area: areacello", + "long_name": "Net Conductive Heat Flux in Sea Ice at the Base", + "comment": "Net heat conduction flux at the ice base, i.e. the conductive heat flux from the centre of the lowermost vertical sea-ice grid box to the base of the sea ice\u00a0(energy flow per sea ice area). Positive for a downward heat flux.", + "dimensions": "longitude latitude time", + "out_name": "siflcondbot", + "type": "real", + "positive": "down", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "SIday", + "physical_parameter_name": "siflcondbot", + "variableRootDD": "siflcondbot", + "branding_label": "tavg-u-hxy-si", + "branded_variable_name": "siflcondbot_tavg-u-hxy-si", + "region": "GLB", + "cmip6_compound_name": "SIday.siflcondbot", + "cmip7_compound_name": "seaIce.siflcondbot.tavg-u-hxy-si.day.GLB", + "uid": "83bbfb43-7f07-11ef-9308-b1dd71e64bec" + }, + "seaIce.siflcondbot.tavg-u-hxy-si.mon.GLB": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "basal_downward_heat_flux_in_sea_ice", + "units": "W m-2", + "cell_methods": "area: time: mean where sea_ice (mask=siconc)", + "cell_measures": "area: areacello", + "long_name": "Net Conductive Heat Flux in Sea Ice at the Base", + "comment": "Net heat conduction flux at the ice base, i.e. the conductive heat flux from the centre of the lowermost vertical sea-ice grid box to the base of the sea ice\u00a0(energy flow per sea ice area). Positive for a downward heat flux.", + "dimensions": "longitude latitude time", + "out_name": "siflcondbot", + "type": "real", + "positive": "down", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "SImon", + "physical_parameter_name": "siflcondbot", + "variableRootDD": "siflcondbot", + "branding_label": "tavg-u-hxy-si", + "branded_variable_name": "siflcondbot_tavg-u-hxy-si", + "region": "GLB", + "cmip6_compound_name": "SImon.siflcondbot", + "cmip7_compound_name": "seaIce.siflcondbot.tavg-u-hxy-si.mon.GLB", + "uid": "71402c4c-faa7-11e6-bfb7-ac72891c3257" + }, + "seaIce.siflcondtop.tavg-u-hxy-si.day.GLB": { + "frequency": "day", + "modeling_realm": "seaIce", + "standard_name": "surface_downward_heat_flux_in_sea_ice", + "units": "W m-2", + "cell_methods": "area: time: mean where sea_ice (mask=siconc)", + "cell_measures": "area: areacello", + "long_name": "Net Conductive Heat Flux in Sea Ice at the Surface", + "comment": "Net heat conduction flux at the ice surface, i.e. the conductive heat flux from the centre of the uppermost vertical sea-ice grid box to the surface of the sea ice\u00a0(energy flow per sea ice area). Positive for a downward heat flux.", + "dimensions": "longitude latitude time", + "out_name": "siflcondtop", + "type": "real", + "positive": "down", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "SIday", + "physical_parameter_name": "siflcondtop", + "variableRootDD": "siflcondtop", + "branding_label": "tavg-u-hxy-si", + "branded_variable_name": "siflcondtop_tavg-u-hxy-si", + "region": "GLB", + "cmip6_compound_name": "SIday.siflcondtop", + "cmip7_compound_name": "seaIce.siflcondtop.tavg-u-hxy-si.day.GLB", + "uid": "83bbfb42-7f07-11ef-9308-b1dd71e64bec" + }, + "seaIce.siflcondtop.tavg-u-hxy-si.mon.GLB": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "surface_downward_heat_flux_in_sea_ice", + "units": "W m-2", + "cell_methods": "area: time: mean where sea_ice (mask=siconc)", + "cell_measures": "area: areacello", + "long_name": "Net Conductive Heat Flux in Sea Ice at the Surface", + "comment": "Net heat conduction flux at the ice surface, i.e. the conductive heat flux from the centre of the uppermost vertical sea-ice grid box to the surface of the sea ice\u00a0(energy flow per sea ice area). Positive for a downward heat flux.", + "dimensions": "longitude latitude time", + "out_name": "siflcondtop", + "type": "real", + "positive": "down", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "SImon", + "physical_parameter_name": "siflcondtop", + "variableRootDD": "siflcondtop", + "branding_label": "tavg-u-hxy-si", + "branded_variable_name": "siflcondtop_tavg-u-hxy-si", + "region": "GLB", + "cmip6_compound_name": "SImon.siflcondtop", + "cmip7_compound_name": "seaIce.siflcondtop.tavg-u-hxy-si.mon.GLB", + "uid": "711489d4-faa7-11e6-bfb7-ac72891c3257" + }, + "seaIce.siflfwbot.tavg-u-hxy-si.mon.GLB": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "water_flux_into_sea_water_due_to_sea_ice_thermodynamics", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean where sea_ice (mask=siconc)", + "cell_measures": "area: areacello", + "long_name": "Freshwater Flux from Sea Ice", + "comment": "Total flux of fresh water from water into sea ice. This flux is positive when fresh water enters the ocean, and is therefore negative during ice growth and positive during ice melt.", + "dimensions": "longitude latitude time", + "out_name": "siflfwbot", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "SImon", + "physical_parameter_name": "siflfwbot", + "variableRootDD": "siflfwbot", + "branding_label": "tavg-u-hxy-si", + "branded_variable_name": "siflfwbot_tavg-u-hxy-si", + "region": "GLB", + "cmip6_compound_name": "SImon.siflfwbot", + "cmip7_compound_name": "seaIce.siflfwbot.tavg-u-hxy-si.mon.GLB", + "uid": "710b731c-faa7-11e6-bfb7-ac72891c3257" + }, + "seaIce.siflfwdrain.tavg-u-hxy-si.mon.GLB": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "water_flux_into_sea_water_due_to_surface_drainage", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean where sea_ice (mask=siconc)", + "cell_measures": "area: areacello", + "long_name": "Freshwater Flux from Sea-Ice Surface", + "comment": "Total flux of fresh water from sea-ice surface into underlying ocean. This combines both surface meltwater that drains directly into the ocean and the drainage of surface melt ponds. By definition, this flux is always positive.", + "dimensions": "longitude latitude time", + "out_name": "siflfwdrain", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "SImon", + "physical_parameter_name": "siflfwdrain", + "variableRootDD": "siflfwdrain", + "branding_label": "tavg-u-hxy-si", + "branded_variable_name": "siflfwdrain_tavg-u-hxy-si", + "region": "GLB", + "cmip6_compound_name": "SImon.siflfwdrain", + "cmip7_compound_name": "seaIce.siflfwdrain.tavg-u-hxy-si.mon.GLB", + "uid": "7111a6e2-faa7-11e6-bfb7-ac72891c3257" + }, + "seaIce.sifllattop.tavg-u-hxy-si.day.GLB": { + "frequency": "day", + "modeling_realm": "seaIce", + "standard_name": "surface_downward_latent_heat_flux", + "units": "W m-2", + "cell_methods": "area: time: mean where sea_ice (mask=siconca)", + "cell_measures": "area: areacella", + "long_name": "Net Latent Heat Flux over Sea Ice", + "comment": "Net latent heat flux over sea ice\u00a0(energy flow per sea ice area). Positive for a downward heat flux.", + "dimensions": "longitude latitude time", + "out_name": "sifllattop", + "type": "real", + "positive": "down", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "SIday", + "physical_parameter_name": "sifllattop", + "variableRootDD": "sifllattop", + "branding_label": "tavg-u-hxy-si", + "branded_variable_name": "sifllattop_tavg-u-hxy-si", + "region": "GLB", + "cmip6_compound_name": "SIday.sifllattop", + "cmip7_compound_name": "seaIce.sifllattop.tavg-u-hxy-si.day.GLB", + "uid": "83bbfb41-7f07-11ef-9308-b1dd71e64bec" + }, + "seaIce.sifllattop.tavg-u-hxy-si.mon.GLB": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "surface_downward_latent_heat_flux", + "units": "W m-2", + "cell_methods": "area: time: mean where sea_ice (mask=siconca)", + "cell_measures": "area: areacella", + "long_name": "Net Latent Heat Flux over Sea Ice", + "comment": "Net latent heat flux over sea ice\u00a0(energy flow per sea ice area). Positive for a downward heat flux.", + "dimensions": "longitude latitude time", + "out_name": "sifllattop", + "type": "real", + "positive": "down", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "SImon", + "physical_parameter_name": "sifllattop", + "variableRootDD": "sifllattop", + "branding_label": "tavg-u-hxy-si", + "branded_variable_name": "sifllattop_tavg-u-hxy-si", + "region": "GLB", + "cmip6_compound_name": "SImon.sifllattop", + "cmip7_compound_name": "seaIce.sifllattop.tavg-u-hxy-si.mon.GLB", + "uid": "7127cbc0-faa7-11e6-bfb7-ac72891c3257" + }, + "seaIce.siflsensbot.tavg-u-hxy-si.day.GLB": { + "frequency": "day", + "modeling_realm": "seaIce", + "standard_name": "upward_sea_ice_basal_heat_flux", + "units": "W m-2", + "cell_methods": "area: time: mean where sea_ice (mask=siconc)", + "cell_measures": "area: areacello", + "long_name": "Net Upward Sensible Heat Flux under Sea Ice", + "comment": "Net sensible heat flux under sea ice from or to the ocean\u00a0(energy flow per sea ice area). Per sign convention, heat from the ocean is counted as negative since it describes an upward heat flux.", + "dimensions": "longitude latitude time", + "out_name": "siflsensbot", + "type": "real", + "positive": "down", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "SIday", + "physical_parameter_name": "siflsensbot", + "variableRootDD": "siflsensbot", + "branding_label": "tavg-u-hxy-si", + "branded_variable_name": "siflsensbot_tavg-u-hxy-si", + "region": "GLB", + "cmip6_compound_name": "SIday.siflsensbot", + "cmip7_compound_name": "seaIce.siflsensbot.tavg-u-hxy-si.day.GLB", + "uid": "83bbfb3d-7f07-11ef-9308-b1dd71e64bec" + }, + "seaIce.siflsensbot.tavg-u-hxy-si.mon.GLB": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "upward_sea_ice_basal_heat_flux", + "units": "W m-2", + "cell_methods": "area: time: mean where sea_ice (mask=siconc)", + "cell_measures": "area: areacello", + "long_name": "Net Upward Sensible Heat Flux under Sea Ice", + "comment": "Net sensible heat flux under sea ice from or to the ocean\u00a0(energy flow per sea ice area). Per sign convention, heat from the ocean is counted as negative since it describes an upward heat flux.", + "dimensions": "longitude latitude time", + "out_name": "siflsensbot", + "type": "real", + "positive": "down", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "SImon", + "physical_parameter_name": "siflsensbot", + "variableRootDD": "siflsensbot", + "branding_label": "tavg-u-hxy-si", + "branded_variable_name": "siflsensbot_tavg-u-hxy-si", + "region": "GLB", + "cmip6_compound_name": "SImon.siflsensbot", + "cmip7_compound_name": "seaIce.siflsensbot.tavg-u-hxy-si.mon.GLB", + "uid": "711fa92c-faa7-11e6-bfb7-ac72891c3257" + }, + "seaIce.siflsenstop.tavg-u-hxy-si.day.GLB": { + "frequency": "day", + "modeling_realm": "seaIce", + "standard_name": "surface_downward_sensible_heat_flux", + "units": "W m-2", + "cell_methods": "area: time: mean where sea_ice (mask=siconca)", + "cell_measures": "area: areacella", + "long_name": "Net Downward Sensible Heat Flux over Sea Ice", + "comment": "Net sensible heat flux over sea ice\u00a0(energy flow per sea ice area). Positive for a downward heat flux.", + "dimensions": "longitude latitude time", + "out_name": "siflsenstop", + "type": "real", + "positive": "down", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "SIday", + "physical_parameter_name": "siflsenstop", + "variableRootDD": "siflsenstop", + "branding_label": "tavg-u-hxy-si", + "branded_variable_name": "siflsenstop_tavg-u-hxy-si", + "region": "GLB", + "cmip6_compound_name": "SIday.siflsenstop", + "cmip7_compound_name": "seaIce.siflsenstop.tavg-u-hxy-si.day.GLB", + "uid": "83bbfb3e-7f07-11ef-9308-b1dd71e64bec" + }, + "seaIce.siflsenstop.tavg-u-hxy-si.mon.GLB": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "surface_downward_sensible_heat_flux", + "units": "W m-2", + "cell_methods": "area: time: mean where sea_ice (mask=siconca)", + "cell_measures": "area: areacella", + "long_name": "Net Downward Sensible Heat Flux over Sea Ice", + "comment": "Net sensible heat flux over sea ice\u00a0(energy flow per sea ice area). Positive for a downward heat flux.", + "dimensions": "longitude latitude time", + "out_name": "siflsenstop", + "type": "real", + "positive": "down", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "SImon", + "physical_parameter_name": "siflsenstop", + "variableRootDD": "siflsenstop", + "branding_label": "tavg-u-hxy-si", + "branded_variable_name": "siflsenstop_tavg-u-hxy-si", + "region": "GLB", + "cmip6_compound_name": "SImon.siflsenstop", + "cmip7_compound_name": "seaIce.siflsenstop.tavg-u-hxy-si.mon.GLB", + "uid": "712cccec-faa7-11e6-bfb7-ac72891c3257" + }, + "seaIce.siflswdbot.tavg-u-hxy-si.day.GLB": { + "frequency": "day", + "modeling_realm": "seaIce", + "standard_name": "downwelling_shortwave_flux_in_sea_water_at_sea_ice_base", + "units": "W m-2", + "cell_methods": "area: time: mean where sea_ice (mask=siconc)", + "cell_measures": "area: areacello", + "long_name": "Downwelling Shortwave Flux under Sea Ice", + "comment": "Downwelling shortwave flux underneath sea ice, i.e. the amount of shortwave radiation that penetrates the sea ice and reaches the sea ice-ocean interface\u00a0(energy flow per sea ice area). Always positive or zero.", + "dimensions": "longitude latitude time", + "out_name": "siflswdbot", + "type": "real", + "positive": "down", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "SIday", + "physical_parameter_name": "siflswdbot", + "variableRootDD": "siflswdbot", + "branding_label": "tavg-u-hxy-si", + "branded_variable_name": "siflswdbot_tavg-u-hxy-si", + "region": "GLB", + "cmip6_compound_name": "SIday.siflswdbot", + "cmip7_compound_name": "seaIce.siflswdbot.tavg-u-hxy-si.day.GLB", + "uid": "83bbfb3c-7f07-11ef-9308-b1dd71e64bec" + }, + "seaIce.siflswdbot.tavg-u-hxy-si.mon.GLB": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "downwelling_shortwave_flux_in_sea_water_at_sea_ice_base", + "units": "W m-2", + "cell_methods": "area: time: mean where sea_ice (mask=siconc)", + "cell_measures": "area: areacello", + "long_name": "Downwelling Shortwave Flux under Sea Ice", + "comment": "Downwelling shortwave flux underneath sea ice, i.e. the amount of shortwave radiation that penetrates the sea ice and reaches the sea ice-ocean interface\u00a0(energy flow per sea ice area). Always positive or zero.", + "dimensions": "longitude latitude time", + "out_name": "siflswdbot", + "type": "real", + "positive": "down", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "SImon", + "physical_parameter_name": "siflswdbot", + "variableRootDD": "siflswdbot", + "branding_label": "tavg-u-hxy-si", + "branded_variable_name": "siflswdbot_tavg-u-hxy-si", + "region": "GLB", + "cmip6_compound_name": "SImon.siflswdbot", + "cmip7_compound_name": "seaIce.siflswdbot.tavg-u-hxy-si.mon.GLB", + "uid": "710a6936-faa7-11e6-bfb7-ac72891c3257" + }, + "seaIce.siforcecoriolx.tavg-u-hxy-si.mon.GLB": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "sea_ice_x_force_per_unit_area_due_to_coriolis_effect", + "units": "N m-2", + "cell_methods": "area: time: mean where sea_ice over all_area_types", + "cell_measures": "::MODEL", + "long_name": "Coriolis Force Term in Force Balance (X-Component)", + "comment": "X-component of the force on sea ice caused by the Coriolis force divided by grid-cell area.", + "dimensions": "longitude latitude time", + "out_name": "siforcecoriolx", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "SImon", + "physical_parameter_name": "siforcecoriolx", + "variableRootDD": "siforcecoriolx", + "branding_label": "tavg-u-hxy-si", + "branded_variable_name": "siforcecoriolx_tavg-u-hxy-si", + "region": "GLB", + "cmip6_compound_name": "SImon.siforcecoriolx", + "cmip7_compound_name": "seaIce.siforcecoriolx.tavg-u-hxy-si.mon.GLB", + "uid": "714b545a-faa7-11e6-bfb7-ac72891c3257" + }, + "seaIce.siforcecorioly.tavg-u-hxy-si.mon.GLB": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "sea_ice_y_force_per_unit_area_due_to_coriolis_effect", + "units": "N m-2", + "cell_methods": "area: time: mean where sea_ice over all_area_types", + "cell_measures": "::MODEL", + "long_name": "Coriolis Force Term in Force Balance (Y-Component)", + "comment": "Y-component of the force on sea ice caused by the Coriolis force divided by grid-cell area.", + "dimensions": "longitude latitude time", + "out_name": "siforcecorioly", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "SImon", + "physical_parameter_name": "siforcecorioly", + "variableRootDD": "siforcecorioly", + "branding_label": "tavg-u-hxy-si", + "branded_variable_name": "siforcecorioly_tavg-u-hxy-si", + "region": "GLB", + "cmip6_compound_name": "SImon.siforcecorioly", + "cmip7_compound_name": "seaIce.siforcecorioly.tavg-u-hxy-si.mon.GLB", + "uid": "712a8130-faa7-11e6-bfb7-ac72891c3257" + }, + "seaIce.siforceintstrx.tavg-u-hxy-si.mon.GLB": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "sea_ice_x_internal_stress", + "units": "N m-2", + "cell_methods": "area: time: mean where sea_ice over all_area_types", + "cell_measures": "::MODEL", + "long_name": "Internal Stress Term in Force Balance (X-Component)", + "comment": "X-component of the force on sea ice caused by internal stress (divergence of sigma) divided by grid-cell area.", + "dimensions": "longitude latitude time", + "out_name": "siforceintstrx", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "SImon", + "physical_parameter_name": "siforceintstrx", + "variableRootDD": "siforceintstrx", + "branding_label": "tavg-u-hxy-si", + "branded_variable_name": "siforceintstrx_tavg-u-hxy-si", + "region": "GLB", + "cmip6_compound_name": "SImon.siforceintstrx", + "cmip7_compound_name": "seaIce.siforceintstrx.tavg-u-hxy-si.mon.GLB", + "uid": "7147c57e-faa7-11e6-bfb7-ac72891c3257" + }, + "seaIce.siforceintstry.tavg-u-hxy-si.mon.GLB": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "sea_ice_y_internal_stress", + "units": "N m-2", + "cell_methods": "area: time: mean where sea_ice over all_area_types", + "cell_measures": "::MODEL", + "long_name": "Internal Stress Term in Force Balance (Y-Component)", + "comment": "Y-component of the force on sea ice caused by internal stress (divergence of sigma) divided by grid-cell area.", + "dimensions": "longitude latitude time", + "out_name": "siforceintstry", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "SImon", + "physical_parameter_name": "siforceintstry", + "variableRootDD": "siforceintstry", + "branding_label": "tavg-u-hxy-si", + "branded_variable_name": "siforceintstry_tavg-u-hxy-si", + "region": "GLB", + "cmip6_compound_name": "SImon.siforceintstry", + "cmip7_compound_name": "seaIce.siforceintstry.tavg-u-hxy-si.mon.GLB", + "uid": "7112fc9a-faa7-11e6-bfb7-ac72891c3257" + }, + "seaIce.siforcetiltx.tavg-u-hxy-si.mon.GLB": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "sea_ice_x_force_per_unit_area_due_to_sea_surface_tilt", + "units": "N m-2", + "cell_methods": "area: time: mean where sea_ice over all_area_types", + "cell_measures": "::MODEL", + "long_name": "Sea-Surface Tilt Term in Force Balance (X-Component)", + "comment": "X-component of the force on sea ice caused by sea-surface tilt divided by grid-cell area.", + "dimensions": "longitude latitude time", + "out_name": "siforcetiltx", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "SImon", + "physical_parameter_name": "siforcetiltx", + "variableRootDD": "siforcetiltx", + "branding_label": "tavg-u-hxy-si", + "branded_variable_name": "siforcetiltx_tavg-u-hxy-si", + "region": "GLB", + "cmip6_compound_name": "SImon.siforcetiltx", + "cmip7_compound_name": "seaIce.siforcetiltx.tavg-u-hxy-si.mon.GLB", + "uid": "71220f64-faa7-11e6-bfb7-ac72891c3257" + }, + "seaIce.siforcetilty.tavg-u-hxy-si.mon.GLB": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "sea_ice_y_force_per_unit_area_due_to_sea_surface_tilt", + "units": "N m-2", + "cell_methods": "area: time: mean where sea_ice over all_area_types", + "cell_measures": "::MODEL", + "long_name": "Sea-Surface Tilt Term in Force Balance (Y-Component)", + "comment": "Y-component of the force on sea ice caused by sea-surface tilt divided by grid-cell area.", + "dimensions": "longitude latitude time", + "out_name": "siforcetilty", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "SImon", + "physical_parameter_name": "siforcetilty", + "variableRootDD": "siforcetilty", + "branding_label": "tavg-u-hxy-si", + "branded_variable_name": "siforcetilty_tavg-u-hxy-si", + "region": "GLB", + "cmip6_compound_name": "SImon.siforcetilty", + "cmip7_compound_name": "seaIce.siforcetilty.tavg-u-hxy-si.mon.GLB", + "uid": "710bfb0c-faa7-11e6-bfb7-ac72891c3257" + }, + "seaIce.sihc.tavg-u-hxy-sea.day.GLB": { + "frequency": "day", + "modeling_realm": "seaIce", + "standard_name": "sea_ice_enthalpy_content", + "units": "J m-2", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Sea-Ice Heat Content", + "comment": "Heat content of all ice in grid cell divided by grid-cell area. This includes both the latent and sensible heat content contributions. Water at 0C is assumed to have a heat content of 0 J. This variable does not include heat content of snow, but does include heat content of brine in the sea ice. Heat content is always negative since both the sensible and the latent heat content of ice are less than that of water.", + "dimensions": "longitude latitude time", + "out_name": "sihc", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "SIday", + "physical_parameter_name": "sihc", + "variableRootDD": "sihc", + "branding_label": "tavg-u-hxy-sea", + "branded_variable_name": "sihc_tavg-u-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "SIday.sihc", + "cmip7_compound_name": "seaIce.sihc.tavg-u-hxy-sea.day.GLB", + "uid": "83bbfb38-7f07-11ef-9308-b1dd71e64bec" + }, + "seaIce.sihc.tavg-u-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "sea_ice_enthalpy_content", + "units": "J m-2", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Sea-Ice Heat Content", + "comment": "Heat content of all ice in grid cell divided by grid-cell area. This includes both the latent and sensible heat content contributions. Water at 0C is assumed to have a heat content of 0 J. This variable does not include heat content of snow, but does include heat content of brine in the sea ice. Heat content is always negative since both the sensible and the latent heat content of ice are less than that of water.", + "dimensions": "longitude latitude time", + "out_name": "sihc", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "SImon", + "physical_parameter_name": "sihc", + "variableRootDD": "sihc", + "branding_label": "tavg-u-hxy-sea", + "branded_variable_name": "sihc_tavg-u-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "SImon.sihc", + "cmip7_compound_name": "seaIce.sihc.tavg-u-hxy-sea.mon.GLB", + "uid": "71492018-faa7-11e6-bfb7-ac72891c3257" + }, + "seaIce.siitdconc.tavg-u-hxy-si.day.GLB": { + "frequency": "day", + "modeling_realm": "seaIce", + "standard_name": "sea_ice_area_fraction", + "units": "%", + "cell_methods": "area: time: mean where sea_ice (mask=siconc)", + "cell_measures": "area: areacello", + "long_name": "Sea-Ice Area Percentages in Ice Thickness Categories", + "comment": "Percentage of grid cell covered by each ice thickness category (vector with one entry for each ice thickness category starting from the thinnest category, netcdf file should use thickness bounds of the categories as third coordinate axis).", + "dimensions": "longitude latitude iceband time", + "out_name": "siitdconc", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "SIday", + "physical_parameter_name": "siitdconc", + "variableRootDD": "siitdconc", + "branding_label": "tavg-u-hxy-si", + "branded_variable_name": "siitdconc_tavg-u-hxy-si", + "region": "GLB", + "cmip6_compound_name": "SIday.siitdconc", + "cmip7_compound_name": "seaIce.siitdconc.tavg-u-hxy-si.day.GLB", + "uid": "83bbfb37-7f07-11ef-9308-b1dd71e64bec" + }, + "seaIce.siitdconc.tavg-u-hxy-si.mon.GLB": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "sea_ice_area_fraction", + "units": "%", + "cell_methods": "area: time: mean where sea_ice (mask=siconc)", + "cell_measures": "area: areacello", + "long_name": "Sea-Ice Area Percentages in Ice Thickness Categories", + "comment": "Percentage of grid cell covered by each ice thickness category (vector with one entry for each ice thickness category starting from the thinnest category, netcdf file should use thickness bounds of the categories as third coordinate axis).", + "dimensions": "longitude latitude iceband time", + "out_name": "siitdconc", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "SImon", + "physical_parameter_name": "siitdconc", + "variableRootDD": "siitdconc", + "branding_label": "tavg-u-hxy-si", + "branded_variable_name": "siitdconc_tavg-u-hxy-si", + "region": "GLB", + "cmip6_compound_name": "SImon.siitdconc", + "cmip7_compound_name": "seaIce.siitdconc.tavg-u-hxy-si.mon.GLB", + "uid": "711b61dc-faa7-11e6-bfb7-ac72891c3257" + }, + "seaIce.siitdsnconc.tavg-u-hxy-si.day.GLB": { + "frequency": "day", + "modeling_realm": "seaIce", + "standard_name": "surface_snow_area_fraction", + "units": "%", + "cell_methods": "area: time: mean where sea_ice (mask=siitdconc)", + "cell_measures": "area: areacello", + "long_name": "Snow Area Percentages in Ice Thickness Categories", + "comment": "Percentage of grid cell covered by snow in each ice thickness category (vector with one entry for each ice thickness category starting from the thinnest category, netcdf file should use thickness bounds of the categories as third coordinate axis).", + "dimensions": "longitude latitude iceband time", + "out_name": "siitdsnconc", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "SIday", + "physical_parameter_name": "siitdsnconc", + "variableRootDD": "siitdsnconc", + "branding_label": "tavg-u-hxy-si", + "branded_variable_name": "siitdsnconc_tavg-u-hxy-si", + "region": "GLB", + "cmip6_compound_name": "SIday.siitdsnconc", + "cmip7_compound_name": "seaIce.siitdsnconc.tavg-u-hxy-si.day.GLB", + "uid": "83bbfb36-7f07-11ef-9308-b1dd71e64bec" + }, + "seaIce.siitdsnconc.tavg-u-hxy-si.mon.GLB": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "surface_snow_area_fraction", + "units": "%", + "cell_methods": "area: time: mean where sea_ice (mask=siitdconc)", + "cell_measures": "area: areacello", + "long_name": "Snow Area Percentages in Ice Thickness Categories", + "comment": "Percentage of grid cell covered by snow in each ice thickness category (vector with one entry for each ice thickness category starting from the thinnest category, netcdf file should use thickness bounds of the categories as third coordinate axis).", + "dimensions": "longitude latitude iceband time", + "out_name": "siitdsnconc", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "SImon", + "physical_parameter_name": "siitdsnconc", + "variableRootDD": "siitdsnconc", + "branding_label": "tavg-u-hxy-si", + "branded_variable_name": "siitdsnconc_tavg-u-hxy-si", + "region": "GLB", + "cmip6_compound_name": "SImon.siitdsnconc", + "cmip7_compound_name": "seaIce.siitdsnconc.tavg-u-hxy-si.mon.GLB", + "uid": "71147dcc-faa7-11e6-bfb7-ac72891c3257" + }, + "seaIce.siitdsnthick.tavg-u-hxy-si.day.GLB": { + "frequency": "day", + "modeling_realm": "seaIce", + "standard_name": "surface_snow_thickness", + "units": "m", + "cell_methods": "area: time: mean where sea_ice (mask=siitdconc)", + "cell_measures": "area: areacello", + "long_name": "Snow Thickness in Ice Thickness Categories", + "comment": "Actual thickness of snow in each ice thickness category, NOT snow volume divided by grid area (vector with one entry for each ice thickness category starting from the thinnest category, netcdf file should use thickness bounds of categories as third coordinate axis). It can also be derived by dividing the volume of snow by the area of snow in each thickness category.", + "dimensions": "longitude latitude iceband time", + "out_name": "siitdsnthick", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "SIday", + "physical_parameter_name": "siitdsnthick", + "variableRootDD": "siitdsnthick", + "branding_label": "tavg-u-hxy-si", + "branded_variable_name": "siitdsnthick_tavg-u-hxy-si", + "region": "GLB", + "cmip6_compound_name": "SIday.siitdsnthick", + "cmip7_compound_name": "seaIce.siitdsnthick.tavg-u-hxy-si.day.GLB", + "uid": "83bbfb35-7f07-11ef-9308-b1dd71e64bec" + }, + "seaIce.siitdsnthick.tavg-u-hxy-si.mon.GLB": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "surface_snow_thickness", + "units": "m", + "cell_methods": "area: time: mean where sea_ice (mask=siitdconc)", + "cell_measures": "area: areacello", + "long_name": "Snow Thickness in Ice Thickness Categories", + "comment": "Actual thickness of snow in each ice thickness category, NOT snow volume divided by grid area (vector with one entry for each ice thickness category starting from the thinnest category, netcdf file should use thickness bounds of categories as third coordinate axis). It can also be derived by dividing the volume of snow by the area of snow in each thickness category.", + "dimensions": "longitude latitude iceband time", + "out_name": "siitdsnthick", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "SImon", + "physical_parameter_name": "siitdsnthick", + "variableRootDD": "siitdsnthick", + "branding_label": "tavg-u-hxy-si", + "branded_variable_name": "siitdsnthick_tavg-u-hxy-si", + "region": "GLB", + "cmip6_compound_name": "SImon.siitdsnthick", + "cmip7_compound_name": "seaIce.siitdsnthick.tavg-u-hxy-si.mon.GLB", + "uid": "713fa34e-faa7-11e6-bfb7-ac72891c3257" + }, + "seaIce.siitdthick.tavg-u-hxy-si.day.GLB": { + "frequency": "day", + "modeling_realm": "seaIce", + "standard_name": "sea_ice_thickness", + "units": "m", + "cell_methods": "area: time: mean where sea_ice (mask=siitdconc)", + "cell_measures": "area: areacello", + "long_name": "Sea-Ice Thickness in Ice Thickness Categories", + "comment": "Actual (floe) thickness of sea ice in each ice thickness category, NOT volume divided by grid area (vector with one entry for each ice thickness category starting from the thinnest category, netcdf file should use thickness bounds of categories as third coordinate axis).", + "dimensions": "longitude latitude iceband time", + "out_name": "siitdthick", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "SIday", + "physical_parameter_name": "siitdthick", + "variableRootDD": "siitdthick", + "branding_label": "tavg-u-hxy-si", + "branded_variable_name": "siitdthick_tavg-u-hxy-si", + "region": "GLB", + "cmip6_compound_name": "SIday.siitdthick", + "cmip7_compound_name": "seaIce.siitdthick.tavg-u-hxy-si.day.GLB", + "uid": "83bbfb34-7f07-11ef-9308-b1dd71e64bec" + }, + "seaIce.siitdthick.tavg-u-hxy-si.mon.GLB": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "sea_ice_thickness", + "units": "m", + "cell_methods": "area: time: mean where sea_ice (mask=siitdconc)", + "cell_measures": "area: areacello", + "long_name": "Sea-Ice Thickness in Ice Thickness Categories", + "comment": "Actual (floe) thickness of sea ice in each ice thickness category, NOT volume divided by grid area (vector with one entry for each ice thickness category starting from the thinnest category, netcdf file should use thickness bounds of categories as third coordinate axis).", + "dimensions": "longitude latitude iceband time", + "out_name": "siitdthick", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "SImon", + "physical_parameter_name": "siitdthick", + "variableRootDD": "siitdthick", + "branding_label": "tavg-u-hxy-si", + "branded_variable_name": "siitdthick_tavg-u-hxy-si", + "region": "GLB", + "cmip6_compound_name": "SImon.siitdthick", + "cmip7_compound_name": "seaIce.siitdthick.tavg-u-hxy-si.mon.GLB", + "uid": "712a1fc4-faa7-11e6-bfb7-ac72891c3257" + }, + "seaIce.simass.tavg-u-hxy-si.mon.GLB": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "sea_ice_amount", + "units": "kg m-2", + "cell_methods": "area: time: mean where sea_ice over all_area_types", + "cell_measures": "area: areacello", + "long_name": "Sea-Ice Mass", + "comment": "Total mass of sea ice divided by grid-cell area.", + "dimensions": "longitude latitude time", + "out_name": "simass", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "SImon", + "physical_parameter_name": "simass", + "variableRootDD": "simass", + "branding_label": "tavg-u-hxy-si", + "branded_variable_name": "simass_tavg-u-hxy-si", + "region": "GLB", + "cmip6_compound_name": "SImon.simass", + "cmip7_compound_name": "seaIce.simass.tavg-u-hxy-si.mon.GLB", + "uid": "714b603a-faa7-11e6-bfb7-ac72891c3257" + }, + "seaIce.simassacrossline.tavg-u-ht-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "sea_ice_transport_across_line", + "units": "kg s-1", + "cell_methods": "time: mean", + "cell_measures": "", + "long_name": "Sea-Ice Mass Flux Through Straits", + "comment": "Net (sum of transport in all directions) sea ice mass transport through the following four passages, positive into the Arctic Ocean. Note that the definitions of the passages are for SIMIP purposes just meant as default values as given by the physical ocean MIP described in Griffies et al. (2016). Individual models might chose slightly different definitions as given by their grid geometry. 1. Fram Strait: (11.5W, 81.3N) to (10.5E, 79.6N). 2. Canadian Arctic Archipelago: (128.2W, 70.6N) to (59.3W, 82.1N). 3. Barents Sea Opening: (16.8E, 76.5N) to (19.2E, 70.2N). 4. Bering Strait: (171W, 66.2N) to (166W, 65N).", + "dimensions": "siline time", + "out_name": "simassacrossline", + "type": "real", + "positive": "", + "spatial_shape": "TRS-na", + "temporal_shape": "time-intv", + "cmip6_table": "SImon", + "physical_parameter_name": "simassacrossline", + "variableRootDD": "simassacrossline", + "branding_label": "tavg-u-ht-u", + "branded_variable_name": "simassacrossline_tavg-u-ht-u", + "region": "GLB", + "cmip6_compound_name": "SImon.simassacrossline", + "cmip7_compound_name": "seaIce.simassacrossline.tavg-u-ht-u.mon.GLB", + "uid": "7109b964-faa7-11e6-bfb7-ac72891c3257" + }, + "seaIce.simpconc.tavg-u-hxy-si.day.GLB": { + "frequency": "day", + "modeling_realm": "seaIce", + "standard_name": "area_fraction", + "units": "%", + "cell_methods": "area: time: mean where sea_ice (mask=siconc)", + "cell_measures": "area: areacello", + "long_name": "Fraction of Sea Ice Covered by Melt Pond", + "comment": "Area fraction of sea-ice surface that is covered by melt ponds.", + "dimensions": "longitude latitude time typemp", + "out_name": "simpconc", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "SIday", + "physical_parameter_name": "simpconc", + "variableRootDD": "simpconc", + "branding_label": "tavg-u-hxy-si", + "branded_variable_name": "simpconc_tavg-u-hxy-si", + "region": "GLB", + "cmip6_compound_name": "SIday.simpconc", + "cmip7_compound_name": "seaIce.simpconc.tavg-u-hxy-si.day.GLB", + "uid": "83bbfb33-7f07-11ef-9308-b1dd71e64bec" + }, + "seaIce.simpconc.tavg-u-hxy-si.mon.GLB": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "area_fraction", + "units": "%", + "cell_methods": "area: time: mean where sea_ice (mask=siconc)", + "cell_measures": "area: areacello", + "long_name": "Fraction of Sea Ice Covered by Melt Pond", + "comment": "Area fraction of sea-ice surface that is covered by melt ponds.", + "dimensions": "longitude latitude time typemp", + "out_name": "simpconc", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "SImon", + "physical_parameter_name": "simpconc", + "variableRootDD": "simpconc", + "branding_label": "tavg-u-hxy-si", + "branded_variable_name": "simpconc_tavg-u-hxy-si", + "region": "GLB", + "cmip6_compound_name": "SImon.simpconc", + "cmip7_compound_name": "seaIce.simpconc.tavg-u-hxy-si.mon.GLB", + "uid": "71238a60-faa7-11e6-bfb7-ac72891c3257" + }, + "seaIce.simpeffconc.tavg-u-hxy-si.day.GLB": { + "frequency": "day", + "modeling_realm": "seaIce", + "standard_name": "area_fraction", + "units": "%", + "cell_methods": "area: time: mean where sea_ice (mask=siconc)", + "cell_measures": "area: areacello", + "long_name": "Fraction of Sea Ice Covered by Effective Melt Pond", + "comment": "Area fraction of sea-ice surface that is covered by open melt ponds, that is melt ponds that are not covered by snow or ice lids. This represents the effective (i.e. radiatively-active) melt pond area fraction.", + "dimensions": "longitude latitude time typemp", + "out_name": "simpeffconc", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "SIday", + "physical_parameter_name": "simpeffconc", + "variableRootDD": "simpeffconc", + "branding_label": "tavg-u-hxy-si", + "branded_variable_name": "simpeffconc_tavg-u-hxy-si", + "region": "GLB", + "cmip6_compound_name": "SIday.simpeffconc", + "cmip7_compound_name": "seaIce.simpeffconc.tavg-u-hxy-si.day.GLB", + "uid": "80ab7261-a698-11ef-914a-613c0433d878" + }, + "seaIce.simpeffconc.tavg-u-hxy-si.mon.GLB": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "area_fraction", + "units": "%", + "cell_methods": "area: time: mean where sea_ice (mask=siconc)", + "cell_measures": "area: areacello", + "long_name": "Fraction of Sea Ice Covered by Effective Melt Pond", + "comment": "Area fraction of sea-ice surface that is covered by open melt ponds, that is melt ponds that are not covered by snow or ice lids. This represents the effective (i.e. radiatively-active) melt pond area fraction.", + "dimensions": "longitude latitude time typemp", + "out_name": "simpeffconc", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "SImon", + "physical_parameter_name": "simpeffconc", + "variableRootDD": "simpeffconc", + "branding_label": "tavg-u-hxy-si", + "branded_variable_name": "simpeffconc_tavg-u-hxy-si", + "region": "GLB", + "cmip6_compound_name": "SImon.simpeffconc", + "cmip7_compound_name": "seaIce.simpeffconc.tavg-u-hxy-si.mon.GLB", + "uid": "80ab7266-a698-11ef-914a-613c0433d878" + }, + "seaIce.simprefrozen.tavg-u-hxy-simp.day.GLB": { + "frequency": "day", + "modeling_realm": "seaIce", + "standard_name": "thickness_of_ice_on_sea_ice_melt_pond", + "units": "m", + "cell_methods": "area: time: mean where sea_ice_melt_pond (mask=simpconc)", + "cell_measures": "area: areacello", + "long_name": "Thickness of Refrozen Ice on Melt Pond", + "comment": "Volume of refrozen ice on melt ponds divided by melt pond covered area.", + "dimensions": "longitude latitude time", + "out_name": "simprefrozen", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "SIday", + "physical_parameter_name": "simprefrozen", + "variableRootDD": "simprefrozen", + "branding_label": "tavg-u-hxy-simp", + "branded_variable_name": "simprefrozen_tavg-u-hxy-simp", + "region": "GLB", + "cmip6_compound_name": "SIday.simprefrozen", + "cmip7_compound_name": "seaIce.simprefrozen.tavg-u-hxy-simp.day.GLB", + "uid": "83bbfb31-7f07-11ef-9308-b1dd71e64bec" + }, + "seaIce.simprefrozen.tavg-u-hxy-simp.mon.GLB": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "thickness_of_ice_on_sea_ice_melt_pond", + "units": "m", + "cell_methods": "area: time: mean where sea_ice_melt_pond (mask=simpconc)", + "cell_measures": "area: areacello", + "long_name": "Thickness of Refrozen Ice on Melt Pond", + "comment": "Volume of refrozen ice on melt ponds divided by melt pond covered area.", + "dimensions": "longitude latitude time", + "out_name": "simprefrozen", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "SImon", + "physical_parameter_name": "simprefrozen", + "variableRootDD": "simprefrozen", + "branding_label": "tavg-u-hxy-simp", + "branded_variable_name": "simprefrozen_tavg-u-hxy-simp", + "region": "GLB", + "cmip6_compound_name": "SImon.simprefrozen", + "cmip7_compound_name": "seaIce.simprefrozen.tavg-u-hxy-simp.mon.GLB", + "uid": "711b6ea2-faa7-11e6-bfb7-ac72891c3257" + }, + "seaIce.simpthick.tavg-u-hxy-si.day.GLB": { + "frequency": "day", + "modeling_realm": "seaIce", + "standard_name": "sea_ice_melt_pond_thickness", + "units": "m", + "cell_methods": "area: time: mean where sea_ice (mask=siconc)", + "cell_measures": "area: areacello", + "long_name": "Melt Pond Depth", + "comment": "Average depth of melt ponds on sea ice, that is melt pond volume divided by melt pond area.", + "dimensions": "longitude latitude time", + "out_name": "simpthick", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "SIday", + "physical_parameter_name": "simpthick", + "variableRootDD": "simpthick", + "branding_label": "tavg-u-hxy-si", + "branded_variable_name": "simpthick_tavg-u-hxy-si", + "region": "GLB", + "cmip6_compound_name": "SIday.simpthick", + "cmip7_compound_name": "seaIce.simpthick.tavg-u-hxy-si.day.GLB", + "uid": "83bbfb32-7f07-11ef-9308-b1dd71e64bec" + }, + "seaIce.simpthick.tavg-u-hxy-simp.mon.GLB": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "sea_ice_melt_pond_thickness", + "units": "m", + "cell_methods": "area: time: mean where sea_ice_melt_pond (mask=simpconc)", + "cell_measures": "area: areacello", + "long_name": "Melt Pond Depth", + "comment": "Average depth of melt ponds on sea ice, that is melt pond volume divided by melt pond area.", + "dimensions": "longitude latitude time", + "out_name": "simpthick", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "SImon", + "physical_parameter_name": "simpthick", + "variableRootDD": "simpthick", + "branding_label": "tavg-u-hxy-simp", + "branded_variable_name": "simpthick_tavg-u-hxy-simp", + "region": "GLB", + "cmip6_compound_name": "SImon.simpthick", + "cmip7_compound_name": "seaIce.simpthick.tavg-u-hxy-simp.mon.GLB", + "uid": "7117858a-faa7-11e6-bfb7-ac72891c3257" + }, + "seaIce.sirdgconc.tavg-u-hxy-si.day.GLB": { + "frequency": "day", + "modeling_realm": "seaIce", + "standard_name": "area_fraction", + "units": "%", + "cell_methods": "area: time: mean where sea_ice (mask=siconc)", + "cell_measures": "area: areacello", + "long_name": "Fraction of Ridged Sea Ice", + "comment": "Area fraction of sea-ice surface that is ridged sea ice.", + "dimensions": "longitude latitude time typesirdg", + "out_name": "sirdgconc", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "SIday", + "physical_parameter_name": "sirdgconc", + "variableRootDD": "sirdgconc", + "branding_label": "tavg-u-hxy-si", + "branded_variable_name": "sirdgconc_tavg-u-hxy-si", + "region": "GLB", + "cmip6_compound_name": "SIday.sirdgconc", + "cmip7_compound_name": "seaIce.sirdgconc.tavg-u-hxy-si.day.GLB", + "uid": "83bbfb2f-7f07-11ef-9308-b1dd71e64bec" + }, + "seaIce.sirdgconc.tavg-u-hxy-si.mon.GLB": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "area_fraction", + "units": "%", + "cell_methods": "area: time: mean where sea_ice (mask=siconc)", + "cell_measures": "area: areacello", + "long_name": "Fraction of Ridged Sea Ice", + "comment": "Area fraction of sea-ice surface that is ridged sea ice.", + "dimensions": "longitude latitude time typesirdg", + "out_name": "sirdgconc", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "SImon", + "physical_parameter_name": "sirdgconc", + "variableRootDD": "sirdgconc", + "branding_label": "tavg-u-hxy-si", + "branded_variable_name": "sirdgconc_tavg-u-hxy-si", + "region": "GLB", + "cmip6_compound_name": "SImon.sirdgconc", + "cmip7_compound_name": "seaIce.sirdgconc.tavg-u-hxy-si.mon.GLB", + "uid": "71342f78-faa7-11e6-bfb7-ac72891c3257" + }, + "seaIce.sisali.tavg-u-hxy-si.day.GLB": { + "frequency": "day", + "modeling_realm": "seaIce", + "standard_name": "sea_ice_salinity", + "units": "1E-03", + "cell_methods": "area: time: mean where sea_ice (mask=siconc)", + "cell_measures": "area: areacello", + "long_name": "Sea-Ice Salinity", + "comment": "Mean sea-ice salinity of all sea ice in grid cell. Sometimes, models implicitly or explicitly assume a different salinity of the ice for thermodynamic considerations than they do for closing the salt budget with the ocean. In these cases, the mean salinity used in the calculation of the salt budget should be reported.", + "dimensions": "longitude latitude time", + "out_name": "sisali", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "SIday", + "physical_parameter_name": "sisali", + "variableRootDD": "sisali", + "branding_label": "tavg-u-hxy-si", + "branded_variable_name": "sisali_tavg-u-hxy-si", + "region": "GLB", + "cmip6_compound_name": "SIday.sisali", + "cmip7_compound_name": "seaIce.sisali.tavg-u-hxy-si.day.GLB", + "uid": "83bbfb2d-7f07-11ef-9308-b1dd71e64bec" + }, + "seaIce.sisali.tavg-u-hxy-si.mon.GLB": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "sea_ice_salinity", + "units": "1E-03", + "cell_methods": "area: time: mean where sea_ice (mask=siconc)", + "cell_measures": "area: areacello", + "long_name": "Sea-Ice Salinity", + "comment": "Mean sea-ice salinity of all sea ice in grid cell. Sometimes, models implicitly or explicitly assume a different salinity of the ice for thermodynamic considerations than they do for closing the salt budget with the ocean. In these cases, the mean salinity used in the calculation of the salt budget should be reported.", + "dimensions": "longitude latitude time", + "out_name": "sisali", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "SImon", + "physical_parameter_name": "sisali", + "variableRootDD": "sisali", + "branding_label": "tavg-u-hxy-si", + "branded_variable_name": "sisali_tavg-u-hxy-si", + "region": "GLB", + "cmip6_compound_name": "SImon.sisali", + "cmip7_compound_name": "seaIce.sisali.tavg-u-hxy-si.mon.GLB", + "uid": "7113f7b2-faa7-11e6-bfb7-ac72891c3257" + }, + "seaIce.sisaltmass.tavg-u-hxy-si.day.GLB": { + "frequency": "day", + "modeling_realm": "seaIce", + "standard_name": "sea_ice_mass_content_of_salt", + "units": "kg m-2", + "cell_methods": "area: time: mean where sea_ice over all_area_types", + "cell_measures": "area: areacello", + "long_name": "Mass of Salt in Sea Ice", + "comment": "Total mass of all salt in sea ice divided by grid-cell area. Sometimes, models implicitly or explicitly assume a different salinity of the ice for thermodynamic considerations than they do for closing the salt budget with the ocean. In these cases, the total mass of all salt in sea ice should be calculated from the salinity value used in the calculation of the salt budget.", + "dimensions": "longitude latitude time", + "out_name": "sisaltmass", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "SIday", + "physical_parameter_name": "sisaltmass", + "variableRootDD": "sisaltmass", + "branding_label": "tavg-u-hxy-si", + "branded_variable_name": "sisaltmass_tavg-u-hxy-si", + "region": "GLB", + "cmip6_compound_name": "SIday.sisaltmass", + "cmip7_compound_name": "seaIce.sisaltmass.tavg-u-hxy-si.day.GLB", + "uid": "83bbfb2c-7f07-11ef-9308-b1dd71e64bec" + }, + "seaIce.sisaltmass.tavg-u-hxy-si.mon.GLB": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "sea_ice_mass_content_of_salt", + "units": "kg m-2", + "cell_methods": "area: time: mean where sea_ice over all_area_types", + "cell_measures": "area: areacello", + "long_name": "Mass of Salt in Sea Ice", + "comment": "Total mass of all salt in sea ice divided by grid-cell area. Sometimes, models implicitly or explicitly assume a different salinity of the ice for thermodynamic considerations than they do for closing the salt budget with the ocean. In these cases, the total mass of all salt in sea ice should be calculated from the salinity value used in the calculation of the salt budget.", + "dimensions": "longitude latitude time", + "out_name": "sisaltmass", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "SImon", + "physical_parameter_name": "sisaltmass", + "variableRootDD": "sisaltmass", + "branding_label": "tavg-u-hxy-si", + "branded_variable_name": "sisaltmass_tavg-u-hxy-si", + "region": "GLB", + "cmip6_compound_name": "SImon.sisaltmass", + "cmip7_compound_name": "seaIce.sisaltmass.tavg-u-hxy-si.mon.GLB", + "uid": "713cf6a8-faa7-11e6-bfb7-ac72891c3257" + }, + "seaIce.sishearvel.tpt-u-hxy-si.mon.GLB": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "maximum_over_coordinate_rotation_of_sea_ice_horizontal_shear_strain_rate", + "units": "s-1", + "cell_methods": "area: mean where sea_ice (mask=siconc) time: point", + "cell_measures": "area: areacello", + "long_name": "Maximum Shear of Sea-Ice Velocity Field", + "comment": "Maximum shear of sea-ice velocity field (second shear strain invariant). Requested as instantaneous value at the center of the month (i.e., first timestep of the 15th day of the month).", + "dimensions": "longitude latitude time1", + "out_name": "sishearvel", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-point", + "cmip6_table": "SImon", + "physical_parameter_name": "sishearvel", + "variableRootDD": "sishearvel", + "branding_label": "tpt-u-hxy-si", + "branded_variable_name": "sishearvel_tpt-u-hxy-si", + "region": "GLB", + "cmip6_compound_name": "SImon.sishearvel", + "cmip7_compound_name": "seaIce.sishearvel.tpt-u-hxy-si.mon.GLB", + "uid": "713564ba-faa7-11e6-bfb7-ac72891c3257" + }, + "seaIce.sisndmassdyn.tavg-u-hxy-si.mon.GLB": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "tendency_of_surface_snow_amount_due_to_sea_ice_dynamics", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean where sea_ice (mask=siconc)", + "cell_measures": "area: areacello", + "long_name": "Snow Mass Rate of Change Through Advection by Sea-Ice Dynamics", + "comment": "Rate of change of snow mass due to sea ice dynamics (advection, divergence, etc.) divided by grid-cell area.", + "dimensions": "longitude latitude time", + "out_name": "sisndmassdyn", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "SImon", + "physical_parameter_name": "sisndmassdyn", + "variableRootDD": "sisndmassdyn", + "branding_label": "tavg-u-hxy-si", + "branded_variable_name": "sisndmassdyn_tavg-u-hxy-si", + "region": "GLB", + "cmip6_compound_name": "SImon.sisndmassdyn", + "cmip7_compound_name": "seaIce.sisndmassdyn.tavg-u-hxy-si.mon.GLB", + "uid": "7110e568-faa7-11e6-bfb7-ac72891c3257" + }, + "seaIce.sisndmasssi.tavg-u-hxy-si.mon.GLB": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "tendency_of_surface_snow_amount_due_to_conversion_of_snow_to_sea_ice", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean where sea_ice (mask=siconc)", + "cell_measures": "area: areacello", + "long_name": "Snow Mass Rate of Change Through Snow-to-Ice Conversion", + "comment": "Rate of change of snow mass due to transformation of snow to sea ice divided by grid-cell area. Always negative or zero.", + "dimensions": "longitude latitude time", + "out_name": "sisndmasssi", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "SImon", + "physical_parameter_name": "sisndmasssi", + "variableRootDD": "sisndmasssi", + "branding_label": "tavg-u-hxy-si", + "branded_variable_name": "sisndmasssi_tavg-u-hxy-si", + "region": "GLB", + "cmip6_compound_name": "SImon.sisndmasssi", + "cmip7_compound_name": "seaIce.sisndmasssi.tavg-u-hxy-si.mon.GLB", + "uid": "714d7898-faa7-11e6-bfb7-ac72891c3257" + }, + "seaIce.sisndmasswind.tavg-u-hxy-si.mon.GLB": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "tendency_of_surface_snow_amount_due_to_drifting_into_sea", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean where sea_ice (mask=siconc)", + "cell_measures": "area: areacello", + "long_name": "Snow Mass Rate of Change Through Wind Drift of Snow", + "comment": "Rate of change of snow mass due to wind-driven transport into the ocean divided by grid-cell area.", + "dimensions": "longitude latitude time", + "out_name": "sisndmasswind", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "SImon", + "physical_parameter_name": "sisndmasswind", + "variableRootDD": "sisndmasswind", + "branding_label": "tavg-u-hxy-si", + "branded_variable_name": "sisndmasswind_tavg-u-hxy-si", + "region": "GLB", + "cmip6_compound_name": "SImon.sisndmasswind", + "cmip7_compound_name": "seaIce.sisndmasswind.tavg-u-hxy-si.mon.GLB", + "uid": "712046d4-faa7-11e6-bfb7-ac72891c3257" + }, + "seaIce.sisnhc.tavg-u-hxy-si.day.GLB": { + "frequency": "day", + "modeling_realm": "seaIce", + "standard_name": "thermal_energy_content_of_surface_snow", + "units": "J m-2", + "cell_methods": "area: time: mean where sea_ice (mask=siconc)", + "cell_measures": "area: areacello", + "long_name": "Snow Heat Content", + "comment": "Heat content of all snow in grid cell divided by grid-cell area. This includes both the latent and sensible heat content contributions. Snow-water equivalent at 0 C is assumed to have a heat content of 0 J. Does not include the heat content of sea ice.", + "dimensions": "longitude latitude time", + "out_name": "sisnhc", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "SIday", + "physical_parameter_name": "sisnhc", + "variableRootDD": "sisnhc", + "branding_label": "tavg-u-hxy-si", + "branded_variable_name": "sisnhc_tavg-u-hxy-si", + "region": "GLB", + "cmip6_compound_name": "SIday.sisnhc", + "cmip7_compound_name": "seaIce.sisnhc.tavg-u-hxy-si.day.GLB", + "uid": "83bbfb2a-7f07-11ef-9308-b1dd71e64bec" + }, + "seaIce.sisnhc.tavg-u-hxy-si.mon.GLB": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "thermal_energy_content_of_surface_snow", + "units": "J m-2", + "cell_methods": "area: time: mean where sea_ice (mask=siconc)", + "cell_measures": "area: areacello", + "long_name": "Snow Heat Content", + "comment": "Heat content of all snow in grid cell divided by grid-cell area. This includes both the latent and sensible heat content contributions. Snow-water equivalent at 0 C is assumed to have a heat content of 0 J. Does not include the heat content of sea ice.", + "dimensions": "longitude latitude time", + "out_name": "sisnhc", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "SImon", + "physical_parameter_name": "sisnhc", + "variableRootDD": "sisnhc", + "branding_label": "tavg-u-hxy-si", + "branded_variable_name": "sisnhc_tavg-u-hxy-si", + "region": "GLB", + "cmip6_compound_name": "SImon.sisnhc", + "cmip7_compound_name": "seaIce.sisnhc.tavg-u-hxy-si.mon.GLB", + "uid": "714e522c-faa7-11e6-bfb7-ac72891c3257" + }, + "seaIce.sisnmass.tavg-u-hm-u.day.NH": { + "frequency": "day", + "modeling_realm": "seaIce", + "standard_name": "surface_snow_mass", + "units": "kg", + "cell_methods": "area: sum time: mean", + "cell_measures": "", + "long_name": "Snow Mass on Sea Ice North", + "comment": "Total integrated mass of snow on sea ice in the Northern Hemisphere.", + "dimensions": "time", + "out_name": "sisnmassn", + "type": "real", + "positive": "", + "spatial_shape": "na-na", + "temporal_shape": "time-intv", + "cmip6_table": "SIday", + "physical_parameter_name": "sisnmassn", + "variableRootDD": "sisnmass", + "branding_label": "tavg-u-hm-u", + "branded_variable_name": "sisnmass_tavg-u-hm-u", + "region": "NH", + "cmip6_compound_name": "SIday.sisnmassn", + "cmip7_compound_name": "seaIce.sisnmass.tavg-u-hm-u.day.NH", + "uid": "80ab7262-a698-11ef-914a-613c0433d878" + }, + "seaIce.sisnmass.tavg-u-hm-u.day.SH": { + "frequency": "day", + "modeling_realm": "seaIce", + "standard_name": "surface_snow_mass", + "units": "kg", + "cell_methods": "area: sum time: mean", + "cell_measures": "", + "long_name": "Snow Mass on Sea Ice South", + "comment": "Total integrated mass of snow on sea ice in the Southern Hemisphere.", + "dimensions": "time", + "out_name": "sisnmasss", + "type": "real", + "positive": "", + "spatial_shape": "na-na", + "temporal_shape": "time-intv", + "cmip6_table": "SIday", + "physical_parameter_name": "sisnmasss", + "variableRootDD": "sisnmass", + "branding_label": "tavg-u-hm-u", + "branded_variable_name": "sisnmass_tavg-u-hm-u", + "region": "SH", + "cmip6_compound_name": "SIday.sisnmasss", + "cmip7_compound_name": "seaIce.sisnmass.tavg-u-hm-u.day.SH", + "uid": "80ab7263-a698-11ef-914a-613c0433d878" + }, + "seaIce.sisnmass.tavg-u-hm-u.mon.NH": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "surface_snow_mass", + "units": "kg", + "cell_methods": "area: sum time: mean", + "cell_measures": "", + "long_name": "Snow Mass on Sea Ice North", + "comment": "Total integrated mass of snow on sea ice in the Northern Hemisphere.", + "dimensions": "time", + "out_name": "sisnmassn", + "type": "real", + "positive": "", + "spatial_shape": "na-na", + "temporal_shape": "time-intv", + "cmip6_table": "SImon", + "physical_parameter_name": "sisnmassn", + "variableRootDD": "sisnmass", + "branding_label": "tavg-u-hm-u", + "branded_variable_name": "sisnmass_tavg-u-hm-u", + "region": "NH", + "cmip6_compound_name": "SImon.sisnmassn", + "cmip7_compound_name": "seaIce.sisnmass.tavg-u-hm-u.mon.NH", + "uid": "83bbfb21-7f07-11ef-9308-b1dd71e64bec" + }, + "seaIce.sisnmass.tavg-u-hm-u.mon.SH": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "surface_snow_mass", + "units": "kg", + "cell_methods": "area: sum time: mean", + "cell_measures": "", + "long_name": "Snow Mass on Sea Ice South", + "comment": "Total integrated mass of snow on sea ice in the Southern Hemisphere.", + "dimensions": "time", + "out_name": "sisnmasss", + "type": "real", + "positive": "", + "spatial_shape": "na-na", + "temporal_shape": "time-intv", + "cmip6_table": "SImon", + "physical_parameter_name": "sisnmasss", + "variableRootDD": "sisnmass", + "branding_label": "tavg-u-hm-u", + "branded_variable_name": "sisnmass_tavg-u-hm-u", + "region": "SH", + "cmip6_compound_name": "SImon.sisnmasss", + "cmip7_compound_name": "seaIce.sisnmass.tavg-u-hm-u.mon.SH", + "uid": "83bbfb20-7f07-11ef-9308-b1dd71e64bec" + }, + "seaIce.sisnmassacrossline.tavg-u-ht-u.mon.GLB": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "snow_transport_across_line_due_to_sea_ice_dynamics", + "units": "kg s-1", + "cell_methods": "time: mean", + "cell_measures": "", + "long_name": "Snow Mass Flux Through Straits", + "comment": "Net (sum of transport in all directions) snow mass transport through the following four passages, positive into the Arctic Ocean. Note that the definitions of the passages are for SIMIP purposes just meant as default values as given by the physical ocean MIP described in Griffies et al. (2016). Individual models might chose slightly different definitions as given by their grid geometry. 1. Fram Strait: (11.5W, 81.3N) to (10.5E, 79.6N). 2. Canadian Arctic Archipelago: (128.2W, 70.6N) to (59.3W, 82.1N). 3. Barents Sea Opening: (16.8E, 76.5N) to (19.2E, 70.2N). 4. Bering Strait: (171W, 66.2N) to (166W, 65N).", + "dimensions": "siline time", + "out_name": "sisnmassacrossline", + "type": "real", + "positive": "", + "spatial_shape": "TRS-na", + "temporal_shape": "time-intv", + "cmip6_table": "SImon", + "physical_parameter_name": "sisnmassacrossline", + "variableRootDD": "sisnmassacrossline", + "branding_label": "tavg-u-ht-u", + "branded_variable_name": "sisnmassacrossline_tavg-u-ht-u", + "region": "GLB", + "cmip6_compound_name": "SImon.sisnmassacrossline", + "cmip7_compound_name": "seaIce.sisnmassacrossline.tavg-u-ht-u.mon.GLB", + "uid": "712fb3ee-faa7-11e6-bfb7-ac72891c3257" + }, + "seaIce.sispeed.tavg-u-hxy-si.day.GLB": { + "frequency": "day", + "modeling_realm": "seaIce", + "standard_name": "sea_ice_speed", + "units": "m s-1", + "cell_methods": "area: time: mean where sea_ice (mask=siconc)", + "cell_measures": "area: areacello", + "long_name": "Sea-Ice Speed", + "comment": "Speed of ice (i.e. mean absolute velocity) to account for back-and-forth movement of the ice.", + "dimensions": "longitude latitude time", + "out_name": "sispeed", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "SIday", + "physical_parameter_name": "sispeed", + "variableRootDD": "sispeed", + "branding_label": "tavg-u-hxy-si", + "branded_variable_name": "sispeed_tavg-u-hxy-si", + "region": "GLB", + "cmip6_compound_name": "SIday.sispeed", + "cmip7_compound_name": "seaIce.sispeed.tavg-u-hxy-si.day.GLB", + "uid": "d243d86c-4a9f-11e6-b84e-ac72891c3257" + }, + "seaIce.sispeed.tavg-u-hxy-si.mon.GLB": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "sea_ice_speed", + "units": "m s-1", + "cell_methods": "area: time: mean where sea_ice (mask=siconc)", + "cell_measures": "area: areacello", + "long_name": "Sea-Ice Speed", + "comment": "Speed of ice (i.e. mean absolute velocity) to account for back-and-forth movement of the ice.", + "dimensions": "longitude latitude time", + "out_name": "sispeed", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "SImon", + "physical_parameter_name": "sispeed", + "variableRootDD": "sispeed", + "branding_label": "tavg-u-hxy-si", + "branded_variable_name": "sispeed_tavg-u-hxy-si", + "region": "GLB", + "cmip6_compound_name": "SImon.sispeed", + "cmip7_compound_name": "seaIce.sispeed.tavg-u-hxy-si.mon.GLB", + "uid": "71435d54-faa7-11e6-bfb7-ac72891c3257" + }, + "seaIce.sistressave.tpt-u-hxy-si.mon.GLB": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "sea_ice_average_normal_horizontal_stress", + "units": "N m-1", + "cell_methods": "area: mean where sea_ice (mask=siconc) time: point", + "cell_measures": "area: areacello", + "long_name": "Average Normal Stress in Sea Ice", + "comment": "Average normal stress in sea ice (first stress invariant). Requested as instantaneous value at the center of the month (i.e., first timestep of the 15th day of the month).", + "dimensions": "longitude latitude time1", + "out_name": "sistressave", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-point", + "cmip6_table": "SImon", + "physical_parameter_name": "sistressave", + "variableRootDD": "sistressave", + "branding_label": "tpt-u-hxy-si", + "branded_variable_name": "sistressave_tpt-u-hxy-si", + "region": "GLB", + "cmip6_compound_name": "SImon.sistressave", + "cmip7_compound_name": "seaIce.sistressave.tpt-u-hxy-si.mon.GLB", + "uid": "711afb3e-faa7-11e6-bfb7-ac72891c3257" + }, + "seaIce.sistressmax.tpt-u-hxy-si.mon.GLB": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "maximum_over_coordinate_rotation_of_sea_ice_horizontal_shear_stress", + "units": "N m-1", + "cell_methods": "area: mean where sea_ice (mask=siconc) time: point", + "cell_measures": "area: areacello", + "long_name": "Maximum Shear Stress in Sea Ice", + "comment": "Maximum shear stress in sea ice (second stress invariant). Requested as instantaneous value at the center of the month (i.e., first timestep of the 15th day of the month).", + "dimensions": "longitude latitude time1", + "out_name": "sistressmax", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-point", + "cmip6_table": "SImon", + "physical_parameter_name": "sistressmax", + "variableRootDD": "sistressmax", + "branding_label": "tpt-u-hxy-si", + "branded_variable_name": "sistressmax_tpt-u-hxy-si", + "region": "GLB", + "cmip6_compound_name": "SImon.sistressmax", + "cmip7_compound_name": "seaIce.sistressmax.tpt-u-hxy-si.mon.GLB", + "uid": "7148170e-faa7-11e6-bfb7-ac72891c3257" + }, + "seaIce.sistrxdtop.tavg-u-hxy-si.mon.GLB": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "surface_downward_x_stress", + "units": "N m-2", + "cell_methods": "area: time: mean where sea_ice (mask=siconc)", + "cell_measures": "::MODEL", + "long_name": "X-Component of Atmospheric Stress on Sea Ice", + "comment": "X-component of the atmospheric stress on the surface of sea ice divided by grid-cell area.", + "dimensions": "longitude latitude time", + "out_name": "sistrxdtop", + "type": "real", + "positive": "down", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "SImon", + "physical_parameter_name": "sistrxdtop", + "variableRootDD": "sistrxdtop", + "branding_label": "tavg-u-hxy-si", + "branded_variable_name": "sistrxdtop_tavg-u-hxy-si", + "region": "GLB", + "cmip6_compound_name": "SImon.sistrxdtop", + "cmip7_compound_name": "seaIce.sistrxdtop.tavg-u-hxy-si.mon.GLB", + "uid": "71147110-faa7-11e6-bfb7-ac72891c3257" + }, + "seaIce.sistrxubot.tavg-u-hxy-si.mon.GLB": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "upward_x_stress_at_sea_ice_base", + "units": "N m-2", + "cell_methods": "area: time: mean where sea_ice (mask=siconc)", + "cell_measures": "area: areacello", + "long_name": "X-Component of Ocean Stress on Sea Ice", + "comment": "X-component of the ocean stress on the sea ice bottom divided by grid-cell area.", + "dimensions": "longitude latitude time", + "out_name": "sistrxubot", + "type": "real", + "positive": "up", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "SImon", + "physical_parameter_name": "sistrxubot", + "variableRootDD": "sistrxubot", + "branding_label": "tavg-u-hxy-si", + "branded_variable_name": "sistrxubot_tavg-u-hxy-si", + "region": "GLB", + "cmip6_compound_name": "SImon.sistrxubot", + "cmip7_compound_name": "seaIce.sistrxubot.tavg-u-hxy-si.mon.GLB", + "uid": "711858ca-faa7-11e6-bfb7-ac72891c3257" + }, + "seaIce.sistrydtop.tavg-u-hxy-si.mon.GLB": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "surface_downward_y_stress", + "units": "N m-2", + "cell_methods": "area: time: mean where sea_ice (mask=siconc)", + "cell_measures": "::MODEL", + "long_name": "Y-Component of Atmospheric Stress on Sea Ice", + "comment": "Y-component of the atmospheric stress on the surface of sea ice divided by grid-cell area.", + "dimensions": "longitude latitude time", + "out_name": "sistrydtop", + "type": "real", + "positive": "down", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "SImon", + "physical_parameter_name": "sistrydtop", + "variableRootDD": "sistrydtop", + "branding_label": "tavg-u-hxy-si", + "branded_variable_name": "sistrydtop_tavg-u-hxy-si", + "region": "GLB", + "cmip6_compound_name": "SImon.sistrydtop", + "cmip7_compound_name": "seaIce.sistrydtop.tavg-u-hxy-si.mon.GLB", + "uid": "713aeca0-faa7-11e6-bfb7-ac72891c3257" + }, + "seaIce.sistryubot.tavg-u-hxy-si.mon.GLB": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "upward_y_stress_at_sea_ice_base", + "units": "N m-2", + "cell_methods": "area: time: mean where sea_ice (mask=siconc)", + "cell_measures": "area: areacello", + "long_name": "Y-Component of Ocean Stress on Sea Ice", + "comment": "Y-component of the ocean stress on the sea ice bottom divided by grid-cell area.", + "dimensions": "longitude latitude time", + "out_name": "sistryubot", + "type": "real", + "positive": "up", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "SImon", + "physical_parameter_name": "sistryubot", + "variableRootDD": "sistryubot", + "branding_label": "tavg-u-hxy-si", + "branded_variable_name": "sistryubot_tavg-u-hxy-si", + "region": "GLB", + "cmip6_compound_name": "SImon.sistryubot", + "cmip7_compound_name": "seaIce.sistryubot.tavg-u-hxy-si.mon.GLB", + "uid": "7132e85c-faa7-11e6-bfb7-ac72891c3257" + }, + "seaIce.sitempbot.tavg-u-hxy-si.day.GLB": { + "frequency": "day", + "modeling_realm": "seaIce", + "standard_name": "sea_ice_basal_temperature", + "units": "K", + "cell_methods": "area: time: mean where sea_ice (mask=siconc)", + "cell_measures": "area: areacello", + "long_name": "Temperature at Ice-Ocean Interface", + "comment": "Mean temperature at the base of the sea ice, NOT the temperature within lowermost sea-ice model layer.", + "dimensions": "longitude latitude time", + "out_name": "sitempbot", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "SIday", + "physical_parameter_name": "sitempbot", + "variableRootDD": "sitempbot", + "branding_label": "tavg-u-hxy-si", + "branded_variable_name": "sitempbot_tavg-u-hxy-si", + "region": "GLB", + "cmip6_compound_name": "SIday.sitempbot", + "cmip7_compound_name": "seaIce.sitempbot.tavg-u-hxy-si.day.GLB", + "uid": "83bbfb29-7f07-11ef-9308-b1dd71e64bec" + }, + "seaIce.sitempbot.tavg-u-hxy-si.mon.GLB": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "sea_ice_basal_temperature", + "units": "K", + "cell_methods": "area: time: mean where sea_ice (mask=siconc)", + "cell_measures": "area: areacello", + "long_name": "Temperature at Ice-Ocean Interface", + "comment": "Mean temperature at the base of the sea ice, NOT the temperature within lowermost sea-ice model layer.", + "dimensions": "longitude latitude time", + "out_name": "sitempbot", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "SImon", + "physical_parameter_name": "sitempbot", + "variableRootDD": "sitempbot", + "branding_label": "tavg-u-hxy-si", + "branded_variable_name": "sitempbot_tavg-u-hxy-si", + "region": "GLB", + "cmip6_compound_name": "SImon.sitempbot", + "cmip7_compound_name": "seaIce.sitempbot.tavg-u-hxy-si.mon.GLB", + "uid": "714b6c60-faa7-11e6-bfb7-ac72891c3257" + }, + "seaIce.sitempsnic.tavg-u-hxy-si.day.GLB": { + "frequency": "day", + "modeling_realm": "seaIce", + "standard_name": "sea_ice_surface_temperature", + "units": "K", + "cell_methods": "area: time: mean where sea_ice (mask=siconc)", + "cell_measures": "area: areacello", + "long_name": "Temperature at Snow-Ice Interface", + "comment": "Mean temperature at the snow-ice interface. This is the surface temperature of ice where snow thickness is zero.", + "dimensions": "longitude latitude time", + "out_name": "sitempsnic", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "SIday", + "physical_parameter_name": "sitempsnic", + "variableRootDD": "sitempsnic", + "branding_label": "tavg-u-hxy-si", + "branded_variable_name": "sitempsnic_tavg-u-hxy-si", + "region": "GLB", + "cmip6_compound_name": "SIday.sitempsnic", + "cmip7_compound_name": "seaIce.sitempsnic.tavg-u-hxy-si.day.GLB", + "uid": "83bbfb28-7f07-11ef-9308-b1dd71e64bec" + }, + "seaIce.sitempsnic.tavg-u-hxy-si.mon.GLB": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "sea_ice_surface_temperature", + "units": "K", + "cell_methods": "area: time: mean where sea_ice (mask=siconc)", + "cell_measures": "area: areacello", + "long_name": "Temperature at Snow-Ice Interface", + "comment": "Mean temperature at the snow-ice interface. This is the surface temperature of ice where snow thickness is zero.", + "dimensions": "longitude latitude time", + "out_name": "sitempsnic", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "SImon", + "physical_parameter_name": "sitempsnic", + "variableRootDD": "sitempsnic", + "branding_label": "tavg-u-hxy-si", + "branded_variable_name": "sitempsnic_tavg-u-hxy-si", + "region": "GLB", + "cmip6_compound_name": "SImon.sitempsnic", + "cmip7_compound_name": "seaIce.sitempsnic.tavg-u-hxy-si.mon.GLB", + "uid": "711ec1d8-faa7-11e6-bfb7-ac72891c3257" + }, + "seaIce.sithick.tavg-u-hxy-si.day.GLB": { + "frequency": "day", + "modeling_realm": "seaIce", + "standard_name": "sea_ice_thickness", + "units": "m", + "cell_methods": "area: time: mean where sea_ice (mask=siconc)", + "cell_measures": "area: areacello", + "long_name": "Sea-Ice Thickness", + "comment": "Actual (floe) thickness of sea ice averaged over the ice-covered part of a given grid cell, NOT volume divided by grid area.", + "dimensions": "longitude latitude time", + "out_name": "sithick", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "SIday", + "physical_parameter_name": "sithick", + "variableRootDD": "sithick", + "branding_label": "tavg-u-hxy-si", + "branded_variable_name": "sithick_tavg-u-hxy-si", + "region": "GLB", + "cmip6_compound_name": "SIday.sithick", + "cmip7_compound_name": "seaIce.sithick.tavg-u-hxy-si.day.GLB", + "uid": "d243ba76-4a9f-11e6-b84e-ac72891c3257" + }, + "seaIce.sithick.tavg-u-hxy-si.mon.30S-90S": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "sea_ice_thickness", + "units": "m", + "cell_methods": "area: time: mean where sea_ice (mask=siconc)", + "cell_measures": "area: areacello", + "long_name": "Sea-Ice Thickness", + "comment": "Actual (floe) thickness of sea ice averaged over the ice-covered part of a given grid cell, NOT volume divided by grid area.", + "dimensions": "longitude latitude time", + "out_name": "sithick", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "SImon", + "physical_parameter_name": "sithick", + "variableRootDD": "sithick", + "branding_label": "tavg-u-hxy-si", + "branded_variable_name": "sithick_tavg-u-hxy-si", + "region": "30S-90S", + "cmip6_compound_name": "SImon.sithickSouth30", + "cmip7_compound_name": "seaIce.sithick.tavg-u-hxy-si.mon.30S-90S", + "uid": "80ac31d5-a698-11ef-914a-613c0433d878" + }, + "seaIce.sithick.tavg-u-hxy-si.mon.GLB": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "sea_ice_thickness", + "units": "m", + "cell_methods": "area: time: mean where sea_ice (mask=siconc)", + "cell_measures": "area: areacello", + "long_name": "Sea-Ice Thickness", + "comment": "Actual (floe) thickness of sea ice averaged over the ice-covered part of a given grid cell, NOT volume divided by grid area.", + "dimensions": "longitude latitude time", + "out_name": "sithick", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "SImon", + "physical_parameter_name": "sithick", + "variableRootDD": "sithick", + "branding_label": "tavg-u-hxy-si", + "branded_variable_name": "sithick_tavg-u-hxy-si", + "region": "GLB", + "cmip6_compound_name": "SImon.sithick", + "cmip7_compound_name": "seaIce.sithick.tavg-u-hxy-si.mon.GLB", + "uid": "d241a6d2-4a9f-11e6-b84e-ac72891c3257" + }, + "seaIce.sithick.tavg-u-hxy-sir.day.GLB": { + "frequency": "day", + "modeling_realm": "seaIce", + "standard_name": "sea_ice_thickness", + "units": "m", + "cell_methods": "area: time: mean where sea_ice_ridges (mask=sirdgconc)", + "cell_measures": "area: areacello", + "long_name": "Ridged Ice Thickness", + "comment": "Total volume of ridged sea ice divided by area of ridges, i.e. mean thickness of ridged sea ice.", + "dimensions": "longitude latitude time", + "out_name": "sirdgthick", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "SIday", + "physical_parameter_name": "sirdgthick", + "variableRootDD": "sithick", + "branding_label": "tavg-u-hxy-sir", + "branded_variable_name": "sithick_tavg-u-hxy-sir", + "region": "GLB", + "cmip6_compound_name": "SIday.sirdgthick", + "cmip7_compound_name": "seaIce.sithick.tavg-u-hxy-sir.day.GLB", + "uid": "83bbfb2e-7f07-11ef-9308-b1dd71e64bec" + }, + "seaIce.sithick.tavg-u-hxy-sir.mon.GLB": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "sea_ice_thickness", + "units": "m", + "cell_methods": "area: time: mean where sea_ice_ridges (mask=sirdgconc)", + "cell_measures": "area: areacello", + "long_name": "Ridged Ice Thickness", + "comment": "Total volume of ridged sea ice divided by area of ridges, i.e. mean thickness of ridged sea ice.", + "dimensions": "longitude latitude time", + "out_name": "sirdgthick", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "SImon", + "physical_parameter_name": "sirdgthick", + "variableRootDD": "sithick", + "branding_label": "tavg-u-hxy-sir", + "branded_variable_name": "sithick_tavg-u-hxy-sir", + "region": "GLB", + "cmip6_compound_name": "SImon.sirdgthick", + "cmip7_compound_name": "seaIce.sithick.tavg-u-hxy-sir.mon.GLB", + "uid": "714c1192-faa7-11e6-bfb7-ac72891c3257" + }, + "seaIce.sitimefrac.tavg-u-hxy-sea.day.GLB": { + "frequency": "day", + "modeling_realm": "seaIce", + "standard_name": "fraction_of_time_with_sea_ice_area_fraction_above_threshold", + "units": "1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Fraction of Time Steps with Sea Ice", + "comment": "Fraction of time steps of the averaging period during which sea ice is present (siconc > 0) in a grid cell.", + "dimensions": "longitude latitude time", + "out_name": "sitimefrac", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "SIday", + "physical_parameter_name": "sitimefrac", + "variableRootDD": "sitimefrac", + "branding_label": "tavg-u-hxy-sea", + "branded_variable_name": "sitimefrac_tavg-u-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "SIday.sitimefrac", + "cmip7_compound_name": "seaIce.sitimefrac.tavg-u-hxy-sea.day.GLB", + "uid": "d243af0e-4a9f-11e6-b84e-ac72891c3257" + }, + "seaIce.sitimefrac.tavg-u-hxy-sea.mon.30S-90S": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "fraction_of_time_with_sea_ice_area_fraction_above_threshold", + "units": "1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Fraction of Time Steps with Sea Ice", + "comment": "Fraction of time steps of the averaging period during which sea ice is present (siconc > 0) in a grid cell.", + "dimensions": "longitude latitude time", + "out_name": "sitimefrac", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "SImon", + "physical_parameter_name": "sitimefrac", + "variableRootDD": "sitimefrac", + "branding_label": "tavg-u-hxy-sea", + "branded_variable_name": "sitimefrac_tavg-u-hxy-sea", + "region": "30S-90S", + "cmip6_compound_name": "SImon.sitimefracSouth30", + "cmip7_compound_name": "seaIce.sitimefrac.tavg-u-hxy-sea.mon.30S-90S", + "uid": "80ac31d6-a698-11ef-914a-613c0433d878" + }, + "seaIce.sitimefrac.tavg-u-hxy-sea.mon.GLB": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "fraction_of_time_with_sea_ice_area_fraction_above_threshold", + "units": "1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Fraction of Time Steps with Sea Ice", + "comment": "Fraction of time steps of the averaging period during which sea ice is present (siconc > 0) in a grid cell.", + "dimensions": "longitude latitude time", + "out_name": "sitimefrac", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "SImon", + "physical_parameter_name": "sitimefrac", + "variableRootDD": "sitimefrac", + "branding_label": "tavg-u-hxy-sea", + "branded_variable_name": "sitimefrac_tavg-u-hxy-sea", + "region": "GLB", + "cmip6_compound_name": "SImon.sitimefrac", + "cmip7_compound_name": "seaIce.sitimefrac.tavg-u-hxy-sea.mon.GLB", + "uid": "714344cc-faa7-11e6-bfb7-ac72891c3257" + }, + "seaIce.siu.tavg-u-hxy-si.day.GLB": { + "frequency": "day", + "modeling_realm": "seaIce", + "standard_name": "sea_ice_x_velocity", + "units": "m s-1", + "cell_methods": "area: time: mean where sea_ice (mask=siconc)", + "cell_measures": "::MODEL", + "long_name": "X-Component of Sea-Ice Velocity", + "comment": "X-component of sea-ice velocity on native model grid.", + "dimensions": "longitude latitude time", + "out_name": "siu", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "SIday", + "physical_parameter_name": "siu", + "variableRootDD": "siu", + "branding_label": "tavg-u-hxy-si", + "branded_variable_name": "siu_tavg-u-hxy-si", + "region": "GLB", + "cmip6_compound_name": "SIday.siu", + "cmip7_compound_name": "seaIce.siu.tavg-u-hxy-si.day.GLB", + "uid": "b811a784-7c00-11e6-bcdf-ac72891c3257" + }, + "seaIce.siu.tavg-u-hxy-si.mon.30S-90S": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "sea_ice_x_velocity", + "units": "m s-1", + "cell_methods": "area: time: mean where sea_ice (mask=siconc)", + "cell_measures": "::MODEL", + "long_name": "X-Component of Sea-Ice Velocity", + "comment": "X-component of sea-ice velocity on native model grid.", + "dimensions": "longitude latitude time", + "out_name": "siu", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "SImon", + "physical_parameter_name": "siu", + "variableRootDD": "siu", + "branding_label": "tavg-u-hxy-si", + "branded_variable_name": "siu_tavg-u-hxy-si", + "region": "30S-90S", + "cmip6_compound_name": "SImon.siuSouth30", + "cmip7_compound_name": "seaIce.siu.tavg-u-hxy-si.mon.30S-90S", + "uid": "80ac31d7-a698-11ef-914a-613c0433d878" + }, + "seaIce.siu.tavg-u-hxy-si.mon.GLB": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "sea_ice_x_velocity", + "units": "m s-1", + "cell_methods": "area: time: mean where sea_ice (mask=siconc)", + "cell_measures": "::MODEL", + "long_name": "X-Component of Sea-Ice Velocity", + "comment": "X-component of sea-ice velocity on native model grid.", + "dimensions": "longitude latitude time", + "out_name": "siu", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "SImon", + "physical_parameter_name": "siu", + "variableRootDD": "siu", + "branding_label": "tavg-u-hxy-si", + "branded_variable_name": "siu_tavg-u-hxy-si", + "region": "GLB", + "cmip6_compound_name": "SImon.siu", + "cmip7_compound_name": "seaIce.siu.tavg-u-hxy-si.mon.GLB", + "uid": "7147b8fe-faa7-11e6-bfb7-ac72891c3257" + }, + "seaIce.siv.tavg-u-hxy-si.day.GLB": { + "frequency": "day", + "modeling_realm": "seaIce", + "standard_name": "sea_ice_y_velocity", + "units": "m s-1", + "cell_methods": "area: time: mean where sea_ice (mask=siconc)", + "cell_measures": "::MODEL", + "long_name": "Y-Component of Sea-Ice Velocity", + "comment": "Y-component of sea-ice velocity on native model grid.", + "dimensions": "longitude latitude time", + "out_name": "siv", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "SIday", + "physical_parameter_name": "siv", + "variableRootDD": "siv", + "branding_label": "tavg-u-hxy-si", + "branded_variable_name": "siv_tavg-u-hxy-si", + "region": "GLB", + "cmip6_compound_name": "SIday.siv", + "cmip7_compound_name": "seaIce.siv.tavg-u-hxy-si.day.GLB", + "uid": "b811b062-7c00-11e6-bcdf-ac72891c3257" + }, + "seaIce.siv.tavg-u-hxy-si.mon.30S-90S": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "sea_ice_y_velocity", + "units": "m s-1", + "cell_methods": "area: time: mean where sea_ice (mask=siconc)", + "cell_measures": "::MODEL", + "long_name": "Y-Component of Sea-Ice Velocity", + "comment": "Y-component of sea-ice velocity on native model grid.", + "dimensions": "longitude latitude time", + "out_name": "siv", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "SImon", + "physical_parameter_name": "siv", + "variableRootDD": "siv", + "branding_label": "tavg-u-hxy-si", + "branded_variable_name": "siv_tavg-u-hxy-si", + "region": "30S-90S", + "cmip6_compound_name": "SImon.sivSouth30", + "cmip7_compound_name": "seaIce.siv.tavg-u-hxy-si.mon.30S-90S", + "uid": "80ac31d8-a698-11ef-914a-613c0433d878" + }, + "seaIce.siv.tavg-u-hxy-si.mon.GLB": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "sea_ice_y_velocity", + "units": "m s-1", + "cell_methods": "area: time: mean where sea_ice (mask=siconc)", + "cell_measures": "::MODEL", + "long_name": "Y-Component of Sea-Ice Velocity", + "comment": "Y-component of sea-ice velocity on native model grid.", + "dimensions": "longitude latitude time", + "out_name": "siv", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "SImon", + "physical_parameter_name": "siv", + "variableRootDD": "siv", + "branding_label": "tavg-u-hxy-si", + "branded_variable_name": "siv_tavg-u-hxy-si", + "region": "GLB", + "cmip6_compound_name": "SImon.siv", + "cmip7_compound_name": "seaIce.siv.tavg-u-hxy-si.mon.GLB", + "uid": "71237944-faa7-11e6-bfb7-ac72891c3257" + }, + "seaIce.sivol.tavg-u-hm-u.day.NH": { + "frequency": "day", + "modeling_realm": "seaIce", + "standard_name": "sea_ice_volume", + "units": "1e3 km3", + "cell_methods": "area: sum time: mean", + "cell_measures": "", + "long_name": "Sea-Ice Volume North", + "comment": "Total integrated volume of sea ice in the Northern Hemisphere.", + "dimensions": "time", + "out_name": "sivoln", + "type": "real", + "positive": "", + "spatial_shape": "na-na", + "temporal_shape": "time-intv", + "cmip6_table": "SIday", + "physical_parameter_name": "sivoln", + "variableRootDD": "sivol", + "branding_label": "tavg-u-hm-u", + "branded_variable_name": "sivol_tavg-u-hm-u", + "region": "NH", + "cmip6_compound_name": "SIday.sivoln", + "cmip7_compound_name": "seaIce.sivol.tavg-u-hm-u.day.NH", + "uid": "80ab7264-a698-11ef-914a-613c0433d878" + }, + "seaIce.sivol.tavg-u-hm-u.day.SH": { + "frequency": "day", + "modeling_realm": "seaIce", + "standard_name": "sea_ice_volume", + "units": "1e3 km3", + "cell_methods": "area: sum time: mean", + "cell_measures": "", + "long_name": "Sea-Ice Volume South", + "comment": "Total integrated volume of sea ice in the Southern Hemisphere.", + "dimensions": "time", + "out_name": "sivols", + "type": "real", + "positive": "", + "spatial_shape": "na-na", + "temporal_shape": "time-intv", + "cmip6_table": "SIday", + "physical_parameter_name": "sivols", + "variableRootDD": "sivol", + "branding_label": "tavg-u-hm-u", + "branded_variable_name": "sivol_tavg-u-hm-u", + "region": "SH", + "cmip6_compound_name": "SIday.sivols", + "cmip7_compound_name": "seaIce.sivol.tavg-u-hm-u.day.SH", + "uid": "80ab7265-a698-11ef-914a-613c0433d878" + }, + "seaIce.sivol.tavg-u-hm-u.mon.NH": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "sea_ice_volume", + "units": "1e3 km3", + "cell_methods": "area: sum time: mean", + "cell_measures": "", + "long_name": "Sea-Ice Volume North", + "comment": "Total integrated volume of sea ice in the Northern Hemisphere.", + "dimensions": "time", + "out_name": "sivoln", + "type": "real", + "positive": "", + "spatial_shape": "na-na", + "temporal_shape": "time-intv", + "cmip6_table": "SImon", + "physical_parameter_name": "sivoln", + "variableRootDD": "sivol", + "branding_label": "tavg-u-hm-u", + "branded_variable_name": "sivol_tavg-u-hm-u", + "region": "NH", + "cmip6_compound_name": "SImon.sivoln", + "cmip7_compound_name": "seaIce.sivol.tavg-u-hm-u.mon.NH", + "uid": "712c4bd2-faa7-11e6-bfb7-ac72891c3257" + }, + "seaIce.sivol.tavg-u-hm-u.mon.SH": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "sea_ice_volume", + "units": "1e3 km3", + "cell_methods": "area: sum time: mean", + "cell_measures": "", + "long_name": "Sea-Ice Volume South", + "comment": "Total integrated volume of sea ice in the Southern Hemisphere.", + "dimensions": "time", + "out_name": "sivols", + "type": "real", + "positive": "", + "spatial_shape": "na-na", + "temporal_shape": "time-intv", + "cmip6_table": "SImon", + "physical_parameter_name": "sivols", + "variableRootDD": "sivol", + "branding_label": "tavg-u-hm-u", + "branded_variable_name": "sivol_tavg-u-hm-u", + "region": "SH", + "cmip6_compound_name": "SImon.sivols", + "cmip7_compound_name": "seaIce.sivol.tavg-u-hm-u.mon.SH", + "uid": "711edae2-faa7-11e6-bfb7-ac72891c3257" + }, + "seaIce.snc.tavg-u-hxy-si.mon.GLB": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "surface_snow_area_fraction", + "units": "%", + "cell_methods": "area: time: mean where sea_ice (mask=siconc)", + "cell_measures": "area: areacello", + "long_name": "Snow Area Percentage", + "comment": "Percentage of the sea-ice surface that is covered by snow. In many models that do not explicitly resolve an areal fraction of snow, this variable will always be either 0 or 1.", + "dimensions": "longitude latitude time", + "out_name": "sisnconc", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "SImon", + "physical_parameter_name": "sisnconc", + "variableRootDD": "snc", + "branding_label": "tavg-u-hxy-si", + "branded_variable_name": "snc_tavg-u-hxy-si", + "region": "GLB", + "cmip6_compound_name": "SImon.sisnconc", + "cmip7_compound_name": "seaIce.snc.tavg-u-hxy-si.mon.GLB", + "uid": "7112255e-faa7-11e6-bfb7-ac72891c3257" + }, + "seaIce.snd.tavg-u-hxy-sn.day.GLB": { + "frequency": "day", + "modeling_realm": "seaIce", + "standard_name": "surface_snow_thickness", + "units": "m", + "cell_methods": "area: time: mean where snow (for snow on sea ice only)", + "cell_measures": "area: areacello", + "long_name": "Snow Thickness", + "comment": "Actual thickness of snow averaged over the snow-covered part of the sea ice. This thickness is usually directly available within the model formulation. It can also be derived by dividing the total volume of snow by the area of the snow.", + "dimensions": "longitude latitude time", + "out_name": "sisnthick", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "SIday", + "physical_parameter_name": "sisnthick", + "variableRootDD": "snd", + "branding_label": "tavg-u-hxy-sn", + "branded_variable_name": "snd_tavg-u-hxy-sn", + "region": "GLB", + "cmip6_compound_name": "SIday.sisnthick", + "cmip7_compound_name": "seaIce.snd.tavg-u-hxy-sn.day.GLB", + "uid": "d243c0a2-4a9f-11e6-b84e-ac72891c3257" + }, + "seaIce.snd.tavg-u-hxy-sn.mon.30S-90S": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "surface_snow_thickness", + "units": "m", + "cell_methods": "area: time: mean where snow (for snow on sea ice only)", + "cell_measures": "area: areacello", + "long_name": "Snow Thickness", + "comment": "Actual thickness of snow averaged over the snow-covered part of the sea ice. This thickness is usually directly available within the model formulation. It can also be derived by dividing the total volume of snow by the area of the snow.", + "dimensions": "longitude latitude time", + "out_name": "sisnthick", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "SImon", + "physical_parameter_name": "sisnthick", + "variableRootDD": "snd", + "branding_label": "tavg-u-hxy-sn", + "branded_variable_name": "snd_tavg-u-hxy-sn", + "region": "30S-90S", + "cmip6_compound_name": "SImon.sisnthickSouth30", + "cmip7_compound_name": "seaIce.snd.tavg-u-hxy-sn.mon.30S-90S", + "uid": "80ac31d3-a698-11ef-914a-613c0433d878" + }, + "seaIce.snd.tavg-u-hxy-sn.mon.GLB": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "surface_snow_thickness", + "units": "m", + "cell_methods": "area: time: mean where snow (for snow on sea ice only)", + "cell_measures": "area: areacello", + "long_name": "Snow Thickness", + "comment": "Actual thickness of snow averaged over the snow-covered part of the sea ice. This thickness is usually directly available within the model formulation. It can also be derived by dividing the total volume of snow by the area of the snow.", + "dimensions": "longitude latitude time", + "out_name": "sisnthick", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "SImon", + "physical_parameter_name": "sisnthick", + "variableRootDD": "snd", + "branding_label": "tavg-u-hxy-sn", + "branded_variable_name": "snd_tavg-u-hxy-sn", + "region": "GLB", + "cmip6_compound_name": "SImon.sisnthick", + "cmip7_compound_name": "seaIce.snd.tavg-u-hxy-sn.mon.GLB", + "uid": "714eec6e-faa7-11e6-bfb7-ac72891c3257" + }, + "seaIce.snm.tavg-u-hxy-si.mon.GLB": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "surface_snow_melt_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean where sea_ice (mask=siconc)", + "cell_measures": "area: areacello", + "long_name": "Snow Mass Rate of Change Through Melt", + "comment": "Rate of change of snow mass through melt divided by grid-cell area. Always negative or zero.", + "dimensions": "longitude latitude time", + "out_name": "sisndmassmelt", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "SImon", + "physical_parameter_name": "sisndmassmelt", + "variableRootDD": "snm", + "branding_label": "tavg-u-hxy-si", + "branded_variable_name": "snm_tavg-u-hxy-si", + "region": "GLB", + "cmip6_compound_name": "SImon.sisndmassmelt", + "cmip7_compound_name": "seaIce.snm.tavg-u-hxy-si.mon.GLB", + "uid": "714129a8-faa7-11e6-bfb7-ac72891c3257" + }, + "seaIce.snw.tavg-u-hxy-si.mon.GLB": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "surface_snow_amount", + "units": "kg m-2", + "cell_methods": "area: time: mean where sea_ice over all_area_types", + "cell_measures": "area: areacello", + "long_name": "Snow Mass per Area", + "comment": "Total mass of snow on sea ice divided by grid-cell area. This then allows one to analyse the storage of latent heat in the snow, and to calculate the snow-water equivalent.", + "dimensions": "longitude latitude time", + "out_name": "sisnmass", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "SImon", + "physical_parameter_name": "sisnmass", + "variableRootDD": "snw", + "branding_label": "tavg-u-hxy-si", + "branded_variable_name": "snw_tavg-u-hxy-si", + "region": "GLB", + "cmip6_compound_name": "SImon.sisnmass", + "cmip7_compound_name": "seaIce.snw.tavg-u-hxy-si.mon.GLB", + "uid": "713ed766-faa7-11e6-bfb7-ac72891c3257" + }, + "seaIce.ts.tavg-u-hxy-si.day.GLB": { + "frequency": "day", + "modeling_realm": "seaIce", + "standard_name": "surface_temperature", + "units": "K", + "cell_methods": "area: time: mean where sea_ice (mask=siconc)", + "cell_measures": "area: areacello", + "long_name": "Surface Temperature of Sea Ice", + "comment": "Mean surface temperature of the sea-ice covered part of the grid cell. Wherever snow covers the ice, the surface temperature of the snow is used for the averaging, otherwise the surface temperature of the ice is used.", + "dimensions": "longitude latitude time", + "out_name": "sitemptop", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "SIday", + "physical_parameter_name": "sitemptop", + "variableRootDD": "ts", + "branding_label": "tavg-u-hxy-si", + "branded_variable_name": "ts_tavg-u-hxy-si", + "region": "GLB", + "cmip6_compound_name": "SIday.sitemptop", + "cmip7_compound_name": "seaIce.ts.tavg-u-hxy-si.day.GLB", + "uid": "d243c692-4a9f-11e6-b84e-ac72891c3257" + }, + "seaIce.ts.tavg-u-hxy-si.mon.30S-90S": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "surface_temperature", + "units": "K", + "cell_methods": "area: time: mean where sea_ice (mask=siconc)", + "cell_measures": "area: areacello", + "long_name": "Surface Temperature of Sea Ice", + "comment": "Mean surface temperature of the sea-ice covered part of the grid cell. Wherever snow covers the ice, the surface temperature of the snow is used for the averaging, otherwise the surface temperature of the ice is used.", + "dimensions": "longitude latitude time", + "out_name": "sitemptop", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "SImon", + "physical_parameter_name": "sitemptop", + "variableRootDD": "ts", + "branding_label": "tavg-u-hxy-si", + "branded_variable_name": "ts_tavg-u-hxy-si", + "region": "30S-90S", + "cmip6_compound_name": "SImon.sitemptopSouth30", + "cmip7_compound_name": "seaIce.ts.tavg-u-hxy-si.mon.30S-90S", + "uid": "80ac31d4-a698-11ef-914a-613c0433d878" + }, + "seaIce.ts.tavg-u-hxy-si.mon.GLB": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "surface_temperature", + "units": "K", + "cell_methods": "area: time: mean where sea_ice (mask=siconc)", + "cell_measures": "area: areacello", + "long_name": "Surface Temperature of Sea Ice", + "comment": "Mean surface temperature of the sea-ice covered part of the grid cell. Wherever snow covers the ice, the surface temperature of the snow is used for the averaging, otherwise the surface temperature of the ice is used.", + "dimensions": "longitude latitude time", + "out_name": "sitemptop", + "type": "real", + "positive": "", + "spatial_shape": "XY-na", + "temporal_shape": "time-intv", + "cmip6_table": "SImon", + "physical_parameter_name": "sitemptop", + "variableRootDD": "ts", + "branding_label": "tavg-u-hxy-si", + "branded_variable_name": "ts_tavg-u-hxy-si", + "region": "GLB", + "cmip6_compound_name": "SImon.sitemptop", + "cmip7_compound_name": "seaIce.ts.tavg-u-hxy-si.mon.GLB", + "uid": "711075e2-faa7-11e6-bfb7-ac72891c3257" + } + } +} \ No newline at end of file diff --git a/excel_to_yaml.py b/excel_to_yaml.py new file mode 100644 index 00000000..3b7c0244 --- /dev/null +++ b/excel_to_yaml.py @@ -0,0 +1,284 @@ +#!/usr/bin/env python3 +""" +Convert CMIP7 variable mapping Excel file to YAML for use in pycmor. +Uses compound names as unique identifiers. +""" + +import argparse + +import pandas as pd +import yaml + + +def excel_to_yaml(excel_path, yaml_path, filter_status=None): + """ + Convert Excel variable mapping to YAML format. + + Parameters + ---------- + excel_path : str + Path to the Excel file + yaml_path : str + Path to output YAML file + filter_status : str, optional + Only include variables with this status (e.g., 'completed') + """ + print("=" * 80) + print("CONVERTING EXCEL TO YAML") + print("=" * 80) + + # Read Excel file + print(f"\nReading Excel file: {excel_path}") + df = pd.read_excel(excel_path, sheet_name="Variable Mapping") + print(f"Total compound names in Excel: {len(df)}") + + # Filter by status if requested + if filter_status: + df = df[df["status"] == filter_status] + print(f"Filtered to status '{filter_status}': {len(df)} compound names") + + # Convert to dictionary format using compound_name as key + print("\nConverting to YAML structure...") + variables = {} + + for _, row in df.iterrows(): + compound_name = row["compound_name"] + + # Build variable entry + var_entry = { + # Identifiers + "table": row["table"] if pd.notna(row["table"]) else None, + "variable_id": row["variable_id"] if pd.notna(row["variable_id"]) else None, + # CMIP7 metadata + "standard_name": ( + row["standard_name"] if pd.notna(row["standard_name"]) else None + ), + "long_name": row["long_name"] if pd.notna(row["long_name"]) else None, + "units": row["units"] if pd.notna(row["units"]) else None, + "frequency": row["frequency"] if pd.notna(row["frequency"]) else None, + "modeling_realm": ( + row["modeling_realm"] if pd.notna(row["modeling_realm"]) else None + ), + "region": row["region"] if pd.notna(row["region"]) else None, + "method_level_grid": ( + row["method_level_grid"] if pd.notna(row["method_level_grid"]) else None + ), + # Model mappings + "model_mappings": { + "fesom": ( + row["fesom"] + if pd.notna(row["fesom"]) and row["fesom"] != "" + else None + ), + "oifs": ( + row["oifs"] if pd.notna(row["oifs"]) and row["oifs"] != "" else None + ), + "recom": ( + row["recom"] + if pd.notna(row["recom"]) and row["recom"] != "" + else None + ), + "lpj_guess": ( + row["lpj_guess"] + if pd.notna(row["lpj_guess"]) and row["lpj_guess"] != "" + else None + ), + }, + # Processing information + "processing": { + "preprocess": ( + row["preprocess"] + if pd.notna(row["preprocess"]) and row["preprocess"] != "" + else None + ), + "formula": ( + row["formula"] + if pd.notna(row["formula"]) and row["formula"] != "" + else None + ), + "comment": ( + row["comment"] + if pd.notna(row["comment"]) and row["comment"] != "" + else None + ), + }, + # Status + "status": row["status"] if pd.notna(row["status"]) else "pending", + "priority": ( + row["priority"] + if pd.notna(row["priority"]) and row["priority"] != "" + else None + ), + } + + # Clean up None values in nested dicts + var_entry["model_mappings"] = { + k: v for k, v in var_entry["model_mappings"].items() if v is not None + } + var_entry["processing"] = { + k: v for k, v in var_entry["processing"].items() if v is not None + } + + # Remove empty nested dicts + if not var_entry["model_mappings"]: + del var_entry["model_mappings"] + if not var_entry["processing"]: + del var_entry["processing"] + + # Remove None values from top level + var_entry = {k: v for k, v in var_entry.items() if v is not None} + + variables[compound_name] = var_entry + + # Write YAML file + print(f"\nWriting YAML file: {yaml_path}") + with open(yaml_path, "w") as f: + yaml.dump( + {"cmip7_compound_variables": variables}, + f, + default_flow_style=False, + sort_keys=True, + allow_unicode=True, + width=100, + ) + + print("\nāœ“ YAML file created successfully") + print(f" - Compound names included: {len(variables)}") + + # Statistics + print("\n" + "=" * 80) + print("STATISTICS") + print("=" * 80) + + # Count variables with model mappings + with_fesom = sum( + 1 + for v in variables.values() + if "model_mappings" in v and "fesom" in v["model_mappings"] + ) + with_oifs = sum( + 1 + for v in variables.values() + if "model_mappings" in v and "oifs" in v["model_mappings"] + ) + with_recom = sum( + 1 + for v in variables.values() + if "model_mappings" in v and "recom" in v["model_mappings"] + ) + with_lpj = sum( + 1 + for v in variables.values() + if "model_mappings" in v and "lpj_guess" in v["model_mappings"] + ) + + print("Compound names with model mappings:") + print(f" - FESOM: {with_fesom}") + print(f" - OIFS: {with_oifs}") + print(f" - REcoM: {with_recom}") + print(f" - LPJ-Guess: {with_lpj}") + + # Count by status + status_counts = {} + for v in variables.values(): + status = v.get("status", "pending") + status_counts[status] = status_counts.get(status, 0) + 1 + + print("\nCompound names by status:") + for status, count in sorted(status_counts.items()): + print(f" - {status}: {count}") + + # Count unique variable_ids + unique_vars = set( + v.get("variable_id") for v in variables.values() if v.get("variable_id") + ) + print(f"\nUnique variable_ids: {len(unique_vars)}") + + print("\n" + "=" * 80) + print("SAMPLE YAML OUTPUT (first 3 compound names)") + print("=" * 80) + + # Show sample + sample_vars = dict(list(variables.items())[:3]) + print( + yaml.dump( + {"cmip7_compound_variables": sample_vars}, + default_flow_style=False, + sort_keys=True, + ) + ) + + return variables + + +def main(): + parser = argparse.ArgumentParser( + description="Convert CMIP7 variable mapping Excel to YAML" + ) + parser.add_argument( + "--excel", + default="cmip7_variable_mapping.xlsx", + help="Path to Excel file (default: cmip7_variable_mapping.xlsx)", + ) + parser.add_argument( + "--yaml", + default="cmip7_variable_mapping.yaml", + help="Path to output YAML file (default: cmip7_variable_mapping.yaml)", + ) + parser.add_argument( + "--filter-status", + choices=["pending", "in_progress", "completed", "not_applicable"], + help="Only include variables with this status", + ) + + args = parser.parse_args() + + # Convert + excel_to_yaml(args.excel, args.yaml, args.filter_status) + + print("\n" + "=" * 80) + print("USAGE IN PYCMOR") + print("=" * 80) + print( + """ +To use this YAML file in pycmor: + + import yaml + + # Load the variable mapping + with open('cmip7_variable_mapping.yaml', 'r') as f: + var_mapping = yaml.safe_load(f) + + # Access compound variable information + compound_vars = var_mapping['cmip7_compound_variables'] + + # Example: Get OIFS mapping for daily mean tas + compound_name = 'atmos.tas.tavg-h2m-hxy-u.day.GLB' + if compound_name in compound_vars: + oifs_var = compound_vars[compound_name]['model_mappings']['oifs'] + preprocess = compound_vars[compound_name]['processing']['preprocess'] + print(f"{compound_name} -> OIFS '{oifs_var}' (method: {preprocess})") + + # Example: Get all monthly ocean variables mapped to FESOM + ocean_fesom_vars = { + comp_name: var_info + for comp_name, var_info in compound_vars.items() + if var_info.get('frequency') == 'mon' + and 'ocean' in var_info.get('modeling_realm', '') + and 'model_mappings' in var_info + and 'fesom' in var_info['model_mappings'] + } + + # Example: Get all variants of a specific variable + tas_variants = { + comp_name: var_info + for comp_name, var_info in compound_vars.items() + if var_info.get('variable_id') == 'tas' + } + print(f"Found {len(tas_variants)} variants of 'tas'") +""" + ) + + +if __name__ == "__main__": + main()