From 8ed369d3bef6e562900db7f4cd535ab22a1b9a5e Mon Sep 17 00:00:00 2001 From: PavanSiligam Date: Tue, 25 Nov 2025 14:24:30 +0100 Subject: [PATCH 1/8] feat: Add CMIP7 variable mapping Excel workflow - Create Excel file with 987 CMIP7 variables pre-populated from data request - Add conversion script to generate YAML from Excel - Include comprehensive README with usage instructions - Excel has color-coded columns: blue (CMIP7 metadata), green (model mappings), yellow (processing info) - Supports collaborative mapping for FESOM, OIFS, REcoM, LPJ-Guess models - Includes dropdown validation for status and priority fields --- CMIP7_VARIABLE_MAPPING_README.md | 228 +++++++++++++++++++++++++++++++ cmip7_variable_mapping.xlsx | Bin 0 -> 70039 bytes create_cmip7_variable_mapping.py | 210 ++++++++++++++++++++++++++++ excel_to_yaml.py | 199 +++++++++++++++++++++++++++ 4 files changed, 637 insertions(+) create mode 100644 CMIP7_VARIABLE_MAPPING_README.md create mode 100644 cmip7_variable_mapping.xlsx create mode 100644 create_cmip7_variable_mapping.py create mode 100644 excel_to_yaml.py diff --git a/CMIP7_VARIABLE_MAPPING_README.md b/CMIP7_VARIABLE_MAPPING_README.md new file mode 100644 index 00000000..de526013 --- /dev/null +++ b/CMIP7_VARIABLE_MAPPING_README.md @@ -0,0 +1,228 @@ +# 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 + +- **`cmip7_variable_mapping.xlsx`** - Excel file with pre-populated CMIP7 variables (987 variables) +- **`create_cmip7_variable_mapping.py`** - Script to generate the Excel file from CMIP7 data request +- **`excel_to_yaml.py`** - Script to convert filled Excel to YAML format +- **`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 all 987 CMIP7 variables pre-populated: + +```bash +conda run -n pycmor-dev python create_cmip7_variable_mapping.py +``` + +### 2. Fill in the Excel File + +Open `cmip7_variable_mapping.xlsx` in Excel or LibreOffice: + +**Column Structure:** + +| Color | Columns | Description | Action | +|-------|---------|-------------|--------| +| 🔵 Blue | `variable_id`, `standard_name`, `long_name`, `units`, `frequency`, `modeling_realm` | 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`, `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` +- **priority**: `high`, `medium`, `low` + +### 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 +- Total: **987 unique CMIP7 variables** + +## 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 0000000000000000000000000000000000000000..0cd294a73d16627094e3ffedd4847225133a319b GIT binary patch literal 70039 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

&zfcs6Vw3JT&%qG}x2>b3_ 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ⅇlw7!?Y$( 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 2: + realm = parts[0] + variable = parts[1] + frequency = parts[3] if len(parts) > 3 else 'unknown' + region = parts[4] if len(parts) > 4 else 'GLB' + + variables_dict[variable]['realms'].add(realm) + variables_dict[variable]['frequencies'].add(frequency) + variables_dict[variable]['regions'].add(region) + variables_dict[variable]['compound_names'].append(compound_name) + + # Store details from first occurrence + if isinstance(details, dict) and 'details' not in variables_dict[variable]: + variables_dict[variable]['details'] = details + +print(f"Unique CMIP7 variables extracted: {len(variables_dict)}") + +# Create DataFrame with all variables +print("\nCreating DataFrame with pre-populated CMIP7 metadata...") +data = [] + +for var_id in sorted(variables_dict.keys()): + var_info = variables_dict[var_id] + details = var_info.get('details', {}) + + row = { + # CMIP7 metadata (pre-populated) + 'variable_id': var_id, + 'standard_name': details.get('standard_name', '') if isinstance(details, dict) else '', + 'long_name': details.get('title', '') if isinstance(details, dict) else '', + 'units': details.get('units', '') if isinstance(details, dict) else '', + 'frequency': ', '.join(sorted(var_info['frequencies'])), + 'modeling_realm': ', '.join(sorted(var_info['realms'])), + + # Model-specific mappings (empty - for user input) + 'fesom': '', + 'oifs': '', + 'recom': '', + 'lpj_guess': '', + + # Processing information (empty - for user input) + 'preprocess': '', + 'formula': '', + 'comment': '', + 'status': 'pending', + 'priority': '', + } + data.append(row) + +df = pd.DataFrame(data) + +# 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': 20, # variable_id + 'B': 40, # standard_name + 'C': 50, # long_name + 'D': 15, # units + 'E': 20, # frequency + 'F': 20, # modeling_realm + 'G': 20, # fesom + 'H': 20, # oifs + 'I': 20, # recom + 'J': 20, # lpj_guess + 'K': 30, # preprocess + 'L': 40, # formula + 'M': 50, # comment + 'N': 15, # status + 'O': 15, # priority + } + + for col, width in column_widths.items(): + worksheet.column_dimensions[col].width = width + + # Freeze the header row + worksheet.freeze_panes = 'A2' + + # 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'N2:N{len(df)+1}') + + # Add data validation for priority column + priority_validation = DataValidation( + type="list", + formula1='"high,medium,low"', + allow_blank=True + ) + priority_validation.error = 'Please select from the dropdown list' + priority_validation.errorTitle = 'Invalid Priority' + worksheet.add_data_validation(priority_validation) + priority_validation.add(f'O2:O{len(df)+1}') + + # Style the header row + from openpyxl.styles import Font, PatternFill, Alignment + + 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 + # 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 ['A', 'B', 'C', 'D', 'E', 'F']: + 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 ['G', 'H', 'I', 'J']: + 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 ['K', 'L', 'M', 'N', 'O']: + worksheet[f'{col}{row}'].fill = process_fill + +print(f"\n✓ Excel file created successfully: {output_file}") +print(f" - Total variables: {len(df)}") +print(f" - Total columns: {len(df.columns)}") +print(f" - CMIP7 metadata columns (blue): 6") +print(f" - Model mapping columns (green): 4") +print(f" - Processing columns (yellow): 5") + +print("\n" + "="*80) +print("USAGE INSTRUCTIONS") +print("="*80) +print(""" +1. Open cmip7_variable_mapping.xlsx in Excel or LibreOffice +2. CMIP7 metadata columns (blue) are pre-populated - DO NOT EDIT +3. 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 +4. Fill in processing information in yellow columns: + - preprocess: e.g., 'direct', 'avg24h', 'surface_extraction' + - formula: calculation formula for derived variables + - comment: any additional notes + - status: select from dropdown (pending/in_progress/completed/not_applicable) + - priority: select from dropdown (high/medium/low) +5. Save the Excel file +6. Run the conversion script to generate YAML for pycmor + +Example entries: + - tas: oifs='t2m', preprocess='daily_mean', status='completed' + - thetao: fesom='temp', preprocess='direct', status='completed' + - sos: fesom='salt', preprocess='surface_extraction', status='in_progress' +""") + +print("="*80) +print("Next step: Use excel_to_yaml.py to convert the filled Excel to YAML") +print("="*80) diff --git a/excel_to_yaml.py b/excel_to_yaml.py new file mode 100644 index 00000000..7fafd1aa --- /dev/null +++ b/excel_to_yaml.py @@ -0,0 +1,199 @@ +#!/usr/bin/env python3 +""" +Convert CMIP7 variable mapping Excel file to YAML for use in pycmor +""" + +import pandas as pd +import yaml +from pathlib import Path +import argparse + +def excel_to_yaml(excel_path, yaml_path, filter_status=None): + """ + Convert Excel variable mapping to YAML format. + + Parameters + ---------- + excel_path : str or Path + Path to the Excel file + yaml_path : str or Path + 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 variables 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)} variables") + + # Convert to dictionary format + print("\nConverting to YAML structure...") + variables = {} + + for _, row in df.iterrows(): + var_id = row['variable_id'] + + # Build variable entry + var_entry = { + # 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, + + # 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[var_id] = var_entry + + # Write YAML file + print(f"\nWriting YAML file: {yaml_path}") + with open(yaml_path, 'w') as f: + yaml.dump( + {'cmip7_variables': variables}, + f, + default_flow_style=False, + sort_keys=True, + allow_unicode=True, + width=100 + ) + + print(f"\n✓ YAML file created successfully") + print(f" - Variables 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(f"Variables 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(f"\nVariables by status:") + for status, count in sorted(status_counts.items()): + print(f" - {status}: {count}") + + print("\n" + "="*80) + print("SAMPLE YAML OUTPUT (first 3 variables)") + print("="*80) + + # Show sample + sample_vars = dict(list(variables.items())[:3]) + print(yaml.dump({'cmip7_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 variable information + variables = var_mapping['cmip7_variables'] + + # Example: Get FESOM mapping for 'thetao' + if 'thetao' in variables: + fesom_var = variables['thetao']['model_mappings']['fesom'] + print(f"CMIP7 'thetao' maps to FESOM '{fesom_var}'") + + # Example: Get all ocean variables mapped to FESOM + ocean_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'] + } +""") + + +if __name__ == '__main__': + main() From adbe501bfef6bcb8d445dc2ecec5e50665fc6aa6 Mon Sep 17 00:00:00 2001 From: PavanSiligam Date: Tue, 25 Nov 2025 14:38:43 +0100 Subject: [PATCH 2/8] feat: Use compound names as unique identifiers in CMIP7 variable mapping - Update Excel to use compound_name as primary key (1,974 rows vs 987) - Handle duplicate variable names across different contexts * 414 variables appear in multiple variants (e.g., tas has 20 variants) * Different frequencies (mon, day, yr, 6hr, etc.) * Different regions (GLB, ATA, GRL, NH, SH, etc.) * Different methods (tavg, tmax, tmin, tpt, etc.) - Add columns: compound_name, table, region, method_level_grid - Each variant can have different model mappings and preprocessing - Update conversion script to use compound names as keys in YAML - Addresses issue where variable_id alone was ambiguous Example: tas variants now properly distinguished: - 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) --- cmip7_variable_mapping.xlsx | Bin 70039 -> 160102 bytes create_cmip7_variable_mapping.py | 246 +++++++++++++++++-------------- excel_to_yaml.py | 78 ++++++---- 3 files changed, 188 insertions(+), 136 deletions(-) diff --git a/cmip7_variable_mapping.xlsx b/cmip7_variable_mapping.xlsx index 0cd294a73d16627094e3ffedd4847225133a319b..d608a2aa1b6cf5b1fdcb456d2ee9924360f36943 100644 GIT binary patch literal 160102 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 z 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
Zm;FGx`tQpj@Opv`%=0s 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 literal 70039 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

&zfcs6Vw3JT&%qG}x2>b3_ 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ⅇlw7!?Y$( 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 2: realm = parts[0] variable = parts[1] - frequency = parts[3] if len(parts) > 3 else 'unknown' + 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' - - variables_dict[variable]['realms'].add(realm) - variables_dict[variable]['frequencies'].add(frequency) - variables_dict[variable]['regions'].add(region) - variables_dict[variable]['compound_names'].append(compound_name) - - # Store details from first occurrence - if isinstance(details, dict) and 'details' not in variables_dict[variable]: - variables_dict[variable]['details'] = details - -print(f"Unique CMIP7 variables extracted: {len(variables_dict)}") - -# Create DataFrame with all variables -print("\nCreating DataFrame with pre-populated CMIP7 metadata...") -data = [] - -for var_id in sorted(variables_dict.keys()): - var_info = variables_dict[var_id] - details = var_info.get('details', {}) - - row = { - # CMIP7 metadata (pre-populated) - 'variable_id': var_id, - 'standard_name': details.get('standard_name', '') if isinstance(details, dict) else '', - 'long_name': details.get('title', '') if isinstance(details, dict) else '', - 'units': details.get('units', '') if isinstance(details, dict) else '', - 'frequency': ', '.join(sorted(var_info['frequencies'])), - 'modeling_realm': ', '.join(sorted(var_info['realms'])), - - # Model-specific mappings (empty - for user input) - 'fesom': '', - 'oifs': '', - 'recom': '', - 'lpj_guess': '', - - # Processing information (empty - for user input) - 'preprocess': '', - 'formula': '', - 'comment': '', - 'status': 'pending', - 'priority': '', - } - data.append(row) + + # 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 + + 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 '', + 'long_name': details.get('title', '') 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, + + # Model-specific mappings (empty - for user input) + 'fesom': '', + 'oifs': '', + 'recom': '', + 'lpj_guess': '', + + # Processing information (empty - for user input) + 'preprocess': '', + 'formula': '', + 'comment': '', + 'status': 'pending', + 'priority': '', + } + 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': 20, # variable_id - 'B': 40, # standard_name - 'C': 50, # long_name - 'D': 15, # units - 'E': 20, # frequency - 'F': 20, # modeling_realm - 'G': 20, # fesom - 'H': 20, # oifs - 'I': 20, # recom - 'J': 20, # lpj_guess - 'K': 30, # preprocess - 'L': 40, # formula - 'M': 50, # comment - 'N': 15, # status - 'O': 15, # priority + 'A': 50, # compound_name + 'B': 15, # table + 'C': 20, # variable_id + 'D': 40, # standard_name + 'E': 50, # long_name + 'F': 15, # units + 'G': 12, # frequency + 'H': 20, # modeling_realm + 'I': 12, # region + 'J': 30, # method_level_grid + '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, # priority } - + for col, width in column_widths.items(): worksheet.column_dimensions[col].width = width - - # Freeze the header row - worksheet.freeze_panes = 'A2' - + + # 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"', @@ -128,8 +126,8 @@ status_validation.error = 'Please select from the dropdown list' status_validation.errorTitle = 'Invalid Status' worksheet.add_data_validation(status_validation) - status_validation.add(f'N2:N{len(df)+1}') - + status_validation.add(f'R2:R{len(df)+1}') + # Add data validation for priority column priority_validation = DataValidation( type="list", @@ -139,70 +137,102 @@ priority_validation.error = 'Please select from the dropdown list' priority_validation.errorTitle = 'Invalid Priority' worksheet.add_data_validation(priority_validation) - priority_validation.add(f'O2:O{len(df)+1}') - + priority_validation.add(f'S2:S{len(df)+1}') + # Style the header row from openpyxl.styles import Font, PatternFill, Alignment - + 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 ['A', 'B', 'C', 'D', 'E', 'F']: + 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 ['G', 'H', 'I', 'J']: + 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 ['K', 'L', 'M', 'N', 'O']: + 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 variables: {len(df)}") +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(f" - CMIP7 metadata columns (blue): 6") +print(f" - Identifier columns (gray): 3 (compound_name, table, variable_id)") +print(f" - CMIP7 metadata columns (blue): 7") print(f" - Model mapping columns (green): 4") print(f" - Processing columns (yellow): 5") +# 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(f"\nFrequency distribution:") +freq_counts = df['frequency'].value_counts() +for freq, count in freq_counts.head(10).items(): + print(f" {freq}: {count}") + +print(f"\nRealm distribution:") +realm_counts = df['modeling_realm'].value_counts() +for realm, count in realm_counts.items(): + print(f" {realm}: {count}") + print("\n" + "="*80) print("USAGE INSTRUCTIONS") print("="*80) print(""" -1. Open cmip7_variable_mapping.xlsx in Excel or LibreOffice -2. CMIP7 metadata columns (blue) are pre-populated - DO NOT EDIT -3. Fill in model-specific variable names in green columns: +1. Open cmip7_variable_mapping_v2.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 +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 -4. Fill in processing information in yellow columns: - - preprocess: e.g., 'direct', 'avg24h', 'surface_extraction' - - formula: calculation formula for derived variables - - comment: any additional notes - - status: select from dropdown (pending/in_progress/completed/not_applicable) - - priority: select from dropdown (high/medium/low) -5. Save the Excel file -6. Run the conversion script to generate YAML for pycmor - -Example entries: - - tas: oifs='t2m', preprocess='daily_mean', status='completed' - - thetao: fesom='temp', preprocess='direct', status='completed' - - sos: fesom='salt', preprocess='surface_extraction', status='in_progress' +5. Fill in processing information in yellow columns +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') + +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) diff --git a/excel_to_yaml.py b/excel_to_yaml.py index 7fafd1aa..0999e197 100644 --- a/excel_to_yaml.py +++ b/excel_to_yaml.py @@ -1,22 +1,23 @@ #!/usr/bin/env python3 """ -Convert CMIP7 variable mapping Excel file to YAML for use in pycmor +Convert CMIP7 variable mapping Excel file to YAML for use in pycmor. +Uses compound names as unique identifiers. """ import pandas as pd import yaml -from pathlib import Path import argparse + def excel_to_yaml(excel_path, yaml_path, filter_status=None): """ Convert Excel variable mapping to YAML format. Parameters ---------- - excel_path : str or Path + excel_path : str Path to the Excel file - yaml_path : str or Path + yaml_path : str Path to output YAML file filter_status : str, optional Only include variables with this status (e.g., 'completed') @@ -28,28 +29,34 @@ def excel_to_yaml(excel_path, yaml_path, filter_status=None): # Read Excel file print(f"\nReading Excel file: {excel_path}") df = pd.read_excel(excel_path, sheet_name='Variable Mapping') - print(f"Total variables in Excel: {len(df)}") + 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)} variables") + print(f"Filtered to status '{filter_status}': {len(df)} compound names") - # Convert to dictionary format + # Convert to dictionary format using compound_name as key print("\nConverting to YAML structure...") variables = {} for _, row in df.iterrows(): - var_id = row['variable_id'] + 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': { @@ -84,13 +91,13 @@ def excel_to_yaml(excel_path, yaml_path, filter_status=None): # Remove None values from top level var_entry = {k: v for k, v in var_entry.items() if v is not None} - variables[var_id] = var_entry + 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_variables': variables}, + {'cmip7_compound_variables': variables}, f, default_flow_style=False, sort_keys=True, @@ -99,7 +106,7 @@ def excel_to_yaml(excel_path, yaml_path, filter_status=None): ) print(f"\n✓ YAML file created successfully") - print(f" - Variables included: {len(variables)}") + print(f" - Compound names included: {len(variables)}") # Statistics print("\n" + "="*80) @@ -112,7 +119,7 @@ def excel_to_yaml(excel_path, yaml_path, filter_status=None): 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(f"Variables with model mappings:") + print(f"Compound names with model mappings:") print(f" - FESOM: {with_fesom}") print(f" - OIFS: {with_oifs}") print(f" - REcoM: {with_recom}") @@ -124,17 +131,21 @@ def excel_to_yaml(excel_path, yaml_path, filter_status=None): status = v.get('status', 'pending') status_counts[status] = status_counts.get(status, 0) + 1 - print(f"\nVariables by status:") + print(f"\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 variables)") + print("SAMPLE YAML OUTPUT (first 3 compound names)") print("="*80) # Show sample sample_vars = dict(list(variables.items())[:3]) - print(yaml.dump({'cmip7_variables': sample_vars}, default_flow_style=False, sort_keys=True)) + print(yaml.dump({'cmip7_compound_variables': sample_vars}, default_flow_style=False, sort_keys=True)) return variables @@ -176,22 +187,33 @@ def main(): with open('cmip7_variable_mapping.yaml', 'r') as f: var_mapping = yaml.safe_load(f) - # Access variable information - variables = var_mapping['cmip7_variables'] - - # Example: Get FESOM mapping for 'thetao' - if 'thetao' in variables: - fesom_var = variables['thetao']['model_mappings']['fesom'] - print(f"CMIP7 'thetao' maps to FESOM '{fesom_var}'") - - # Example: Get all ocean variables mapped to FESOM - ocean_vars = { - var_id: var_info - for var_id, var_info in variables.items() - if 'ocean' in var_info.get('modeling_realm', '') + # 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'") """) From 70f464e5cdcb6c4d7213bf7900a65a4251ad4659 Mon Sep 17 00:00:00 2001 From: PavanSiligam Date: Tue, 25 Nov 2025 15:09:23 +0100 Subject: [PATCH 3/8] chore: Regenerate Excel file with compound name structure --- cmip7_variable_mapping.xlsx | Bin 160102 -> 160102 bytes 1 file changed, 0 insertions(+), 0 deletions(-) diff --git a/cmip7_variable_mapping.xlsx b/cmip7_variable_mapping.xlsx index d608a2aa1b6cf5b1fdcb456d2ee9924360f36943..6639f2df5e2c1209f10972c4db0e47840097239e 100644 GIT binary patch delta 432 zcmaF%i1XPaPM!d7W)=|!1_lm>HzgB!4syIHsf>QHN33MxRfYPj!v;KU@k@Wq(T+H-?VLAhIa_&qlasSmYJaOn&d$r(F1z;sWp&Q$Y95c3?cC)Jf|@f;cWm>% z)M9Ea#L7A0jNn|qpB^R2JHB7cl$!sM!EyFvJB5x#JDA&-tX1QkY{1<;F?Px|ol_qK zZ$~EZCUo;zdmSj|GoNNqzw1l-;W;`_Cd_Jm_1o_K>6y~zk3M|+^211fzGEPDluTF1XR?8Z z>GYI*CUcPJ+>%|j!4su*Cu8dZxOBR@TRiWPRumMk7eCn&crI$C! zF47SfP@gbi2FoKc%X?uLmjotVdG|K+^tHwZ#|;13*KZSTbxaa}sae*jWIiRVIlFd} z#I~CgEj=1q+>6vil^-52xbK=?QFDx$rTP6chk&V1*tem=u5)I;pUEHVcF_LuHUF0|au`%b&y1O)EWpOVFlX~;MiVxs>&4BQ9POGM zjN3Iim<;2A{OvL6Ob*OI#`JkvOwU0A?b%Ezj39xxIZTg10+(``e82(<`AjzOFrA)~ t&twi#HaDNi9z@^EXL142Dg{iIAUeJPB0r;m$r{AJTEOH6qGb!2JOSj#yH)@I From b70388381a98565fb91efb3a496d1cc8b11d099e Mon Sep 17 00:00:00 2001 From: PavanSiligam Date: Tue, 25 Nov 2025 15:14:38 +0100 Subject: [PATCH 4/8] style: Apply black, isort, and flake8 formatting - Remove unused Path import - Fix f-strings without placeholders - Sort imports according to isort/black profile - Remove trailing whitespace - All linting checks now pass (flake8, black, isort) --- create_cmip7_variable_mapping.py | 239 ++++++++++++++++--------------- excel_to_yaml.py | 199 ++++++++++++++++--------- 2 files changed, 254 insertions(+), 184 deletions(-) diff --git a/create_cmip7_variable_mapping.py b/create_cmip7_variable_mapping.py index 7e21215e..dd0c086c 100644 --- a/create_cmip7_variable_mapping.py +++ b/create_cmip7_variable_mapping.py @@ -6,19 +6,19 @@ """ import json + import pandas as pd -from pathlib import Path -print("="*80) +print("=" * 80) print("CREATING CMIP7 VARIABLE MAPPING EXCEL FILE") -print("="*80) +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: +with open("dreq_v1.2.2.2_metadata.json", "r") as f: dreq_metadata = json.load(f) -compound_names = dreq_metadata.get('Compound Name', {}) +compound_names = dreq_metadata.get("Compound Name", {}) print(f"Total compound names found: {len(compound_names)}") # Create DataFrame with compound names as the primary key @@ -27,46 +27,45 @@ for compound_name, details in sorted(compound_names.items()): # Parse compound name: realm.variable.method-level-grid-type.frequency.region - parts = compound_name.split('.') - + 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' - + 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 - + row = { # Primary identifier - 'compound_name': compound_name, - 'table': table, - 'variable_id': variable, - + "compound_name": compound_name, + "table": table, + "variable_id": variable, # CMIP7 metadata (pre-populated) - 'standard_name': details.get('standard_name', '') if isinstance(details, dict) else '', - 'long_name': details.get('title', '') 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, - + "standard_name": ( + details.get("standard_name", "") if isinstance(details, dict) else "" + ), + "long_name": details.get("title", "") 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, # Model-specific mappings (empty - for user input) - 'fesom': '', - 'oifs': '', - 'recom': '', - 'lpj_guess': '', - + "fesom": "", + "oifs": "", + "recom": "", + "lpj_guess": "", # Processing information (empty - for user input) - 'preprocess': '', - 'formula': '', - 'comment': '', - 'status': 'pending', - 'priority': '', + "preprocess": "", + "formula": "", + "comment": "", + "status": "pending", + "priority": "", } data.append(row) @@ -77,138 +76,145 @@ print(f"Unique tables: {df['table'].nunique()}") # Create Excel file with formatting -output_file = 'cmip7_variable_mapping.xlsx' +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) - +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'] - + 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': 50, # long_name - 'F': 15, # units - 'G': 12, # frequency - 'H': 20, # modeling_realm - 'I': 12, # region - 'J': 30, # method_level_grid - '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, # priority + "A": 50, # compound_name + "B": 15, # table + "C": 20, # variable_id + "D": 40, # standard_name + "E": 50, # long_name + "F": 15, # units + "G": 12, # frequency + "H": 20, # modeling_realm + "I": 12, # region + "J": 30, # method_level_grid + "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, # 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' - + 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 + allow_blank=True, ) - status_validation.error = 'Please select from the dropdown list' - status_validation.errorTitle = 'Invalid Status' + 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}') - + status_validation.add(f"R2:R{len(df)+1}") + # Add data validation for priority column priority_validation = DataValidation( - type="list", - formula1='"high,medium,low"', - allow_blank=True + type="list", formula1='"high,medium,low"', allow_blank=True ) - priority_validation.error = 'Please select from the dropdown list' - priority_validation.errorTitle = 'Invalid Priority' + priority_validation.error = "Please select from the dropdown list" + priority_validation.errorTitle = "Invalid Priority" worksheet.add_data_validation(priority_validation) - priority_validation.add(f'S2:S{len(df)+1}') - + priority_validation.add(f"S2:S{len(df)+1}") + # Style the header row - from openpyxl.styles import Font, PatternFill, Alignment - - 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) - + 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') + 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 - + 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') + 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 - + 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') + 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 - + 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') + 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 + 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(f" - Identifier columns (gray): 3 (compound_name, table, variable_id)") -print(f" - CMIP7 metadata columns (blue): 7") -print(f" - Model mapping columns (green): 4") -print(f" - Processing columns (yellow): 5") +print(" - Identifier columns (gray): 3 (compound_name, table, variable_id)") +print(" - CMIP7 metadata columns (blue): 7") +print(" - Model mapping columns (green): 4") +print(" - Processing columns (yellow): 5") # Show some statistics -print("\n" + "="*80) +print("\n" + "=" * 80) print("STATISTICS") -print("="*80) +print("=" * 80) print("\nVariables with multiple compound names (top 10):") -var_counts = df['variable_id'].value_counts() +var_counts = df["variable_id"].value_counts() for var, count in var_counts.head(10).items(): print(f" {var}: {count} compound names") -print(f"\nFrequency distribution:") -freq_counts = df['frequency'].value_counts() +print("\nFrequency distribution:") +freq_counts = df["frequency"].value_counts() for freq, count in freq_counts.head(10).items(): print(f" {freq}: {count}") -print(f"\nRealm distribution:") -realm_counts = df['modeling_realm'].value_counts() +print("\nRealm distribution:") +realm_counts = df["modeling_realm"].value_counts() for realm, count in realm_counts.items(): print(f" {realm}: {count}") -print("\n" + "="*80) +print("\n" + "=" * 80) print("USAGE INSTRUCTIONS") -print("="*80) -print(""" +print("=" * 80) +print( + """ 1. Open cmip7_variable_mapping_v2.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) @@ -231,10 +237,11 @@ - 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("=" * 80) print("Next step: Use excel_to_yaml.py to convert the filled Excel to YAML") -print("="*80) +print("=" * 80) diff --git a/excel_to_yaml.py b/excel_to_yaml.py index 0999e197..3b7c0244 100644 --- a/excel_to_yaml.py +++ b/excel_to_yaml.py @@ -4,9 +4,10 @@ Uses compound names as unique identifiers. """ +import argparse + import pandas as pd import yaml -import argparse def excel_to_yaml(excel_path, yaml_path, filter_status=None): @@ -22,18 +23,18 @@ def excel_to_yaml(excel_path, yaml_path, filter_status=None): filter_status : str, optional Only include variables with this status (e.g., 'completed') """ - print("="*80) + print("=" * 80) print("CONVERTING EXCEL TO YAML") - print("="*80) + print("=" * 80) # Read Excel file print(f"\nReading Excel file: {excel_path}") - df = pd.read_excel(excel_path, sheet_name='Variable Mapping') + 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] + 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 @@ -41,52 +42,88 @@ def excel_to_yaml(excel_path, yaml_path, filter_status=None): variables = {} for _, row in df.iterrows(): - compound_name = row['compound_name'] + 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, - + "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, - + "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, + "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, + "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, + "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} + 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'] + 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} @@ -95,31 +132,47 @@ def excel_to_yaml(excel_path, yaml_path, filter_status=None): # Write YAML file print(f"\nWriting YAML file: {yaml_path}") - with open(yaml_path, 'w') as f: + with open(yaml_path, "w") as f: yaml.dump( - {'cmip7_compound_variables': variables}, + {"cmip7_compound_variables": variables}, f, default_flow_style=False, sort_keys=True, allow_unicode=True, - width=100 + width=100, ) - print(f"\n✓ YAML file created successfully") + print("\n✓ YAML file created successfully") print(f" - Compound names included: {len(variables)}") # Statistics - print("\n" + "="*80) + print("\n" + "=" * 80) print("STATISTICS") - print("="*80) + 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']) + 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(f"Compound names with model mappings:") + print("Compound names with model mappings:") print(f" - FESOM: {with_fesom}") print(f" - OIFS: {with_oifs}") print(f" - REcoM: {with_recom}") @@ -128,46 +181,54 @@ def excel_to_yaml(excel_path, yaml_path, filter_status=None): # Count by status status_counts = {} for v in variables.values(): - status = v.get('status', 'pending') + status = v.get("status", "pending") status_counts[status] = status_counts.get(status, 0) + 1 - print(f"\nCompound names by status:") + 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')) + 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("\n" + "=" * 80) print("SAMPLE YAML OUTPUT (first 3 compound names)") - print("="*80) + 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)) + 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' + 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)' + "--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)' + "--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' + "--filter-status", + choices=["pending", "in_progress", "completed", "not_applicable"], + help="Only include variables with this status", ) args = parser.parse_args() @@ -175,10 +236,11 @@ def main(): # Convert excel_to_yaml(args.excel, args.yaml, args.filter_status) - print("\n" + "="*80) + print("\n" + "=" * 80) print("USAGE IN PYCMOR") - print("="*80) - print(""" + print("=" * 80) + print( + """ To use this YAML file in pycmor: import yaml @@ -214,8 +276,9 @@ def main(): if var_info.get('variable_id') == 'tas' } print(f"Found {len(tas_variants)} variants of 'tas'") -""") +""" + ) -if __name__ == '__main__': +if __name__ == "__main__": main() From f2c414cba346328f8a8e363c0ae53edf3c7663f6 Mon Sep 17 00:00:00 2001 From: PavanSiligam Date: Tue, 25 Nov 2025 16:35:20 +0100 Subject: [PATCH 5/8] Add CMIP7 Data Request priority column to variable mapping - Extract priority levels (Core, High, Medium, Low) from dreq_v1.2.2.2.json - Add dreq_priority column showing CMIP7 Data Request priorities per compound name - Remove empty long_name column (reduced from 20 to 19 columns) - Remove Excel table/filter formatting for better compatibility with Numbers on Mac - Keep simple frozen panes (header row and first 3 columns) - Maintain color-coded columns and dropdown validation - Total: 1,974 compound names with priority distribution: * High: 1,038 variables * Medium: 469 variables * Core: 131 variables * Low: 112 variables --- cmip7_variable_mapping.xlsx | Bin 160102 -> 163408 bytes create_cmip7_variable_mapping.py | 71 ++++++++++++++++++++++--------- 2 files changed, 52 insertions(+), 19 deletions(-) diff --git a/cmip7_variable_mapping.xlsx b/cmip7_variable_mapping.xlsx index 6639f2df5e2c1209f10972c4db0e47840097239e..51854ac3e52e26073efe100839478654135e19ed 100644 GIT binary patch literal 163408 zcmY&l^WwVp=DPO2 z{BB%*zP~@5s~$a0=RD6j&of@HtFDB9?G_FW&JCQR08c&nb`^y<%%8e3KQ}Qy?;Xt4 zogExqo|rf~@^}F3RC-lNnt4eHrW@V>Azwq7zmva^2uZE&<#GF1`3UgeF$#H2%HGrS zH$w(b@O}2m1i3AqdBC%$?PSs;4~``}|9lJiHt$u$hwu+8rKkAL!i?XN0f6~^vfkx)5b#Ae_H!^r= zZ*oLMC0v`O5t*dvFMn-1w1Kql9PyuS<2#e`t&F1&XyzHvSjUqCetsL^F#es_t_


-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

7W60W^0mJ_k#nh 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 z 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�PU8G%D5s+dG@`Q`Yq_e+{M{`wLWB~OiR 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 literal 160102 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 diff --git a/create_cmip7_variable_mapping.py b/create_cmip7_variable_mapping.py index dd0c086c..8ca06735 100644 --- a/create_cmip7_variable_mapping.py +++ b/create_cmip7_variable_mapping.py @@ -18,9 +18,27 @@ 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 = [] @@ -40,6 +58,12 @@ # 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, @@ -49,12 +73,12 @@ "standard_name": ( details.get("standard_name", "") if isinstance(details, dict) else "" ), - "long_name": details.get("title", "") 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": "", @@ -65,7 +89,7 @@ "formula": "", "comment": "", "status": "pending", - "priority": "", + "user_priority": "", # User-defined priority for implementation } data.append(row) @@ -91,12 +115,12 @@ "B": 15, # table "C": 20, # variable_id "D": 40, # standard_name - "E": 50, # long_name - "F": 15, # units - "G": 12, # frequency - "H": 20, # modeling_realm - "I": 12, # region - "J": 30, # method_level_grid + "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 @@ -105,7 +129,7 @@ "P": 40, # formula "Q": 50, # comment "R": 15, # status - "S": 15, # priority + "S": 15, # user_priority } for col, width in column_widths.items(): @@ -127,14 +151,14 @@ worksheet.add_data_validation(status_validation) status_validation.add(f"R2:R{len(df)+1}") - # Add data validation for priority column - priority_validation = DataValidation( + # Add data validation for user_priority column + user_priority_validation = DataValidation( type="list", formula1='"high,medium,low"', allow_blank=True ) - priority_validation.error = "Please select from the dropdown list" - priority_validation.errorTitle = "Invalid Priority" - worksheet.add_data_validation(priority_validation) - priority_validation.add(f"S2:S{len(df)+1}") + 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 @@ -186,9 +210,10 @@ 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") +print(" - CMIP7 metadata columns (blue): 7 (includes dreq_priority)") print(" - Model mapping columns (green): 4") -print(" - Processing columns (yellow): 5") +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) @@ -210,28 +235,36 @@ 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_v2.xlsx in Excel or LibreOffice +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 +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) From ab1a911b1331498a73c1e528efebbadf8a7b8d8c Mon Sep 17 00:00:00 2001 From: PavanSiligam Date: Tue, 25 Nov 2025 16:46:19 +0100 Subject: [PATCH 6/8] Update README and add CMIP7 Data Request JSON files - Add dreq_v1.2.2.2.json and dreq_v1.2.2.2_metadata.json (required by create script) - Update README with: - Information about compound names (1,974 entries covering 987 unique variables) - CMIP7 Data Request priority levels (Core, High, Medium, Low) - Updated column structure reflecting actual Excel columns - Instructions for fetching data request files using CMIP7-data-request-api - Clarification that JSON files are required by create_cmip7_variable_mapping.py --- CMIP7_VARIABLE_MAPPING_README.md | 57 +- dreq_v1.2.2.2.json | 89135 +++++++++++++++++++++++++++++ dreq_v1.2.2.2_metadata.json | 49362 ++++++++++++++++ 3 files changed, 138546 insertions(+), 8 deletions(-) create mode 100644 dreq_v1.2.2.2.json create mode 100644 dreq_v1.2.2.2_metadata.json diff --git a/CMIP7_VARIABLE_MAPPING_README.md b/CMIP7_VARIABLE_MAPPING_README.md index de526013..76e372e4 100644 --- a/CMIP7_VARIABLE_MAPPING_README.md +++ b/CMIP7_VARIABLE_MAPPING_README.md @@ -8,21 +8,41 @@ The workflow provides a user-friendly Excel interface for collaborative variable ## Files -- **`cmip7_variable_mapping.xlsx`** - Excel file with pre-populated CMIP7 variables (987 variables) -- **`create_cmip7_variable_mapping.py`** - Script to generate the Excel file from CMIP7 data request +### 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 all 987 CMIP7 variables pre-populated: +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: @@ -31,9 +51,10 @@ Open `cmip7_variable_mapping.xlsx` in Excel or LibreOffice: | Color | Columns | Description | Action | |-------|---------|-------------|--------| -| 🔵 Blue | `variable_id`, `standard_name`, `long_name`, `units`, `frequency`, `modeling_realm` | CMIP7 metadata (pre-populated) | **DO NOT EDIT** | +| ⬜ 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`, `priority` | Processing information | **Fill in as needed** | +| 🟡 Yellow | `preprocess`, `formula`, `comment`, `status`, `user_priority` | Processing information | **Fill in as needed** | **Example Entries:** @@ -47,7 +68,15 @@ Open `cmip7_variable_mapping.xlsx` in Excel or LibreOffice: **Dropdown Values:** - **status**: `pending`, `in_progress`, `completed`, `not_applicable` -- **priority**: `high`, `medium`, `low` +- **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 @@ -177,8 +206,20 @@ print(f"Found {len(ocean_fesom_vars)} ocean variables mapped to FESOM") ## Data Source The CMIP7 variable list is extracted from: -- `dreq_v1.2.2.2_metadata.json` - CMIP7 Data Request metadata -- Total: **987 unique CMIP7 variables** +- **`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 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 From 7abc54c3c40eba3023c3b06baff94857238b3ca0 Mon Sep 17 00:00:00 2001 From: Nadine Wieters Date: Tue, 25 Nov 2025 17:40:03 +0100 Subject: [PATCH 7/8] Add CMIP7 variable mapping file for SPINUP experiment. --- cmip7_spinup_variable_mapping.csv | 45 +++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 cmip7_spinup_variable_mapping.csv diff --git a/cmip7_spinup_variable_mapping.csv b/cmip7_spinup_variable_mapping.csv new file mode 100644 index 00000000..02a5e084 --- /dev/null +++ b/cmip7_spinup_variable_mapping.csv @@ -0,0 +1,45 @@ +Metric,Model,variable name/grib code in model,Needs new calculation/postprocessing,CMIP physical parameter,CMIP7 name (CF standard name),Justification,Model +"Top-of-atmosphere radiative imbalance and albedo [rsdt, rsut, rlut] ",OIFS,"tisr NGRBTISR/212, tsr/178 (net: incoming-outgoing), NGRBTSR - 178 Top solar radiation ",,rsdt,toa_incoming_shortwave_flux,Interpretation of the evolving energy input into the system, +,,,,rsut,toa_outgoing_shortwave_flux,, +,,,,rlut,toa_outgoing_longwave_flux,, +Global mean SST [tos],Fesom,"sst (Fesom), NGRBSSTK - 34 Sea surface temperature (OIFS)",,,tos,,SST stability is essential +"Ocean heat content – upper and lower if possible [thetaoga, bigthetaoga]",Fesom,"hc [J m**-2] (require ldiag_destine=.true.), temp [C]",yes???,thetaoga,sea_water_potential_temperature [K],"To first order, TOA and ocean heat content change should balance. Upper and lower ocean heat content is preferable – if not total.", +,Fesom,???,yes???,bigthetaoga,sea_water_conservative_temperature [K],, +Total ocean salt content [soga],Fesom,salt [psu] (salinity),no???,soga,sea_water_salinity [1e-3] ,Check that the ocean is conserving salt, +"Total ocean mass and volume [masscello, volcello]",Fesom,???,,masscello,sea_water_mass_per_unit_area,, +,Fesom,???,,volcello,ocean_volume,, +"Net surface heat flux (into ocean) [hfds, hfcorr]",Fesom,fh or qso [W/m^2],,hfds,surface_downward_heat_flux_in_sea_water [W m-2] ,Check with TOA and heat content (but need to think about ice), +,,,,hfcorr,???,, +Net surface freshwater flux into ocean and/or global mean precipitation,Fesom,fw [m/s] ,,,,Check with ocean volume (but need to think about ice), +,Fesom,"prec, snow [m/s]",,,,, +"Northern and Southern Hemisphere sea ice volume/mass min and max [sivoln, sivols]",Fesom,"a_ice,m_ice??? ",,sivoln,sea_ice_volume,, +,,,,sivols,sea_ice_volume,, +"AMOC [msftyrho, msftyz]",Fesom,,,msftyrho,ocean_y_overturning_mass_streamfunction,Maximum of MOC in Atlantic, +,,,,msftyz,ocean_y_overturning_mass_streamfunction,, +"Global mean albedo [rsdt, rsut]",OIFS,NGRBFAL - 243 Forecast albedo,,rsdt,toa_incoming_shortwave_flux,, +,,,,rsut,toa_outgoing_shortwave_flux,, +Snow cover – total area? [sncls],Fesom,m_snow???,,sncls sncIs???,surface_snow_area_fraction ???,, +CO2mass,OIFS,,,co2mass,atmosphere_mass_of_carbon_dioxide,Integral of atmospheric CO2 concentration, +Net carbon flux atmosphere–ocean (global integral fgco2),OIFS,,,fgco2,surface_downward_mass_flux_of_carbon_dioxide_expressed_as_carbon,"Understand if any remaining C relocation between the reservoirs is present at the end of spin-up, can be calculated from deltas from total land/ocean/permafrost carbon pools. This can be further detailed; e.g., land carbon can be distinct between soil/vegetation/permafrost, ocean carbon can be distinct between DIC/DOC/POC/surface ocean/deep ocean.", +Net carbon flux atmosphere–land (nbp),OIFS,,,nbp,surface_net_downward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_all_land_processes,This may need to be derived if terms like fire and land use are treated separately, +Net permafrost carbon flux,LPJ-Guess???,,,???,???,, +"Sediment weathering flux / riverine C flux (icriver, ocriver, fric, froc)",,,,icriver icfriver???,tendency_of_ocean_mole_content_of_inorganic_carbon_due_to_runoff_and_sediment_dissolution???,Necessary for mass balance within the ocean. There are separate terms for inorganic and organic carbon, +,,,,ocriver ocfriver???, tendency_of_ocean_mole_content_of_organic_carbon_due_to_runoff_and_sediment_dissolution ???,, +,,,,fric,minus_tendency_of_ocean_mole_content_of_inorganic_carbon_due_to_sedimentation,, +,,,,froc,minus_tendency_of_ocean_mole_content_of_organic_carbon_due_to_sedimentation,, +Diagnosed CO2 emissions,,,,???,???,"In case of CO2 concentration or emissions driven spin-up, respectively, to assess the total C balance of the model.", +intCVeg,LPJ-Guess???,,,cVeg,vegetation_carbon_content,Integral of carbon in vegetation (three of these four land carbon metrics would be useful to track drift in stocks), +IntCsoil *,LPJ-Guess???,,,cSoil,soil_mass_content_of_carbon,Integral of carbon in soil, +intCLitter,LPJ-Guess???,,,cLitter,litter_mass_content_of_carbon,Integral of carbon in litter, +intCLand,LPJ-Guess???,,,cLand,mass_content_of_carbon_in_vegetation_and_litter_and_soil_and_forestry_and_agricultural_products,Integral of carbon on Land, +intdic,,,,intdic,ocean_mass_content_of_dissolved_inorganic_carbon,Integral dissolved inorganic carbon concentration, +intCProduct,,,,,,Integral of harvested Carbon from land use (cLand = cVeg + cLitter + cSoil + cProduct), +intAlk,,Alkalini,,,,Integral dissolved alkalinity concentration, +intO2,,O2f [mmolO/m2/d] ,,O2 ???,mole_concentration_of_dissolved_molecular_oxygen_in_sea_water [mol m-3],Integral dissolved oxygen concentration, +intNO3,Fesom,NO3,,No3 ???,mole_concentration_of_nitrate_in_sea_water [mol m-3],Integral dissolved nitrate concentration, +Total water storage,,,,,,"Sum of snow water equivalent and soil moisture in all layers, useful to track drift in water budget", +,,,,,,, +,,,,,,, +,,,,,,, +,,,,,,, +"Reference: J. P. Dunne et al., https://doi.org/10.5194/gmd-18-6671-2025 table A1",,,,,,, From 0ca28e5a3943d4bc132b40962eadb7d0f5525ce3 Mon Sep 17 00:00:00 2001 From: Nadine Wieters Date: Wed, 26 Nov 2025 13:56:59 +0100 Subject: [PATCH 8/8] Delete file. --- cmip7_spinup_variable_mapping.csv | 45 ------------------------------- 1 file changed, 45 deletions(-) delete mode 100644 cmip7_spinup_variable_mapping.csv diff --git a/cmip7_spinup_variable_mapping.csv b/cmip7_spinup_variable_mapping.csv deleted file mode 100644 index 02a5e084..00000000 --- a/cmip7_spinup_variable_mapping.csv +++ /dev/null @@ -1,45 +0,0 @@ -Metric,Model,variable name/grib code in model,Needs new calculation/postprocessing,CMIP physical parameter,CMIP7 name (CF standard name),Justification,Model -"Top-of-atmosphere radiative imbalance and albedo [rsdt, rsut, rlut] ",OIFS,"tisr NGRBTISR/212, tsr/178 (net: incoming-outgoing), NGRBTSR - 178 Top solar radiation ",,rsdt,toa_incoming_shortwave_flux,Interpretation of the evolving energy input into the system, -,,,,rsut,toa_outgoing_shortwave_flux,, -,,,,rlut,toa_outgoing_longwave_flux,, -Global mean SST [tos],Fesom,"sst (Fesom), NGRBSSTK - 34 Sea surface temperature (OIFS)",,,tos,,SST stability is essential -"Ocean heat content – upper and lower if possible [thetaoga, bigthetaoga]",Fesom,"hc [J m**-2] (require ldiag_destine=.true.), temp [C]",yes???,thetaoga,sea_water_potential_temperature [K],"To first order, TOA and ocean heat content change should balance. Upper and lower ocean heat content is preferable – if not total.", -,Fesom,???,yes???,bigthetaoga,sea_water_conservative_temperature [K],, -Total ocean salt content [soga],Fesom,salt [psu] (salinity),no???,soga,sea_water_salinity [1e-3] ,Check that the ocean is conserving salt, -"Total ocean mass and volume [masscello, volcello]",Fesom,???,,masscello,sea_water_mass_per_unit_area,, -,Fesom,???,,volcello,ocean_volume,, -"Net surface heat flux (into ocean) [hfds, hfcorr]",Fesom,fh or qso [W/m^2],,hfds,surface_downward_heat_flux_in_sea_water [W m-2] ,Check with TOA and heat content (but need to think about ice), -,,,,hfcorr,???,, -Net surface freshwater flux into ocean and/or global mean precipitation,Fesom,fw [m/s] ,,,,Check with ocean volume (but need to think about ice), -,Fesom,"prec, snow [m/s]",,,,, -"Northern and Southern Hemisphere sea ice volume/mass min and max [sivoln, sivols]",Fesom,"a_ice,m_ice??? ",,sivoln,sea_ice_volume,, -,,,,sivols,sea_ice_volume,, -"AMOC [msftyrho, msftyz]",Fesom,,,msftyrho,ocean_y_overturning_mass_streamfunction,Maximum of MOC in Atlantic, -,,,,msftyz,ocean_y_overturning_mass_streamfunction,, -"Global mean albedo [rsdt, rsut]",OIFS,NGRBFAL - 243 Forecast albedo,,rsdt,toa_incoming_shortwave_flux,, -,,,,rsut,toa_outgoing_shortwave_flux,, -Snow cover – total area? [sncls],Fesom,m_snow???,,sncls sncIs???,surface_snow_area_fraction ???,, -CO2mass,OIFS,,,co2mass,atmosphere_mass_of_carbon_dioxide,Integral of atmospheric CO2 concentration, -Net carbon flux atmosphere–ocean (global integral fgco2),OIFS,,,fgco2,surface_downward_mass_flux_of_carbon_dioxide_expressed_as_carbon,"Understand if any remaining C relocation between the reservoirs is present at the end of spin-up, can be calculated from deltas from total land/ocean/permafrost carbon pools. This can be further detailed; e.g., land carbon can be distinct between soil/vegetation/permafrost, ocean carbon can be distinct between DIC/DOC/POC/surface ocean/deep ocean.", -Net carbon flux atmosphere–land (nbp),OIFS,,,nbp,surface_net_downward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_all_land_processes,This may need to be derived if terms like fire and land use are treated separately, -Net permafrost carbon flux,LPJ-Guess???,,,???,???,, -"Sediment weathering flux / riverine C flux (icriver, ocriver, fric, froc)",,,,icriver icfriver???,tendency_of_ocean_mole_content_of_inorganic_carbon_due_to_runoff_and_sediment_dissolution???,Necessary for mass balance within the ocean. There are separate terms for inorganic and organic carbon, -,,,,ocriver ocfriver???, tendency_of_ocean_mole_content_of_organic_carbon_due_to_runoff_and_sediment_dissolution ???,, -,,,,fric,minus_tendency_of_ocean_mole_content_of_inorganic_carbon_due_to_sedimentation,, -,,,,froc,minus_tendency_of_ocean_mole_content_of_organic_carbon_due_to_sedimentation,, -Diagnosed CO2 emissions,,,,???,???,"In case of CO2 concentration or emissions driven spin-up, respectively, to assess the total C balance of the model.", -intCVeg,LPJ-Guess???,,,cVeg,vegetation_carbon_content,Integral of carbon in vegetation (three of these four land carbon metrics would be useful to track drift in stocks), -IntCsoil *,LPJ-Guess???,,,cSoil,soil_mass_content_of_carbon,Integral of carbon in soil, -intCLitter,LPJ-Guess???,,,cLitter,litter_mass_content_of_carbon,Integral of carbon in litter, -intCLand,LPJ-Guess???,,,cLand,mass_content_of_carbon_in_vegetation_and_litter_and_soil_and_forestry_and_agricultural_products,Integral of carbon on Land, -intdic,,,,intdic,ocean_mass_content_of_dissolved_inorganic_carbon,Integral dissolved inorganic carbon concentration, -intCProduct,,,,,,Integral of harvested Carbon from land use (cLand = cVeg + cLitter + cSoil + cProduct), -intAlk,,Alkalini,,,,Integral dissolved alkalinity concentration, -intO2,,O2f [mmolO/m2/d] ,,O2 ???,mole_concentration_of_dissolved_molecular_oxygen_in_sea_water [mol m-3],Integral dissolved oxygen concentration, -intNO3,Fesom,NO3,,No3 ???,mole_concentration_of_nitrate_in_sea_water [mol m-3],Integral dissolved nitrate concentration, -Total water storage,,,,,,"Sum of snow water equivalent and soil moisture in all layers, useful to track drift in water budget", -,,,,,,, -,,,,,,, -,,,,,,, -,,,,,,, -"Reference: J. P. Dunne et al., https://doi.org/10.5194/gmd-18-6671-2025 table A1",,,,,,,