diff --git a/auxiliary_tools/cdat_regression_testing/843-migration-phase3/ex-scripts/debug.cfg b/auxiliary_tools/cdat_regression_testing/843-migration-phase3/ex-scripts/debug.cfg new file mode 100644 index 000000000..6f8768b3d --- /dev/null +++ b/auxiliary_tools/cdat_regression_testing/843-migration-phase3/ex-scripts/debug.cfg @@ -0,0 +1,43 @@ +[#] +sets = ["lat_lon"] +case_id = "Cloud ISCCP" +variables = ["CLDTOT_TAU1.3_ISCCP"] +ref_name = "ISCCPCOSP" +reference_name = "ISCCP" +# seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN"] +test_colormap = "Blues" +reference_colormap = "Blues" +diff_colormap = "RdBu" +contour_levels = [5, 15, 25, 35, 45, 55, 65, 75, 85, 95] +diff_levels = [-30, -25, -20, -15, -10, -5, 5, 10, 15, 20, 25, 30] + + +[#] +sets = ["lat_lon"] +case_id = "Cloud ISCCP" +variables = ["CLDTOT_TAU1.3_9.4_ISCCP"] +ref_name = "ISCCPCOSP" +reference_name = "ISCCP" +# seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", ] +test_colormap = "Blues" +reference_colormap = "Blues" +diff_colormap = "RdBu" +contour_levels = [5, 15, 25, 35, 45, 55, 65, 75, 85, 95] +diff_levels = [-30, -25, -20, -15, -10, -5, 5, 10, 15, 20, 25, 30] + + +[#] +sets = ["lat_lon"] +case_id = "Cloud ISCCP" +variables = ["CLDTOT_TAU9.4_ISCCP"] +ref_name = "ISCCPCOSP" +reference_name = "ISCCP" +# seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN"] +test_colormap = "Blues" +reference_colormap = "Blues" +diff_colormap = "RdBu" +contour_levels = [5, 15, 25, 35, 45, 55, 65, 75, 85, 95] +diff_levels = [-30, -25, -20, -15, -10, -5, 5, 10, 15, 20, 25, 30] diff --git a/auxiliary_tools/cdat_regression_testing/843-migration-phase3/ex-scripts/debug_isccp_climo.py b/auxiliary_tools/cdat_regression_testing/843-migration-phase3/ex-scripts/debug_isccp_climo.py new file mode 100644 index 000000000..9e4843330 --- /dev/null +++ b/auxiliary_tools/cdat_regression_testing/843-migration-phase3/ex-scripts/debug_isccp_climo.py @@ -0,0 +1,12 @@ +import xarray as xr +import xcdat as xc + +filepath = "/global/cfs/cdirs/e3sm/e3sm_diags/obs_for_e3sm_diags/climatology/ISCCPCOSP/ISCCPCOSP_ANN_climo.nc" + +# %% +ds_xc = xc.open_dataset(filepath) +# ValueError: Non-integer years and months are ambiguous and not currently supported. + +ds_xr = xr.open_dataset(filepath) +# ValueError: Failed to decode variable 'time': unable to decode time units 'months since 1983-06' # with 'the default calendar'. Try opening your dataset with decode_times=False or installing +# cftime if it is not installed. diff --git a/auxiliary_tools/cdat_regression_testing/843-migration-phase3/ex-scripts/examples_regression_test_netcdf.ipynb b/auxiliary_tools/cdat_regression_testing/843-migration-phase3/ex-scripts/examples_regression_test_netcdf.ipynb new file mode 100644 index 000000000..5a01eb2d0 --- /dev/null +++ b/auxiliary_tools/cdat_regression_testing/843-migration-phase3/ex-scripts/examples_regression_test_netcdf.ipynb @@ -0,0 +1,11822 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# CDAT Migration Regression Testing Notebook (`.nc` files)\n", + "\n", + "This notebook is used to perform regression testing between the development and\n", + "production versions of a diagnostic set.\n", + "\n", + "## How it works\n", + "\n", + "It compares the relative differences (%) between ref and test variables between\n", + "the dev and `main` branches.\n", + "\n", + "## How to use\n", + "\n", + "PREREQUISITE: The diagnostic set's netCDF stored in `.json` files in two directories\n", + "(dev and `main` branches).\n", + "\n", + "1. Make a copy of this notebook under `auxiliary_tools/cdat_regression_testing/`.\n", + "2. Run `mamba create -n cdat_regression_test -y -c conda-forge \"python<3.12\" xarray netcdf4 dask pandas matplotlib-base ipykernel`\n", + "3. Run `mamba activate cdat_regression_test`\n", + "4. Update `SET_DIR` and `SET_NAME` in the copy of your notebook.\n", + "5. Run all cells IN ORDER.\n", + "6. Review results for any outstanding differences (>=1e-5 relative tolerance).\n", + " - Debug these differences (e.g., bug in metrics functions, incorrect variable references, etc.)\n" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Setup Code\n" + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [], + "source": [ + "from collections import defaultdict\n", + "import glob\n", + "import os\n", + "from typing import Tuple\n", + "\n", + "import numpy as np\n", + "import xarray as xr\n", + "from e3sm_diags.derivations.derivations import DERIVED_VARIABLES\n", + "\n", + "\n", + "DEV_PATH = f\"/global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/**\"\n", + "\n", + "DEV_GLOB = sorted(glob.glob(DEV_PATH + \"/*.nc\", recursive=True))\n", + "DEV_NUM_FILES = len(DEV_GLOB)\n", + "\n", + "MAIN_PATH = f\"/global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/**\"\n", + "MAIN_GLOB = sorted(glob.glob(MAIN_PATH + \"/*.nc\", recursive=True))\n", + "MAIN_NUM_FILES = len(MAIN_GLOB)" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": {}, + "outputs": [], + "source": [ + "def _check_if_files_found():\n", + " if DEV_NUM_FILES == 0 or MAIN_NUM_FILES == 0:\n", + " raise IOError(\n", + " \"No files found at DEV_PATH and/or MAIN_PATH. \"\n", + " f\"Please check {DEV_PATH} and {MAIN_PATH}.\"\n", + " )\n", + "\n", + "\n", + "def _check_if_matching_filecount():\n", + " if DEV_NUM_FILES != MAIN_NUM_FILES:\n", + " raise IOError(\n", + " \"Number of files do not match at DEV_PATH and MAIN_PATH \"\n", + " f\"({DEV_NUM_FILES} vs. {MAIN_NUM_FILES}).\"\n", + " )\n", + "\n", + " print(f\"Matching file count ({DEV_NUM_FILES} and {MAIN_NUM_FILES}).\")" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": {}, + "outputs": [], + "source": [ + "def _get_relative_diffs():\n", + " # We are mainly focusing on relative tolerance here (in percentage terms).\n", + " atol = 0\n", + " rtol = 1e-5\n", + "\n", + " results = {\n", + " \"missing_files\": [],\n", + " \"matching_files\": [],\n", + " \"mismatch_errors\": [],\n", + " \"not_equal_errors\": [],\n", + " \"key_errors\": [],\n", + " }\n", + "\n", + " for fp_main in MAIN_GLOB:\n", + " if \"_diff.nc\" not in fp_main:\n", + " fp_dev = fp_main.replace(\"examples-main\", \"examples-dev\")\n", + "\n", + " print(\"Comparing:\")\n", + " print(f\" * {fp_dev}\")\n", + " print(f\" * {fp_main}\")\n", + "\n", + " try:\n", + " ds1 = xr.open_dataset(fp_dev)\n", + " ds2 = xr.open_dataset(fp_main)\n", + " except FileNotFoundError as e:\n", + " print(f\" {e}\")\n", + "\n", + " if isinstance(e, FileNotFoundError):\n", + " results[\"missing_files\"].append(fp_dev)\n", + "\n", + " continue\n", + "\n", + " var_key = fp_main.split(\"-\")[-3]\n", + " # for 3d vars such as T-200\n", + " var_key.isdigit()\n", + " if var_key.isdigit():\n", + " var_key = fp_main.split(\"-\")[-4]\n", + "\n", + " print(f\" * var_key: {var_key}\")\n", + "\n", + " dev_data = _get_var_data(ds1, var_key)\n", + " main_data = _get_var_data(ds2, var_key)\n", + "\n", + " if dev_data is None or main_data is None:\n", + " print(\" * Could not find variable key in the dataset(s)\")\n", + " continue\n", + "\n", + " try:\n", + " np.testing.assert_allclose(\n", + " dev_data,\n", + " main_data,\n", + " atol=atol,\n", + " rtol=rtol,\n", + " )\n", + " results[\"matching_files\"].append(fp_main)\n", + " except (KeyError, AssertionError) as e:\n", + " msg = str(e)\n", + "\n", + " print(f\" {msg}\")\n", + " if \"mismatch\" in msg:\n", + " results[\"mismatch_errors\"].append(fp_main)\n", + " elif \"Not equal to tolerance\" in msg:\n", + " results[\"not_equal_errors\"].append(fp_main)\n", + " else:\n", + " print(f\" * All close and within relative tolerance ({rtol})\")\n", + "\n", + " return results\n", + "\n", + "\n", + "def _get_var_data(ds: xr.Dataset, var_key: str) -> np.ndarray:\n", + " \"\"\"Get the variable data using a list of matching keys.\n", + "\n", + " The `main` branch saves the dataset using the original variable name,\n", + " while the dev branch saves the variable with the derived variable name.\n", + " The dev branch is performing the expected behavior here.\n", + "\n", + " Parameters\n", + " ----------\n", + " ds : xr.Dataset\n", + " _description_\n", + " var_key : str\n", + " _description_\n", + "\n", + " Returns\n", + " -------\n", + " np.ndarray\n", + " _description_\n", + " \"\"\"\n", + "\n", + " data = None\n", + "\n", + " var_keys = DERIVED_VARIABLES[var_key].keys()\n", + " var_keys = [var_key] + list(sum(var_keys, ()))\n", + "\n", + " for key in var_keys:\n", + " if key in ds.data_vars.keys():\n", + " data = ds[key].values\n", + " break\n", + "\n", + " return data" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## 1. Check for matching and equal number of files\n" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": {}, + "outputs": [], + "source": [ + "_check_if_files_found()" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": {}, + "outputs": [ + { + "ename": "OSError", + "evalue": "Number of files do not match at DEV_PATH and MAIN_PATH (4677 vs. 3091).", + "output_type": "error", + "traceback": [ + "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", + "\u001b[0;31mOSError\u001b[0m Traceback (most recent call last)", + "Cell \u001b[0;32mIn[6], line 1\u001b[0m\n\u001b[0;32m----> 1\u001b[0m \u001b[43m_check_if_matching_filecount\u001b[49m\u001b[43m(\u001b[49m\u001b[43m)\u001b[49m\n", + "Cell \u001b[0;32mIn[3], line 11\u001b[0m, in \u001b[0;36m_check_if_matching_filecount\u001b[0;34m()\u001b[0m\n\u001b[1;32m 9\u001b[0m \u001b[38;5;28;01mdef\u001b[39;00m \u001b[38;5;21m_check_if_matching_filecount\u001b[39m():\n\u001b[1;32m 10\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m DEV_NUM_FILES \u001b[38;5;241m!=\u001b[39m MAIN_NUM_FILES:\n\u001b[0;32m---> 11\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m \u001b[38;5;167;01mIOError\u001b[39;00m(\n\u001b[1;32m 12\u001b[0m \u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mNumber of files do not match at DEV_PATH and MAIN_PATH \u001b[39m\u001b[38;5;124m\"\u001b[39m\n\u001b[1;32m 13\u001b[0m \u001b[38;5;124mf\u001b[39m\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124m(\u001b[39m\u001b[38;5;132;01m{\u001b[39;00mDEV_NUM_FILES\u001b[38;5;132;01m}\u001b[39;00m\u001b[38;5;124m vs. \u001b[39m\u001b[38;5;132;01m{\u001b[39;00mMAIN_NUM_FILES\u001b[38;5;132;01m}\u001b[39;00m\u001b[38;5;124m).\u001b[39m\u001b[38;5;124m\"\u001b[39m\n\u001b[1;32m 14\u001b[0m )\n\u001b[1;32m 16\u001b[0m \u001b[38;5;28mprint\u001b[39m(\u001b[38;5;124mf\u001b[39m\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mMatching file count (\u001b[39m\u001b[38;5;132;01m{\u001b[39;00mDEV_NUM_FILES\u001b[38;5;132;01m}\u001b[39;00m\u001b[38;5;124m and \u001b[39m\u001b[38;5;132;01m{\u001b[39;00mMAIN_NUM_FILES\u001b[38;5;132;01m}\u001b[39;00m\u001b[38;5;124m).\u001b[39m\u001b[38;5;124m\"\u001b[39m)\n", + "\u001b[0;31mOSError\u001b[0m: Number of files do not match at DEV_PATH and MAIN_PATH (4677 vs. 3091)." + ] + } + ], + "source": [ + "_check_if_matching_filecount()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## 2 Compare the netCDF files between branches\n", + "\n", + "- Compare \"ref\" and \"test\" files\n", + "- \"diff\" files are ignored because getting relative diffs for these does not make sense (relative diff will be above tolerance)\n" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex1_modTS_vs_modTS_3years/lat_lon/model_vs_model/-ERFtot-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex1_modTS_vs_modTS_3years/lat_lon/model_vs_model/-ERFtot-ANN-global_test.nc\n", + " * var_key: ERFtot\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex1_modTS_vs_modTS_3years/lat_lon/model_vs_model/-FLNS-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex1_modTS_vs_modTS_3years/lat_lon/model_vs_model/-FLNS-ANN-global_test.nc\n", + " * var_key: FLNS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex1_modTS_vs_modTS_3years/lat_lon/model_vs_model/-FLUT-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex1_modTS_vs_modTS_3years/lat_lon/model_vs_model/-FLUT-ANN-global_test.nc\n", + " * var_key: FLUT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex1_modTS_vs_modTS_3years/lat_lon/model_vs_model/-FSNS-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex1_modTS_vs_modTS_3years/lat_lon/model_vs_model/-FSNS-ANN-global_test.nc\n", + " * var_key: FSNS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex1_modTS_vs_modTS_3years/lat_lon/model_vs_model/-FSNTOA-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex1_modTS_vs_modTS_3years/lat_lon/model_vs_model/-FSNTOA-ANN-global_test.nc\n", + " * var_key: FSNTOA\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex1_modTS_vs_modTS_3years/lat_lon/model_vs_model/-LHFLX-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex1_modTS_vs_modTS_3years/lat_lon/model_vs_model/-LHFLX-ANN-global_test.nc\n", + " * var_key: LHFLX\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex1_modTS_vs_modTS_3years/lat_lon/model_vs_model/-LWCF-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex1_modTS_vs_modTS_3years/lat_lon/model_vs_model/-LWCF-ANN-global_test.nc\n", + " * var_key: LWCF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex1_modTS_vs_modTS_3years/lat_lon/model_vs_model/-NETCF-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex1_modTS_vs_modTS_3years/lat_lon/model_vs_model/-NETCF-ANN-global_test.nc\n", + " * var_key: NETCF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex1_modTS_vs_modTS_3years/lat_lon/model_vs_model/-NET_FLUX_SRF-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex1_modTS_vs_modTS_3years/lat_lon/model_vs_model/-NET_FLUX_SRF-ANN-global_test.nc\n", + " * var_key: NET_FLUX_SRF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex1_modTS_vs_modTS_3years/lat_lon/model_vs_model/-PRECT-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex1_modTS_vs_modTS_3years/lat_lon/model_vs_model/-PRECT-ANN-global_test.nc\n", + " * var_key: PRECT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex1_modTS_vs_modTS_3years/lat_lon/model_vs_model/-PSL-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex1_modTS_vs_modTS_3years/lat_lon/model_vs_model/-PSL-ANN-global_test.nc\n", + " * var_key: PSL\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex1_modTS_vs_modTS_3years/lat_lon/model_vs_model/-RESTOM-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex1_modTS_vs_modTS_3years/lat_lon/model_vs_model/-RESTOM-ANN-global_test.nc\n", + " * var_key: RESTOM\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex1_modTS_vs_modTS_3years/lat_lon/model_vs_model/-SHFLX-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex1_modTS_vs_modTS_3years/lat_lon/model_vs_model/-SHFLX-ANN-global_test.nc\n", + " * var_key: SHFLX\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex1_modTS_vs_modTS_3years/lat_lon/model_vs_model/-SST-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex1_modTS_vs_modTS_3years/lat_lon/model_vs_model/-SST-ANN-global_test.nc\n", + " * var_key: SST\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex1_modTS_vs_modTS_3years/lat_lon/model_vs_model/-SWCF-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex1_modTS_vs_modTS_3years/lat_lon/model_vs_model/-SWCF-ANN-global_test.nc\n", + " * var_key: SWCF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex1_modTS_vs_modTS_3years/lat_lon/model_vs_model/-TREFHT-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex1_modTS_vs_modTS_3years/lat_lon/model_vs_model/-TREFHT-ANN-global_test.nc\n", + " * var_key: TREFHT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex1_modTS_vs_modTS_3years/lat_lon/model_vs_model/-TREFHT-ANN-land_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex1_modTS_vs_modTS_3years/lat_lon/model_vs_model/-TREFHT-ANN-land_test.nc\n", + " * var_key: TREFHT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex2_modTS_vs_modTS_CMIP_3years/lat_lon/model_vs_model/-ALBEDO-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex2_modTS_vs_modTS_CMIP_3years/lat_lon/model_vs_model/-ALBEDO-ANN-global_test.nc\n", + " * var_key: ALBEDO\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex2_modTS_vs_modTS_CMIP_3years/lat_lon/model_vs_model/-ALBEDOC-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex2_modTS_vs_modTS_CMIP_3years/lat_lon/model_vs_model/-ALBEDOC-ANN-global_test.nc\n", + " * var_key: ALBEDOC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex2_modTS_vs_modTS_CMIP_3years/lat_lon/model_vs_model/-ALBEDO_SRF-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex2_modTS_vs_modTS_CMIP_3years/lat_lon/model_vs_model/-ALBEDO_SRF-ANN-global_test.nc\n", + " * var_key: ALBEDO_SRF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex2_modTS_vs_modTS_CMIP_3years/lat_lon/model_vs_model/-FLDS-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex2_modTS_vs_modTS_CMIP_3years/lat_lon/model_vs_model/-FLDS-ANN-global_test.nc\n", + " * var_key: FLDS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex2_modTS_vs_modTS_CMIP_3years/lat_lon/model_vs_model/-FLNS-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex2_modTS_vs_modTS_CMIP_3years/lat_lon/model_vs_model/-FLNS-ANN-global_test.nc\n", + " * var_key: FLNS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex2_modTS_vs_modTS_CMIP_3years/lat_lon/model_vs_model/-FLUT-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex2_modTS_vs_modTS_CMIP_3years/lat_lon/model_vs_model/-FLUT-ANN-global_test.nc\n", + " * var_key: FLUT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex2_modTS_vs_modTS_CMIP_3years/lat_lon/model_vs_model/-FLUTC-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex2_modTS_vs_modTS_CMIP_3years/lat_lon/model_vs_model/-FLUTC-ANN-global_test.nc\n", + " * var_key: FLUTC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex2_modTS_vs_modTS_CMIP_3years/lat_lon/model_vs_model/-FSDS-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex2_modTS_vs_modTS_CMIP_3years/lat_lon/model_vs_model/-FSDS-ANN-global_test.nc\n", + " * var_key: FSDS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex2_modTS_vs_modTS_CMIP_3years/lat_lon/model_vs_model/-FSDSC-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex2_modTS_vs_modTS_CMIP_3years/lat_lon/model_vs_model/-FSDSC-ANN-global_test.nc\n", + " * var_key: FSDSC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex2_modTS_vs_modTS_CMIP_3years/lat_lon/model_vs_model/-FSNS-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex2_modTS_vs_modTS_CMIP_3years/lat_lon/model_vs_model/-FSNS-ANN-global_test.nc\n", + " * var_key: FSNS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex2_modTS_vs_modTS_CMIP_3years/lat_lon/model_vs_model/-FSNTOA-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex2_modTS_vs_modTS_CMIP_3years/lat_lon/model_vs_model/-FSNTOA-ANN-global_test.nc\n", + " * var_key: FSNTOA\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex2_modTS_vs_modTS_CMIP_3years/lat_lon/model_vs_model/-FSNTOAC-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex2_modTS_vs_modTS_CMIP_3years/lat_lon/model_vs_model/-FSNTOAC-ANN-global_test.nc\n", + " * var_key: FSNTOAC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex2_modTS_vs_modTS_CMIP_3years/lat_lon/model_vs_model/-LHFLX-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex2_modTS_vs_modTS_CMIP_3years/lat_lon/model_vs_model/-LHFLX-ANN-global_test.nc\n", + " * var_key: LHFLX\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex2_modTS_vs_modTS_CMIP_3years/lat_lon/model_vs_model/-LWCF-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex2_modTS_vs_modTS_CMIP_3years/lat_lon/model_vs_model/-LWCF-ANN-global_test.nc\n", + " * var_key: LWCF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex2_modTS_vs_modTS_CMIP_3years/lat_lon/model_vs_model/-NET_FLUX_SRF-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex2_modTS_vs_modTS_CMIP_3years/lat_lon/model_vs_model/-NET_FLUX_SRF-ANN-global_test.nc\n", + " * var_key: NET_FLUX_SRF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex2_modTS_vs_modTS_CMIP_3years/lat_lon/model_vs_model/-PRECT-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex2_modTS_vs_modTS_CMIP_3years/lat_lon/model_vs_model/-PRECT-ANN-global_test.nc\n", + " * var_key: PRECT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex2_modTS_vs_modTS_CMIP_3years/lat_lon/model_vs_model/-PSL-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex2_modTS_vs_modTS_CMIP_3years/lat_lon/model_vs_model/-PSL-ANN-global_test.nc\n", + " * var_key: PSL\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex2_modTS_vs_modTS_CMIP_3years/lat_lon/model_vs_model/-QREFHT-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex2_modTS_vs_modTS_CMIP_3years/lat_lon/model_vs_model/-QREFHT-ANN-global_test.nc\n", + " * var_key: QREFHT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex2_modTS_vs_modTS_CMIP_3years/lat_lon/model_vs_model/-RESTOM-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex2_modTS_vs_modTS_CMIP_3years/lat_lon/model_vs_model/-RESTOM-ANN-global_test.nc\n", + " * var_key: RESTOM\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex2_modTS_vs_modTS_CMIP_3years/lat_lon/model_vs_model/-SHFLX-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex2_modTS_vs_modTS_CMIP_3years/lat_lon/model_vs_model/-SHFLX-ANN-global_test.nc\n", + " * var_key: SHFLX\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex2_modTS_vs_modTS_CMIP_3years/lat_lon/model_vs_model/-SOLIN-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex2_modTS_vs_modTS_CMIP_3years/lat_lon/model_vs_model/-SOLIN-ANN-global_test.nc\n", + " * var_key: SOLIN\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex2_modTS_vs_modTS_CMIP_3years/lat_lon/model_vs_model/-SWCF-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex2_modTS_vs_modTS_CMIP_3years/lat_lon/model_vs_model/-SWCF-ANN-global_test.nc\n", + " * var_key: SWCF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex2_modTS_vs_modTS_CMIP_3years/lat_lon/model_vs_model/-TAUXY-ANN-ocean_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex2_modTS_vs_modTS_CMIP_3years/lat_lon/model_vs_model/-TAUXY-ANN-ocean_test.nc\n", + " * var_key: TAUXY\n", + " \n", + "Not equal to tolerance rtol=1e-05, atol=0\n", + "\n", + "x and y nan location mismatch:\n", + " x: array([[nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],...\n", + " y: array([[nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],...\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex2_modTS_vs_modTS_CMIP_3years/lat_lon/model_vs_model/-TMQ-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex2_modTS_vs_modTS_CMIP_3years/lat_lon/model_vs_model/-TMQ-ANN-global_test.nc\n", + " * var_key: TMQ\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex2_modTS_vs_modTS_CMIP_3years/lat_lon/model_vs_model/-TREFHT-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex2_modTS_vs_modTS_CMIP_3years/lat_lon/model_vs_model/-TREFHT-ANN-global_test.nc\n", + " * var_key: TREFHT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex2_modTS_vs_modTS_CMIP_3years/lat_lon/model_vs_model/-TREFHT-ANN-land_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex2_modTS_vs_modTS_CMIP_3years/lat_lon/model_vs_model/-TREFHT-ANN-land_test.nc\n", + " * var_key: TREFHT\n", + " \n", + "Not equal to tolerance rtol=1e-05, atol=0\n", + "\n", + "x and y nan location mismatch:\n", + " x: array([[-49.104476, -48.918298, -48.909593, ..., -48.927494, -49.085101,\n", + " -48.896433],\n", + " [-48.686665, -48.57237 , -48.386637, ..., -48.510948, -48.47557 ,...\n", + " y: array([[-49.104476, -48.918298, -48.909593, ..., -48.927494, -49.085101,\n", + " -48.896433],\n", + " [-48.686665, -48.57237 , -48.386637, ..., -48.510948, -48.47557 ,...\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex2_modTS_vs_modTS_CMIP_3years/lat_lon/model_vs_model/-TREFMNAV-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex2_modTS_vs_modTS_CMIP_3years/lat_lon/model_vs_model/-TREFMNAV-ANN-global_test.nc\n", + " * var_key: TREFMNAV\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex2_modTS_vs_modTS_CMIP_3years/lat_lon/model_vs_model/-TREFMNAV-ANN-land_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex2_modTS_vs_modTS_CMIP_3years/lat_lon/model_vs_model/-TREFMNAV-ANN-land_test.nc\n", + " * var_key: TREFMNAV\n", + " \n", + "Not equal to tolerance rtol=1e-05, atol=0\n", + "\n", + "x and y nan location mismatch:\n", + " x: array([[-50.167719, -49.995686, -49.985403, ..., -50.00252 , -50.147107,\n", + " -49.970964],\n", + " [-50.020355, -49.916474, -49.727794, ..., -49.851646, -49.818893,...\n", + " y: array([[-50.167719, -49.995686, -49.985403, ..., -50.00252 , -50.147107,\n", + " -49.970964],\n", + " [-50.020355, -49.916474, -49.727794, ..., -49.851646, -49.818893,...\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex2_modTS_vs_modTS_CMIP_3years/lat_lon/model_vs_model/-TREFMXAV-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex2_modTS_vs_modTS_CMIP_3years/lat_lon/model_vs_model/-TREFMXAV-ANN-global_test.nc\n", + " * var_key: TREFMXAV\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex2_modTS_vs_modTS_CMIP_3years/lat_lon/model_vs_model/-TREFMXAV-ANN-land_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex2_modTS_vs_modTS_CMIP_3years/lat_lon/model_vs_model/-TREFMXAV-ANN-land_test.nc\n", + " * var_key: TREFMXAV\n", + " \n", + "Not equal to tolerance rtol=1e-05, atol=0\n", + "\n", + "x and y nan location mismatch:\n", + " x: array([[-47.977539, -47.775573, -47.768607, ..., -47.787612, -47.959404,\n", + " -47.756625],\n", + " [-47.337381, -47.218298, -47.037827, ..., -47.141778, -47.107207,...\n", + " y: array([[-47.977539, -47.775573, -47.768607, ..., -47.787612, -47.959404,\n", + " -47.756625],\n", + " [-47.337381, -47.218298, -47.037827, ..., -47.141778, -47.107207,...\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex2_modTS_vs_modTS_CMIP_3years/lat_lon/model_vs_model/-TREF_range-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex2_modTS_vs_modTS_CMIP_3years/lat_lon/model_vs_model/-TREF_range-ANN-global_test.nc\n", + " * var_key: TREF_range\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex2_modTS_vs_modTS_CMIP_3years/lat_lon/model_vs_model/-TREF_range-ANN-land_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex2_modTS_vs_modTS_CMIP_3years/lat_lon/model_vs_model/-TREF_range-ANN-land_test.nc\n", + " * var_key: TREF_range\n", + " \n", + "Not equal to tolerance rtol=1e-05, atol=0\n", + "\n", + "x and y nan location mismatch:\n", + " x: array([[2.19018 , 2.220112, 2.216796, ..., 2.214908, 2.187703, 2.214339],\n", + " [2.682974, 2.698176, 2.689968, ..., 2.709869, 2.711686, nan],\n", + " [2.949204, 2.94471 , 2.94083 , ..., 3.010002, 2.964519, nan],...\n", + " y: array([[2.19018 , 2.220112, 2.216796, ..., 2.214908, 2.187703, 2.214339],\n", + " [2.682974, 2.698176, 2.689968, ..., 2.709869, 2.711686, 2.695913],\n", + " [2.949204, 2.94471 , 2.94083 , ..., 3.010002, 2.964519, 2.993269],...\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex2_modTS_vs_modTS_CMIP_3years/lat_lon/model_vs_model/-U10-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex2_modTS_vs_modTS_CMIP_3years/lat_lon/model_vs_model/-U10-ANN-global_test.nc\n", + " * var_key: U10\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex3_modTS_CMIP_vs_obs_2years/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-ALBEDO-ANN-75S75N_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex3_modTS_CMIP_vs_obs_2years/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-ALBEDO-ANN-75S75N_ref.nc\n", + " * var_key: ALBEDO\n", + " \n", + "Not equal to tolerance rtol=1e-05, atol=0\n", + "\n", + "x and y nan location mismatch:\n", + " x: array([[nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],...\n", + " y: array([[2.371717, 2.371717, 2.371717, ..., 2.423811, 2.423811, 2.423811],\n", + " [0.878347, 0.878347, 0.878347, ..., 0.883431, 0.883431, 0.883431],\n", + " [0.708464, 0.708464, 0.708464, ..., 0.705951, 0.705951, 0.705951],...\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex3_modTS_CMIP_vs_obs_2years/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-ALBEDO-ANN-75S75N_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex3_modTS_CMIP_vs_obs_2years/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-ALBEDO-ANN-75S75N_test.nc\n", + " * var_key: ALBEDO\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex3_modTS_CMIP_vs_obs_2years/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-ALBEDOC-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex3_modTS_CMIP_vs_obs_2years/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-ALBEDOC-ANN-global_ref.nc\n", + " * var_key: ALBEDOC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex3_modTS_CMIP_vs_obs_2years/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-ALBEDOC-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex3_modTS_CMIP_vs_obs_2years/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-ALBEDOC-ANN-global_test.nc\n", + " * var_key: ALBEDOC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex3_modTS_CMIP_vs_obs_2years/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FLUT-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex3_modTS_CMIP_vs_obs_2years/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FLUT-ANN-global_ref.nc\n", + " * var_key: FLUT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex3_modTS_CMIP_vs_obs_2years/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FLUT-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex3_modTS_CMIP_vs_obs_2years/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FLUT-ANN-global_test.nc\n", + " * var_key: FLUT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex3_modTS_CMIP_vs_obs_2years/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FLUTC-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex3_modTS_CMIP_vs_obs_2years/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FLUTC-ANN-global_ref.nc\n", + " * var_key: FLUTC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex3_modTS_CMIP_vs_obs_2years/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FLUTC-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex3_modTS_CMIP_vs_obs_2years/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FLUTC-ANN-global_test.nc\n", + " * var_key: FLUTC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex3_modTS_CMIP_vs_obs_2years/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FSNTOA-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex3_modTS_CMIP_vs_obs_2years/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FSNTOA-ANN-global_ref.nc\n", + " * var_key: FSNTOA\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex3_modTS_CMIP_vs_obs_2years/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FSNTOA-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex3_modTS_CMIP_vs_obs_2years/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FSNTOA-ANN-global_test.nc\n", + " * var_key: FSNTOA\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex3_modTS_CMIP_vs_obs_2years/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FSNTOAC-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex3_modTS_CMIP_vs_obs_2years/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FSNTOAC-ANN-global_ref.nc\n", + " * var_key: FSNTOAC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex3_modTS_CMIP_vs_obs_2years/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FSNTOAC-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex3_modTS_CMIP_vs_obs_2years/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FSNTOAC-ANN-global_test.nc\n", + " * var_key: FSNTOAC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex3_modTS_CMIP_vs_obs_2years/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-LWCF-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex3_modTS_CMIP_vs_obs_2years/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-LWCF-ANN-global_ref.nc\n", + " * var_key: LWCF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex3_modTS_CMIP_vs_obs_2years/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-LWCF-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex3_modTS_CMIP_vs_obs_2years/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-LWCF-ANN-global_test.nc\n", + " * var_key: LWCF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex3_modTS_CMIP_vs_obs_2years/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-RESTOM-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex3_modTS_CMIP_vs_obs_2years/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-RESTOM-ANN-global_ref.nc\n", + " * var_key: RESTOM\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex3_modTS_CMIP_vs_obs_2years/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-RESTOM-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex3_modTS_CMIP_vs_obs_2years/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-RESTOM-ANN-global_test.nc\n", + " * var_key: RESTOM\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex3_modTS_CMIP_vs_obs_2years/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-SOLIN-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex3_modTS_CMIP_vs_obs_2years/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-SOLIN-ANN-global_ref.nc\n", + " * var_key: SOLIN\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex3_modTS_CMIP_vs_obs_2years/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-SOLIN-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex3_modTS_CMIP_vs_obs_2years/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-SOLIN-ANN-global_test.nc\n", + " * var_key: SOLIN\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex3_modTS_CMIP_vs_obs_2years/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-SWCF-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex3_modTS_CMIP_vs_obs_2years/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-SWCF-ANN-global_ref.nc\n", + " * var_key: SWCF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex3_modTS_CMIP_vs_obs_2years/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-SWCF-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex3_modTS_CMIP_vs_obs_2years/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-SWCF-ANN-global_test.nc\n", + " * var_key: SWCF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex3_modTS_CMIP_vs_obs_2years/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-ALBEDO_SRF-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex3_modTS_CMIP_vs_obs_2years/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-ALBEDO_SRF-ANN-global_ref.nc\n", + " * var_key: ALBEDO_SRF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex3_modTS_CMIP_vs_obs_2years/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-ALBEDO_SRF-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex3_modTS_CMIP_vs_obs_2years/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-ALBEDO_SRF-ANN-global_test.nc\n", + " * var_key: ALBEDO_SRF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex3_modTS_CMIP_vs_obs_2years/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLDS-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex3_modTS_CMIP_vs_obs_2years/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLDS-ANN-global_ref.nc\n", + " * var_key: FLDS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex3_modTS_CMIP_vs_obs_2years/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLDS-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex3_modTS_CMIP_vs_obs_2years/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLDS-ANN-global_test.nc\n", + " * var_key: FLDS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex3_modTS_CMIP_vs_obs_2years/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLNS-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex3_modTS_CMIP_vs_obs_2years/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLNS-ANN-global_ref.nc\n", + " * var_key: FLNS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex3_modTS_CMIP_vs_obs_2years/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLNS-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex3_modTS_CMIP_vs_obs_2years/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLNS-ANN-global_test.nc\n", + " * var_key: FLNS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex3_modTS_CMIP_vs_obs_2years/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSDS-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex3_modTS_CMIP_vs_obs_2years/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSDS-ANN-global_ref.nc\n", + " * var_key: FSDS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex3_modTS_CMIP_vs_obs_2years/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSDS-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex3_modTS_CMIP_vs_obs_2years/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSDS-ANN-global_test.nc\n", + " * var_key: FSDS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex3_modTS_CMIP_vs_obs_2years/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSDSC-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex3_modTS_CMIP_vs_obs_2years/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSDSC-ANN-global_ref.nc\n", + " * var_key: FSDSC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex3_modTS_CMIP_vs_obs_2years/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSDSC-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex3_modTS_CMIP_vs_obs_2years/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSDSC-ANN-global_test.nc\n", + " * var_key: FSDSC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex3_modTS_CMIP_vs_obs_2years/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSNS-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex3_modTS_CMIP_vs_obs_2years/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSNS-ANN-global_ref.nc\n", + " * var_key: FSNS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex3_modTS_CMIP_vs_obs_2years/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSNS-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex3_modTS_CMIP_vs_obs_2years/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSNS-ANN-global_test.nc\n", + " * var_key: FSNS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex3_modTS_CMIP_vs_obs_2years/lat_lon/CRU_IPCC/CRU-TREFHT-ANN-land_60S90N_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex3_modTS_CMIP_vs_obs_2years/lat_lon/CRU_IPCC/CRU-TREFHT-ANN-land_60S90N_test.nc\n", + " * var_key: TREFHT\n", + " \n", + "Not equal to tolerance rtol=1e-05, atol=0\n", + "\n", + "x and y nan location mismatch:\n", + " x: array([[nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],...\n", + " y: array([[nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],...\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex3_modTS_CMIP_vs_obs_2years/lat_lon/ERA5/ERA5-FLNS-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex3_modTS_CMIP_vs_obs_2years/lat_lon/ERA5/ERA5-FLNS-ANN-global_ref.nc\n", + " * var_key: FLNS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex3_modTS_CMIP_vs_obs_2years/lat_lon/ERA5/ERA5-FLNS-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex3_modTS_CMIP_vs_obs_2years/lat_lon/ERA5/ERA5-FLNS-ANN-global_test.nc\n", + " * var_key: FLNS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex3_modTS_CMIP_vs_obs_2years/lat_lon/ERA5/ERA5-FSNS-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex3_modTS_CMIP_vs_obs_2years/lat_lon/ERA5/ERA5-FSNS-ANN-global_ref.nc\n", + " * var_key: FSNS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex3_modTS_CMIP_vs_obs_2years/lat_lon/ERA5/ERA5-FSNS-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex3_modTS_CMIP_vs_obs_2years/lat_lon/ERA5/ERA5-FSNS-ANN-global_test.nc\n", + " * var_key: FSNS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex3_modTS_CMIP_vs_obs_2years/lat_lon/ERA5/ERA5-LHFLX-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex3_modTS_CMIP_vs_obs_2years/lat_lon/ERA5/ERA5-LHFLX-ANN-global_ref.nc\n", + " * var_key: LHFLX\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex3_modTS_CMIP_vs_obs_2years/lat_lon/ERA5/ERA5-LHFLX-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex3_modTS_CMIP_vs_obs_2years/lat_lon/ERA5/ERA5-LHFLX-ANN-global_test.nc\n", + " * var_key: LHFLX\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex3_modTS_CMIP_vs_obs_2years/lat_lon/ERA5/ERA5-NET_FLUX_SRF-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex3_modTS_CMIP_vs_obs_2years/lat_lon/ERA5/ERA5-NET_FLUX_SRF-ANN-global_ref.nc\n", + " * var_key: NET_FLUX_SRF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex3_modTS_CMIP_vs_obs_2years/lat_lon/ERA5/ERA5-NET_FLUX_SRF-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex3_modTS_CMIP_vs_obs_2years/lat_lon/ERA5/ERA5-NET_FLUX_SRF-ANN-global_test.nc\n", + " * var_key: NET_FLUX_SRF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex3_modTS_CMIP_vs_obs_2years/lat_lon/ERA5/ERA5-PRECT-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex3_modTS_CMIP_vs_obs_2years/lat_lon/ERA5/ERA5-PRECT-ANN-global_ref.nc\n", + " * var_key: PRECT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex3_modTS_CMIP_vs_obs_2years/lat_lon/ERA5/ERA5-PRECT-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex3_modTS_CMIP_vs_obs_2years/lat_lon/ERA5/ERA5-PRECT-ANN-global_test.nc\n", + " * var_key: PRECT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex3_modTS_CMIP_vs_obs_2years/lat_lon/ERA5/ERA5-PSL-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex3_modTS_CMIP_vs_obs_2years/lat_lon/ERA5/ERA5-PSL-ANN-global_ref.nc\n", + " * var_key: PSL\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex3_modTS_CMIP_vs_obs_2years/lat_lon/ERA5/ERA5-PSL-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex3_modTS_CMIP_vs_obs_2years/lat_lon/ERA5/ERA5-PSL-ANN-global_test.nc\n", + " * var_key: PSL\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex3_modTS_CMIP_vs_obs_2years/lat_lon/ERA5/ERA5-SHFLX-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex3_modTS_CMIP_vs_obs_2years/lat_lon/ERA5/ERA5-SHFLX-ANN-global_ref.nc\n", + " * var_key: SHFLX\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex3_modTS_CMIP_vs_obs_2years/lat_lon/ERA5/ERA5-SHFLX-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex3_modTS_CMIP_vs_obs_2years/lat_lon/ERA5/ERA5-SHFLX-ANN-global_test.nc\n", + " * var_key: SHFLX\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex3_modTS_CMIP_vs_obs_2years/lat_lon/ERA5/ERA5-TAUXY-ANN-ocean_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex3_modTS_CMIP_vs_obs_2years/lat_lon/ERA5/ERA5-TAUXY-ANN-ocean_ref.nc\n", + " * var_key: TAUXY\n", + " \n", + "Not equal to tolerance rtol=1e-05, atol=0\n", + "\n", + "x and y nan location mismatch:\n", + " x: array([[nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],...\n", + " y: array([[nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],...\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex3_modTS_CMIP_vs_obs_2years/lat_lon/ERA5/ERA5-TAUXY-ANN-ocean_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex3_modTS_CMIP_vs_obs_2years/lat_lon/ERA5/ERA5-TAUXY-ANN-ocean_test.nc\n", + " * var_key: TAUXY\n", + " \n", + "Not equal to tolerance rtol=1e-05, atol=0\n", + "\n", + "x and y nan location mismatch:\n", + " x: array([[nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],...\n", + " y: array([[nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],...\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex3_modTS_CMIP_vs_obs_2years/lat_lon/ERA5/ERA5-TMQ-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex3_modTS_CMIP_vs_obs_2years/lat_lon/ERA5/ERA5-TMQ-ANN-global_ref.nc\n", + " * var_key: TMQ\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex3_modTS_CMIP_vs_obs_2years/lat_lon/ERA5/ERA5-TMQ-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex3_modTS_CMIP_vs_obs_2years/lat_lon/ERA5/ERA5-TMQ-ANN-global_test.nc\n", + " * var_key: TMQ\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex3_modTS_CMIP_vs_obs_2years/lat_lon/ERA5/ERA5-TREFHT-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex3_modTS_CMIP_vs_obs_2years/lat_lon/ERA5/ERA5-TREFHT-ANN-global_ref.nc\n", + " * var_key: TREFHT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex3_modTS_CMIP_vs_obs_2years/lat_lon/ERA5/ERA5-TREFHT-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex3_modTS_CMIP_vs_obs_2years/lat_lon/ERA5/ERA5-TREFHT-ANN-global_test.nc\n", + " * var_key: TREFHT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex3_modTS_CMIP_vs_obs_2years/lat_lon/ERA5/ERA5-TREFHT-ANN-land_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex3_modTS_CMIP_vs_obs_2years/lat_lon/ERA5/ERA5-TREFHT-ANN-land_ref.nc\n", + " * var_key: TREFHT\n", + " \n", + "Not equal to tolerance rtol=1e-05, atol=0\n", + "\n", + "x and y nan location mismatch:\n", + " x: array([[-45.916311, -45.916311, -45.916311, ..., -45.916311, -45.916311,\n", + " -45.916311],\n", + " [-45.436643, -45.435399, -45.434298, ..., nan, nan,...\n", + " y: array([[-45.916311, -45.916311, -45.916311, ..., -45.916311, -45.916311,\n", + " -45.916311],\n", + " [-45.436643, -45.435399, -45.434298, ..., -45.438535, -45.437814,...\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex3_modTS_CMIP_vs_obs_2years/lat_lon/ERA5/ERA5-TREFHT-ANN-land_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex3_modTS_CMIP_vs_obs_2years/lat_lon/ERA5/ERA5-TREFHT-ANN-land_test.nc\n", + " * var_key: TREFHT\n", + " \n", + "Not equal to tolerance rtol=1e-05, atol=0\n", + "\n", + "x and y nan location mismatch:\n", + " x: array([[-48.837715, -48.645334, -48.638652, ..., -48.660212, -48.817613,\n", + " -48.626046],\n", + " [-48.652384, -48.540352, -48.466836, ..., -48.468291, -48.434021,...\n", + " y: array([[-48.837715, -48.645334, -48.638652, ..., -48.660212, -48.817613,\n", + " -48.626046],\n", + " [-48.652384, -48.540352, -48.466836, ..., -48.468291, -48.434021,...\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex3_modTS_CMIP_vs_obs_2years/lat_lon/ERA5/ERA5_ext-QREFHT-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex3_modTS_CMIP_vs_obs_2years/lat_lon/ERA5/ERA5_ext-QREFHT-ANN-global_test.nc\n", + " * var_key: QREFHT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex3_modTS_CMIP_vs_obs_2years/lat_lon/ERA5/ERA5_ext-U10-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex3_modTS_CMIP_vs_obs_2years/lat_lon/ERA5/ERA5_ext-U10-ANN-global_test.nc\n", + " * var_key: U10\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex3_modTS_CMIP_vs_obs_2years/lat_lon/GPCP_OAFLux/GPCP_OAFLux-PminusE-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex3_modTS_CMIP_vs_obs_2years/lat_lon/GPCP_OAFLux/GPCP_OAFLux-PminusE-ANN-global_ref.nc\n", + " * var_key: PminusE\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex3_modTS_CMIP_vs_obs_2years/lat_lon/GPCP_OAFLux/GPCP_OAFLux-PminusE-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex3_modTS_CMIP_vs_obs_2years/lat_lon/GPCP_OAFLux/GPCP_OAFLux-PminusE-ANN-global_test.nc\n", + " * var_key: PminusE\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex3_modTS_CMIP_vs_obs_2years/lat_lon/GPCP_v2.3/GPCP_v2.3-PRECT-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex3_modTS_CMIP_vs_obs_2years/lat_lon/GPCP_v2.3/GPCP_v2.3-PRECT-ANN-global_ref.nc\n", + " * var_key: PRECT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex3_modTS_CMIP_vs_obs_2years/lat_lon/GPCP_v2.3/GPCP_v2.3-PRECT-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex3_modTS_CMIP_vs_obs_2years/lat_lon/GPCP_v2.3/GPCP_v2.3-PRECT-ANN-global_test.nc\n", + " * var_key: PRECT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex3_modTS_CMIP_vs_obs_2years/lat_lon/GPCP_v3.2/GPCP_v3.2-PRECT-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex3_modTS_CMIP_vs_obs_2years/lat_lon/GPCP_v3.2/GPCP_v3.2-PRECT-ANN-global_test.nc\n", + " * var_key: PRECT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex3_modTS_CMIP_vs_obs_2years/lat_lon/MERRA2/MERRA2-FLNS-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex3_modTS_CMIP_vs_obs_2years/lat_lon/MERRA2/MERRA2-FLNS-ANN-global_ref.nc\n", + " * var_key: FLNS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex3_modTS_CMIP_vs_obs_2years/lat_lon/MERRA2/MERRA2-FLNS-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex3_modTS_CMIP_vs_obs_2years/lat_lon/MERRA2/MERRA2-FLNS-ANN-global_test.nc\n", + " * var_key: FLNS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex3_modTS_CMIP_vs_obs_2years/lat_lon/MERRA2/MERRA2-FSNS-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex3_modTS_CMIP_vs_obs_2years/lat_lon/MERRA2/MERRA2-FSNS-ANN-global_ref.nc\n", + " * var_key: FSNS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex3_modTS_CMIP_vs_obs_2years/lat_lon/MERRA2/MERRA2-FSNS-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex3_modTS_CMIP_vs_obs_2years/lat_lon/MERRA2/MERRA2-FSNS-ANN-global_test.nc\n", + " * var_key: FSNS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex3_modTS_CMIP_vs_obs_2years/lat_lon/MERRA2/MERRA2-LHFLX-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex3_modTS_CMIP_vs_obs_2years/lat_lon/MERRA2/MERRA2-LHFLX-ANN-global_ref.nc\n", + " * var_key: LHFLX\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex3_modTS_CMIP_vs_obs_2years/lat_lon/MERRA2/MERRA2-LHFLX-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex3_modTS_CMIP_vs_obs_2years/lat_lon/MERRA2/MERRA2-LHFLX-ANN-global_test.nc\n", + " * var_key: LHFLX\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex3_modTS_CMIP_vs_obs_2years/lat_lon/MERRA2/MERRA2-NET_FLUX_SRF-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex3_modTS_CMIP_vs_obs_2years/lat_lon/MERRA2/MERRA2-NET_FLUX_SRF-ANN-global_ref.nc\n", + " * var_key: NET_FLUX_SRF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex3_modTS_CMIP_vs_obs_2years/lat_lon/MERRA2/MERRA2-NET_FLUX_SRF-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex3_modTS_CMIP_vs_obs_2years/lat_lon/MERRA2/MERRA2-NET_FLUX_SRF-ANN-global_test.nc\n", + " * var_key: NET_FLUX_SRF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex3_modTS_CMIP_vs_obs_2years/lat_lon/MERRA2/MERRA2-PRECT-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex3_modTS_CMIP_vs_obs_2years/lat_lon/MERRA2/MERRA2-PRECT-ANN-global_ref.nc\n", + " * var_key: PRECT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex3_modTS_CMIP_vs_obs_2years/lat_lon/MERRA2/MERRA2-PRECT-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex3_modTS_CMIP_vs_obs_2years/lat_lon/MERRA2/MERRA2-PRECT-ANN-global_test.nc\n", + " * var_key: PRECT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex3_modTS_CMIP_vs_obs_2years/lat_lon/MERRA2/MERRA2-PSL-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex3_modTS_CMIP_vs_obs_2years/lat_lon/MERRA2/MERRA2-PSL-ANN-global_ref.nc\n", + " * var_key: PSL\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex3_modTS_CMIP_vs_obs_2years/lat_lon/MERRA2/MERRA2-PSL-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex3_modTS_CMIP_vs_obs_2years/lat_lon/MERRA2/MERRA2-PSL-ANN-global_test.nc\n", + " * var_key: PSL\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex3_modTS_CMIP_vs_obs_2years/lat_lon/MERRA2/MERRA2-SHFLX-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex3_modTS_CMIP_vs_obs_2years/lat_lon/MERRA2/MERRA2-SHFLX-ANN-global_ref.nc\n", + " * var_key: SHFLX\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex3_modTS_CMIP_vs_obs_2years/lat_lon/MERRA2/MERRA2-SHFLX-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex3_modTS_CMIP_vs_obs_2years/lat_lon/MERRA2/MERRA2-SHFLX-ANN-global_test.nc\n", + " * var_key: SHFLX\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex3_modTS_CMIP_vs_obs_2years/lat_lon/MERRA2/MERRA2-TAUXY-ANN-ocean_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex3_modTS_CMIP_vs_obs_2years/lat_lon/MERRA2/MERRA2-TAUXY-ANN-ocean_ref.nc\n", + " * var_key: TAUXY\n", + " \n", + "Not equal to tolerance rtol=1e-05, atol=0\n", + "\n", + "x and y nan location mismatch:\n", + " x: array([[nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],...\n", + " y: array([[nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],...\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex3_modTS_CMIP_vs_obs_2years/lat_lon/MERRA2/MERRA2-TAUXY-ANN-ocean_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex3_modTS_CMIP_vs_obs_2years/lat_lon/MERRA2/MERRA2-TAUXY-ANN-ocean_test.nc\n", + " * var_key: TAUXY\n", + " \n", + "Not equal to tolerance rtol=1e-05, atol=0\n", + "\n", + "x and y nan location mismatch:\n", + " x: array([[nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],...\n", + " y: array([[nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],...\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex3_modTS_CMIP_vs_obs_2years/lat_lon/MERRA2/MERRA2-TMQ-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex3_modTS_CMIP_vs_obs_2years/lat_lon/MERRA2/MERRA2-TMQ-ANN-global_ref.nc\n", + " * var_key: TMQ\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex3_modTS_CMIP_vs_obs_2years/lat_lon/MERRA2/MERRA2-TMQ-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex3_modTS_CMIP_vs_obs_2years/lat_lon/MERRA2/MERRA2-TMQ-ANN-global_test.nc\n", + " * var_key: TMQ\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex3_modTS_CMIP_vs_obs_2years/lat_lon/MERRA2/MERRA2-TREFHT-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex3_modTS_CMIP_vs_obs_2years/lat_lon/MERRA2/MERRA2-TREFHT-ANN-global_ref.nc\n", + " * var_key: TREFHT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex3_modTS_CMIP_vs_obs_2years/lat_lon/MERRA2/MERRA2-TREFHT-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex3_modTS_CMIP_vs_obs_2years/lat_lon/MERRA2/MERRA2-TREFHT-ANN-global_test.nc\n", + " * var_key: TREFHT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex3_modTS_CMIP_vs_obs_2years/lat_lon/MERRA2/MERRA2-TREFHT-ANN-land_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex3_modTS_CMIP_vs_obs_2years/lat_lon/MERRA2/MERRA2-TREFHT-ANN-land_ref.nc\n", + " * var_key: TREFHT\n", + " \n", + "Not equal to tolerance rtol=1e-05, atol=0\n", + "\n", + "x and y nan location mismatch:\n", + " x: array([[-49.424043, -49.424043, -49.424043, ..., -49.424043, -49.424043,\n", + " -49.424043],\n", + " [-48.915167, -48.900075, -48.884955, ..., -48.959809, nan,...\n", + " y: array([[-49.424043, -49.424043, -49.424043, ..., -49.424043, -49.424043,\n", + " -49.424043],\n", + " [-48.915167, -48.900075, -48.884955, ..., -48.959809, -48.944949,...\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex3_modTS_CMIP_vs_obs_2years/lat_lon/MERRA2/MERRA2-TREFHT-ANN-land_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex3_modTS_CMIP_vs_obs_2years/lat_lon/MERRA2/MERRA2-TREFHT-ANN-land_test.nc\n", + " * var_key: TREFHT\n", + " \n", + "Not equal to tolerance rtol=1e-05, atol=0\n", + "\n", + "x and y nan location mismatch:\n", + " x: array([[-48.837715, -48.645334, -48.638652, ..., -48.660212, -48.817613,\n", + " -48.626046],\n", + " [-48.652384, -48.540352, -48.466836, ..., -48.468291, -48.434021,...\n", + " y: array([[-48.837715, -48.645334, -48.638652, ..., -48.660212, -48.817613,\n", + " -48.626046],\n", + " [-48.652384, -48.540352, -48.466836, ..., -48.468291, -48.434021,...\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex3_modTS_CMIP_vs_obs_2years/lat_lon/MERRA2/MERRA2-TREFMNAV-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex3_modTS_CMIP_vs_obs_2years/lat_lon/MERRA2/MERRA2-TREFMNAV-ANN-global_ref.nc\n", + " * var_key: TREFMNAV\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex3_modTS_CMIP_vs_obs_2years/lat_lon/MERRA2/MERRA2-TREFMNAV-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex3_modTS_CMIP_vs_obs_2years/lat_lon/MERRA2/MERRA2-TREFMNAV-ANN-global_test.nc\n", + " * var_key: TREFMNAV\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex3_modTS_CMIP_vs_obs_2years/lat_lon/MERRA2/MERRA2-TREFMXAV-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex3_modTS_CMIP_vs_obs_2years/lat_lon/MERRA2/MERRA2-TREFMXAV-ANN-global_ref.nc\n", + " * var_key: TREFMXAV\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex3_modTS_CMIP_vs_obs_2years/lat_lon/MERRA2/MERRA2-TREFMXAV-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex3_modTS_CMIP_vs_obs_2years/lat_lon/MERRA2/MERRA2-TREFMXAV-ANN-global_test.nc\n", + " * var_key: TREFMXAV\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex3_modTS_CMIP_vs_obs_2years/lat_lon/MERRA2/MERRA2-TREF_range-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex3_modTS_CMIP_vs_obs_2years/lat_lon/MERRA2/MERRA2-TREF_range-ANN-global_ref.nc\n", + " * var_key: TREF_range\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex3_modTS_CMIP_vs_obs_2years/lat_lon/MERRA2/MERRA2-TREF_range-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex3_modTS_CMIP_vs_obs_2years/lat_lon/MERRA2/MERRA2-TREF_range-ANN-global_test.nc\n", + " * var_key: TREF_range\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex3_modTS_CMIP_vs_obs_2years/lat_lon/WHOI-OAFlux/OAFlux-LHFLX-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex3_modTS_CMIP_vs_obs_2years/lat_lon/WHOI-OAFlux/OAFlux-LHFLX-ANN-global_ref.nc\n", + " * var_key: LHFLX\n", + " \n", + "Not equal to tolerance rtol=1e-05, atol=0\n", + "\n", + "x and y nan location mismatch:\n", + " x: array([[nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],...\n", + " y: array([[nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],...\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex3_modTS_CMIP_vs_obs_2years/lat_lon/WHOI-OAFlux/OAFlux-LHFLX-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex3_modTS_CMIP_vs_obs_2years/lat_lon/WHOI-OAFlux/OAFlux-LHFLX-ANN-global_test.nc\n", + " * var_key: LHFLX\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex3_modTS_CMIP_vs_obs_2years/lat_lon/WHOI-OAFlux/OAFlux-SHFLX-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex3_modTS_CMIP_vs_obs_2years/lat_lon/WHOI-OAFlux/OAFlux-SHFLX-ANN-global_ref.nc\n", + " * var_key: SHFLX\n", + " \n", + "Not equal to tolerance rtol=1e-05, atol=0\n", + "\n", + "x and y nan location mismatch:\n", + " x: array([[nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],...\n", + " y: array([[nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],...\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex3_modTS_CMIP_vs_obs_2years/lat_lon/WHOI-OAFlux/OAFlux-SHFLX-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex3_modTS_CMIP_vs_obs_2years/lat_lon/WHOI-OAFlux/OAFlux-SHFLX-ANN-global_test.nc\n", + " * var_key: SHFLX\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-ALBEDO-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-ALBEDO-ANN-global_ref.nc\n", + " * var_key: ALBEDO\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-ALBEDO-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-ALBEDO-ANN-global_test.nc\n", + " * var_key: ALBEDO\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-ALBEDO-DJF-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-ALBEDO-DJF-global_ref.nc\n", + " * var_key: ALBEDO\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-ALBEDO-DJF-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-ALBEDO-DJF-global_test.nc\n", + " * var_key: ALBEDO\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-ALBEDO-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-ALBEDO-JJA-global_ref.nc\n", + " * var_key: ALBEDO\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-ALBEDO-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-ALBEDO-JJA-global_test.nc\n", + " * var_key: ALBEDO\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-ALBEDO-MAM-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-ALBEDO-MAM-global_ref.nc\n", + " * var_key: ALBEDO\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-ALBEDO-MAM-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-ALBEDO-MAM-global_test.nc\n", + " * var_key: ALBEDO\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-ALBEDO-SON-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-ALBEDO-SON-global_ref.nc\n", + " * var_key: ALBEDO\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-ALBEDO-SON-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-ALBEDO-SON-global_test.nc\n", + " * var_key: ALBEDO\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-ALBEDOC-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-ALBEDOC-ANN-global_ref.nc\n", + " * var_key: ALBEDOC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-ALBEDOC-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-ALBEDOC-ANN-global_test.nc\n", + " * var_key: ALBEDOC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-ALBEDOC-DJF-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-ALBEDOC-DJF-global_ref.nc\n", + " * var_key: ALBEDOC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-ALBEDOC-DJF-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-ALBEDOC-DJF-global_test.nc\n", + " * var_key: ALBEDOC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-ALBEDOC-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-ALBEDOC-JJA-global_ref.nc\n", + " * var_key: ALBEDOC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-ALBEDOC-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-ALBEDOC-JJA-global_test.nc\n", + " * var_key: ALBEDOC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-ALBEDOC-MAM-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-ALBEDOC-MAM-global_ref.nc\n", + " * var_key: ALBEDOC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-ALBEDOC-MAM-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-ALBEDOC-MAM-global_test.nc\n", + " * var_key: ALBEDOC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-ALBEDOC-SON-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-ALBEDOC-SON-global_ref.nc\n", + " * var_key: ALBEDOC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-ALBEDOC-SON-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-ALBEDOC-SON-global_test.nc\n", + " * var_key: ALBEDOC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-ALBEDO_SRF-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-ALBEDO_SRF-ANN-global_ref.nc\n", + " * var_key: ALBEDO_SRF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-ALBEDO_SRF-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-ALBEDO_SRF-ANN-global_test.nc\n", + " * var_key: ALBEDO_SRF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-ALBEDO_SRF-DJF-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-ALBEDO_SRF-DJF-global_ref.nc\n", + " * var_key: ALBEDO_SRF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-ALBEDO_SRF-DJF-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-ALBEDO_SRF-DJF-global_test.nc\n", + " * var_key: ALBEDO_SRF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-ALBEDO_SRF-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-ALBEDO_SRF-JJA-global_ref.nc\n", + " * var_key: ALBEDO_SRF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-ALBEDO_SRF-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-ALBEDO_SRF-JJA-global_test.nc\n", + " * var_key: ALBEDO_SRF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-ALBEDO_SRF-MAM-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-ALBEDO_SRF-MAM-global_ref.nc\n", + " * var_key: ALBEDO_SRF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-ALBEDO_SRF-MAM-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-ALBEDO_SRF-MAM-global_test.nc\n", + " * var_key: ALBEDO_SRF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-ALBEDO_SRF-SON-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-ALBEDO_SRF-SON-global_ref.nc\n", + " * var_key: ALBEDO_SRF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-ALBEDO_SRF-SON-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-ALBEDO_SRF-SON-global_test.nc\n", + " * var_key: ALBEDO_SRF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-AODVIS-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-AODVIS-ANN-global_ref.nc\n", + " * var_key: AODVIS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-AODVIS-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-AODVIS-ANN-global_test.nc\n", + " * var_key: AODVIS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-AODVIS-DJF-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-AODVIS-DJF-global_ref.nc\n", + " * var_key: AODVIS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-AODVIS-DJF-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-AODVIS-DJF-global_test.nc\n", + " * var_key: AODVIS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-AODVIS-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-AODVIS-JJA-global_ref.nc\n", + " * var_key: AODVIS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-AODVIS-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-AODVIS-JJA-global_test.nc\n", + " * var_key: AODVIS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-AODVIS-MAM-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-AODVIS-MAM-global_ref.nc\n", + " * var_key: AODVIS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-AODVIS-MAM-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-AODVIS-MAM-global_test.nc\n", + " * var_key: AODVIS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-AODVIS-SON-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-AODVIS-SON-global_ref.nc\n", + " * var_key: AODVIS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-AODVIS-SON-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-AODVIS-SON-global_test.nc\n", + " * var_key: AODVIS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDHGH_CAL-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDHGH_CAL-ANN-global_ref.nc\n", + " * var_key: CLDHGH_CAL\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDHGH_CAL-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDHGH_CAL-ANN-global_test.nc\n", + " * var_key: CLDHGH_CAL\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDHGH_CAL-DJF-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDHGH_CAL-DJF-global_ref.nc\n", + " * var_key: CLDHGH_CAL\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDHGH_CAL-DJF-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDHGH_CAL-DJF-global_test.nc\n", + " * var_key: CLDHGH_CAL\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDHGH_CAL-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDHGH_CAL-JJA-global_ref.nc\n", + " * var_key: CLDHGH_CAL\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDHGH_CAL-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDHGH_CAL-JJA-global_test.nc\n", + " * var_key: CLDHGH_CAL\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDHGH_CAL-MAM-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDHGH_CAL-MAM-global_ref.nc\n", + " * var_key: CLDHGH_CAL\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDHGH_CAL-MAM-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDHGH_CAL-MAM-global_test.nc\n", + " * var_key: CLDHGH_CAL\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDHGH_CAL-SON-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDHGH_CAL-SON-global_ref.nc\n", + " * var_key: CLDHGH_CAL\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDHGH_CAL-SON-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDHGH_CAL-SON-global_test.nc\n", + " * var_key: CLDHGH_CAL\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDHGH_TAU1.3_9.4_MODIS-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDHGH_TAU1.3_9.4_MODIS-ANN-global_ref.nc\n", + " * var_key: CLDHGH_TAU1.3_9.4_MODIS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDHGH_TAU1.3_9.4_MODIS-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDHGH_TAU1.3_9.4_MODIS-ANN-global_test.nc\n", + " * var_key: CLDHGH_TAU1.3_9.4_MODIS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDHGH_TAU1.3_9.4_MODIS-DJF-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDHGH_TAU1.3_9.4_MODIS-DJF-global_ref.nc\n", + " * var_key: CLDHGH_TAU1.3_9.4_MODIS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDHGH_TAU1.3_9.4_MODIS-DJF-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDHGH_TAU1.3_9.4_MODIS-DJF-global_test.nc\n", + " * var_key: CLDHGH_TAU1.3_9.4_MODIS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDHGH_TAU1.3_9.4_MODIS-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDHGH_TAU1.3_9.4_MODIS-JJA-global_ref.nc\n", + " * var_key: CLDHGH_TAU1.3_9.4_MODIS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDHGH_TAU1.3_9.4_MODIS-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDHGH_TAU1.3_9.4_MODIS-JJA-global_test.nc\n", + " * var_key: CLDHGH_TAU1.3_9.4_MODIS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDHGH_TAU1.3_9.4_MODIS-MAM-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDHGH_TAU1.3_9.4_MODIS-MAM-global_ref.nc\n", + " * var_key: CLDHGH_TAU1.3_9.4_MODIS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDHGH_TAU1.3_9.4_MODIS-MAM-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDHGH_TAU1.3_9.4_MODIS-MAM-global_test.nc\n", + " * var_key: CLDHGH_TAU1.3_9.4_MODIS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDHGH_TAU1.3_9.4_MODIS-SON-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDHGH_TAU1.3_9.4_MODIS-SON-global_ref.nc\n", + " * var_key: CLDHGH_TAU1.3_9.4_MODIS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDHGH_TAU1.3_9.4_MODIS-SON-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDHGH_TAU1.3_9.4_MODIS-SON-global_test.nc\n", + " * var_key: CLDHGH_TAU1.3_9.4_MODIS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDHGH_TAU1.3_MODIS-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDHGH_TAU1.3_MODIS-ANN-global_ref.nc\n", + " * var_key: CLDHGH_TAU1.3_MODIS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDHGH_TAU1.3_MODIS-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDHGH_TAU1.3_MODIS-ANN-global_test.nc\n", + " * var_key: CLDHGH_TAU1.3_MODIS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDHGH_TAU1.3_MODIS-DJF-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDHGH_TAU1.3_MODIS-DJF-global_ref.nc\n", + " * var_key: CLDHGH_TAU1.3_MODIS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDHGH_TAU1.3_MODIS-DJF-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDHGH_TAU1.3_MODIS-DJF-global_test.nc\n", + " * var_key: CLDHGH_TAU1.3_MODIS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDHGH_TAU1.3_MODIS-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDHGH_TAU1.3_MODIS-JJA-global_ref.nc\n", + " * var_key: CLDHGH_TAU1.3_MODIS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDHGH_TAU1.3_MODIS-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDHGH_TAU1.3_MODIS-JJA-global_test.nc\n", + " * var_key: CLDHGH_TAU1.3_MODIS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDHGH_TAU1.3_MODIS-MAM-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDHGH_TAU1.3_MODIS-MAM-global_ref.nc\n", + " * var_key: CLDHGH_TAU1.3_MODIS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDHGH_TAU1.3_MODIS-MAM-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDHGH_TAU1.3_MODIS-MAM-global_test.nc\n", + " * var_key: CLDHGH_TAU1.3_MODIS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDHGH_TAU1.3_MODIS-SON-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDHGH_TAU1.3_MODIS-SON-global_ref.nc\n", + " * var_key: CLDHGH_TAU1.3_MODIS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDHGH_TAU1.3_MODIS-SON-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDHGH_TAU1.3_MODIS-SON-global_test.nc\n", + " * var_key: CLDHGH_TAU1.3_MODIS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDHGH_TAU9.4_MODIS-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDHGH_TAU9.4_MODIS-ANN-global_ref.nc\n", + " * var_key: CLDHGH_TAU9.4_MODIS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDHGH_TAU9.4_MODIS-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDHGH_TAU9.4_MODIS-ANN-global_test.nc\n", + " * var_key: CLDHGH_TAU9.4_MODIS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDHGH_TAU9.4_MODIS-DJF-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDHGH_TAU9.4_MODIS-DJF-global_ref.nc\n", + " * var_key: CLDHGH_TAU9.4_MODIS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDHGH_TAU9.4_MODIS-DJF-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDHGH_TAU9.4_MODIS-DJF-global_test.nc\n", + " * var_key: CLDHGH_TAU9.4_MODIS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDHGH_TAU9.4_MODIS-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDHGH_TAU9.4_MODIS-JJA-global_ref.nc\n", + " * var_key: CLDHGH_TAU9.4_MODIS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDHGH_TAU9.4_MODIS-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDHGH_TAU9.4_MODIS-JJA-global_test.nc\n", + " * var_key: CLDHGH_TAU9.4_MODIS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDHGH_TAU9.4_MODIS-MAM-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDHGH_TAU9.4_MODIS-MAM-global_ref.nc\n", + " * var_key: CLDHGH_TAU9.4_MODIS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDHGH_TAU9.4_MODIS-MAM-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDHGH_TAU9.4_MODIS-MAM-global_test.nc\n", + " * var_key: CLDHGH_TAU9.4_MODIS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDHGH_TAU9.4_MODIS-SON-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDHGH_TAU9.4_MODIS-SON-global_ref.nc\n", + " * var_key: CLDHGH_TAU9.4_MODIS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDHGH_TAU9.4_MODIS-SON-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDHGH_TAU9.4_MODIS-SON-global_test.nc\n", + " * var_key: CLDHGH_TAU9.4_MODIS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDLOW_CAL-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDLOW_CAL-ANN-global_ref.nc\n", + " * var_key: CLDLOW_CAL\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDLOW_CAL-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDLOW_CAL-ANN-global_test.nc\n", + " * var_key: CLDLOW_CAL\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDLOW_CAL-DJF-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDLOW_CAL-DJF-global_ref.nc\n", + " * var_key: CLDLOW_CAL\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDLOW_CAL-DJF-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDLOW_CAL-DJF-global_test.nc\n", + " * var_key: CLDLOW_CAL\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDLOW_CAL-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDLOW_CAL-JJA-global_ref.nc\n", + " * var_key: CLDLOW_CAL\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDLOW_CAL-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDLOW_CAL-JJA-global_test.nc\n", + " * var_key: CLDLOW_CAL\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDLOW_CAL-MAM-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDLOW_CAL-MAM-global_ref.nc\n", + " * var_key: CLDLOW_CAL\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDLOW_CAL-MAM-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDLOW_CAL-MAM-global_test.nc\n", + " * var_key: CLDLOW_CAL\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDLOW_CAL-SON-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDLOW_CAL-SON-global_ref.nc\n", + " * var_key: CLDLOW_CAL\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDLOW_CAL-SON-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDLOW_CAL-SON-global_test.nc\n", + " * var_key: CLDLOW_CAL\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDLOW_TAU1.3_9.4_MISR-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDLOW_TAU1.3_9.4_MISR-ANN-global_ref.nc\n", + " * var_key: CLDLOW_TAU1.3_9.4_MISR\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDLOW_TAU1.3_9.4_MISR-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDLOW_TAU1.3_9.4_MISR-ANN-global_test.nc\n", + " * var_key: CLDLOW_TAU1.3_9.4_MISR\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDLOW_TAU1.3_9.4_MISR-DJF-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDLOW_TAU1.3_9.4_MISR-DJF-global_ref.nc\n", + " * var_key: CLDLOW_TAU1.3_9.4_MISR\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDLOW_TAU1.3_9.4_MISR-DJF-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDLOW_TAU1.3_9.4_MISR-DJF-global_test.nc\n", + " * var_key: CLDLOW_TAU1.3_9.4_MISR\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDLOW_TAU1.3_9.4_MISR-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDLOW_TAU1.3_9.4_MISR-JJA-global_ref.nc\n", + " * var_key: CLDLOW_TAU1.3_9.4_MISR\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDLOW_TAU1.3_9.4_MISR-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDLOW_TAU1.3_9.4_MISR-JJA-global_test.nc\n", + " * var_key: CLDLOW_TAU1.3_9.4_MISR\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDLOW_TAU1.3_9.4_MISR-MAM-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDLOW_TAU1.3_9.4_MISR-MAM-global_ref.nc\n", + " * var_key: CLDLOW_TAU1.3_9.4_MISR\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDLOW_TAU1.3_9.4_MISR-MAM-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDLOW_TAU1.3_9.4_MISR-MAM-global_test.nc\n", + " * var_key: CLDLOW_TAU1.3_9.4_MISR\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDLOW_TAU1.3_9.4_MISR-SON-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDLOW_TAU1.3_9.4_MISR-SON-global_ref.nc\n", + " * var_key: CLDLOW_TAU1.3_9.4_MISR\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDLOW_TAU1.3_9.4_MISR-SON-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDLOW_TAU1.3_9.4_MISR-SON-global_test.nc\n", + " * var_key: CLDLOW_TAU1.3_9.4_MISR\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDLOW_TAU1.3_MISR-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDLOW_TAU1.3_MISR-ANN-global_ref.nc\n", + " * var_key: CLDLOW_TAU1.3_MISR\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDLOW_TAU1.3_MISR-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDLOW_TAU1.3_MISR-ANN-global_test.nc\n", + " * var_key: CLDLOW_TAU1.3_MISR\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDLOW_TAU1.3_MISR-DJF-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDLOW_TAU1.3_MISR-DJF-global_ref.nc\n", + " * var_key: CLDLOW_TAU1.3_MISR\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDLOW_TAU1.3_MISR-DJF-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDLOW_TAU1.3_MISR-DJF-global_test.nc\n", + " * var_key: CLDLOW_TAU1.3_MISR\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDLOW_TAU1.3_MISR-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDLOW_TAU1.3_MISR-JJA-global_ref.nc\n", + " * var_key: CLDLOW_TAU1.3_MISR\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDLOW_TAU1.3_MISR-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDLOW_TAU1.3_MISR-JJA-global_test.nc\n", + " * var_key: CLDLOW_TAU1.3_MISR\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDLOW_TAU1.3_MISR-MAM-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDLOW_TAU1.3_MISR-MAM-global_ref.nc\n", + " * var_key: CLDLOW_TAU1.3_MISR\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDLOW_TAU1.3_MISR-MAM-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDLOW_TAU1.3_MISR-MAM-global_test.nc\n", + " * var_key: CLDLOW_TAU1.3_MISR\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDLOW_TAU1.3_MISR-SON-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDLOW_TAU1.3_MISR-SON-global_ref.nc\n", + " * var_key: CLDLOW_TAU1.3_MISR\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDLOW_TAU1.3_MISR-SON-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDLOW_TAU1.3_MISR-SON-global_test.nc\n", + " * var_key: CLDLOW_TAU1.3_MISR\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDLOW_TAU9.4_MISR-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDLOW_TAU9.4_MISR-ANN-global_ref.nc\n", + " * var_key: CLDLOW_TAU9.4_MISR\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDLOW_TAU9.4_MISR-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDLOW_TAU9.4_MISR-ANN-global_test.nc\n", + " * var_key: CLDLOW_TAU9.4_MISR\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDLOW_TAU9.4_MISR-DJF-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDLOW_TAU9.4_MISR-DJF-global_ref.nc\n", + " * var_key: CLDLOW_TAU9.4_MISR\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDLOW_TAU9.4_MISR-DJF-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDLOW_TAU9.4_MISR-DJF-global_test.nc\n", + " * var_key: CLDLOW_TAU9.4_MISR\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDLOW_TAU9.4_MISR-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDLOW_TAU9.4_MISR-JJA-global_ref.nc\n", + " * var_key: CLDLOW_TAU9.4_MISR\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDLOW_TAU9.4_MISR-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDLOW_TAU9.4_MISR-JJA-global_test.nc\n", + " * var_key: CLDLOW_TAU9.4_MISR\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDLOW_TAU9.4_MISR-MAM-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDLOW_TAU9.4_MISR-MAM-global_ref.nc\n", + " * var_key: CLDLOW_TAU9.4_MISR\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDLOW_TAU9.4_MISR-MAM-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDLOW_TAU9.4_MISR-MAM-global_test.nc\n", + " * var_key: CLDLOW_TAU9.4_MISR\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDLOW_TAU9.4_MISR-SON-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDLOW_TAU9.4_MISR-SON-global_ref.nc\n", + " * var_key: CLDLOW_TAU9.4_MISR\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDLOW_TAU9.4_MISR-SON-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDLOW_TAU9.4_MISR-SON-global_test.nc\n", + " * var_key: CLDLOW_TAU9.4_MISR\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDMED_CAL-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDMED_CAL-ANN-global_ref.nc\n", + " * var_key: CLDMED_CAL\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDMED_CAL-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDMED_CAL-ANN-global_test.nc\n", + " * var_key: CLDMED_CAL\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDMED_CAL-DJF-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDMED_CAL-DJF-global_ref.nc\n", + " * var_key: CLDMED_CAL\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDMED_CAL-DJF-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDMED_CAL-DJF-global_test.nc\n", + " * var_key: CLDMED_CAL\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDMED_CAL-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDMED_CAL-JJA-global_ref.nc\n", + " * var_key: CLDMED_CAL\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDMED_CAL-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDMED_CAL-JJA-global_test.nc\n", + " * var_key: CLDMED_CAL\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDMED_CAL-MAM-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDMED_CAL-MAM-global_ref.nc\n", + " * var_key: CLDMED_CAL\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDMED_CAL-MAM-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDMED_CAL-MAM-global_test.nc\n", + " * var_key: CLDMED_CAL\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDMED_CAL-SON-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDMED_CAL-SON-global_ref.nc\n", + " * var_key: CLDMED_CAL\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDMED_CAL-SON-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDMED_CAL-SON-global_test.nc\n", + " * var_key: CLDMED_CAL\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_CAL-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_CAL-ANN-global_ref.nc\n", + " * var_key: CLDTOT_CAL\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_CAL-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_CAL-ANN-global_test.nc\n", + " * var_key: CLDTOT_CAL\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_CAL-DJF-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_CAL-DJF-global_ref.nc\n", + " * var_key: CLDTOT_CAL\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_CAL-DJF-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_CAL-DJF-global_test.nc\n", + " * var_key: CLDTOT_CAL\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_CAL-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_CAL-JJA-global_ref.nc\n", + " * var_key: CLDTOT_CAL\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_CAL-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_CAL-JJA-global_test.nc\n", + " * var_key: CLDTOT_CAL\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_CAL-MAM-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_CAL-MAM-global_ref.nc\n", + " * var_key: CLDTOT_CAL\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_CAL-MAM-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_CAL-MAM-global_test.nc\n", + " * var_key: CLDTOT_CAL\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_CAL-SON-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_CAL-SON-global_ref.nc\n", + " * var_key: CLDTOT_CAL\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_CAL-SON-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_CAL-SON-global_test.nc\n", + " * var_key: CLDTOT_CAL\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_TAU1.3_9.4_ISCCP-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_TAU1.3_9.4_ISCCP-ANN-global_ref.nc\n", + " * var_key: CLDTOT_TAU1.3_9.4_ISCCP\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_TAU1.3_9.4_ISCCP-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_TAU1.3_9.4_ISCCP-ANN-global_test.nc\n", + " * var_key: CLDTOT_TAU1.3_9.4_ISCCP\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_TAU1.3_9.4_ISCCP-DJF-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_TAU1.3_9.4_ISCCP-DJF-global_ref.nc\n", + " * var_key: CLDTOT_TAU1.3_9.4_ISCCP\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_TAU1.3_9.4_ISCCP-DJF-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_TAU1.3_9.4_ISCCP-DJF-global_test.nc\n", + " * var_key: CLDTOT_TAU1.3_9.4_ISCCP\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_TAU1.3_9.4_ISCCP-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_TAU1.3_9.4_ISCCP-JJA-global_ref.nc\n", + " * var_key: CLDTOT_TAU1.3_9.4_ISCCP\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_TAU1.3_9.4_ISCCP-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_TAU1.3_9.4_ISCCP-JJA-global_test.nc\n", + " * var_key: CLDTOT_TAU1.3_9.4_ISCCP\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_TAU1.3_9.4_ISCCP-MAM-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_TAU1.3_9.4_ISCCP-MAM-global_ref.nc\n", + " * var_key: CLDTOT_TAU1.3_9.4_ISCCP\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_TAU1.3_9.4_ISCCP-MAM-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_TAU1.3_9.4_ISCCP-MAM-global_test.nc\n", + " * var_key: CLDTOT_TAU1.3_9.4_ISCCP\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_TAU1.3_9.4_ISCCP-SON-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_TAU1.3_9.4_ISCCP-SON-global_ref.nc\n", + " * var_key: CLDTOT_TAU1.3_9.4_ISCCP\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_TAU1.3_9.4_ISCCP-SON-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_TAU1.3_9.4_ISCCP-SON-global_test.nc\n", + " * var_key: CLDTOT_TAU1.3_9.4_ISCCP\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_TAU1.3_9.4_MISR-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_TAU1.3_9.4_MISR-ANN-global_ref.nc\n", + " * var_key: CLDTOT_TAU1.3_9.4_MISR\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_TAU1.3_9.4_MISR-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_TAU1.3_9.4_MISR-ANN-global_test.nc\n", + " * var_key: CLDTOT_TAU1.3_9.4_MISR\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_TAU1.3_9.4_MISR-DJF-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_TAU1.3_9.4_MISR-DJF-global_ref.nc\n", + " * var_key: CLDTOT_TAU1.3_9.4_MISR\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_TAU1.3_9.4_MISR-DJF-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_TAU1.3_9.4_MISR-DJF-global_test.nc\n", + " * var_key: CLDTOT_TAU1.3_9.4_MISR\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_TAU1.3_9.4_MISR-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_TAU1.3_9.4_MISR-JJA-global_ref.nc\n", + " * var_key: CLDTOT_TAU1.3_9.4_MISR\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_TAU1.3_9.4_MISR-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_TAU1.3_9.4_MISR-JJA-global_test.nc\n", + " * var_key: CLDTOT_TAU1.3_9.4_MISR\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_TAU1.3_9.4_MISR-MAM-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_TAU1.3_9.4_MISR-MAM-global_ref.nc\n", + " * var_key: CLDTOT_TAU1.3_9.4_MISR\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_TAU1.3_9.4_MISR-MAM-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_TAU1.3_9.4_MISR-MAM-global_test.nc\n", + " * var_key: CLDTOT_TAU1.3_9.4_MISR\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_TAU1.3_9.4_MISR-SON-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_TAU1.3_9.4_MISR-SON-global_ref.nc\n", + " * var_key: CLDTOT_TAU1.3_9.4_MISR\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_TAU1.3_9.4_MISR-SON-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_TAU1.3_9.4_MISR-SON-global_test.nc\n", + " * var_key: CLDTOT_TAU1.3_9.4_MISR\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_TAU1.3_9.4_MODIS-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_TAU1.3_9.4_MODIS-ANN-global_ref.nc\n", + " * var_key: CLDTOT_TAU1.3_9.4_MODIS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_TAU1.3_9.4_MODIS-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_TAU1.3_9.4_MODIS-ANN-global_test.nc\n", + " * var_key: CLDTOT_TAU1.3_9.4_MODIS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_TAU1.3_9.4_MODIS-DJF-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_TAU1.3_9.4_MODIS-DJF-global_ref.nc\n", + " * var_key: CLDTOT_TAU1.3_9.4_MODIS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_TAU1.3_9.4_MODIS-DJF-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_TAU1.3_9.4_MODIS-DJF-global_test.nc\n", + " * var_key: CLDTOT_TAU1.3_9.4_MODIS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_TAU1.3_9.4_MODIS-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_TAU1.3_9.4_MODIS-JJA-global_ref.nc\n", + " * var_key: CLDTOT_TAU1.3_9.4_MODIS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_TAU1.3_9.4_MODIS-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_TAU1.3_9.4_MODIS-JJA-global_test.nc\n", + " * var_key: CLDTOT_TAU1.3_9.4_MODIS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_TAU1.3_9.4_MODIS-MAM-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_TAU1.3_9.4_MODIS-MAM-global_ref.nc\n", + " * var_key: CLDTOT_TAU1.3_9.4_MODIS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_TAU1.3_9.4_MODIS-MAM-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_TAU1.3_9.4_MODIS-MAM-global_test.nc\n", + " * var_key: CLDTOT_TAU1.3_9.4_MODIS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_TAU1.3_9.4_MODIS-SON-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_TAU1.3_9.4_MODIS-SON-global_ref.nc\n", + " * var_key: CLDTOT_TAU1.3_9.4_MODIS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_TAU1.3_9.4_MODIS-SON-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_TAU1.3_9.4_MODIS-SON-global_test.nc\n", + " * var_key: CLDTOT_TAU1.3_9.4_MODIS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_TAU1.3_ISCCP-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_TAU1.3_ISCCP-ANN-global_ref.nc\n", + " * var_key: CLDTOT_TAU1.3_ISCCP\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_TAU1.3_ISCCP-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_TAU1.3_ISCCP-ANN-global_test.nc\n", + " * var_key: CLDTOT_TAU1.3_ISCCP\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_TAU1.3_ISCCP-DJF-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_TAU1.3_ISCCP-DJF-global_ref.nc\n", + " * var_key: CLDTOT_TAU1.3_ISCCP\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_TAU1.3_ISCCP-DJF-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_TAU1.3_ISCCP-DJF-global_test.nc\n", + " * var_key: CLDTOT_TAU1.3_ISCCP\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_TAU1.3_ISCCP-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_TAU1.3_ISCCP-JJA-global_ref.nc\n", + " * var_key: CLDTOT_TAU1.3_ISCCP\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_TAU1.3_ISCCP-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_TAU1.3_ISCCP-JJA-global_test.nc\n", + " * var_key: CLDTOT_TAU1.3_ISCCP\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_TAU1.3_ISCCP-MAM-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_TAU1.3_ISCCP-MAM-global_ref.nc\n", + " * var_key: CLDTOT_TAU1.3_ISCCP\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_TAU1.3_ISCCP-MAM-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_TAU1.3_ISCCP-MAM-global_test.nc\n", + " * var_key: CLDTOT_TAU1.3_ISCCP\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_TAU1.3_ISCCP-SON-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_TAU1.3_ISCCP-SON-global_ref.nc\n", + " * var_key: CLDTOT_TAU1.3_ISCCP\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_TAU1.3_ISCCP-SON-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_TAU1.3_ISCCP-SON-global_test.nc\n", + " * var_key: CLDTOT_TAU1.3_ISCCP\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_TAU1.3_MISR-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_TAU1.3_MISR-ANN-global_ref.nc\n", + " * var_key: CLDTOT_TAU1.3_MISR\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_TAU1.3_MISR-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_TAU1.3_MISR-ANN-global_test.nc\n", + " * var_key: CLDTOT_TAU1.3_MISR\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_TAU1.3_MISR-DJF-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_TAU1.3_MISR-DJF-global_ref.nc\n", + " * var_key: CLDTOT_TAU1.3_MISR\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_TAU1.3_MISR-DJF-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_TAU1.3_MISR-DJF-global_test.nc\n", + " * var_key: CLDTOT_TAU1.3_MISR\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_TAU1.3_MISR-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_TAU1.3_MISR-JJA-global_ref.nc\n", + " * var_key: CLDTOT_TAU1.3_MISR\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_TAU1.3_MISR-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_TAU1.3_MISR-JJA-global_test.nc\n", + " * var_key: CLDTOT_TAU1.3_MISR\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_TAU1.3_MISR-MAM-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_TAU1.3_MISR-MAM-global_ref.nc\n", + " * var_key: CLDTOT_TAU1.3_MISR\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_TAU1.3_MISR-MAM-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_TAU1.3_MISR-MAM-global_test.nc\n", + " * var_key: CLDTOT_TAU1.3_MISR\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_TAU1.3_MISR-SON-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_TAU1.3_MISR-SON-global_ref.nc\n", + " * var_key: CLDTOT_TAU1.3_MISR\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_TAU1.3_MISR-SON-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_TAU1.3_MISR-SON-global_test.nc\n", + " * var_key: CLDTOT_TAU1.3_MISR\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_TAU1.3_MODIS-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_TAU1.3_MODIS-ANN-global_ref.nc\n", + " * var_key: CLDTOT_TAU1.3_MODIS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_TAU1.3_MODIS-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_TAU1.3_MODIS-ANN-global_test.nc\n", + " * var_key: CLDTOT_TAU1.3_MODIS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_TAU1.3_MODIS-DJF-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_TAU1.3_MODIS-DJF-global_ref.nc\n", + " * var_key: CLDTOT_TAU1.3_MODIS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_TAU1.3_MODIS-DJF-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_TAU1.3_MODIS-DJF-global_test.nc\n", + " * var_key: CLDTOT_TAU1.3_MODIS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_TAU1.3_MODIS-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_TAU1.3_MODIS-JJA-global_ref.nc\n", + " * var_key: CLDTOT_TAU1.3_MODIS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_TAU1.3_MODIS-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_TAU1.3_MODIS-JJA-global_test.nc\n", + " * var_key: CLDTOT_TAU1.3_MODIS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_TAU1.3_MODIS-MAM-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_TAU1.3_MODIS-MAM-global_ref.nc\n", + " * var_key: CLDTOT_TAU1.3_MODIS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_TAU1.3_MODIS-MAM-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_TAU1.3_MODIS-MAM-global_test.nc\n", + " * var_key: CLDTOT_TAU1.3_MODIS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_TAU1.3_MODIS-SON-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_TAU1.3_MODIS-SON-global_ref.nc\n", + " * var_key: CLDTOT_TAU1.3_MODIS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_TAU1.3_MODIS-SON-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_TAU1.3_MODIS-SON-global_test.nc\n", + " * var_key: CLDTOT_TAU1.3_MODIS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_TAU9.4_ISCCP-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_TAU9.4_ISCCP-ANN-global_ref.nc\n", + " * var_key: CLDTOT_TAU9.4_ISCCP\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_TAU9.4_ISCCP-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_TAU9.4_ISCCP-ANN-global_test.nc\n", + " * var_key: CLDTOT_TAU9.4_ISCCP\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_TAU9.4_ISCCP-DJF-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_TAU9.4_ISCCP-DJF-global_ref.nc\n", + " * var_key: CLDTOT_TAU9.4_ISCCP\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_TAU9.4_ISCCP-DJF-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_TAU9.4_ISCCP-DJF-global_test.nc\n", + " * var_key: CLDTOT_TAU9.4_ISCCP\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_TAU9.4_ISCCP-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_TAU9.4_ISCCP-JJA-global_ref.nc\n", + " * var_key: CLDTOT_TAU9.4_ISCCP\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_TAU9.4_ISCCP-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_TAU9.4_ISCCP-JJA-global_test.nc\n", + " * var_key: CLDTOT_TAU9.4_ISCCP\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_TAU9.4_ISCCP-MAM-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_TAU9.4_ISCCP-MAM-global_ref.nc\n", + " * var_key: CLDTOT_TAU9.4_ISCCP\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_TAU9.4_ISCCP-MAM-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_TAU9.4_ISCCP-MAM-global_test.nc\n", + " * var_key: CLDTOT_TAU9.4_ISCCP\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_TAU9.4_ISCCP-SON-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_TAU9.4_ISCCP-SON-global_ref.nc\n", + " * var_key: CLDTOT_TAU9.4_ISCCP\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_TAU9.4_ISCCP-SON-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_TAU9.4_ISCCP-SON-global_test.nc\n", + " * var_key: CLDTOT_TAU9.4_ISCCP\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_TAU9.4_MISR-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_TAU9.4_MISR-ANN-global_ref.nc\n", + " * var_key: CLDTOT_TAU9.4_MISR\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_TAU9.4_MISR-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_TAU9.4_MISR-ANN-global_test.nc\n", + " * var_key: CLDTOT_TAU9.4_MISR\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_TAU9.4_MISR-DJF-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_TAU9.4_MISR-DJF-global_ref.nc\n", + " * var_key: CLDTOT_TAU9.4_MISR\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_TAU9.4_MISR-DJF-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_TAU9.4_MISR-DJF-global_test.nc\n", + " * var_key: CLDTOT_TAU9.4_MISR\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_TAU9.4_MISR-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_TAU9.4_MISR-JJA-global_ref.nc\n", + " * var_key: CLDTOT_TAU9.4_MISR\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_TAU9.4_MISR-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_TAU9.4_MISR-JJA-global_test.nc\n", + " * var_key: CLDTOT_TAU9.4_MISR\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_TAU9.4_MISR-MAM-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_TAU9.4_MISR-MAM-global_ref.nc\n", + " * var_key: CLDTOT_TAU9.4_MISR\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_TAU9.4_MISR-MAM-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_TAU9.4_MISR-MAM-global_test.nc\n", + " * var_key: CLDTOT_TAU9.4_MISR\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_TAU9.4_MISR-SON-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_TAU9.4_MISR-SON-global_ref.nc\n", + " * var_key: CLDTOT_TAU9.4_MISR\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_TAU9.4_MISR-SON-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_TAU9.4_MISR-SON-global_test.nc\n", + " * var_key: CLDTOT_TAU9.4_MISR\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_TAU9.4_MODIS-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_TAU9.4_MODIS-ANN-global_ref.nc\n", + " * var_key: CLDTOT_TAU9.4_MODIS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_TAU9.4_MODIS-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_TAU9.4_MODIS-ANN-global_test.nc\n", + " * var_key: CLDTOT_TAU9.4_MODIS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_TAU9.4_MODIS-DJF-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_TAU9.4_MODIS-DJF-global_ref.nc\n", + " * var_key: CLDTOT_TAU9.4_MODIS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_TAU9.4_MODIS-DJF-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_TAU9.4_MODIS-DJF-global_test.nc\n", + " * var_key: CLDTOT_TAU9.4_MODIS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_TAU9.4_MODIS-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_TAU9.4_MODIS-JJA-global_ref.nc\n", + " * var_key: CLDTOT_TAU9.4_MODIS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_TAU9.4_MODIS-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_TAU9.4_MODIS-JJA-global_test.nc\n", + " * var_key: CLDTOT_TAU9.4_MODIS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_TAU9.4_MODIS-MAM-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_TAU9.4_MODIS-MAM-global_ref.nc\n", + " * var_key: CLDTOT_TAU9.4_MODIS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_TAU9.4_MODIS-MAM-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_TAU9.4_MODIS-MAM-global_test.nc\n", + " * var_key: CLDTOT_TAU9.4_MODIS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_TAU9.4_MODIS-SON-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_TAU9.4_MODIS-SON-global_ref.nc\n", + " * var_key: CLDTOT_TAU9.4_MODIS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_TAU9.4_MODIS-SON-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-CLDTOT_TAU9.4_MODIS-SON-global_test.nc\n", + " * var_key: CLDTOT_TAU9.4_MODIS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-ERFtot-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-ERFtot-ANN-global_ref.nc\n", + " * var_key: ERFtot\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-ERFtot-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-ERFtot-ANN-global_test.nc\n", + " * var_key: ERFtot\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-ERFtot-DJF-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-ERFtot-DJF-global_ref.nc\n", + " * var_key: ERFtot\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-ERFtot-DJF-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-ERFtot-DJF-global_test.nc\n", + " * var_key: ERFtot\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-ERFtot-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-ERFtot-JJA-global_ref.nc\n", + " * var_key: ERFtot\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-ERFtot-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-ERFtot-JJA-global_test.nc\n", + " * var_key: ERFtot\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-ERFtot-MAM-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-ERFtot-MAM-global_ref.nc\n", + " * var_key: ERFtot\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-ERFtot-MAM-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-ERFtot-MAM-global_test.nc\n", + " * var_key: ERFtot\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-ERFtot-SON-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-ERFtot-SON-global_ref.nc\n", + " * var_key: ERFtot\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-ERFtot-SON-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-ERFtot-SON-global_test.nc\n", + " * var_key: ERFtot\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FLDS-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FLDS-ANN-global_ref.nc\n", + " * var_key: FLDS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FLDS-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FLDS-ANN-global_test.nc\n", + " * var_key: FLDS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FLDS-DJF-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FLDS-DJF-global_ref.nc\n", + " * var_key: FLDS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FLDS-DJF-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FLDS-DJF-global_test.nc\n", + " * var_key: FLDS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FLDS-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FLDS-JJA-global_ref.nc\n", + " * var_key: FLDS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FLDS-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FLDS-JJA-global_test.nc\n", + " * var_key: FLDS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FLDS-MAM-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FLDS-MAM-global_ref.nc\n", + " * var_key: FLDS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FLDS-MAM-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FLDS-MAM-global_test.nc\n", + " * var_key: FLDS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FLDS-SON-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FLDS-SON-global_ref.nc\n", + " * var_key: FLDS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FLDS-SON-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FLDS-SON-global_test.nc\n", + " * var_key: FLDS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FLDSC-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FLDSC-ANN-global_ref.nc\n", + " * var_key: FLDSC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FLDSC-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FLDSC-ANN-global_test.nc\n", + " * var_key: FLDSC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FLDSC-DJF-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FLDSC-DJF-global_ref.nc\n", + " * var_key: FLDSC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FLDSC-DJF-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FLDSC-DJF-global_test.nc\n", + " * var_key: FLDSC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FLDSC-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FLDSC-JJA-global_ref.nc\n", + " * var_key: FLDSC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FLDSC-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FLDSC-JJA-global_test.nc\n", + " * var_key: FLDSC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FLDSC-MAM-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FLDSC-MAM-global_ref.nc\n", + " * var_key: FLDSC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FLDSC-MAM-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FLDSC-MAM-global_test.nc\n", + " * var_key: FLDSC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FLDSC-SON-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FLDSC-SON-global_ref.nc\n", + " * var_key: FLDSC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FLDSC-SON-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FLDSC-SON-global_test.nc\n", + " * var_key: FLDSC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FLNS-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FLNS-ANN-global_ref.nc\n", + " * var_key: FLNS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FLNS-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FLNS-ANN-global_test.nc\n", + " * var_key: FLNS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FLNS-DJF-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FLNS-DJF-global_ref.nc\n", + " * var_key: FLNS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FLNS-DJF-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FLNS-DJF-global_test.nc\n", + " * var_key: FLNS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FLNS-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FLNS-JJA-global_ref.nc\n", + " * var_key: FLNS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FLNS-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FLNS-JJA-global_test.nc\n", + " * var_key: FLNS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FLNS-MAM-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FLNS-MAM-global_ref.nc\n", + " * var_key: FLNS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FLNS-MAM-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FLNS-MAM-global_test.nc\n", + " * var_key: FLNS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FLNS-SON-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FLNS-SON-global_ref.nc\n", + " * var_key: FLNS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FLNS-SON-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FLNS-SON-global_test.nc\n", + " * var_key: FLNS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FLNSC-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FLNSC-ANN-global_ref.nc\n", + " * var_key: FLNSC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FLNSC-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FLNSC-ANN-global_test.nc\n", + " * var_key: FLNSC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FLNSC-DJF-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FLNSC-DJF-global_ref.nc\n", + " * var_key: FLNSC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FLNSC-DJF-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FLNSC-DJF-global_test.nc\n", + " * var_key: FLNSC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FLNSC-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FLNSC-JJA-global_ref.nc\n", + " * var_key: FLNSC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FLNSC-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FLNSC-JJA-global_test.nc\n", + " * var_key: FLNSC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FLNSC-MAM-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FLNSC-MAM-global_ref.nc\n", + " * var_key: FLNSC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FLNSC-MAM-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FLNSC-MAM-global_test.nc\n", + " * var_key: FLNSC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FLNSC-SON-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FLNSC-SON-global_ref.nc\n", + " * var_key: FLNSC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FLNSC-SON-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FLNSC-SON-global_test.nc\n", + " * var_key: FLNSC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FLUT-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FLUT-ANN-global_ref.nc\n", + " * var_key: FLUT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FLUT-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FLUT-ANN-global_test.nc\n", + " * var_key: FLUT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FLUT-DJF-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FLUT-DJF-global_ref.nc\n", + " * var_key: FLUT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FLUT-DJF-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FLUT-DJF-global_test.nc\n", + " * var_key: FLUT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FLUT-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FLUT-JJA-global_ref.nc\n", + " * var_key: FLUT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FLUT-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FLUT-JJA-global_test.nc\n", + " * var_key: FLUT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FLUT-MAM-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FLUT-MAM-global_ref.nc\n", + " * var_key: FLUT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FLUT-MAM-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FLUT-MAM-global_test.nc\n", + " * var_key: FLUT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FLUT-SON-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FLUT-SON-global_ref.nc\n", + " * var_key: FLUT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FLUT-SON-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FLUT-SON-global_test.nc\n", + " * var_key: FLUT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FLUTC-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FLUTC-ANN-global_ref.nc\n", + " * var_key: FLUTC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FLUTC-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FLUTC-ANN-global_test.nc\n", + " * var_key: FLUTC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FLUTC-DJF-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FLUTC-DJF-global_ref.nc\n", + " * var_key: FLUTC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FLUTC-DJF-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FLUTC-DJF-global_test.nc\n", + " * var_key: FLUTC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FLUTC-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FLUTC-JJA-global_ref.nc\n", + " * var_key: FLUTC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FLUTC-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FLUTC-JJA-global_test.nc\n", + " * var_key: FLUTC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FLUTC-MAM-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FLUTC-MAM-global_ref.nc\n", + " * var_key: FLUTC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FLUTC-MAM-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FLUTC-MAM-global_test.nc\n", + " * var_key: FLUTC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FLUTC-SON-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FLUTC-SON-global_ref.nc\n", + " * var_key: FLUTC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FLUTC-SON-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FLUTC-SON-global_test.nc\n", + " * var_key: FLUTC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FSDS-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FSDS-ANN-global_ref.nc\n", + " * var_key: FSDS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FSDS-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FSDS-ANN-global_test.nc\n", + " * var_key: FSDS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FSDS-DJF-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FSDS-DJF-global_ref.nc\n", + " * var_key: FSDS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FSDS-DJF-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FSDS-DJF-global_test.nc\n", + " * var_key: FSDS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FSDS-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FSDS-JJA-global_ref.nc\n", + " * var_key: FSDS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FSDS-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FSDS-JJA-global_test.nc\n", + " * var_key: FSDS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FSDS-MAM-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FSDS-MAM-global_ref.nc\n", + " * var_key: FSDS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FSDS-MAM-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FSDS-MAM-global_test.nc\n", + " * var_key: FSDS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FSDS-SON-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FSDS-SON-global_ref.nc\n", + " * var_key: FSDS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FSDS-SON-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FSDS-SON-global_test.nc\n", + " * var_key: FSDS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FSDSC-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FSDSC-ANN-global_ref.nc\n", + " * var_key: FSDSC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FSDSC-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FSDSC-ANN-global_test.nc\n", + " * var_key: FSDSC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FSDSC-DJF-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FSDSC-DJF-global_ref.nc\n", + " * var_key: FSDSC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FSDSC-DJF-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FSDSC-DJF-global_test.nc\n", + " * var_key: FSDSC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FSDSC-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FSDSC-JJA-global_ref.nc\n", + " * var_key: FSDSC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FSDSC-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FSDSC-JJA-global_test.nc\n", + " * var_key: FSDSC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FSDSC-MAM-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FSDSC-MAM-global_ref.nc\n", + " * var_key: FSDSC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FSDSC-MAM-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FSDSC-MAM-global_test.nc\n", + " * var_key: FSDSC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FSDSC-SON-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FSDSC-SON-global_ref.nc\n", + " * var_key: FSDSC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FSDSC-SON-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FSDSC-SON-global_test.nc\n", + " * var_key: FSDSC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FSNS-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FSNS-ANN-global_ref.nc\n", + " * var_key: FSNS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FSNS-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FSNS-ANN-global_test.nc\n", + " * var_key: FSNS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FSNS-DJF-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FSNS-DJF-global_ref.nc\n", + " * var_key: FSNS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FSNS-DJF-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FSNS-DJF-global_test.nc\n", + " * var_key: FSNS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FSNS-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FSNS-JJA-global_ref.nc\n", + " * var_key: FSNS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FSNS-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FSNS-JJA-global_test.nc\n", + " * var_key: FSNS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FSNS-MAM-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FSNS-MAM-global_ref.nc\n", + " * var_key: FSNS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FSNS-MAM-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FSNS-MAM-global_test.nc\n", + " * var_key: FSNS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FSNS-SON-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FSNS-SON-global_ref.nc\n", + " * var_key: FSNS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FSNS-SON-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FSNS-SON-global_test.nc\n", + " * var_key: FSNS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FSNSC-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FSNSC-ANN-global_ref.nc\n", + " * var_key: FSNSC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FSNSC-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FSNSC-ANN-global_test.nc\n", + " * var_key: FSNSC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FSNSC-DJF-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FSNSC-DJF-global_ref.nc\n", + " * var_key: FSNSC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FSNSC-DJF-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FSNSC-DJF-global_test.nc\n", + " * var_key: FSNSC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FSNSC-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FSNSC-JJA-global_ref.nc\n", + " * var_key: FSNSC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FSNSC-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FSNSC-JJA-global_test.nc\n", + " * var_key: FSNSC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FSNSC-MAM-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FSNSC-MAM-global_ref.nc\n", + " * var_key: FSNSC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FSNSC-MAM-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FSNSC-MAM-global_test.nc\n", + " * var_key: FSNSC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FSNSC-SON-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FSNSC-SON-global_ref.nc\n", + " * var_key: FSNSC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FSNSC-SON-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FSNSC-SON-global_test.nc\n", + " * var_key: FSNSC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FSNTOA-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FSNTOA-ANN-global_ref.nc\n", + " * var_key: FSNTOA\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FSNTOA-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FSNTOA-ANN-global_test.nc\n", + " * var_key: FSNTOA\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FSNTOA-DJF-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FSNTOA-DJF-global_ref.nc\n", + " * var_key: FSNTOA\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FSNTOA-DJF-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FSNTOA-DJF-global_test.nc\n", + " * var_key: FSNTOA\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FSNTOA-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FSNTOA-JJA-global_ref.nc\n", + " * var_key: FSNTOA\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FSNTOA-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FSNTOA-JJA-global_test.nc\n", + " * var_key: FSNTOA\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FSNTOA-MAM-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FSNTOA-MAM-global_ref.nc\n", + " * var_key: FSNTOA\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FSNTOA-MAM-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FSNTOA-MAM-global_test.nc\n", + " * var_key: FSNTOA\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FSNTOA-SON-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FSNTOA-SON-global_ref.nc\n", + " * var_key: FSNTOA\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FSNTOA-SON-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FSNTOA-SON-global_test.nc\n", + " * var_key: FSNTOA\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FSNTOAC-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FSNTOAC-ANN-global_ref.nc\n", + " * var_key: FSNTOAC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FSNTOAC-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FSNTOAC-ANN-global_test.nc\n", + " * var_key: FSNTOAC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FSNTOAC-DJF-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FSNTOAC-DJF-global_ref.nc\n", + " * var_key: FSNTOAC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FSNTOAC-DJF-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FSNTOAC-DJF-global_test.nc\n", + " * var_key: FSNTOAC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FSNTOAC-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FSNTOAC-JJA-global_ref.nc\n", + " * var_key: FSNTOAC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FSNTOAC-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FSNTOAC-JJA-global_test.nc\n", + " * var_key: FSNTOAC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FSNTOAC-MAM-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FSNTOAC-MAM-global_ref.nc\n", + " * var_key: FSNTOAC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FSNTOAC-MAM-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FSNTOAC-MAM-global_test.nc\n", + " * var_key: FSNTOAC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FSNTOAC-SON-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FSNTOAC-SON-global_ref.nc\n", + " * var_key: FSNTOAC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FSNTOAC-SON-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-FSNTOAC-SON-global_test.nc\n", + " * var_key: FSNTOAC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-LHFLX-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-LHFLX-ANN-global_ref.nc\n", + " * var_key: LHFLX\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-LHFLX-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-LHFLX-ANN-global_test.nc\n", + " * var_key: LHFLX\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-LHFLX-DJF-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-LHFLX-DJF-global_ref.nc\n", + " * var_key: LHFLX\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-LHFLX-DJF-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-LHFLX-DJF-global_test.nc\n", + " * var_key: LHFLX\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-LHFLX-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-LHFLX-JJA-global_ref.nc\n", + " * var_key: LHFLX\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-LHFLX-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-LHFLX-JJA-global_test.nc\n", + " * var_key: LHFLX\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-LHFLX-MAM-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-LHFLX-MAM-global_ref.nc\n", + " * var_key: LHFLX\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-LHFLX-MAM-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-LHFLX-MAM-global_test.nc\n", + " * var_key: LHFLX\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-LHFLX-SON-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-LHFLX-SON-global_ref.nc\n", + " * var_key: LHFLX\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-LHFLX-SON-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-LHFLX-SON-global_test.nc\n", + " * var_key: LHFLX\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-LWCF-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-LWCF-ANN-global_ref.nc\n", + " * var_key: LWCF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-LWCF-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-LWCF-ANN-global_test.nc\n", + " * var_key: LWCF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-LWCF-DJF-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-LWCF-DJF-global_ref.nc\n", + " * var_key: LWCF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-LWCF-DJF-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-LWCF-DJF-global_test.nc\n", + " * var_key: LWCF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-LWCF-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-LWCF-JJA-global_ref.nc\n", + " * var_key: LWCF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-LWCF-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-LWCF-JJA-global_test.nc\n", + " * var_key: LWCF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-LWCF-MAM-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-LWCF-MAM-global_ref.nc\n", + " * var_key: LWCF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-LWCF-MAM-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-LWCF-MAM-global_test.nc\n", + " * var_key: LWCF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-LWCF-SON-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-LWCF-SON-global_ref.nc\n", + " * var_key: LWCF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-LWCF-SON-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-LWCF-SON-global_test.nc\n", + " * var_key: LWCF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-LWCFSRF-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-LWCFSRF-ANN-global_ref.nc\n", + " * var_key: LWCFSRF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-LWCFSRF-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-LWCFSRF-ANN-global_test.nc\n", + " * var_key: LWCFSRF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-LWCFSRF-DJF-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-LWCFSRF-DJF-global_ref.nc\n", + " * var_key: LWCFSRF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-LWCFSRF-DJF-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-LWCFSRF-DJF-global_test.nc\n", + " * var_key: LWCFSRF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-LWCFSRF-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-LWCFSRF-JJA-global_ref.nc\n", + " * var_key: LWCFSRF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-LWCFSRF-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-LWCFSRF-JJA-global_test.nc\n", + " * var_key: LWCFSRF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-LWCFSRF-MAM-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-LWCFSRF-MAM-global_ref.nc\n", + " * var_key: LWCFSRF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-LWCFSRF-MAM-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-LWCFSRF-MAM-global_test.nc\n", + " * var_key: LWCFSRF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-LWCFSRF-SON-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-LWCFSRF-SON-global_ref.nc\n", + " * var_key: LWCFSRF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-LWCFSRF-SON-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-LWCFSRF-SON-global_test.nc\n", + " * var_key: LWCFSRF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-NETCF-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-NETCF-ANN-global_ref.nc\n", + " * var_key: NETCF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-NETCF-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-NETCF-ANN-global_test.nc\n", + " * var_key: NETCF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-NETCF-DJF-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-NETCF-DJF-global_ref.nc\n", + " * var_key: NETCF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-NETCF-DJF-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-NETCF-DJF-global_test.nc\n", + " * var_key: NETCF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-NETCF-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-NETCF-JJA-global_ref.nc\n", + " * var_key: NETCF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-NETCF-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-NETCF-JJA-global_test.nc\n", + " * var_key: NETCF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-NETCF-MAM-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-NETCF-MAM-global_ref.nc\n", + " * var_key: NETCF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-NETCF-MAM-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-NETCF-MAM-global_test.nc\n", + " * var_key: NETCF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-NETCF-SON-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-NETCF-SON-global_ref.nc\n", + " * var_key: NETCF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-NETCF-SON-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-NETCF-SON-global_test.nc\n", + " * var_key: NETCF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-NETCF_SRF-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-NETCF_SRF-ANN-global_ref.nc\n", + " * var_key: NETCF_SRF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-NETCF_SRF-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-NETCF_SRF-ANN-global_test.nc\n", + " * var_key: NETCF_SRF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-NETCF_SRF-DJF-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-NETCF_SRF-DJF-global_ref.nc\n", + " * var_key: NETCF_SRF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-NETCF_SRF-DJF-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-NETCF_SRF-DJF-global_test.nc\n", + " * var_key: NETCF_SRF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-NETCF_SRF-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-NETCF_SRF-JJA-global_ref.nc\n", + " * var_key: NETCF_SRF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-NETCF_SRF-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-NETCF_SRF-JJA-global_test.nc\n", + " * var_key: NETCF_SRF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-NETCF_SRF-MAM-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-NETCF_SRF-MAM-global_ref.nc\n", + " * var_key: NETCF_SRF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-NETCF_SRF-MAM-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-NETCF_SRF-MAM-global_test.nc\n", + " * var_key: NETCF_SRF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-NETCF_SRF-SON-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-NETCF_SRF-SON-global_ref.nc\n", + " * var_key: NETCF_SRF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-NETCF_SRF-SON-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-NETCF_SRF-SON-global_test.nc\n", + " * var_key: NETCF_SRF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-NET_FLUX_SRF-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-NET_FLUX_SRF-ANN-global_ref.nc\n", + " * var_key: NET_FLUX_SRF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-NET_FLUX_SRF-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-NET_FLUX_SRF-ANN-global_test.nc\n", + " * var_key: NET_FLUX_SRF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-NET_FLUX_SRF-DJF-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-NET_FLUX_SRF-DJF-global_ref.nc\n", + " * var_key: NET_FLUX_SRF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-NET_FLUX_SRF-DJF-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-NET_FLUX_SRF-DJF-global_test.nc\n", + " * var_key: NET_FLUX_SRF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-NET_FLUX_SRF-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-NET_FLUX_SRF-JJA-global_ref.nc\n", + " * var_key: NET_FLUX_SRF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-NET_FLUX_SRF-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-NET_FLUX_SRF-JJA-global_test.nc\n", + " * var_key: NET_FLUX_SRF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-NET_FLUX_SRF-MAM-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-NET_FLUX_SRF-MAM-global_ref.nc\n", + " * var_key: NET_FLUX_SRF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-NET_FLUX_SRF-MAM-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-NET_FLUX_SRF-MAM-global_test.nc\n", + " * var_key: NET_FLUX_SRF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-NET_FLUX_SRF-SON-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-NET_FLUX_SRF-SON-global_ref.nc\n", + " * var_key: NET_FLUX_SRF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-NET_FLUX_SRF-SON-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-NET_FLUX_SRF-SON-global_test.nc\n", + " * var_key: NET_FLUX_SRF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-OMEGA-200-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-OMEGA-200-ANN-global_ref.nc\n", + " * var_key: OMEGA\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-OMEGA-200-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-OMEGA-200-ANN-global_test.nc\n", + " * var_key: OMEGA\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-OMEGA-200-DJF-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-OMEGA-200-DJF-global_ref.nc\n", + " * var_key: OMEGA\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-OMEGA-200-DJF-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-OMEGA-200-DJF-global_test.nc\n", + " * var_key: OMEGA\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-OMEGA-200-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-OMEGA-200-JJA-global_ref.nc\n", + " * var_key: OMEGA\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-OMEGA-200-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-OMEGA-200-JJA-global_test.nc\n", + " * var_key: OMEGA\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-OMEGA-200-MAM-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-OMEGA-200-MAM-global_ref.nc\n", + " * var_key: OMEGA\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-OMEGA-200-MAM-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-OMEGA-200-MAM-global_test.nc\n", + " * var_key: OMEGA\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-OMEGA-200-SON-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-OMEGA-200-SON-global_ref.nc\n", + " * var_key: OMEGA\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-OMEGA-200-SON-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-OMEGA-200-SON-global_test.nc\n", + " * var_key: OMEGA\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-OMEGA-500-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-OMEGA-500-ANN-global_ref.nc\n", + " * var_key: OMEGA\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-OMEGA-500-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-OMEGA-500-ANN-global_test.nc\n", + " * var_key: OMEGA\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-OMEGA-500-DJF-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-OMEGA-500-DJF-global_ref.nc\n", + " * var_key: OMEGA\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-OMEGA-500-DJF-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-OMEGA-500-DJF-global_test.nc\n", + " * var_key: OMEGA\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-OMEGA-500-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-OMEGA-500-JJA-global_ref.nc\n", + " * var_key: OMEGA\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-OMEGA-500-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-OMEGA-500-JJA-global_test.nc\n", + " * var_key: OMEGA\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-OMEGA-500-MAM-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-OMEGA-500-MAM-global_ref.nc\n", + " * var_key: OMEGA\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-OMEGA-500-MAM-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-OMEGA-500-MAM-global_test.nc\n", + " * var_key: OMEGA\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-OMEGA-500-SON-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-OMEGA-500-SON-global_ref.nc\n", + " * var_key: OMEGA\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-OMEGA-500-SON-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-OMEGA-500-SON-global_test.nc\n", + " * var_key: OMEGA\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-OMEGA-850-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-OMEGA-850-ANN-global_ref.nc\n", + " * var_key: OMEGA\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-OMEGA-850-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-OMEGA-850-ANN-global_test.nc\n", + " * var_key: OMEGA\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-OMEGA-850-DJF-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-OMEGA-850-DJF-global_ref.nc\n", + " * var_key: OMEGA\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-OMEGA-850-DJF-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-OMEGA-850-DJF-global_test.nc\n", + " * var_key: OMEGA\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-OMEGA-850-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-OMEGA-850-JJA-global_ref.nc\n", + " * var_key: OMEGA\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-OMEGA-850-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-OMEGA-850-JJA-global_test.nc\n", + " * var_key: OMEGA\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-OMEGA-850-MAM-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-OMEGA-850-MAM-global_ref.nc\n", + " * var_key: OMEGA\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-OMEGA-850-MAM-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-OMEGA-850-MAM-global_test.nc\n", + " * var_key: OMEGA\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-OMEGA-850-SON-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-OMEGA-850-SON-global_ref.nc\n", + " * var_key: OMEGA\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-OMEGA-850-SON-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-OMEGA-850-SON-global_test.nc\n", + " * var_key: OMEGA\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-PRECT-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-PRECT-ANN-global_ref.nc\n", + " * var_key: PRECT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-PRECT-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-PRECT-ANN-global_test.nc\n", + " * var_key: PRECT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-PRECT-DJF-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-PRECT-DJF-global_ref.nc\n", + " * var_key: PRECT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-PRECT-DJF-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-PRECT-DJF-global_test.nc\n", + " * var_key: PRECT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-PRECT-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-PRECT-JJA-global_ref.nc\n", + " * var_key: PRECT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-PRECT-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-PRECT-JJA-global_test.nc\n", + " * var_key: PRECT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-PRECT-MAM-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-PRECT-MAM-global_ref.nc\n", + " * var_key: PRECT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-PRECT-MAM-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-PRECT-MAM-global_test.nc\n", + " * var_key: PRECT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-PRECT-SON-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-PRECT-SON-global_ref.nc\n", + " * var_key: PRECT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-PRECT-SON-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-PRECT-SON-global_test.nc\n", + " * var_key: PRECT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-PSL-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-PSL-ANN-global_ref.nc\n", + " * var_key: PSL\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-PSL-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-PSL-ANN-global_test.nc\n", + " * var_key: PSL\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-PSL-DJF-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-PSL-DJF-global_ref.nc\n", + " * var_key: PSL\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-PSL-DJF-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-PSL-DJF-global_test.nc\n", + " * var_key: PSL\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-PSL-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-PSL-JJA-global_ref.nc\n", + " * var_key: PSL\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-PSL-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-PSL-JJA-global_test.nc\n", + " * var_key: PSL\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-PSL-MAM-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-PSL-MAM-global_ref.nc\n", + " * var_key: PSL\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-PSL-MAM-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-PSL-MAM-global_test.nc\n", + " * var_key: PSL\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-PSL-SON-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-PSL-SON-global_ref.nc\n", + " * var_key: PSL\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-PSL-SON-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-PSL-SON-global_test.nc\n", + " * var_key: PSL\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-QREFHT-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-QREFHT-ANN-global_ref.nc\n", + " * var_key: QREFHT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-QREFHT-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-QREFHT-ANN-global_test.nc\n", + " * var_key: QREFHT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-QREFHT-DJF-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-QREFHT-DJF-global_ref.nc\n", + " * var_key: QREFHT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-QREFHT-DJF-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-QREFHT-DJF-global_test.nc\n", + " * var_key: QREFHT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-QREFHT-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-QREFHT-JJA-global_ref.nc\n", + " * var_key: QREFHT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-QREFHT-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-QREFHT-JJA-global_test.nc\n", + " * var_key: QREFHT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-QREFHT-MAM-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-QREFHT-MAM-global_ref.nc\n", + " * var_key: QREFHT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-QREFHT-MAM-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-QREFHT-MAM-global_test.nc\n", + " * var_key: QREFHT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-QREFHT-SON-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-QREFHT-SON-global_ref.nc\n", + " * var_key: QREFHT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-QREFHT-SON-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-QREFHT-SON-global_test.nc\n", + " * var_key: QREFHT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-RESTOM-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-RESTOM-ANN-global_ref.nc\n", + " * var_key: RESTOM\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-RESTOM-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-RESTOM-ANN-global_test.nc\n", + " * var_key: RESTOM\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-RESTOM-DJF-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-RESTOM-DJF-global_ref.nc\n", + " * var_key: RESTOM\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-RESTOM-DJF-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-RESTOM-DJF-global_test.nc\n", + " * var_key: RESTOM\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-RESTOM-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-RESTOM-JJA-global_ref.nc\n", + " * var_key: RESTOM\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-RESTOM-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-RESTOM-JJA-global_test.nc\n", + " * var_key: RESTOM\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-RESTOM-MAM-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-RESTOM-MAM-global_ref.nc\n", + " * var_key: RESTOM\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-RESTOM-MAM-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-RESTOM-MAM-global_test.nc\n", + " * var_key: RESTOM\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-RESTOM-SON-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-RESTOM-SON-global_ref.nc\n", + " * var_key: RESTOM\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-RESTOM-SON-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-RESTOM-SON-global_test.nc\n", + " * var_key: RESTOM\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-SHFLX-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-SHFLX-ANN-global_ref.nc\n", + " * var_key: SHFLX\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-SHFLX-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-SHFLX-ANN-global_test.nc\n", + " * var_key: SHFLX\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-SHFLX-DJF-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-SHFLX-DJF-global_ref.nc\n", + " * var_key: SHFLX\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-SHFLX-DJF-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-SHFLX-DJF-global_test.nc\n", + " * var_key: SHFLX\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-SHFLX-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-SHFLX-JJA-global_ref.nc\n", + " * var_key: SHFLX\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-SHFLX-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-SHFLX-JJA-global_test.nc\n", + " * var_key: SHFLX\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-SHFLX-MAM-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-SHFLX-MAM-global_ref.nc\n", + " * var_key: SHFLX\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-SHFLX-MAM-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-SHFLX-MAM-global_test.nc\n", + " * var_key: SHFLX\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-SHFLX-SON-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-SHFLX-SON-global_ref.nc\n", + " * var_key: SHFLX\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-SHFLX-SON-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-SHFLX-SON-global_test.nc\n", + " * var_key: SHFLX\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-SOLIN-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-SOLIN-ANN-global_ref.nc\n", + " * var_key: SOLIN\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-SOLIN-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-SOLIN-ANN-global_test.nc\n", + " * var_key: SOLIN\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-SOLIN-DJF-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-SOLIN-DJF-global_ref.nc\n", + " * var_key: SOLIN\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-SOLIN-DJF-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-SOLIN-DJF-global_test.nc\n", + " * var_key: SOLIN\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-SOLIN-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-SOLIN-JJA-global_ref.nc\n", + " * var_key: SOLIN\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-SOLIN-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-SOLIN-JJA-global_test.nc\n", + " * var_key: SOLIN\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-SOLIN-MAM-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-SOLIN-MAM-global_ref.nc\n", + " * var_key: SOLIN\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-SOLIN-MAM-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-SOLIN-MAM-global_test.nc\n", + " * var_key: SOLIN\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-SOLIN-SON-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-SOLIN-SON-global_ref.nc\n", + " * var_key: SOLIN\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-SOLIN-SON-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-SOLIN-SON-global_test.nc\n", + " * var_key: SOLIN\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-SST-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-SST-ANN-global_ref.nc\n", + " * var_key: SST\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-SST-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-SST-ANN-global_test.nc\n", + " * var_key: SST\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-SST-DJF-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-SST-DJF-global_ref.nc\n", + " * var_key: SST\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-SST-DJF-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-SST-DJF-global_test.nc\n", + " * var_key: SST\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-SST-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-SST-JJA-global_ref.nc\n", + " * var_key: SST\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-SST-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-SST-JJA-global_test.nc\n", + " * var_key: SST\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-SST-MAM-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-SST-MAM-global_ref.nc\n", + " * var_key: SST\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-SST-MAM-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-SST-MAM-global_test.nc\n", + " * var_key: SST\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-SST-SON-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-SST-SON-global_ref.nc\n", + " * var_key: SST\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-SST-SON-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-SST-SON-global_test.nc\n", + " * var_key: SST\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-SWCF-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-SWCF-ANN-global_ref.nc\n", + " * var_key: SWCF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-SWCF-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-SWCF-ANN-global_test.nc\n", + " * var_key: SWCF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-SWCF-DJF-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-SWCF-DJF-global_ref.nc\n", + " * var_key: SWCF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-SWCF-DJF-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-SWCF-DJF-global_test.nc\n", + " * var_key: SWCF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-SWCF-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-SWCF-JJA-global_ref.nc\n", + " * var_key: SWCF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-SWCF-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-SWCF-JJA-global_test.nc\n", + " * var_key: SWCF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-SWCF-MAM-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-SWCF-MAM-global_ref.nc\n", + " * var_key: SWCF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-SWCF-MAM-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-SWCF-MAM-global_test.nc\n", + " * var_key: SWCF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-SWCF-SON-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-SWCF-SON-global_ref.nc\n", + " * var_key: SWCF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-SWCF-SON-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-SWCF-SON-global_test.nc\n", + " * var_key: SWCF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-SWCFSRF-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-SWCFSRF-ANN-global_ref.nc\n", + " * var_key: SWCFSRF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-SWCFSRF-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-SWCFSRF-ANN-global_test.nc\n", + " * var_key: SWCFSRF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-SWCFSRF-DJF-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-SWCFSRF-DJF-global_ref.nc\n", + " * var_key: SWCFSRF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-SWCFSRF-DJF-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-SWCFSRF-DJF-global_test.nc\n", + " * var_key: SWCFSRF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-SWCFSRF-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-SWCFSRF-JJA-global_ref.nc\n", + " * var_key: SWCFSRF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-SWCFSRF-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-SWCFSRF-JJA-global_test.nc\n", + " * var_key: SWCFSRF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-SWCFSRF-MAM-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-SWCFSRF-MAM-global_ref.nc\n", + " * var_key: SWCFSRF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-SWCFSRF-MAM-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-SWCFSRF-MAM-global_test.nc\n", + " * var_key: SWCFSRF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-SWCFSRF-SON-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-SWCFSRF-SON-global_ref.nc\n", + " * var_key: SWCFSRF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-SWCFSRF-SON-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-SWCFSRF-SON-global_test.nc\n", + " * var_key: SWCFSRF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-T-200-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-T-200-ANN-global_ref.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-T-200-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-T-200-ANN-global_test.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-T-200-DJF-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-T-200-DJF-global_ref.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-T-200-DJF-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-T-200-DJF-global_test.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-T-200-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-T-200-JJA-global_ref.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-T-200-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-T-200-JJA-global_test.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-T-200-MAM-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-T-200-MAM-global_ref.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-T-200-MAM-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-T-200-MAM-global_test.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-T-200-SON-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-T-200-SON-global_ref.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-T-200-SON-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-T-200-SON-global_test.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-T-850-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-T-850-ANN-global_ref.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-T-850-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-T-850-ANN-global_test.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-T-850-DJF-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-T-850-DJF-global_ref.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-T-850-DJF-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-T-850-DJF-global_test.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-T-850-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-T-850-JJA-global_ref.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-T-850-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-T-850-JJA-global_test.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-T-850-MAM-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-T-850-MAM-global_ref.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-T-850-MAM-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-T-850-MAM-global_test.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-T-850-SON-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-T-850-SON-global_ref.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-T-850-SON-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-T-850-SON-global_test.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-TAUXY-ANN-ocean_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-TAUXY-ANN-ocean_ref.nc\n", + " * var_key: TAUXY\n", + " \n", + "Not equal to tolerance rtol=1e-05, atol=0\n", + "\n", + "x and y nan location mismatch:\n", + " x: array([[nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],...\n", + " y: array([[nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],...\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-TAUXY-ANN-ocean_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-TAUXY-ANN-ocean_test.nc\n", + " * var_key: TAUXY\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-TAUXY-DJF-ocean_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-TAUXY-DJF-ocean_ref.nc\n", + " * var_key: TAUXY\n", + " \n", + "Not equal to tolerance rtol=1e-05, atol=0\n", + "\n", + "x and y nan location mismatch:\n", + " x: array([[nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],...\n", + " y: array([[nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],...\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-TAUXY-DJF-ocean_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-TAUXY-DJF-ocean_test.nc\n", + " * var_key: TAUXY\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-TAUXY-JJA-ocean_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-TAUXY-JJA-ocean_ref.nc\n", + " * var_key: TAUXY\n", + " \n", + "Not equal to tolerance rtol=1e-05, atol=0\n", + "\n", + "x and y nan location mismatch:\n", + " x: array([[nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],...\n", + " y: array([[nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],...\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-TAUXY-JJA-ocean_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-TAUXY-JJA-ocean_test.nc\n", + " * var_key: TAUXY\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-TAUXY-MAM-ocean_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-TAUXY-MAM-ocean_ref.nc\n", + " * var_key: TAUXY\n", + " \n", + "Not equal to tolerance rtol=1e-05, atol=0\n", + "\n", + "x and y nan location mismatch:\n", + " x: array([[nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],...\n", + " y: array([[nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],...\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-TAUXY-MAM-ocean_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-TAUXY-MAM-ocean_test.nc\n", + " * var_key: TAUXY\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-TAUXY-SON-ocean_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-TAUXY-SON-ocean_ref.nc\n", + " * var_key: TAUXY\n", + " \n", + "Not equal to tolerance rtol=1e-05, atol=0\n", + "\n", + "x and y nan location mismatch:\n", + " x: array([[nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],...\n", + " y: array([[nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],...\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-TAUXY-SON-ocean_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-TAUXY-SON-ocean_test.nc\n", + " * var_key: TAUXY\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-TGCLDLWP_OCN-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-TGCLDLWP_OCN-ANN-global_ref.nc\n", + " * var_key: TGCLDLWP_OCN\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-TGCLDLWP_OCN-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-TGCLDLWP_OCN-ANN-global_test.nc\n", + " * var_key: TGCLDLWP_OCN\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-TGCLDLWP_OCN-DJF-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-TGCLDLWP_OCN-DJF-global_ref.nc\n", + " * var_key: TGCLDLWP_OCN\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-TGCLDLWP_OCN-DJF-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-TGCLDLWP_OCN-DJF-global_test.nc\n", + " * var_key: TGCLDLWP_OCN\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-TGCLDLWP_OCN-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-TGCLDLWP_OCN-JJA-global_ref.nc\n", + " * var_key: TGCLDLWP_OCN\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-TGCLDLWP_OCN-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-TGCLDLWP_OCN-JJA-global_test.nc\n", + " * var_key: TGCLDLWP_OCN\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-TGCLDLWP_OCN-MAM-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-TGCLDLWP_OCN-MAM-global_ref.nc\n", + " * var_key: TGCLDLWP_OCN\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-TGCLDLWP_OCN-MAM-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-TGCLDLWP_OCN-MAM-global_test.nc\n", + " * var_key: TGCLDLWP_OCN\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-TGCLDLWP_OCN-SON-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-TGCLDLWP_OCN-SON-global_ref.nc\n", + " * var_key: TGCLDLWP_OCN\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-TGCLDLWP_OCN-SON-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-TGCLDLWP_OCN-SON-global_test.nc\n", + " * var_key: TGCLDLWP_OCN\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-TMQ-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-TMQ-ANN-global_ref.nc\n", + " * var_key: TMQ\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-TMQ-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-TMQ-ANN-global_test.nc\n", + " * var_key: TMQ\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-TMQ-DJF-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-TMQ-DJF-global_ref.nc\n", + " * var_key: TMQ\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-TMQ-DJF-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-TMQ-DJF-global_test.nc\n", + " * var_key: TMQ\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-TMQ-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-TMQ-JJA-global_ref.nc\n", + " * var_key: TMQ\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-TMQ-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-TMQ-JJA-global_test.nc\n", + " * var_key: TMQ\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-TMQ-MAM-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-TMQ-MAM-global_ref.nc\n", + " * var_key: TMQ\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-TMQ-MAM-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-TMQ-MAM-global_test.nc\n", + " * var_key: TMQ\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-TMQ-SON-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-TMQ-SON-global_ref.nc\n", + " * var_key: TMQ\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-TMQ-SON-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-TMQ-SON-global_test.nc\n", + " * var_key: TMQ\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-TREFHT-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-TREFHT-ANN-global_ref.nc\n", + " * var_key: TREFHT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-TREFHT-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-TREFHT-ANN-global_test.nc\n", + " * var_key: TREFHT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-TREFHT-ANN-land_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-TREFHT-ANN-land_ref.nc\n", + " * var_key: TREFHT\n", + " \n", + "Not equal to tolerance rtol=1e-05, atol=0\n", + "\n", + "x and y nan location mismatch:\n", + " x: array([[-50.44272 , -50.44278 , -50.442932, ..., -50.443207, -50.442932,\n", + " nan],\n", + " [-50.32776 , -50.32776 , -50.32776 , ..., -50.32776 , -50.32776 ,...\n", + " y: array([[-50.44272 , -50.44278 , -50.442932, ..., -50.443207, -50.442932,\n", + " -50.44278 ],\n", + " [-50.32776 , -50.32776 , -50.32776 , ..., -50.32776 , -50.32776 ,...\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-TREFHT-ANN-land_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-TREFHT-ANN-land_test.nc\n", + " * var_key: TREFHT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-TREFHT-DJF-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-TREFHT-DJF-global_ref.nc\n", + " * var_key: TREFHT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-TREFHT-DJF-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-TREFHT-DJF-global_test.nc\n", + " * var_key: TREFHT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-TREFHT-DJF-land_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-TREFHT-DJF-land_ref.nc\n", + " * var_key: TREFHT\n", + " \n", + "Not equal to tolerance rtol=1e-05, atol=0\n", + "\n", + "x and y nan location mismatch:\n", + " x: array([[-34.36612 , -34.36615 , -34.36624 , ..., -34.36641 , -34.36624 ,\n", + " nan],\n", + " [-34.299225, -34.299225, -34.299225, ..., -34.299225, -34.299225,...\n", + " y: array([[-34.36612 , -34.36615 , -34.36624 , ..., -34.36641 , -34.36624 ,\n", + " -34.36615 ],\n", + " [-34.299225, -34.299225, -34.299225, ..., -34.299225, -34.299225,...\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-TREFHT-DJF-land_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-TREFHT-DJF-land_test.nc\n", + " * var_key: TREFHT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-TREFHT-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-TREFHT-JJA-global_ref.nc\n", + " * var_key: TREFHT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-TREFHT-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-TREFHT-JJA-global_test.nc\n", + " * var_key: TREFHT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-TREFHT-JJA-land_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-TREFHT-JJA-land_ref.nc\n", + " * var_key: TREFHT\n", + " \n", + "Not equal to tolerance rtol=1e-05, atol=0\n", + "\n", + "x and y nan location mismatch:\n", + " x: array([[-60.02289 , -60.02295 , -60.023148, ..., -60.023468, -60.023148,\n", + " nan],\n", + " [-59.887238, -59.887238, -59.887238, ..., -59.887238, -59.887238,...\n", + " y: array([[-60.02289 , -60.02295 , -60.023148, ..., -60.023468, -60.023148,\n", + " -60.02295 ],\n", + " [-59.887238, -59.887238, -59.887238, ..., -59.887238, -59.887238,...\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-TREFHT-JJA-land_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-TREFHT-JJA-land_test.nc\n", + " * var_key: TREFHT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-TREFHT-MAM-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-TREFHT-MAM-global_ref.nc\n", + " * var_key: TREFHT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-TREFHT-MAM-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-TREFHT-MAM-global_test.nc\n", + " * var_key: TREFHT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-TREFHT-MAM-land_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-TREFHT-MAM-land_ref.nc\n", + " * var_key: TREFHT\n", + " \n", + "Not equal to tolerance rtol=1e-05, atol=0\n", + "\n", + "x and y nan location mismatch:\n", + " x: array([[-56.276596, -56.276672, -56.27687 , ..., -56.27722 , -56.27687 ,\n", + " nan],\n", + " [-56.13353 , -56.13353 , -56.13353 , ..., -56.13353 , -56.13353 ,...\n", + " y: array([[-56.276596, -56.276672, -56.27687 , ..., -56.27722 , -56.27687 ,\n", + " -56.276672],\n", + " [-56.13353 , -56.13353 , -56.13353 , ..., -56.13353 , -56.13353 ,...\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-TREFHT-MAM-land_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-TREFHT-MAM-land_test.nc\n", + " * var_key: TREFHT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-TREFHT-SON-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-TREFHT-SON-global_ref.nc\n", + " * var_key: TREFHT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-TREFHT-SON-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-TREFHT-SON-global_test.nc\n", + " * var_key: TREFHT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-TREFHT-SON-land_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-TREFHT-SON-land_ref.nc\n", + " * var_key: TREFHT\n", + " \n", + "Not equal to tolerance rtol=1e-05, atol=0\n", + "\n", + "x and y nan location mismatch:\n", + " x: array([[-50.759216, -50.759277, -50.75943 , ..., -50.759705, -50.75943 ,\n", + " nan],\n", + " [-50.64604 , -50.64604 , -50.64604 , ..., -50.64604 , -50.64604 ,...\n", + " y: array([[-50.759216, -50.759277, -50.75943 , ..., -50.759705, -50.75943 ,\n", + " -50.759277],\n", + " [-50.64604 , -50.64604 , -50.64604 , ..., -50.64604 , -50.64604 ,...\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-TREFHT-SON-land_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-TREFHT-SON-land_test.nc\n", + " * var_key: TREFHT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-U-200-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-U-200-ANN-global_ref.nc\n", + " * var_key: U\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-U-200-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-U-200-ANN-global_test.nc\n", + " * var_key: U\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-U-200-DJF-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-U-200-DJF-global_ref.nc\n", + " * var_key: U\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-U-200-DJF-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-U-200-DJF-global_test.nc\n", + " * var_key: U\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-U-200-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-U-200-JJA-global_ref.nc\n", + " * var_key: U\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-U-200-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-U-200-JJA-global_test.nc\n", + " * var_key: U\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-U-200-MAM-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-U-200-MAM-global_ref.nc\n", + " * var_key: U\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-U-200-MAM-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-U-200-MAM-global_test.nc\n", + " * var_key: U\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-U-200-SON-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-U-200-SON-global_ref.nc\n", + " * var_key: U\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-U-200-SON-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-U-200-SON-global_test.nc\n", + " * var_key: U\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-U-850-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-U-850-ANN-global_ref.nc\n", + " * var_key: U\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-U-850-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-U-850-ANN-global_test.nc\n", + " * var_key: U\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-U-850-DJF-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-U-850-DJF-global_ref.nc\n", + " * var_key: U\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-U-850-DJF-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-U-850-DJF-global_test.nc\n", + " * var_key: U\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-U-850-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-U-850-JJA-global_ref.nc\n", + " * var_key: U\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-U-850-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-U-850-JJA-global_test.nc\n", + " * var_key: U\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-U-850-MAM-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-U-850-MAM-global_ref.nc\n", + " * var_key: U\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-U-850-MAM-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-U-850-MAM-global_test.nc\n", + " * var_key: U\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-U-850-SON-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-U-850-SON-global_ref.nc\n", + " * var_key: U\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-U-850-SON-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-U-850-SON-global_test.nc\n", + " * var_key: U\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-U10-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-U10-ANN-global_ref.nc\n", + " * var_key: U10\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-U10-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-U10-ANN-global_test.nc\n", + " * var_key: U10\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-U10-DJF-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-U10-DJF-global_ref.nc\n", + " * var_key: U10\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-U10-DJF-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-U10-DJF-global_test.nc\n", + " * var_key: U10\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-U10-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-U10-JJA-global_ref.nc\n", + " * var_key: U10\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-U10-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-U10-JJA-global_test.nc\n", + " * var_key: U10\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-U10-MAM-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-U10-MAM-global_ref.nc\n", + " * var_key: U10\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-U10-MAM-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-U10-MAM-global_test.nc\n", + " * var_key: U10\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-U10-SON-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-U10-SON-global_ref.nc\n", + " * var_key: U10\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-U10-SON-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-U10-SON-global_test.nc\n", + " * var_key: U10\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-Z3-500-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-Z3-500-ANN-global_ref.nc\n", + " * var_key: Z3\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-Z3-500-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-Z3-500-ANN-global_test.nc\n", + " * var_key: Z3\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-Z3-500-DJF-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-Z3-500-DJF-global_ref.nc\n", + " * var_key: Z3\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-Z3-500-DJF-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-Z3-500-DJF-global_test.nc\n", + " * var_key: Z3\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-Z3-500-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-Z3-500-JJA-global_ref.nc\n", + " * var_key: Z3\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-Z3-500-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-Z3-500-JJA-global_test.nc\n", + " * var_key: Z3\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-Z3-500-MAM-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-Z3-500-MAM-global_ref.nc\n", + " * var_key: Z3\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-Z3-500-MAM-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-Z3-500-MAM-global_test.nc\n", + " * var_key: Z3\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-Z3-500-SON-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-Z3-500-SON-global_ref.nc\n", + " * var_key: Z3\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-Z3-500-SON-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-Z3-500-SON-global_test.nc\n", + " * var_key: Z3\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/AOD_550/MACv2-AODDUST-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/AOD_550/MACv2-AODDUST-ANN-global_test.nc\n", + " * var_key: AODDUST\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/AOD_550/MACv2-AODDUST-DJF-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/AOD_550/MACv2-AODDUST-DJF-global_test.nc\n", + " * var_key: AODDUST\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/AOD_550/MACv2-AODDUST-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/AOD_550/MACv2-AODDUST-JJA-global_test.nc\n", + " * var_key: AODDUST\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/AOD_550/MACv2-AODDUST-MAM-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/AOD_550/MACv2-AODDUST-MAM-global_test.nc\n", + " * var_key: AODDUST\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/AOD_550/MACv2-AODDUST-SON-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/AOD_550/MACv2-AODDUST-SON-global_test.nc\n", + " * var_key: AODDUST\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/AOD_550/MACv2-AODVIS-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/AOD_550/MACv2-AODVIS-ANN-global_ref.nc\n", + " * var_key: AODVIS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/AOD_550/MACv2-AODVIS-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/AOD_550/MACv2-AODVIS-ANN-global_test.nc\n", + " * var_key: AODVIS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/AOD_550/MACv2-AODVIS-DJF-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/AOD_550/MACv2-AODVIS-DJF-global_ref.nc\n", + " * var_key: AODVIS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/AOD_550/MACv2-AODVIS-DJF-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/AOD_550/MACv2-AODVIS-DJF-global_test.nc\n", + " * var_key: AODVIS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/AOD_550/MACv2-AODVIS-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/AOD_550/MACv2-AODVIS-JJA-global_ref.nc\n", + " * var_key: AODVIS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/AOD_550/MACv2-AODVIS-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/AOD_550/MACv2-AODVIS-JJA-global_test.nc\n", + " * var_key: AODVIS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/AOD_550/MACv2-AODVIS-MAM-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/AOD_550/MACv2-AODVIS-MAM-global_ref.nc\n", + " * var_key: AODVIS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/AOD_550/MACv2-AODVIS-MAM-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/AOD_550/MACv2-AODVIS-MAM-global_test.nc\n", + " * var_key: AODVIS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/AOD_550/MACv2-AODVIS-SON-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/AOD_550/MACv2-AODVIS-SON-global_ref.nc\n", + " * var_key: AODVIS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/AOD_550/MACv2-AODVIS-SON-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/AOD_550/MACv2-AODVIS-SON-global_test.nc\n", + " * var_key: AODVIS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/AOD_550/MERRA2_Aerosols-AODVIS-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/AOD_550/MERRA2_Aerosols-AODVIS-ANN-global_ref.nc\n", + " * var_key: AODVIS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/AOD_550/MERRA2_Aerosols-AODVIS-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/AOD_550/MERRA2_Aerosols-AODVIS-ANN-global_test.nc\n", + " * var_key: AODVIS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/AOD_550/MERRA2_Aerosols-AODVIS-DJF-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/AOD_550/MERRA2_Aerosols-AODVIS-DJF-global_ref.nc\n", + " * var_key: AODVIS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/AOD_550/MERRA2_Aerosols-AODVIS-DJF-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/AOD_550/MERRA2_Aerosols-AODVIS-DJF-global_test.nc\n", + " * var_key: AODVIS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/AOD_550/MERRA2_Aerosols-AODVIS-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/AOD_550/MERRA2_Aerosols-AODVIS-JJA-global_ref.nc\n", + " * var_key: AODVIS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/AOD_550/MERRA2_Aerosols-AODVIS-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/AOD_550/MERRA2_Aerosols-AODVIS-JJA-global_test.nc\n", + " * var_key: AODVIS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/AOD_550/MERRA2_Aerosols-AODVIS-MAM-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/AOD_550/MERRA2_Aerosols-AODVIS-MAM-global_ref.nc\n", + " * var_key: AODVIS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/AOD_550/MERRA2_Aerosols-AODVIS-MAM-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/AOD_550/MERRA2_Aerosols-AODVIS-MAM-global_test.nc\n", + " * var_key: AODVIS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/AOD_550/MERRA2_Aerosols-AODVIS-SON-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/AOD_550/MERRA2_Aerosols-AODVIS-SON-global_ref.nc\n", + " * var_key: AODVIS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/AOD_550/MERRA2_Aerosols-AODVIS-SON-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/AOD_550/MERRA2_Aerosols-AODVIS-SON-global_test.nc\n", + " * var_key: AODVIS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-ALBEDO-ANN-75S75N_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-ALBEDO-ANN-75S75N_ref.nc\n", + " * var_key: ALBEDO\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-ALBEDO-ANN-75S75N_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-ALBEDO-ANN-75S75N_test.nc\n", + " * var_key: ALBEDO\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-ALBEDO-DJF-75S75N_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-ALBEDO-DJF-75S75N_ref.nc\n", + " * var_key: ALBEDO\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-ALBEDO-DJF-75S75N_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-ALBEDO-DJF-75S75N_test.nc\n", + " * var_key: ALBEDO\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-ALBEDO-JJA-75S75N_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-ALBEDO-JJA-75S75N_ref.nc\n", + " * var_key: ALBEDO\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-ALBEDO-JJA-75S75N_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-ALBEDO-JJA-75S75N_test.nc\n", + " * var_key: ALBEDO\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-ALBEDO-MAM-75S75N_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-ALBEDO-MAM-75S75N_ref.nc\n", + " * var_key: ALBEDO\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-ALBEDO-MAM-75S75N_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-ALBEDO-MAM-75S75N_test.nc\n", + " * var_key: ALBEDO\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-ALBEDO-SON-75S75N_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-ALBEDO-SON-75S75N_ref.nc\n", + " * var_key: ALBEDO\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-ALBEDO-SON-75S75N_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-ALBEDO-SON-75S75N_test.nc\n", + " * var_key: ALBEDO\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-ALBEDOC-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-ALBEDOC-ANN-global_ref.nc\n", + " * var_key: ALBEDOC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-ALBEDOC-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-ALBEDOC-ANN-global_test.nc\n", + " * var_key: ALBEDOC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-ALBEDOC-DJF-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-ALBEDOC-DJF-global_ref.nc\n", + " * var_key: ALBEDOC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-ALBEDOC-DJF-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-ALBEDOC-DJF-global_test.nc\n", + " * var_key: ALBEDOC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-ALBEDOC-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-ALBEDOC-JJA-global_ref.nc\n", + " * var_key: ALBEDOC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-ALBEDOC-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-ALBEDOC-JJA-global_test.nc\n", + " * var_key: ALBEDOC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-ALBEDOC-MAM-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-ALBEDOC-MAM-global_ref.nc\n", + " * var_key: ALBEDOC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-ALBEDOC-MAM-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-ALBEDOC-MAM-global_test.nc\n", + " * var_key: ALBEDOC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-ALBEDOC-SON-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-ALBEDOC-SON-global_ref.nc\n", + " * var_key: ALBEDOC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-ALBEDOC-SON-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-ALBEDOC-SON-global_test.nc\n", + " * var_key: ALBEDOC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FLUT-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FLUT-ANN-global_ref.nc\n", + " * var_key: FLUT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FLUT-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FLUT-ANN-global_test.nc\n", + " * var_key: FLUT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FLUT-DJF-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FLUT-DJF-global_ref.nc\n", + " * var_key: FLUT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FLUT-DJF-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FLUT-DJF-global_test.nc\n", + " * var_key: FLUT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FLUT-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FLUT-JJA-global_ref.nc\n", + " * var_key: FLUT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FLUT-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FLUT-JJA-global_test.nc\n", + " * var_key: FLUT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FLUT-MAM-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FLUT-MAM-global_ref.nc\n", + " * var_key: FLUT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FLUT-MAM-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FLUT-MAM-global_test.nc\n", + " * var_key: FLUT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FLUT-SON-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FLUT-SON-global_ref.nc\n", + " * var_key: FLUT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FLUT-SON-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FLUT-SON-global_test.nc\n", + " * var_key: FLUT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FLUTC-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FLUTC-ANN-global_ref.nc\n", + " * var_key: FLUTC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FLUTC-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FLUTC-ANN-global_test.nc\n", + " * var_key: FLUTC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FLUTC-DJF-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FLUTC-DJF-global_ref.nc\n", + " * var_key: FLUTC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FLUTC-DJF-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FLUTC-DJF-global_test.nc\n", + " * var_key: FLUTC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FLUTC-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FLUTC-JJA-global_ref.nc\n", + " * var_key: FLUTC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FLUTC-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FLUTC-JJA-global_test.nc\n", + " * var_key: FLUTC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FLUTC-MAM-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FLUTC-MAM-global_ref.nc\n", + " * var_key: FLUTC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FLUTC-MAM-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FLUTC-MAM-global_test.nc\n", + " * var_key: FLUTC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FLUTC-SON-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FLUTC-SON-global_ref.nc\n", + " * var_key: FLUTC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FLUTC-SON-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FLUTC-SON-global_test.nc\n", + " * var_key: FLUTC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FSNTOA-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FSNTOA-ANN-global_ref.nc\n", + " * var_key: FSNTOA\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FSNTOA-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FSNTOA-ANN-global_test.nc\n", + " * var_key: FSNTOA\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FSNTOA-DJF-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FSNTOA-DJF-global_ref.nc\n", + " * var_key: FSNTOA\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FSNTOA-DJF-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FSNTOA-DJF-global_test.nc\n", + " * var_key: FSNTOA\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FSNTOA-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FSNTOA-JJA-global_ref.nc\n", + " * var_key: FSNTOA\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FSNTOA-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FSNTOA-JJA-global_test.nc\n", + " * var_key: FSNTOA\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FSNTOA-MAM-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FSNTOA-MAM-global_ref.nc\n", + " * var_key: FSNTOA\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FSNTOA-MAM-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FSNTOA-MAM-global_test.nc\n", + " * var_key: FSNTOA\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FSNTOA-SON-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FSNTOA-SON-global_ref.nc\n", + " * var_key: FSNTOA\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FSNTOA-SON-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FSNTOA-SON-global_test.nc\n", + " * var_key: FSNTOA\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FSNTOAC-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FSNTOAC-ANN-global_ref.nc\n", + " * var_key: FSNTOAC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FSNTOAC-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FSNTOAC-ANN-global_test.nc\n", + " * var_key: FSNTOAC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FSNTOAC-DJF-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FSNTOAC-DJF-global_ref.nc\n", + " * var_key: FSNTOAC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FSNTOAC-DJF-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FSNTOAC-DJF-global_test.nc\n", + " * var_key: FSNTOAC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FSNTOAC-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FSNTOAC-JJA-global_ref.nc\n", + " * var_key: FSNTOAC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FSNTOAC-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FSNTOAC-JJA-global_test.nc\n", + " * var_key: FSNTOAC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FSNTOAC-MAM-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FSNTOAC-MAM-global_ref.nc\n", + " * var_key: FSNTOAC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FSNTOAC-MAM-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FSNTOAC-MAM-global_test.nc\n", + " * var_key: FSNTOAC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FSNTOAC-SON-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FSNTOAC-SON-global_ref.nc\n", + " * var_key: FSNTOAC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FSNTOAC-SON-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FSNTOAC-SON-global_test.nc\n", + " * var_key: FSNTOAC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-LWCF-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-LWCF-ANN-global_ref.nc\n", + " * var_key: LWCF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-LWCF-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-LWCF-ANN-global_test.nc\n", + " * var_key: LWCF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-LWCF-DJF-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-LWCF-DJF-global_ref.nc\n", + " * var_key: LWCF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-LWCF-DJF-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-LWCF-DJF-global_test.nc\n", + " * var_key: LWCF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-LWCF-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-LWCF-JJA-global_ref.nc\n", + " * var_key: LWCF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-LWCF-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-LWCF-JJA-global_test.nc\n", + " * var_key: LWCF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-LWCF-MAM-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-LWCF-MAM-global_ref.nc\n", + " * var_key: LWCF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-LWCF-MAM-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-LWCF-MAM-global_test.nc\n", + " * var_key: LWCF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-LWCF-SON-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-LWCF-SON-global_ref.nc\n", + " * var_key: LWCF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-LWCF-SON-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-LWCF-SON-global_test.nc\n", + " * var_key: LWCF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-NETCF-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-NETCF-ANN-global_ref.nc\n", + " * var_key: NETCF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-NETCF-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-NETCF-ANN-global_test.nc\n", + " * var_key: NETCF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-NETCF-DJF-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-NETCF-DJF-global_ref.nc\n", + " * var_key: NETCF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-NETCF-DJF-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-NETCF-DJF-global_test.nc\n", + " * var_key: NETCF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-NETCF-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-NETCF-JJA-global_ref.nc\n", + " * var_key: NETCF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-NETCF-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-NETCF-JJA-global_test.nc\n", + " * var_key: NETCF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-NETCF-MAM-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-NETCF-MAM-global_ref.nc\n", + " * var_key: NETCF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-NETCF-MAM-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-NETCF-MAM-global_test.nc\n", + " * var_key: NETCF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-NETCF-SON-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-NETCF-SON-global_ref.nc\n", + " * var_key: NETCF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-NETCF-SON-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-NETCF-SON-global_test.nc\n", + " * var_key: NETCF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-RESTOM-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-RESTOM-ANN-global_ref.nc\n", + " * var_key: RESTOM\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-RESTOM-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-RESTOM-ANN-global_test.nc\n", + " * var_key: RESTOM\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-RESTOM-DJF-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-RESTOM-DJF-global_ref.nc\n", + " * var_key: RESTOM\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-RESTOM-DJF-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-RESTOM-DJF-global_test.nc\n", + " * var_key: RESTOM\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-RESTOM-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-RESTOM-JJA-global_ref.nc\n", + " * var_key: RESTOM\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-RESTOM-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-RESTOM-JJA-global_test.nc\n", + " * var_key: RESTOM\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-RESTOM-MAM-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-RESTOM-MAM-global_ref.nc\n", + " * var_key: RESTOM\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-RESTOM-MAM-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-RESTOM-MAM-global_test.nc\n", + " * var_key: RESTOM\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-RESTOM-SON-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-RESTOM-SON-global_ref.nc\n", + " * var_key: RESTOM\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-RESTOM-SON-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-RESTOM-SON-global_test.nc\n", + " * var_key: RESTOM\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-SOLIN-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-SOLIN-ANN-global_ref.nc\n", + " * var_key: SOLIN\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-SOLIN-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-SOLIN-ANN-global_test.nc\n", + " * var_key: SOLIN\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-SOLIN-DJF-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-SOLIN-DJF-global_ref.nc\n", + " * var_key: SOLIN\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-SOLIN-DJF-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-SOLIN-DJF-global_test.nc\n", + " * var_key: SOLIN\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-SOLIN-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-SOLIN-JJA-global_ref.nc\n", + " * var_key: SOLIN\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-SOLIN-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-SOLIN-JJA-global_test.nc\n", + " * var_key: SOLIN\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-SOLIN-MAM-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-SOLIN-MAM-global_ref.nc\n", + " * var_key: SOLIN\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-SOLIN-MAM-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-SOLIN-MAM-global_test.nc\n", + " * var_key: SOLIN\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-SOLIN-SON-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-SOLIN-SON-global_ref.nc\n", + " * var_key: SOLIN\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-SOLIN-SON-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-SOLIN-SON-global_test.nc\n", + " * var_key: SOLIN\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-SWCF-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-SWCF-ANN-global_ref.nc\n", + " * var_key: SWCF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-SWCF-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-SWCF-ANN-global_test.nc\n", + " * var_key: SWCF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-SWCF-DJF-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-SWCF-DJF-global_ref.nc\n", + " * var_key: SWCF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-SWCF-DJF-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-SWCF-DJF-global_test.nc\n", + " * var_key: SWCF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-SWCF-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-SWCF-JJA-global_ref.nc\n", + " * var_key: SWCF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-SWCF-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-SWCF-JJA-global_test.nc\n", + " * var_key: SWCF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-SWCF-MAM-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-SWCF-MAM-global_ref.nc\n", + " * var_key: SWCF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-SWCF-MAM-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-SWCF-MAM-global_test.nc\n", + " * var_key: SWCF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-SWCF-SON-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-SWCF-SON-global_ref.nc\n", + " * var_key: SWCF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-SWCF-SON-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-SWCF-SON-global_test.nc\n", + " * var_key: SWCF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-ALBEDO_SRF-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-ALBEDO_SRF-ANN-global_ref.nc\n", + " * var_key: ALBEDO_SRF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-ALBEDO_SRF-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-ALBEDO_SRF-ANN-global_test.nc\n", + " * var_key: ALBEDO_SRF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-ALBEDO_SRF-DJF-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-ALBEDO_SRF-DJF-global_ref.nc\n", + " * var_key: ALBEDO_SRF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-ALBEDO_SRF-DJF-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-ALBEDO_SRF-DJF-global_test.nc\n", + " * var_key: ALBEDO_SRF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-ALBEDO_SRF-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-ALBEDO_SRF-JJA-global_ref.nc\n", + " * var_key: ALBEDO_SRF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-ALBEDO_SRF-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-ALBEDO_SRF-JJA-global_test.nc\n", + " * var_key: ALBEDO_SRF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-ALBEDO_SRF-MAM-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-ALBEDO_SRF-MAM-global_ref.nc\n", + " * var_key: ALBEDO_SRF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-ALBEDO_SRF-MAM-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-ALBEDO_SRF-MAM-global_test.nc\n", + " * var_key: ALBEDO_SRF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-ALBEDO_SRF-SON-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-ALBEDO_SRF-SON-global_ref.nc\n", + " * var_key: ALBEDO_SRF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-ALBEDO_SRF-SON-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-ALBEDO_SRF-SON-global_test.nc\n", + " * var_key: ALBEDO_SRF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLDS-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLDS-ANN-global_ref.nc\n", + " * var_key: FLDS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLDS-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLDS-ANN-global_test.nc\n", + " * var_key: FLDS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLDS-DJF-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLDS-DJF-global_ref.nc\n", + " * var_key: FLDS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLDS-DJF-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLDS-DJF-global_test.nc\n", + " * var_key: FLDS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLDS-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLDS-JJA-global_ref.nc\n", + " * var_key: FLDS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLDS-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLDS-JJA-global_test.nc\n", + " * var_key: FLDS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLDS-MAM-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLDS-MAM-global_ref.nc\n", + " * var_key: FLDS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLDS-MAM-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLDS-MAM-global_test.nc\n", + " * var_key: FLDS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLDS-SON-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLDS-SON-global_ref.nc\n", + " * var_key: FLDS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLDS-SON-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLDS-SON-global_test.nc\n", + " * var_key: FLDS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLDSC-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLDSC-ANN-global_ref.nc\n", + " * var_key: FLDSC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLDSC-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLDSC-ANN-global_test.nc\n", + " * var_key: FLDSC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLDSC-DJF-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLDSC-DJF-global_ref.nc\n", + " * var_key: FLDSC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLDSC-DJF-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLDSC-DJF-global_test.nc\n", + " * var_key: FLDSC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLDSC-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLDSC-JJA-global_ref.nc\n", + " * var_key: FLDSC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLDSC-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLDSC-JJA-global_test.nc\n", + " * var_key: FLDSC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLDSC-MAM-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLDSC-MAM-global_ref.nc\n", + " * var_key: FLDSC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLDSC-MAM-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLDSC-MAM-global_test.nc\n", + " * var_key: FLDSC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLDSC-SON-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLDSC-SON-global_ref.nc\n", + " * var_key: FLDSC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLDSC-SON-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLDSC-SON-global_test.nc\n", + " * var_key: FLDSC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLNS-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLNS-ANN-global_ref.nc\n", + " * var_key: FLNS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLNS-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLNS-ANN-global_test.nc\n", + " * var_key: FLNS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLNS-DJF-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLNS-DJF-global_ref.nc\n", + " * var_key: FLNS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLNS-DJF-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLNS-DJF-global_test.nc\n", + " * var_key: FLNS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLNS-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLNS-JJA-global_ref.nc\n", + " * var_key: FLNS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLNS-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLNS-JJA-global_test.nc\n", + " * var_key: FLNS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLNS-MAM-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLNS-MAM-global_ref.nc\n", + " * var_key: FLNS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLNS-MAM-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLNS-MAM-global_test.nc\n", + " * var_key: FLNS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLNS-SON-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLNS-SON-global_ref.nc\n", + " * var_key: FLNS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLNS-SON-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLNS-SON-global_test.nc\n", + " * var_key: FLNS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLNSC-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLNSC-ANN-global_ref.nc\n", + " * var_key: FLNSC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLNSC-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLNSC-ANN-global_test.nc\n", + " * var_key: FLNSC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLNSC-DJF-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLNSC-DJF-global_ref.nc\n", + " * var_key: FLNSC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLNSC-DJF-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLNSC-DJF-global_test.nc\n", + " * var_key: FLNSC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLNSC-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLNSC-JJA-global_ref.nc\n", + " * var_key: FLNSC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLNSC-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLNSC-JJA-global_test.nc\n", + " * var_key: FLNSC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLNSC-MAM-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLNSC-MAM-global_ref.nc\n", + " * var_key: FLNSC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLNSC-MAM-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLNSC-MAM-global_test.nc\n", + " * var_key: FLNSC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLNSC-SON-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLNSC-SON-global_ref.nc\n", + " * var_key: FLNSC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLNSC-SON-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLNSC-SON-global_test.nc\n", + " * var_key: FLNSC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSDS-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSDS-ANN-global_ref.nc\n", + " * var_key: FSDS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSDS-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSDS-ANN-global_test.nc\n", + " * var_key: FSDS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSDS-DJF-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSDS-DJF-global_ref.nc\n", + " * var_key: FSDS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSDS-DJF-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSDS-DJF-global_test.nc\n", + " * var_key: FSDS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSDS-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSDS-JJA-global_ref.nc\n", + " * var_key: FSDS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSDS-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSDS-JJA-global_test.nc\n", + " * var_key: FSDS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSDS-MAM-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSDS-MAM-global_ref.nc\n", + " * var_key: FSDS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSDS-MAM-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSDS-MAM-global_test.nc\n", + " * var_key: FSDS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSDS-SON-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSDS-SON-global_ref.nc\n", + " * var_key: FSDS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSDS-SON-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSDS-SON-global_test.nc\n", + " * var_key: FSDS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSDSC-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSDSC-ANN-global_ref.nc\n", + " * var_key: FSDSC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSDSC-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSDSC-ANN-global_test.nc\n", + " * var_key: FSDSC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSDSC-DJF-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSDSC-DJF-global_ref.nc\n", + " * var_key: FSDSC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSDSC-DJF-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSDSC-DJF-global_test.nc\n", + " * var_key: FSDSC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSDSC-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSDSC-JJA-global_ref.nc\n", + " * var_key: FSDSC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSDSC-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSDSC-JJA-global_test.nc\n", + " * var_key: FSDSC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSDSC-MAM-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSDSC-MAM-global_ref.nc\n", + " * var_key: FSDSC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSDSC-MAM-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSDSC-MAM-global_test.nc\n", + " * var_key: FSDSC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSDSC-SON-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSDSC-SON-global_ref.nc\n", + " * var_key: FSDSC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSDSC-SON-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSDSC-SON-global_test.nc\n", + " * var_key: FSDSC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSNS-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSNS-ANN-global_ref.nc\n", + " * var_key: FSNS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSNS-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSNS-ANN-global_test.nc\n", + " * var_key: FSNS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSNS-DJF-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSNS-DJF-global_ref.nc\n", + " * var_key: FSNS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSNS-DJF-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSNS-DJF-global_test.nc\n", + " * var_key: FSNS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSNS-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSNS-JJA-global_ref.nc\n", + " * var_key: FSNS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSNS-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSNS-JJA-global_test.nc\n", + " * var_key: FSNS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSNS-MAM-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSNS-MAM-global_ref.nc\n", + " * var_key: FSNS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSNS-MAM-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSNS-MAM-global_test.nc\n", + " * var_key: FSNS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSNS-SON-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSNS-SON-global_ref.nc\n", + " * var_key: FSNS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSNS-SON-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSNS-SON-global_test.nc\n", + " * var_key: FSNS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSNSC-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSNSC-ANN-global_ref.nc\n", + " * var_key: FSNSC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSNSC-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSNSC-ANN-global_test.nc\n", + " * var_key: FSNSC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSNSC-DJF-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSNSC-DJF-global_ref.nc\n", + " * var_key: FSNSC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSNSC-DJF-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSNSC-DJF-global_test.nc\n", + " * var_key: FSNSC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSNSC-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSNSC-JJA-global_ref.nc\n", + " * var_key: FSNSC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSNSC-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSNSC-JJA-global_test.nc\n", + " * var_key: FSNSC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSNSC-MAM-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSNSC-MAM-global_ref.nc\n", + " * var_key: FSNSC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSNSC-MAM-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSNSC-MAM-global_test.nc\n", + " * var_key: FSNSC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSNSC-SON-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSNSC-SON-global_ref.nc\n", + " * var_key: FSNSC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSNSC-SON-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSNSC-SON-global_test.nc\n", + " * var_key: FSNSC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-LWCFSRF-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-LWCFSRF-ANN-global_ref.nc\n", + " * var_key: LWCFSRF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-LWCFSRF-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-LWCFSRF-ANN-global_test.nc\n", + " * var_key: LWCFSRF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-LWCFSRF-DJF-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-LWCFSRF-DJF-global_ref.nc\n", + " * var_key: LWCFSRF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-LWCFSRF-DJF-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-LWCFSRF-DJF-global_test.nc\n", + " * var_key: LWCFSRF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-LWCFSRF-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-LWCFSRF-JJA-global_ref.nc\n", + " * var_key: LWCFSRF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-LWCFSRF-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-LWCFSRF-JJA-global_test.nc\n", + " * var_key: LWCFSRF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-LWCFSRF-MAM-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-LWCFSRF-MAM-global_ref.nc\n", + " * var_key: LWCFSRF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-LWCFSRF-MAM-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-LWCFSRF-MAM-global_test.nc\n", + " * var_key: LWCFSRF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-LWCFSRF-SON-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-LWCFSRF-SON-global_ref.nc\n", + " * var_key: LWCFSRF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-LWCFSRF-SON-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-LWCFSRF-SON-global_test.nc\n", + " * var_key: LWCFSRF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-NETCF_SRF-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-NETCF_SRF-ANN-global_ref.nc\n", + " * var_key: NETCF_SRF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-NETCF_SRF-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-NETCF_SRF-ANN-global_test.nc\n", + " * var_key: NETCF_SRF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-NETCF_SRF-DJF-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-NETCF_SRF-DJF-global_ref.nc\n", + " * var_key: NETCF_SRF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-NETCF_SRF-DJF-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-NETCF_SRF-DJF-global_test.nc\n", + " * var_key: NETCF_SRF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-NETCF_SRF-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-NETCF_SRF-JJA-global_ref.nc\n", + " * var_key: NETCF_SRF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-NETCF_SRF-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-NETCF_SRF-JJA-global_test.nc\n", + " * var_key: NETCF_SRF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-NETCF_SRF-MAM-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-NETCF_SRF-MAM-global_ref.nc\n", + " * var_key: NETCF_SRF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-NETCF_SRF-MAM-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-NETCF_SRF-MAM-global_test.nc\n", + " * var_key: NETCF_SRF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-NETCF_SRF-SON-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-NETCF_SRF-SON-global_ref.nc\n", + " * var_key: NETCF_SRF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-NETCF_SRF-SON-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-NETCF_SRF-SON-global_test.nc\n", + " * var_key: NETCF_SRF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-SWCFSRF-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-SWCFSRF-ANN-global_ref.nc\n", + " * var_key: SWCFSRF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-SWCFSRF-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-SWCFSRF-ANN-global_test.nc\n", + " * var_key: SWCFSRF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-SWCFSRF-DJF-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-SWCFSRF-DJF-global_ref.nc\n", + " * var_key: SWCFSRF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-SWCFSRF-DJF-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-SWCFSRF-DJF-global_test.nc\n", + " * var_key: SWCFSRF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-SWCFSRF-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-SWCFSRF-JJA-global_ref.nc\n", + " * var_key: SWCFSRF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-SWCFSRF-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-SWCFSRF-JJA-global_test.nc\n", + " * var_key: SWCFSRF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-SWCFSRF-MAM-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-SWCFSRF-MAM-global_ref.nc\n", + " * var_key: SWCFSRF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-SWCFSRF-MAM-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-SWCFSRF-MAM-global_test.nc\n", + " * var_key: SWCFSRF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-SWCFSRF-SON-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-SWCFSRF-SON-global_ref.nc\n", + " * var_key: SWCFSRF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-SWCFSRF-SON-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-SWCFSRF-SON-global_test.nc\n", + " * var_key: SWCFSRF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/COREv2_Flux/COREv2_Flux-PminusE-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/COREv2_Flux/COREv2_Flux-PminusE-ANN-global_ref.nc\n", + " * var_key: PminusE\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/COREv2_Flux/COREv2_Flux-PminusE-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/COREv2_Flux/COREv2_Flux-PminusE-ANN-global_test.nc\n", + " * var_key: PminusE\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/COREv2_Flux/COREv2_Flux-PminusE-DJF-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/COREv2_Flux/COREv2_Flux-PminusE-DJF-global_ref.nc\n", + " * var_key: PminusE\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/COREv2_Flux/COREv2_Flux-PminusE-DJF-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/COREv2_Flux/COREv2_Flux-PminusE-DJF-global_test.nc\n", + " * var_key: PminusE\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/COREv2_Flux/COREv2_Flux-PminusE-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/COREv2_Flux/COREv2_Flux-PminusE-JJA-global_ref.nc\n", + " * var_key: PminusE\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/COREv2_Flux/COREv2_Flux-PminusE-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/COREv2_Flux/COREv2_Flux-PminusE-JJA-global_test.nc\n", + " * var_key: PminusE\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/COREv2_Flux/COREv2_Flux-PminusE-MAM-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/COREv2_Flux/COREv2_Flux-PminusE-MAM-global_ref.nc\n", + " * var_key: PminusE\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/COREv2_Flux/COREv2_Flux-PminusE-MAM-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/COREv2_Flux/COREv2_Flux-PminusE-MAM-global_test.nc\n", + " * var_key: PminusE\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/COREv2_Flux/COREv2_Flux-PminusE-SON-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/COREv2_Flux/COREv2_Flux-PminusE-SON-global_ref.nc\n", + " * var_key: PminusE\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/COREv2_Flux/COREv2_Flux-PminusE-SON-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/COREv2_Flux/COREv2_Flux-PminusE-SON-global_test.nc\n", + " * var_key: PminusE\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CRU_IPCC/CRU-TREFHT-ANN-land_60S90N_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CRU_IPCC/CRU-TREFHT-ANN-land_60S90N_ref.nc\n", + " * var_key: TREFHT\n", + " \n", + "Not equal to tolerance rtol=1e-05, atol=0\n", + "\n", + "x and y nan location mismatch:\n", + " x: array([[nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],...\n", + " y: array([[nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],...\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CRU_IPCC/CRU-TREFHT-ANN-land_60S90N_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CRU_IPCC/CRU-TREFHT-ANN-land_60S90N_test.nc\n", + " * var_key: TREFHT\n", + " \n", + "Not equal to tolerance rtol=1e-05, atol=0\n", + "\n", + "(shapes (107, 256), (108, 256) mismatch)\n", + " x: array([[nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],...\n", + " y: array([[nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],...\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CRU_IPCC/CRU-TREFHT-DJF-land_60S90N_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CRU_IPCC/CRU-TREFHT-DJF-land_60S90N_ref.nc\n", + " * var_key: TREFHT\n", + " \n", + "Not equal to tolerance rtol=1e-05, atol=0\n", + "\n", + "x and y nan location mismatch:\n", + " x: array([[nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],...\n", + " y: array([[nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],...\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CRU_IPCC/CRU-TREFHT-DJF-land_60S90N_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CRU_IPCC/CRU-TREFHT-DJF-land_60S90N_test.nc\n", + " * var_key: TREFHT\n", + " \n", + "Not equal to tolerance rtol=1e-05, atol=0\n", + "\n", + "(shapes (107, 256), (108, 256) mismatch)\n", + " x: array([[nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],...\n", + " y: array([[nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],...\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CRU_IPCC/CRU-TREFHT-JJA-land_60S90N_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CRU_IPCC/CRU-TREFHT-JJA-land_60S90N_ref.nc\n", + " * var_key: TREFHT\n", + " \n", + "Not equal to tolerance rtol=1e-05, atol=0\n", + "\n", + "x and y nan location mismatch:\n", + " x: array([[nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],...\n", + " y: array([[nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],...\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CRU_IPCC/CRU-TREFHT-JJA-land_60S90N_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CRU_IPCC/CRU-TREFHT-JJA-land_60S90N_test.nc\n", + " * var_key: TREFHT\n", + " \n", + "Not equal to tolerance rtol=1e-05, atol=0\n", + "\n", + "(shapes (107, 256), (108, 256) mismatch)\n", + " x: array([[nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],...\n", + " y: array([[nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],...\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CRU_IPCC/CRU-TREFHT-MAM-land_60S90N_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CRU_IPCC/CRU-TREFHT-MAM-land_60S90N_test.nc\n", + " * var_key: TREFHT\n", + " \n", + "Not equal to tolerance rtol=1e-05, atol=0\n", + "\n", + "(shapes (107, 256), (108, 256) mismatch)\n", + " x: array([[nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],...\n", + " y: array([[nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],...\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/CRU_IPCC/CRU-TREFHT-SON-land_60S90N_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CRU_IPCC/CRU-TREFHT-SON-land_60S90N_test.nc\n", + " * var_key: TREFHT\n", + " \n", + "Not equal to tolerance rtol=1e-05, atol=0\n", + "\n", + "(shapes (107, 256), (108, 256) mismatch)\n", + " x: array([[nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],...\n", + " y: array([[nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],...\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud Calipso/CALIPSOCOSP-CLDHGH_CAL-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud Calipso/CALIPSOCOSP-CLDHGH_CAL-ANN-global_ref.nc\n", + " * var_key: CLDHGH_CAL\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud Calipso/CALIPSOCOSP-CLDHGH_CAL-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud Calipso/CALIPSOCOSP-CLDHGH_CAL-ANN-global_test.nc\n", + " * var_key: CLDHGH_CAL\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud Calipso/CALIPSOCOSP-CLDHGH_CAL-DJF-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud Calipso/CALIPSOCOSP-CLDHGH_CAL-DJF-global_ref.nc\n", + " * var_key: CLDHGH_CAL\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud Calipso/CALIPSOCOSP-CLDHGH_CAL-DJF-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud Calipso/CALIPSOCOSP-CLDHGH_CAL-DJF-global_test.nc\n", + " * var_key: CLDHGH_CAL\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud Calipso/CALIPSOCOSP-CLDHGH_CAL-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud Calipso/CALIPSOCOSP-CLDHGH_CAL-JJA-global_ref.nc\n", + " * var_key: CLDHGH_CAL\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud Calipso/CALIPSOCOSP-CLDHGH_CAL-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud Calipso/CALIPSOCOSP-CLDHGH_CAL-JJA-global_test.nc\n", + " * var_key: CLDHGH_CAL\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud Calipso/CALIPSOCOSP-CLDHGH_CAL-MAM-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud Calipso/CALIPSOCOSP-CLDHGH_CAL-MAM-global_ref.nc\n", + " * var_key: CLDHGH_CAL\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud Calipso/CALIPSOCOSP-CLDHGH_CAL-MAM-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud Calipso/CALIPSOCOSP-CLDHGH_CAL-MAM-global_test.nc\n", + " * var_key: CLDHGH_CAL\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud Calipso/CALIPSOCOSP-CLDHGH_CAL-SON-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud Calipso/CALIPSOCOSP-CLDHGH_CAL-SON-global_ref.nc\n", + " * var_key: CLDHGH_CAL\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud Calipso/CALIPSOCOSP-CLDHGH_CAL-SON-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud Calipso/CALIPSOCOSP-CLDHGH_CAL-SON-global_test.nc\n", + " * var_key: CLDHGH_CAL\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud Calipso/CALIPSOCOSP-CLDLOW_CAL-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud Calipso/CALIPSOCOSP-CLDLOW_CAL-ANN-global_ref.nc\n", + " * var_key: CLDLOW_CAL\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud Calipso/CALIPSOCOSP-CLDLOW_CAL-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud Calipso/CALIPSOCOSP-CLDLOW_CAL-ANN-global_test.nc\n", + " * var_key: CLDLOW_CAL\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud Calipso/CALIPSOCOSP-CLDLOW_CAL-DJF-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud Calipso/CALIPSOCOSP-CLDLOW_CAL-DJF-global_ref.nc\n", + " * var_key: CLDLOW_CAL\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud Calipso/CALIPSOCOSP-CLDLOW_CAL-DJF-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud Calipso/CALIPSOCOSP-CLDLOW_CAL-DJF-global_test.nc\n", + " * var_key: CLDLOW_CAL\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud Calipso/CALIPSOCOSP-CLDLOW_CAL-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud Calipso/CALIPSOCOSP-CLDLOW_CAL-JJA-global_ref.nc\n", + " * var_key: CLDLOW_CAL\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud Calipso/CALIPSOCOSP-CLDLOW_CAL-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud Calipso/CALIPSOCOSP-CLDLOW_CAL-JJA-global_test.nc\n", + " * var_key: CLDLOW_CAL\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud Calipso/CALIPSOCOSP-CLDLOW_CAL-MAM-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud Calipso/CALIPSOCOSP-CLDLOW_CAL-MAM-global_ref.nc\n", + " * var_key: CLDLOW_CAL\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud Calipso/CALIPSOCOSP-CLDLOW_CAL-MAM-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud Calipso/CALIPSOCOSP-CLDLOW_CAL-MAM-global_test.nc\n", + " * var_key: CLDLOW_CAL\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud Calipso/CALIPSOCOSP-CLDLOW_CAL-SON-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud Calipso/CALIPSOCOSP-CLDLOW_CAL-SON-global_ref.nc\n", + " * var_key: CLDLOW_CAL\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud Calipso/CALIPSOCOSP-CLDLOW_CAL-SON-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud Calipso/CALIPSOCOSP-CLDLOW_CAL-SON-global_test.nc\n", + " * var_key: CLDLOW_CAL\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud Calipso/CALIPSOCOSP-CLDMED_CAL-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud Calipso/CALIPSOCOSP-CLDMED_CAL-ANN-global_ref.nc\n", + " * var_key: CLDMED_CAL\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud Calipso/CALIPSOCOSP-CLDMED_CAL-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud Calipso/CALIPSOCOSP-CLDMED_CAL-ANN-global_test.nc\n", + " * var_key: CLDMED_CAL\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud Calipso/CALIPSOCOSP-CLDMED_CAL-DJF-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud Calipso/CALIPSOCOSP-CLDMED_CAL-DJF-global_ref.nc\n", + " * var_key: CLDMED_CAL\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud Calipso/CALIPSOCOSP-CLDMED_CAL-DJF-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud Calipso/CALIPSOCOSP-CLDMED_CAL-DJF-global_test.nc\n", + " * var_key: CLDMED_CAL\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud Calipso/CALIPSOCOSP-CLDMED_CAL-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud Calipso/CALIPSOCOSP-CLDMED_CAL-JJA-global_ref.nc\n", + " * var_key: CLDMED_CAL\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud Calipso/CALIPSOCOSP-CLDMED_CAL-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud Calipso/CALIPSOCOSP-CLDMED_CAL-JJA-global_test.nc\n", + " * var_key: CLDMED_CAL\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud Calipso/CALIPSOCOSP-CLDMED_CAL-MAM-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud Calipso/CALIPSOCOSP-CLDMED_CAL-MAM-global_ref.nc\n", + " * var_key: CLDMED_CAL\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud Calipso/CALIPSOCOSP-CLDMED_CAL-MAM-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud Calipso/CALIPSOCOSP-CLDMED_CAL-MAM-global_test.nc\n", + " * var_key: CLDMED_CAL\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud Calipso/CALIPSOCOSP-CLDMED_CAL-SON-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud Calipso/CALIPSOCOSP-CLDMED_CAL-SON-global_ref.nc\n", + " * var_key: CLDMED_CAL\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud Calipso/CALIPSOCOSP-CLDMED_CAL-SON-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud Calipso/CALIPSOCOSP-CLDMED_CAL-SON-global_test.nc\n", + " * var_key: CLDMED_CAL\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud Calipso/CALIPSOCOSP-CLDTOT_CAL-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud Calipso/CALIPSOCOSP-CLDTOT_CAL-ANN-global_ref.nc\n", + " * var_key: CLDTOT_CAL\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud Calipso/CALIPSOCOSP-CLDTOT_CAL-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud Calipso/CALIPSOCOSP-CLDTOT_CAL-ANN-global_test.nc\n", + " * var_key: CLDTOT_CAL\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud Calipso/CALIPSOCOSP-CLDTOT_CAL-DJF-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud Calipso/CALIPSOCOSP-CLDTOT_CAL-DJF-global_ref.nc\n", + " * var_key: CLDTOT_CAL\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud Calipso/CALIPSOCOSP-CLDTOT_CAL-DJF-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud Calipso/CALIPSOCOSP-CLDTOT_CAL-DJF-global_test.nc\n", + " * var_key: CLDTOT_CAL\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud Calipso/CALIPSOCOSP-CLDTOT_CAL-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud Calipso/CALIPSOCOSP-CLDTOT_CAL-JJA-global_ref.nc\n", + " * var_key: CLDTOT_CAL\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud Calipso/CALIPSOCOSP-CLDTOT_CAL-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud Calipso/CALIPSOCOSP-CLDTOT_CAL-JJA-global_test.nc\n", + " * var_key: CLDTOT_CAL\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud Calipso/CALIPSOCOSP-CLDTOT_CAL-MAM-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud Calipso/CALIPSOCOSP-CLDTOT_CAL-MAM-global_ref.nc\n", + " * var_key: CLDTOT_CAL\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud Calipso/CALIPSOCOSP-CLDTOT_CAL-MAM-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud Calipso/CALIPSOCOSP-CLDTOT_CAL-MAM-global_test.nc\n", + " * var_key: CLDTOT_CAL\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud Calipso/CALIPSOCOSP-CLDTOT_CAL-SON-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud Calipso/CALIPSOCOSP-CLDTOT_CAL-SON-global_ref.nc\n", + " * var_key: CLDTOT_CAL\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud Calipso/CALIPSOCOSP-CLDTOT_CAL-SON-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud Calipso/CALIPSOCOSP-CLDTOT_CAL-SON-global_test.nc\n", + " * var_key: CLDTOT_CAL\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud ISCCP/ISCCPCOSP-CLDTOT_TAU1.3_9.4_ISCCP-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud ISCCP/ISCCPCOSP-CLDTOT_TAU1.3_9.4_ISCCP-ANN-global_ref.nc\n", + " * var_key: CLDTOT_TAU1.3_9.4_ISCCP\n", + " \n", + "Not equal to tolerance rtol=1e-05, atol=0\n", + "\n", + "Mismatched elements: 10368 / 10368 (100%)\n", + "Max absolute difference: 53.08825\n", + "Max relative difference: 1.\n", + " x: array([[0., 0., 0., ..., 0., 0., 0.],\n", + " [0., 0., 0., ..., 0., 0., 0.],\n", + " [0., 0., 0., ..., 0., 0., 0.],...\n", + " y: array([[ 6.836297, 6.836297, 6.836297, ..., 8.73094 , 8.73094 ,\n", + " 8.73094 ],\n", + " [ 9.645343, 9.645343, 9.645343, ..., 7.921655, 7.921655,...\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud ISCCP/ISCCPCOSP-CLDTOT_TAU1.3_9.4_ISCCP-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud ISCCP/ISCCPCOSP-CLDTOT_TAU1.3_9.4_ISCCP-ANN-global_test.nc\n", + " * var_key: CLDTOT_TAU1.3_9.4_ISCCP\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud ISCCP/ISCCPCOSP-CLDTOT_TAU1.3_9.4_ISCCP-DJF-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud ISCCP/ISCCPCOSP-CLDTOT_TAU1.3_9.4_ISCCP-DJF-global_ref.nc\n", + " * var_key: CLDTOT_TAU1.3_9.4_ISCCP\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud ISCCP/ISCCPCOSP-CLDTOT_TAU1.3_9.4_ISCCP-DJF-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud ISCCP/ISCCPCOSP-CLDTOT_TAU1.3_9.4_ISCCP-DJF-global_test.nc\n", + " * var_key: CLDTOT_TAU1.3_9.4_ISCCP\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud ISCCP/ISCCPCOSP-CLDTOT_TAU1.3_9.4_ISCCP-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud ISCCP/ISCCPCOSP-CLDTOT_TAU1.3_9.4_ISCCP-JJA-global_ref.nc\n", + " * var_key: CLDTOT_TAU1.3_9.4_ISCCP\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud ISCCP/ISCCPCOSP-CLDTOT_TAU1.3_9.4_ISCCP-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud ISCCP/ISCCPCOSP-CLDTOT_TAU1.3_9.4_ISCCP-JJA-global_test.nc\n", + " * var_key: CLDTOT_TAU1.3_9.4_ISCCP\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud ISCCP/ISCCPCOSP-CLDTOT_TAU1.3_9.4_ISCCP-MAM-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud ISCCP/ISCCPCOSP-CLDTOT_TAU1.3_9.4_ISCCP-MAM-global_ref.nc\n", + " * var_key: CLDTOT_TAU1.3_9.4_ISCCP\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud ISCCP/ISCCPCOSP-CLDTOT_TAU1.3_9.4_ISCCP-MAM-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud ISCCP/ISCCPCOSP-CLDTOT_TAU1.3_9.4_ISCCP-MAM-global_test.nc\n", + " * var_key: CLDTOT_TAU1.3_9.4_ISCCP\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud ISCCP/ISCCPCOSP-CLDTOT_TAU1.3_9.4_ISCCP-SON-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud ISCCP/ISCCPCOSP-CLDTOT_TAU1.3_9.4_ISCCP-SON-global_ref.nc\n", + " * var_key: CLDTOT_TAU1.3_9.4_ISCCP\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud ISCCP/ISCCPCOSP-CLDTOT_TAU1.3_9.4_ISCCP-SON-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud ISCCP/ISCCPCOSP-CLDTOT_TAU1.3_9.4_ISCCP-SON-global_test.nc\n", + " * var_key: CLDTOT_TAU1.3_9.4_ISCCP\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud ISCCP/ISCCPCOSP-CLDTOT_TAU1.3_ISCCP-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud ISCCP/ISCCPCOSP-CLDTOT_TAU1.3_ISCCP-ANN-global_ref.nc\n", + " * var_key: CLDTOT_TAU1.3_ISCCP\n", + " \n", + "Not equal to tolerance rtol=1e-05, atol=0\n", + "\n", + "Mismatched elements: 10368 / 10368 (100%)\n", + "Max absolute difference: 87.74811\n", + "Max relative difference: 1.\n", + " x: array([[0., 0., 0., ..., 0., 0., 0.],\n", + " [0., 0., 0., ..., 0., 0., 0.],\n", + " [0., 0., 0., ..., 0., 0., 0.],...\n", + " y: array([[11.642273, 11.642273, 11.642273, ..., 15.010149, 15.010149,\n", + " 15.010149],\n", + " [13.580242, 13.580242, 13.580242, ..., 15.29873 , 15.29873 ,...\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud ISCCP/ISCCPCOSP-CLDTOT_TAU1.3_ISCCP-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud ISCCP/ISCCPCOSP-CLDTOT_TAU1.3_ISCCP-ANN-global_test.nc\n", + " * var_key: CLDTOT_TAU1.3_ISCCP\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud ISCCP/ISCCPCOSP-CLDTOT_TAU1.3_ISCCP-DJF-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud ISCCP/ISCCPCOSP-CLDTOT_TAU1.3_ISCCP-DJF-global_ref.nc\n", + " * var_key: CLDTOT_TAU1.3_ISCCP\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud ISCCP/ISCCPCOSP-CLDTOT_TAU1.3_ISCCP-DJF-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud ISCCP/ISCCPCOSP-CLDTOT_TAU1.3_ISCCP-DJF-global_test.nc\n", + " * var_key: CLDTOT_TAU1.3_ISCCP\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud ISCCP/ISCCPCOSP-CLDTOT_TAU1.3_ISCCP-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud ISCCP/ISCCPCOSP-CLDTOT_TAU1.3_ISCCP-JJA-global_ref.nc\n", + " * var_key: CLDTOT_TAU1.3_ISCCP\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud ISCCP/ISCCPCOSP-CLDTOT_TAU1.3_ISCCP-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud ISCCP/ISCCPCOSP-CLDTOT_TAU1.3_ISCCP-JJA-global_test.nc\n", + " * var_key: CLDTOT_TAU1.3_ISCCP\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud ISCCP/ISCCPCOSP-CLDTOT_TAU1.3_ISCCP-MAM-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud ISCCP/ISCCPCOSP-CLDTOT_TAU1.3_ISCCP-MAM-global_ref.nc\n", + " * var_key: CLDTOT_TAU1.3_ISCCP\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud ISCCP/ISCCPCOSP-CLDTOT_TAU1.3_ISCCP-MAM-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud ISCCP/ISCCPCOSP-CLDTOT_TAU1.3_ISCCP-MAM-global_test.nc\n", + " * var_key: CLDTOT_TAU1.3_ISCCP\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud ISCCP/ISCCPCOSP-CLDTOT_TAU1.3_ISCCP-SON-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud ISCCP/ISCCPCOSP-CLDTOT_TAU1.3_ISCCP-SON-global_ref.nc\n", + " * var_key: CLDTOT_TAU1.3_ISCCP\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud ISCCP/ISCCPCOSP-CLDTOT_TAU1.3_ISCCP-SON-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud ISCCP/ISCCPCOSP-CLDTOT_TAU1.3_ISCCP-SON-global_test.nc\n", + " * var_key: CLDTOT_TAU1.3_ISCCP\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud ISCCP/ISCCPCOSP-CLDTOT_TAU9.4_ISCCP-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud ISCCP/ISCCPCOSP-CLDTOT_TAU9.4_ISCCP-ANN-global_ref.nc\n", + " * var_key: CLDTOT_TAU9.4_ISCCP\n", + " \n", + "Not equal to tolerance rtol=1e-05, atol=0\n", + "\n", + "Mismatched elements: 10368 / 10368 (100%)\n", + "Max absolute difference: 52.669422\n", + "Max relative difference: 1.\n", + " x: array([[0., 0., 0., ..., 0., 0., 0.],\n", + " [0., 0., 0., ..., 0., 0., 0.],\n", + " [0., 0., 0., ..., 0., 0., 0.],...\n", + " y: array([[ 4.805976, 4.805976, 4.805976, ..., 6.27921 , 6.27921 ,\n", + " 6.27921 ],\n", + " [ 3.934899, 3.934899, 3.934899, ..., 7.377073, 7.377073,...\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud ISCCP/ISCCPCOSP-CLDTOT_TAU9.4_ISCCP-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud ISCCP/ISCCPCOSP-CLDTOT_TAU9.4_ISCCP-ANN-global_test.nc\n", + " * var_key: CLDTOT_TAU9.4_ISCCP\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud ISCCP/ISCCPCOSP-CLDTOT_TAU9.4_ISCCP-DJF-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud ISCCP/ISCCPCOSP-CLDTOT_TAU9.4_ISCCP-DJF-global_ref.nc\n", + " * var_key: CLDTOT_TAU9.4_ISCCP\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud ISCCP/ISCCPCOSP-CLDTOT_TAU9.4_ISCCP-DJF-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud ISCCP/ISCCPCOSP-CLDTOT_TAU9.4_ISCCP-DJF-global_test.nc\n", + " * var_key: CLDTOT_TAU9.4_ISCCP\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud ISCCP/ISCCPCOSP-CLDTOT_TAU9.4_ISCCP-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud ISCCP/ISCCPCOSP-CLDTOT_TAU9.4_ISCCP-JJA-global_ref.nc\n", + " * var_key: CLDTOT_TAU9.4_ISCCP\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud ISCCP/ISCCPCOSP-CLDTOT_TAU9.4_ISCCP-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud ISCCP/ISCCPCOSP-CLDTOT_TAU9.4_ISCCP-JJA-global_test.nc\n", + " * var_key: CLDTOT_TAU9.4_ISCCP\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud ISCCP/ISCCPCOSP-CLDTOT_TAU9.4_ISCCP-MAM-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud ISCCP/ISCCPCOSP-CLDTOT_TAU9.4_ISCCP-MAM-global_ref.nc\n", + " * var_key: CLDTOT_TAU9.4_ISCCP\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud ISCCP/ISCCPCOSP-CLDTOT_TAU9.4_ISCCP-MAM-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud ISCCP/ISCCPCOSP-CLDTOT_TAU9.4_ISCCP-MAM-global_test.nc\n", + " * var_key: CLDTOT_TAU9.4_ISCCP\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud ISCCP/ISCCPCOSP-CLDTOT_TAU9.4_ISCCP-SON-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud ISCCP/ISCCPCOSP-CLDTOT_TAU9.4_ISCCP-SON-global_ref.nc\n", + " * var_key: CLDTOT_TAU9.4_ISCCP\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud ISCCP/ISCCPCOSP-CLDTOT_TAU9.4_ISCCP-SON-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud ISCCP/ISCCPCOSP-CLDTOT_TAU9.4_ISCCP-SON-global_test.nc\n", + " * var_key: CLDTOT_TAU9.4_ISCCP\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud MISR/MISRCOSP-CLDLOW_TAU1.3_9.4_MISR-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud MISR/MISRCOSP-CLDLOW_TAU1.3_9.4_MISR-ANN-global_ref.nc\n", + " * var_key: CLDLOW_TAU1.3_9.4_MISR\n", + " \n", + "Not equal to tolerance rtol=1e-05, atol=0\n", + "\n", + "Mismatched elements: 39457 / 64800 (60.9%)\n", + "Max absolute difference: 22.411116\n", + "Max relative difference: 0.6832267\n", + " x: array([[nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],...\n", + " y: array([[nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],...\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud MISR/MISRCOSP-CLDLOW_TAU1.3_9.4_MISR-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud MISR/MISRCOSP-CLDLOW_TAU1.3_9.4_MISR-ANN-global_test.nc\n", + " * var_key: CLDLOW_TAU1.3_9.4_MISR\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud MISR/MISRCOSP-CLDLOW_TAU1.3_9.4_MISR-DJF-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud MISR/MISRCOSP-CLDLOW_TAU1.3_9.4_MISR-DJF-global_ref.nc\n", + " * var_key: CLDLOW_TAU1.3_9.4_MISR\n", + " \n", + "Not equal to tolerance rtol=1e-05, atol=0\n", + "\n", + "Mismatched elements: 35176 / 64800 (54.3%)\n", + "Max absolute difference: 24.81158\n", + "Max relative difference: 0.78059405\n", + " x: array([[nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],...\n", + " y: array([[nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],...\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud MISR/MISRCOSP-CLDLOW_TAU1.3_9.4_MISR-DJF-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud MISR/MISRCOSP-CLDLOW_TAU1.3_9.4_MISR-DJF-global_test.nc\n", + " * var_key: CLDLOW_TAU1.3_9.4_MISR\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud MISR/MISRCOSP-CLDLOW_TAU1.3_9.4_MISR-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud MISR/MISRCOSP-CLDLOW_TAU1.3_9.4_MISR-JJA-global_ref.nc\n", + " * var_key: CLDLOW_TAU1.3_9.4_MISR\n", + " \n", + "Not equal to tolerance rtol=1e-05, atol=0\n", + "\n", + "Mismatched elements: 34699 / 64800 (53.5%)\n", + "Max absolute difference: 45.429226\n", + "Max relative difference: 0.9708206\n", + " x: array([[nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],...\n", + " y: array([[nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],...\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud MISR/MISRCOSP-CLDLOW_TAU1.3_9.4_MISR-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud MISR/MISRCOSP-CLDLOW_TAU1.3_9.4_MISR-JJA-global_test.nc\n", + " * var_key: CLDLOW_TAU1.3_9.4_MISR\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud MISR/MISRCOSP-CLDLOW_TAU1.3_9.4_MISR-MAM-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud MISR/MISRCOSP-CLDLOW_TAU1.3_9.4_MISR-MAM-global_ref.nc\n", + " * var_key: CLDLOW_TAU1.3_9.4_MISR\n", + " \n", + "Not equal to tolerance rtol=1e-05, atol=0\n", + "\n", + "Mismatched elements: 36105 / 64800 (55.7%)\n", + "Max absolute difference: 30.681599\n", + "Max relative difference: 1.\n", + " x: array([[nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],...\n", + " y: array([[nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],...\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud MISR/MISRCOSP-CLDLOW_TAU1.3_9.4_MISR-MAM-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud MISR/MISRCOSP-CLDLOW_TAU1.3_9.4_MISR-MAM-global_test.nc\n", + " * var_key: CLDLOW_TAU1.3_9.4_MISR\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud MISR/MISRCOSP-CLDLOW_TAU1.3_9.4_MISR-SON-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud MISR/MISRCOSP-CLDLOW_TAU1.3_9.4_MISR-SON-global_ref.nc\n", + " * var_key: CLDLOW_TAU1.3_9.4_MISR\n", + " \n", + "Not equal to tolerance rtol=1e-05, atol=0\n", + "\n", + "Mismatched elements: 36654 / 64800 (56.6%)\n", + "Max absolute difference: 20.475178\n", + "Max relative difference: 0.6053263\n", + " x: array([[nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],...\n", + " y: array([[nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],...\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud MISR/MISRCOSP-CLDLOW_TAU1.3_9.4_MISR-SON-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud MISR/MISRCOSP-CLDLOW_TAU1.3_9.4_MISR-SON-global_test.nc\n", + " * var_key: CLDLOW_TAU1.3_9.4_MISR\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud MISR/MISRCOSP-CLDLOW_TAU1.3_MISR-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud MISR/MISRCOSP-CLDLOW_TAU1.3_MISR-ANN-global_ref.nc\n", + " * var_key: CLDLOW_TAU1.3_MISR\n", + " \n", + "Not equal to tolerance rtol=1e-05, atol=0\n", + "\n", + "Mismatched elements: 39499 / 64800 (61%)\n", + "Max absolute difference: 37.673122\n", + "Max relative difference: 0.62295455\n", + " x: array([[nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],...\n", + " y: array([[nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],...\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud MISR/MISRCOSP-CLDLOW_TAU1.3_MISR-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud MISR/MISRCOSP-CLDLOW_TAU1.3_MISR-ANN-global_test.nc\n", + " * var_key: CLDLOW_TAU1.3_MISR\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud MISR/MISRCOSP-CLDLOW_TAU1.3_MISR-DJF-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud MISR/MISRCOSP-CLDLOW_TAU1.3_MISR-DJF-global_ref.nc\n", + " * var_key: CLDLOW_TAU1.3_MISR\n", + " \n", + "Not equal to tolerance rtol=1e-05, atol=0\n", + "\n", + "Mismatched elements: 35621 / 64800 (55%)\n", + "Max absolute difference: 42.459175\n", + "Max relative difference: 0.7752116\n", + " x: array([[nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],...\n", + " y: array([[nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],...\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud MISR/MISRCOSP-CLDLOW_TAU1.3_MISR-DJF-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud MISR/MISRCOSP-CLDLOW_TAU1.3_MISR-DJF-global_test.nc\n", + " * var_key: CLDLOW_TAU1.3_MISR\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud MISR/MISRCOSP-CLDLOW_TAU1.3_MISR-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud MISR/MISRCOSP-CLDLOW_TAU1.3_MISR-JJA-global_ref.nc\n", + " * var_key: CLDLOW_TAU1.3_MISR\n", + " \n", + "Not equal to tolerance rtol=1e-05, atol=0\n", + "\n", + "Mismatched elements: 35149 / 64800 (54.2%)\n", + "Max absolute difference: 67.89603\n", + "Max relative difference: 0.9691263\n", + " x: array([[nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],...\n", + " y: array([[nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],...\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud MISR/MISRCOSP-CLDLOW_TAU1.3_MISR-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud MISR/MISRCOSP-CLDLOW_TAU1.3_MISR-JJA-global_test.nc\n", + " * var_key: CLDLOW_TAU1.3_MISR\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud MISR/MISRCOSP-CLDLOW_TAU1.3_MISR-MAM-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud MISR/MISRCOSP-CLDLOW_TAU1.3_MISR-MAM-global_ref.nc\n", + " * var_key: CLDLOW_TAU1.3_MISR\n", + " \n", + "Not equal to tolerance rtol=1e-05, atol=0\n", + "\n", + "Mismatched elements: 36312 / 64800 (56%)\n", + "Max absolute difference: 41.804516\n", + "Max relative difference: 0.9530566\n", + " x: array([[nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],...\n", + " y: array([[nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],...\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud MISR/MISRCOSP-CLDLOW_TAU1.3_MISR-MAM-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud MISR/MISRCOSP-CLDLOW_TAU1.3_MISR-MAM-global_test.nc\n", + " * var_key: CLDLOW_TAU1.3_MISR\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud MISR/MISRCOSP-CLDLOW_TAU1.3_MISR-SON-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud MISR/MISRCOSP-CLDLOW_TAU1.3_MISR-SON-global_ref.nc\n", + " * var_key: CLDLOW_TAU1.3_MISR\n", + " \n", + "Not equal to tolerance rtol=1e-05, atol=0\n", + "\n", + "Mismatched elements: 36787 / 64800 (56.8%)\n", + "Max absolute difference: 41.904636\n", + "Max relative difference: 0.64695966\n", + " x: array([[nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],...\n", + " y: array([[nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],...\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud MISR/MISRCOSP-CLDLOW_TAU1.3_MISR-SON-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud MISR/MISRCOSP-CLDLOW_TAU1.3_MISR-SON-global_test.nc\n", + " * var_key: CLDLOW_TAU1.3_MISR\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud MISR/MISRCOSP-CLDLOW_TAU9.4_MISR-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud MISR/MISRCOSP-CLDLOW_TAU9.4_MISR-ANN-global_ref.nc\n", + " * var_key: CLDLOW_TAU9.4_MISR\n", + " \n", + "Not equal to tolerance rtol=1e-05, atol=0\n", + "\n", + "Mismatched elements: 39323 / 64800 (60.7%)\n", + "Max absolute difference: 31.085188\n", + "Max relative difference: 0.96666664\n", + " x: array([[nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],...\n", + " y: array([[nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],...\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud MISR/MISRCOSP-CLDLOW_TAU9.4_MISR-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud MISR/MISRCOSP-CLDLOW_TAU9.4_MISR-ANN-global_test.nc\n", + " * var_key: CLDLOW_TAU9.4_MISR\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud MISR/MISRCOSP-CLDLOW_TAU9.4_MISR-DJF-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud MISR/MISRCOSP-CLDLOW_TAU9.4_MISR-DJF-global_ref.nc\n", + " * var_key: CLDLOW_TAU9.4_MISR\n", + " \n", + "Not equal to tolerance rtol=1e-05, atol=0\n", + "\n", + "Mismatched elements: 34485 / 64800 (53.2%)\n", + "Max absolute difference: 33.105377\n", + "Max relative difference: 0.99625933\n", + " x: array([[nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],...\n", + " y: array([[nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],...\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud MISR/MISRCOSP-CLDLOW_TAU9.4_MISR-DJF-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud MISR/MISRCOSP-CLDLOW_TAU9.4_MISR-DJF-global_test.nc\n", + " * var_key: CLDLOW_TAU9.4_MISR\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud MISR/MISRCOSP-CLDLOW_TAU9.4_MISR-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud MISR/MISRCOSP-CLDLOW_TAU9.4_MISR-JJA-global_ref.nc\n", + " * var_key: CLDLOW_TAU9.4_MISR\n", + " \n", + "Not equal to tolerance rtol=1e-05, atol=0\n", + "\n", + "Mismatched elements: 33486 / 64800 (51.7%)\n", + "Max absolute difference: 63.126827\n", + "Max relative difference: 1.\n", + " x: array([[nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],...\n", + " y: array([[nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],...\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud MISR/MISRCOSP-CLDLOW_TAU9.4_MISR-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud MISR/MISRCOSP-CLDLOW_TAU9.4_MISR-JJA-global_test.nc\n", + " * var_key: CLDLOW_TAU9.4_MISR\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud MISR/MISRCOSP-CLDLOW_TAU9.4_MISR-MAM-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud MISR/MISRCOSP-CLDLOW_TAU9.4_MISR-MAM-global_ref.nc\n", + " * var_key: CLDLOW_TAU9.4_MISR\n", + " \n", + "Not equal to tolerance rtol=1e-05, atol=0\n", + "\n", + "Mismatched elements: 35402 / 64800 (54.6%)\n", + "Max absolute difference: 35.162907\n", + "Max relative difference: 0.9961185\n", + " x: array([[nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],...\n", + " y: array([[nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],...\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud MISR/MISRCOSP-CLDLOW_TAU9.4_MISR-MAM-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud MISR/MISRCOSP-CLDLOW_TAU9.4_MISR-MAM-global_test.nc\n", + " * var_key: CLDLOW_TAU9.4_MISR\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud MISR/MISRCOSP-CLDLOW_TAU9.4_MISR-SON-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud MISR/MISRCOSP-CLDLOW_TAU9.4_MISR-SON-global_ref.nc\n", + " * var_key: CLDLOW_TAU9.4_MISR\n", + " \n", + "Not equal to tolerance rtol=1e-05, atol=0\n", + "\n", + "Mismatched elements: 35743 / 64800 (55.2%)\n", + "Max absolute difference: 30.59121\n", + "Max relative difference: 0.96700656\n", + " x: array([[nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],...\n", + " y: array([[nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],...\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud MISR/MISRCOSP-CLDLOW_TAU9.4_MISR-SON-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud MISR/MISRCOSP-CLDLOW_TAU9.4_MISR-SON-global_test.nc\n", + " * var_key: CLDLOW_TAU9.4_MISR\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud MISR/MISRCOSP-CLDTOT_TAU1.3_9.4_MISR-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud MISR/MISRCOSP-CLDTOT_TAU1.3_9.4_MISR-ANN-global_ref.nc\n", + " * var_key: CLDTOT_TAU1.3_9.4_MISR\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud MISR/MISRCOSP-CLDTOT_TAU1.3_9.4_MISR-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud MISR/MISRCOSP-CLDTOT_TAU1.3_9.4_MISR-ANN-global_test.nc\n", + " * var_key: CLDTOT_TAU1.3_9.4_MISR\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud MISR/MISRCOSP-CLDTOT_TAU1.3_9.4_MISR-DJF-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud MISR/MISRCOSP-CLDTOT_TAU1.3_9.4_MISR-DJF-global_ref.nc\n", + " * var_key: CLDTOT_TAU1.3_9.4_MISR\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud MISR/MISRCOSP-CLDTOT_TAU1.3_9.4_MISR-DJF-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud MISR/MISRCOSP-CLDTOT_TAU1.3_9.4_MISR-DJF-global_test.nc\n", + " * var_key: CLDTOT_TAU1.3_9.4_MISR\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud MISR/MISRCOSP-CLDTOT_TAU1.3_9.4_MISR-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud MISR/MISRCOSP-CLDTOT_TAU1.3_9.4_MISR-JJA-global_ref.nc\n", + " * var_key: CLDTOT_TAU1.3_9.4_MISR\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud MISR/MISRCOSP-CLDTOT_TAU1.3_9.4_MISR-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud MISR/MISRCOSP-CLDTOT_TAU1.3_9.4_MISR-JJA-global_test.nc\n", + " * var_key: CLDTOT_TAU1.3_9.4_MISR\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud MISR/MISRCOSP-CLDTOT_TAU1.3_9.4_MISR-MAM-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud MISR/MISRCOSP-CLDTOT_TAU1.3_9.4_MISR-MAM-global_ref.nc\n", + " * var_key: CLDTOT_TAU1.3_9.4_MISR\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud MISR/MISRCOSP-CLDTOT_TAU1.3_9.4_MISR-MAM-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud MISR/MISRCOSP-CLDTOT_TAU1.3_9.4_MISR-MAM-global_test.nc\n", + " * var_key: CLDTOT_TAU1.3_9.4_MISR\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud MISR/MISRCOSP-CLDTOT_TAU1.3_9.4_MISR-SON-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud MISR/MISRCOSP-CLDTOT_TAU1.3_9.4_MISR-SON-global_ref.nc\n", + " * var_key: CLDTOT_TAU1.3_9.4_MISR\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud MISR/MISRCOSP-CLDTOT_TAU1.3_9.4_MISR-SON-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud MISR/MISRCOSP-CLDTOT_TAU1.3_9.4_MISR-SON-global_test.nc\n", + " * var_key: CLDTOT_TAU1.3_9.4_MISR\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud MISR/MISRCOSP-CLDTOT_TAU1.3_MISR-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud MISR/MISRCOSP-CLDTOT_TAU1.3_MISR-ANN-global_ref.nc\n", + " * var_key: CLDTOT_TAU1.3_MISR\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud MISR/MISRCOSP-CLDTOT_TAU1.3_MISR-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud MISR/MISRCOSP-CLDTOT_TAU1.3_MISR-ANN-global_test.nc\n", + " * var_key: CLDTOT_TAU1.3_MISR\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud MISR/MISRCOSP-CLDTOT_TAU1.3_MISR-DJF-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud MISR/MISRCOSP-CLDTOT_TAU1.3_MISR-DJF-global_ref.nc\n", + " * var_key: CLDTOT_TAU1.3_MISR\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud MISR/MISRCOSP-CLDTOT_TAU1.3_MISR-DJF-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud MISR/MISRCOSP-CLDTOT_TAU1.3_MISR-DJF-global_test.nc\n", + " * var_key: CLDTOT_TAU1.3_MISR\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud MISR/MISRCOSP-CLDTOT_TAU1.3_MISR-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud MISR/MISRCOSP-CLDTOT_TAU1.3_MISR-JJA-global_ref.nc\n", + " * var_key: CLDTOT_TAU1.3_MISR\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud MISR/MISRCOSP-CLDTOT_TAU1.3_MISR-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud MISR/MISRCOSP-CLDTOT_TAU1.3_MISR-JJA-global_test.nc\n", + " * var_key: CLDTOT_TAU1.3_MISR\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud MISR/MISRCOSP-CLDTOT_TAU1.3_MISR-MAM-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud MISR/MISRCOSP-CLDTOT_TAU1.3_MISR-MAM-global_ref.nc\n", + " * var_key: CLDTOT_TAU1.3_MISR\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud MISR/MISRCOSP-CLDTOT_TAU1.3_MISR-MAM-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud MISR/MISRCOSP-CLDTOT_TAU1.3_MISR-MAM-global_test.nc\n", + " * var_key: CLDTOT_TAU1.3_MISR\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud MISR/MISRCOSP-CLDTOT_TAU1.3_MISR-SON-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud MISR/MISRCOSP-CLDTOT_TAU1.3_MISR-SON-global_ref.nc\n", + " * var_key: CLDTOT_TAU1.3_MISR\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud MISR/MISRCOSP-CLDTOT_TAU1.3_MISR-SON-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud MISR/MISRCOSP-CLDTOT_TAU1.3_MISR-SON-global_test.nc\n", + " * var_key: CLDTOT_TAU1.3_MISR\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud MISR/MISRCOSP-CLDTOT_TAU9.4_MISR-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud MISR/MISRCOSP-CLDTOT_TAU9.4_MISR-ANN-global_ref.nc\n", + " * var_key: CLDTOT_TAU9.4_MISR\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud MISR/MISRCOSP-CLDTOT_TAU9.4_MISR-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud MISR/MISRCOSP-CLDTOT_TAU9.4_MISR-ANN-global_test.nc\n", + " * var_key: CLDTOT_TAU9.4_MISR\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud MISR/MISRCOSP-CLDTOT_TAU9.4_MISR-DJF-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud MISR/MISRCOSP-CLDTOT_TAU9.4_MISR-DJF-global_ref.nc\n", + " * var_key: CLDTOT_TAU9.4_MISR\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud MISR/MISRCOSP-CLDTOT_TAU9.4_MISR-DJF-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud MISR/MISRCOSP-CLDTOT_TAU9.4_MISR-DJF-global_test.nc\n", + " * var_key: CLDTOT_TAU9.4_MISR\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud MISR/MISRCOSP-CLDTOT_TAU9.4_MISR-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud MISR/MISRCOSP-CLDTOT_TAU9.4_MISR-JJA-global_ref.nc\n", + " * var_key: CLDTOT_TAU9.4_MISR\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud MISR/MISRCOSP-CLDTOT_TAU9.4_MISR-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud MISR/MISRCOSP-CLDTOT_TAU9.4_MISR-JJA-global_test.nc\n", + " * var_key: CLDTOT_TAU9.4_MISR\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud MISR/MISRCOSP-CLDTOT_TAU9.4_MISR-MAM-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud MISR/MISRCOSP-CLDTOT_TAU9.4_MISR-MAM-global_ref.nc\n", + " * var_key: CLDTOT_TAU9.4_MISR\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud MISR/MISRCOSP-CLDTOT_TAU9.4_MISR-MAM-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud MISR/MISRCOSP-CLDTOT_TAU9.4_MISR-MAM-global_test.nc\n", + " * var_key: CLDTOT_TAU9.4_MISR\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud MISR/MISRCOSP-CLDTOT_TAU9.4_MISR-SON-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud MISR/MISRCOSP-CLDTOT_TAU9.4_MISR-SON-global_ref.nc\n", + " * var_key: CLDTOT_TAU9.4_MISR\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud MISR/MISRCOSP-CLDTOT_TAU9.4_MISR-SON-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud MISR/MISRCOSP-CLDTOT_TAU9.4_MISR-SON-global_test.nc\n", + " * var_key: CLDTOT_TAU9.4_MISR\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud MODIS/MODISCOSP-CLDHGH_TAU1.3_9.4_MODIS-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud MODIS/MODISCOSP-CLDHGH_TAU1.3_9.4_MODIS-ANN-global_ref.nc\n", + " * var_key: CLDHGH_TAU1.3_9.4_MODIS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud MODIS/MODISCOSP-CLDHGH_TAU1.3_9.4_MODIS-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud MODIS/MODISCOSP-CLDHGH_TAU1.3_9.4_MODIS-ANN-global_test.nc\n", + " * var_key: CLDHGH_TAU1.3_9.4_MODIS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud MODIS/MODISCOSP-CLDHGH_TAU1.3_9.4_MODIS-DJF-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud MODIS/MODISCOSP-CLDHGH_TAU1.3_9.4_MODIS-DJF-global_ref.nc\n", + " * var_key: CLDHGH_TAU1.3_9.4_MODIS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud MODIS/MODISCOSP-CLDHGH_TAU1.3_9.4_MODIS-DJF-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud MODIS/MODISCOSP-CLDHGH_TAU1.3_9.4_MODIS-DJF-global_test.nc\n", + " * var_key: CLDHGH_TAU1.3_9.4_MODIS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud MODIS/MODISCOSP-CLDHGH_TAU1.3_9.4_MODIS-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud MODIS/MODISCOSP-CLDHGH_TAU1.3_9.4_MODIS-JJA-global_ref.nc\n", + " * var_key: CLDHGH_TAU1.3_9.4_MODIS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud MODIS/MODISCOSP-CLDHGH_TAU1.3_9.4_MODIS-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud MODIS/MODISCOSP-CLDHGH_TAU1.3_9.4_MODIS-JJA-global_test.nc\n", + " * var_key: CLDHGH_TAU1.3_9.4_MODIS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud MODIS/MODISCOSP-CLDHGH_TAU1.3_9.4_MODIS-MAM-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud MODIS/MODISCOSP-CLDHGH_TAU1.3_9.4_MODIS-MAM-global_ref.nc\n", + " * var_key: CLDHGH_TAU1.3_9.4_MODIS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud MODIS/MODISCOSP-CLDHGH_TAU1.3_9.4_MODIS-MAM-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud MODIS/MODISCOSP-CLDHGH_TAU1.3_9.4_MODIS-MAM-global_test.nc\n", + " * var_key: CLDHGH_TAU1.3_9.4_MODIS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud MODIS/MODISCOSP-CLDHGH_TAU1.3_9.4_MODIS-SON-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud MODIS/MODISCOSP-CLDHGH_TAU1.3_9.4_MODIS-SON-global_ref.nc\n", + " * var_key: CLDHGH_TAU1.3_9.4_MODIS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud MODIS/MODISCOSP-CLDHGH_TAU1.3_9.4_MODIS-SON-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud MODIS/MODISCOSP-CLDHGH_TAU1.3_9.4_MODIS-SON-global_test.nc\n", + " * var_key: CLDHGH_TAU1.3_9.4_MODIS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud MODIS/MODISCOSP-CLDHGH_TAU1.3_MODIS-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud MODIS/MODISCOSP-CLDHGH_TAU1.3_MODIS-ANN-global_ref.nc\n", + " * var_key: CLDHGH_TAU1.3_MODIS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud MODIS/MODISCOSP-CLDHGH_TAU1.3_MODIS-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud MODIS/MODISCOSP-CLDHGH_TAU1.3_MODIS-ANN-global_test.nc\n", + " * var_key: CLDHGH_TAU1.3_MODIS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud MODIS/MODISCOSP-CLDHGH_TAU1.3_MODIS-DJF-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud MODIS/MODISCOSP-CLDHGH_TAU1.3_MODIS-DJF-global_ref.nc\n", + " * var_key: CLDHGH_TAU1.3_MODIS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud MODIS/MODISCOSP-CLDHGH_TAU1.3_MODIS-DJF-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud MODIS/MODISCOSP-CLDHGH_TAU1.3_MODIS-DJF-global_test.nc\n", + " * var_key: CLDHGH_TAU1.3_MODIS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud MODIS/MODISCOSP-CLDHGH_TAU1.3_MODIS-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud MODIS/MODISCOSP-CLDHGH_TAU1.3_MODIS-JJA-global_ref.nc\n", + " * var_key: CLDHGH_TAU1.3_MODIS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud MODIS/MODISCOSP-CLDHGH_TAU1.3_MODIS-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud MODIS/MODISCOSP-CLDHGH_TAU1.3_MODIS-JJA-global_test.nc\n", + " * var_key: CLDHGH_TAU1.3_MODIS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud MODIS/MODISCOSP-CLDHGH_TAU1.3_MODIS-MAM-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud MODIS/MODISCOSP-CLDHGH_TAU1.3_MODIS-MAM-global_ref.nc\n", + " * var_key: CLDHGH_TAU1.3_MODIS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud MODIS/MODISCOSP-CLDHGH_TAU1.3_MODIS-MAM-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud MODIS/MODISCOSP-CLDHGH_TAU1.3_MODIS-MAM-global_test.nc\n", + " * var_key: CLDHGH_TAU1.3_MODIS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud MODIS/MODISCOSP-CLDHGH_TAU1.3_MODIS-SON-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud MODIS/MODISCOSP-CLDHGH_TAU1.3_MODIS-SON-global_ref.nc\n", + " * var_key: CLDHGH_TAU1.3_MODIS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud MODIS/MODISCOSP-CLDHGH_TAU1.3_MODIS-SON-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud MODIS/MODISCOSP-CLDHGH_TAU1.3_MODIS-SON-global_test.nc\n", + " * var_key: CLDHGH_TAU1.3_MODIS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud MODIS/MODISCOSP-CLDHGH_TAU9.4_MODIS-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud MODIS/MODISCOSP-CLDHGH_TAU9.4_MODIS-ANN-global_ref.nc\n", + " * var_key: CLDHGH_TAU9.4_MODIS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud MODIS/MODISCOSP-CLDHGH_TAU9.4_MODIS-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud MODIS/MODISCOSP-CLDHGH_TAU9.4_MODIS-ANN-global_test.nc\n", + " * var_key: CLDHGH_TAU9.4_MODIS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud MODIS/MODISCOSP-CLDHGH_TAU9.4_MODIS-DJF-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud MODIS/MODISCOSP-CLDHGH_TAU9.4_MODIS-DJF-global_ref.nc\n", + " * var_key: CLDHGH_TAU9.4_MODIS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud MODIS/MODISCOSP-CLDHGH_TAU9.4_MODIS-DJF-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud MODIS/MODISCOSP-CLDHGH_TAU9.4_MODIS-DJF-global_test.nc\n", + " * var_key: CLDHGH_TAU9.4_MODIS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud MODIS/MODISCOSP-CLDHGH_TAU9.4_MODIS-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud MODIS/MODISCOSP-CLDHGH_TAU9.4_MODIS-JJA-global_ref.nc\n", + " * var_key: CLDHGH_TAU9.4_MODIS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud MODIS/MODISCOSP-CLDHGH_TAU9.4_MODIS-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud MODIS/MODISCOSP-CLDHGH_TAU9.4_MODIS-JJA-global_test.nc\n", + " * var_key: CLDHGH_TAU9.4_MODIS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud MODIS/MODISCOSP-CLDHGH_TAU9.4_MODIS-MAM-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud MODIS/MODISCOSP-CLDHGH_TAU9.4_MODIS-MAM-global_ref.nc\n", + " * var_key: CLDHGH_TAU9.4_MODIS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud MODIS/MODISCOSP-CLDHGH_TAU9.4_MODIS-MAM-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud MODIS/MODISCOSP-CLDHGH_TAU9.4_MODIS-MAM-global_test.nc\n", + " * var_key: CLDHGH_TAU9.4_MODIS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud MODIS/MODISCOSP-CLDHGH_TAU9.4_MODIS-SON-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud MODIS/MODISCOSP-CLDHGH_TAU9.4_MODIS-SON-global_ref.nc\n", + " * var_key: CLDHGH_TAU9.4_MODIS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud MODIS/MODISCOSP-CLDHGH_TAU9.4_MODIS-SON-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud MODIS/MODISCOSP-CLDHGH_TAU9.4_MODIS-SON-global_test.nc\n", + " * var_key: CLDHGH_TAU9.4_MODIS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud MODIS/MODISCOSP-CLDTOT_TAU1.3_9.4_MODIS-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud MODIS/MODISCOSP-CLDTOT_TAU1.3_9.4_MODIS-ANN-global_ref.nc\n", + " * var_key: CLDTOT_TAU1.3_9.4_MODIS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud MODIS/MODISCOSP-CLDTOT_TAU1.3_9.4_MODIS-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud MODIS/MODISCOSP-CLDTOT_TAU1.3_9.4_MODIS-ANN-global_test.nc\n", + " * var_key: CLDTOT_TAU1.3_9.4_MODIS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud MODIS/MODISCOSP-CLDTOT_TAU1.3_9.4_MODIS-DJF-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud MODIS/MODISCOSP-CLDTOT_TAU1.3_9.4_MODIS-DJF-global_ref.nc\n", + " * var_key: CLDTOT_TAU1.3_9.4_MODIS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud MODIS/MODISCOSP-CLDTOT_TAU1.3_9.4_MODIS-DJF-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud MODIS/MODISCOSP-CLDTOT_TAU1.3_9.4_MODIS-DJF-global_test.nc\n", + " * var_key: CLDTOT_TAU1.3_9.4_MODIS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud MODIS/MODISCOSP-CLDTOT_TAU1.3_9.4_MODIS-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud MODIS/MODISCOSP-CLDTOT_TAU1.3_9.4_MODIS-JJA-global_ref.nc\n", + " * var_key: CLDTOT_TAU1.3_9.4_MODIS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud MODIS/MODISCOSP-CLDTOT_TAU1.3_9.4_MODIS-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud MODIS/MODISCOSP-CLDTOT_TAU1.3_9.4_MODIS-JJA-global_test.nc\n", + " * var_key: CLDTOT_TAU1.3_9.4_MODIS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud MODIS/MODISCOSP-CLDTOT_TAU1.3_9.4_MODIS-MAM-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud MODIS/MODISCOSP-CLDTOT_TAU1.3_9.4_MODIS-MAM-global_ref.nc\n", + " * var_key: CLDTOT_TAU1.3_9.4_MODIS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud MODIS/MODISCOSP-CLDTOT_TAU1.3_9.4_MODIS-MAM-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud MODIS/MODISCOSP-CLDTOT_TAU1.3_9.4_MODIS-MAM-global_test.nc\n", + " * var_key: CLDTOT_TAU1.3_9.4_MODIS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud MODIS/MODISCOSP-CLDTOT_TAU1.3_9.4_MODIS-SON-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud MODIS/MODISCOSP-CLDTOT_TAU1.3_9.4_MODIS-SON-global_ref.nc\n", + " * var_key: CLDTOT_TAU1.3_9.4_MODIS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud MODIS/MODISCOSP-CLDTOT_TAU1.3_9.4_MODIS-SON-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud MODIS/MODISCOSP-CLDTOT_TAU1.3_9.4_MODIS-SON-global_test.nc\n", + " * var_key: CLDTOT_TAU1.3_9.4_MODIS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud MODIS/MODISCOSP-CLDTOT_TAU1.3_MODIS-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud MODIS/MODISCOSP-CLDTOT_TAU1.3_MODIS-ANN-global_ref.nc\n", + " * var_key: CLDTOT_TAU1.3_MODIS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud MODIS/MODISCOSP-CLDTOT_TAU1.3_MODIS-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud MODIS/MODISCOSP-CLDTOT_TAU1.3_MODIS-ANN-global_test.nc\n", + " * var_key: CLDTOT_TAU1.3_MODIS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud MODIS/MODISCOSP-CLDTOT_TAU1.3_MODIS-DJF-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud MODIS/MODISCOSP-CLDTOT_TAU1.3_MODIS-DJF-global_ref.nc\n", + " * var_key: CLDTOT_TAU1.3_MODIS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud MODIS/MODISCOSP-CLDTOT_TAU1.3_MODIS-DJF-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud MODIS/MODISCOSP-CLDTOT_TAU1.3_MODIS-DJF-global_test.nc\n", + " * var_key: CLDTOT_TAU1.3_MODIS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud MODIS/MODISCOSP-CLDTOT_TAU1.3_MODIS-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud MODIS/MODISCOSP-CLDTOT_TAU1.3_MODIS-JJA-global_ref.nc\n", + " * var_key: CLDTOT_TAU1.3_MODIS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud MODIS/MODISCOSP-CLDTOT_TAU1.3_MODIS-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud MODIS/MODISCOSP-CLDTOT_TAU1.3_MODIS-JJA-global_test.nc\n", + " * var_key: CLDTOT_TAU1.3_MODIS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud MODIS/MODISCOSP-CLDTOT_TAU1.3_MODIS-MAM-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud MODIS/MODISCOSP-CLDTOT_TAU1.3_MODIS-MAM-global_ref.nc\n", + " * var_key: CLDTOT_TAU1.3_MODIS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud MODIS/MODISCOSP-CLDTOT_TAU1.3_MODIS-MAM-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud MODIS/MODISCOSP-CLDTOT_TAU1.3_MODIS-MAM-global_test.nc\n", + " * var_key: CLDTOT_TAU1.3_MODIS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud MODIS/MODISCOSP-CLDTOT_TAU1.3_MODIS-SON-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud MODIS/MODISCOSP-CLDTOT_TAU1.3_MODIS-SON-global_ref.nc\n", + " * var_key: CLDTOT_TAU1.3_MODIS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud MODIS/MODISCOSP-CLDTOT_TAU1.3_MODIS-SON-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud MODIS/MODISCOSP-CLDTOT_TAU1.3_MODIS-SON-global_test.nc\n", + " * var_key: CLDTOT_TAU1.3_MODIS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud MODIS/MODISCOSP-CLDTOT_TAU9.4_MODIS-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud MODIS/MODISCOSP-CLDTOT_TAU9.4_MODIS-ANN-global_ref.nc\n", + " * var_key: CLDTOT_TAU9.4_MODIS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud MODIS/MODISCOSP-CLDTOT_TAU9.4_MODIS-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud MODIS/MODISCOSP-CLDTOT_TAU9.4_MODIS-ANN-global_test.nc\n", + " * var_key: CLDTOT_TAU9.4_MODIS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud MODIS/MODISCOSP-CLDTOT_TAU9.4_MODIS-DJF-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud MODIS/MODISCOSP-CLDTOT_TAU9.4_MODIS-DJF-global_ref.nc\n", + " * var_key: CLDTOT_TAU9.4_MODIS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud MODIS/MODISCOSP-CLDTOT_TAU9.4_MODIS-DJF-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud MODIS/MODISCOSP-CLDTOT_TAU9.4_MODIS-DJF-global_test.nc\n", + " * var_key: CLDTOT_TAU9.4_MODIS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud MODIS/MODISCOSP-CLDTOT_TAU9.4_MODIS-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud MODIS/MODISCOSP-CLDTOT_TAU9.4_MODIS-JJA-global_ref.nc\n", + " * var_key: CLDTOT_TAU9.4_MODIS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud MODIS/MODISCOSP-CLDTOT_TAU9.4_MODIS-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud MODIS/MODISCOSP-CLDTOT_TAU9.4_MODIS-JJA-global_test.nc\n", + " * var_key: CLDTOT_TAU9.4_MODIS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud MODIS/MODISCOSP-CLDTOT_TAU9.4_MODIS-MAM-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud MODIS/MODISCOSP-CLDTOT_TAU9.4_MODIS-MAM-global_ref.nc\n", + " * var_key: CLDTOT_TAU9.4_MODIS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud MODIS/MODISCOSP-CLDTOT_TAU9.4_MODIS-MAM-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud MODIS/MODISCOSP-CLDTOT_TAU9.4_MODIS-MAM-global_test.nc\n", + " * var_key: CLDTOT_TAU9.4_MODIS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud MODIS/MODISCOSP-CLDTOT_TAU9.4_MODIS-SON-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud MODIS/MODISCOSP-CLDTOT_TAU9.4_MODIS-SON-global_ref.nc\n", + " * var_key: CLDTOT_TAU9.4_MODIS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud MODIS/MODISCOSP-CLDTOT_TAU9.4_MODIS-SON-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud MODIS/MODISCOSP-CLDTOT_TAU9.4_MODIS-SON-global_test.nc\n", + " * var_key: CLDTOT_TAU9.4_MODIS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud SSM/I/SSMI-TGCLDLWP_OCN-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud SSM/I/SSMI-TGCLDLWP_OCN-ANN-global_ref.nc\n", + " * var_key: TGCLDLWP_OCN\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud SSM/I/SSMI-TGCLDLWP_OCN-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud SSM/I/SSMI-TGCLDLWP_OCN-ANN-global_test.nc\n", + " * var_key: TGCLDLWP_OCN\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud SSM/I/SSMI-TGCLDLWP_OCN-DJF-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud SSM/I/SSMI-TGCLDLWP_OCN-DJF-global_ref.nc\n", + " * var_key: TGCLDLWP_OCN\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud SSM/I/SSMI-TGCLDLWP_OCN-DJF-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud SSM/I/SSMI-TGCLDLWP_OCN-DJF-global_test.nc\n", + " * var_key: TGCLDLWP_OCN\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud SSM/I/SSMI-TGCLDLWP_OCN-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud SSM/I/SSMI-TGCLDLWP_OCN-JJA-global_ref.nc\n", + " * var_key: TGCLDLWP_OCN\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud SSM/I/SSMI-TGCLDLWP_OCN-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud SSM/I/SSMI-TGCLDLWP_OCN-JJA-global_test.nc\n", + " * var_key: TGCLDLWP_OCN\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud SSM/I/SSMI-TGCLDLWP_OCN-MAM-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud SSM/I/SSMI-TGCLDLWP_OCN-MAM-global_test.nc\n", + " * var_key: TGCLDLWP_OCN\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/Cloud SSM/I/SSMI-TGCLDLWP_OCN-SON-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud SSM/I/SSMI-TGCLDLWP_OCN-SON-global_test.nc\n", + " * var_key: TGCLDLWP_OCN\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-FLNS-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-FLNS-ANN-global_ref.nc\n", + " * var_key: FLNS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-FLNS-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-FLNS-ANN-global_test.nc\n", + " * var_key: FLNS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-FLNS-DJF-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-FLNS-DJF-global_ref.nc\n", + " * var_key: FLNS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-FLNS-DJF-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-FLNS-DJF-global_test.nc\n", + " * var_key: FLNS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-FLNS-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-FLNS-JJA-global_ref.nc\n", + " * var_key: FLNS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-FLNS-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-FLNS-JJA-global_test.nc\n", + " * var_key: FLNS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-FLNS-MAM-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-FLNS-MAM-global_ref.nc\n", + " * var_key: FLNS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-FLNS-MAM-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-FLNS-MAM-global_test.nc\n", + " * var_key: FLNS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-FLNS-SON-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-FLNS-SON-global_ref.nc\n", + " * var_key: FLNS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-FLNS-SON-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-FLNS-SON-global_test.nc\n", + " * var_key: FLNS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-FSNS-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-FSNS-ANN-global_ref.nc\n", + " * var_key: FSNS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-FSNS-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-FSNS-ANN-global_test.nc\n", + " * var_key: FSNS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-FSNS-DJF-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-FSNS-DJF-global_ref.nc\n", + " * var_key: FSNS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-FSNS-DJF-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-FSNS-DJF-global_test.nc\n", + " * var_key: FSNS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-FSNS-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-FSNS-JJA-global_ref.nc\n", + " * var_key: FSNS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-FSNS-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-FSNS-JJA-global_test.nc\n", + " * var_key: FSNS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-FSNS-MAM-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-FSNS-MAM-global_ref.nc\n", + " * var_key: FSNS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-FSNS-MAM-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-FSNS-MAM-global_test.nc\n", + " * var_key: FSNS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-FSNS-SON-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-FSNS-SON-global_ref.nc\n", + " * var_key: FSNS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-FSNS-SON-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-FSNS-SON-global_test.nc\n", + " * var_key: FSNS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-LHFLX-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-LHFLX-ANN-global_ref.nc\n", + " * var_key: LHFLX\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-LHFLX-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-LHFLX-ANN-global_test.nc\n", + " * var_key: LHFLX\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-LHFLX-DJF-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-LHFLX-DJF-global_ref.nc\n", + " * var_key: LHFLX\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-LHFLX-DJF-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-LHFLX-DJF-global_test.nc\n", + " * var_key: LHFLX\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-LHFLX-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-LHFLX-JJA-global_ref.nc\n", + " * var_key: LHFLX\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-LHFLX-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-LHFLX-JJA-global_test.nc\n", + " * var_key: LHFLX\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-LHFLX-MAM-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-LHFLX-MAM-global_ref.nc\n", + " * var_key: LHFLX\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-LHFLX-MAM-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-LHFLX-MAM-global_test.nc\n", + " * var_key: LHFLX\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-LHFLX-SON-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-LHFLX-SON-global_ref.nc\n", + " * var_key: LHFLX\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-LHFLX-SON-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-LHFLX-SON-global_test.nc\n", + " * var_key: LHFLX\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-NET_FLUX_SRF-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-NET_FLUX_SRF-ANN-global_ref.nc\n", + " * var_key: NET_FLUX_SRF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-NET_FLUX_SRF-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-NET_FLUX_SRF-ANN-global_test.nc\n", + " * var_key: NET_FLUX_SRF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-NET_FLUX_SRF-DJF-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-NET_FLUX_SRF-DJF-global_ref.nc\n", + " * var_key: NET_FLUX_SRF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-NET_FLUX_SRF-DJF-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-NET_FLUX_SRF-DJF-global_test.nc\n", + " * var_key: NET_FLUX_SRF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-NET_FLUX_SRF-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-NET_FLUX_SRF-JJA-global_ref.nc\n", + " * var_key: NET_FLUX_SRF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-NET_FLUX_SRF-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-NET_FLUX_SRF-JJA-global_test.nc\n", + " * var_key: NET_FLUX_SRF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-NET_FLUX_SRF-MAM-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-NET_FLUX_SRF-MAM-global_ref.nc\n", + " * var_key: NET_FLUX_SRF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-NET_FLUX_SRF-MAM-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-NET_FLUX_SRF-MAM-global_test.nc\n", + " * var_key: NET_FLUX_SRF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-NET_FLUX_SRF-SON-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-NET_FLUX_SRF-SON-global_ref.nc\n", + " * var_key: NET_FLUX_SRF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-NET_FLUX_SRF-SON-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-NET_FLUX_SRF-SON-global_test.nc\n", + " * var_key: NET_FLUX_SRF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-OMEGA-200-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-OMEGA-200-ANN-global_ref.nc\n", + " * var_key: OMEGA\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-OMEGA-200-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-OMEGA-200-ANN-global_test.nc\n", + " * var_key: OMEGA\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-OMEGA-200-DJF-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-OMEGA-200-DJF-global_ref.nc\n", + " * var_key: OMEGA\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-OMEGA-200-DJF-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-OMEGA-200-DJF-global_test.nc\n", + " * var_key: OMEGA\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-OMEGA-200-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-OMEGA-200-JJA-global_ref.nc\n", + " * var_key: OMEGA\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-OMEGA-200-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-OMEGA-200-JJA-global_test.nc\n", + " * var_key: OMEGA\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-OMEGA-200-MAM-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-OMEGA-200-MAM-global_ref.nc\n", + " * var_key: OMEGA\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-OMEGA-200-MAM-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-OMEGA-200-MAM-global_test.nc\n", + " * var_key: OMEGA\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-OMEGA-200-SON-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-OMEGA-200-SON-global_ref.nc\n", + " * var_key: OMEGA\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-OMEGA-200-SON-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-OMEGA-200-SON-global_test.nc\n", + " * var_key: OMEGA\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-OMEGA-500-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-OMEGA-500-ANN-global_ref.nc\n", + " * var_key: OMEGA\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-OMEGA-500-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-OMEGA-500-ANN-global_test.nc\n", + " * var_key: OMEGA\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-OMEGA-500-DJF-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-OMEGA-500-DJF-global_ref.nc\n", + " * var_key: OMEGA\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-OMEGA-500-DJF-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-OMEGA-500-DJF-global_test.nc\n", + " * var_key: OMEGA\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-OMEGA-500-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-OMEGA-500-JJA-global_ref.nc\n", + " * var_key: OMEGA\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-OMEGA-500-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-OMEGA-500-JJA-global_test.nc\n", + " * var_key: OMEGA\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-OMEGA-500-MAM-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-OMEGA-500-MAM-global_ref.nc\n", + " * var_key: OMEGA\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-OMEGA-500-MAM-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-OMEGA-500-MAM-global_test.nc\n", + " * var_key: OMEGA\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-OMEGA-500-SON-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-OMEGA-500-SON-global_ref.nc\n", + " * var_key: OMEGA\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-OMEGA-500-SON-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-OMEGA-500-SON-global_test.nc\n", + " * var_key: OMEGA\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-OMEGA-850-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-OMEGA-850-ANN-global_ref.nc\n", + " * var_key: OMEGA\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-OMEGA-850-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-OMEGA-850-ANN-global_test.nc\n", + " * var_key: OMEGA\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-OMEGA-850-DJF-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-OMEGA-850-DJF-global_ref.nc\n", + " * var_key: OMEGA\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-OMEGA-850-DJF-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-OMEGA-850-DJF-global_test.nc\n", + " * var_key: OMEGA\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-OMEGA-850-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-OMEGA-850-JJA-global_ref.nc\n", + " * var_key: OMEGA\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-OMEGA-850-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-OMEGA-850-JJA-global_test.nc\n", + " * var_key: OMEGA\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-OMEGA-850-MAM-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-OMEGA-850-MAM-global_ref.nc\n", + " * var_key: OMEGA\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-OMEGA-850-MAM-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-OMEGA-850-MAM-global_test.nc\n", + " * var_key: OMEGA\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-OMEGA-850-SON-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-OMEGA-850-SON-global_ref.nc\n", + " * var_key: OMEGA\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-OMEGA-850-SON-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-OMEGA-850-SON-global_test.nc\n", + " * var_key: OMEGA\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-PRECT-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-PRECT-ANN-global_ref.nc\n", + " * var_key: PRECT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-PRECT-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-PRECT-ANN-global_test.nc\n", + " * var_key: PRECT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-PRECT-DJF-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-PRECT-DJF-global_ref.nc\n", + " * var_key: PRECT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-PRECT-DJF-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-PRECT-DJF-global_test.nc\n", + " * var_key: PRECT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-PRECT-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-PRECT-JJA-global_ref.nc\n", + " * var_key: PRECT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-PRECT-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-PRECT-JJA-global_test.nc\n", + " * var_key: PRECT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-PRECT-MAM-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-PRECT-MAM-global_ref.nc\n", + " * var_key: PRECT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-PRECT-MAM-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-PRECT-MAM-global_test.nc\n", + " * var_key: PRECT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-PRECT-SON-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-PRECT-SON-global_ref.nc\n", + " * var_key: PRECT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-PRECT-SON-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-PRECT-SON-global_test.nc\n", + " * var_key: PRECT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-PSL-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-PSL-ANN-global_ref.nc\n", + " * var_key: PSL\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-PSL-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-PSL-ANN-global_test.nc\n", + " * var_key: PSL\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-PSL-DJF-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-PSL-DJF-global_ref.nc\n", + " * var_key: PSL\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-PSL-DJF-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-PSL-DJF-global_test.nc\n", + " * var_key: PSL\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-PSL-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-PSL-JJA-global_ref.nc\n", + " * var_key: PSL\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-PSL-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-PSL-JJA-global_test.nc\n", + " * var_key: PSL\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-PSL-MAM-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-PSL-MAM-global_ref.nc\n", + " * var_key: PSL\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-PSL-MAM-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-PSL-MAM-global_test.nc\n", + " * var_key: PSL\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-PSL-SON-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-PSL-SON-global_ref.nc\n", + " * var_key: PSL\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-PSL-SON-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-PSL-SON-global_test.nc\n", + " * var_key: PSL\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-SHFLX-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-SHFLX-ANN-global_ref.nc\n", + " * var_key: SHFLX\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-SHFLX-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-SHFLX-ANN-global_test.nc\n", + " * var_key: SHFLX\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-SHFLX-DJF-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-SHFLX-DJF-global_ref.nc\n", + " * var_key: SHFLX\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-SHFLX-DJF-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-SHFLX-DJF-global_test.nc\n", + " * var_key: SHFLX\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-SHFLX-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-SHFLX-JJA-global_ref.nc\n", + " * var_key: SHFLX\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-SHFLX-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-SHFLX-JJA-global_test.nc\n", + " * var_key: SHFLX\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-SHFLX-MAM-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-SHFLX-MAM-global_ref.nc\n", + " * var_key: SHFLX\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-SHFLX-MAM-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-SHFLX-MAM-global_test.nc\n", + " * var_key: SHFLX\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-SHFLX-SON-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-SHFLX-SON-global_ref.nc\n", + " * var_key: SHFLX\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-SHFLX-SON-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-SHFLX-SON-global_test.nc\n", + " * var_key: SHFLX\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-T-200-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-T-200-ANN-global_ref.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-T-200-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-T-200-ANN-global_test.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-T-200-DJF-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-T-200-DJF-global_ref.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-T-200-DJF-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-T-200-DJF-global_test.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-T-200-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-T-200-JJA-global_ref.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-T-200-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-T-200-JJA-global_test.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-T-200-MAM-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-T-200-MAM-global_ref.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-T-200-MAM-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-T-200-MAM-global_test.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-T-200-SON-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-T-200-SON-global_ref.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-T-200-SON-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-T-200-SON-global_test.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-T-850-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-T-850-ANN-global_ref.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-T-850-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-T-850-ANN-global_test.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-T-850-DJF-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-T-850-DJF-global_ref.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-T-850-DJF-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-T-850-DJF-global_test.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-T-850-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-T-850-JJA-global_ref.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-T-850-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-T-850-JJA-global_test.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-T-850-MAM-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-T-850-MAM-global_ref.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-T-850-MAM-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-T-850-MAM-global_test.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-T-850-SON-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-T-850-SON-global_ref.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-T-850-SON-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-T-850-SON-global_test.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-TAUXY-ANN-ocean_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-TAUXY-ANN-ocean_ref.nc\n", + " * var_key: TAUXY\n", + " \n", + "Not equal to tolerance rtol=1e-05, atol=0\n", + "\n", + "x and y nan location mismatch:\n", + " x: array([[nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],...\n", + " y: array([[nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],...\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-TAUXY-ANN-ocean_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-TAUXY-ANN-ocean_test.nc\n", + " * var_key: TAUXY\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-TAUXY-DJF-ocean_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-TAUXY-DJF-ocean_ref.nc\n", + " * var_key: TAUXY\n", + " \n", + "Not equal to tolerance rtol=1e-05, atol=0\n", + "\n", + "x and y nan location mismatch:\n", + " x: array([[nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],...\n", + " y: array([[nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],...\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-TAUXY-DJF-ocean_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-TAUXY-DJF-ocean_test.nc\n", + " * var_key: TAUXY\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-TAUXY-JJA-ocean_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-TAUXY-JJA-ocean_ref.nc\n", + " * var_key: TAUXY\n", + " \n", + "Not equal to tolerance rtol=1e-05, atol=0\n", + "\n", + "x and y nan location mismatch:\n", + " x: array([[nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],...\n", + " y: array([[nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],...\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-TAUXY-JJA-ocean_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-TAUXY-JJA-ocean_test.nc\n", + " * var_key: TAUXY\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-TAUXY-MAM-ocean_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-TAUXY-MAM-ocean_ref.nc\n", + " * var_key: TAUXY\n", + " \n", + "Not equal to tolerance rtol=1e-05, atol=0\n", + "\n", + "x and y nan location mismatch:\n", + " x: array([[nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],...\n", + " y: array([[nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],...\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-TAUXY-MAM-ocean_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-TAUXY-MAM-ocean_test.nc\n", + " * var_key: TAUXY\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-TAUXY-SON-ocean_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-TAUXY-SON-ocean_ref.nc\n", + " * var_key: TAUXY\n", + " \n", + "Not equal to tolerance rtol=1e-05, atol=0\n", + "\n", + "x and y nan location mismatch:\n", + " x: array([[nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],...\n", + " y: array([[nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],...\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-TAUXY-SON-ocean_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-TAUXY-SON-ocean_test.nc\n", + " * var_key: TAUXY\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-TMQ-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-TMQ-ANN-global_ref.nc\n", + " * var_key: TMQ\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-TMQ-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-TMQ-ANN-global_test.nc\n", + " * var_key: TMQ\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-TMQ-DJF-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-TMQ-DJF-global_ref.nc\n", + " * var_key: TMQ\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-TMQ-DJF-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-TMQ-DJF-global_test.nc\n", + " * var_key: TMQ\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-TMQ-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-TMQ-JJA-global_ref.nc\n", + " * var_key: TMQ\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-TMQ-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-TMQ-JJA-global_test.nc\n", + " * var_key: TMQ\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-TMQ-MAM-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-TMQ-MAM-global_ref.nc\n", + " * var_key: TMQ\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-TMQ-MAM-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-TMQ-MAM-global_test.nc\n", + " * var_key: TMQ\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-TMQ-SON-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-TMQ-SON-global_ref.nc\n", + " * var_key: TMQ\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-TMQ-SON-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-TMQ-SON-global_test.nc\n", + " * var_key: TMQ\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-TREFHT-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-TREFHT-ANN-global_ref.nc\n", + " * var_key: TREFHT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-TREFHT-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-TREFHT-ANN-global_test.nc\n", + " * var_key: TREFHT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-TREFHT-ANN-land_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-TREFHT-ANN-land_ref.nc\n", + " * var_key: TREFHT\n", + " \n", + "Not equal to tolerance rtol=1e-05, atol=0\n", + "\n", + "x and y nan location mismatch:\n", + " x: array([[-45.434464, -45.434464, -45.434464, ..., -45.434464, -45.434464,\n", + " -45.434464],\n", + " [-45.000122, -44.998978, -44.99788 , ..., nan, nan,...\n", + " y: array([[-45.434464, -45.434464, -45.434464, ..., -45.434464, -45.434464,\n", + " -45.434464],\n", + " [-45.000122, -44.998978, -44.99788 , ..., -45.001938, -45.001343,...\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-TREFHT-ANN-land_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-TREFHT-ANN-land_test.nc\n", + " * var_key: TREFHT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-TREFHT-DJF-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-TREFHT-DJF-global_ref.nc\n", + " * var_key: TREFHT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-TREFHT-DJF-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-TREFHT-DJF-global_test.nc\n", + " * var_key: TREFHT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-TREFHT-DJF-land_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-TREFHT-DJF-land_ref.nc\n", + " * var_key: TREFHT\n", + " \n", + "Not equal to tolerance rtol=1e-05, atol=0\n", + "\n", + "x and y nan location mismatch:\n", + " x: array([[-31.09439 , -31.09439 , -31.09439 , ..., -31.09439 , -31.09439 ,\n", + " -31.09439 ],\n", + " [-30.849213, -30.84906 , -30.849075, ..., nan, nan,...\n", + " y: array([[-31.09439 , -31.09439 , -31.09439 , ..., -31.09439 , -31.09439 ,\n", + " -31.09439 ],\n", + " [-30.849213, -30.84906 , -30.849075, ..., -30.849228, -30.849197,...\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-TREFHT-DJF-land_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-TREFHT-DJF-land_test.nc\n", + " * var_key: TREFHT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-TREFHT-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-TREFHT-JJA-global_ref.nc\n", + " * var_key: TREFHT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-TREFHT-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-TREFHT-JJA-global_test.nc\n", + " * var_key: TREFHT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-TREFHT-JJA-land_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-TREFHT-JJA-land_ref.nc\n", + " * var_key: TREFHT\n", + " \n", + "Not equal to tolerance rtol=1e-05, atol=0\n", + "\n", + "x and y nan location mismatch:\n", + " x: array([[-53.867355, -53.867355, -53.867355, ..., -53.867355, -53.867355,\n", + " -53.867355],\n", + " [-53.28177 , -53.27997 , -53.27826 , ..., nan, nan,...\n", + " y: array([[-53.867355, -53.867355, -53.867355, ..., -53.867355, -53.867355,\n", + " -53.867355],\n", + " [-53.28177 , -53.27997 , -53.27826 , ..., -53.284897, -53.28383 ,...\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-TREFHT-JJA-land_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-TREFHT-JJA-land_test.nc\n", + " * var_key: TREFHT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-TREFHT-MAM-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-TREFHT-MAM-global_ref.nc\n", + " * var_key: TREFHT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-TREFHT-MAM-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-TREFHT-MAM-global_test.nc\n", + " * var_key: TREFHT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-TREFHT-MAM-land_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-TREFHT-MAM-land_ref.nc\n", + " * var_key: TREFHT\n", + " \n", + "Not equal to tolerance rtol=1e-05, atol=0\n", + "\n", + "x and y nan location mismatch:\n", + " x: array([[-50.700424, -50.700424, -50.700424, ..., -50.700424, -50.700424,\n", + " -50.700424],\n", + " [-50.166718, -50.164963, -50.16313 , ..., nan, nan,...\n", + " y: array([[-50.700424, -50.700424, -50.700424, ..., -50.700424, -50.700424,\n", + " -50.700424],\n", + " [-50.166718, -50.164963, -50.16313 , ..., -50.169525, -50.168625,...\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-TREFHT-MAM-land_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-TREFHT-MAM-land_test.nc\n", + " * var_key: TREFHT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-TREFHT-SON-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-TREFHT-SON-global_ref.nc\n", + " * var_key: TREFHT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-TREFHT-SON-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-TREFHT-SON-global_test.nc\n", + " * var_key: TREFHT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-TREFHT-SON-land_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-TREFHT-SON-land_ref.nc\n", + " * var_key: TREFHT\n", + " \n", + "Not equal to tolerance rtol=1e-05, atol=0\n", + "\n", + "x and y nan location mismatch:\n", + " x: array([[-45.767548, -45.767548, -45.767548, ..., -45.767548, -45.767548,\n", + " -45.767548],\n", + " [-45.39952 , -45.398636, -45.397827, ..., nan, nan,...\n", + " y: array([[-45.767548, -45.767548, -45.767548, ..., -45.767548, -45.767548,\n", + " -45.767548],\n", + " [-45.39952 , -45.398636, -45.397827, ..., -45.400772, -45.400375,...\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-TREFHT-SON-land_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-TREFHT-SON-land_test.nc\n", + " * var_key: TREFHT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-U-200-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-U-200-ANN-global_ref.nc\n", + " * var_key: U\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-U-200-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-U-200-ANN-global_test.nc\n", + " * var_key: U\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-U-200-DJF-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-U-200-DJF-global_ref.nc\n", + " * var_key: U\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-U-200-DJF-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-U-200-DJF-global_test.nc\n", + " * var_key: U\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-U-200-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-U-200-JJA-global_ref.nc\n", + " * var_key: U\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-U-200-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-U-200-JJA-global_test.nc\n", + " * var_key: U\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-U-200-MAM-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-U-200-MAM-global_ref.nc\n", + " * var_key: U\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-U-200-MAM-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-U-200-MAM-global_test.nc\n", + " * var_key: U\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-U-200-SON-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-U-200-SON-global_ref.nc\n", + " * var_key: U\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-U-200-SON-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-U-200-SON-global_test.nc\n", + " * var_key: U\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-U-850-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-U-850-ANN-global_ref.nc\n", + " * var_key: U\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-U-850-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-U-850-ANN-global_test.nc\n", + " * var_key: U\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-U-850-DJF-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-U-850-DJF-global_ref.nc\n", + " * var_key: U\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-U-850-DJF-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-U-850-DJF-global_test.nc\n", + " * var_key: U\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-U-850-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-U-850-JJA-global_ref.nc\n", + " * var_key: U\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-U-850-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-U-850-JJA-global_test.nc\n", + " * var_key: U\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-U-850-MAM-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-U-850-MAM-global_ref.nc\n", + " * var_key: U\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-U-850-MAM-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-U-850-MAM-global_test.nc\n", + " * var_key: U\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-U-850-SON-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-U-850-SON-global_ref.nc\n", + " * var_key: U\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-U-850-SON-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-U-850-SON-global_test.nc\n", + " * var_key: U\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-Z3-500-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-Z3-500-ANN-global_ref.nc\n", + " * var_key: Z3\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-Z3-500-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-Z3-500-ANN-global_test.nc\n", + " * var_key: Z3\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-Z3-500-DJF-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-Z3-500-DJF-global_ref.nc\n", + " * var_key: Z3\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-Z3-500-DJF-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-Z3-500-DJF-global_test.nc\n", + " * var_key: Z3\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-Z3-500-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-Z3-500-JJA-global_ref.nc\n", + " * var_key: Z3\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-Z3-500-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-Z3-500-JJA-global_test.nc\n", + " * var_key: Z3\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-Z3-500-MAM-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-Z3-500-MAM-global_ref.nc\n", + " * var_key: Z3\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-Z3-500-MAM-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-Z3-500-MAM-global_test.nc\n", + " * var_key: Z3\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-Z3-500-SON-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-Z3-500-SON-global_ref.nc\n", + " * var_key: Z3\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5-Z3-500-SON-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-Z3-500-SON-global_test.nc\n", + " * var_key: Z3\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5_ext-QREFHT-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5_ext-QREFHT-ANN-global_ref.nc\n", + " * var_key: QREFHT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5_ext-QREFHT-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5_ext-QREFHT-ANN-global_test.nc\n", + " * var_key: QREFHT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5_ext-QREFHT-DJF-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5_ext-QREFHT-DJF-global_ref.nc\n", + " * var_key: QREFHT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5_ext-QREFHT-DJF-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5_ext-QREFHT-DJF-global_test.nc\n", + " * var_key: QREFHT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5_ext-QREFHT-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5_ext-QREFHT-JJA-global_ref.nc\n", + " * var_key: QREFHT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5_ext-QREFHT-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5_ext-QREFHT-JJA-global_test.nc\n", + " * var_key: QREFHT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5_ext-QREFHT-MAM-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5_ext-QREFHT-MAM-global_ref.nc\n", + " * var_key: QREFHT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5_ext-QREFHT-MAM-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5_ext-QREFHT-MAM-global_test.nc\n", + " * var_key: QREFHT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5_ext-QREFHT-SON-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5_ext-QREFHT-SON-global_ref.nc\n", + " * var_key: QREFHT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5_ext-QREFHT-SON-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5_ext-QREFHT-SON-global_test.nc\n", + " * var_key: QREFHT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5_ext-U10-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5_ext-U10-ANN-global_ref.nc\n", + " * var_key: U10\n", + " * Could not find variable key in the dataset(s)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5_ext-U10-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5_ext-U10-ANN-global_test.nc\n", + " * var_key: U10\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5_ext-U10-DJF-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5_ext-U10-DJF-global_ref.nc\n", + " * var_key: U10\n", + " * Could not find variable key in the dataset(s)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5_ext-U10-DJF-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5_ext-U10-DJF-global_test.nc\n", + " * var_key: U10\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5_ext-U10-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5_ext-U10-JJA-global_ref.nc\n", + " * var_key: U10\n", + " * Could not find variable key in the dataset(s)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5_ext-U10-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5_ext-U10-JJA-global_test.nc\n", + " * var_key: U10\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5_ext-U10-MAM-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5_ext-U10-MAM-global_ref.nc\n", + " * var_key: U10\n", + " * Could not find variable key in the dataset(s)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5_ext-U10-MAM-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5_ext-U10-MAM-global_test.nc\n", + " * var_key: U10\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5_ext-U10-SON-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5_ext-U10-SON-global_ref.nc\n", + " * var_key: U10\n", + " * Could not find variable key in the dataset(s)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/ERA5/ERA5_ext-U10-SON-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5_ext-U10-SON-global_test.nc\n", + " * var_key: U10\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/GPCP_OAFLux/GPCP_OAFLux-PminusE-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/GPCP_OAFLux/GPCP_OAFLux-PminusE-ANN-global_ref.nc\n", + " * var_key: PminusE\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/GPCP_OAFLux/GPCP_OAFLux-PminusE-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/GPCP_OAFLux/GPCP_OAFLux-PminusE-ANN-global_test.nc\n", + " * var_key: PminusE\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/GPCP_OAFLux/GPCP_OAFLux-PminusE-DJF-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/GPCP_OAFLux/GPCP_OAFLux-PminusE-DJF-global_ref.nc\n", + " * var_key: PminusE\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/GPCP_OAFLux/GPCP_OAFLux-PminusE-DJF-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/GPCP_OAFLux/GPCP_OAFLux-PminusE-DJF-global_test.nc\n", + " * var_key: PminusE\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/GPCP_OAFLux/GPCP_OAFLux-PminusE-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/GPCP_OAFLux/GPCP_OAFLux-PminusE-JJA-global_ref.nc\n", + " * var_key: PminusE\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/GPCP_OAFLux/GPCP_OAFLux-PminusE-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/GPCP_OAFLux/GPCP_OAFLux-PminusE-JJA-global_test.nc\n", + " * var_key: PminusE\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/GPCP_OAFLux/GPCP_OAFLux-PminusE-MAM-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/GPCP_OAFLux/GPCP_OAFLux-PminusE-MAM-global_ref.nc\n", + " * var_key: PminusE\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/GPCP_OAFLux/GPCP_OAFLux-PminusE-MAM-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/GPCP_OAFLux/GPCP_OAFLux-PminusE-MAM-global_test.nc\n", + " * var_key: PminusE\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/GPCP_OAFLux/GPCP_OAFLux-PminusE-SON-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/GPCP_OAFLux/GPCP_OAFLux-PminusE-SON-global_ref.nc\n", + " * var_key: PminusE\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/GPCP_OAFLux/GPCP_OAFLux-PminusE-SON-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/GPCP_OAFLux/GPCP_OAFLux-PminusE-SON-global_test.nc\n", + " * var_key: PminusE\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/GPCP_v2.3/GPCP_v2.3-PRECT-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/GPCP_v2.3/GPCP_v2.3-PRECT-ANN-global_ref.nc\n", + " * var_key: PRECT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/GPCP_v2.3/GPCP_v2.3-PRECT-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/GPCP_v2.3/GPCP_v2.3-PRECT-ANN-global_test.nc\n", + " * var_key: PRECT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/GPCP_v2.3/GPCP_v2.3-PRECT-DJF-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/GPCP_v2.3/GPCP_v2.3-PRECT-DJF-global_ref.nc\n", + " * var_key: PRECT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/GPCP_v2.3/GPCP_v2.3-PRECT-DJF-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/GPCP_v2.3/GPCP_v2.3-PRECT-DJF-global_test.nc\n", + " * var_key: PRECT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/GPCP_v2.3/GPCP_v2.3-PRECT-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/GPCP_v2.3/GPCP_v2.3-PRECT-JJA-global_ref.nc\n", + " * var_key: PRECT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/GPCP_v2.3/GPCP_v2.3-PRECT-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/GPCP_v2.3/GPCP_v2.3-PRECT-JJA-global_test.nc\n", + " * var_key: PRECT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/GPCP_v2.3/GPCP_v2.3-PRECT-MAM-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/GPCP_v2.3/GPCP_v2.3-PRECT-MAM-global_ref.nc\n", + " * var_key: PRECT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/GPCP_v2.3/GPCP_v2.3-PRECT-MAM-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/GPCP_v2.3/GPCP_v2.3-PRECT-MAM-global_test.nc\n", + " * var_key: PRECT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/GPCP_v2.3/GPCP_v2.3-PRECT-SON-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/GPCP_v2.3/GPCP_v2.3-PRECT-SON-global_ref.nc\n", + " * var_key: PRECT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/GPCP_v2.3/GPCP_v2.3-PRECT-SON-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/GPCP_v2.3/GPCP_v2.3-PRECT-SON-global_test.nc\n", + " * var_key: PRECT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/GPCP_v3.2/GPCP_v3.2-PRECT-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/GPCP_v3.2/GPCP_v3.2-PRECT-ANN-global_ref.nc\n", + " * var_key: PRECT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/GPCP_v3.2/GPCP_v3.2-PRECT-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/GPCP_v3.2/GPCP_v3.2-PRECT-ANN-global_test.nc\n", + " * var_key: PRECT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/GPCP_v3.2/GPCP_v3.2-PRECT-DJF-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/GPCP_v3.2/GPCP_v3.2-PRECT-DJF-global_ref.nc\n", + " * var_key: PRECT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/GPCP_v3.2/GPCP_v3.2-PRECT-DJF-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/GPCP_v3.2/GPCP_v3.2-PRECT-DJF-global_test.nc\n", + " * var_key: PRECT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/GPCP_v3.2/GPCP_v3.2-PRECT-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/GPCP_v3.2/GPCP_v3.2-PRECT-JJA-global_ref.nc\n", + " * var_key: PRECT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/GPCP_v3.2/GPCP_v3.2-PRECT-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/GPCP_v3.2/GPCP_v3.2-PRECT-JJA-global_test.nc\n", + " * var_key: PRECT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/GPCP_v3.2/GPCP_v3.2-PRECT-MAM-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/GPCP_v3.2/GPCP_v3.2-PRECT-MAM-global_ref.nc\n", + " * var_key: PRECT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/GPCP_v3.2/GPCP_v3.2-PRECT-MAM-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/GPCP_v3.2/GPCP_v3.2-PRECT-MAM-global_test.nc\n", + " * var_key: PRECT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/GPCP_v3.2/GPCP_v3.2-PRECT-SON-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/GPCP_v3.2/GPCP_v3.2-PRECT-SON-global_ref.nc\n", + " * var_key: PRECT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/GPCP_v3.2/GPCP_v3.2-PRECT-SON-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/GPCP_v3.2/GPCP_v3.2-PRECT-SON-global_test.nc\n", + " * var_key: PRECT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-FLNS-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-FLNS-ANN-global_ref.nc\n", + " * var_key: FLNS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-FLNS-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-FLNS-ANN-global_test.nc\n", + " * var_key: FLNS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-FLNS-DJF-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-FLNS-DJF-global_ref.nc\n", + " * var_key: FLNS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-FLNS-DJF-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-FLNS-DJF-global_test.nc\n", + " * var_key: FLNS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-FLNS-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-FLNS-JJA-global_ref.nc\n", + " * var_key: FLNS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-FLNS-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-FLNS-JJA-global_test.nc\n", + " * var_key: FLNS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-FLNS-MAM-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-FLNS-MAM-global_ref.nc\n", + " * var_key: FLNS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-FLNS-MAM-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-FLNS-MAM-global_test.nc\n", + " * var_key: FLNS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-FLNS-SON-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-FLNS-SON-global_ref.nc\n", + " * var_key: FLNS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-FLNS-SON-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-FLNS-SON-global_test.nc\n", + " * var_key: FLNS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-FSNS-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-FSNS-ANN-global_ref.nc\n", + " * var_key: FSNS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-FSNS-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-FSNS-ANN-global_test.nc\n", + " * var_key: FSNS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-FSNS-DJF-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-FSNS-DJF-global_ref.nc\n", + " * var_key: FSNS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-FSNS-DJF-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-FSNS-DJF-global_test.nc\n", + " * var_key: FSNS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-FSNS-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-FSNS-JJA-global_ref.nc\n", + " * var_key: FSNS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-FSNS-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-FSNS-JJA-global_test.nc\n", + " * var_key: FSNS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-FSNS-MAM-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-FSNS-MAM-global_ref.nc\n", + " * var_key: FSNS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-FSNS-MAM-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-FSNS-MAM-global_test.nc\n", + " * var_key: FSNS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-FSNS-SON-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-FSNS-SON-global_ref.nc\n", + " * var_key: FSNS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-FSNS-SON-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-FSNS-SON-global_test.nc\n", + " * var_key: FSNS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-LHFLX-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-LHFLX-ANN-global_ref.nc\n", + " * var_key: LHFLX\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-LHFLX-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-LHFLX-ANN-global_test.nc\n", + " * var_key: LHFLX\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-LHFLX-DJF-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-LHFLX-DJF-global_ref.nc\n", + " * var_key: LHFLX\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-LHFLX-DJF-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-LHFLX-DJF-global_test.nc\n", + " * var_key: LHFLX\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-LHFLX-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-LHFLX-JJA-global_ref.nc\n", + " * var_key: LHFLX\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-LHFLX-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-LHFLX-JJA-global_test.nc\n", + " * var_key: LHFLX\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-LHFLX-MAM-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-LHFLX-MAM-global_ref.nc\n", + " * var_key: LHFLX\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-LHFLX-MAM-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-LHFLX-MAM-global_test.nc\n", + " * var_key: LHFLX\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-LHFLX-SON-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-LHFLX-SON-global_ref.nc\n", + " * var_key: LHFLX\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-LHFLX-SON-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-LHFLX-SON-global_test.nc\n", + " * var_key: LHFLX\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-NET_FLUX_SRF-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-NET_FLUX_SRF-ANN-global_ref.nc\n", + " * var_key: NET_FLUX_SRF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-NET_FLUX_SRF-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-NET_FLUX_SRF-ANN-global_test.nc\n", + " * var_key: NET_FLUX_SRF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-NET_FLUX_SRF-DJF-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-NET_FLUX_SRF-DJF-global_ref.nc\n", + " * var_key: NET_FLUX_SRF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-NET_FLUX_SRF-DJF-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-NET_FLUX_SRF-DJF-global_test.nc\n", + " * var_key: NET_FLUX_SRF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-NET_FLUX_SRF-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-NET_FLUX_SRF-JJA-global_ref.nc\n", + " * var_key: NET_FLUX_SRF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-NET_FLUX_SRF-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-NET_FLUX_SRF-JJA-global_test.nc\n", + " * var_key: NET_FLUX_SRF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-NET_FLUX_SRF-MAM-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-NET_FLUX_SRF-MAM-global_ref.nc\n", + " * var_key: NET_FLUX_SRF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-NET_FLUX_SRF-MAM-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-NET_FLUX_SRF-MAM-global_test.nc\n", + " * var_key: NET_FLUX_SRF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-NET_FLUX_SRF-SON-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-NET_FLUX_SRF-SON-global_ref.nc\n", + " * var_key: NET_FLUX_SRF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-NET_FLUX_SRF-SON-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-NET_FLUX_SRF-SON-global_test.nc\n", + " * var_key: NET_FLUX_SRF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-OMEGA-200-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-OMEGA-200-ANN-global_ref.nc\n", + " * var_key: OMEGA\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-OMEGA-200-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-OMEGA-200-ANN-global_test.nc\n", + " * var_key: OMEGA\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-OMEGA-200-DJF-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-OMEGA-200-DJF-global_ref.nc\n", + " * var_key: OMEGA\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-OMEGA-200-DJF-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-OMEGA-200-DJF-global_test.nc\n", + " * var_key: OMEGA\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-OMEGA-200-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-OMEGA-200-JJA-global_ref.nc\n", + " * var_key: OMEGA\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-OMEGA-200-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-OMEGA-200-JJA-global_test.nc\n", + " * var_key: OMEGA\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-OMEGA-200-MAM-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-OMEGA-200-MAM-global_ref.nc\n", + " * var_key: OMEGA\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-OMEGA-200-MAM-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-OMEGA-200-MAM-global_test.nc\n", + " * var_key: OMEGA\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-OMEGA-200-SON-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-OMEGA-200-SON-global_ref.nc\n", + " * var_key: OMEGA\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-OMEGA-200-SON-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-OMEGA-200-SON-global_test.nc\n", + " * var_key: OMEGA\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-OMEGA-500-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-OMEGA-500-ANN-global_ref.nc\n", + " * var_key: OMEGA\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-OMEGA-500-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-OMEGA-500-ANN-global_test.nc\n", + " * var_key: OMEGA\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-OMEGA-500-DJF-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-OMEGA-500-DJF-global_ref.nc\n", + " * var_key: OMEGA\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-OMEGA-500-DJF-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-OMEGA-500-DJF-global_test.nc\n", + " * var_key: OMEGA\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-OMEGA-500-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-OMEGA-500-JJA-global_ref.nc\n", + " * var_key: OMEGA\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-OMEGA-500-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-OMEGA-500-JJA-global_test.nc\n", + " * var_key: OMEGA\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-OMEGA-500-MAM-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-OMEGA-500-MAM-global_ref.nc\n", + " * var_key: OMEGA\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-OMEGA-500-MAM-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-OMEGA-500-MAM-global_test.nc\n", + " * var_key: OMEGA\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-OMEGA-500-SON-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-OMEGA-500-SON-global_ref.nc\n", + " * var_key: OMEGA\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-OMEGA-500-SON-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-OMEGA-500-SON-global_test.nc\n", + " * var_key: OMEGA\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-OMEGA-850-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-OMEGA-850-ANN-global_ref.nc\n", + " * var_key: OMEGA\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-OMEGA-850-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-OMEGA-850-ANN-global_test.nc\n", + " * var_key: OMEGA\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-OMEGA-850-DJF-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-OMEGA-850-DJF-global_ref.nc\n", + " * var_key: OMEGA\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-OMEGA-850-DJF-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-OMEGA-850-DJF-global_test.nc\n", + " * var_key: OMEGA\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-OMEGA-850-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-OMEGA-850-JJA-global_ref.nc\n", + " * var_key: OMEGA\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-OMEGA-850-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-OMEGA-850-JJA-global_test.nc\n", + " * var_key: OMEGA\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-OMEGA-850-MAM-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-OMEGA-850-MAM-global_ref.nc\n", + " * var_key: OMEGA\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-OMEGA-850-MAM-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-OMEGA-850-MAM-global_test.nc\n", + " * var_key: OMEGA\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-OMEGA-850-SON-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-OMEGA-850-SON-global_ref.nc\n", + " * var_key: OMEGA\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-OMEGA-850-SON-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-OMEGA-850-SON-global_test.nc\n", + " * var_key: OMEGA\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-PRECT-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-PRECT-ANN-global_ref.nc\n", + " * var_key: PRECT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-PRECT-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-PRECT-ANN-global_test.nc\n", + " * var_key: PRECT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-PRECT-DJF-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-PRECT-DJF-global_ref.nc\n", + " * var_key: PRECT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-PRECT-DJF-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-PRECT-DJF-global_test.nc\n", + " * var_key: PRECT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-PRECT-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-PRECT-JJA-global_ref.nc\n", + " * var_key: PRECT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-PRECT-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-PRECT-JJA-global_test.nc\n", + " * var_key: PRECT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-PRECT-MAM-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-PRECT-MAM-global_ref.nc\n", + " * var_key: PRECT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-PRECT-MAM-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-PRECT-MAM-global_test.nc\n", + " * var_key: PRECT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-PRECT-SON-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-PRECT-SON-global_ref.nc\n", + " * var_key: PRECT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-PRECT-SON-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-PRECT-SON-global_test.nc\n", + " * var_key: PRECT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-PSL-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-PSL-ANN-global_ref.nc\n", + " * var_key: PSL\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-PSL-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-PSL-ANN-global_test.nc\n", + " * var_key: PSL\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-PSL-DJF-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-PSL-DJF-global_ref.nc\n", + " * var_key: PSL\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-PSL-DJF-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-PSL-DJF-global_test.nc\n", + " * var_key: PSL\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-PSL-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-PSL-JJA-global_ref.nc\n", + " * var_key: PSL\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-PSL-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-PSL-JJA-global_test.nc\n", + " * var_key: PSL\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-PSL-MAM-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-PSL-MAM-global_ref.nc\n", + " * var_key: PSL\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-PSL-MAM-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-PSL-MAM-global_test.nc\n", + " * var_key: PSL\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-PSL-SON-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-PSL-SON-global_ref.nc\n", + " * var_key: PSL\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-PSL-SON-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-PSL-SON-global_test.nc\n", + " * var_key: PSL\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-SHFLX-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-SHFLX-ANN-global_ref.nc\n", + " * var_key: SHFLX\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-SHFLX-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-SHFLX-ANN-global_test.nc\n", + " * var_key: SHFLX\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-SHFLX-DJF-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-SHFLX-DJF-global_ref.nc\n", + " * var_key: SHFLX\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-SHFLX-DJF-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-SHFLX-DJF-global_test.nc\n", + " * var_key: SHFLX\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-SHFLX-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-SHFLX-JJA-global_ref.nc\n", + " * var_key: SHFLX\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-SHFLX-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-SHFLX-JJA-global_test.nc\n", + " * var_key: SHFLX\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-SHFLX-MAM-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-SHFLX-MAM-global_ref.nc\n", + " * var_key: SHFLX\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-SHFLX-MAM-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-SHFLX-MAM-global_test.nc\n", + " * var_key: SHFLX\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-SHFLX-SON-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-SHFLX-SON-global_ref.nc\n", + " * var_key: SHFLX\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-SHFLX-SON-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-SHFLX-SON-global_test.nc\n", + " * var_key: SHFLX\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-T-200-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-T-200-ANN-global_ref.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-T-200-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-T-200-ANN-global_test.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-T-200-DJF-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-T-200-DJF-global_ref.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-T-200-DJF-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-T-200-DJF-global_test.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-T-200-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-T-200-JJA-global_ref.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-T-200-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-T-200-JJA-global_test.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-T-200-MAM-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-T-200-MAM-global_ref.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-T-200-MAM-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-T-200-MAM-global_test.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-T-200-SON-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-T-200-SON-global_ref.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-T-200-SON-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-T-200-SON-global_test.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-T-850-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-T-850-ANN-global_ref.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-T-850-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-T-850-ANN-global_test.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-T-850-DJF-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-T-850-DJF-global_ref.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-T-850-DJF-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-T-850-DJF-global_test.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-T-850-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-T-850-JJA-global_ref.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-T-850-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-T-850-JJA-global_test.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-T-850-MAM-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-T-850-MAM-global_ref.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-T-850-MAM-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-T-850-MAM-global_test.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-T-850-SON-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-T-850-SON-global_ref.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-T-850-SON-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-T-850-SON-global_test.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-TAUXY-ANN-ocean_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-TAUXY-ANN-ocean_ref.nc\n", + " * var_key: TAUXY\n", + " \n", + "Not equal to tolerance rtol=1e-05, atol=0\n", + "\n", + "x and y nan location mismatch:\n", + " x: array([[nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],...\n", + " y: array([[nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],...\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-TAUXY-ANN-ocean_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-TAUXY-ANN-ocean_test.nc\n", + " * var_key: TAUXY\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-TAUXY-DJF-ocean_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-TAUXY-DJF-ocean_ref.nc\n", + " * var_key: TAUXY\n", + " \n", + "Not equal to tolerance rtol=1e-05, atol=0\n", + "\n", + "x and y nan location mismatch:\n", + " x: array([[nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],...\n", + " y: array([[nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],...\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-TAUXY-DJF-ocean_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-TAUXY-DJF-ocean_test.nc\n", + " * var_key: TAUXY\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-TAUXY-JJA-ocean_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-TAUXY-JJA-ocean_ref.nc\n", + " * var_key: TAUXY\n", + " \n", + "Not equal to tolerance rtol=1e-05, atol=0\n", + "\n", + "x and y nan location mismatch:\n", + " x: array([[nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],...\n", + " y: array([[nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],...\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-TAUXY-JJA-ocean_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-TAUXY-JJA-ocean_test.nc\n", + " * var_key: TAUXY\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-TAUXY-MAM-ocean_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-TAUXY-MAM-ocean_ref.nc\n", + " * var_key: TAUXY\n", + " \n", + "Not equal to tolerance rtol=1e-05, atol=0\n", + "\n", + "x and y nan location mismatch:\n", + " x: array([[nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],...\n", + " y: array([[nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],...\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-TAUXY-MAM-ocean_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-TAUXY-MAM-ocean_test.nc\n", + " * var_key: TAUXY\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-TAUXY-SON-ocean_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-TAUXY-SON-ocean_ref.nc\n", + " * var_key: TAUXY\n", + " \n", + "Not equal to tolerance rtol=1e-05, atol=0\n", + "\n", + "x and y nan location mismatch:\n", + " x: array([[nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],...\n", + " y: array([[nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],...\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-TAUXY-SON-ocean_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-TAUXY-SON-ocean_test.nc\n", + " * var_key: TAUXY\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-TMQ-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-TMQ-ANN-global_ref.nc\n", + " * var_key: TMQ\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-TMQ-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-TMQ-ANN-global_test.nc\n", + " * var_key: TMQ\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-TMQ-DJF-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-TMQ-DJF-global_ref.nc\n", + " * var_key: TMQ\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-TMQ-DJF-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-TMQ-DJF-global_test.nc\n", + " * var_key: TMQ\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-TMQ-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-TMQ-JJA-global_ref.nc\n", + " * var_key: TMQ\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-TMQ-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-TMQ-JJA-global_test.nc\n", + " * var_key: TMQ\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-TMQ-MAM-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-TMQ-MAM-global_ref.nc\n", + " * var_key: TMQ\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-TMQ-MAM-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-TMQ-MAM-global_test.nc\n", + " * var_key: TMQ\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-TMQ-SON-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-TMQ-SON-global_ref.nc\n", + " * var_key: TMQ\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-TMQ-SON-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-TMQ-SON-global_test.nc\n", + " * var_key: TMQ\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-TREFHT-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-TREFHT-ANN-global_ref.nc\n", + " * var_key: TREFHT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-TREFHT-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-TREFHT-ANN-global_test.nc\n", + " * var_key: TREFHT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-TREFHT-ANN-land_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-TREFHT-ANN-land_ref.nc\n", + " * var_key: TREFHT\n", + " \n", + "Not equal to tolerance rtol=1e-05, atol=0\n", + "\n", + "x and y nan location mismatch:\n", + " x: array([[-49.840927, -49.840927, -49.840927, ..., -49.840927, -49.840927,\n", + " -49.840927],\n", + " [-49.387894, -49.372787, -49.357605, ..., -49.43271 , nan,...\n", + " y: array([[-49.840927, -49.840927, -49.840927, ..., -49.840927, -49.840927,\n", + " -49.840927],\n", + " [-49.387894, -49.372787, -49.357605, ..., -49.43271 , -49.417847,...\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-TREFHT-ANN-land_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-TREFHT-ANN-land_test.nc\n", + " * var_key: TREFHT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-TREFHT-DJF-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-TREFHT-DJF-global_ref.nc\n", + " * var_key: TREFHT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-TREFHT-DJF-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-TREFHT-DJF-global_test.nc\n", + " * var_key: TREFHT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-TREFHT-DJF-land_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-TREFHT-DJF-land_ref.nc\n", + " * var_key: TREFHT\n", + " \n", + "Not equal to tolerance rtol=1e-05, atol=0\n", + "\n", + "x and y nan location mismatch:\n", + " x: array([[-32.33574 , -32.33574 , -32.33574 , ..., -32.33574 , -32.33574 ,\n", + " -32.33574 ],\n", + " [-31.969177, -31.969116, -31.96907 , ..., -31.969559, nan,...\n", + " y: array([[-32.33574 , -32.33574 , -32.33574 , ..., -32.33574 , -32.33574 ,\n", + " -32.33574 ],\n", + " [-31.969177, -31.969116, -31.96907 , ..., -31.969559, -31.96939 ,...\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-TREFHT-DJF-land_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-TREFHT-DJF-land_test.nc\n", + " * var_key: TREFHT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-TREFHT-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-TREFHT-JJA-global_ref.nc\n", + " * var_key: TREFHT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-TREFHT-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-TREFHT-JJA-global_test.nc\n", + " * var_key: TREFHT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-TREFHT-JJA-land_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-TREFHT-JJA-land_ref.nc\n", + " * var_key: TREFHT\n", + " \n", + "Not equal to tolerance rtol=1e-05, atol=0\n", + "\n", + "x and y nan location mismatch:\n", + " x: array([[-60.34648 , -60.34648 , -60.34648 , ..., -60.34648 , -60.34648 ,\n", + " -60.34648 ],\n", + " [-59.765793, -59.740402, -59.71486 , ..., -59.841125, nan,...\n", + " y: array([[-60.34648 , -60.34648 , -60.34648 , ..., -60.34648 , -60.34648 ,\n", + " -60.34648 ],\n", + " [-59.765793, -59.740402, -59.71486 , ..., -59.841125, -59.816147,...\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-TREFHT-JJA-land_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-TREFHT-JJA-land_test.nc\n", + " * var_key: TREFHT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-TREFHT-MAM-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-TREFHT-MAM-global_ref.nc\n", + " * var_key: TREFHT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-TREFHT-MAM-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-TREFHT-MAM-global_test.nc\n", + " * var_key: TREFHT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-TREFHT-MAM-land_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-TREFHT-MAM-land_ref.nc\n", + " * var_key: TREFHT\n", + " \n", + "Not equal to tolerance rtol=1e-05, atol=0\n", + "\n", + "x and y nan location mismatch:\n", + " x: array([[-55.92218 , -55.92218 , -55.92218 , ..., -55.92218 , -55.92218 ,\n", + " -55.92218 ],\n", + " [-55.460968, -55.440155, -55.41919 , ..., -55.522675, nan,...\n", + " y: array([[-55.92218 , -55.92218 , -55.92218 , ..., -55.92218 , -55.92218 ,\n", + " -55.92218 ],\n", + " [-55.460968, -55.440155, -55.41919 , ..., -55.522675, -55.502274,...\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-TREFHT-MAM-land_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-TREFHT-MAM-land_test.nc\n", + " * var_key: TREFHT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-TREFHT-SON-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-TREFHT-SON-global_ref.nc\n", + " * var_key: TREFHT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-TREFHT-SON-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-TREFHT-SON-global_test.nc\n", + " * var_key: TREFHT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-TREFHT-SON-land_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-TREFHT-SON-land_ref.nc\n", + " * var_key: TREFHT\n", + " \n", + "Not equal to tolerance rtol=1e-05, atol=0\n", + "\n", + "x and y nan location mismatch:\n", + " x: array([[-50.38466 , -50.38466 , -50.38466 , ..., -50.38466 , -50.38466 ,\n", + " -50.38466 ],\n", + " [-49.98343 , -49.969604, -49.955795, ..., -50.024246, nan,...\n", + " y: array([[-50.38466 , -50.38466 , -50.38466 , ..., -50.38466 , -50.38466 ,\n", + " -50.38466 ],\n", + " [-49.98343 , -49.969604, -49.955795, ..., -50.024246, -50.010696,...\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-TREFHT-SON-land_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-TREFHT-SON-land_test.nc\n", + " * var_key: TREFHT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-U-200-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-U-200-ANN-global_ref.nc\n", + " * var_key: U\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-U-200-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-U-200-ANN-global_test.nc\n", + " * var_key: U\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-U-200-DJF-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-U-200-DJF-global_ref.nc\n", + " * var_key: U\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-U-200-DJF-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-U-200-DJF-global_test.nc\n", + " * var_key: U\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-U-200-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-U-200-JJA-global_ref.nc\n", + " * var_key: U\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-U-200-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-U-200-JJA-global_test.nc\n", + " * var_key: U\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-U-200-MAM-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-U-200-MAM-global_ref.nc\n", + " * var_key: U\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-U-200-MAM-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-U-200-MAM-global_test.nc\n", + " * var_key: U\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-U-200-SON-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-U-200-SON-global_ref.nc\n", + " * var_key: U\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-U-200-SON-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-U-200-SON-global_test.nc\n", + " * var_key: U\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-U-850-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-U-850-ANN-global_ref.nc\n", + " * var_key: U\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-U-850-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-U-850-ANN-global_test.nc\n", + " * var_key: U\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-U-850-DJF-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-U-850-DJF-global_ref.nc\n", + " * var_key: U\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-U-850-DJF-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-U-850-DJF-global_test.nc\n", + " * var_key: U\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-U-850-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-U-850-JJA-global_ref.nc\n", + " * var_key: U\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-U-850-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-U-850-JJA-global_test.nc\n", + " * var_key: U\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-U-850-MAM-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-U-850-MAM-global_ref.nc\n", + " * var_key: U\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-U-850-MAM-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-U-850-MAM-global_test.nc\n", + " * var_key: U\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-U-850-SON-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-U-850-SON-global_ref.nc\n", + " * var_key: U\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-U-850-SON-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-U-850-SON-global_test.nc\n", + " * var_key: U\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-Z3-500-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-Z3-500-ANN-global_ref.nc\n", + " * var_key: Z3\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-Z3-500-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-Z3-500-ANN-global_test.nc\n", + " * var_key: Z3\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-Z3-500-DJF-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-Z3-500-DJF-global_ref.nc\n", + " * var_key: Z3\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-Z3-500-DJF-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-Z3-500-DJF-global_test.nc\n", + " * var_key: Z3\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-Z3-500-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-Z3-500-JJA-global_ref.nc\n", + " * var_key: Z3\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-Z3-500-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-Z3-500-JJA-global_test.nc\n", + " * var_key: Z3\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-Z3-500-MAM-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-Z3-500-MAM-global_ref.nc\n", + " * var_key: Z3\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-Z3-500-MAM-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-Z3-500-MAM-global_test.nc\n", + " * var_key: Z3\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-Z3-500-SON-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-Z3-500-SON-global_ref.nc\n", + " * var_key: Z3\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-Z3-500-SON-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-Z3-500-SON-global_test.nc\n", + " * var_key: Z3\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/SST_CL_HadISST/HadISST_CL-SST-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/SST_CL_HadISST/HadISST_CL-SST-ANN-global_ref.nc\n", + " * var_key: SST\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/SST_CL_HadISST/HadISST_CL-SST-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/SST_CL_HadISST/HadISST_CL-SST-ANN-global_test.nc\n", + " * var_key: SST\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/SST_CL_HadISST/HadISST_CL-SST-DJF-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/SST_CL_HadISST/HadISST_CL-SST-DJF-global_ref.nc\n", + " * var_key: SST\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/SST_CL_HadISST/HadISST_CL-SST-DJF-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/SST_CL_HadISST/HadISST_CL-SST-DJF-global_test.nc\n", + " * var_key: SST\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/SST_CL_HadISST/HadISST_CL-SST-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/SST_CL_HadISST/HadISST_CL-SST-JJA-global_ref.nc\n", + " * var_key: SST\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/SST_CL_HadISST/HadISST_CL-SST-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/SST_CL_HadISST/HadISST_CL-SST-JJA-global_test.nc\n", + " * var_key: SST\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/SST_CL_HadISST/HadISST_CL-SST-MAM-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/SST_CL_HadISST/HadISST_CL-SST-MAM-global_ref.nc\n", + " * var_key: SST\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/SST_CL_HadISST/HadISST_CL-SST-MAM-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/SST_CL_HadISST/HadISST_CL-SST-MAM-global_test.nc\n", + " * var_key: SST\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/SST_CL_HadISST/HadISST_CL-SST-SON-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/SST_CL_HadISST/HadISST_CL-SST-SON-global_ref.nc\n", + " * var_key: SST\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/SST_CL_HadISST/HadISST_CL-SST-SON-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/SST_CL_HadISST/HadISST_CL-SST-SON-global_test.nc\n", + " * var_key: SST\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/SST_HadISST/HadISST-SST-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/SST_HadISST/HadISST-SST-ANN-global_test.nc\n", + " * var_key: SST\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/SST_HadISST/HadISST-SST-DJF-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/SST_HadISST/HadISST-SST-DJF-global_test.nc\n", + " * var_key: SST\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/SST_HadISST/HadISST-SST-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/SST_HadISST/HadISST-SST-JJA-global_test.nc\n", + " * var_key: SST\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/SST_HadISST/HadISST-SST-MAM-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/SST_HadISST/HadISST-SST-MAM-global_test.nc\n", + " * var_key: SST\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/SST_HadISST/HadISST-SST-SON-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/SST_HadISST/HadISST-SST-SON-global_test.nc\n", + " * var_key: SST\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/SST_PD_HadISST/HadISST_PD-SST-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/SST_PD_HadISST/HadISST_PD-SST-ANN-global_ref.nc\n", + " * var_key: SST\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/SST_PD_HadISST/HadISST_PD-SST-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/SST_PD_HadISST/HadISST_PD-SST-ANN-global_test.nc\n", + " * var_key: SST\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/SST_PD_HadISST/HadISST_PD-SST-DJF-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/SST_PD_HadISST/HadISST_PD-SST-DJF-global_ref.nc\n", + " * var_key: SST\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/SST_PD_HadISST/HadISST_PD-SST-DJF-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/SST_PD_HadISST/HadISST_PD-SST-DJF-global_test.nc\n", + " * var_key: SST\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/SST_PD_HadISST/HadISST_PD-SST-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/SST_PD_HadISST/HadISST_PD-SST-JJA-global_ref.nc\n", + " * var_key: SST\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/SST_PD_HadISST/HadISST_PD-SST-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/SST_PD_HadISST/HadISST_PD-SST-JJA-global_test.nc\n", + " * var_key: SST\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/SST_PD_HadISST/HadISST_PD-SST-MAM-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/SST_PD_HadISST/HadISST_PD-SST-MAM-global_ref.nc\n", + " * var_key: SST\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/SST_PD_HadISST/HadISST_PD-SST-MAM-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/SST_PD_HadISST/HadISST_PD-SST-MAM-global_test.nc\n", + " * var_key: SST\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/SST_PD_HadISST/HadISST_PD-SST-SON-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/SST_PD_HadISST/HadISST_PD-SST-SON-global_ref.nc\n", + " * var_key: SST\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/SST_PD_HadISST/HadISST_PD-SST-SON-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/SST_PD_HadISST/HadISST_PD-SST-SON-global_test.nc\n", + " * var_key: SST\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/SST_PI_HadISST/HadISST_PI-SST-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/SST_PI_HadISST/HadISST_PI-SST-ANN-global_ref.nc\n", + " * var_key: SST\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/SST_PI_HadISST/HadISST_PI-SST-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/SST_PI_HadISST/HadISST_PI-SST-ANN-global_test.nc\n", + " * var_key: SST\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/SST_PI_HadISST/HadISST_PI-SST-DJF-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/SST_PI_HadISST/HadISST_PI-SST-DJF-global_ref.nc\n", + " * var_key: SST\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/SST_PI_HadISST/HadISST_PI-SST-DJF-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/SST_PI_HadISST/HadISST_PI-SST-DJF-global_test.nc\n", + " * var_key: SST\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/SST_PI_HadISST/HadISST_PI-SST-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/SST_PI_HadISST/HadISST_PI-SST-JJA-global_ref.nc\n", + " * var_key: SST\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/SST_PI_HadISST/HadISST_PI-SST-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/SST_PI_HadISST/HadISST_PI-SST-JJA-global_test.nc\n", + " * var_key: SST\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/SST_PI_HadISST/HadISST_PI-SST-MAM-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/SST_PI_HadISST/HadISST_PI-SST-MAM-global_ref.nc\n", + " * var_key: SST\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/SST_PI_HadISST/HadISST_PI-SST-MAM-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/SST_PI_HadISST/HadISST_PI-SST-MAM-global_test.nc\n", + " * var_key: SST\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/SST_PI_HadISST/HadISST_PI-SST-SON-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/SST_PI_HadISST/HadISST_PI-SST-SON-global_ref.nc\n", + " * var_key: SST\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/SST_PI_HadISST/HadISST_PI-SST-SON-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/SST_PI_HadISST/HadISST_PI-SST-SON-global_test.nc\n", + " * var_key: SST\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/WHOI-OAFlux/OAFlux-LHFLX-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/WHOI-OAFlux/OAFlux-LHFLX-ANN-global_ref.nc\n", + " * var_key: LHFLX\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/WHOI-OAFlux/OAFlux-LHFLX-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/WHOI-OAFlux/OAFlux-LHFLX-ANN-global_test.nc\n", + " * var_key: LHFLX\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/WHOI-OAFlux/OAFlux-LHFLX-DJF-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/WHOI-OAFlux/OAFlux-LHFLX-DJF-global_ref.nc\n", + " * var_key: LHFLX\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/WHOI-OAFlux/OAFlux-LHFLX-DJF-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/WHOI-OAFlux/OAFlux-LHFLX-DJF-global_test.nc\n", + " * var_key: LHFLX\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/WHOI-OAFlux/OAFlux-LHFLX-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/WHOI-OAFlux/OAFlux-LHFLX-JJA-global_ref.nc\n", + " * var_key: LHFLX\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/WHOI-OAFlux/OAFlux-LHFLX-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/WHOI-OAFlux/OAFlux-LHFLX-JJA-global_test.nc\n", + " * var_key: LHFLX\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/WHOI-OAFlux/OAFlux-LHFLX-MAM-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/WHOI-OAFlux/OAFlux-LHFLX-MAM-global_ref.nc\n", + " * var_key: LHFLX\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/WHOI-OAFlux/OAFlux-LHFLX-MAM-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/WHOI-OAFlux/OAFlux-LHFLX-MAM-global_test.nc\n", + " * var_key: LHFLX\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/WHOI-OAFlux/OAFlux-LHFLX-SON-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/WHOI-OAFlux/OAFlux-LHFLX-SON-global_ref.nc\n", + " * var_key: LHFLX\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/WHOI-OAFlux/OAFlux-LHFLX-SON-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/WHOI-OAFlux/OAFlux-LHFLX-SON-global_test.nc\n", + " * var_key: LHFLX\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/WHOI-OAFlux/OAFlux-SHFLX-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/WHOI-OAFlux/OAFlux-SHFLX-ANN-global_ref.nc\n", + " * var_key: SHFLX\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/WHOI-OAFlux/OAFlux-SHFLX-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/WHOI-OAFlux/OAFlux-SHFLX-ANN-global_test.nc\n", + " * var_key: SHFLX\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/WHOI-OAFlux/OAFlux-SHFLX-DJF-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/WHOI-OAFlux/OAFlux-SHFLX-DJF-global_ref.nc\n", + " * var_key: SHFLX\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/WHOI-OAFlux/OAFlux-SHFLX-DJF-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/WHOI-OAFlux/OAFlux-SHFLX-DJF-global_test.nc\n", + " * var_key: SHFLX\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/WHOI-OAFlux/OAFlux-SHFLX-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/WHOI-OAFlux/OAFlux-SHFLX-JJA-global_ref.nc\n", + " * var_key: SHFLX\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/WHOI-OAFlux/OAFlux-SHFLX-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/WHOI-OAFlux/OAFlux-SHFLX-JJA-global_test.nc\n", + " * var_key: SHFLX\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/WHOI-OAFlux/OAFlux-SHFLX-MAM-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/WHOI-OAFlux/OAFlux-SHFLX-MAM-global_ref.nc\n", + " * var_key: SHFLX\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/WHOI-OAFlux/OAFlux-SHFLX-MAM-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/WHOI-OAFlux/OAFlux-SHFLX-MAM-global_test.nc\n", + " * var_key: SHFLX\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/WHOI-OAFlux/OAFlux-SHFLX-SON-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/WHOI-OAFlux/OAFlux-SHFLX-SON-global_ref.nc\n", + " * var_key: SHFLX\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex5_model_to_obs/lat_lon/WHOI-OAFlux/OAFlux-SHFLX-SON-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/WHOI-OAFlux/OAFlux-SHFLX-SON-global_test.nc\n", + " * var_key: SHFLX\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/AOD_550/MACv2-AODDUST-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/AOD_550/MACv2-AODDUST-ANN-global_test.nc\n", + " * var_key: AODDUST\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/AOD_550/MACv2-AODVIS-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/AOD_550/MACv2-AODVIS-ANN-global_ref.nc\n", + " * var_key: AODVIS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/AOD_550/MACv2-AODVIS-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/AOD_550/MACv2-AODVIS-ANN-global_test.nc\n", + " * var_key: AODVIS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/AOD_550/MERRA2_Aerosols-AODVIS-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/AOD_550/MERRA2_Aerosols-AODVIS-ANN-global_ref.nc\n", + " * var_key: AODVIS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/AOD_550/MERRA2_Aerosols-AODVIS-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/AOD_550/MERRA2_Aerosols-AODVIS-ANN-global_test.nc\n", + " * var_key: AODVIS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-ALBEDO-ANN-75S75N_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-ALBEDO-ANN-75S75N_ref.nc\n", + " * var_key: ALBEDO\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-ALBEDO-ANN-75S75N_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-ALBEDO-ANN-75S75N_test.nc\n", + " * var_key: ALBEDO\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-ALBEDOC-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-ALBEDOC-ANN-global_ref.nc\n", + " * var_key: ALBEDOC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-ALBEDOC-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-ALBEDOC-ANN-global_test.nc\n", + " * var_key: ALBEDOC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FLUT-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FLUT-ANN-global_ref.nc\n", + " * var_key: FLUT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FLUT-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FLUT-ANN-global_test.nc\n", + " * var_key: FLUT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FLUTC-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FLUTC-ANN-global_ref.nc\n", + " * var_key: FLUTC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FLUTC-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FLUTC-ANN-global_test.nc\n", + " * var_key: FLUTC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FSNTOA-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FSNTOA-ANN-global_ref.nc\n", + " * var_key: FSNTOA\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FSNTOA-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FSNTOA-ANN-global_test.nc\n", + " * var_key: FSNTOA\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FSNTOAC-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FSNTOAC-ANN-global_ref.nc\n", + " * var_key: FSNTOAC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FSNTOAC-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FSNTOAC-ANN-global_test.nc\n", + " * var_key: FSNTOAC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-LWCF-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-LWCF-ANN-global_ref.nc\n", + " * var_key: LWCF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-LWCF-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-LWCF-ANN-global_test.nc\n", + " * var_key: LWCF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-NETCF-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-NETCF-ANN-global_ref.nc\n", + " * var_key: NETCF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-NETCF-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-NETCF-ANN-global_test.nc\n", + " * var_key: NETCF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-RESTOM-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-RESTOM-ANN-global_ref.nc\n", + " * var_key: RESTOM\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-RESTOM-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-RESTOM-ANN-global_test.nc\n", + " * var_key: RESTOM\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-SOLIN-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-SOLIN-ANN-global_ref.nc\n", + " * var_key: SOLIN\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-SOLIN-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-SOLIN-ANN-global_test.nc\n", + " * var_key: SOLIN\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-SWCF-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-SWCF-ANN-global_ref.nc\n", + " * var_key: SWCF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-SWCF-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-SWCF-ANN-global_test.nc\n", + " * var_key: SWCF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-ALBEDO_SRF-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-ALBEDO_SRF-ANN-global_ref.nc\n", + " * var_key: ALBEDO_SRF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-ALBEDO_SRF-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-ALBEDO_SRF-ANN-global_test.nc\n", + " * var_key: ALBEDO_SRF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLDS-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLDS-ANN-global_ref.nc\n", + " * var_key: FLDS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLDS-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLDS-ANN-global_test.nc\n", + " * var_key: FLDS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLDSC-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLDSC-ANN-global_ref.nc\n", + " * var_key: FLDSC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLDSC-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLDSC-ANN-global_test.nc\n", + " * var_key: FLDSC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLNS-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLNS-ANN-global_ref.nc\n", + " * var_key: FLNS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLNS-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLNS-ANN-global_test.nc\n", + " * var_key: FLNS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLNSC-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLNSC-ANN-global_ref.nc\n", + " * var_key: FLNSC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLNSC-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLNSC-ANN-global_test.nc\n", + " * var_key: FLNSC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSDS-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSDS-ANN-global_ref.nc\n", + " * var_key: FSDS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSDS-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSDS-ANN-global_test.nc\n", + " * var_key: FSDS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSDSC-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSDSC-ANN-global_ref.nc\n", + " * var_key: FSDSC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSDSC-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSDSC-ANN-global_test.nc\n", + " * var_key: FSDSC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSNS-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSNS-ANN-global_ref.nc\n", + " * var_key: FSNS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSNS-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSNS-ANN-global_test.nc\n", + " * var_key: FSNS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSNSC-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSNSC-ANN-global_ref.nc\n", + " * var_key: FSNSC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSNSC-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSNSC-ANN-global_test.nc\n", + " * var_key: FSNSC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-LWCFSRF-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-LWCFSRF-ANN-global_ref.nc\n", + " * var_key: LWCFSRF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-LWCFSRF-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-LWCFSRF-ANN-global_test.nc\n", + " * var_key: LWCFSRF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-NETCF_SRF-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-NETCF_SRF-ANN-global_ref.nc\n", + " * var_key: NETCF_SRF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-NETCF_SRF-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-NETCF_SRF-ANN-global_test.nc\n", + " * var_key: NETCF_SRF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-SWCFSRF-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-SWCFSRF-ANN-global_ref.nc\n", + " * var_key: SWCFSRF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-SWCFSRF-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-SWCFSRF-ANN-global_test.nc\n", + " * var_key: SWCFSRF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/COREv2_Flux/COREv2_Flux-PminusE-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/COREv2_Flux/COREv2_Flux-PminusE-ANN-global_ref.nc\n", + " * var_key: PminusE\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/COREv2_Flux/COREv2_Flux-PminusE-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/COREv2_Flux/COREv2_Flux-PminusE-ANN-global_test.nc\n", + " * var_key: PminusE\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/CRU_IPCC/CRU-TREFHT-ANN-land_60S90N_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/CRU_IPCC/CRU-TREFHT-ANN-land_60S90N_ref.nc\n", + " * var_key: TREFHT\n", + " \n", + "Not equal to tolerance rtol=1e-05, atol=0\n", + "\n", + "x and y nan location mismatch:\n", + " x: array([[nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],...\n", + " y: array([[nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],...\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/CRU_IPCC/CRU-TREFHT-ANN-land_60S90N_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/CRU_IPCC/CRU-TREFHT-ANN-land_60S90N_test.nc\n", + " * var_key: TREFHT\n", + " \n", + "Not equal to tolerance rtol=1e-05, atol=0\n", + "\n", + "(shapes (107, 256), (108, 256) mismatch)\n", + " x: array([[nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],...\n", + " y: array([[nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],...\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/Cloud Calipso/CALIPSOCOSP-CLDHGH_CAL-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/Cloud Calipso/CALIPSOCOSP-CLDHGH_CAL-ANN-global_ref.nc\n", + " * var_key: CLDHGH_CAL\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/Cloud Calipso/CALIPSOCOSP-CLDHGH_CAL-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/Cloud Calipso/CALIPSOCOSP-CLDHGH_CAL-ANN-global_test.nc\n", + " * var_key: CLDHGH_CAL\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/Cloud Calipso/CALIPSOCOSP-CLDLOW_CAL-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/Cloud Calipso/CALIPSOCOSP-CLDLOW_CAL-ANN-global_ref.nc\n", + " * var_key: CLDLOW_CAL\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/Cloud Calipso/CALIPSOCOSP-CLDLOW_CAL-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/Cloud Calipso/CALIPSOCOSP-CLDLOW_CAL-ANN-global_test.nc\n", + " * var_key: CLDLOW_CAL\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/Cloud Calipso/CALIPSOCOSP-CLDMED_CAL-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/Cloud Calipso/CALIPSOCOSP-CLDMED_CAL-ANN-global_ref.nc\n", + " * var_key: CLDMED_CAL\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/Cloud Calipso/CALIPSOCOSP-CLDMED_CAL-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/Cloud Calipso/CALIPSOCOSP-CLDMED_CAL-ANN-global_test.nc\n", + " * var_key: CLDMED_CAL\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/Cloud Calipso/CALIPSOCOSP-CLDTOT_CAL-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/Cloud Calipso/CALIPSOCOSP-CLDTOT_CAL-ANN-global_ref.nc\n", + " * var_key: CLDTOT_CAL\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/Cloud Calipso/CALIPSOCOSP-CLDTOT_CAL-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/Cloud Calipso/CALIPSOCOSP-CLDTOT_CAL-ANN-global_test.nc\n", + " * var_key: CLDTOT_CAL\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/Cloud ISCCP/ISCCPCOSP-CLDTOT_TAU1.3_9.4_ISCCP-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/Cloud ISCCP/ISCCPCOSP-CLDTOT_TAU1.3_9.4_ISCCP-ANN-global_ref.nc\n", + " * var_key: CLDTOT_TAU1.3_9.4_ISCCP\n", + " \n", + "Not equal to tolerance rtol=1e-05, atol=0\n", + "\n", + "Mismatched elements: 10368 / 10368 (100%)\n", + "Max absolute difference: 53.08825\n", + "Max relative difference: 1.\n", + " x: array([[0., 0., 0., ..., 0., 0., 0.],\n", + " [0., 0., 0., ..., 0., 0., 0.],\n", + " [0., 0., 0., ..., 0., 0., 0.],...\n", + " y: array([[ 6.836297, 6.836297, 6.836297, ..., 8.73094 , 8.73094 ,\n", + " 8.73094 ],\n", + " [ 9.645343, 9.645343, 9.645343, ..., 7.921655, 7.921655,...\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/Cloud ISCCP/ISCCPCOSP-CLDTOT_TAU1.3_9.4_ISCCP-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/Cloud ISCCP/ISCCPCOSP-CLDTOT_TAU1.3_9.4_ISCCP-ANN-global_test.nc\n", + " * var_key: CLDTOT_TAU1.3_9.4_ISCCP\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/Cloud ISCCP/ISCCPCOSP-CLDTOT_TAU1.3_ISCCP-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/Cloud ISCCP/ISCCPCOSP-CLDTOT_TAU1.3_ISCCP-ANN-global_ref.nc\n", + " * var_key: CLDTOT_TAU1.3_ISCCP\n", + " \n", + "Not equal to tolerance rtol=1e-05, atol=0\n", + "\n", + "Mismatched elements: 10368 / 10368 (100%)\n", + "Max absolute difference: 87.74811\n", + "Max relative difference: 1.\n", + " x: array([[0., 0., 0., ..., 0., 0., 0.],\n", + " [0., 0., 0., ..., 0., 0., 0.],\n", + " [0., 0., 0., ..., 0., 0., 0.],...\n", + " y: array([[11.642273, 11.642273, 11.642273, ..., 15.010149, 15.010149,\n", + " 15.010149],\n", + " [13.580242, 13.580242, 13.580242, ..., 15.29873 , 15.29873 ,...\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/Cloud ISCCP/ISCCPCOSP-CLDTOT_TAU1.3_ISCCP-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/Cloud ISCCP/ISCCPCOSP-CLDTOT_TAU1.3_ISCCP-ANN-global_test.nc\n", + " * var_key: CLDTOT_TAU1.3_ISCCP\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/Cloud ISCCP/ISCCPCOSP-CLDTOT_TAU9.4_ISCCP-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/Cloud ISCCP/ISCCPCOSP-CLDTOT_TAU9.4_ISCCP-ANN-global_ref.nc\n", + " * var_key: CLDTOT_TAU9.4_ISCCP\n", + " \n", + "Not equal to tolerance rtol=1e-05, atol=0\n", + "\n", + "Mismatched elements: 10368 / 10368 (100%)\n", + "Max absolute difference: 52.669422\n", + "Max relative difference: 1.\n", + " x: array([[0., 0., 0., ..., 0., 0., 0.],\n", + " [0., 0., 0., ..., 0., 0., 0.],\n", + " [0., 0., 0., ..., 0., 0., 0.],...\n", + " y: array([[ 4.805976, 4.805976, 4.805976, ..., 6.27921 , 6.27921 ,\n", + " 6.27921 ],\n", + " [ 3.934899, 3.934899, 3.934899, ..., 7.377073, 7.377073,...\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/Cloud ISCCP/ISCCPCOSP-CLDTOT_TAU9.4_ISCCP-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/Cloud ISCCP/ISCCPCOSP-CLDTOT_TAU9.4_ISCCP-ANN-global_test.nc\n", + " * var_key: CLDTOT_TAU9.4_ISCCP\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/Cloud MISR/MISRCOSP-CLDLOW_TAU1.3_9.4_MISR-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/Cloud MISR/MISRCOSP-CLDLOW_TAU1.3_9.4_MISR-ANN-global_ref.nc\n", + " * var_key: CLDLOW_TAU1.3_9.4_MISR\n", + " \n", + "Not equal to tolerance rtol=1e-05, atol=0\n", + "\n", + "Mismatched elements: 39457 / 64800 (60.9%)\n", + "Max absolute difference: 22.411116\n", + "Max relative difference: 0.6832267\n", + " x: array([[nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],...\n", + " y: array([[nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],...\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/Cloud MISR/MISRCOSP-CLDLOW_TAU1.3_9.4_MISR-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/Cloud MISR/MISRCOSP-CLDLOW_TAU1.3_9.4_MISR-ANN-global_test.nc\n", + " * var_key: CLDLOW_TAU1.3_9.4_MISR\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/Cloud MISR/MISRCOSP-CLDLOW_TAU1.3_MISR-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/Cloud MISR/MISRCOSP-CLDLOW_TAU1.3_MISR-ANN-global_ref.nc\n", + " * var_key: CLDLOW_TAU1.3_MISR\n", + " \n", + "Not equal to tolerance rtol=1e-05, atol=0\n", + "\n", + "Mismatched elements: 39499 / 64800 (61%)\n", + "Max absolute difference: 37.673122\n", + "Max relative difference: 0.62295455\n", + " x: array([[nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],...\n", + " y: array([[nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],...\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/Cloud MISR/MISRCOSP-CLDLOW_TAU1.3_MISR-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/Cloud MISR/MISRCOSP-CLDLOW_TAU1.3_MISR-ANN-global_test.nc\n", + " * var_key: CLDLOW_TAU1.3_MISR\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/Cloud MISR/MISRCOSP-CLDLOW_TAU9.4_MISR-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/Cloud MISR/MISRCOSP-CLDLOW_TAU9.4_MISR-ANN-global_ref.nc\n", + " * var_key: CLDLOW_TAU9.4_MISR\n", + " \n", + "Not equal to tolerance rtol=1e-05, atol=0\n", + "\n", + "Mismatched elements: 39323 / 64800 (60.7%)\n", + "Max absolute difference: 31.085188\n", + "Max relative difference: 0.96666664\n", + " x: array([[nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],...\n", + " y: array([[nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],...\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/Cloud MISR/MISRCOSP-CLDLOW_TAU9.4_MISR-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/Cloud MISR/MISRCOSP-CLDLOW_TAU9.4_MISR-ANN-global_test.nc\n", + " * var_key: CLDLOW_TAU9.4_MISR\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/Cloud MISR/MISRCOSP-CLDTOT_TAU1.3_9.4_MISR-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/Cloud MISR/MISRCOSP-CLDTOT_TAU1.3_9.4_MISR-ANN-global_ref.nc\n", + " * var_key: CLDTOT_TAU1.3_9.4_MISR\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/Cloud MISR/MISRCOSP-CLDTOT_TAU1.3_9.4_MISR-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/Cloud MISR/MISRCOSP-CLDTOT_TAU1.3_9.4_MISR-ANN-global_test.nc\n", + " * var_key: CLDTOT_TAU1.3_9.4_MISR\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/Cloud MISR/MISRCOSP-CLDTOT_TAU1.3_MISR-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/Cloud MISR/MISRCOSP-CLDTOT_TAU1.3_MISR-ANN-global_ref.nc\n", + " * var_key: CLDTOT_TAU1.3_MISR\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/Cloud MISR/MISRCOSP-CLDTOT_TAU1.3_MISR-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/Cloud MISR/MISRCOSP-CLDTOT_TAU1.3_MISR-ANN-global_test.nc\n", + " * var_key: CLDTOT_TAU1.3_MISR\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/Cloud MISR/MISRCOSP-CLDTOT_TAU9.4_MISR-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/Cloud MISR/MISRCOSP-CLDTOT_TAU9.4_MISR-ANN-global_ref.nc\n", + " * var_key: CLDTOT_TAU9.4_MISR\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/Cloud MISR/MISRCOSP-CLDTOT_TAU9.4_MISR-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/Cloud MISR/MISRCOSP-CLDTOT_TAU9.4_MISR-ANN-global_test.nc\n", + " * var_key: CLDTOT_TAU9.4_MISR\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/Cloud MODIS/MODISCOSP-CLDHGH_TAU1.3_9.4_MODIS-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/Cloud MODIS/MODISCOSP-CLDHGH_TAU1.3_9.4_MODIS-ANN-global_ref.nc\n", + " * var_key: CLDHGH_TAU1.3_9.4_MODIS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/Cloud MODIS/MODISCOSP-CLDHGH_TAU1.3_9.4_MODIS-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/Cloud MODIS/MODISCOSP-CLDHGH_TAU1.3_9.4_MODIS-ANN-global_test.nc\n", + " * var_key: CLDHGH_TAU1.3_9.4_MODIS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/Cloud MODIS/MODISCOSP-CLDHGH_TAU1.3_MODIS-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/Cloud MODIS/MODISCOSP-CLDHGH_TAU1.3_MODIS-ANN-global_ref.nc\n", + " * var_key: CLDHGH_TAU1.3_MODIS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/Cloud MODIS/MODISCOSP-CLDHGH_TAU1.3_MODIS-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/Cloud MODIS/MODISCOSP-CLDHGH_TAU1.3_MODIS-ANN-global_test.nc\n", + " * var_key: CLDHGH_TAU1.3_MODIS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/Cloud MODIS/MODISCOSP-CLDHGH_TAU9.4_MODIS-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/Cloud MODIS/MODISCOSP-CLDHGH_TAU9.4_MODIS-ANN-global_ref.nc\n", + " * var_key: CLDHGH_TAU9.4_MODIS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/Cloud MODIS/MODISCOSP-CLDHGH_TAU9.4_MODIS-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/Cloud MODIS/MODISCOSP-CLDHGH_TAU9.4_MODIS-ANN-global_test.nc\n", + " * var_key: CLDHGH_TAU9.4_MODIS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/Cloud MODIS/MODISCOSP-CLDTOT_TAU1.3_9.4_MODIS-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/Cloud MODIS/MODISCOSP-CLDTOT_TAU1.3_9.4_MODIS-ANN-global_ref.nc\n", + " * var_key: CLDTOT_TAU1.3_9.4_MODIS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/Cloud MODIS/MODISCOSP-CLDTOT_TAU1.3_9.4_MODIS-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/Cloud MODIS/MODISCOSP-CLDTOT_TAU1.3_9.4_MODIS-ANN-global_test.nc\n", + " * var_key: CLDTOT_TAU1.3_9.4_MODIS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/Cloud MODIS/MODISCOSP-CLDTOT_TAU1.3_MODIS-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/Cloud MODIS/MODISCOSP-CLDTOT_TAU1.3_MODIS-ANN-global_ref.nc\n", + " * var_key: CLDTOT_TAU1.3_MODIS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/Cloud MODIS/MODISCOSP-CLDTOT_TAU1.3_MODIS-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/Cloud MODIS/MODISCOSP-CLDTOT_TAU1.3_MODIS-ANN-global_test.nc\n", + " * var_key: CLDTOT_TAU1.3_MODIS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/Cloud MODIS/MODISCOSP-CLDTOT_TAU9.4_MODIS-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/Cloud MODIS/MODISCOSP-CLDTOT_TAU9.4_MODIS-ANN-global_ref.nc\n", + " * var_key: CLDTOT_TAU9.4_MODIS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/Cloud MODIS/MODISCOSP-CLDTOT_TAU9.4_MODIS-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/Cloud MODIS/MODISCOSP-CLDTOT_TAU9.4_MODIS-ANN-global_test.nc\n", + " * var_key: CLDTOT_TAU9.4_MODIS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/Cloud SSM/I/SSMI-TGCLDLWP_OCN-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/Cloud SSM/I/SSMI-TGCLDLWP_OCN-ANN-global_ref.nc\n", + " * var_key: TGCLDLWP_OCN\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/Cloud SSM/I/SSMI-TGCLDLWP_OCN-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/Cloud SSM/I/SSMI-TGCLDLWP_OCN-ANN-global_test.nc\n", + " * var_key: TGCLDLWP_OCN\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/ERA5/ERA5-FLNS-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/ERA5/ERA5-FLNS-ANN-global_ref.nc\n", + " * var_key: FLNS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/ERA5/ERA5-FLNS-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/ERA5/ERA5-FLNS-ANN-global_test.nc\n", + " * var_key: FLNS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/ERA5/ERA5-FSNS-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/ERA5/ERA5-FSNS-ANN-global_ref.nc\n", + " * var_key: FSNS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/ERA5/ERA5-FSNS-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/ERA5/ERA5-FSNS-ANN-global_test.nc\n", + " * var_key: FSNS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/ERA5/ERA5-LHFLX-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/ERA5/ERA5-LHFLX-ANN-global_ref.nc\n", + " * var_key: LHFLX\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/ERA5/ERA5-LHFLX-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/ERA5/ERA5-LHFLX-ANN-global_test.nc\n", + " * var_key: LHFLX\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/ERA5/ERA5-NET_FLUX_SRF-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/ERA5/ERA5-NET_FLUX_SRF-ANN-global_ref.nc\n", + " * var_key: NET_FLUX_SRF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/ERA5/ERA5-NET_FLUX_SRF-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/ERA5/ERA5-NET_FLUX_SRF-ANN-global_test.nc\n", + " * var_key: NET_FLUX_SRF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/ERA5/ERA5-OMEGA-200-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/ERA5/ERA5-OMEGA-200-ANN-global_ref.nc\n", + " * var_key: OMEGA\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/ERA5/ERA5-OMEGA-200-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/ERA5/ERA5-OMEGA-200-ANN-global_test.nc\n", + " * var_key: OMEGA\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/ERA5/ERA5-OMEGA-500-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/ERA5/ERA5-OMEGA-500-ANN-global_ref.nc\n", + " * var_key: OMEGA\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/ERA5/ERA5-OMEGA-500-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/ERA5/ERA5-OMEGA-500-ANN-global_test.nc\n", + " * var_key: OMEGA\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/ERA5/ERA5-OMEGA-850-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/ERA5/ERA5-OMEGA-850-ANN-global_ref.nc\n", + " * var_key: OMEGA\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/ERA5/ERA5-OMEGA-850-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/ERA5/ERA5-OMEGA-850-ANN-global_test.nc\n", + " * var_key: OMEGA\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/ERA5/ERA5-PRECT-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/ERA5/ERA5-PRECT-ANN-global_ref.nc\n", + " * var_key: PRECT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/ERA5/ERA5-PRECT-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/ERA5/ERA5-PRECT-ANN-global_test.nc\n", + " * var_key: PRECT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/ERA5/ERA5-PSL-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/ERA5/ERA5-PSL-ANN-global_ref.nc\n", + " * var_key: PSL\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/ERA5/ERA5-PSL-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/ERA5/ERA5-PSL-ANN-global_test.nc\n", + " * var_key: PSL\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/ERA5/ERA5-SHFLX-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/ERA5/ERA5-SHFLX-ANN-global_ref.nc\n", + " * var_key: SHFLX\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/ERA5/ERA5-SHFLX-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/ERA5/ERA5-SHFLX-ANN-global_test.nc\n", + " * var_key: SHFLX\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/ERA5/ERA5-T-200-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/ERA5/ERA5-T-200-ANN-global_ref.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/ERA5/ERA5-T-200-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/ERA5/ERA5-T-200-ANN-global_test.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/ERA5/ERA5-T-850-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/ERA5/ERA5-T-850-ANN-global_ref.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/ERA5/ERA5-T-850-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/ERA5/ERA5-T-850-ANN-global_test.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/ERA5/ERA5-TAUXY-ANN-ocean_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/ERA5/ERA5-TAUXY-ANN-ocean_ref.nc\n", + " * var_key: TAUXY\n", + " \n", + "Not equal to tolerance rtol=1e-05, atol=0\n", + "\n", + "x and y nan location mismatch:\n", + " x: array([[nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],...\n", + " y: array([[nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],...\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/ERA5/ERA5-TAUXY-ANN-ocean_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/ERA5/ERA5-TAUXY-ANN-ocean_test.nc\n", + " * var_key: TAUXY\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/ERA5/ERA5-TMQ-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/ERA5/ERA5-TMQ-ANN-global_ref.nc\n", + " * var_key: TMQ\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/ERA5/ERA5-TMQ-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/ERA5/ERA5-TMQ-ANN-global_test.nc\n", + " * var_key: TMQ\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/ERA5/ERA5-TREFHT-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/ERA5/ERA5-TREFHT-ANN-global_ref.nc\n", + " * var_key: TREFHT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/ERA5/ERA5-TREFHT-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/ERA5/ERA5-TREFHT-ANN-global_test.nc\n", + " * var_key: TREFHT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/ERA5/ERA5-TREFHT-ANN-land_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/ERA5/ERA5-TREFHT-ANN-land_ref.nc\n", + " * var_key: TREFHT\n", + " \n", + "Not equal to tolerance rtol=1e-05, atol=0\n", + "\n", + "x and y nan location mismatch:\n", + " x: array([[-45.434464, -45.434464, -45.434464, ..., -45.434464, -45.434464,\n", + " -45.434464],\n", + " [-45.000122, -44.998978, -44.99788 , ..., nan, nan,...\n", + " y: array([[-45.434464, -45.434464, -45.434464, ..., -45.434464, -45.434464,\n", + " -45.434464],\n", + " [-45.000122, -44.998978, -44.99788 , ..., -45.001938, -45.001343,...\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/ERA5/ERA5-TREFHT-ANN-land_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/ERA5/ERA5-TREFHT-ANN-land_test.nc\n", + " * var_key: TREFHT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/ERA5/ERA5-U-200-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/ERA5/ERA5-U-200-ANN-global_ref.nc\n", + " * var_key: U\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/ERA5/ERA5-U-200-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/ERA5/ERA5-U-200-ANN-global_test.nc\n", + " * var_key: U\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/ERA5/ERA5-U-850-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/ERA5/ERA5-U-850-ANN-global_ref.nc\n", + " * var_key: U\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/ERA5/ERA5-U-850-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/ERA5/ERA5-U-850-ANN-global_test.nc\n", + " * var_key: U\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/ERA5/ERA5-Z3-500-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/ERA5/ERA5-Z3-500-ANN-global_ref.nc\n", + " * var_key: Z3\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/ERA5/ERA5-Z3-500-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/ERA5/ERA5-Z3-500-ANN-global_test.nc\n", + " * var_key: Z3\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/ERA5/ERA5_ext-QREFHT-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/ERA5/ERA5_ext-QREFHT-ANN-global_ref.nc\n", + " * var_key: QREFHT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/ERA5/ERA5_ext-QREFHT-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/ERA5/ERA5_ext-QREFHT-ANN-global_test.nc\n", + " * var_key: QREFHT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/ERA5/ERA5_ext-U10-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/ERA5/ERA5_ext-U10-ANN-global_ref.nc\n", + " * var_key: U10\n", + " * Could not find variable key in the dataset(s)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/ERA5/ERA5_ext-U10-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/ERA5/ERA5_ext-U10-ANN-global_test.nc\n", + " * var_key: U10\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/GPCP_OAFLux/GPCP_OAFLux-PminusE-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/GPCP_OAFLux/GPCP_OAFLux-PminusE-ANN-global_ref.nc\n", + " * var_key: PminusE\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/GPCP_OAFLux/GPCP_OAFLux-PminusE-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/GPCP_OAFLux/GPCP_OAFLux-PminusE-ANN-global_test.nc\n", + " * var_key: PminusE\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/GPCP_v2.3/GPCP_v2.3-PRECT-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/GPCP_v2.3/GPCP_v2.3-PRECT-ANN-global_ref.nc\n", + " * var_key: PRECT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/GPCP_v2.3/GPCP_v2.3-PRECT-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/GPCP_v2.3/GPCP_v2.3-PRECT-ANN-global_test.nc\n", + " * var_key: PRECT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/GPCP_v3.2/GPCP_v3.2-PRECT-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/GPCP_v3.2/GPCP_v3.2-PRECT-ANN-global_ref.nc\n", + " * var_key: PRECT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/GPCP_v3.2/GPCP_v3.2-PRECT-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/GPCP_v3.2/GPCP_v3.2-PRECT-ANN-global_test.nc\n", + " * var_key: PRECT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/MERRA2/MERRA2-FLNS-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/MERRA2/MERRA2-FLNS-ANN-global_ref.nc\n", + " * var_key: FLNS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/MERRA2/MERRA2-FLNS-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/MERRA2/MERRA2-FLNS-ANN-global_test.nc\n", + " * var_key: FLNS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/MERRA2/MERRA2-FSNS-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/MERRA2/MERRA2-FSNS-ANN-global_ref.nc\n", + " * var_key: FSNS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/MERRA2/MERRA2-FSNS-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/MERRA2/MERRA2-FSNS-ANN-global_test.nc\n", + " * var_key: FSNS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/MERRA2/MERRA2-LHFLX-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/MERRA2/MERRA2-LHFLX-ANN-global_ref.nc\n", + " * var_key: LHFLX\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/MERRA2/MERRA2-LHFLX-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/MERRA2/MERRA2-LHFLX-ANN-global_test.nc\n", + " * var_key: LHFLX\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/MERRA2/MERRA2-NET_FLUX_SRF-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/MERRA2/MERRA2-NET_FLUX_SRF-ANN-global_ref.nc\n", + " * var_key: NET_FLUX_SRF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/MERRA2/MERRA2-NET_FLUX_SRF-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/MERRA2/MERRA2-NET_FLUX_SRF-ANN-global_test.nc\n", + " * var_key: NET_FLUX_SRF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/MERRA2/MERRA2-OMEGA-200-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/MERRA2/MERRA2-OMEGA-200-ANN-global_ref.nc\n", + " * var_key: OMEGA\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/MERRA2/MERRA2-OMEGA-200-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/MERRA2/MERRA2-OMEGA-200-ANN-global_test.nc\n", + " * var_key: OMEGA\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/MERRA2/MERRA2-OMEGA-500-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/MERRA2/MERRA2-OMEGA-500-ANN-global_ref.nc\n", + " * var_key: OMEGA\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/MERRA2/MERRA2-OMEGA-500-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/MERRA2/MERRA2-OMEGA-500-ANN-global_test.nc\n", + " * var_key: OMEGA\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/MERRA2/MERRA2-OMEGA-850-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/MERRA2/MERRA2-OMEGA-850-ANN-global_ref.nc\n", + " * var_key: OMEGA\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/MERRA2/MERRA2-OMEGA-850-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/MERRA2/MERRA2-OMEGA-850-ANN-global_test.nc\n", + " * var_key: OMEGA\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/MERRA2/MERRA2-PRECT-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/MERRA2/MERRA2-PRECT-ANN-global_ref.nc\n", + " * var_key: PRECT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/MERRA2/MERRA2-PRECT-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/MERRA2/MERRA2-PRECT-ANN-global_test.nc\n", + " * var_key: PRECT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/MERRA2/MERRA2-PSL-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/MERRA2/MERRA2-PSL-ANN-global_ref.nc\n", + " * var_key: PSL\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/MERRA2/MERRA2-PSL-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/MERRA2/MERRA2-PSL-ANN-global_test.nc\n", + " * var_key: PSL\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/MERRA2/MERRA2-SHFLX-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/MERRA2/MERRA2-SHFLX-ANN-global_ref.nc\n", + " * var_key: SHFLX\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/MERRA2/MERRA2-SHFLX-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/MERRA2/MERRA2-SHFLX-ANN-global_test.nc\n", + " * var_key: SHFLX\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/MERRA2/MERRA2-T-200-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/MERRA2/MERRA2-T-200-ANN-global_ref.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/MERRA2/MERRA2-T-200-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/MERRA2/MERRA2-T-200-ANN-global_test.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/MERRA2/MERRA2-T-850-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/MERRA2/MERRA2-T-850-ANN-global_ref.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/MERRA2/MERRA2-T-850-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/MERRA2/MERRA2-T-850-ANN-global_test.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/MERRA2/MERRA2-TAUXY-ANN-ocean_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/MERRA2/MERRA2-TAUXY-ANN-ocean_ref.nc\n", + " * var_key: TAUXY\n", + " \n", + "Not equal to tolerance rtol=1e-05, atol=0\n", + "\n", + "x and y nan location mismatch:\n", + " x: array([[nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],...\n", + " y: array([[nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],...\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/MERRA2/MERRA2-TAUXY-ANN-ocean_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/MERRA2/MERRA2-TAUXY-ANN-ocean_test.nc\n", + " * var_key: TAUXY\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/MERRA2/MERRA2-TMQ-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/MERRA2/MERRA2-TMQ-ANN-global_ref.nc\n", + " * var_key: TMQ\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/MERRA2/MERRA2-TMQ-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/MERRA2/MERRA2-TMQ-ANN-global_test.nc\n", + " * var_key: TMQ\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/MERRA2/MERRA2-TREFHT-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/MERRA2/MERRA2-TREFHT-ANN-global_ref.nc\n", + " * var_key: TREFHT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/MERRA2/MERRA2-TREFHT-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/MERRA2/MERRA2-TREFHT-ANN-global_test.nc\n", + " * var_key: TREFHT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/MERRA2/MERRA2-TREFHT-ANN-land_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/MERRA2/MERRA2-TREFHT-ANN-land_ref.nc\n", + " * var_key: TREFHT\n", + " \n", + "Not equal to tolerance rtol=1e-05, atol=0\n", + "\n", + "x and y nan location mismatch:\n", + " x: array([[-49.840927, -49.840927, -49.840927, ..., -49.840927, -49.840927,\n", + " -49.840927],\n", + " [-49.387894, -49.372787, -49.357605, ..., -49.43271 , nan,...\n", + " y: array([[-49.840927, -49.840927, -49.840927, ..., -49.840927, -49.840927,\n", + " -49.840927],\n", + " [-49.387894, -49.372787, -49.357605, ..., -49.43271 , -49.417847,...\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/MERRA2/MERRA2-TREFHT-ANN-land_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/MERRA2/MERRA2-TREFHT-ANN-land_test.nc\n", + " * var_key: TREFHT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/MERRA2/MERRA2-U-200-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/MERRA2/MERRA2-U-200-ANN-global_ref.nc\n", + " * var_key: U\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/MERRA2/MERRA2-U-200-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/MERRA2/MERRA2-U-200-ANN-global_test.nc\n", + " * var_key: U\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/MERRA2/MERRA2-U-850-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/MERRA2/MERRA2-U-850-ANN-global_ref.nc\n", + " * var_key: U\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/MERRA2/MERRA2-U-850-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/MERRA2/MERRA2-U-850-ANN-global_test.nc\n", + " * var_key: U\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/MERRA2/MERRA2-Z3-500-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/MERRA2/MERRA2-Z3-500-ANN-global_ref.nc\n", + " * var_key: Z3\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/MERRA2/MERRA2-Z3-500-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/MERRA2/MERRA2-Z3-500-ANN-global_test.nc\n", + " * var_key: Z3\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/SST_CL_HadISST/HadISST_CL-SST-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/SST_CL_HadISST/HadISST_CL-SST-ANN-global_ref.nc\n", + " * var_key: SST\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/SST_CL_HadISST/HadISST_CL-SST-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/SST_CL_HadISST/HadISST_CL-SST-ANN-global_test.nc\n", + " * var_key: SST\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/SST_HadISST/HadISST-SST-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/SST_HadISST/HadISST-SST-ANN-global_test.nc\n", + " * var_key: SST\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/SST_PD_HadISST/HadISST_PD-SST-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/SST_PD_HadISST/HadISST_PD-SST-ANN-global_ref.nc\n", + " * var_key: SST\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/SST_PD_HadISST/HadISST_PD-SST-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/SST_PD_HadISST/HadISST_PD-SST-ANN-global_test.nc\n", + " * var_key: SST\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/SST_PI_HadISST/HadISST_PI-SST-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/SST_PI_HadISST/HadISST_PI-SST-ANN-global_ref.nc\n", + " * var_key: SST\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/SST_PI_HadISST/HadISST_PI-SST-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/SST_PI_HadISST/HadISST_PI-SST-ANN-global_test.nc\n", + " * var_key: SST\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/WHOI-OAFlux/OAFlux-LHFLX-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/WHOI-OAFlux/OAFlux-LHFLX-ANN-global_ref.nc\n", + " * var_key: LHFLX\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/WHOI-OAFlux/OAFlux-LHFLX-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/WHOI-OAFlux/OAFlux-LHFLX-ANN-global_test.nc\n", + " * var_key: LHFLX\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/WHOI-OAFlux/OAFlux-SHFLX-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/WHOI-OAFlux/OAFlux-SHFLX-ANN-global_ref.nc\n", + " * var_key: SHFLX\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/WHOI-OAFlux/OAFlux-SHFLX-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/WHOI-OAFlux/OAFlux-SHFLX-ANN-global_test.nc\n", + " * var_key: SHFLX\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/ERA5 (relative difference)/ERA5-Q-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/ERA5 (relative difference)/ERA5-Q-ANN-global_ref.nc\n", + " * var_key: Q\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/ERA5 (relative difference)/ERA5-Q-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/ERA5 (relative difference)/ERA5-Q-ANN-global_test.nc\n", + " * var_key: Q\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/ERA5 (relative difference)/ERA5-Q-DJF-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/ERA5 (relative difference)/ERA5-Q-DJF-global_ref.nc\n", + " * var_key: Q\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/ERA5 (relative difference)/ERA5-Q-DJF-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/ERA5 (relative difference)/ERA5-Q-DJF-global_test.nc\n", + " * var_key: Q\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/ERA5 (relative difference)/ERA5-Q-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/ERA5 (relative difference)/ERA5-Q-JJA-global_ref.nc\n", + " * var_key: Q\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/ERA5 (relative difference)/ERA5-Q-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/ERA5 (relative difference)/ERA5-Q-JJA-global_test.nc\n", + " * var_key: Q\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/ERA5 (relative difference)/ERA5-Q-MAM-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/ERA5 (relative difference)/ERA5-Q-MAM-global_ref.nc\n", + " * var_key: Q\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/ERA5 (relative difference)/ERA5-Q-MAM-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/ERA5 (relative difference)/ERA5-Q-MAM-global_test.nc\n", + " * var_key: Q\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/ERA5 (relative difference)/ERA5-Q-SON-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/ERA5 (relative difference)/ERA5-Q-SON-global_ref.nc\n", + " * var_key: Q\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/ERA5 (relative difference)/ERA5-Q-SON-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/ERA5 (relative difference)/ERA5-Q-SON-global_test.nc\n", + " * var_key: Q\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/ERA5/ERA5-OMEGA-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/ERA5/ERA5-OMEGA-ANN-global_ref.nc\n", + " * var_key: OMEGA\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/ERA5/ERA5-OMEGA-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/ERA5/ERA5-OMEGA-ANN-global_test.nc\n", + " * var_key: OMEGA\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/ERA5/ERA5-OMEGA-DJF-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/ERA5/ERA5-OMEGA-DJF-global_ref.nc\n", + " * var_key: OMEGA\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/ERA5/ERA5-OMEGA-DJF-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/ERA5/ERA5-OMEGA-DJF-global_test.nc\n", + " * var_key: OMEGA\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/ERA5/ERA5-OMEGA-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/ERA5/ERA5-OMEGA-JJA-global_ref.nc\n", + " * var_key: OMEGA\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/ERA5/ERA5-OMEGA-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/ERA5/ERA5-OMEGA-JJA-global_test.nc\n", + " * var_key: OMEGA\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/ERA5/ERA5-OMEGA-MAM-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/ERA5/ERA5-OMEGA-MAM-global_ref.nc\n", + " * var_key: OMEGA\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/ERA5/ERA5-OMEGA-MAM-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/ERA5/ERA5-OMEGA-MAM-global_test.nc\n", + " * var_key: OMEGA\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/ERA5/ERA5-OMEGA-SON-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/ERA5/ERA5-OMEGA-SON-global_ref.nc\n", + " * var_key: OMEGA\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/ERA5/ERA5-OMEGA-SON-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/ERA5/ERA5-OMEGA-SON-global_test.nc\n", + " * var_key: OMEGA\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/ERA5/ERA5-Q-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/ERA5/ERA5-Q-ANN-global_ref.nc\n", + " * var_key: Q\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/ERA5/ERA5-Q-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/ERA5/ERA5-Q-ANN-global_test.nc\n", + " * var_key: Q\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/ERA5/ERA5-Q-DJF-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/ERA5/ERA5-Q-DJF-global_ref.nc\n", + " * var_key: Q\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/ERA5/ERA5-Q-DJF-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/ERA5/ERA5-Q-DJF-global_test.nc\n", + " * var_key: Q\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/ERA5/ERA5-Q-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/ERA5/ERA5-Q-JJA-global_ref.nc\n", + " * var_key: Q\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/ERA5/ERA5-Q-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/ERA5/ERA5-Q-JJA-global_test.nc\n", + " * var_key: Q\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/ERA5/ERA5-Q-MAM-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/ERA5/ERA5-Q-MAM-global_ref.nc\n", + " * var_key: Q\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/ERA5/ERA5-Q-MAM-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/ERA5/ERA5-Q-MAM-global_test.nc\n", + " * var_key: Q\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/ERA5/ERA5-Q-SON-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/ERA5/ERA5-Q-SON-global_ref.nc\n", + " * var_key: Q\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/ERA5/ERA5-Q-SON-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/ERA5/ERA5-Q-SON-global_test.nc\n", + " * var_key: Q\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/ERA5/ERA5-RELHUM-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/ERA5/ERA5-RELHUM-ANN-global_ref.nc\n", + " * var_key: RELHUM\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/ERA5/ERA5-RELHUM-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/ERA5/ERA5-RELHUM-ANN-global_test.nc\n", + " * var_key: RELHUM\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/ERA5/ERA5-RELHUM-DJF-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/ERA5/ERA5-RELHUM-DJF-global_ref.nc\n", + " * var_key: RELHUM\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/ERA5/ERA5-RELHUM-DJF-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/ERA5/ERA5-RELHUM-DJF-global_test.nc\n", + " * var_key: RELHUM\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/ERA5/ERA5-RELHUM-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/ERA5/ERA5-RELHUM-JJA-global_ref.nc\n", + " * var_key: RELHUM\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/ERA5/ERA5-RELHUM-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/ERA5/ERA5-RELHUM-JJA-global_test.nc\n", + " * var_key: RELHUM\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/ERA5/ERA5-RELHUM-MAM-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/ERA5/ERA5-RELHUM-MAM-global_ref.nc\n", + " * var_key: RELHUM\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/ERA5/ERA5-RELHUM-MAM-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/ERA5/ERA5-RELHUM-MAM-global_test.nc\n", + " * var_key: RELHUM\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/ERA5/ERA5-RELHUM-SON-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/ERA5/ERA5-RELHUM-SON-global_ref.nc\n", + " * var_key: RELHUM\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/ERA5/ERA5-RELHUM-SON-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/ERA5/ERA5-RELHUM-SON-global_test.nc\n", + " * var_key: RELHUM\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/ERA5/ERA5-T-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/ERA5/ERA5-T-ANN-global_ref.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/ERA5/ERA5-T-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/ERA5/ERA5-T-ANN-global_test.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/ERA5/ERA5-T-DJF-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/ERA5/ERA5-T-DJF-global_ref.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/ERA5/ERA5-T-DJF-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/ERA5/ERA5-T-DJF-global_test.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/ERA5/ERA5-T-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/ERA5/ERA5-T-JJA-global_ref.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/ERA5/ERA5-T-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/ERA5/ERA5-T-JJA-global_test.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/ERA5/ERA5-T-MAM-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/ERA5/ERA5-T-MAM-global_ref.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/ERA5/ERA5-T-MAM-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/ERA5/ERA5-T-MAM-global_test.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/ERA5/ERA5-T-SON-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/ERA5/ERA5-T-SON-global_ref.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/ERA5/ERA5-T-SON-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/ERA5/ERA5-T-SON-global_test.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/ERA5/ERA5-U-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/ERA5/ERA5-U-ANN-global_ref.nc\n", + " * var_key: U\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/ERA5/ERA5-U-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/ERA5/ERA5-U-ANN-global_test.nc\n", + " * var_key: U\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/ERA5/ERA5-U-DJF-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/ERA5/ERA5-U-DJF-global_ref.nc\n", + " * var_key: U\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/ERA5/ERA5-U-DJF-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/ERA5/ERA5-U-DJF-global_test.nc\n", + " * var_key: U\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/ERA5/ERA5-U-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/ERA5/ERA5-U-JJA-global_ref.nc\n", + " * var_key: U\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/ERA5/ERA5-U-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/ERA5/ERA5-U-JJA-global_test.nc\n", + " * var_key: U\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/ERA5/ERA5-U-MAM-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/ERA5/ERA5-U-MAM-global_ref.nc\n", + " * var_key: U\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/ERA5/ERA5-U-MAM-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/ERA5/ERA5-U-MAM-global_test.nc\n", + " * var_key: U\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/ERA5/ERA5-U-SON-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/ERA5/ERA5-U-SON-global_ref.nc\n", + " * var_key: U\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/ERA5/ERA5-U-SON-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/ERA5/ERA5-U-SON-global_test.nc\n", + " * var_key: U\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/MERRA2 (relative difference)/MERRA2-Q-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/MERRA2 (relative difference)/MERRA2-Q-ANN-global_ref.nc\n", + " * var_key: Q\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/MERRA2 (relative difference)/MERRA2-Q-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/MERRA2 (relative difference)/MERRA2-Q-ANN-global_test.nc\n", + " * var_key: Q\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/MERRA2 (relative difference)/MERRA2-Q-DJF-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/MERRA2 (relative difference)/MERRA2-Q-DJF-global_ref.nc\n", + " * var_key: Q\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/MERRA2 (relative difference)/MERRA2-Q-DJF-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/MERRA2 (relative difference)/MERRA2-Q-DJF-global_test.nc\n", + " * var_key: Q\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/MERRA2 (relative difference)/MERRA2-Q-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/MERRA2 (relative difference)/MERRA2-Q-JJA-global_ref.nc\n", + " * var_key: Q\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/MERRA2 (relative difference)/MERRA2-Q-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/MERRA2 (relative difference)/MERRA2-Q-JJA-global_test.nc\n", + " * var_key: Q\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/MERRA2 (relative difference)/MERRA2-Q-MAM-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/MERRA2 (relative difference)/MERRA2-Q-MAM-global_ref.nc\n", + " * var_key: Q\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/MERRA2 (relative difference)/MERRA2-Q-MAM-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/MERRA2 (relative difference)/MERRA2-Q-MAM-global_test.nc\n", + " * var_key: Q\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/MERRA2 (relative difference)/MERRA2-Q-SON-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/MERRA2 (relative difference)/MERRA2-Q-SON-global_ref.nc\n", + " * var_key: Q\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/MERRA2 (relative difference)/MERRA2-Q-SON-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/MERRA2 (relative difference)/MERRA2-Q-SON-global_test.nc\n", + " * var_key: Q\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/MERRA2/MERRA2-OMEGA-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/MERRA2/MERRA2-OMEGA-ANN-global_ref.nc\n", + " * var_key: OMEGA\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/MERRA2/MERRA2-OMEGA-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/MERRA2/MERRA2-OMEGA-ANN-global_test.nc\n", + " * var_key: OMEGA\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/MERRA2/MERRA2-OMEGA-DJF-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/MERRA2/MERRA2-OMEGA-DJF-global_ref.nc\n", + " * var_key: OMEGA\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/MERRA2/MERRA2-OMEGA-DJF-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/MERRA2/MERRA2-OMEGA-DJF-global_test.nc\n", + " * var_key: OMEGA\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/MERRA2/MERRA2-OMEGA-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/MERRA2/MERRA2-OMEGA-JJA-global_ref.nc\n", + " * var_key: OMEGA\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/MERRA2/MERRA2-OMEGA-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/MERRA2/MERRA2-OMEGA-JJA-global_test.nc\n", + " * var_key: OMEGA\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/MERRA2/MERRA2-OMEGA-MAM-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/MERRA2/MERRA2-OMEGA-MAM-global_ref.nc\n", + " * var_key: OMEGA\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/MERRA2/MERRA2-OMEGA-MAM-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/MERRA2/MERRA2-OMEGA-MAM-global_test.nc\n", + " * var_key: OMEGA\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/MERRA2/MERRA2-OMEGA-SON-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/MERRA2/MERRA2-OMEGA-SON-global_ref.nc\n", + " * var_key: OMEGA\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/MERRA2/MERRA2-OMEGA-SON-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/MERRA2/MERRA2-OMEGA-SON-global_test.nc\n", + " * var_key: OMEGA\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/MERRA2/MERRA2-Q-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/MERRA2/MERRA2-Q-ANN-global_ref.nc\n", + " * var_key: Q\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/MERRA2/MERRA2-Q-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/MERRA2/MERRA2-Q-ANN-global_test.nc\n", + " * var_key: Q\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/MERRA2/MERRA2-Q-DJF-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/MERRA2/MERRA2-Q-DJF-global_ref.nc\n", + " * var_key: Q\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/MERRA2/MERRA2-Q-DJF-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/MERRA2/MERRA2-Q-DJF-global_test.nc\n", + " * var_key: Q\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/MERRA2/MERRA2-Q-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/MERRA2/MERRA2-Q-JJA-global_ref.nc\n", + " * var_key: Q\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/MERRA2/MERRA2-Q-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/MERRA2/MERRA2-Q-JJA-global_test.nc\n", + " * var_key: Q\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/MERRA2/MERRA2-Q-MAM-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/MERRA2/MERRA2-Q-MAM-global_ref.nc\n", + " * var_key: Q\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/MERRA2/MERRA2-Q-MAM-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/MERRA2/MERRA2-Q-MAM-global_test.nc\n", + " * var_key: Q\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/MERRA2/MERRA2-Q-SON-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/MERRA2/MERRA2-Q-SON-global_ref.nc\n", + " * var_key: Q\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/MERRA2/MERRA2-Q-SON-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/MERRA2/MERRA2-Q-SON-global_test.nc\n", + " * var_key: Q\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/MERRA2/MERRA2-RELHUM-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/MERRA2/MERRA2-RELHUM-ANN-global_ref.nc\n", + " * var_key: RELHUM\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/MERRA2/MERRA2-RELHUM-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/MERRA2/MERRA2-RELHUM-ANN-global_test.nc\n", + " * var_key: RELHUM\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/MERRA2/MERRA2-RELHUM-DJF-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/MERRA2/MERRA2-RELHUM-DJF-global_ref.nc\n", + " * var_key: RELHUM\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/MERRA2/MERRA2-RELHUM-DJF-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/MERRA2/MERRA2-RELHUM-DJF-global_test.nc\n", + " * var_key: RELHUM\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/MERRA2/MERRA2-RELHUM-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/MERRA2/MERRA2-RELHUM-JJA-global_ref.nc\n", + " * var_key: RELHUM\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/MERRA2/MERRA2-RELHUM-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/MERRA2/MERRA2-RELHUM-JJA-global_test.nc\n", + " * var_key: RELHUM\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/MERRA2/MERRA2-RELHUM-MAM-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/MERRA2/MERRA2-RELHUM-MAM-global_ref.nc\n", + " * var_key: RELHUM\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/MERRA2/MERRA2-RELHUM-MAM-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/MERRA2/MERRA2-RELHUM-MAM-global_test.nc\n", + " * var_key: RELHUM\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/MERRA2/MERRA2-RELHUM-SON-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/MERRA2/MERRA2-RELHUM-SON-global_ref.nc\n", + " * var_key: RELHUM\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/MERRA2/MERRA2-RELHUM-SON-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/MERRA2/MERRA2-RELHUM-SON-global_test.nc\n", + " * var_key: RELHUM\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/MERRA2/MERRA2-T-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/MERRA2/MERRA2-T-ANN-global_ref.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/MERRA2/MERRA2-T-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/MERRA2/MERRA2-T-ANN-global_test.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/MERRA2/MERRA2-T-DJF-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/MERRA2/MERRA2-T-DJF-global_ref.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/MERRA2/MERRA2-T-DJF-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/MERRA2/MERRA2-T-DJF-global_test.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/MERRA2/MERRA2-T-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/MERRA2/MERRA2-T-JJA-global_ref.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/MERRA2/MERRA2-T-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/MERRA2/MERRA2-T-JJA-global_test.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/MERRA2/MERRA2-T-MAM-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/MERRA2/MERRA2-T-MAM-global_ref.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/MERRA2/MERRA2-T-MAM-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/MERRA2/MERRA2-T-MAM-global_test.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/MERRA2/MERRA2-T-SON-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/MERRA2/MERRA2-T-SON-global_ref.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/MERRA2/MERRA2-T-SON-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/MERRA2/MERRA2-T-SON-global_test.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/MERRA2/MERRA2-U-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/MERRA2/MERRA2-U-ANN-global_ref.nc\n", + " * var_key: U\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/MERRA2/MERRA2-U-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/MERRA2/MERRA2-U-ANN-global_test.nc\n", + " * var_key: U\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/MERRA2/MERRA2-U-DJF-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/MERRA2/MERRA2-U-DJF-global_ref.nc\n", + " * var_key: U\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/MERRA2/MERRA2-U-DJF-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/MERRA2/MERRA2-U-DJF-global_test.nc\n", + " * var_key: U\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/MERRA2/MERRA2-U-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/MERRA2/MERRA2-U-JJA-global_ref.nc\n", + " * var_key: U\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/MERRA2/MERRA2-U-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/MERRA2/MERRA2-U-JJA-global_test.nc\n", + " * var_key: U\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/MERRA2/MERRA2-U-MAM-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/MERRA2/MERRA2-U-MAM-global_ref.nc\n", + " * var_key: U\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/MERRA2/MERRA2-U-MAM-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/MERRA2/MERRA2-U-MAM-global_test.nc\n", + " * var_key: U\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/MERRA2/MERRA2-U-SON-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/MERRA2/MERRA2-U-SON-global_ref.nc\n", + " * var_key: U\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/MERRA2/MERRA2-U-SON-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/zonal_mean_2d/MERRA2/MERRA2-U-SON-global_test.nc\n", + " * var_key: U\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex7_obs_vs_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v2.8-ALBEDO-ANN-75S75N_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex7_obs_vs_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v2.8-ALBEDO-ANN-75S75N_ref.nc\n", + " * var_key: ALBEDO\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex7_obs_vs_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v2.8-ALBEDO-ANN-75S75N_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex7_obs_vs_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v2.8-ALBEDO-ANN-75S75N_test.nc\n", + " * var_key: ALBEDO\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex7_obs_vs_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v2.8-ALBEDOC-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex7_obs_vs_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v2.8-ALBEDOC-ANN-global_ref.nc\n", + " * var_key: ALBEDOC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex7_obs_vs_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v2.8-ALBEDOC-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex7_obs_vs_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v2.8-ALBEDOC-ANN-global_test.nc\n", + " * var_key: ALBEDOC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex7_obs_vs_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v2.8-FLUT-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex7_obs_vs_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v2.8-FLUT-ANN-global_ref.nc\n", + " * var_key: FLUT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex7_obs_vs_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v2.8-FLUT-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex7_obs_vs_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v2.8-FLUT-ANN-global_test.nc\n", + " * var_key: FLUT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex7_obs_vs_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v2.8-FLUTC-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex7_obs_vs_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v2.8-FLUTC-ANN-global_ref.nc\n", + " * var_key: FLUTC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex7_obs_vs_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v2.8-FLUTC-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex7_obs_vs_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v2.8-FLUTC-ANN-global_test.nc\n", + " * var_key: FLUTC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex7_obs_vs_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v2.8-FSNTOA-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex7_obs_vs_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v2.8-FSNTOA-ANN-global_ref.nc\n", + " * var_key: FSNTOA\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex7_obs_vs_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v2.8-FSNTOA-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex7_obs_vs_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v2.8-FSNTOA-ANN-global_test.nc\n", + " * var_key: FSNTOA\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex7_obs_vs_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v2.8-FSNTOAC-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex7_obs_vs_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v2.8-FSNTOAC-ANN-global_ref.nc\n", + " * var_key: FSNTOAC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex7_obs_vs_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v2.8-FSNTOAC-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex7_obs_vs_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v2.8-FSNTOAC-ANN-global_test.nc\n", + " * var_key: FSNTOAC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex7_obs_vs_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v2.8-LWCF-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex7_obs_vs_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v2.8-LWCF-ANN-global_ref.nc\n", + " * var_key: LWCF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex7_obs_vs_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v2.8-LWCF-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex7_obs_vs_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v2.8-LWCF-ANN-global_test.nc\n", + " * var_key: LWCF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex7_obs_vs_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v2.8-NETCF-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex7_obs_vs_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v2.8-NETCF-ANN-global_ref.nc\n", + " * var_key: NETCF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex7_obs_vs_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v2.8-NETCF-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex7_obs_vs_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v2.8-NETCF-ANN-global_test.nc\n", + " * var_key: NETCF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex7_obs_vs_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v2.8-RESTOM-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex7_obs_vs_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v2.8-RESTOM-ANN-global_ref.nc\n", + " * var_key: RESTOM\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex7_obs_vs_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v2.8-RESTOM-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex7_obs_vs_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v2.8-RESTOM-ANN-global_test.nc\n", + " * var_key: RESTOM\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex7_obs_vs_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v2.8-SOLIN-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex7_obs_vs_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v2.8-SOLIN-ANN-global_ref.nc\n", + " * var_key: SOLIN\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex7_obs_vs_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v2.8-SOLIN-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex7_obs_vs_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v2.8-SOLIN-ANN-global_test.nc\n", + " * var_key: SOLIN\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex7_obs_vs_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v2.8-SWCF-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex7_obs_vs_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v2.8-SWCF-ANN-global_ref.nc\n", + " * var_key: SWCF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-dev/ex7_obs_vs_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v2.8-SWCF-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex7_obs_vs_obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v2.8-SWCF-ANN-global_test.nc\n", + " * var_key: SWCF\n", + " * All close and within relative tolerance (1e-05)\n" + ] + } + ], + "source": [ + "results = _get_relative_diffs()" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": {}, + "outputs": [], + "source": [ + "(\n", + " missing_files,\n", + " matching_files,\n", + " mismatch_errors,\n", + " not_equal_errors,\n", + " key_errors,\n", + ") = results.values()" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": {}, + "outputs": [], + "source": [ + "sum_files_compared = (\n", + " len(matching_files)\n", + " + len(mismatch_errors)\n", + " + len(not_equal_errors)\n", + " + len(key_errors)\n", + " + len(missing_files)\n", + ")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Close results\n" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Matching files count: 1993/2078, 95.91%\n" + ] + } + ], + "source": [ + "pct_match = (len(matching_files) / sum_files_compared) * 100\n", + "\n", + "print(\n", + " f\"Matching files count: {len(matching_files)}/{sum_files_compared}, {pct_match:.2f}%\"\n", + ")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Missing Files\n" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Missing files count: 0, 0.00%\n" + ] + } + ], + "source": [ + "pct_missing = (len(missing_files) / sum_files_compared) * 100\n", + "\n", + "print(f\"Missing files count: {len(missing_files)}, {pct_missing:.2f}%\")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### `NaN` Mismatching Errors (Not concerned)\n", + "\n", + "I found these `nan` mismatch errors occur due to either:\n", + "\n", + "1. Regional subsetting on \"ccb\" flag in CDAT adding a coordinate points -- removing these coordinates results in matching results\n", + "2. Slightly different masking in the data between xCDAT and CDAT via xESMF/ESMF -- same number of nans just slightly shifted over some coordinates points\n", + "\n", + "- Refer to PR [#794](https://github.com/E3SM-Project/e3sm_diags/pull/794)\n" + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Mismatch errors count: 61, 0.00%\n" + ] + } + ], + "source": [ + "pct_mismatch = (len(mismatch_errors) / sum_files_compared) * 100\n", + "\n", + "print(f\"Mismatch errors count: {len(mismatch_errors)}, {pct_missing:.2f}%\")" + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "['/global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex2_modTS_vs_modTS_CMIP_3years/lat_lon/model_vs_model/-TAUXY-ANN-ocean_test.nc',\n", + " '/global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex2_modTS_vs_modTS_CMIP_3years/lat_lon/model_vs_model/-TREFHT-ANN-land_test.nc',\n", + " '/global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex2_modTS_vs_modTS_CMIP_3years/lat_lon/model_vs_model/-TREFMNAV-ANN-land_test.nc',\n", + " '/global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex2_modTS_vs_modTS_CMIP_3years/lat_lon/model_vs_model/-TREFMXAV-ANN-land_test.nc',\n", + " '/global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex2_modTS_vs_modTS_CMIP_3years/lat_lon/model_vs_model/-TREF_range-ANN-land_test.nc',\n", + " '/global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex3_modTS_CMIP_vs_obs_2years/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-ALBEDO-ANN-75S75N_ref.nc',\n", + " '/global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex3_modTS_CMIP_vs_obs_2years/lat_lon/CRU_IPCC/CRU-TREFHT-ANN-land_60S90N_test.nc',\n", + " '/global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex3_modTS_CMIP_vs_obs_2years/lat_lon/ERA5/ERA5-TAUXY-ANN-ocean_ref.nc',\n", + " '/global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex3_modTS_CMIP_vs_obs_2years/lat_lon/ERA5/ERA5-TAUXY-ANN-ocean_test.nc',\n", + " '/global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex3_modTS_CMIP_vs_obs_2years/lat_lon/ERA5/ERA5-TREFHT-ANN-land_ref.nc',\n", + " '/global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex3_modTS_CMIP_vs_obs_2years/lat_lon/ERA5/ERA5-TREFHT-ANN-land_test.nc',\n", + " '/global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex3_modTS_CMIP_vs_obs_2years/lat_lon/MERRA2/MERRA2-TAUXY-ANN-ocean_ref.nc',\n", + " '/global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex3_modTS_CMIP_vs_obs_2years/lat_lon/MERRA2/MERRA2-TAUXY-ANN-ocean_test.nc',\n", + " '/global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex3_modTS_CMIP_vs_obs_2years/lat_lon/MERRA2/MERRA2-TREFHT-ANN-land_ref.nc',\n", + " '/global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex3_modTS_CMIP_vs_obs_2years/lat_lon/MERRA2/MERRA2-TREFHT-ANN-land_test.nc',\n", + " '/global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex3_modTS_CMIP_vs_obs_2years/lat_lon/WHOI-OAFlux/OAFlux-LHFLX-ANN-global_ref.nc',\n", + " '/global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex3_modTS_CMIP_vs_obs_2years/lat_lon/WHOI-OAFlux/OAFlux-SHFLX-ANN-global_ref.nc',\n", + " '/global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-TAUXY-ANN-ocean_ref.nc',\n", + " '/global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-TAUXY-DJF-ocean_ref.nc',\n", + " '/global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-TAUXY-JJA-ocean_ref.nc',\n", + " '/global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-TAUXY-MAM-ocean_ref.nc',\n", + " '/global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-TAUXY-SON-ocean_ref.nc',\n", + " '/global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-TREFHT-ANN-land_ref.nc',\n", + " '/global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-TREFHT-DJF-land_ref.nc',\n", + " '/global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-TREFHT-JJA-land_ref.nc',\n", + " '/global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-TREFHT-MAM-land_ref.nc',\n", + " '/global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex4_model_to_model/lat_lon/model_vs_model/20161118.beta0.F1850COSP.ne30_ne30.edison-TREFHT-SON-land_ref.nc',\n", + " '/global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CRU_IPCC/CRU-TREFHT-ANN-land_60S90N_ref.nc',\n", + " '/global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CRU_IPCC/CRU-TREFHT-ANN-land_60S90N_test.nc',\n", + " '/global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CRU_IPCC/CRU-TREFHT-DJF-land_60S90N_ref.nc',\n", + " '/global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CRU_IPCC/CRU-TREFHT-DJF-land_60S90N_test.nc',\n", + " '/global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CRU_IPCC/CRU-TREFHT-JJA-land_60S90N_ref.nc',\n", + " '/global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CRU_IPCC/CRU-TREFHT-JJA-land_60S90N_test.nc',\n", + " '/global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CRU_IPCC/CRU-TREFHT-MAM-land_60S90N_test.nc',\n", + " '/global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/CRU_IPCC/CRU-TREFHT-SON-land_60S90N_test.nc',\n", + " '/global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-TAUXY-ANN-ocean_ref.nc',\n", + " '/global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-TAUXY-DJF-ocean_ref.nc',\n", + " '/global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-TAUXY-JJA-ocean_ref.nc',\n", + " '/global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-TAUXY-MAM-ocean_ref.nc',\n", + " '/global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-TAUXY-SON-ocean_ref.nc',\n", + " '/global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-TREFHT-ANN-land_ref.nc',\n", + " '/global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-TREFHT-DJF-land_ref.nc',\n", + " '/global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-TREFHT-JJA-land_ref.nc',\n", + " '/global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-TREFHT-MAM-land_ref.nc',\n", + " '/global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/ERA5/ERA5-TREFHT-SON-land_ref.nc',\n", + " '/global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-TAUXY-ANN-ocean_ref.nc',\n", + " '/global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-TAUXY-DJF-ocean_ref.nc',\n", + " '/global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-TAUXY-JJA-ocean_ref.nc',\n", + " '/global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-TAUXY-MAM-ocean_ref.nc',\n", + " '/global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-TAUXY-SON-ocean_ref.nc',\n", + " '/global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-TREFHT-ANN-land_ref.nc',\n", + " '/global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-TREFHT-DJF-land_ref.nc',\n", + " '/global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-TREFHT-JJA-land_ref.nc',\n", + " '/global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-TREFHT-MAM-land_ref.nc',\n", + " '/global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/MERRA2/MERRA2-TREFHT-SON-land_ref.nc',\n", + " '/global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/CRU_IPCC/CRU-TREFHT-ANN-land_60S90N_ref.nc',\n", + " '/global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/CRU_IPCC/CRU-TREFHT-ANN-land_60S90N_test.nc',\n", + " '/global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/ERA5/ERA5-TAUXY-ANN-ocean_ref.nc',\n", + " '/global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/ERA5/ERA5-TREFHT-ANN-land_ref.nc',\n", + " '/global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/MERRA2/MERRA2-TAUXY-ANN-ocean_ref.nc',\n", + " '/global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/MERRA2/MERRA2-TREFHT-ANN-land_ref.nc']" + ] + }, + "execution_count": 13, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "mismatch_errors" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Not Equal Errors (Not concerned)\n", + "\n", + "Refer to GH PR [#794](https://github.com/E3SM-Project/e3sm_diags/pull/794)\n", + "\n", + "> The following variables have large diffs due to a bug on main: MISRCOSP-CLDLOW_TAU1.3_9.4_MISR, MISRCOSP-CLDLOW_TAU1.3_MISR, MISRCOSP-CLDLOW_TAU9.4_MISR. I believe this branch is doing the correct thing. We can revisit the comparison for these variables once the issue below is fixed on main.\n", + ">\n", + "> [\\[Bug\\]: Silent bug in adjust_prs_val_units() conditional where if prs_val0: will be False if prs_val0 is 0 #797](https://github.com/E3SM-Project/e3sm_diags/issues/797)\n" + ] + }, + { + "cell_type": "code", + "execution_count": 14, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Not equal to tolerance count: 24, 1.15%\n" + ] + } + ], + "source": [ + "pct_not_equal_errors = (len(not_equal_errors) / sum_files_compared) * 100\n", + "\n", + "print(\n", + " f\"Not equal to tolerance count: {len(not_equal_errors)}, {pct_not_equal_errors:.2f}%\"\n", + ")" + ] + }, + { + "cell_type": "code", + "execution_count": 15, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "['/global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud ISCCP/ISCCPCOSP-CLDTOT_TAU1.3_9.4_ISCCP-ANN-global_ref.nc',\n", + " '/global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud ISCCP/ISCCPCOSP-CLDTOT_TAU1.3_ISCCP-ANN-global_ref.nc',\n", + " '/global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud ISCCP/ISCCPCOSP-CLDTOT_TAU9.4_ISCCP-ANN-global_ref.nc',\n", + " '/global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud MISR/MISRCOSP-CLDLOW_TAU1.3_9.4_MISR-ANN-global_ref.nc',\n", + " '/global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud MISR/MISRCOSP-CLDLOW_TAU1.3_9.4_MISR-DJF-global_ref.nc',\n", + " '/global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud MISR/MISRCOSP-CLDLOW_TAU1.3_9.4_MISR-JJA-global_ref.nc',\n", + " '/global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud MISR/MISRCOSP-CLDLOW_TAU1.3_9.4_MISR-MAM-global_ref.nc',\n", + " '/global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud MISR/MISRCOSP-CLDLOW_TAU1.3_9.4_MISR-SON-global_ref.nc',\n", + " '/global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud MISR/MISRCOSP-CLDLOW_TAU1.3_MISR-ANN-global_ref.nc',\n", + " '/global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud MISR/MISRCOSP-CLDLOW_TAU1.3_MISR-DJF-global_ref.nc',\n", + " '/global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud MISR/MISRCOSP-CLDLOW_TAU1.3_MISR-JJA-global_ref.nc',\n", + " '/global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud MISR/MISRCOSP-CLDLOW_TAU1.3_MISR-MAM-global_ref.nc',\n", + " '/global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud MISR/MISRCOSP-CLDLOW_TAU1.3_MISR-SON-global_ref.nc',\n", + " '/global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud MISR/MISRCOSP-CLDLOW_TAU9.4_MISR-ANN-global_ref.nc',\n", + " '/global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud MISR/MISRCOSP-CLDLOW_TAU9.4_MISR-DJF-global_ref.nc',\n", + " '/global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud MISR/MISRCOSP-CLDLOW_TAU9.4_MISR-JJA-global_ref.nc',\n", + " '/global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud MISR/MISRCOSP-CLDLOW_TAU9.4_MISR-MAM-global_ref.nc',\n", + " '/global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex5_model_to_obs/lat_lon/Cloud MISR/MISRCOSP-CLDLOW_TAU9.4_MISR-SON-global_ref.nc',\n", + " '/global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/Cloud ISCCP/ISCCPCOSP-CLDTOT_TAU1.3_9.4_ISCCP-ANN-global_ref.nc',\n", + " '/global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/Cloud ISCCP/ISCCPCOSP-CLDTOT_TAU1.3_ISCCP-ANN-global_ref.nc',\n", + " '/global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/Cloud ISCCP/ISCCPCOSP-CLDTOT_TAU9.4_ISCCP-ANN-global_ref.nc',\n", + " '/global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/Cloud MISR/MISRCOSP-CLDLOW_TAU1.3_9.4_MISR-ANN-global_ref.nc',\n", + " '/global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/Cloud MISR/MISRCOSP-CLDLOW_TAU1.3_MISR-ANN-global_ref.nc',\n", + " '/global/cfs/cdirs/e3sm/www/cdat-migration-fy24/examples-main/ex6_zonal_mean_2d_and_lat_lon_demo/lat_lon/Cloud MISR/MISRCOSP-CLDLOW_TAU9.4_MISR-ANN-global_ref.nc']" + ] + }, + "execution_count": 15, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "not_equal_errors" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Key Errors (None)\n" + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Key errors count: 0\n" + ] + } + ], + "source": [ + "print(f\"Key errors count: {len(key_errors)}\")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Results\n", + "\n", + "- After testing all of the examples, we should be good to go here.\n" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "cdat_regression_test", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.10.14" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/auxiliary_tools/cdat_regression_testing/843-migration-phase3/ex-scripts/fix_isccpcosp_ann_climo_nc_calendar.py b/auxiliary_tools/cdat_regression_testing/843-migration-phase3/ex-scripts/fix_isccpcosp_ann_climo_nc_calendar.py new file mode 100644 index 000000000..dee0ccc97 --- /dev/null +++ b/auxiliary_tools/cdat_regression_testing/843-migration-phase3/ex-scripts/fix_isccpcosp_ann_climo_nc_calendar.py @@ -0,0 +1,47 @@ +# %% +from datetime import datetime +from dateutil import parser +from dateutil import relativedelta as rd + +import numpy as np +import xarray as xr +import xcdat as xc + + +# %% +# Reproduce error: ValueError: Non-integer years and months are ambiguous and not currently supported. +# ------------------------------------------------------------------------------------------- + +filepath = "/global/cfs/cdirs/e3sm/e3sm_diags/obs_for_e3sm_diags/climatology/ISCCPCOSP/ISCCPCOSP_ANN_climo.nc" +ds = xc.open_dataset(filepath, decode_times=True) + + +# %% +# Debug -- issue is that the time value is a float representing middle of the month (150.5). +# relativedelta expects a time value at the beginning of the month (e.g,. 150). +# ----- + +flat_offsets = np.array([150.5]) +ref_date = "1983-06" +units_type = "months" + +ref_datetime: datetime = parser.parse(ref_date, default=datetime(2000, 1, 1)) + + +# ValueError: Non-integer years and months are ambiguous and not currently supported. +times = np.array( + [ + ref_datetime + rd.relativedelta(**{units_type: offset}) + for offset in flat_offsets + ], + dtype="object", +) + +# %% +# Fix error -- replace 150.5 (middle month float) with 150 (integer month) +# ----------------------------------------------------------------------------- +ds = xc.open_dataset(filepath, decode_times=False) +ds.time.values[:] = 150 +ds.to_netcdf(filepath) + +# %% diff --git a/auxiliary_tools/cdat_regression_testing/843-migration-phase3/ex-scripts/run.cfg b/auxiliary_tools/cdat_regression_testing/843-migration-phase3/ex-scripts/run.cfg new file mode 100644 index 000000000..3a1ffdbc5 --- /dev/null +++ b/auxiliary_tools/cdat_regression_testing/843-migration-phase3/ex-scripts/run.cfg @@ -0,0 +1,44 @@ + +[#] +sets = ["lat_lon"] +case_id = "Cloud ISCCP" +variables = ["CLDTOT_TAU1.3_ISCCP"] +ref_name = "ISCCPCOSP" +reference_name = "ISCCP" +# seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN"] +test_colormap = "Blues" +reference_colormap = "Blues" +diff_colormap = "RdBu" +contour_levels = [5, 15, 25, 35, 45, 55, 65, 75, 85, 95] +diff_levels = [-30, -25, -20, -15, -10, -5, 5, 10, 15, 20, 25, 30] + + +[#] +sets = ["lat_lon"] +case_id = "Cloud ISCCP" +variables = ["CLDTOT_TAU1.3_9.4_ISCCP"] +ref_name = "ISCCPCOSP" +reference_name = "ISCCP" +# seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", ] +test_colormap = "Blues" +reference_colormap = "Blues" +diff_colormap = "RdBu" +contour_levels = [5, 15, 25, 35, 45, 55, 65, 75, 85, 95] +diff_levels = [-30, -25, -20, -15, -10, -5, 5, 10, 15, 20, 25, 30] + + +[#] +sets = ["lat_lon"] +case_id = "Cloud ISCCP" +variables = ["CLDTOT_TAU9.4_ISCCP"] +ref_name = "ISCCPCOSP" +reference_name = "ISCCP" +# seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN"] +test_colormap = "Blues" +reference_colormap = "Blues" +diff_colormap = "RdBu" +contour_levels = [5, 15, 25, 35, 45, 55, 65, 75, 85, 95] +diff_levels = [-30, -25, -20, -15, -10, -5, 5, 10, 15, 20, 25, 30] diff --git a/auxiliary_tools/cdat_regression_testing/843-migration-phase3/run-script-model-vs-model/model_vs_model_netcdf.ipynb b/auxiliary_tools/cdat_regression_testing/843-migration-phase3/run-script-model-vs-model/model_vs_model_netcdf.ipynb new file mode 100644 index 000000000..b42d30f99 --- /dev/null +++ b/auxiliary_tools/cdat_regression_testing/843-migration-phase3/run-script-model-vs-model/model_vs_model_netcdf.ipynb @@ -0,0 +1,1334 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# CDAT Migration Regression Testing Notebook (`.nc` files)\n", + "\n", + "This notebook is used to perform regression testing between the development and\n", + "production versions of a diagnostic set.\n", + "\n", + "## How it works\n", + "\n", + "It compares the relative differences (%) between ref and test variables between\n", + "the dev and `main` branches.\n", + "\n", + "## How to use\n", + "\n", + "PREREQUISITE: The diagnostic set's netCDF stored in `.json` files in two directories\n", + "(dev and `main` branches).\n", + "\n", + "1. Make a copy of this notebook under `auxiliary_tools/cdat_regression_testing/`.\n", + "2. Run `mamba create -n cdat_regression_test -y -c conda-forge \"python<3.12\" xarray netcdf4 dask pandas matplotlib-base ipykernel`\n", + "3. Run `mamba activate cdat_regression_test`\n", + "4. Update `SET_DIR` and `SET_NAME` in the copy of your notebook.\n", + "5. Run all cells IN ORDER.\n", + "6. Review results for any outstanding differences (>=1e-5 relative tolerance).\n", + " - Debug these differences (e.g., bug in metrics functions, incorrect variable references, etc.)\n" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Setup Code\n" + ] + }, + { + "cell_type": "code", + "execution_count": 44, + "metadata": {}, + "outputs": [], + "source": [ + "import glob\n", + "from typing import List\n", + "\n", + "import numpy as np\n", + "import xarray as xr\n", + "\n", + "from e3sm_diags.derivations.derivations import DERIVED_VARIABLES\n", + "\n", + "DEV_DIR = \"843-migration-phase3-model-vs-model\"\n", + "DEV_PATH = f\"/global/cfs/cdirs/e3sm/www/cdat-migration-fy24/{DEV_DIR}/\"\n", + "DEV_GLOB = sorted(glob.glob(DEV_PATH + \"**/**/*.nc\"))\n", + "DEV_NUM_FILES = len(DEV_GLOB)\n", + "\n", + "MAIN_DIR = \"main-model-vs-model\"\n", + "MAIN_PATH = f\"/global/cfs/cdirs/e3sm/www/cdat-migration-fy24/{MAIN_DIR}/\"\n", + "MAIN_GLOB = sorted(glob.glob(MAIN_PATH + \"**/**/*.nc\"))\n", + "MAIN_NUM_FILES = len(MAIN_GLOB)\n", + "\n", + "\n", + "def _remove_unwanted_files(file_glob: List[str]) -> List[str]:\n", + " \"\"\"Remove files that we don't want to compare.\n", + "\n", + " * area_mean_time_series -- `main` does not generate netCDF\n", + " * enso_diags -- `main` does not generate netCDF\n", + " * qbo -- variable name differs\n", + " * diurnal_cycle -- variable name differs\n", + " * diff -- comparing the difference between regridded files is not helpful\n", + " between branches because of the influence in floating point errors.\n", + "\n", + " Parameters\n", + " ----------\n", + " file_glob : List[str]\n", + " _description_\n", + "\n", + " Returns\n", + " -------\n", + " List[str]\n", + " _description_\n", + " \"\"\"\n", + "\n", + " new_glob = []\n", + "\n", + " for fp in file_glob:\n", + " if (\n", + " \"area_mean_time_series\" in fp\n", + " or \"enso_diags\" in fp\n", + " # or \"qbo\" in fp\n", + " or \"diurnal_cycle\" in fp\n", + " or \"diff\" in fp\n", + " ):\n", + " continue\n", + "\n", + " new_glob.append(fp)\n", + "\n", + " return new_glob\n", + "\n", + "\n", + "DEV_GLOB = _remove_unwanted_files(DEV_GLOB)\n", + "MAIN_GLOB = _remove_unwanted_files(MAIN_GLOB)" + ] + }, + { + "cell_type": "code", + "execution_count": 45, + "metadata": {}, + "outputs": [], + "source": [ + "def _check_if_files_found():\n", + " if DEV_NUM_FILES == 0 or MAIN_NUM_FILES == 0:\n", + " raise IOError(\n", + " \"No files found at DEV_PATH and/or MAIN_PATH. \"\n", + " f\"Please check {DEV_PATH} and {MAIN_PATH}.\"\n", + " )\n", + "\n", + "\n", + "def _check_if_matching_filecount():\n", + " if DEV_NUM_FILES != MAIN_NUM_FILES:\n", + " raise IOError(\n", + " \"Number of files do not match at DEV_PATH and MAIN_PATH \"\n", + " f\"({DEV_NUM_FILES} vs. {MAIN_NUM_FILES}).\"\n", + " )\n", + "\n", + " print(f\"Matching file count ({DEV_NUM_FILES} and {MAIN_NUM_FILES}).\")\n", + "\n", + "\n", + "def _check_if_missing_files():\n", + " missing_dev_files = []\n", + " missing_main_files = []\n", + "\n", + " for fp_main in MAIN_GLOB:\n", + " fp_dev = fp_main.replace(MAIN_PATH, DEV_PATH)\n", + "\n", + " if fp_dev not in DEV_GLOB:\n", + " missing_dev_files.append(fp_dev)\n", + "\n", + " for fp_dev in DEV_GLOB:\n", + " fp_main = fp_dev.replace(DEV_PATH, MAIN_PATH)\n", + "\n", + " if fp_main not in MAIN_GLOB:\n", + " missing_main_files.append(fp_main)\n", + "\n", + " return missing_dev_files, missing_main_files" + ] + }, + { + "cell_type": "code", + "execution_count": 46, + "metadata": {}, + "outputs": [], + "source": [ + "def _get_relative_diffs():\n", + " # We are mainly focusing on relative tolerance here (in percentage terms).\n", + " atol = 0\n", + " rtol = 1e-5\n", + "\n", + " results = {\n", + " \"missing_files\": [],\n", + " \"matching_files\": [],\n", + " \"mismatch_errors\": [],\n", + " \"not_equal_errors\": [],\n", + " \"key_errors\": [],\n", + " }\n", + "\n", + " for fp_main in MAIN_GLOB:\n", + " fp_dev = fp_main.replace(f\"main/{MAIN_DIR}\", DEV_DIR)\n", + "\n", + " print(\"Comparing:\")\n", + " print(f\" * {fp_dev}\")\n", + " print(f\" * {fp_main}\")\n", + "\n", + " try:\n", + " ds1 = xr.open_dataset(fp_dev)\n", + " ds2 = xr.open_dataset(fp_main)\n", + " except FileNotFoundError as e:\n", + " print(f\" {e}\")\n", + "\n", + " if isinstance(e, FileNotFoundError):\n", + " results[\"missing_files\"].append(fp_dev)\n", + "\n", + " continue\n", + "\n", + " if \"qbo\" in fp_main:\n", + " dev_data = ds1[\"U\"].values\n", + " main_data = ds2[\"U\"].values\n", + " else:\n", + " var_key = fp_main.split(\"-\")[-3]\n", + " # for 3d vars such as T-200\n", + " var_key.isdigit()\n", + " if var_key.isdigit():\n", + " var_key = fp_main.split(\"-\")[-4]\n", + "\n", + " dev_data = _get_var_data(ds1, var_key)\n", + " main_data = _get_var_data(ds2, var_key)\n", + "\n", + " print(f\" * var_key: {var_key}\")\n", + "\n", + " if dev_data is None or main_data is None:\n", + " print(\" * Could not find variable key in the dataset(s)\")\n", + " continue\n", + "\n", + " try:\n", + " np.testing.assert_allclose(\n", + " dev_data,\n", + " main_data,\n", + " atol=atol,\n", + " rtol=rtol,\n", + " )\n", + " results[\"matching_files\"].append(fp_main)\n", + " except (KeyError, AssertionError) as e:\n", + " msg = str(e)\n", + "\n", + " print(f\" {msg}\")\n", + " if \"mismatch\" in msg:\n", + " results[\"mismatch_errors\"].append(fp_main)\n", + " elif \"Not equal to tolerance\" in msg:\n", + " results[\"not_equal_errors\"].append(fp_main)\n", + " else:\n", + " print(f\" * All close and within relative tolerance ({rtol})\")\n", + "\n", + " return results\n", + "\n", + "\n", + "def _get_var_data(ds: xr.Dataset, var_key: str) -> np.ndarray:\n", + " \"\"\"Get the variable data using a list of matching keys.\n", + "\n", + " The `main` branch saves the dataset using the original variable name,\n", + " while the dev branch saves the variable with the derived variable name.\n", + " The dev branch is performing the expected behavior here.\n", + "\n", + " Parameters\n", + " ----------\n", + " ds : xr.Dataset\n", + " _description_\n", + " var_key : str\n", + " _description_\n", + "\n", + " Returns\n", + " -------\n", + " np.ndarray\n", + " _description_\n", + " \"\"\"\n", + "\n", + " data = None\n", + "\n", + " try:\n", + " var_keys = DERIVED_VARIABLES[var_key].keys()\n", + " except KeyError:\n", + " var_keys = DERIVED_VARIABLES[var_key.upper()].keys()\n", + "\n", + " var_keys = [var_key] + list(sum(var_keys, ()))\n", + "\n", + " for key in var_keys:\n", + " if key in ds.data_vars.keys():\n", + " data = ds[key].values\n", + " break\n", + "\n", + " return data" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## 1. Check for matching and equal number of files\n" + ] + }, + { + "cell_type": "code", + "execution_count": 47, + "metadata": {}, + "outputs": [], + "source": [ + "_check_if_files_found()" + ] + }, + { + "cell_type": "code", + "execution_count": 48, + "metadata": {}, + "outputs": [], + "source": [ + "DEV_GLOB = [fp for fp in DEV_GLOB if \"diff.nc\" not in fp]\n", + "MAIN_GLOB = [fp for fp in MAIN_GLOB if \"diff.nc\" not in fp]" + ] + }, + { + "cell_type": "code", + "execution_count": 49, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "(144, 128)" + ] + }, + "execution_count": 49, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "len(DEV_GLOB), len(MAIN_GLOB)" + ] + }, + { + "cell_type": "code", + "execution_count": 50, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Missing dev files: 0\n", + "Missing main files: 16\n" + ] + } + ], + "source": [ + "missing_dev_files, missing_main_files = _check_if_missing_files()\n", + "\n", + "print(f\"Missing dev files: {len(missing_dev_files)}\")\n", + "print(f\"Missing main files: {len(missing_main_files)}\")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Check missing dev files:\n" + ] + }, + { + "cell_type": "code", + "execution_count": 51, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "[]" + ] + }, + "execution_count": 51, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "missing_dev_files" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Check missing main files:\n", + "\n", + "Results:\n", + "\n", + "- `main` no files for variables:\n", + "\n", + " - `lat_lon`\n", + "\n", + "```python\n", + "['/global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-OMEGA-200-ANN-global_test.nc',\n", + " '/global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-OMEGA-200-JJA-global_test.nc',\n", + " '/global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-OMEGA-500-ANN-global_test.nc',\n", + " '/global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-OMEGA-500-JJA-global_test.nc',\n", + " '/global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-OMEGA-850-ANN-global_test.nc',\n", + " '/global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-OMEGA-850-JJA-global_test.nc',\n", + " '/global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-T-200-ANN-global_test.nc',\n", + " '/global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-T-200-JJA-global_test.nc',\n", + " '/global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-T-850-ANN-global_test.nc',\n", + " '/global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-T-850-JJA-global_test.nc',\n", + " '/global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-U-200-ANN-global_test.nc',\n", + " '/global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-U-200-JJA-global_test.nc',\n", + " '/global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-U-850-ANN-global_test.nc',\n", + " '/global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-U-850-JJA-global_test.nc',\n", + " '/global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-Z3-500-ANN-global_test.nc',\n", + " '/global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-Z3-500-JJA-global_test.nc']\n", + "```\n" + ] + }, + { + "cell_type": "code", + "execution_count": 52, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "['/global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-OMEGA-200-ANN-global_test.nc',\n", + " '/global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-OMEGA-200-JJA-global_test.nc',\n", + " '/global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-OMEGA-500-ANN-global_test.nc',\n", + " '/global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-OMEGA-500-JJA-global_test.nc',\n", + " '/global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-OMEGA-850-ANN-global_test.nc',\n", + " '/global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-OMEGA-850-JJA-global_test.nc',\n", + " '/global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-T-200-ANN-global_test.nc',\n", + " '/global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-T-200-JJA-global_test.nc',\n", + " '/global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-T-850-ANN-global_test.nc',\n", + " '/global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-T-850-JJA-global_test.nc',\n", + " '/global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-U-200-ANN-global_test.nc',\n", + " '/global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-U-200-JJA-global_test.nc',\n", + " '/global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-U-850-ANN-global_test.nc',\n", + " '/global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-U-850-JJA-global_test.nc',\n", + " '/global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-Z3-500-ANN-global_test.nc',\n", + " '/global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-Z3-500-JJA-global_test.nc']" + ] + }, + "execution_count": 52, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "missing_main_files" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## 2 Compare the netCDF files between branches\n", + "\n", + "- Compare \"ref\" and \"test\" files\n", + "- \"diff\" files are ignored because getting relative diffs for these does not make sense (relative diff will be above tolerance)\n" + ] + }, + { + "cell_type": "code", + "execution_count": 53, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-ALBEDO-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-ALBEDO-ANN-global_test.nc\n", + " * var_key: ALBEDO\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-ALBEDO-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-ALBEDO-JJA-global_test.nc\n", + " * var_key: ALBEDO\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-ALBEDOC-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-ALBEDOC-ANN-global_test.nc\n", + " * var_key: ALBEDOC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-ALBEDOC-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-ALBEDOC-JJA-global_test.nc\n", + " * var_key: ALBEDOC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-ALBEDO_SRF-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-ALBEDO_SRF-ANN-global_test.nc\n", + " * var_key: ALBEDO_SRF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-ALBEDO_SRF-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-ALBEDO_SRF-JJA-global_test.nc\n", + " * var_key: ALBEDO_SRF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-AODVIS-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-AODVIS-ANN-global_test.nc\n", + " * var_key: AODVIS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-AODVIS-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-AODVIS-JJA-global_test.nc\n", + " * var_key: AODVIS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-CLDHGH_CAL-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-CLDHGH_CAL-ANN-global_test.nc\n", + " * var_key: CLDHGH_CAL\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-CLDHGH_CAL-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-CLDHGH_CAL-JJA-global_test.nc\n", + " * var_key: CLDHGH_CAL\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-CLDHGH_TAU1.3_9.4_MODIS-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-CLDHGH_TAU1.3_9.4_MODIS-ANN-global_test.nc\n", + " * var_key: CLDHGH_TAU1.3_9.4_MODIS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-CLDHGH_TAU1.3_9.4_MODIS-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-CLDHGH_TAU1.3_9.4_MODIS-JJA-global_test.nc\n", + " * var_key: CLDHGH_TAU1.3_9.4_MODIS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-CLDHGH_TAU1.3_MODIS-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-CLDHGH_TAU1.3_MODIS-ANN-global_test.nc\n", + " * var_key: CLDHGH_TAU1.3_MODIS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-CLDHGH_TAU1.3_MODIS-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-CLDHGH_TAU1.3_MODIS-JJA-global_test.nc\n", + " * var_key: CLDHGH_TAU1.3_MODIS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-CLDHGH_TAU9.4_MODIS-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-CLDHGH_TAU9.4_MODIS-ANN-global_test.nc\n", + " * var_key: CLDHGH_TAU9.4_MODIS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-CLDHGH_TAU9.4_MODIS-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-CLDHGH_TAU9.4_MODIS-JJA-global_test.nc\n", + " * var_key: CLDHGH_TAU9.4_MODIS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-CLDLOW_CAL-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-CLDLOW_CAL-ANN-global_test.nc\n", + " * var_key: CLDLOW_CAL\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-CLDLOW_CAL-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-CLDLOW_CAL-JJA-global_test.nc\n", + " * var_key: CLDLOW_CAL\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-CLDLOW_TAU1.3_9.4_MISR-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-CLDLOW_TAU1.3_9.4_MISR-ANN-global_test.nc\n", + " * var_key: CLDLOW_TAU1.3_9.4_MISR\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-CLDLOW_TAU1.3_9.4_MISR-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-CLDLOW_TAU1.3_9.4_MISR-JJA-global_test.nc\n", + " * var_key: CLDLOW_TAU1.3_9.4_MISR\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-CLDLOW_TAU1.3_MISR-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-CLDLOW_TAU1.3_MISR-ANN-global_test.nc\n", + " * var_key: CLDLOW_TAU1.3_MISR\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-CLDLOW_TAU1.3_MISR-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-CLDLOW_TAU1.3_MISR-JJA-global_test.nc\n", + " * var_key: CLDLOW_TAU1.3_MISR\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-CLDLOW_TAU9.4_MISR-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-CLDLOW_TAU9.4_MISR-ANN-global_test.nc\n", + " * var_key: CLDLOW_TAU9.4_MISR\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-CLDLOW_TAU9.4_MISR-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-CLDLOW_TAU9.4_MISR-JJA-global_test.nc\n", + " * var_key: CLDLOW_TAU9.4_MISR\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-CLDMED_CAL-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-CLDMED_CAL-ANN-global_test.nc\n", + " * var_key: CLDMED_CAL\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-CLDMED_CAL-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-CLDMED_CAL-JJA-global_test.nc\n", + " * var_key: CLDMED_CAL\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-CLDTOT_CAL-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-CLDTOT_CAL-ANN-global_test.nc\n", + " * var_key: CLDTOT_CAL\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-CLDTOT_CAL-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-CLDTOT_CAL-JJA-global_test.nc\n", + " * var_key: CLDTOT_CAL\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-CLDTOT_TAU1.3_9.4_ISCCP-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-CLDTOT_TAU1.3_9.4_ISCCP-ANN-global_test.nc\n", + " * var_key: CLDTOT_TAU1.3_9.4_ISCCP\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-CLDTOT_TAU1.3_9.4_ISCCP-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-CLDTOT_TAU1.3_9.4_ISCCP-JJA-global_test.nc\n", + " * var_key: CLDTOT_TAU1.3_9.4_ISCCP\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-CLDTOT_TAU1.3_9.4_MISR-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-CLDTOT_TAU1.3_9.4_MISR-ANN-global_test.nc\n", + " * var_key: CLDTOT_TAU1.3_9.4_MISR\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-CLDTOT_TAU1.3_9.4_MISR-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-CLDTOT_TAU1.3_9.4_MISR-JJA-global_test.nc\n", + " * var_key: CLDTOT_TAU1.3_9.4_MISR\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-CLDTOT_TAU1.3_9.4_MODIS-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-CLDTOT_TAU1.3_9.4_MODIS-ANN-global_test.nc\n", + " * var_key: CLDTOT_TAU1.3_9.4_MODIS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-CLDTOT_TAU1.3_9.4_MODIS-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-CLDTOT_TAU1.3_9.4_MODIS-JJA-global_test.nc\n", + " * var_key: CLDTOT_TAU1.3_9.4_MODIS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-CLDTOT_TAU1.3_ISCCP-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-CLDTOT_TAU1.3_ISCCP-ANN-global_test.nc\n", + " * var_key: CLDTOT_TAU1.3_ISCCP\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-CLDTOT_TAU1.3_ISCCP-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-CLDTOT_TAU1.3_ISCCP-JJA-global_test.nc\n", + " * var_key: CLDTOT_TAU1.3_ISCCP\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-CLDTOT_TAU1.3_MISR-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-CLDTOT_TAU1.3_MISR-ANN-global_test.nc\n", + " * var_key: CLDTOT_TAU1.3_MISR\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-CLDTOT_TAU1.3_MISR-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-CLDTOT_TAU1.3_MISR-JJA-global_test.nc\n", + " * var_key: CLDTOT_TAU1.3_MISR\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-CLDTOT_TAU1.3_MODIS-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-CLDTOT_TAU1.3_MODIS-ANN-global_test.nc\n", + " * var_key: CLDTOT_TAU1.3_MODIS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-CLDTOT_TAU1.3_MODIS-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-CLDTOT_TAU1.3_MODIS-JJA-global_test.nc\n", + " * var_key: CLDTOT_TAU1.3_MODIS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-CLDTOT_TAU9.4_ISCCP-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-CLDTOT_TAU9.4_ISCCP-ANN-global_test.nc\n", + " * var_key: CLDTOT_TAU9.4_ISCCP\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-CLDTOT_TAU9.4_ISCCP-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-CLDTOT_TAU9.4_ISCCP-JJA-global_test.nc\n", + " * var_key: CLDTOT_TAU9.4_ISCCP\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-CLDTOT_TAU9.4_MISR-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-CLDTOT_TAU9.4_MISR-ANN-global_test.nc\n", + " * var_key: CLDTOT_TAU9.4_MISR\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-CLDTOT_TAU9.4_MISR-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-CLDTOT_TAU9.4_MISR-JJA-global_test.nc\n", + " * var_key: CLDTOT_TAU9.4_MISR\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-CLDTOT_TAU9.4_MODIS-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-CLDTOT_TAU9.4_MODIS-ANN-global_test.nc\n", + " * var_key: CLDTOT_TAU9.4_MODIS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-CLDTOT_TAU9.4_MODIS-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-CLDTOT_TAU9.4_MODIS-JJA-global_test.nc\n", + " * var_key: CLDTOT_TAU9.4_MODIS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-ERFtot-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-ERFtot-ANN-global_test.nc\n", + " * var_key: ERFtot\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-ERFtot-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-ERFtot-JJA-global_test.nc\n", + " * var_key: ERFtot\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-FLDS-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-FLDS-ANN-global_test.nc\n", + " * var_key: FLDS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-FLDS-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-FLDS-JJA-global_test.nc\n", + " * var_key: FLDS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-FLDSC-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-FLDSC-ANN-global_test.nc\n", + " * var_key: FLDSC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-FLDSC-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-FLDSC-JJA-global_test.nc\n", + " * var_key: FLDSC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-FLNS-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-FLNS-ANN-global_test.nc\n", + " * var_key: FLNS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-FLNS-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-FLNS-JJA-global_test.nc\n", + " * var_key: FLNS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-FLNSC-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-FLNSC-ANN-global_test.nc\n", + " * var_key: FLNSC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-FLNSC-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-FLNSC-JJA-global_test.nc\n", + " * var_key: FLNSC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-FLUT-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-FLUT-ANN-global_test.nc\n", + " * var_key: FLUT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-FLUT-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-FLUT-JJA-global_test.nc\n", + " * var_key: FLUT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-FLUTC-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-FLUTC-ANN-global_test.nc\n", + " * var_key: FLUTC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-FLUTC-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-FLUTC-JJA-global_test.nc\n", + " * var_key: FLUTC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-FSDS-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-FSDS-ANN-global_test.nc\n", + " * var_key: FSDS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-FSDS-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-FSDS-JJA-global_test.nc\n", + " * var_key: FSDS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-FSDSC-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-FSDSC-ANN-global_test.nc\n", + " * var_key: FSDSC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-FSDSC-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-FSDSC-JJA-global_test.nc\n", + " * var_key: FSDSC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-FSNS-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-FSNS-ANN-global_test.nc\n", + " * var_key: FSNS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-FSNS-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-FSNS-JJA-global_test.nc\n", + " * var_key: FSNS\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-FSNSC-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-FSNSC-ANN-global_test.nc\n", + " * var_key: FSNSC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-FSNSC-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-FSNSC-JJA-global_test.nc\n", + " * var_key: FSNSC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-FSNTOA-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-FSNTOA-ANN-global_test.nc\n", + " * var_key: FSNTOA\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-FSNTOA-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-FSNTOA-JJA-global_test.nc\n", + " * var_key: FSNTOA\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-FSNTOAC-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-FSNTOAC-ANN-global_test.nc\n", + " * var_key: FSNTOAC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-FSNTOAC-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-FSNTOAC-JJA-global_test.nc\n", + " * var_key: FSNTOAC\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-LHFLX-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-LHFLX-ANN-global_test.nc\n", + " * var_key: LHFLX\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-LHFLX-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-LHFLX-JJA-global_test.nc\n", + " * var_key: LHFLX\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-LWCF-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-LWCF-ANN-global_test.nc\n", + " * var_key: LWCF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-LWCF-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-LWCF-JJA-global_test.nc\n", + " * var_key: LWCF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-LWCFSRF-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-LWCFSRF-ANN-global_test.nc\n", + " * var_key: LWCFSRF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-LWCFSRF-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-LWCFSRF-JJA-global_test.nc\n", + " * var_key: LWCFSRF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-NETCF-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-NETCF-ANN-global_test.nc\n", + " * var_key: NETCF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-NETCF-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-NETCF-JJA-global_test.nc\n", + " * var_key: NETCF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-NETCF_SRF-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-NETCF_SRF-ANN-global_test.nc\n", + " * var_key: NETCF_SRF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-NETCF_SRF-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-NETCF_SRF-JJA-global_test.nc\n", + " * var_key: NETCF_SRF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-NET_FLUX_SRF-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-NET_FLUX_SRF-ANN-global_test.nc\n", + " * var_key: NET_FLUX_SRF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-NET_FLUX_SRF-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-NET_FLUX_SRF-JJA-global_test.nc\n", + " * var_key: NET_FLUX_SRF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-PRECT-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-PRECT-ANN-global_test.nc\n", + " * var_key: PRECT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-PRECT-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-PRECT-JJA-global_test.nc\n", + " * var_key: PRECT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-PSL-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-PSL-ANN-global_test.nc\n", + " * var_key: PSL\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-PSL-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-PSL-JJA-global_test.nc\n", + " * var_key: PSL\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-QREFHT-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-QREFHT-ANN-global_test.nc\n", + " * var_key: QREFHT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-QREFHT-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-QREFHT-JJA-global_test.nc\n", + " * var_key: QREFHT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-RESTOM-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-RESTOM-ANN-global_test.nc\n", + " * var_key: RESTOM\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-RESTOM-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-RESTOM-JJA-global_test.nc\n", + " * var_key: RESTOM\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-SHFLX-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-SHFLX-ANN-global_test.nc\n", + " * var_key: SHFLX\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-SHFLX-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-SHFLX-JJA-global_test.nc\n", + " * var_key: SHFLX\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-SOLIN-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-SOLIN-ANN-global_test.nc\n", + " * var_key: SOLIN\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-SOLIN-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-SOLIN-JJA-global_test.nc\n", + " * var_key: SOLIN\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-SST-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-SST-ANN-global_test.nc\n", + " * var_key: SST\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-SST-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-SST-JJA-global_test.nc\n", + " * var_key: SST\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-SWCF-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-SWCF-ANN-global_test.nc\n", + " * var_key: SWCF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-SWCF-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-SWCF-JJA-global_test.nc\n", + " * var_key: SWCF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-SWCFSRF-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-SWCFSRF-ANN-global_test.nc\n", + " * var_key: SWCFSRF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-SWCFSRF-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-SWCFSRF-JJA-global_test.nc\n", + " * var_key: SWCFSRF\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-TAUXY-ANN-ocean_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-TAUXY-ANN-ocean_test.nc\n", + " * var_key: TAUXY\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-TAUXY-JJA-ocean_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-TAUXY-JJA-ocean_test.nc\n", + " * var_key: TAUXY\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-TCO-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-TCO-ANN-global_test.nc\n", + " * var_key: TCO\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-TCO-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-TCO-JJA-global_test.nc\n", + " * var_key: TCO\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-TGCLDLWP_OCN-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-TGCLDLWP_OCN-ANN-global_test.nc\n", + " * var_key: TGCLDLWP_OCN\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-TGCLDLWP_OCN-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-TGCLDLWP_OCN-JJA-global_test.nc\n", + " * var_key: TGCLDLWP_OCN\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-TMQ-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-TMQ-ANN-global_test.nc\n", + " * var_key: TMQ\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-TMQ-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-TMQ-JJA-global_test.nc\n", + " * var_key: TMQ\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-TREFHT-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-TREFHT-ANN-global_test.nc\n", + " * var_key: TREFHT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-TREFHT-ANN-land_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-TREFHT-ANN-land_test.nc\n", + " * var_key: TREFHT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-TREFHT-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-TREFHT-JJA-global_test.nc\n", + " * var_key: TREFHT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-TREFHT-JJA-land_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-TREFHT-JJA-land_test.nc\n", + " * var_key: TREFHT\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-TREFMNAV-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-TREFMNAV-ANN-global_test.nc\n", + " * var_key: TREFMNAV\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-TREFMNAV-ANN-land_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-TREFMNAV-ANN-land_test.nc\n", + " * var_key: TREFMNAV\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-TREFMNAV-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-TREFMNAV-JJA-global_test.nc\n", + " * var_key: TREFMNAV\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-TREFMNAV-JJA-land_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-TREFMNAV-JJA-land_test.nc\n", + " * var_key: TREFMNAV\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-TREFMXAV-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-TREFMXAV-ANN-global_test.nc\n", + " * var_key: TREFMXAV\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-TREFMXAV-ANN-land_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-TREFMXAV-ANN-land_test.nc\n", + " * var_key: TREFMXAV\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-TREFMXAV-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-TREFMXAV-JJA-global_test.nc\n", + " * var_key: TREFMXAV\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-TREFMXAV-JJA-land_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-TREFMXAV-JJA-land_test.nc\n", + " * var_key: TREFMXAV\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-TREF_range-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-TREF_range-ANN-global_test.nc\n", + " * var_key: TREF_range\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-TREF_range-ANN-land_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-TREF_range-ANN-land_test.nc\n", + " * var_key: TREF_range\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-TREF_range-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-TREF_range-JJA-global_test.nc\n", + " * var_key: TREF_range\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-TREF_range-JJA-land_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-TREF_range-JJA-land_test.nc\n", + " * var_key: TREF_range\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-U10-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-U10-ANN-global_test.nc\n", + " * var_key: U10\n", + " * All close and within relative tolerance (1e-05)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-U10-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-U10-JJA-global_test.nc\n", + " * var_key: U10\n", + " * All close and within relative tolerance (1e-05)\n" + ] + } + ], + "source": [ + "results = _get_relative_diffs()" + ] + }, + { + "cell_type": "code", + "execution_count": 54, + "metadata": {}, + "outputs": [], + "source": [ + "(\n", + " missing_files,\n", + " matching_files,\n", + " mismatch_errors,\n", + " not_equal_errors,\n", + " key_errors,\n", + ") = results.values()" + ] + }, + { + "cell_type": "code", + "execution_count": 55, + "metadata": {}, + "outputs": [], + "source": [ + "sum_files_compared = (\n", + " len(matching_files)\n", + " + len(mismatch_errors)\n", + " + len(not_equal_errors)\n", + " + len(key_errors)\n", + " + len(missing_files)\n", + ")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Close results\n" + ] + }, + { + "cell_type": "code", + "execution_count": 56, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Matching files count: 128/128, 100.00%\n" + ] + } + ], + "source": [ + "pct_match = (len(matching_files) / sum_files_compared) * 100\n", + "\n", + "print(\n", + " f\"Matching files count: {len(matching_files)}/{sum_files_compared}, {pct_match:.2f}%\"\n", + ")" + ] + }, + { + "cell_type": "code", + "execution_count": 57, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Missing files count: 0/128, 0.00%\n" + ] + } + ], + "source": [ + "pct_missing = (len(missing_files) / sum_files_compared) * 100\n", + "\n", + "print(\n", + " f\"Missing files count: {len(missing_files)}/{sum_files_compared}, {pct_missing:.2f}%\"\n", + ")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### `NaN` Mismatching Errors (Not concerned)\n", + "\n", + "I found these `nan` mismatch errors occur due to either:\n", + "\n", + "1. Regional subsetting on \"ccb\" flag in CDAT adding a coordinate points -- removing these coordinates results in matching results\n", + "2. Slightly different masking in the data between xCDAT and CDAT via xESMF/ESMF -- same number of nans just slightly shifted over some coordinates points\n", + "\n", + "- Refer to PR [#794](https://github.com/E3SM-Project/e3sm_diags/pull/794)\n" + ] + }, + { + "cell_type": "code", + "execution_count": 58, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Mismatch errors count: 0/128, 0.00%\n" + ] + } + ], + "source": [ + "pct_mismatch = (len(mismatch_errors) / sum_files_compared) * 100\n", + "\n", + "print(\n", + " f\"Mismatch errors count: {len(mismatch_errors)}/{sum_files_compared}, {pct_missing:.2f}%\"\n", + ")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Not Equal Errors (Not concerned)\n", + "\n", + "Refer to GH PR [#794](https://github.com/E3SM-Project/e3sm_diags/pull/794)\n", + "\n", + "> The following variables have large diffs due to a bug on main: MISRCOSP-CLDLOW_TAU1.3_9.4_MISR, MISRCOSP-CLDLOW_TAU1.3_MISR, MISRCOSP-CLDLOW_TAU9.4_MISR. I believe this branch is doing the correct thing. We can revisit the comparison for these variables once the issue below is fixed on main.\n", + ">\n", + "> [\\[Bug\\]: Silent bug in adjust_prs_val_units() conditional where if prs_val0: will be False if prs_val0 is 0 #797](https://github.com/E3SM-Project/e3sm_diags/issues/797)\n" + ] + }, + { + "cell_type": "code", + "execution_count": 59, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Not equal to tolerance count: 0/128, 0.00%\n" + ] + } + ], + "source": [ + "pct_not_equal_errors = (len(not_equal_errors) / sum_files_compared) * 100\n", + "\n", + "print(\n", + " f\"Not equal to tolerance count: {len(not_equal_errors)}/{sum_files_compared}, {pct_not_equal_errors:.2f}%\"\n", + ")" + ] + }, + { + "cell_type": "code", + "execution_count": 60, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "[]" + ] + }, + "execution_count": 60, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "not_equal_errors" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Key Errors (None)\n" + ] + }, + { + "cell_type": "code", + "execution_count": 61, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Key errors count: 0\n" + ] + } + ], + "source": [ + "print(f\"Key errors count: {len(key_errors)}\")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Results\n", + "\n", + "- 124/128 variables within rtol\n", + "- 4/128 not within rtol, but not of concern because there is a bug on `main`\n", + " - TODO: Investigate the missing `lat_lon` variables on `main`\n", + "\n", + "```python\n", + "['/global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-OMEGA-200-ANN-global_test.nc',\n", + " '/global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-OMEGA-200-JJA-global_test.nc',\n", + " '/global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-OMEGA-500-ANN-global_test.nc',\n", + " '/global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-OMEGA-500-JJA-global_test.nc',\n", + " '/global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-OMEGA-850-ANN-global_test.nc',\n", + " '/global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-OMEGA-850-JJA-global_test.nc',\n", + " '/global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-T-200-ANN-global_test.nc',\n", + " '/global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-T-200-JJA-global_test.nc',\n", + " '/global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-T-850-ANN-global_test.nc',\n", + " '/global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-T-850-JJA-global_test.nc',\n", + " '/global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-U-200-ANN-global_test.nc',\n", + " '/global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-U-200-JJA-global_test.nc',\n", + " '/global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-U-850-ANN-global_test.nc',\n", + " '/global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-U-850-JJA-global_test.nc',\n", + " '/global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-Z3-500-ANN-global_test.nc',\n", + " '/global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-Z3-500-JJA-global_test.nc']\n", + "```\n" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "cdat_regression_test", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.10.14" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/auxiliary_tools/cdat_regression_testing/843-migration-phase3/run-script-model-vs-model/model_vs_model_png.ipynb b/auxiliary_tools/cdat_regression_testing/843-migration-phase3/run-script-model-vs-model/model_vs_model_png.ipynb new file mode 100644 index 000000000..37ca2d46b --- /dev/null +++ b/auxiliary_tools/cdat_regression_testing/843-migration-phase3/run-script-model-vs-model/model_vs_model_png.ipynb @@ -0,0 +1,852 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# CDAT Migration Regression Testing Notebook (`.png` files)\n", + "\n", + "This notebook is used to perform regression testing between the development and\n", + "production versions of a diagnostic set.\n", + "\n", + "## How to use\n", + "\n", + "PREREQUISITE: The diagnostic set's netCDF stored in `.json` files in two directories\n", + "(dev and `main` branches).\n", + "\n", + "1. Make a copy of this notebook under `auxiliary_tools/cdat_regression_testing/`.\n", + "2. Run `mamba create -n cdat_regression_test -y -c conda-forge \"python<3.12\" xarray netcdf4 dask pandas matplotlib-base ipykernel`\n", + "3. Run `mamba activate cdat_regression_test`\n", + "4. Update `SET_DIR` and `SET_NAME` in the copy of your notebook.\n", + "5. Run all cells IN ORDER.\n" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Setup Code\n" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": {}, + "outputs": [], + "source": [ + "import glob\n", + "\n", + "from auxiliary_tools.cdat_regression_testing.utils import get_image_diffs\n", + "\n", + "DEV_DIR = \"843-migration-phase3-model-vs-model\"\n", + "DEV_PATH = f\"/global/cfs/cdirs/e3sm/www/cdat-migration-fy24/{DEV_DIR}/\"\n", + "DEV_GLOB = sorted(glob.glob(DEV_PATH + \"**/**/*.png\"))\n", + "DEV_NUM_FILES = len(DEV_GLOB)\n", + "\n", + "MAIN_DIR = \"main-model-vs-model\"\n", + "MAIN_PATH = f\"/global/cfs/cdirs/e3sm/www/cdat-migration-fy24/{MAIN_DIR}/\"\n", + "MAIN_GLOB = sorted(glob.glob(MAIN_PATH + \"**/**/*.png\"))\n", + "MAIN_NUM_FILES = len(MAIN_GLOB)" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": {}, + "outputs": [], + "source": [ + "def _check_if_files_found():\n", + " if DEV_NUM_FILES == 0 or MAIN_NUM_FILES == 0:\n", + " raise IOError(\n", + " \"No files found at DEV_PATH and/or MAIN_PATH. \"\n", + " f\"Please check {DEV_PATH} and {MAIN_PATH}.\"\n", + " )\n", + "\n", + "\n", + "def _check_if_matching_filecount():\n", + " if DEV_NUM_FILES != MAIN_NUM_FILES:\n", + " raise IOError(\n", + " \"Number of files do not match at DEV_PATH and MAIN_PATH \"\n", + " f\"({DEV_NUM_FILES} vs. {MAIN_NUM_FILES}).\"\n", + " )\n", + "\n", + " print(f\"Matching file count ({DEV_NUM_FILES} and {MAIN_NUM_FILES}).\")\n", + "\n", + "\n", + "def _check_if_missing_files():\n", + " missing_dev_files = []\n", + " missing_main_files = []\n", + "\n", + " for fp_main in MAIN_GLOB:\n", + " fp_dev = fp_main.replace(MAIN_PATH, DEV_PATH)\n", + "\n", + " if fp_dev not in DEV_GLOB:\n", + " missing_dev_files.append(fp_dev)\n", + "\n", + " for fp_dev in DEV_GLOB:\n", + " fp_main = fp_dev.replace(DEV_PATH, MAIN_PATH)\n", + "\n", + " if fp_main not in MAIN_GLOB:\n", + " missing_main_files.append(fp_main)\n", + "\n", + " return missing_dev_files, missing_main_files" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "(300, 143)" + ] + }, + "execution_count": 7, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "len(DEV_GLOB), len(MAIN_GLOB)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## 1. Check for matching and equal number of files\n" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": {}, + "outputs": [], + "source": [ + "_check_if_files_found()" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "metadata": {}, + "outputs": [], + "source": [ + "missing_dev_files, missing_main_files = _check_if_missing_files()" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "[]" + ] + }, + "execution_count": 10, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "missing_dev_files" + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "['/global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-OMEGA-200-ANN-global.png',\n", + " '/global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-OMEGA-200-JJA-global.png',\n", + " '/global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-OMEGA-500-ANN-global.png',\n", + " '/global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-OMEGA-500-JJA-global.png',\n", + " '/global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-OMEGA-850-ANN-global.png',\n", + " '/global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-OMEGA-850-JJA-global.png',\n", + " '/global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-T-200-ANN-global.png',\n", + " '/global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-T-200-JJA-global.png',\n", + " '/global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-T-850-ANN-global.png',\n", + " '/global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-T-850-JJA-global.png',\n", + " '/global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-U-200-ANN-global.png',\n", + " '/global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-U-200-JJA-global.png',\n", + " '/global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-U-850-ANN-global.png',\n", + " '/global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-U-850-JJA-global.png',\n", + " '/global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-Z3-500-ANN-global.png',\n", + " '/global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-Z3-500-JJA-global.png']" + ] + }, + "execution_count": 12, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "[f for f in missing_main_files if \"diff\" not in f]" + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "metadata": {}, + "outputs": [ + { + "ename": "OSError", + "evalue": "Number of files do not match at DEV_PATH and MAIN_PATH (300 vs. 143).", + "output_type": "error", + "traceback": [ + "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", + "\u001b[0;31mOSError\u001b[0m Traceback (most recent call last)", + "Cell \u001b[0;32mIn[13], line 1\u001b[0m\n\u001b[0;32m----> 1\u001b[0m \u001b[43m_check_if_matching_filecount\u001b[49m\u001b[43m(\u001b[49m\u001b[43m)\u001b[49m\n", + "Cell \u001b[0;32mIn[6], line 11\u001b[0m, in \u001b[0;36m_check_if_matching_filecount\u001b[0;34m()\u001b[0m\n\u001b[1;32m 9\u001b[0m \u001b[38;5;28;01mdef\u001b[39;00m \u001b[38;5;21m_check_if_matching_filecount\u001b[39m():\n\u001b[1;32m 10\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m DEV_NUM_FILES \u001b[38;5;241m!=\u001b[39m MAIN_NUM_FILES:\n\u001b[0;32m---> 11\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m \u001b[38;5;167;01mIOError\u001b[39;00m(\n\u001b[1;32m 12\u001b[0m \u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mNumber of files do not match at DEV_PATH and MAIN_PATH \u001b[39m\u001b[38;5;124m\"\u001b[39m\n\u001b[1;32m 13\u001b[0m \u001b[38;5;124mf\u001b[39m\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124m(\u001b[39m\u001b[38;5;132;01m{\u001b[39;00mDEV_NUM_FILES\u001b[38;5;132;01m}\u001b[39;00m\u001b[38;5;124m vs. \u001b[39m\u001b[38;5;132;01m{\u001b[39;00mMAIN_NUM_FILES\u001b[38;5;132;01m}\u001b[39;00m\u001b[38;5;124m).\u001b[39m\u001b[38;5;124m\"\u001b[39m\n\u001b[1;32m 14\u001b[0m )\n\u001b[1;32m 16\u001b[0m \u001b[38;5;28mprint\u001b[39m(\u001b[38;5;124mf\u001b[39m\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mMatching file count (\u001b[39m\u001b[38;5;132;01m{\u001b[39;00mDEV_NUM_FILES\u001b[38;5;132;01m}\u001b[39;00m\u001b[38;5;124m and \u001b[39m\u001b[38;5;132;01m{\u001b[39;00mMAIN_NUM_FILES\u001b[38;5;132;01m}\u001b[39;00m\u001b[38;5;124m).\u001b[39m\u001b[38;5;124m\"\u001b[39m)\n", + "\u001b[0;31mOSError\u001b[0m: Number of files do not match at DEV_PATH and MAIN_PATH (300 vs. 143)." + ] + } + ], + "source": [ + "_check_if_matching_filecount()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## 2 Compare the plots between branches\n", + "\n", + "- Compare \"ref\" and \"test\" files\n", + "- \"diff\" files are ignored because getting relative diffs for these does not make sense (relative diff will be above tolerance)\n" + ] + }, + { + "cell_type": "code", + "execution_count": 14, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/area_mean_time_series/FLUT/FLUT.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/area_mean_time_series/FLUT/FLUT.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/area_mean_time_series/FLUT_diff/FLUT.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/area_mean_time_series/FSNTOA/FSNTOA.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/area_mean_time_series/FSNTOA/FSNTOA.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/area_mean_time_series/FSNTOA_diff/FSNTOA.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/area_mean_time_series/LHFLX/LHFLX.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/area_mean_time_series/LHFLX/LHFLX.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/area_mean_time_series/LHFLX_diff/LHFLX.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/area_mean_time_series/LWCF/LWCF.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/area_mean_time_series/LWCF/LWCF.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/area_mean_time_series/LWCF_diff/LWCF.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/area_mean_time_series/PRECT/PRECT.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/area_mean_time_series/PRECT/PRECT.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/area_mean_time_series/PRECT_diff/PRECT.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/area_mean_time_series/QFLX/QFLX.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/area_mean_time_series/QFLX/QFLX.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/area_mean_time_series/QFLX_diff/QFLX.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/area_mean_time_series/SHFLX/SHFLX.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/area_mean_time_series/SHFLX/SHFLX.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/area_mean_time_series/SHFLX_diff/SHFLX.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/area_mean_time_series/SWCF/SWCF.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/area_mean_time_series/SWCF/SWCF.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/area_mean_time_series/SWCF_diff/SWCF.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/area_mean_time_series/TREFHT/TREFHT.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/area_mean_time_series/TREFHT/TREFHT.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/area_mean_time_series/TREFHT_diff/TREFHT.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-ALBEDO-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model/-ALBEDO-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model_diff/-ALBEDO-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-ALBEDO-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model/-ALBEDO-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model_diff/-ALBEDO-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-ALBEDOC-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model/-ALBEDOC-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model_diff/-ALBEDOC-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-ALBEDOC-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model/-ALBEDOC-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model_diff/-ALBEDOC-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-ALBEDO_SRF-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model/-ALBEDO_SRF-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model_diff/-ALBEDO_SRF-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-ALBEDO_SRF-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model/-ALBEDO_SRF-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model_diff/-ALBEDO_SRF-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-AODVIS-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model/-AODVIS-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model_diff/-AODVIS-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-AODVIS-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model/-AODVIS-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model_diff/-AODVIS-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-CLDHGH_CAL-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model/-CLDHGH_CAL-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model_diff/-CLDHGH_CAL-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-CLDHGH_CAL-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model/-CLDHGH_CAL-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model_diff/-CLDHGH_CAL-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-CLDHGH_TAU1.3_9.4_MODIS-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model/-CLDHGH_TAU1.3_9.4_MODIS-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model_diff/-CLDHGH_TAU1.3_9.4_MODIS-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-CLDHGH_TAU1.3_9.4_MODIS-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model/-CLDHGH_TAU1.3_9.4_MODIS-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model_diff/-CLDHGH_TAU1.3_9.4_MODIS-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-CLDHGH_TAU1.3_MODIS-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model/-CLDHGH_TAU1.3_MODIS-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model_diff/-CLDHGH_TAU1.3_MODIS-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-CLDHGH_TAU1.3_MODIS-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model/-CLDHGH_TAU1.3_MODIS-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model_diff/-CLDHGH_TAU1.3_MODIS-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-CLDHGH_TAU9.4_MODIS-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model/-CLDHGH_TAU9.4_MODIS-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model_diff/-CLDHGH_TAU9.4_MODIS-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-CLDHGH_TAU9.4_MODIS-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model/-CLDHGH_TAU9.4_MODIS-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model_diff/-CLDHGH_TAU9.4_MODIS-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-CLDLOW_CAL-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model/-CLDLOW_CAL-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model_diff/-CLDLOW_CAL-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-CLDLOW_CAL-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model/-CLDLOW_CAL-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model_diff/-CLDLOW_CAL-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-CLDLOW_TAU1.3_9.4_MISR-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model/-CLDLOW_TAU1.3_9.4_MISR-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model_diff/-CLDLOW_TAU1.3_9.4_MISR-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-CLDLOW_TAU1.3_9.4_MISR-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model/-CLDLOW_TAU1.3_9.4_MISR-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model_diff/-CLDLOW_TAU1.3_9.4_MISR-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-CLDLOW_TAU1.3_MISR-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model/-CLDLOW_TAU1.3_MISR-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model_diff/-CLDLOW_TAU1.3_MISR-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-CLDLOW_TAU1.3_MISR-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model/-CLDLOW_TAU1.3_MISR-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model_diff/-CLDLOW_TAU1.3_MISR-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-CLDLOW_TAU9.4_MISR-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model/-CLDLOW_TAU9.4_MISR-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model_diff/-CLDLOW_TAU9.4_MISR-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-CLDLOW_TAU9.4_MISR-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model/-CLDLOW_TAU9.4_MISR-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model_diff/-CLDLOW_TAU9.4_MISR-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-CLDMED_CAL-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model/-CLDMED_CAL-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model_diff/-CLDMED_CAL-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-CLDMED_CAL-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model/-CLDMED_CAL-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model_diff/-CLDMED_CAL-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-CLDTOT_CAL-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model/-CLDTOT_CAL-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model_diff/-CLDTOT_CAL-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-CLDTOT_CAL-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model/-CLDTOT_CAL-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model_diff/-CLDTOT_CAL-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-CLDTOT_TAU1.3_9.4_ISCCP-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model/-CLDTOT_TAU1.3_9.4_ISCCP-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model_diff/-CLDTOT_TAU1.3_9.4_ISCCP-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-CLDTOT_TAU1.3_9.4_ISCCP-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model/-CLDTOT_TAU1.3_9.4_ISCCP-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model_diff/-CLDTOT_TAU1.3_9.4_ISCCP-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-CLDTOT_TAU1.3_9.4_MISR-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model/-CLDTOT_TAU1.3_9.4_MISR-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model_diff/-CLDTOT_TAU1.3_9.4_MISR-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-CLDTOT_TAU1.3_9.4_MISR-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model/-CLDTOT_TAU1.3_9.4_MISR-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model_diff/-CLDTOT_TAU1.3_9.4_MISR-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-CLDTOT_TAU1.3_9.4_MODIS-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model/-CLDTOT_TAU1.3_9.4_MODIS-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model_diff/-CLDTOT_TAU1.3_9.4_MODIS-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-CLDTOT_TAU1.3_9.4_MODIS-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model/-CLDTOT_TAU1.3_9.4_MODIS-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model_diff/-CLDTOT_TAU1.3_9.4_MODIS-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-CLDTOT_TAU1.3_ISCCP-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model/-CLDTOT_TAU1.3_ISCCP-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model_diff/-CLDTOT_TAU1.3_ISCCP-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-CLDTOT_TAU1.3_ISCCP-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model/-CLDTOT_TAU1.3_ISCCP-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model_diff/-CLDTOT_TAU1.3_ISCCP-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-CLDTOT_TAU1.3_MISR-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model/-CLDTOT_TAU1.3_MISR-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model_diff/-CLDTOT_TAU1.3_MISR-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-CLDTOT_TAU1.3_MISR-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model/-CLDTOT_TAU1.3_MISR-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model_diff/-CLDTOT_TAU1.3_MISR-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-CLDTOT_TAU1.3_MODIS-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model/-CLDTOT_TAU1.3_MODIS-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model_diff/-CLDTOT_TAU1.3_MODIS-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-CLDTOT_TAU1.3_MODIS-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model/-CLDTOT_TAU1.3_MODIS-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model_diff/-CLDTOT_TAU1.3_MODIS-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-CLDTOT_TAU9.4_ISCCP-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model/-CLDTOT_TAU9.4_ISCCP-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model_diff/-CLDTOT_TAU9.4_ISCCP-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-CLDTOT_TAU9.4_ISCCP-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model/-CLDTOT_TAU9.4_ISCCP-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model_diff/-CLDTOT_TAU9.4_ISCCP-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-CLDTOT_TAU9.4_MISR-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model/-CLDTOT_TAU9.4_MISR-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model_diff/-CLDTOT_TAU9.4_MISR-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-CLDTOT_TAU9.4_MISR-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model/-CLDTOT_TAU9.4_MISR-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model_diff/-CLDTOT_TAU9.4_MISR-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-CLDTOT_TAU9.4_MODIS-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model/-CLDTOT_TAU9.4_MODIS-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model_diff/-CLDTOT_TAU9.4_MODIS-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-CLDTOT_TAU9.4_MODIS-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model/-CLDTOT_TAU9.4_MODIS-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model_diff/-CLDTOT_TAU9.4_MODIS-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-ERFtot-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model/-ERFtot-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model_diff/-ERFtot-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-ERFtot-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model/-ERFtot-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model_diff/-ERFtot-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-FLDS-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model/-FLDS-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model_diff/-FLDS-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-FLDS-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model/-FLDS-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model_diff/-FLDS-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-FLDSC-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model/-FLDSC-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model_diff/-FLDSC-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-FLDSC-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model/-FLDSC-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model_diff/-FLDSC-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-FLNS-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model/-FLNS-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model_diff/-FLNS-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-FLNS-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model/-FLNS-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model_diff/-FLNS-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-FLNSC-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model/-FLNSC-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model_diff/-FLNSC-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-FLNSC-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model/-FLNSC-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model_diff/-FLNSC-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-FLUT-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model/-FLUT-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model_diff/-FLUT-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-FLUT-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model/-FLUT-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model_diff/-FLUT-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-FLUTC-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model/-FLUTC-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model_diff/-FLUTC-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-FLUTC-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model/-FLUTC-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model_diff/-FLUTC-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-FSDS-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model/-FSDS-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model_diff/-FSDS-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-FSDS-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model/-FSDS-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model_diff/-FSDS-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-FSDSC-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model/-FSDSC-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model_diff/-FSDSC-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-FSDSC-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model/-FSDSC-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model_diff/-FSDSC-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-FSNS-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model/-FSNS-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model_diff/-FSNS-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-FSNS-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model/-FSNS-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model_diff/-FSNS-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-FSNSC-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model/-FSNSC-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model_diff/-FSNSC-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-FSNSC-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model/-FSNSC-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model_diff/-FSNSC-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-FSNTOA-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model/-FSNTOA-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model_diff/-FSNTOA-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-FSNTOA-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model/-FSNTOA-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model_diff/-FSNTOA-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-FSNTOAC-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model/-FSNTOAC-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model_diff/-FSNTOAC-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-FSNTOAC-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model/-FSNTOAC-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model_diff/-FSNTOAC-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-LHFLX-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model/-LHFLX-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model_diff/-LHFLX-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-LHFLX-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model/-LHFLX-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model_diff/-LHFLX-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-LWCF-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model/-LWCF-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model_diff/-LWCF-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-LWCF-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model/-LWCF-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model_diff/-LWCF-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-LWCFSRF-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model/-LWCFSRF-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model_diff/-LWCFSRF-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-LWCFSRF-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model/-LWCFSRF-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model_diff/-LWCFSRF-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-NETCF-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model/-NETCF-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model_diff/-NETCF-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-NETCF-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model/-NETCF-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model_diff/-NETCF-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-NETCF_SRF-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model/-NETCF_SRF-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model_diff/-NETCF_SRF-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-NETCF_SRF-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model/-NETCF_SRF-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model_diff/-NETCF_SRF-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-NET_FLUX_SRF-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model/-NET_FLUX_SRF-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model_diff/-NET_FLUX_SRF-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-NET_FLUX_SRF-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model/-NET_FLUX_SRF-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model_diff/-NET_FLUX_SRF-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-PRECT-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model/-PRECT-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model_diff/-PRECT-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-PRECT-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model/-PRECT-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model_diff/-PRECT-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-PSL-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model/-PSL-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model_diff/-PSL-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-PSL-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model/-PSL-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model_diff/-PSL-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-QREFHT-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model/-QREFHT-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model_diff/-QREFHT-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-QREFHT-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model/-QREFHT-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model_diff/-QREFHT-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-RESTOM-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model/-RESTOM-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model_diff/-RESTOM-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-RESTOM-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model/-RESTOM-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model_diff/-RESTOM-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-SHFLX-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model/-SHFLX-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model_diff/-SHFLX-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-SHFLX-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model/-SHFLX-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model_diff/-SHFLX-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-SOLIN-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model/-SOLIN-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model_diff/-SOLIN-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-SOLIN-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model/-SOLIN-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model_diff/-SOLIN-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-SST-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model/-SST-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model_diff/-SST-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-SST-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model/-SST-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model_diff/-SST-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-SWCF-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model/-SWCF-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model_diff/-SWCF-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-SWCF-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model/-SWCF-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model_diff/-SWCF-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-SWCFSRF-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model/-SWCFSRF-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model_diff/-SWCFSRF-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-SWCFSRF-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model/-SWCFSRF-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model_diff/-SWCFSRF-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-TAUXY-ANN-ocean.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model/-TAUXY-ANN-ocean.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model_diff/-TAUXY-ANN-ocean.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-TAUXY-JJA-ocean.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model/-TAUXY-JJA-ocean.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model_diff/-TAUXY-JJA-ocean.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-TCO-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model/-TCO-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model_diff/-TCO-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-TCO-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model/-TCO-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model_diff/-TCO-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-TGCLDLWP_OCN-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model/-TGCLDLWP_OCN-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model_diff/-TGCLDLWP_OCN-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-TGCLDLWP_OCN-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model/-TGCLDLWP_OCN-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model_diff/-TGCLDLWP_OCN-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-TMQ-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model/-TMQ-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model_diff/-TMQ-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-TMQ-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model/-TMQ-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model_diff/-TMQ-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-TREFHT-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model/-TREFHT-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model_diff/-TREFHT-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-TREFHT-ANN-land.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model/-TREFHT-ANN-land.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model_diff/-TREFHT-ANN-land.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-TREFHT-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model/-TREFHT-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model_diff/-TREFHT-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-TREFHT-JJA-land.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model/-TREFHT-JJA-land.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model_diff/-TREFHT-JJA-land.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-TREFMNAV-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model/-TREFMNAV-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model_diff/-TREFMNAV-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-TREFMNAV-ANN-land.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model/-TREFMNAV-ANN-land.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model_diff/-TREFMNAV-ANN-land.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-TREFMNAV-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model/-TREFMNAV-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model_diff/-TREFMNAV-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-TREFMNAV-JJA-land.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model/-TREFMNAV-JJA-land.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model_diff/-TREFMNAV-JJA-land.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-TREFMXAV-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model/-TREFMXAV-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model_diff/-TREFMXAV-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-TREFMXAV-ANN-land.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model/-TREFMXAV-ANN-land.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model_diff/-TREFMXAV-ANN-land.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-TREFMXAV-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model/-TREFMXAV-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model_diff/-TREFMXAV-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-TREFMXAV-JJA-land.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model/-TREFMXAV-JJA-land.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model_diff/-TREFMXAV-JJA-land.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-TREF_range-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model/-TREF_range-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model_diff/-TREF_range-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-TREF_range-ANN-land.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model/-TREF_range-ANN-land.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model_diff/-TREF_range-ANN-land.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-TREF_range-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model/-TREF_range-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model_diff/-TREF_range-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-TREF_range-JJA-land.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model/-TREF_range-JJA-land.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model_diff/-TREF_range-JJA-land.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-U10-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model/-U10-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model_diff/-U10-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/lat_lon/model_vs_model/-U10-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model/-U10-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/lat_lon/model_vs_model_diff/-U10-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/mp_partition/mixed-phase_partition/mixed-phase_partition.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/mp_partition/mixed-phase_partition/mixed-phase_partition.png\n", + " * Plots are identical\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/viewer/taylor-diagram-data/ANN_metrics_taylor_diag_amip.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/viewer/taylor-diagram-data/ANN_metrics_taylor_diag_amip.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/viewer/taylor-diagram-data_diff/ANN_metrics_taylor_diag_amip.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/viewer/taylor-diagram-data/ANN_metrics_taylor_diag_historical.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/viewer/taylor-diagram-data/ANN_metrics_taylor_diag_historical.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/viewer/taylor-diagram-data_diff/ANN_metrics_taylor_diag_historical.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/viewer/taylor-diagram-data/JJA_metrics_taylor_diag_amip.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/viewer/taylor-diagram-data/JJA_metrics_taylor_diag_amip.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/viewer/taylor-diagram-data_diff/JJA_metrics_taylor_diag_amip.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/viewer/taylor-diagram-data/JJA_metrics_taylor_diag_historical.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/viewer/taylor-diagram-data/JJA_metrics_taylor_diag_historical.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/viewer/taylor-diagram-data_diff/JJA_metrics_taylor_diag_historical.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/viewer/viewer/e3sm_logo.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-model/viewer/viewer/e3sm_logo.png\n", + " * Plots are identical\n" + ] + } + ], + "source": [ + "for main_path in MAIN_GLOB:\n", + " dev_path = main_path.replace(MAIN_PATH, DEV_PATH)\n", + " print(\"Comparing:\")\n", + " print(f\" * {main_path}\")\n", + " print(f\" * {dev_path}\")\n", + "\n", + " get_image_diffs(dev_path, main_path)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Results\n", + "\n", + "All the plots are virtually identical. There looks like one red dot that is different, which creates a diff plot.\n" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "cdat_regression_test", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.10.14" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/auxiliary_tools/cdat_regression_testing/843-migration-phase3/run-script-model-vs-model/run_script.py b/auxiliary_tools/cdat_regression_testing/843-migration-phase3/run-script-model-vs-model/run_script.py new file mode 100644 index 000000000..ef78ebc39 --- /dev/null +++ b/auxiliary_tools/cdat_regression_testing/843-migration-phase3/run-script-model-vs-model/run_script.py @@ -0,0 +1,298 @@ +""" +Make sure to run the machine-specific commands below before +running this script: + +Compy: + srun --pty --nodes=1 --time=01:00:00 /bin/bash + source /share/apps/E3SM/conda_envs/load_latest_e3sm_unified_compy.sh + +LCRC: + srun --pty --nodes=1 --time=01:00:00 /bin/bash + source /lcrc/soft/climate/e3sm-unified/load_latest_e3sm_unified_chrysalis.sh + Or: source /lcrc/soft/climate/e3sm-unified/load_latest_e3sm_unified_anvil.sh + +NERSC perlmutter cpu: + salloc --nodes 1 --qos interactive --time 01:00:00 --constraint cpu --account=e3sm + source /global/common/software/e3sm/anaconda_envs/load_latest_e3sm_unified_pm-cpu.sh +""" +# flake8: noqa E501 + +import os +from typing import Tuple, TypedDict + +from mache import MachineInfo + +from e3sm_diags.parameter.annual_cycle_zonal_mean_parameter import ACzonalmeanParameter +from e3sm_diags.parameter.area_mean_time_series_parameter import ( + AreaMeanTimeSeriesParameter, +) +from e3sm_diags.parameter.arm_diags_parameter import ARMDiagsParameter +from e3sm_diags.parameter.core_parameter import CoreParameter +from e3sm_diags.parameter.diurnal_cycle_parameter import DiurnalCycleParameter +from e3sm_diags.parameter.enso_diags_parameter import EnsoDiagsParameter +from e3sm_diags.parameter.mp_partition_parameter import MPpartitionParameter +from e3sm_diags.parameter.qbo_parameter import QboParameter +from e3sm_diags.parameter.streamflow_parameter import StreamflowParameter +from e3sm_diags.parameter.tc_analysis_parameter import TCAnalysisParameter +from e3sm_diags.parameter.zonal_mean_2d_stratosphere_parameter import ( + ZonalMean2dStratosphereParameter, +) +from e3sm_diags.run import runner + + +class MachinePaths(TypedDict): + html_path: str + obs_climo: str + test_climo: str + obs_ts: str + test_ts: str + dc_obs_climo: str + dc_test_climo: str + arm_obs: str + arm_test: str + tc_obs: str + tc_test: str + + +def run_all_sets(): + machine_paths: MachinePaths = _get_machine_paths() + + param = CoreParameter() + + param.reference_data_path = machine_paths["obs_climo"] + param.test_data_path = machine_paths["test_climo"] + param.test_name = "20210528.v2rc3e.piControl.ne30pg2_EC30to60E2r2.chrysalis" + param.seasons = [ + "ANN", + "JJA", + ] # Default setting: seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] + param.results_dir = ( + "/global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3" + ) + run_type = "model_vs_model" + param.multiprocessing = True + param.num_workers = 24 + param.run_type = run_type + + # Set specific parameters for new sets + enso_param = EnsoDiagsParameter() + enso_param.reference_data_path = machine_paths["obs_ts"] + enso_param.test_data_path = machine_paths["test_ts"] + enso_param.test_name = "e3sm_v2" + enso_param.test_start_yr = "0051" + enso_param.test_end_yr = "0060" + # Enso obs data range from year 1979 to 2016 + enso_param.ref_start_yr = "2001" + enso_param.ref_end_yr = "2010" + enso_param.run_type = run_type + + qbo_param = QboParameter() + qbo_param.reference_data_path = machine_paths["obs_ts"] + qbo_param.test_data_path = machine_paths["test_ts"] + qbo_param.test_name = "e3sm_v2" + qbo_param.start_yr = "0051" + qbo_param.end_yr = "0060" + # Qbo obs data range from year 1979 to 2019 + # Number of years of test and ref should match + qbo_param.ref_start_yr = "2001" + qbo_param.ref_end_yr = "2010" + qbo_param.run_type = run_type + + ts_param = AreaMeanTimeSeriesParameter() + ts_param.reference_data_path = machine_paths["obs_ts"] + ts_param.test_data_path = machine_paths["test_ts"] + ts_param.test_name = "e3sm_v2" + ts_param.start_yr = "0051" + ts_param.end_yr = "0060" + ts_param.run_type = run_type + + dc_param = DiurnalCycleParameter() + dc_param.reference_data_path = machine_paths["dc_obs_climo"] + dc_param.test_data_path = machine_paths["dc_test_climo"] + dc_param.short_test_name = "e3sm_v2" + # Plotting diurnal cycle amplitude on different scales. Default is True + dc_param.normalize_test_amp = False + dc_param.run_type = run_type + + streamflow_param = StreamflowParameter() + streamflow_param.reference_data_path = machine_paths["obs_ts"] + streamflow_param.test_data_path = machine_paths["test_ts"] + streamflow_param.short_test_name = "e3sm_v2" + streamflow_param.test_start_yr = "0051" + streamflow_param.test_end_yr = "0060" + # Streamflow gauge station data range from year 1986 to 1995 + streamflow_param.ref_start_yr = "1986" + streamflow_param.ref_end_yr = "1995" + streamflow_param.run_type = run_type + + arm_param = ARMDiagsParameter() + arm_param.reference_data_path = machine_paths["arm_obs"] + arm_param.ref_name = "armdiags" + arm_param.test_data_path = machine_paths["arm_test"] + arm_param.test_name = "e3sm_v2" + # arm_param.test_start_yr = "1996" + # arm_param.test_end_yr = "2010" + arm_param.test_start_yr = "1985" + arm_param.test_end_yr = "2014" + # For model vs obs, the ref start and end year can be any four digit strings. + # For now, will use all available years form obs + arm_param.ref_start_yr = "0001" + arm_param.ref_end_yr = "0001" + arm_param.run_type = run_type + + tc_param = TCAnalysisParameter() + tc_param.reference_data_path = machine_paths["tc_obs"] + tc_param.test_data_path = machine_paths["tc_test"] + tc_param.short_test_name = "e3sm_v2" + tc_param.test_start_yr = "0051" + tc_param.test_end_yr = "0060" + # For model vs obs, the ref start and end year can be any four digit strings. + # For now, use all available years form obs by default. + tc_param.ref_start_yr = "1979" + tc_param.ref_end_yr = "2018" + tc_param.run_type = run_type + + ac_param = ACzonalmeanParameter() + ac_param.run_type = run_type + + zm_param = ZonalMean2dStratosphereParameter() + zm_param.run_type = run_type + + mp_param = MPpartitionParameter() + # mp_param.reference_data_path = machine_paths["obs_ts"] + mp_param.test_data_path = machine_paths["test_ts"] + mp_param.short_test_name = "e3sm_v2" + mp_param.test_start_yr = "0051" + mp_param.test_end_yr = "0060" + mp_param.run_type = run_type + + param.save_netcdf = True + runner.sets_to_run = [ + "lat_lon", + "zonal_mean_xy", + "zonal_mean_2d", + "zonal_mean_2d_stratosphere", + "polar", + "cosp_histogram", + "meridional_mean_2d", + "annual_cycle_zonal_mean", + "enso_diags", + "qbo", + "area_mean_time_series", + "diurnal_cycle", + "streamflow", + "arm_diags", + "tc_analysis", + "aerosol_aeronet", + "aerosol_budget", + "mp_partition", + ] + + runner.run_diags( + [ + param, + zm_param, + ac_param, + enso_param, + qbo_param, + ts_param, + dc_param, + streamflow_param, + arm_param, + tc_param, + mp_param, + ] + ) + + return param.results_dir + + +def _get_machine_paths() -> MachinePaths: + """Returns the paths on the machine that are required to run e3sm_diags. + + Returns + ------- + MachinePaths + A dictionary of paths on the machine, with the key being the path type + and the value being the absolute path string. + """ + # Get the current machine's configuration info. + machine_info = MachineInfo() + machine = machine_info.machine + + if machine not in [ + "anvil", + "chrysalis", + "compy", + "pm-cpu", + "cori-haswell", + "cori-knl", + ]: + raise ValueError(f"e3sm_diags is not supported on this machine ({machine}).") + + # Path to the HTML outputs for the current user. + web_portal_base_path = machine_info.config.get("web_portal", "base_path") + html_path = f"{web_portal_base_path}/{machine_info.username}/" + + # Path to the reference data directory. + diags_base_path = machine_info.diagnostics_base + ref_data_dir = f"{diags_base_path}/observations/Atm" + + # Paths to the test data directories. + test_data_dir, test_data_dir2 = _get_test_data_dirs(machine) + + # Construct the paths required by e3sm_diags using the base paths above. + machine_paths: MachinePaths = { + "html_path": html_path, + "obs_climo": f"{ref_data_dir}/climatology", + "test_climo": f"{test_data_dir}/climatology/rgr/", + "obs_ts": f"{ref_data_dir}/time-series/", + "test_ts": f"{test_data_dir}/time-series/rgr/", + "dc_obs_climo": f"{ref_data_dir}/climatology", + "dc_test_climo": f"{test_data_dir}/diurnal_climatology/rgr", + "arm_obs": f"{ref_data_dir}/arm-diags-data/", + "arm_test": f"{test_data_dir2}/arm-diags-data/", + "tc_obs": f"{ref_data_dir}/tc-analysis/", + "tc_test": f"{test_data_dir}/tc-analysis/", + } + + return machine_paths + + +def _get_test_data_dirs(machine: str) -> Tuple[str, str]: + """Get the directories for test data based on the machine. + + The second path is for using the high frequency grid box output at ARM sites + from another simulation when the output is available. + + Parameters + ---------- + machine : str + The name of the machine. + + Returns + ------- + Tuple[str, str] + A tuple of two strings, each representing a test data directory path. + """ + test_data_dirs = None + + # TODO: Update this function to use `mache` after the directories are updated. + if machine in ["chrysalis", "anvil"]: + base = "/lcrc/group/e3sm/public_html/e3sm_diags_test_data/postprocessed_e3sm_v2_data_for_e3sm_diags" + elif machine in ["compy"]: + base = "/compyfs/e3sm_diags_data/postprocessed_e3sm_v2_data_for_e3sm_diags" + elif machine in ["cori-haswell", "cori-knl", "pm-cpu"]: + base = "/global/cfs/cdirs/e3sm/e3sm_diags/postprocessed_e3sm_v2_data_for_e3sm_diags" + + test_data_dirs = ( + f"{base}/20210528.v2rc3e.piControl.ne30pg2_EC30to60E2r2.chrysalis", + # f"{base}/20210719.PhaseII.F20TR-P3.NGD.ne30pg2.compy", + f"{base}/20221103.v2.LR.amip.NGD_v3atm.chrysalis", + ) + + return test_data_dirs # type: ignore + + +if __name__ == "__main__": + run_all_sets() diff --git a/auxiliary_tools/cdat_regression_testing/843-migration-phase3/run-script-model-vs-model/scripts/fix_filenames.py b/auxiliary_tools/cdat_regression_testing/843-migration-phase3/run-script-model-vs-model/scripts/fix_filenames.py new file mode 100644 index 000000000..f99b4dcda --- /dev/null +++ b/auxiliary_tools/cdat_regression_testing/843-migration-phase3/run-script-model-vs-model/scripts/fix_filenames.py @@ -0,0 +1,24 @@ +""" +A script to update the filename for annual_cycle_zonal_mean files to align +with the dev branch. + +NOTE: Make sure to run this script before regression testing. +""" +import os + + +def replace_annual_cycle(root_dir): + for dirpath, _, filenames in os.walk(root_dir): + for filename in filenames: + if "Annual-Cycle" in filename: + old_file_path = os.path.join(dirpath, filename) + new_file_name = filename.replace("Annual-Cycle", "ANNUALCYCLE-global") + new_file_path = os.path.join(dirpath, new_file_name) + + print(f"Renaming file: {old_file_path} to {new_file_path}") + os.rename(old_file_path, new_file_path) + + +# Replace 'your_root_directory' with the path to your root directory +root_directory = "/global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main-model-vs-model/annual_cycle_zonal_mean" +replace_annual_cycle(root_directory) diff --git a/auxiliary_tools/cdat_regression_testing/843-migration-phase3/run-script-model-vs-model/scripts/parse_errors.py b/auxiliary_tools/cdat_regression_testing/843-migration-phase3/run-script-model-vs-model/scripts/parse_errors.py new file mode 100644 index 000000000..2861ecab5 --- /dev/null +++ b/auxiliary_tools/cdat_regression_testing/843-migration-phase3/run-script-model-vs-model/scripts/parse_errors.py @@ -0,0 +1,23 @@ +import re + + +def parse_unique_errors_without_timestamp(log_file_path): + unique_errors = set() + timestamp_pattern = re.compile(r"^\d{2}-\d{2}-\d{2} \d{2}:\d{2}:\d{2} ") + + with open(log_file_path, "r") as file: + for line in file: + if "Error" in line or "error" in line or "ERROR" in line: + # Remove the timestamp + cleaned_line = timestamp_pattern.sub("", line).strip() + unique_errors.add(cleaned_line) + + print("Unique error messages without timestamp:") + for error in unique_errors: + print(error) + + +# Replace '24-09-24-main-log.txt' with the path to your log file +# log_file_path = "auxiliary_tools/cdat_regression_testing/843-migration-phase3/run-script-model-vs-model/24-09-24-main-log.txt" +log_file_path = "/global/u2/v/vo13/E3SM-Project/e3sm_diags/auxiliary_tools/cdat_regression_testing/843-migration-phase3/run-script-model-vs-obs/25-09-24-log.txt" +parse_unique_errors_without_timestamp(log_file_path) diff --git a/auxiliary_tools/cdat_regression_testing/843-migration-phase3/run-script-model-vs-obs/model_vs_obs_netcdf.ipynb b/auxiliary_tools/cdat_regression_testing/843-migration-phase3/run-script-model-vs-obs/model_vs_obs_netcdf.ipynb new file mode 100644 index 000000000..116f09cfe --- /dev/null +++ b/auxiliary_tools/cdat_regression_testing/843-migration-phase3/run-script-model-vs-obs/model_vs_obs_netcdf.ipynb @@ -0,0 +1,7408 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# CDAT Migration Regression Testing Notebook (`.nc` files)\n", + "\n", + "This notebook is used to perform regression testing between the development and\n", + "production versions of a diagnostic set.\n", + "\n", + "## How it works\n", + "\n", + "It compares the relative differences (%) between ref and test variables between\n", + "the dev and `main` branches.\n", + "\n", + "## How to use\n", + "\n", + "PREREQUISITE: The diagnostic set's netCDF stored in `.json` files in two directories\n", + "(dev and `main` branches).\n", + "\n", + "1. Make a copy of this notebook under `auxiliary_tools/cdat_regression_testing/`.\n", + "2. Run `mamba create -n cdat_regression_test -y -c conda-forge \"python<3.12\" xarray netcdf4 dask pandas matplotlib-base ipykernel`\n", + "3. Run `mamba activate cdat_regression_test`\n", + "4. Update `SET_DIR` and `SET_NAME` in the copy of your notebook.\n", + "5. Run all cells IN ORDER.\n", + "6. Review results for any outstanding differences (>=1e-5 relative tolerance).\n", + " - Debug these differences (e.g., bug in metrics functions, incorrect variable references, etc.)\n" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Setup Code\n" + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [], + "source": [ + "import glob\n", + "from typing import List\n", + "\n", + "import numpy as np\n", + "import xarray as xr\n", + "\n", + "from e3sm_diags.derivations.derivations import DERIVED_VARIABLES\n", + "\n", + "DEV_DIR = \"843-migration-phase3-model-vs-obs\"\n", + "DEV_PATH = f\"/global/cfs/cdirs/e3sm/www/cdat-migration-fy24/{DEV_DIR}/\"\n", + "\n", + "DEV_GLOB = sorted(glob.glob(DEV_PATH + \"**/**/*.nc\"))\n", + "DEV_NUM_FILES = len(DEV_GLOB)\n", + "\n", + "\n", + "MAIN_DIR = \"main\"\n", + "MAIN_PATH = f\"/global/cfs/cdirs/e3sm/www/cdat-migration-fy24/{MAIN_DIR}/\"\n", + "MAIN_GLOB = sorted(glob.glob(MAIN_PATH + \"**/**/*.nc\"))\n", + "MAIN_NUM_FILES = len(MAIN_GLOB)\n", + "\n", + "\n", + "def _remove_unwanted_files(file_glob: List[str]) -> List[str]:\n", + " \"\"\"Remove files that we don't want to compare.\n", + "\n", + " * area_mean_time_series -- `main` does not generate netCDF\n", + " * enso_diags -- `main` does not generate netCDF\n", + " * qbo -- variable name differs\n", + " * diurnal_cycle -- variable name differs\n", + " * diff -- comparing the difference between regridded files is not helpful\n", + " between branches because of the influence in floating point errors.\n", + " * ERA5_ext-U10-ANN-global_ref and ERA5_ext-U10-JJA-global_ref -- dev\n", + " branch does not generate these files because it is a model-only run.\n", + "\n", + " Parameters\n", + " ----------\n", + " file_glob : List[str]\n", + " _description_\n", + "\n", + " Returns\n", + " -------\n", + " List[str]\n", + " _description_\n", + " \"\"\"\n", + "\n", + " new_glob = []\n", + "\n", + " for fp in file_glob:\n", + " if (\n", + " \"area_mean_time_series\" in fp\n", + " or \"enso_diags\" in fp\n", + " or \"qbo\" in fp\n", + " or \"diurnal_cycle\" in fp\n", + " or \"diff\" in fp\n", + " or \"ERA5_ext-U10-ANN-global_ref\" in fp\n", + " or \"ERA5_ext-U10-JJA-global_ref\" in fp\n", + " ):\n", + " continue\n", + "\n", + " new_glob.append(fp)\n", + "\n", + " return new_glob\n", + "\n", + "\n", + "DEV_GLOB = _remove_unwanted_files(DEV_GLOB)\n", + "MAIN_GLOB = _remove_unwanted_files(MAIN_GLOB)" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": {}, + "outputs": [], + "source": [ + "def _get_relative_diffs():\n", + " # We are mainly focusing on relative tolerance here (in percentage terms).\n", + " atol = 0\n", + " rtol = 1e-4\n", + "\n", + " results = {\n", + " \"missing_files\": [],\n", + " \"missing_vars\": [],\n", + " \"matching_files\": [],\n", + " \"mismatch_errors\": [],\n", + " \"not_equal_errors\": [],\n", + " \"key_errors\": [],\n", + " }\n", + "\n", + " for fp_main in MAIN_GLOB:\n", + " fp_dev = fp_main.replace(MAIN_DIR, DEV_DIR)\n", + "\n", + " print(\"Comparing:\")\n", + " print(f\" * {fp_dev}\")\n", + " print(f\" * {fp_main}\")\n", + "\n", + " if \"annual_cycle_zonal_mean\" in fp_main:\n", + " if \"test.nc\" in fp_main:\n", + " fp_dev = fp_dev.replace(\"test.nc\", \"ref.nc\")\n", + " elif \"ref.nc\" in fp_main:\n", + " fp_dev = fp_dev.replace(\"ref.nc\", \"test.nc\")\n", + "\n", + " try:\n", + " ds1 = xr.open_dataset(fp_dev)\n", + " ds2 = xr.open_dataset(fp_main)\n", + " except FileNotFoundError as e:\n", + " print(f\" {e}\")\n", + "\n", + " if isinstance(e, FileNotFoundError) or isinstance(e, OSError):\n", + " results[\"missing_files\"].append(fp_dev)\n", + "\n", + " continue\n", + "\n", + " var_key = fp_main.split(\"-\")[-3]\n", + "\n", + " # for 3d vars such as T-200\n", + " var_key.isdigit()\n", + " if var_key.isdigit():\n", + " var_key = fp_main.split(\"-\")[-4]\n", + "\n", + " dev_data = _get_var_data(ds1, var_key)\n", + " main_data = _get_var_data(ds2, var_key)\n", + "\n", + " print(f\" * var_key: {var_key}\")\n", + "\n", + " if dev_data is None or main_data is None:\n", + " if dev_data is None:\n", + " results[\"missing_vars\"].append(fp_dev)\n", + " elif main_data is None:\n", + " results[\"missing_vars\"].append(fp_main)\n", + "\n", + " print(\" * Could not find variable key in the dataset(s)\")\n", + "\n", + " continue\n", + "\n", + " try:\n", + " np.testing.assert_allclose(\n", + " dev_data,\n", + " main_data,\n", + " atol=atol,\n", + " rtol=rtol,\n", + " )\n", + " results[\"matching_files\"].append(fp_main)\n", + " except (KeyError, AssertionError) as e:\n", + " msg = str(e)\n", + "\n", + " print(f\" {msg}\")\n", + "\n", + " if \"mismatch\" in msg:\n", + " results[\"mismatch_errors\"].append(fp_dev)\n", + " elif \"Not equal to tolerance\" in msg:\n", + " results[\"not_equal_errors\"].append(fp_dev)\n", + " else:\n", + " print(f\" * All close and within relative tolerance ({rtol})\")\n", + "\n", + " return results\n", + "\n", + "\n", + "def _get_var_data(ds: xr.Dataset, var_key: str) -> np.ndarray:\n", + " \"\"\"Get the variable data using a list of matching keys.\n", + "\n", + " The `main` branch saves the dataset using the original variable name,\n", + " while the dev branch saves the variable with the derived variable name.\n", + " The dev branch is performing the expected behavior here.\n", + "\n", + " Parameters\n", + " ----------\n", + " ds : xr.Dataset\n", + " _description_\n", + " var_key : str\n", + " _description_\n", + "\n", + " Returns\n", + " -------\n", + " np.ndarray\n", + " _description_\n", + " \"\"\"\n", + "\n", + " data = None\n", + "\n", + " try:\n", + " data = ds[var_key].values\n", + " except KeyError:\n", + " try:\n", + " var_keys = DERIVED_VARIABLES[var_key].keys()\n", + " except KeyError:\n", + " var_keys = DERIVED_VARIABLES[var_key.upper()].keys()\n", + "\n", + " var_keys = [var_key] + list(sum(var_keys, ()))\n", + "\n", + " for key in var_keys:\n", + " if key in ds.data_vars.keys():\n", + " data = ds[key].values\n", + " break\n", + "\n", + " return data" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": {}, + "outputs": [], + "source": [ + "def _check_if_files_found():\n", + " if DEV_NUM_FILES == 0 or MAIN_NUM_FILES == 0:\n", + " raise IOError(\n", + " \"No files found at DEV_PATH and/or MAIN_PATH. \"\n", + " f\"Please check {DEV_PATH} and {MAIN_PATH}.\"\n", + " )\n", + "\n", + "\n", + "def _check_if_matching_filecount():\n", + " if DEV_NUM_FILES != MAIN_NUM_FILES:\n", + " raise IOError(\n", + " \"Number of files do not match at DEV_PATH and MAIN_PATH \"\n", + " f\"({DEV_NUM_FILES} vs. {MAIN_NUM_FILES}).\"\n", + " )\n", + "\n", + " print(f\"Matching file count ({DEV_NUM_FILES} and {MAIN_NUM_FILES}).\")\n", + "\n", + "\n", + "def _check_if_missing_files():\n", + " missing_dev_files = []\n", + " missing_main_files = []\n", + "\n", + " for fp_main in MAIN_GLOB:\n", + " fp_dev = fp_main.replace(MAIN_DIR, DEV_DIR)\n", + "\n", + " if fp_dev not in DEV_GLOB:\n", + " missing_dev_files.append(fp_dev)\n", + "\n", + " for fp_dev in DEV_GLOB:\n", + " fp_main = fp_dev.replace(DEV_DIR, MAIN_DIR)\n", + "\n", + " if fp_main not in MAIN_GLOB:\n", + " missing_main_files.append(fp_main)\n", + "\n", + " return missing_dev_files, missing_main_files" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## 1. Check for matching and equal number of files\n" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": {}, + "outputs": [], + "source": [ + "_check_if_files_found()" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": {}, + "outputs": [], + "source": [ + "DEV_GLOB = [fp for fp in DEV_GLOB if \"diff.nc\" not in fp]\n", + "MAIN_GLOB = [fp for fp in MAIN_GLOB if \"diff.nc\" not in fp]" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "(1250, 1248)" + ] + }, + "execution_count": 6, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "len(DEV_GLOB), len(MAIN_GLOB)" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Missing dev files: 2\n", + "Missing main files: 4\n" + ] + } + ], + "source": [ + "missing_dev_files, missing_main_files = _check_if_missing_files()\n", + "\n", + "print(f\"Missing dev files: {len(missing_dev_files)}\")\n", + "print(f\"Missing main files: {len(missing_main_files)}\")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Check missing main files (not concerned)\n", + "\n", + "Results:\n", + "\n", + "- The missing files are due to a recent .cfg update in [PR #830](https://github.com/E3SM-Project/e3sm_diags/pull/830)\n" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "['/global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/annual_cycle_zonal_mean/MACv2/MACv2-AODVIS-ANNUALCYCLE-global_ref.nc',\n", + " '/global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/annual_cycle_zonal_mean/MACv2/MACv2-AODVIS-ANNUALCYCLE-global_test.nc',\n", + " '/global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/annual_cycle_zonal_mean/MERRA2_Aerosols/MERRA2_Aerosols-AODVIS-ANNUALCYCLE-global_ref.nc',\n", + " '/global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/annual_cycle_zonal_mean/MERRA2_Aerosols/MERRA2_Aerosols-AODVIS-ANNUALCYCLE-global_test.nc']" + ] + }, + "execution_count": 8, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "missing_main_files" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Check missing dev files:\n", + "\n", + "Results:\n", + "\n", + "- The missing reference files are due to not saving them out to netCDF since they are the same as the test files (skipped, model-only run)\n" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "['/global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/annual_cycle_zonal_mean/AOD_550/AOD_550-AODVIS-ANNUALCYCLE-global_ref.nc',\n", + " '/global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/annual_cycle_zonal_mean/AOD_550/AOD_550-AODVIS-ANNUALCYCLE-global_test.nc']" + ] + }, + "execution_count": 9, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "missing_dev_files" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## 2 Compare the netCDF files between branches\n", + "\n", + "- Compare \"ref\" and \"test\" files\n", + "- \"diff\" files are ignored because getting relative diffs for these does not make sense (relative diff will be above tolerance)\n" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/annual_cycle_zonal_mean/AOD_550/AOD_550-AODVIS-ANNUALCYCLE-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/annual_cycle_zonal_mean/AOD_550/AOD_550-AODVIS-ANNUALCYCLE-global_ref.nc\n", + " [Errno 2] No such file or directory: '/global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/annual_cycle_zonal_mean/AOD_550/AOD_550-AODVIS-ANNUALCYCLE-global_test.nc'\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/annual_cycle_zonal_mean/AOD_550/AOD_550-AODVIS-ANNUALCYCLE-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/annual_cycle_zonal_mean/AOD_550/AOD_550-AODVIS-ANNUALCYCLE-global_test.nc\n", + " [Errno 2] No such file or directory: '/global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/annual_cycle_zonal_mean/AOD_550/AOD_550-AODVIS-ANNUALCYCLE-global_ref.nc'\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/annual_cycle_zonal_mean/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-ALBEDO-ANNUALCYCLE-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/annual_cycle_zonal_mean/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-ALBEDO-ANNUALCYCLE-global_ref.nc\n", + " * var_key: ALBEDO\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/annual_cycle_zonal_mean/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-ALBEDO-ANNUALCYCLE-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/annual_cycle_zonal_mean/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-ALBEDO-ANNUALCYCLE-global_test.nc\n", + " * var_key: ALBEDO\n", + " \n", + "Not equal to tolerance rtol=0.0001, atol=0\n", + "\n", + "x and y nan location mismatch:\n", + " x: array([[0.69877 , 0.695266, 0.68627 , ..., inf, inf, inf],\n", + " [0.712032, 0.706896, 0.69354 , ..., inf, inf, inf],\n", + " [0.765447, 0.743142, 0.738787, ..., 0.752918, 0.751204, 0.833122],...\n", + " y: array([[0.69877 , 0.695266, 0.68627 , ..., nan, nan, nan],\n", + " [0.712033, 0.706896, 0.69354 , ..., nan, nan, nan],\n", + " [0.765447, 0.743142, 0.738787, ..., 0.752918, 0.751204, 0.833123],...\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/annual_cycle_zonal_mean/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-ALBEDOC-ANNUALCYCLE-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/annual_cycle_zonal_mean/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-ALBEDOC-ANNUALCYCLE-global_ref.nc\n", + " * var_key: ALBEDOC\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/annual_cycle_zonal_mean/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-ALBEDOC-ANNUALCYCLE-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/annual_cycle_zonal_mean/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-ALBEDOC-ANNUALCYCLE-global_test.nc\n", + " * var_key: ALBEDOC\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/annual_cycle_zonal_mean/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FLUT-ANNUALCYCLE-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/annual_cycle_zonal_mean/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FLUT-ANNUALCYCLE-global_ref.nc\n", + " * var_key: FLUT\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/annual_cycle_zonal_mean/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FLUT-ANNUALCYCLE-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/annual_cycle_zonal_mean/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FLUT-ANNUALCYCLE-global_test.nc\n", + " * var_key: FLUT\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/annual_cycle_zonal_mean/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FLUTC-ANNUALCYCLE-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/annual_cycle_zonal_mean/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FLUTC-ANNUALCYCLE-global_ref.nc\n", + " * var_key: FLUTC\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/annual_cycle_zonal_mean/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FLUTC-ANNUALCYCLE-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/annual_cycle_zonal_mean/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FLUTC-ANNUALCYCLE-global_test.nc\n", + " * var_key: FLUTC\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/annual_cycle_zonal_mean/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FSNTOA-ANNUALCYCLE-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/annual_cycle_zonal_mean/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FSNTOA-ANNUALCYCLE-global_ref.nc\n", + " * var_key: FSNTOA\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/annual_cycle_zonal_mean/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FSNTOA-ANNUALCYCLE-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/annual_cycle_zonal_mean/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FSNTOA-ANNUALCYCLE-global_test.nc\n", + " * var_key: FSNTOA\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/annual_cycle_zonal_mean/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FSNTOAC-ANNUALCYCLE-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/annual_cycle_zonal_mean/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FSNTOAC-ANNUALCYCLE-global_ref.nc\n", + " * var_key: FSNTOAC\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/annual_cycle_zonal_mean/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FSNTOAC-ANNUALCYCLE-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/annual_cycle_zonal_mean/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FSNTOAC-ANNUALCYCLE-global_test.nc\n", + " * var_key: FSNTOAC\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/annual_cycle_zonal_mean/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-LWCF-ANNUALCYCLE-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/annual_cycle_zonal_mean/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-LWCF-ANNUALCYCLE-global_ref.nc\n", + " * var_key: LWCF\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/annual_cycle_zonal_mean/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-LWCF-ANNUALCYCLE-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/annual_cycle_zonal_mean/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-LWCF-ANNUALCYCLE-global_test.nc\n", + " * var_key: LWCF\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/annual_cycle_zonal_mean/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-NETCF-ANNUALCYCLE-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/annual_cycle_zonal_mean/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-NETCF-ANNUALCYCLE-global_ref.nc\n", + " * var_key: NETCF\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/annual_cycle_zonal_mean/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-NETCF-ANNUALCYCLE-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/annual_cycle_zonal_mean/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-NETCF-ANNUALCYCLE-global_test.nc\n", + " * var_key: NETCF\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/annual_cycle_zonal_mean/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-RESTOM-ANNUALCYCLE-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/annual_cycle_zonal_mean/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-RESTOM-ANNUALCYCLE-global_ref.nc\n", + " * var_key: RESTOM\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/annual_cycle_zonal_mean/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-RESTOM-ANNUALCYCLE-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/annual_cycle_zonal_mean/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-RESTOM-ANNUALCYCLE-global_test.nc\n", + " * var_key: RESTOM\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/annual_cycle_zonal_mean/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-SOLIN-ANNUALCYCLE-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/annual_cycle_zonal_mean/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-SOLIN-ANNUALCYCLE-global_ref.nc\n", + " * var_key: SOLIN\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/annual_cycle_zonal_mean/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-SOLIN-ANNUALCYCLE-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/annual_cycle_zonal_mean/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-SOLIN-ANNUALCYCLE-global_test.nc\n", + " * var_key: SOLIN\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/annual_cycle_zonal_mean/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-SWCF-ANNUALCYCLE-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/annual_cycle_zonal_mean/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-SWCF-ANNUALCYCLE-global_ref.nc\n", + " * var_key: SWCF\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/annual_cycle_zonal_mean/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-SWCF-ANNUALCYCLE-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/annual_cycle_zonal_mean/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-SWCF-ANNUALCYCLE-global_test.nc\n", + " * var_key: SWCF\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/annual_cycle_zonal_mean/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-ALBEDO_SRF-ANNUALCYCLE-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/annual_cycle_zonal_mean/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-ALBEDO_SRF-ANNUALCYCLE-global_ref.nc\n", + " * var_key: ALBEDO_SRF\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/annual_cycle_zonal_mean/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-ALBEDO_SRF-ANNUALCYCLE-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/annual_cycle_zonal_mean/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-ALBEDO_SRF-ANNUALCYCLE-global_test.nc\n", + " * var_key: ALBEDO_SRF\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/annual_cycle_zonal_mean/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLDS-ANNUALCYCLE-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/annual_cycle_zonal_mean/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLDS-ANNUALCYCLE-global_ref.nc\n", + " * var_key: FLDS\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/annual_cycle_zonal_mean/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLDS-ANNUALCYCLE-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/annual_cycle_zonal_mean/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLDS-ANNUALCYCLE-global_test.nc\n", + " * var_key: FLDS\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/annual_cycle_zonal_mean/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLDSC-ANNUALCYCLE-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/annual_cycle_zonal_mean/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLDSC-ANNUALCYCLE-global_ref.nc\n", + " * var_key: FLDSC\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/annual_cycle_zonal_mean/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLDSC-ANNUALCYCLE-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/annual_cycle_zonal_mean/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLDSC-ANNUALCYCLE-global_test.nc\n", + " * var_key: FLDSC\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/annual_cycle_zonal_mean/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLNS-ANNUALCYCLE-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/annual_cycle_zonal_mean/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLNS-ANNUALCYCLE-global_ref.nc\n", + " * var_key: FLNS\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/annual_cycle_zonal_mean/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLNS-ANNUALCYCLE-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/annual_cycle_zonal_mean/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLNS-ANNUALCYCLE-global_test.nc\n", + " * var_key: FLNS\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/annual_cycle_zonal_mean/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLNSC-ANNUALCYCLE-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/annual_cycle_zonal_mean/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLNSC-ANNUALCYCLE-global_ref.nc\n", + " * var_key: FLNSC\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/annual_cycle_zonal_mean/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLNSC-ANNUALCYCLE-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/annual_cycle_zonal_mean/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLNSC-ANNUALCYCLE-global_test.nc\n", + " * var_key: FLNSC\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/annual_cycle_zonal_mean/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSDS-ANNUALCYCLE-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/annual_cycle_zonal_mean/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSDS-ANNUALCYCLE-global_ref.nc\n", + " * var_key: FSDS\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/annual_cycle_zonal_mean/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSDS-ANNUALCYCLE-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/annual_cycle_zonal_mean/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSDS-ANNUALCYCLE-global_test.nc\n", + " * var_key: FSDS\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/annual_cycle_zonal_mean/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSDSC-ANNUALCYCLE-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/annual_cycle_zonal_mean/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSDSC-ANNUALCYCLE-global_ref.nc\n", + " * var_key: FSDSC\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/annual_cycle_zonal_mean/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSDSC-ANNUALCYCLE-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/annual_cycle_zonal_mean/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSDSC-ANNUALCYCLE-global_test.nc\n", + " * var_key: FSDSC\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/annual_cycle_zonal_mean/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSNS-ANNUALCYCLE-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/annual_cycle_zonal_mean/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSNS-ANNUALCYCLE-global_ref.nc\n", + " * var_key: FSNS\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/annual_cycle_zonal_mean/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSNS-ANNUALCYCLE-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/annual_cycle_zonal_mean/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSNS-ANNUALCYCLE-global_test.nc\n", + " * var_key: FSNS\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/annual_cycle_zonal_mean/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSNSC-ANNUALCYCLE-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/annual_cycle_zonal_mean/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSNSC-ANNUALCYCLE-global_ref.nc\n", + " * var_key: FSNSC\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/annual_cycle_zonal_mean/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSNSC-ANNUALCYCLE-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/annual_cycle_zonal_mean/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSNSC-ANNUALCYCLE-global_test.nc\n", + " * var_key: FSNSC\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/annual_cycle_zonal_mean/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-LWCFSRF-ANNUALCYCLE-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/annual_cycle_zonal_mean/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-LWCFSRF-ANNUALCYCLE-global_ref.nc\n", + " * var_key: LWCFSRF\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/annual_cycle_zonal_mean/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-LWCFSRF-ANNUALCYCLE-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/annual_cycle_zonal_mean/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-LWCFSRF-ANNUALCYCLE-global_test.nc\n", + " * var_key: LWCFSRF\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/annual_cycle_zonal_mean/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-NETCF_SRF-ANNUALCYCLE-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/annual_cycle_zonal_mean/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-NETCF_SRF-ANNUALCYCLE-global_ref.nc\n", + " * var_key: NETCF_SRF\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/annual_cycle_zonal_mean/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-NETCF_SRF-ANNUALCYCLE-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/annual_cycle_zonal_mean/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-NETCF_SRF-ANNUALCYCLE-global_test.nc\n", + " * var_key: NETCF_SRF\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/annual_cycle_zonal_mean/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-SWCFSRF-ANNUALCYCLE-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/annual_cycle_zonal_mean/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-SWCFSRF-ANNUALCYCLE-global_ref.nc\n", + " * var_key: SWCFSRF\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/annual_cycle_zonal_mean/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-SWCFSRF-ANNUALCYCLE-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/annual_cycle_zonal_mean/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-SWCFSRF-ANNUALCYCLE-global_test.nc\n", + " * var_key: SWCFSRF\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/annual_cycle_zonal_mean/COREv2_Flux/COREv2_Flux-PminusE-ANNUALCYCLE-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/annual_cycle_zonal_mean/COREv2_Flux/COREv2_Flux-PminusE-ANNUALCYCLE-global_ref.nc\n", + " * var_key: PminusE\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/annual_cycle_zonal_mean/COREv2_Flux/COREv2_Flux-PminusE-ANNUALCYCLE-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/annual_cycle_zonal_mean/COREv2_Flux/COREv2_Flux-PminusE-ANNUALCYCLE-global_test.nc\n", + " * var_key: PminusE\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/annual_cycle_zonal_mean/ERA5/ERA5-LHFLX-ANNUALCYCLE-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/annual_cycle_zonal_mean/ERA5/ERA5-LHFLX-ANNUALCYCLE-global_ref.nc\n", + " * var_key: LHFLX\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/annual_cycle_zonal_mean/ERA5/ERA5-LHFLX-ANNUALCYCLE-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/annual_cycle_zonal_mean/ERA5/ERA5-LHFLX-ANNUALCYCLE-global_test.nc\n", + " * var_key: LHFLX\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/annual_cycle_zonal_mean/ERA5/ERA5-PRECT-ANNUALCYCLE-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/annual_cycle_zonal_mean/ERA5/ERA5-PRECT-ANNUALCYCLE-global_ref.nc\n", + " * var_key: PRECT\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/annual_cycle_zonal_mean/ERA5/ERA5-PRECT-ANNUALCYCLE-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/annual_cycle_zonal_mean/ERA5/ERA5-PRECT-ANNUALCYCLE-global_test.nc\n", + " * var_key: PRECT\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/annual_cycle_zonal_mean/ERA5/ERA5-PSL-ANNUALCYCLE-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/annual_cycle_zonal_mean/ERA5/ERA5-PSL-ANNUALCYCLE-global_ref.nc\n", + " * var_key: PSL\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/annual_cycle_zonal_mean/ERA5/ERA5-PSL-ANNUALCYCLE-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/annual_cycle_zonal_mean/ERA5/ERA5-PSL-ANNUALCYCLE-global_test.nc\n", + " * var_key: PSL\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/annual_cycle_zonal_mean/ERA5/ERA5-SHFLX-ANNUALCYCLE-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/annual_cycle_zonal_mean/ERA5/ERA5-SHFLX-ANNUALCYCLE-global_ref.nc\n", + " * var_key: SHFLX\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/annual_cycle_zonal_mean/ERA5/ERA5-SHFLX-ANNUALCYCLE-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/annual_cycle_zonal_mean/ERA5/ERA5-SHFLX-ANNUALCYCLE-global_test.nc\n", + " * var_key: SHFLX\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/annual_cycle_zonal_mean/ERA5/ERA5-TMQ-ANNUALCYCLE-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/annual_cycle_zonal_mean/ERA5/ERA5-TMQ-ANNUALCYCLE-global_ref.nc\n", + " * var_key: TMQ\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/annual_cycle_zonal_mean/ERA5/ERA5-TMQ-ANNUALCYCLE-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/annual_cycle_zonal_mean/ERA5/ERA5-TMQ-ANNUALCYCLE-global_test.nc\n", + " * var_key: TMQ\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/annual_cycle_zonal_mean/ERA5/ERA5-TREFHT-ANNUALCYCLE-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/annual_cycle_zonal_mean/ERA5/ERA5-TREFHT-ANNUALCYCLE-global_ref.nc\n", + " * var_key: TREFHT\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/annual_cycle_zonal_mean/ERA5/ERA5-TREFHT-ANNUALCYCLE-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/annual_cycle_zonal_mean/ERA5/ERA5-TREFHT-ANNUALCYCLE-global_test.nc\n", + " * var_key: TREFHT\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/annual_cycle_zonal_mean/GPCP_OAFLux/GPCP_OAFLux-PminusE-ANNUALCYCLE-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/annual_cycle_zonal_mean/GPCP_OAFLux/GPCP_OAFLux-PminusE-ANNUALCYCLE-global_ref.nc\n", + " * var_key: PminusE\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/annual_cycle_zonal_mean/GPCP_OAFLux/GPCP_OAFLux-PminusE-ANNUALCYCLE-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/annual_cycle_zonal_mean/GPCP_OAFLux/GPCP_OAFLux-PminusE-ANNUALCYCLE-global_test.nc\n", + " * var_key: PminusE\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/annual_cycle_zonal_mean/GPCP_v2.3/GPCP_v2.3-PRECT-ANNUALCYCLE-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/annual_cycle_zonal_mean/GPCP_v2.3/GPCP_v2.3-PRECT-ANNUALCYCLE-global_ref.nc\n", + " * var_key: PRECT\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/annual_cycle_zonal_mean/GPCP_v2.3/GPCP_v2.3-PRECT-ANNUALCYCLE-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/annual_cycle_zonal_mean/GPCP_v2.3/GPCP_v2.3-PRECT-ANNUALCYCLE-global_test.nc\n", + " * var_key: PRECT\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/annual_cycle_zonal_mean/GPCP_v3.2/GPCP_v3.2-PRECT-ANNUALCYCLE-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/annual_cycle_zonal_mean/GPCP_v3.2/GPCP_v3.2-PRECT-ANNUALCYCLE-global_ref.nc\n", + " * var_key: PRECT\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/annual_cycle_zonal_mean/GPCP_v3.2/GPCP_v3.2-PRECT-ANNUALCYCLE-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/annual_cycle_zonal_mean/GPCP_v3.2/GPCP_v3.2-PRECT-ANNUALCYCLE-global_test.nc\n", + " * var_key: PRECT\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/annual_cycle_zonal_mean/MERRA2/MERRA2-LHFLX-ANNUALCYCLE-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/annual_cycle_zonal_mean/MERRA2/MERRA2-LHFLX-ANNUALCYCLE-global_ref.nc\n", + " * var_key: LHFLX\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/annual_cycle_zonal_mean/MERRA2/MERRA2-LHFLX-ANNUALCYCLE-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/annual_cycle_zonal_mean/MERRA2/MERRA2-LHFLX-ANNUALCYCLE-global_test.nc\n", + " * var_key: LHFLX\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/annual_cycle_zonal_mean/MERRA2/MERRA2-PRECT-ANNUALCYCLE-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/annual_cycle_zonal_mean/MERRA2/MERRA2-PRECT-ANNUALCYCLE-global_ref.nc\n", + " * var_key: PRECT\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/annual_cycle_zonal_mean/MERRA2/MERRA2-PRECT-ANNUALCYCLE-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/annual_cycle_zonal_mean/MERRA2/MERRA2-PRECT-ANNUALCYCLE-global_test.nc\n", + " * var_key: PRECT\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/annual_cycle_zonal_mean/MERRA2/MERRA2-PSL-ANNUALCYCLE-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/annual_cycle_zonal_mean/MERRA2/MERRA2-PSL-ANNUALCYCLE-global_ref.nc\n", + " * var_key: PSL\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/annual_cycle_zonal_mean/MERRA2/MERRA2-PSL-ANNUALCYCLE-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/annual_cycle_zonal_mean/MERRA2/MERRA2-PSL-ANNUALCYCLE-global_test.nc\n", + " * var_key: PSL\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/annual_cycle_zonal_mean/MERRA2/MERRA2-SHFLX-ANNUALCYCLE-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/annual_cycle_zonal_mean/MERRA2/MERRA2-SHFLX-ANNUALCYCLE-global_ref.nc\n", + " * var_key: SHFLX\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/annual_cycle_zonal_mean/MERRA2/MERRA2-SHFLX-ANNUALCYCLE-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/annual_cycle_zonal_mean/MERRA2/MERRA2-SHFLX-ANNUALCYCLE-global_test.nc\n", + " * var_key: SHFLX\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/annual_cycle_zonal_mean/MERRA2/MERRA2-TMQ-ANNUALCYCLE-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/annual_cycle_zonal_mean/MERRA2/MERRA2-TMQ-ANNUALCYCLE-global_ref.nc\n", + " * var_key: TMQ\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/annual_cycle_zonal_mean/MERRA2/MERRA2-TMQ-ANNUALCYCLE-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/annual_cycle_zonal_mean/MERRA2/MERRA2-TMQ-ANNUALCYCLE-global_test.nc\n", + " * var_key: TMQ\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/annual_cycle_zonal_mean/MERRA2/MERRA2-TREFHT-ANNUALCYCLE-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/annual_cycle_zonal_mean/MERRA2/MERRA2-TREFHT-ANNUALCYCLE-global_ref.nc\n", + " * var_key: TREFHT\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/annual_cycle_zonal_mean/MERRA2/MERRA2-TREFHT-ANNUALCYCLE-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/annual_cycle_zonal_mean/MERRA2/MERRA2-TREFHT-ANNUALCYCLE-global_test.nc\n", + " * var_key: TREFHT\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/annual_cycle_zonal_mean/OMI-MLS/OMI-MLS-SCO-ANNUALCYCLE-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/annual_cycle_zonal_mean/OMI-MLS/OMI-MLS-SCO-ANNUALCYCLE-global_ref.nc\n", + " * var_key: SCO\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/annual_cycle_zonal_mean/OMI-MLS/OMI-MLS-SCO-ANNUALCYCLE-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/annual_cycle_zonal_mean/OMI-MLS/OMI-MLS-SCO-ANNUALCYCLE-global_test.nc\n", + " * var_key: SCO\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/annual_cycle_zonal_mean/OMI-MLS/OMI-MLS-TCO-ANNUALCYCLE-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/annual_cycle_zonal_mean/OMI-MLS/OMI-MLS-TCO-ANNUALCYCLE-global_ref.nc\n", + " * var_key: TCO\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/annual_cycle_zonal_mean/OMI-MLS/OMI-MLS-TCO-ANNUALCYCLE-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/annual_cycle_zonal_mean/OMI-MLS/OMI-MLS-TCO-ANNUALCYCLE-global_test.nc\n", + " * var_key: TCO\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/annual_cycle_zonal_mean/SST_CL_HadISST/HadISST_CL-SST-ANNUALCYCLE-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/annual_cycle_zonal_mean/SST_CL_HadISST/HadISST_CL-SST-ANNUALCYCLE-global_ref.nc\n", + " * var_key: SST\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/annual_cycle_zonal_mean/SST_CL_HadISST/HadISST_CL-SST-ANNUALCYCLE-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/annual_cycle_zonal_mean/SST_CL_HadISST/HadISST_CL-SST-ANNUALCYCLE-global_test.nc\n", + " * var_key: SST\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/cosp_histogram/ISCCP-COSP/ISCCPCOSP-COSP_HISTOGRAM_ISCCP-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/cosp_histogram/ISCCP-COSP/ISCCPCOSP-COSP_HISTOGRAM_ISCCP-ANN-global_ref.nc\n", + " * var_key: COSP_HISTOGRAM_ISCCP\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/cosp_histogram/ISCCP-COSP/ISCCPCOSP-COSP_HISTOGRAM_ISCCP-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/cosp_histogram/ISCCP-COSP/ISCCPCOSP-COSP_HISTOGRAM_ISCCP-ANN-global_test.nc\n", + " * var_key: COSP_HISTOGRAM_ISCCP\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/cosp_histogram/ISCCP-COSP/ISCCPCOSP-COSP_HISTOGRAM_ISCCP-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/cosp_histogram/ISCCP-COSP/ISCCPCOSP-COSP_HISTOGRAM_ISCCP-JJA-global_ref.nc\n", + " * var_key: COSP_HISTOGRAM_ISCCP\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/cosp_histogram/ISCCP-COSP/ISCCPCOSP-COSP_HISTOGRAM_ISCCP-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/cosp_histogram/ISCCP-COSP/ISCCPCOSP-COSP_HISTOGRAM_ISCCP-JJA-global_test.nc\n", + " * var_key: COSP_HISTOGRAM_ISCCP\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/cosp_histogram/MISR-COSP/MISRCOSP-COSP_HISTOGRAM_MISR-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/cosp_histogram/MISR-COSP/MISRCOSP-COSP_HISTOGRAM_MISR-ANN-global_ref.nc\n", + " * var_key: COSP_HISTOGRAM_MISR\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/cosp_histogram/MISR-COSP/MISRCOSP-COSP_HISTOGRAM_MISR-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/cosp_histogram/MISR-COSP/MISRCOSP-COSP_HISTOGRAM_MISR-ANN-global_test.nc\n", + " * var_key: COSP_HISTOGRAM_MISR\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/cosp_histogram/MISR-COSP/MISRCOSP-COSP_HISTOGRAM_MISR-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/cosp_histogram/MISR-COSP/MISRCOSP-COSP_HISTOGRAM_MISR-JJA-global_ref.nc\n", + " * var_key: COSP_HISTOGRAM_MISR\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/cosp_histogram/MISR-COSP/MISRCOSP-COSP_HISTOGRAM_MISR-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/cosp_histogram/MISR-COSP/MISRCOSP-COSP_HISTOGRAM_MISR-JJA-global_test.nc\n", + " * var_key: COSP_HISTOGRAM_MISR\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/cosp_histogram/MODIS-COSP/MODISCOSP-COSP_HISTOGRAM_MODIS-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/cosp_histogram/MODIS-COSP/MODISCOSP-COSP_HISTOGRAM_MODIS-ANN-global_ref.nc\n", + " * var_key: COSP_HISTOGRAM_MODIS\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/cosp_histogram/MODIS-COSP/MODISCOSP-COSP_HISTOGRAM_MODIS-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/cosp_histogram/MODIS-COSP/MODISCOSP-COSP_HISTOGRAM_MODIS-ANN-global_test.nc\n", + " * var_key: COSP_HISTOGRAM_MODIS\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/cosp_histogram/MODIS-COSP/MODISCOSP-COSP_HISTOGRAM_MODIS-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/cosp_histogram/MODIS-COSP/MODISCOSP-COSP_HISTOGRAM_MODIS-JJA-global_ref.nc\n", + " * var_key: COSP_HISTOGRAM_MODIS\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/cosp_histogram/MODIS-COSP/MODISCOSP-COSP_HISTOGRAM_MODIS-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/cosp_histogram/MODIS-COSP/MODISCOSP-COSP_HISTOGRAM_MODIS-JJA-global_test.nc\n", + " * var_key: COSP_HISTOGRAM_MODIS\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/AOD_550/MACv2-AODDUST-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/AOD_550/MACv2-AODDUST-ANN-global_test.nc\n", + " * var_key: AODDUST\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/AOD_550/MACv2-AODDUST-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/AOD_550/MACv2-AODDUST-JJA-global_test.nc\n", + " * var_key: AODDUST\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/AOD_550/MACv2-AODVIS-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/AOD_550/MACv2-AODVIS-ANN-global_ref.nc\n", + " * var_key: AODVIS\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/AOD_550/MACv2-AODVIS-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/AOD_550/MACv2-AODVIS-ANN-global_test.nc\n", + " * var_key: AODVIS\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/AOD_550/MACv2-AODVIS-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/AOD_550/MACv2-AODVIS-JJA-global_ref.nc\n", + " * var_key: AODVIS\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/AOD_550/MACv2-AODVIS-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/AOD_550/MACv2-AODVIS-JJA-global_test.nc\n", + " * var_key: AODVIS\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/AOD_550/MERRA2_Aerosols-AODVIS-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/AOD_550/MERRA2_Aerosols-AODVIS-ANN-global_ref.nc\n", + " * var_key: AODVIS\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/AOD_550/MERRA2_Aerosols-AODVIS-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/AOD_550/MERRA2_Aerosols-AODVIS-ANN-global_test.nc\n", + " * var_key: AODVIS\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/AOD_550/MERRA2_Aerosols-AODVIS-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/AOD_550/MERRA2_Aerosols-AODVIS-JJA-global_ref.nc\n", + " * var_key: AODVIS\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/AOD_550/MERRA2_Aerosols-AODVIS-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/AOD_550/MERRA2_Aerosols-AODVIS-JJA-global_test.nc\n", + " * var_key: AODVIS\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-ALBEDO-ANN-75S75N_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-ALBEDO-ANN-75S75N_ref.nc\n", + " * var_key: ALBEDO\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-ALBEDO-ANN-75S75N_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-ALBEDO-ANN-75S75N_test.nc\n", + " * var_key: ALBEDO\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-ALBEDO-JJA-75S75N_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-ALBEDO-JJA-75S75N_ref.nc\n", + " * var_key: ALBEDO\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-ALBEDO-JJA-75S75N_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-ALBEDO-JJA-75S75N_test.nc\n", + " * var_key: ALBEDO\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-ALBEDOC-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-ALBEDOC-ANN-global_ref.nc\n", + " * var_key: ALBEDOC\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-ALBEDOC-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-ALBEDOC-ANN-global_test.nc\n", + " * var_key: ALBEDOC\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-ALBEDOC-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-ALBEDOC-JJA-global_ref.nc\n", + " * var_key: ALBEDOC\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-ALBEDOC-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-ALBEDOC-JJA-global_test.nc\n", + " * var_key: ALBEDOC\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FLUT-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FLUT-ANN-global_ref.nc\n", + " * var_key: FLUT\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FLUT-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FLUT-ANN-global_test.nc\n", + " * var_key: FLUT\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FLUT-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FLUT-JJA-global_ref.nc\n", + " * var_key: FLUT\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FLUT-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FLUT-JJA-global_test.nc\n", + " * var_key: FLUT\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FLUTC-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FLUTC-ANN-global_ref.nc\n", + " * var_key: FLUTC\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FLUTC-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FLUTC-ANN-global_test.nc\n", + " * var_key: FLUTC\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FLUTC-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FLUTC-JJA-global_ref.nc\n", + " * var_key: FLUTC\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FLUTC-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FLUTC-JJA-global_test.nc\n", + " * var_key: FLUTC\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FSNTOA-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FSNTOA-ANN-global_ref.nc\n", + " * var_key: FSNTOA\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FSNTOA-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FSNTOA-ANN-global_test.nc\n", + " * var_key: FSNTOA\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FSNTOA-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FSNTOA-JJA-global_ref.nc\n", + " * var_key: FSNTOA\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FSNTOA-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FSNTOA-JJA-global_test.nc\n", + " * var_key: FSNTOA\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FSNTOAC-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FSNTOAC-ANN-global_ref.nc\n", + " * var_key: FSNTOAC\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FSNTOAC-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FSNTOAC-ANN-global_test.nc\n", + " * var_key: FSNTOAC\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FSNTOAC-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FSNTOAC-JJA-global_ref.nc\n", + " * var_key: FSNTOAC\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FSNTOAC-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FSNTOAC-JJA-global_test.nc\n", + " * var_key: FSNTOAC\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-LWCF-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-LWCF-ANN-global_ref.nc\n", + " * var_key: LWCF\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-LWCF-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-LWCF-ANN-global_test.nc\n", + " * var_key: LWCF\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-LWCF-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-LWCF-JJA-global_ref.nc\n", + " * var_key: LWCF\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-LWCF-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-LWCF-JJA-global_test.nc\n", + " * var_key: LWCF\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-NETCF-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-NETCF-ANN-global_ref.nc\n", + " * var_key: NETCF\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-NETCF-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-NETCF-ANN-global_test.nc\n", + " * var_key: NETCF\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-NETCF-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-NETCF-JJA-global_ref.nc\n", + " * var_key: NETCF\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-NETCF-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-NETCF-JJA-global_test.nc\n", + " * var_key: NETCF\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-RESTOM-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-RESTOM-ANN-global_ref.nc\n", + " * var_key: RESTOM\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-RESTOM-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-RESTOM-ANN-global_test.nc\n", + " * var_key: RESTOM\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-RESTOM-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-RESTOM-JJA-global_ref.nc\n", + " * var_key: RESTOM\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-RESTOM-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-RESTOM-JJA-global_test.nc\n", + " * var_key: RESTOM\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-SOLIN-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-SOLIN-ANN-global_ref.nc\n", + " * var_key: SOLIN\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-SOLIN-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-SOLIN-ANN-global_test.nc\n", + " * var_key: SOLIN\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-SOLIN-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-SOLIN-JJA-global_ref.nc\n", + " * var_key: SOLIN\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-SOLIN-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-SOLIN-JJA-global_test.nc\n", + " * var_key: SOLIN\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-SWCF-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-SWCF-ANN-global_ref.nc\n", + " * var_key: SWCF\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-SWCF-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-SWCF-ANN-global_test.nc\n", + " * var_key: SWCF\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-SWCF-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-SWCF-JJA-global_ref.nc\n", + " * var_key: SWCF\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-SWCF-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-SWCF-JJA-global_test.nc\n", + " * var_key: SWCF\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-ALBEDO_SRF-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-ALBEDO_SRF-ANN-global_ref.nc\n", + " * var_key: ALBEDO_SRF\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-ALBEDO_SRF-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-ALBEDO_SRF-ANN-global_test.nc\n", + " * var_key: ALBEDO_SRF\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-ALBEDO_SRF-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-ALBEDO_SRF-JJA-global_ref.nc\n", + " * var_key: ALBEDO_SRF\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-ALBEDO_SRF-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-ALBEDO_SRF-JJA-global_test.nc\n", + " * var_key: ALBEDO_SRF\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLDS-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLDS-ANN-global_ref.nc\n", + " * var_key: FLDS\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLDS-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLDS-ANN-global_test.nc\n", + " * var_key: FLDS\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLDS-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLDS-JJA-global_ref.nc\n", + " * var_key: FLDS\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLDS-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLDS-JJA-global_test.nc\n", + " * var_key: FLDS\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLDSC-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLDSC-ANN-global_ref.nc\n", + " * var_key: FLDSC\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLDSC-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLDSC-ANN-global_test.nc\n", + " * var_key: FLDSC\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLDSC-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLDSC-JJA-global_ref.nc\n", + " * var_key: FLDSC\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLDSC-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLDSC-JJA-global_test.nc\n", + " * var_key: FLDSC\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLNS-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLNS-ANN-global_ref.nc\n", + " * var_key: FLNS\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLNS-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLNS-ANN-global_test.nc\n", + " * var_key: FLNS\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLNS-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLNS-JJA-global_ref.nc\n", + " * var_key: FLNS\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLNS-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLNS-JJA-global_test.nc\n", + " * var_key: FLNS\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLNSC-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLNSC-ANN-global_ref.nc\n", + " * var_key: FLNSC\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLNSC-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLNSC-ANN-global_test.nc\n", + " * var_key: FLNSC\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLNSC-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLNSC-JJA-global_ref.nc\n", + " * var_key: FLNSC\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLNSC-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLNSC-JJA-global_test.nc\n", + " * var_key: FLNSC\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSDS-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSDS-ANN-global_ref.nc\n", + " * var_key: FSDS\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSDS-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSDS-ANN-global_test.nc\n", + " * var_key: FSDS\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSDS-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSDS-JJA-global_ref.nc\n", + " * var_key: FSDS\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSDS-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSDS-JJA-global_test.nc\n", + " * var_key: FSDS\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSDSC-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSDSC-ANN-global_ref.nc\n", + " * var_key: FSDSC\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSDSC-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSDSC-ANN-global_test.nc\n", + " * var_key: FSDSC\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSDSC-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSDSC-JJA-global_ref.nc\n", + " * var_key: FSDSC\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSDSC-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSDSC-JJA-global_test.nc\n", + " * var_key: FSDSC\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSNS-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSNS-ANN-global_ref.nc\n", + " * var_key: FSNS\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSNS-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSNS-ANN-global_test.nc\n", + " * var_key: FSNS\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSNS-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSNS-JJA-global_ref.nc\n", + " * var_key: FSNS\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSNS-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSNS-JJA-global_test.nc\n", + " * var_key: FSNS\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSNSC-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSNSC-ANN-global_ref.nc\n", + " * var_key: FSNSC\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSNSC-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSNSC-ANN-global_test.nc\n", + " * var_key: FSNSC\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSNSC-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSNSC-JJA-global_ref.nc\n", + " * var_key: FSNSC\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSNSC-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSNSC-JJA-global_test.nc\n", + " * var_key: FSNSC\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-LWCFSRF-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-LWCFSRF-ANN-global_ref.nc\n", + " * var_key: LWCFSRF\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-LWCFSRF-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-LWCFSRF-ANN-global_test.nc\n", + " * var_key: LWCFSRF\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-LWCFSRF-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-LWCFSRF-JJA-global_ref.nc\n", + " * var_key: LWCFSRF\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-LWCFSRF-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-LWCFSRF-JJA-global_test.nc\n", + " * var_key: LWCFSRF\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-NETCF_SRF-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-NETCF_SRF-ANN-global_ref.nc\n", + " * var_key: NETCF_SRF\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-NETCF_SRF-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-NETCF_SRF-ANN-global_test.nc\n", + " * var_key: NETCF_SRF\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-NETCF_SRF-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-NETCF_SRF-JJA-global_ref.nc\n", + " * var_key: NETCF_SRF\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-NETCF_SRF-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-NETCF_SRF-JJA-global_test.nc\n", + " * var_key: NETCF_SRF\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-SWCFSRF-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-SWCFSRF-ANN-global_ref.nc\n", + " * var_key: SWCFSRF\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-SWCFSRF-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-SWCFSRF-ANN-global_test.nc\n", + " * var_key: SWCFSRF\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-SWCFSRF-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-SWCFSRF-JJA-global_ref.nc\n", + " * var_key: SWCFSRF\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-SWCFSRF-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-SWCFSRF-JJA-global_test.nc\n", + " * var_key: SWCFSRF\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/COREv2_Flux/COREv2_Flux-PminusE-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/COREv2_Flux/COREv2_Flux-PminusE-ANN-global_ref.nc\n", + " * var_key: PminusE\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/COREv2_Flux/COREv2_Flux-PminusE-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/COREv2_Flux/COREv2_Flux-PminusE-ANN-global_test.nc\n", + " * var_key: PminusE\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/COREv2_Flux/COREv2_Flux-PminusE-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/COREv2_Flux/COREv2_Flux-PminusE-JJA-global_ref.nc\n", + " * var_key: PminusE\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/COREv2_Flux/COREv2_Flux-PminusE-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/COREv2_Flux/COREv2_Flux-PminusE-JJA-global_test.nc\n", + " * var_key: PminusE\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CRU_IPCC/CRU-TREFHT-ANN-land_60S90N_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/CRU_IPCC/CRU-TREFHT-ANN-land_60S90N_ref.nc\n", + " * var_key: TREFHT\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CRU_IPCC/CRU-TREFHT-ANN-land_60S90N_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/CRU_IPCC/CRU-TREFHT-ANN-land_60S90N_test.nc\n", + " * var_key: TREFHT\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CRU_IPCC/CRU-TREFHT-JJA-land_60S90N_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/CRU_IPCC/CRU-TREFHT-JJA-land_60S90N_ref.nc\n", + " * var_key: TREFHT\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CRU_IPCC/CRU-TREFHT-JJA-land_60S90N_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/CRU_IPCC/CRU-TREFHT-JJA-land_60S90N_test.nc\n", + " * var_key: TREFHT\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/Cloud Calipso/CALIPSOCOSP-CLDHGH_CAL-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/Cloud Calipso/CALIPSOCOSP-CLDHGH_CAL-ANN-global_ref.nc\n", + " * var_key: CLDHGH_CAL\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/Cloud Calipso/CALIPSOCOSP-CLDHGH_CAL-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/Cloud Calipso/CALIPSOCOSP-CLDHGH_CAL-ANN-global_test.nc\n", + " * var_key: CLDHGH_CAL\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/Cloud Calipso/CALIPSOCOSP-CLDHGH_CAL-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/Cloud Calipso/CALIPSOCOSP-CLDHGH_CAL-JJA-global_ref.nc\n", + " * var_key: CLDHGH_CAL\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/Cloud Calipso/CALIPSOCOSP-CLDHGH_CAL-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/Cloud Calipso/CALIPSOCOSP-CLDHGH_CAL-JJA-global_test.nc\n", + " * var_key: CLDHGH_CAL\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/Cloud Calipso/CALIPSOCOSP-CLDLOW_CAL-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/Cloud Calipso/CALIPSOCOSP-CLDLOW_CAL-ANN-global_ref.nc\n", + " * var_key: CLDLOW_CAL\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/Cloud Calipso/CALIPSOCOSP-CLDLOW_CAL-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/Cloud Calipso/CALIPSOCOSP-CLDLOW_CAL-ANN-global_test.nc\n", + " * var_key: CLDLOW_CAL\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/Cloud Calipso/CALIPSOCOSP-CLDLOW_CAL-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/Cloud Calipso/CALIPSOCOSP-CLDLOW_CAL-JJA-global_ref.nc\n", + " * var_key: CLDLOW_CAL\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/Cloud Calipso/CALIPSOCOSP-CLDLOW_CAL-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/Cloud Calipso/CALIPSOCOSP-CLDLOW_CAL-JJA-global_test.nc\n", + " * var_key: CLDLOW_CAL\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/Cloud Calipso/CALIPSOCOSP-CLDMED_CAL-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/Cloud Calipso/CALIPSOCOSP-CLDMED_CAL-ANN-global_ref.nc\n", + " * var_key: CLDMED_CAL\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/Cloud Calipso/CALIPSOCOSP-CLDMED_CAL-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/Cloud Calipso/CALIPSOCOSP-CLDMED_CAL-ANN-global_test.nc\n", + " * var_key: CLDMED_CAL\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/Cloud Calipso/CALIPSOCOSP-CLDMED_CAL-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/Cloud Calipso/CALIPSOCOSP-CLDMED_CAL-JJA-global_ref.nc\n", + " * var_key: CLDMED_CAL\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/Cloud Calipso/CALIPSOCOSP-CLDMED_CAL-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/Cloud Calipso/CALIPSOCOSP-CLDMED_CAL-JJA-global_test.nc\n", + " * var_key: CLDMED_CAL\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/Cloud Calipso/CALIPSOCOSP-CLDTOT_CAL-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/Cloud Calipso/CALIPSOCOSP-CLDTOT_CAL-ANN-global_ref.nc\n", + " * var_key: CLDTOT_CAL\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/Cloud Calipso/CALIPSOCOSP-CLDTOT_CAL-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/Cloud Calipso/CALIPSOCOSP-CLDTOT_CAL-ANN-global_test.nc\n", + " * var_key: CLDTOT_CAL\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/Cloud Calipso/CALIPSOCOSP-CLDTOT_CAL-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/Cloud Calipso/CALIPSOCOSP-CLDTOT_CAL-JJA-global_ref.nc\n", + " * var_key: CLDTOT_CAL\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/Cloud Calipso/CALIPSOCOSP-CLDTOT_CAL-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/Cloud Calipso/CALIPSOCOSP-CLDTOT_CAL-JJA-global_test.nc\n", + " * var_key: CLDTOT_CAL\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/Cloud ISCCP/ISCCPCOSP-CLDTOT_TAU1.3_9.4_ISCCP-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/Cloud ISCCP/ISCCPCOSP-CLDTOT_TAU1.3_9.4_ISCCP-ANN-global_ref.nc\n", + " * var_key: CLDTOT_TAU1.3_9.4_ISCCP\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/Cloud ISCCP/ISCCPCOSP-CLDTOT_TAU1.3_9.4_ISCCP-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/Cloud ISCCP/ISCCPCOSP-CLDTOT_TAU1.3_9.4_ISCCP-ANN-global_test.nc\n", + " * var_key: CLDTOT_TAU1.3_9.4_ISCCP\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/Cloud ISCCP/ISCCPCOSP-CLDTOT_TAU1.3_9.4_ISCCP-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/Cloud ISCCP/ISCCPCOSP-CLDTOT_TAU1.3_9.4_ISCCP-JJA-global_ref.nc\n", + " * var_key: CLDTOT_TAU1.3_9.4_ISCCP\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/Cloud ISCCP/ISCCPCOSP-CLDTOT_TAU1.3_9.4_ISCCP-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/Cloud ISCCP/ISCCPCOSP-CLDTOT_TAU1.3_9.4_ISCCP-JJA-global_test.nc\n", + " * var_key: CLDTOT_TAU1.3_9.4_ISCCP\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/Cloud ISCCP/ISCCPCOSP-CLDTOT_TAU1.3_ISCCP-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/Cloud ISCCP/ISCCPCOSP-CLDTOT_TAU1.3_ISCCP-ANN-global_ref.nc\n", + " * var_key: CLDTOT_TAU1.3_ISCCP\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/Cloud ISCCP/ISCCPCOSP-CLDTOT_TAU1.3_ISCCP-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/Cloud ISCCP/ISCCPCOSP-CLDTOT_TAU1.3_ISCCP-ANN-global_test.nc\n", + " * var_key: CLDTOT_TAU1.3_ISCCP\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/Cloud ISCCP/ISCCPCOSP-CLDTOT_TAU1.3_ISCCP-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/Cloud ISCCP/ISCCPCOSP-CLDTOT_TAU1.3_ISCCP-JJA-global_ref.nc\n", + " * var_key: CLDTOT_TAU1.3_ISCCP\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/Cloud ISCCP/ISCCPCOSP-CLDTOT_TAU1.3_ISCCP-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/Cloud ISCCP/ISCCPCOSP-CLDTOT_TAU1.3_ISCCP-JJA-global_test.nc\n", + " * var_key: CLDTOT_TAU1.3_ISCCP\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/Cloud ISCCP/ISCCPCOSP-CLDTOT_TAU9.4_ISCCP-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/Cloud ISCCP/ISCCPCOSP-CLDTOT_TAU9.4_ISCCP-ANN-global_ref.nc\n", + " * var_key: CLDTOT_TAU9.4_ISCCP\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/Cloud ISCCP/ISCCPCOSP-CLDTOT_TAU9.4_ISCCP-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/Cloud ISCCP/ISCCPCOSP-CLDTOT_TAU9.4_ISCCP-ANN-global_test.nc\n", + " * var_key: CLDTOT_TAU9.4_ISCCP\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/Cloud ISCCP/ISCCPCOSP-CLDTOT_TAU9.4_ISCCP-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/Cloud ISCCP/ISCCPCOSP-CLDTOT_TAU9.4_ISCCP-JJA-global_ref.nc\n", + " * var_key: CLDTOT_TAU9.4_ISCCP\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/Cloud ISCCP/ISCCPCOSP-CLDTOT_TAU9.4_ISCCP-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/Cloud ISCCP/ISCCPCOSP-CLDTOT_TAU9.4_ISCCP-JJA-global_test.nc\n", + " * var_key: CLDTOT_TAU9.4_ISCCP\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/Cloud MISR/MISRCOSP-CLDLOW_TAU1.3_9.4_MISR-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/Cloud MISR/MISRCOSP-CLDLOW_TAU1.3_9.4_MISR-ANN-global_ref.nc\n", + " * var_key: CLDLOW_TAU1.3_9.4_MISR\n", + " \n", + "Not equal to tolerance rtol=0.0001, atol=0\n", + "\n", + "Mismatched elements: 39151 / 64800 (60.4%)\n", + "Max absolute difference: 22.411116\n", + "Max relative difference: 0.6832267\n", + " x: array([[nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],...\n", + " y: array([[nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],...\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/Cloud MISR/MISRCOSP-CLDLOW_TAU1.3_9.4_MISR-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/Cloud MISR/MISRCOSP-CLDLOW_TAU1.3_9.4_MISR-ANN-global_test.nc\n", + " * var_key: CLDLOW_TAU1.3_9.4_MISR\n", + " \n", + "Not equal to tolerance rtol=0.0001, atol=0\n", + "\n", + "Mismatched elements: 8 / 64800 (0.0123%)\n", + "Max absolute difference: 0.0970192\n", + "Max relative difference: 0.01244658\n", + " x: array([[ 0.056777, 0.056777, 0.056777, ..., 1.274017, 1.274017,\n", + " 1.274017],\n", + " [ 0.207892, 0.207774, 0.207536, ..., 1.675944, 1.676576,...\n", + " y: array([[ 0.056777, 0.056777, 0.056777, ..., 1.274017, 1.274017,\n", + " 1.274017],\n", + " [ 0.207892, 0.207774, 0.207536, ..., 1.675944, 1.676576,...\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/Cloud MISR/MISRCOSP-CLDLOW_TAU1.3_9.4_MISR-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/Cloud MISR/MISRCOSP-CLDLOW_TAU1.3_9.4_MISR-JJA-global_ref.nc\n", + " * var_key: CLDLOW_TAU1.3_9.4_MISR\n", + " \n", + "Not equal to tolerance rtol=0.0001, atol=0\n", + "\n", + "Mismatched elements: 32818 / 64800 (50.6%)\n", + "Max absolute difference: 45.429226\n", + "Max relative difference: 0.9708206\n", + " x: array([[nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],...\n", + " y: array([[nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],...\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/Cloud MISR/MISRCOSP-CLDLOW_TAU1.3_9.4_MISR-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/Cloud MISR/MISRCOSP-CLDLOW_TAU1.3_9.4_MISR-JJA-global_test.nc\n", + " * var_key: CLDLOW_TAU1.3_9.4_MISR\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/Cloud MISR/MISRCOSP-CLDLOW_TAU1.3_MISR-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/Cloud MISR/MISRCOSP-CLDLOW_TAU1.3_MISR-ANN-global_ref.nc\n", + " * var_key: CLDLOW_TAU1.3_MISR\n", + " \n", + "Not equal to tolerance rtol=0.0001, atol=0\n", + "\n", + "Mismatched elements: 39226 / 64800 (60.5%)\n", + "Max absolute difference: 37.673122\n", + "Max relative difference: 0.62295455\n", + " x: array([[nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],...\n", + " y: array([[nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],...\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/Cloud MISR/MISRCOSP-CLDLOW_TAU1.3_MISR-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/Cloud MISR/MISRCOSP-CLDLOW_TAU1.3_MISR-ANN-global_test.nc\n", + " * var_key: CLDLOW_TAU1.3_MISR\n", + " \n", + "Not equal to tolerance rtol=0.0001, atol=0\n", + "\n", + "Mismatched elements: 7 / 64800 (0.0108%)\n", + "Max absolute difference: 0.0970192\n", + "Max relative difference: 0.00541773\n", + " x: array([[5.677656e-02, 5.677656e-02, 5.677656e-02, ..., 1.274017e+00,\n", + " 1.274017e+00, 1.274017e+00],\n", + " [2.078919e-01, 2.077735e-01, 2.075364e-01, ..., 1.675944e+00,...\n", + " y: array([[5.677656e-02, 5.677656e-02, 5.677656e-02, ..., 1.274017e+00,\n", + " 1.274017e+00, 1.274017e+00],\n", + " [2.078919e-01, 2.077735e-01, 2.075364e-01, ..., 1.675944e+00,...\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/Cloud MISR/MISRCOSP-CLDLOW_TAU1.3_MISR-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/Cloud MISR/MISRCOSP-CLDLOW_TAU1.3_MISR-JJA-global_ref.nc\n", + " * var_key: CLDLOW_TAU1.3_MISR\n", + " \n", + "Not equal to tolerance rtol=0.0001, atol=0\n", + "\n", + "Mismatched elements: 34116 / 64800 (52.6%)\n", + "Max absolute difference: 67.89603\n", + "Max relative difference: 0.9691263\n", + " x: array([[nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],...\n", + " y: array([[nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],...\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/Cloud MISR/MISRCOSP-CLDLOW_TAU1.3_MISR-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/Cloud MISR/MISRCOSP-CLDLOW_TAU1.3_MISR-JJA-global_test.nc\n", + " * var_key: CLDLOW_TAU1.3_MISR\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/Cloud MISR/MISRCOSP-CLDLOW_TAU9.4_MISR-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/Cloud MISR/MISRCOSP-CLDLOW_TAU9.4_MISR-ANN-global_ref.nc\n", + " * var_key: CLDLOW_TAU9.4_MISR\n", + " \n", + "Not equal to tolerance rtol=0.0001, atol=0\n", + "\n", + "Mismatched elements: 38772 / 64800 (59.8%)\n", + "Max absolute difference: 31.085188\n", + "Max relative difference: 0.96666664\n", + " x: array([[nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],...\n", + " y: array([[nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],...\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/Cloud MISR/MISRCOSP-CLDLOW_TAU9.4_MISR-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/Cloud MISR/MISRCOSP-CLDLOW_TAU9.4_MISR-ANN-global_test.nc\n", + " * var_key: CLDLOW_TAU9.4_MISR\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/Cloud MISR/MISRCOSP-CLDLOW_TAU9.4_MISR-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/Cloud MISR/MISRCOSP-CLDLOW_TAU9.4_MISR-JJA-global_ref.nc\n", + " * var_key: CLDLOW_TAU9.4_MISR\n", + " \n", + "Not equal to tolerance rtol=0.0001, atol=0\n", + "\n", + "Mismatched elements: 32169 / 64800 (49.6%)\n", + "Max absolute difference: 63.126827\n", + "Max relative difference: 1.\n", + " x: array([[nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],...\n", + " y: array([[nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],...\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/Cloud MISR/MISRCOSP-CLDLOW_TAU9.4_MISR-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/Cloud MISR/MISRCOSP-CLDLOW_TAU9.4_MISR-JJA-global_test.nc\n", + " * var_key: CLDLOW_TAU9.4_MISR\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/Cloud MISR/MISRCOSP-CLDTOT_TAU1.3_9.4_MISR-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/Cloud MISR/MISRCOSP-CLDTOT_TAU1.3_9.4_MISR-ANN-global_ref.nc\n", + " * var_key: CLDTOT_TAU1.3_9.4_MISR\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/Cloud MISR/MISRCOSP-CLDTOT_TAU1.3_9.4_MISR-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/Cloud MISR/MISRCOSP-CLDTOT_TAU1.3_9.4_MISR-ANN-global_test.nc\n", + " * var_key: CLDTOT_TAU1.3_9.4_MISR\n", + " \n", + "Not equal to tolerance rtol=0.0001, atol=0\n", + "\n", + "Mismatched elements: 7 / 64800 (0.0108%)\n", + "Max absolute difference: 0.0970192\n", + "Max relative difference: 0.00456364\n", + " x: array([[ 4.128816, 4.128816, 4.128816, ..., 7.77411 , 7.77411 ,\n", + " 7.77411 ],\n", + " [ 4.164101, 4.164073, 4.164018, ..., 7.538528, 7.538158,...\n", + " y: array([[ 4.128816, 4.128816, 4.128816, ..., 7.774109, 7.774109,\n", + " 7.774109],\n", + " [ 4.164101, 4.164073, 4.164018, ..., 7.538528, 7.538157,...\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/Cloud MISR/MISRCOSP-CLDTOT_TAU1.3_9.4_MISR-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/Cloud MISR/MISRCOSP-CLDTOT_TAU1.3_9.4_MISR-JJA-global_ref.nc\n", + " * var_key: CLDTOT_TAU1.3_9.4_MISR\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/Cloud MISR/MISRCOSP-CLDTOT_TAU1.3_9.4_MISR-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/Cloud MISR/MISRCOSP-CLDTOT_TAU1.3_9.4_MISR-JJA-global_test.nc\n", + " * var_key: CLDTOT_TAU1.3_9.4_MISR\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/Cloud MISR/MISRCOSP-CLDTOT_TAU1.3_MISR-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/Cloud MISR/MISRCOSP-CLDTOT_TAU1.3_MISR-ANN-global_ref.nc\n", + " * var_key: CLDTOT_TAU1.3_MISR\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/Cloud MISR/MISRCOSP-CLDTOT_TAU1.3_MISR-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/Cloud MISR/MISRCOSP-CLDTOT_TAU1.3_MISR-ANN-global_test.nc\n", + " * var_key: CLDTOT_TAU1.3_MISR\n", + " \n", + "Not equal to tolerance rtol=0.0001, atol=0\n", + "\n", + "Mismatched elements: 7 / 64800 (0.0108%)\n", + "Max absolute difference: 0.09701157\n", + "Max relative difference: 0.00250626\n", + " x: array([[ 4.134768, 4.134768, 4.134768, ..., 7.843707, 7.843707,\n", + " 7.843707],\n", + " [ 4.183939, 4.1839 , 4.183824, ..., 7.598535, 7.598149,...\n", + " y: array([[ 4.134768, 4.134768, 4.134768, ..., 7.843706, 7.843706,\n", + " 7.843706],\n", + " [ 4.183939, 4.1839 , 4.183823, ..., 7.598534, 7.598149,...\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/Cloud MISR/MISRCOSP-CLDTOT_TAU1.3_MISR-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/Cloud MISR/MISRCOSP-CLDTOT_TAU1.3_MISR-JJA-global_ref.nc\n", + " * var_key: CLDTOT_TAU1.3_MISR\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/Cloud MISR/MISRCOSP-CLDTOT_TAU1.3_MISR-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/Cloud MISR/MISRCOSP-CLDTOT_TAU1.3_MISR-JJA-global_test.nc\n", + " * var_key: CLDTOT_TAU1.3_MISR\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/Cloud MISR/MISRCOSP-CLDTOT_TAU9.4_MISR-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/Cloud MISR/MISRCOSP-CLDTOT_TAU9.4_MISR-ANN-global_ref.nc\n", + " * var_key: CLDTOT_TAU9.4_MISR\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/Cloud MISR/MISRCOSP-CLDTOT_TAU9.4_MISR-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/Cloud MISR/MISRCOSP-CLDTOT_TAU9.4_MISR-ANN-global_test.nc\n", + " * var_key: CLDTOT_TAU9.4_MISR\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/Cloud MISR/MISRCOSP-CLDTOT_TAU9.4_MISR-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/Cloud MISR/MISRCOSP-CLDTOT_TAU9.4_MISR-JJA-global_ref.nc\n", + " * var_key: CLDTOT_TAU9.4_MISR\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/Cloud MISR/MISRCOSP-CLDTOT_TAU9.4_MISR-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/Cloud MISR/MISRCOSP-CLDTOT_TAU9.4_MISR-JJA-global_test.nc\n", + " * var_key: CLDTOT_TAU9.4_MISR\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/Cloud MODIS/MODISCOSP-CLDHGH_TAU1.3_9.4_MODIS-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/Cloud MODIS/MODISCOSP-CLDHGH_TAU1.3_9.4_MODIS-ANN-global_ref.nc\n", + " * var_key: CLDHGH_TAU1.3_9.4_MODIS\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/Cloud MODIS/MODISCOSP-CLDHGH_TAU1.3_9.4_MODIS-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/Cloud MODIS/MODISCOSP-CLDHGH_TAU1.3_9.4_MODIS-ANN-global_test.nc\n", + " * var_key: CLDHGH_TAU1.3_9.4_MODIS\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/Cloud MODIS/MODISCOSP-CLDHGH_TAU1.3_9.4_MODIS-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/Cloud MODIS/MODISCOSP-CLDHGH_TAU1.3_9.4_MODIS-JJA-global_ref.nc\n", + " * var_key: CLDHGH_TAU1.3_9.4_MODIS\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/Cloud MODIS/MODISCOSP-CLDHGH_TAU1.3_9.4_MODIS-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/Cloud MODIS/MODISCOSP-CLDHGH_TAU1.3_9.4_MODIS-JJA-global_test.nc\n", + " * var_key: CLDHGH_TAU1.3_9.4_MODIS\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/Cloud MODIS/MODISCOSP-CLDHGH_TAU1.3_MODIS-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/Cloud MODIS/MODISCOSP-CLDHGH_TAU1.3_MODIS-ANN-global_ref.nc\n", + " * var_key: CLDHGH_TAU1.3_MODIS\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/Cloud MODIS/MODISCOSP-CLDHGH_TAU1.3_MODIS-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/Cloud MODIS/MODISCOSP-CLDHGH_TAU1.3_MODIS-ANN-global_test.nc\n", + " * var_key: CLDHGH_TAU1.3_MODIS\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/Cloud MODIS/MODISCOSP-CLDHGH_TAU1.3_MODIS-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/Cloud MODIS/MODISCOSP-CLDHGH_TAU1.3_MODIS-JJA-global_ref.nc\n", + " * var_key: CLDHGH_TAU1.3_MODIS\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/Cloud MODIS/MODISCOSP-CLDHGH_TAU1.3_MODIS-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/Cloud MODIS/MODISCOSP-CLDHGH_TAU1.3_MODIS-JJA-global_test.nc\n", + " * var_key: CLDHGH_TAU1.3_MODIS\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/Cloud MODIS/MODISCOSP-CLDHGH_TAU9.4_MODIS-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/Cloud MODIS/MODISCOSP-CLDHGH_TAU9.4_MODIS-ANN-global_ref.nc\n", + " * var_key: CLDHGH_TAU9.4_MODIS\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/Cloud MODIS/MODISCOSP-CLDHGH_TAU9.4_MODIS-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/Cloud MODIS/MODISCOSP-CLDHGH_TAU9.4_MODIS-ANN-global_test.nc\n", + " * var_key: CLDHGH_TAU9.4_MODIS\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/Cloud MODIS/MODISCOSP-CLDHGH_TAU9.4_MODIS-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/Cloud MODIS/MODISCOSP-CLDHGH_TAU9.4_MODIS-JJA-global_ref.nc\n", + " * var_key: CLDHGH_TAU9.4_MODIS\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/Cloud MODIS/MODISCOSP-CLDHGH_TAU9.4_MODIS-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/Cloud MODIS/MODISCOSP-CLDHGH_TAU9.4_MODIS-JJA-global_test.nc\n", + " * var_key: CLDHGH_TAU9.4_MODIS\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/Cloud MODIS/MODISCOSP-CLDTOT_TAU1.3_9.4_MODIS-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/Cloud MODIS/MODISCOSP-CLDTOT_TAU1.3_9.4_MODIS-ANN-global_ref.nc\n", + " * var_key: CLDTOT_TAU1.3_9.4_MODIS\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/Cloud MODIS/MODISCOSP-CLDTOT_TAU1.3_9.4_MODIS-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/Cloud MODIS/MODISCOSP-CLDTOT_TAU1.3_9.4_MODIS-ANN-global_test.nc\n", + " * var_key: CLDTOT_TAU1.3_9.4_MODIS\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/Cloud MODIS/MODISCOSP-CLDTOT_TAU1.3_9.4_MODIS-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/Cloud MODIS/MODISCOSP-CLDTOT_TAU1.3_9.4_MODIS-JJA-global_ref.nc\n", + " * var_key: CLDTOT_TAU1.3_9.4_MODIS\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/Cloud MODIS/MODISCOSP-CLDTOT_TAU1.3_9.4_MODIS-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/Cloud MODIS/MODISCOSP-CLDTOT_TAU1.3_9.4_MODIS-JJA-global_test.nc\n", + " * var_key: CLDTOT_TAU1.3_9.4_MODIS\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/Cloud MODIS/MODISCOSP-CLDTOT_TAU1.3_MODIS-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/Cloud MODIS/MODISCOSP-CLDTOT_TAU1.3_MODIS-ANN-global_ref.nc\n", + " * var_key: CLDTOT_TAU1.3_MODIS\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/Cloud MODIS/MODISCOSP-CLDTOT_TAU1.3_MODIS-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/Cloud MODIS/MODISCOSP-CLDTOT_TAU1.3_MODIS-ANN-global_test.nc\n", + " * var_key: CLDTOT_TAU1.3_MODIS\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/Cloud MODIS/MODISCOSP-CLDTOT_TAU1.3_MODIS-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/Cloud MODIS/MODISCOSP-CLDTOT_TAU1.3_MODIS-JJA-global_ref.nc\n", + " * var_key: CLDTOT_TAU1.3_MODIS\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/Cloud MODIS/MODISCOSP-CLDTOT_TAU1.3_MODIS-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/Cloud MODIS/MODISCOSP-CLDTOT_TAU1.3_MODIS-JJA-global_test.nc\n", + " * var_key: CLDTOT_TAU1.3_MODIS\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/Cloud MODIS/MODISCOSP-CLDTOT_TAU9.4_MODIS-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/Cloud MODIS/MODISCOSP-CLDTOT_TAU9.4_MODIS-ANN-global_ref.nc\n", + " * var_key: CLDTOT_TAU9.4_MODIS\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/Cloud MODIS/MODISCOSP-CLDTOT_TAU9.4_MODIS-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/Cloud MODIS/MODISCOSP-CLDTOT_TAU9.4_MODIS-ANN-global_test.nc\n", + " * var_key: CLDTOT_TAU9.4_MODIS\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/Cloud MODIS/MODISCOSP-CLDTOT_TAU9.4_MODIS-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/Cloud MODIS/MODISCOSP-CLDTOT_TAU9.4_MODIS-JJA-global_ref.nc\n", + " * var_key: CLDTOT_TAU9.4_MODIS\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/Cloud MODIS/MODISCOSP-CLDTOT_TAU9.4_MODIS-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/Cloud MODIS/MODISCOSP-CLDTOT_TAU9.4_MODIS-JJA-global_test.nc\n", + " * var_key: CLDTOT_TAU9.4_MODIS\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/ERA5/ERA5-FLNS-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/ERA5/ERA5-FLNS-ANN-global_ref.nc\n", + " * var_key: FLNS\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/ERA5/ERA5-FLNS-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/ERA5/ERA5-FLNS-ANN-global_test.nc\n", + " * var_key: FLNS\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/ERA5/ERA5-FLNS-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/ERA5/ERA5-FLNS-JJA-global_ref.nc\n", + " * var_key: FLNS\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/ERA5/ERA5-FLNS-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/ERA5/ERA5-FLNS-JJA-global_test.nc\n", + " * var_key: FLNS\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/ERA5/ERA5-FSNS-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/ERA5/ERA5-FSNS-ANN-global_ref.nc\n", + " * var_key: FSNS\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/ERA5/ERA5-FSNS-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/ERA5/ERA5-FSNS-ANN-global_test.nc\n", + " * var_key: FSNS\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/ERA5/ERA5-FSNS-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/ERA5/ERA5-FSNS-JJA-global_ref.nc\n", + " * var_key: FSNS\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/ERA5/ERA5-FSNS-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/ERA5/ERA5-FSNS-JJA-global_test.nc\n", + " * var_key: FSNS\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/ERA5/ERA5-LHFLX-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/ERA5/ERA5-LHFLX-ANN-global_ref.nc\n", + " * var_key: LHFLX\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/ERA5/ERA5-LHFLX-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/ERA5/ERA5-LHFLX-ANN-global_test.nc\n", + " * var_key: LHFLX\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/ERA5/ERA5-LHFLX-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/ERA5/ERA5-LHFLX-JJA-global_ref.nc\n", + " * var_key: LHFLX\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/ERA5/ERA5-LHFLX-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/ERA5/ERA5-LHFLX-JJA-global_test.nc\n", + " * var_key: LHFLX\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/ERA5/ERA5-NET_FLUX_SRF-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/ERA5/ERA5-NET_FLUX_SRF-ANN-global_ref.nc\n", + " * var_key: NET_FLUX_SRF\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/ERA5/ERA5-NET_FLUX_SRF-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/ERA5/ERA5-NET_FLUX_SRF-ANN-global_test.nc\n", + " * var_key: NET_FLUX_SRF\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/ERA5/ERA5-NET_FLUX_SRF-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/ERA5/ERA5-NET_FLUX_SRF-JJA-global_ref.nc\n", + " * var_key: NET_FLUX_SRF\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/ERA5/ERA5-NET_FLUX_SRF-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/ERA5/ERA5-NET_FLUX_SRF-JJA-global_test.nc\n", + " * var_key: NET_FLUX_SRF\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/ERA5/ERA5-OMEGA-200-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/ERA5/ERA5-OMEGA-200-ANN-global_ref.nc\n", + " * var_key: OMEGA\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/ERA5/ERA5-OMEGA-200-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/ERA5/ERA5-OMEGA-200-ANN-global_test.nc\n", + " * var_key: OMEGA\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/ERA5/ERA5-OMEGA-200-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/ERA5/ERA5-OMEGA-200-JJA-global_ref.nc\n", + " * var_key: OMEGA\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/ERA5/ERA5-OMEGA-200-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/ERA5/ERA5-OMEGA-200-JJA-global_test.nc\n", + " * var_key: OMEGA\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/ERA5/ERA5-OMEGA-500-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/ERA5/ERA5-OMEGA-500-ANN-global_ref.nc\n", + " * var_key: OMEGA\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/ERA5/ERA5-OMEGA-500-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/ERA5/ERA5-OMEGA-500-ANN-global_test.nc\n", + " * var_key: OMEGA\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/ERA5/ERA5-OMEGA-500-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/ERA5/ERA5-OMEGA-500-JJA-global_ref.nc\n", + " * var_key: OMEGA\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/ERA5/ERA5-OMEGA-500-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/ERA5/ERA5-OMEGA-500-JJA-global_test.nc\n", + " * var_key: OMEGA\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/ERA5/ERA5-OMEGA-850-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/ERA5/ERA5-OMEGA-850-ANN-global_ref.nc\n", + " * var_key: OMEGA\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/ERA5/ERA5-OMEGA-850-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/ERA5/ERA5-OMEGA-850-ANN-global_test.nc\n", + " * var_key: OMEGA\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/ERA5/ERA5-OMEGA-850-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/ERA5/ERA5-OMEGA-850-JJA-global_ref.nc\n", + " * var_key: OMEGA\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/ERA5/ERA5-OMEGA-850-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/ERA5/ERA5-OMEGA-850-JJA-global_test.nc\n", + " * var_key: OMEGA\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/ERA5/ERA5-PRECT-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/ERA5/ERA5-PRECT-ANN-global_ref.nc\n", + " * var_key: PRECT\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/ERA5/ERA5-PRECT-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/ERA5/ERA5-PRECT-ANN-global_test.nc\n", + " * var_key: PRECT\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/ERA5/ERA5-PRECT-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/ERA5/ERA5-PRECT-JJA-global_ref.nc\n", + " * var_key: PRECT\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/ERA5/ERA5-PRECT-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/ERA5/ERA5-PRECT-JJA-global_test.nc\n", + " * var_key: PRECT\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/ERA5/ERA5-PSL-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/ERA5/ERA5-PSL-ANN-global_ref.nc\n", + " * var_key: PSL\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/ERA5/ERA5-PSL-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/ERA5/ERA5-PSL-ANN-global_test.nc\n", + " * var_key: PSL\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/ERA5/ERA5-PSL-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/ERA5/ERA5-PSL-JJA-global_ref.nc\n", + " * var_key: PSL\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/ERA5/ERA5-PSL-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/ERA5/ERA5-PSL-JJA-global_test.nc\n", + " * var_key: PSL\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/ERA5/ERA5-SHFLX-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/ERA5/ERA5-SHFLX-ANN-global_ref.nc\n", + " * var_key: SHFLX\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/ERA5/ERA5-SHFLX-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/ERA5/ERA5-SHFLX-ANN-global_test.nc\n", + " * var_key: SHFLX\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/ERA5/ERA5-SHFLX-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/ERA5/ERA5-SHFLX-JJA-global_ref.nc\n", + " * var_key: SHFLX\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/ERA5/ERA5-SHFLX-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/ERA5/ERA5-SHFLX-JJA-global_test.nc\n", + " * var_key: SHFLX\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/ERA5/ERA5-T-200-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/ERA5/ERA5-T-200-ANN-global_ref.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/ERA5/ERA5-T-200-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/ERA5/ERA5-T-200-ANN-global_test.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/ERA5/ERA5-T-200-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/ERA5/ERA5-T-200-JJA-global_ref.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/ERA5/ERA5-T-200-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/ERA5/ERA5-T-200-JJA-global_test.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/ERA5/ERA5-T-850-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/ERA5/ERA5-T-850-ANN-global_ref.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/ERA5/ERA5-T-850-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/ERA5/ERA5-T-850-ANN-global_test.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/ERA5/ERA5-T-850-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/ERA5/ERA5-T-850-JJA-global_ref.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/ERA5/ERA5-T-850-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/ERA5/ERA5-T-850-JJA-global_test.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/ERA5/ERA5-TAUXY-ANN-ocean_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/ERA5/ERA5-TAUXY-ANN-ocean_ref.nc\n", + " * var_key: TAUXY\n", + " \n", + "Not equal to tolerance rtol=0.0001, atol=0\n", + "\n", + "x and y nan location mismatch:\n", + " x: array([[nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],...\n", + " y: array([[nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],...\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/ERA5/ERA5-TAUXY-ANN-ocean_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/ERA5/ERA5-TAUXY-ANN-ocean_test.nc\n", + " * var_key: TAUXY\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/ERA5/ERA5-TAUXY-JJA-ocean_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/ERA5/ERA5-TAUXY-JJA-ocean_ref.nc\n", + " * var_key: TAUXY\n", + " \n", + "Not equal to tolerance rtol=0.0001, atol=0\n", + "\n", + "x and y nan location mismatch:\n", + " x: array([[nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],...\n", + " y: array([[nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],...\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/ERA5/ERA5-TAUXY-JJA-ocean_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/ERA5/ERA5-TAUXY-JJA-ocean_test.nc\n", + " * var_key: TAUXY\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/ERA5/ERA5-TMQ-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/ERA5/ERA5-TMQ-ANN-global_ref.nc\n", + " * var_key: TMQ\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/ERA5/ERA5-TMQ-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/ERA5/ERA5-TMQ-ANN-global_test.nc\n", + " * var_key: TMQ\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/ERA5/ERA5-TMQ-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/ERA5/ERA5-TMQ-JJA-global_ref.nc\n", + " * var_key: TMQ\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/ERA5/ERA5-TMQ-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/ERA5/ERA5-TMQ-JJA-global_test.nc\n", + " * var_key: TMQ\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/ERA5/ERA5-TREFHT-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/ERA5/ERA5-TREFHT-ANN-global_ref.nc\n", + " * var_key: TREFHT\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/ERA5/ERA5-TREFHT-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/ERA5/ERA5-TREFHT-ANN-global_test.nc\n", + " * var_key: TREFHT\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/ERA5/ERA5-TREFHT-ANN-land_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/ERA5/ERA5-TREFHT-ANN-land_ref.nc\n", + " * var_key: TREFHT\n", + " \n", + "Not equal to tolerance rtol=0.0001, atol=0\n", + "\n", + "x and y nan location mismatch:\n", + " x: array([[ nan, nan, nan, ..., nan, nan,\n", + " nan],\n", + " [ nan, nan, nan, ..., nan, nan,...\n", + " y: array([[-45.434464, -45.434464, -45.434464, ..., -45.434464, -45.434464,\n", + " -45.434464],\n", + " [-45.000122, -44.998978, -44.99788 , ..., -45.001938, -45.001343,...\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/ERA5/ERA5-TREFHT-ANN-land_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/ERA5/ERA5-TREFHT-ANN-land_test.nc\n", + " * var_key: TREFHT\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/ERA5/ERA5-TREFHT-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/ERA5/ERA5-TREFHT-JJA-global_ref.nc\n", + " * var_key: TREFHT\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/ERA5/ERA5-TREFHT-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/ERA5/ERA5-TREFHT-JJA-global_test.nc\n", + " * var_key: TREFHT\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/ERA5/ERA5-TREFHT-JJA-land_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/ERA5/ERA5-TREFHT-JJA-land_ref.nc\n", + " * var_key: TREFHT\n", + " \n", + "Not equal to tolerance rtol=0.0001, atol=0\n", + "\n", + "x and y nan location mismatch:\n", + " x: array([[ nan, nan, nan, ..., nan, nan,\n", + " nan],\n", + " [ nan, nan, nan, ..., nan, nan,...\n", + " y: array([[-53.867355, -53.867355, -53.867355, ..., -53.867355, -53.867355,\n", + " -53.867355],\n", + " [-53.28177 , -53.27997 , -53.27826 , ..., -53.284897, -53.28383 ,...\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/ERA5/ERA5-TREFHT-JJA-land_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/ERA5/ERA5-TREFHT-JJA-land_test.nc\n", + " * var_key: TREFHT\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/ERA5/ERA5-U-200-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/ERA5/ERA5-U-200-ANN-global_ref.nc\n", + " * var_key: U\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/ERA5/ERA5-U-200-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/ERA5/ERA5-U-200-ANN-global_test.nc\n", + " * var_key: U\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/ERA5/ERA5-U-200-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/ERA5/ERA5-U-200-JJA-global_ref.nc\n", + " * var_key: U\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/ERA5/ERA5-U-200-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/ERA5/ERA5-U-200-JJA-global_test.nc\n", + " * var_key: U\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/ERA5/ERA5-U-850-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/ERA5/ERA5-U-850-ANN-global_ref.nc\n", + " * var_key: U\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/ERA5/ERA5-U-850-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/ERA5/ERA5-U-850-ANN-global_test.nc\n", + " * var_key: U\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/ERA5/ERA5-U-850-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/ERA5/ERA5-U-850-JJA-global_ref.nc\n", + " * var_key: U\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/ERA5/ERA5-U-850-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/ERA5/ERA5-U-850-JJA-global_test.nc\n", + " * var_key: U\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/ERA5/ERA5-Z3-500-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/ERA5/ERA5-Z3-500-ANN-global_ref.nc\n", + " * var_key: Z3\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/ERA5/ERA5-Z3-500-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/ERA5/ERA5-Z3-500-ANN-global_test.nc\n", + " * var_key: Z3\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/ERA5/ERA5-Z3-500-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/ERA5/ERA5-Z3-500-JJA-global_ref.nc\n", + " * var_key: Z3\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/ERA5/ERA5-Z3-500-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/ERA5/ERA5-Z3-500-JJA-global_test.nc\n", + " * var_key: Z3\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/ERA5/ERA5_ext-QREFHT-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/ERA5/ERA5_ext-QREFHT-ANN-global_ref.nc\n", + " * var_key: QREFHT\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/ERA5/ERA5_ext-QREFHT-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/ERA5/ERA5_ext-QREFHT-ANN-global_test.nc\n", + " * var_key: QREFHT\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/ERA5/ERA5_ext-QREFHT-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/ERA5/ERA5_ext-QREFHT-JJA-global_ref.nc\n", + " * var_key: QREFHT\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/ERA5/ERA5_ext-QREFHT-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/ERA5/ERA5_ext-QREFHT-JJA-global_test.nc\n", + " * var_key: QREFHT\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/ERA5/ERA5_ext-U10-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/ERA5/ERA5_ext-U10-ANN-global_test.nc\n", + " * var_key: U10\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/ERA5/ERA5_ext-U10-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/ERA5/ERA5_ext-U10-JJA-global_test.nc\n", + " * var_key: U10\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/GPCP_OAFLux/GPCP_OAFLux-PminusE-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/GPCP_OAFLux/GPCP_OAFLux-PminusE-ANN-global_ref.nc\n", + " * var_key: PminusE\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/GPCP_OAFLux/GPCP_OAFLux-PminusE-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/GPCP_OAFLux/GPCP_OAFLux-PminusE-ANN-global_test.nc\n", + " * var_key: PminusE\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/GPCP_OAFLux/GPCP_OAFLux-PminusE-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/GPCP_OAFLux/GPCP_OAFLux-PminusE-JJA-global_ref.nc\n", + " * var_key: PminusE\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/GPCP_OAFLux/GPCP_OAFLux-PminusE-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/GPCP_OAFLux/GPCP_OAFLux-PminusE-JJA-global_test.nc\n", + " * var_key: PminusE\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/GPCP_v2.3/GPCP_v2.3-PRECT-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/GPCP_v2.3/GPCP_v2.3-PRECT-ANN-global_ref.nc\n", + " * var_key: PRECT\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/GPCP_v2.3/GPCP_v2.3-PRECT-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/GPCP_v2.3/GPCP_v2.3-PRECT-ANN-global_test.nc\n", + " * var_key: PRECT\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/GPCP_v2.3/GPCP_v2.3-PRECT-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/GPCP_v2.3/GPCP_v2.3-PRECT-JJA-global_ref.nc\n", + " * var_key: PRECT\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/GPCP_v2.3/GPCP_v2.3-PRECT-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/GPCP_v2.3/GPCP_v2.3-PRECT-JJA-global_test.nc\n", + " * var_key: PRECT\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/GPCP_v3.2/GPCP_v3.2-PRECT-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/GPCP_v3.2/GPCP_v3.2-PRECT-ANN-global_ref.nc\n", + " * var_key: PRECT\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/GPCP_v3.2/GPCP_v3.2-PRECT-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/GPCP_v3.2/GPCP_v3.2-PRECT-ANN-global_test.nc\n", + " * var_key: PRECT\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/GPCP_v3.2/GPCP_v3.2-PRECT-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/GPCP_v3.2/GPCP_v3.2-PRECT-JJA-global_ref.nc\n", + " * var_key: PRECT\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/GPCP_v3.2/GPCP_v3.2-PRECT-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/GPCP_v3.2/GPCP_v3.2-PRECT-JJA-global_test.nc\n", + " * var_key: PRECT\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/MERRA2/MERRA2-FLNS-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/MERRA2/MERRA2-FLNS-ANN-global_ref.nc\n", + " * var_key: FLNS\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/MERRA2/MERRA2-FLNS-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/MERRA2/MERRA2-FLNS-ANN-global_test.nc\n", + " * var_key: FLNS\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/MERRA2/MERRA2-FLNS-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/MERRA2/MERRA2-FLNS-JJA-global_ref.nc\n", + " * var_key: FLNS\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/MERRA2/MERRA2-FLNS-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/MERRA2/MERRA2-FLNS-JJA-global_test.nc\n", + " * var_key: FLNS\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/MERRA2/MERRA2-FSNS-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/MERRA2/MERRA2-FSNS-ANN-global_ref.nc\n", + " * var_key: FSNS\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/MERRA2/MERRA2-FSNS-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/MERRA2/MERRA2-FSNS-ANN-global_test.nc\n", + " * var_key: FSNS\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/MERRA2/MERRA2-FSNS-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/MERRA2/MERRA2-FSNS-JJA-global_ref.nc\n", + " * var_key: FSNS\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/MERRA2/MERRA2-FSNS-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/MERRA2/MERRA2-FSNS-JJA-global_test.nc\n", + " * var_key: FSNS\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/MERRA2/MERRA2-LHFLX-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/MERRA2/MERRA2-LHFLX-ANN-global_ref.nc\n", + " * var_key: LHFLX\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/MERRA2/MERRA2-LHFLX-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/MERRA2/MERRA2-LHFLX-ANN-global_test.nc\n", + " * var_key: LHFLX\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/MERRA2/MERRA2-LHFLX-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/MERRA2/MERRA2-LHFLX-JJA-global_ref.nc\n", + " * var_key: LHFLX\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/MERRA2/MERRA2-LHFLX-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/MERRA2/MERRA2-LHFLX-JJA-global_test.nc\n", + " * var_key: LHFLX\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/MERRA2/MERRA2-NET_FLUX_SRF-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/MERRA2/MERRA2-NET_FLUX_SRF-ANN-global_ref.nc\n", + " * var_key: NET_FLUX_SRF\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/MERRA2/MERRA2-NET_FLUX_SRF-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/MERRA2/MERRA2-NET_FLUX_SRF-ANN-global_test.nc\n", + " * var_key: NET_FLUX_SRF\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/MERRA2/MERRA2-NET_FLUX_SRF-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/MERRA2/MERRA2-NET_FLUX_SRF-JJA-global_ref.nc\n", + " * var_key: NET_FLUX_SRF\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/MERRA2/MERRA2-NET_FLUX_SRF-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/MERRA2/MERRA2-NET_FLUX_SRF-JJA-global_test.nc\n", + " * var_key: NET_FLUX_SRF\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/MERRA2/MERRA2-OMEGA-200-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/MERRA2/MERRA2-OMEGA-200-ANN-global_ref.nc\n", + " * var_key: OMEGA\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/MERRA2/MERRA2-OMEGA-200-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/MERRA2/MERRA2-OMEGA-200-ANN-global_test.nc\n", + " * var_key: OMEGA\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/MERRA2/MERRA2-OMEGA-200-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/MERRA2/MERRA2-OMEGA-200-JJA-global_ref.nc\n", + " * var_key: OMEGA\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/MERRA2/MERRA2-OMEGA-200-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/MERRA2/MERRA2-OMEGA-200-JJA-global_test.nc\n", + " * var_key: OMEGA\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/MERRA2/MERRA2-OMEGA-500-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/MERRA2/MERRA2-OMEGA-500-ANN-global_ref.nc\n", + " * var_key: OMEGA\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/MERRA2/MERRA2-OMEGA-500-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/MERRA2/MERRA2-OMEGA-500-ANN-global_test.nc\n", + " * var_key: OMEGA\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/MERRA2/MERRA2-OMEGA-500-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/MERRA2/MERRA2-OMEGA-500-JJA-global_ref.nc\n", + " * var_key: OMEGA\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/MERRA2/MERRA2-OMEGA-500-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/MERRA2/MERRA2-OMEGA-500-JJA-global_test.nc\n", + " * var_key: OMEGA\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/MERRA2/MERRA2-OMEGA-850-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/MERRA2/MERRA2-OMEGA-850-ANN-global_ref.nc\n", + " * var_key: OMEGA\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/MERRA2/MERRA2-OMEGA-850-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/MERRA2/MERRA2-OMEGA-850-ANN-global_test.nc\n", + " * var_key: OMEGA\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/MERRA2/MERRA2-OMEGA-850-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/MERRA2/MERRA2-OMEGA-850-JJA-global_ref.nc\n", + " * var_key: OMEGA\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/MERRA2/MERRA2-OMEGA-850-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/MERRA2/MERRA2-OMEGA-850-JJA-global_test.nc\n", + " * var_key: OMEGA\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/MERRA2/MERRA2-PRECT-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/MERRA2/MERRA2-PRECT-ANN-global_ref.nc\n", + " * var_key: PRECT\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/MERRA2/MERRA2-PRECT-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/MERRA2/MERRA2-PRECT-ANN-global_test.nc\n", + " * var_key: PRECT\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/MERRA2/MERRA2-PRECT-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/MERRA2/MERRA2-PRECT-JJA-global_ref.nc\n", + " * var_key: PRECT\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/MERRA2/MERRA2-PRECT-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/MERRA2/MERRA2-PRECT-JJA-global_test.nc\n", + " * var_key: PRECT\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/MERRA2/MERRA2-PSL-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/MERRA2/MERRA2-PSL-ANN-global_ref.nc\n", + " * var_key: PSL\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/MERRA2/MERRA2-PSL-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/MERRA2/MERRA2-PSL-ANN-global_test.nc\n", + " * var_key: PSL\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/MERRA2/MERRA2-PSL-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/MERRA2/MERRA2-PSL-JJA-global_ref.nc\n", + " * var_key: PSL\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/MERRA2/MERRA2-PSL-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/MERRA2/MERRA2-PSL-JJA-global_test.nc\n", + " * var_key: PSL\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/MERRA2/MERRA2-SHFLX-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/MERRA2/MERRA2-SHFLX-ANN-global_ref.nc\n", + " * var_key: SHFLX\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/MERRA2/MERRA2-SHFLX-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/MERRA2/MERRA2-SHFLX-ANN-global_test.nc\n", + " * var_key: SHFLX\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/MERRA2/MERRA2-SHFLX-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/MERRA2/MERRA2-SHFLX-JJA-global_ref.nc\n", + " * var_key: SHFLX\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/MERRA2/MERRA2-SHFLX-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/MERRA2/MERRA2-SHFLX-JJA-global_test.nc\n", + " * var_key: SHFLX\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/MERRA2/MERRA2-T-200-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/MERRA2/MERRA2-T-200-ANN-global_ref.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/MERRA2/MERRA2-T-200-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/MERRA2/MERRA2-T-200-ANN-global_test.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/MERRA2/MERRA2-T-200-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/MERRA2/MERRA2-T-200-JJA-global_ref.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/MERRA2/MERRA2-T-200-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/MERRA2/MERRA2-T-200-JJA-global_test.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/MERRA2/MERRA2-T-850-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/MERRA2/MERRA2-T-850-ANN-global_ref.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/MERRA2/MERRA2-T-850-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/MERRA2/MERRA2-T-850-ANN-global_test.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/MERRA2/MERRA2-T-850-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/MERRA2/MERRA2-T-850-JJA-global_ref.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/MERRA2/MERRA2-T-850-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/MERRA2/MERRA2-T-850-JJA-global_test.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/MERRA2/MERRA2-TAUXY-ANN-ocean_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/MERRA2/MERRA2-TAUXY-ANN-ocean_ref.nc\n", + " * var_key: TAUXY\n", + " \n", + "Not equal to tolerance rtol=0.0001, atol=0\n", + "\n", + "x and y nan location mismatch:\n", + " x: array([[nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],...\n", + " y: array([[nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],...\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/MERRA2/MERRA2-TAUXY-ANN-ocean_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/MERRA2/MERRA2-TAUXY-ANN-ocean_test.nc\n", + " * var_key: TAUXY\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/MERRA2/MERRA2-TAUXY-JJA-ocean_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/MERRA2/MERRA2-TAUXY-JJA-ocean_ref.nc\n", + " * var_key: TAUXY\n", + " \n", + "Not equal to tolerance rtol=0.0001, atol=0\n", + "\n", + "x and y nan location mismatch:\n", + " x: array([[nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],...\n", + " y: array([[nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],\n", + " [nan, nan, nan, ..., nan, nan, nan],...\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/MERRA2/MERRA2-TAUXY-JJA-ocean_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/MERRA2/MERRA2-TAUXY-JJA-ocean_test.nc\n", + " * var_key: TAUXY\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/MERRA2/MERRA2-TMQ-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/MERRA2/MERRA2-TMQ-ANN-global_ref.nc\n", + " * var_key: TMQ\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/MERRA2/MERRA2-TMQ-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/MERRA2/MERRA2-TMQ-ANN-global_test.nc\n", + " * var_key: TMQ\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/MERRA2/MERRA2-TMQ-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/MERRA2/MERRA2-TMQ-JJA-global_ref.nc\n", + " * var_key: TMQ\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/MERRA2/MERRA2-TMQ-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/MERRA2/MERRA2-TMQ-JJA-global_test.nc\n", + " * var_key: TMQ\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/MERRA2/MERRA2-TREFHT-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/MERRA2/MERRA2-TREFHT-ANN-global_ref.nc\n", + " * var_key: TREFHT\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/MERRA2/MERRA2-TREFHT-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/MERRA2/MERRA2-TREFHT-ANN-global_test.nc\n", + " * var_key: TREFHT\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/MERRA2/MERRA2-TREFHT-ANN-land_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/MERRA2/MERRA2-TREFHT-ANN-land_ref.nc\n", + " * var_key: TREFHT\n", + " \n", + "Not equal to tolerance rtol=0.0001, atol=0\n", + "\n", + "x and y nan location mismatch:\n", + " x: array([[ nan, nan, nan, ..., nan, nan,\n", + " nan],\n", + " [ nan, -49.372787, -49.357605, ..., -49.43271 , -49.417847,...\n", + " y: array([[-49.840927, -49.840927, -49.840927, ..., -49.840927, -49.840927,\n", + " -49.840927],\n", + " [-49.387894, -49.372787, -49.357605, ..., -49.43271 , -49.417847,...\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/MERRA2/MERRA2-TREFHT-ANN-land_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/MERRA2/MERRA2-TREFHT-ANN-land_test.nc\n", + " * var_key: TREFHT\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/MERRA2/MERRA2-TREFHT-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/MERRA2/MERRA2-TREFHT-JJA-global_ref.nc\n", + " * var_key: TREFHT\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/MERRA2/MERRA2-TREFHT-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/MERRA2/MERRA2-TREFHT-JJA-global_test.nc\n", + " * var_key: TREFHT\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/MERRA2/MERRA2-TREFHT-JJA-land_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/MERRA2/MERRA2-TREFHT-JJA-land_ref.nc\n", + " * var_key: TREFHT\n", + " \n", + "Not equal to tolerance rtol=0.0001, atol=0\n", + "\n", + "x and y nan location mismatch:\n", + " x: array([[ nan, nan, nan, ..., nan, nan,\n", + " nan],\n", + " [ nan, -59.740402, -59.71486 , ..., -59.841125, -59.816147,...\n", + " y: array([[-60.34648 , -60.34648 , -60.34648 , ..., -60.34648 , -60.34648 ,\n", + " -60.34648 ],\n", + " [-59.765793, -59.740402, -59.71486 , ..., -59.841125, -59.816147,...\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/MERRA2/MERRA2-TREFHT-JJA-land_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/MERRA2/MERRA2-TREFHT-JJA-land_test.nc\n", + " * var_key: TREFHT\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/MERRA2/MERRA2-TREFMNAV-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/MERRA2/MERRA2-TREFMNAV-ANN-global_ref.nc\n", + " * var_key: TREFMNAV\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/MERRA2/MERRA2-TREFMNAV-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/MERRA2/MERRA2-TREFMNAV-ANN-global_test.nc\n", + " * var_key: TREFMNAV\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/MERRA2/MERRA2-TREFMNAV-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/MERRA2/MERRA2-TREFMNAV-JJA-global_ref.nc\n", + " * var_key: TREFMNAV\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/MERRA2/MERRA2-TREFMNAV-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/MERRA2/MERRA2-TREFMNAV-JJA-global_test.nc\n", + " * var_key: TREFMNAV\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/MERRA2/MERRA2-TREFMXAV-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/MERRA2/MERRA2-TREFMXAV-ANN-global_ref.nc\n", + " * var_key: TREFMXAV\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/MERRA2/MERRA2-TREFMXAV-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/MERRA2/MERRA2-TREFMXAV-ANN-global_test.nc\n", + " * var_key: TREFMXAV\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/MERRA2/MERRA2-TREFMXAV-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/MERRA2/MERRA2-TREFMXAV-JJA-global_ref.nc\n", + " * var_key: TREFMXAV\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/MERRA2/MERRA2-TREFMXAV-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/MERRA2/MERRA2-TREFMXAV-JJA-global_test.nc\n", + " * var_key: TREFMXAV\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/MERRA2/MERRA2-TREF_range-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/MERRA2/MERRA2-TREF_range-ANN-global_ref.nc\n", + " * var_key: TREF_range\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/MERRA2/MERRA2-TREF_range-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/MERRA2/MERRA2-TREF_range-ANN-global_test.nc\n", + " * var_key: TREF_range\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/MERRA2/MERRA2-TREF_range-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/MERRA2/MERRA2-TREF_range-JJA-global_ref.nc\n", + " * var_key: TREF_range\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/MERRA2/MERRA2-TREF_range-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/MERRA2/MERRA2-TREF_range-JJA-global_test.nc\n", + " * var_key: TREF_range\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/MERRA2/MERRA2-U-200-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/MERRA2/MERRA2-U-200-ANN-global_ref.nc\n", + " * var_key: U\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/MERRA2/MERRA2-U-200-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/MERRA2/MERRA2-U-200-ANN-global_test.nc\n", + " * var_key: U\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/MERRA2/MERRA2-U-200-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/MERRA2/MERRA2-U-200-JJA-global_ref.nc\n", + " * var_key: U\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/MERRA2/MERRA2-U-200-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/MERRA2/MERRA2-U-200-JJA-global_test.nc\n", + " * var_key: U\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/MERRA2/MERRA2-U-850-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/MERRA2/MERRA2-U-850-ANN-global_ref.nc\n", + " * var_key: U\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/MERRA2/MERRA2-U-850-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/MERRA2/MERRA2-U-850-ANN-global_test.nc\n", + " * var_key: U\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/MERRA2/MERRA2-U-850-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/MERRA2/MERRA2-U-850-JJA-global_ref.nc\n", + " * var_key: U\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/MERRA2/MERRA2-U-850-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/MERRA2/MERRA2-U-850-JJA-global_test.nc\n", + " * var_key: U\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/MERRA2/MERRA2-Z3-500-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/MERRA2/MERRA2-Z3-500-ANN-global_ref.nc\n", + " * var_key: Z3\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/MERRA2/MERRA2-Z3-500-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/MERRA2/MERRA2-Z3-500-ANN-global_test.nc\n", + " * var_key: Z3\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/MERRA2/MERRA2-Z3-500-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/MERRA2/MERRA2-Z3-500-JJA-global_ref.nc\n", + " * var_key: Z3\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/MERRA2/MERRA2-Z3-500-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/MERRA2/MERRA2-Z3-500-JJA-global_test.nc\n", + " * var_key: Z3\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/OMI-MLS/OMI-MLS-TCO-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/OMI-MLS/OMI-MLS-TCO-ANN-global_ref.nc\n", + " * var_key: TCO\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/OMI-MLS/OMI-MLS-TCO-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/OMI-MLS/OMI-MLS-TCO-ANN-global_test.nc\n", + " * var_key: TCO\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/OMI-MLS/OMI-MLS-TCO-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/OMI-MLS/OMI-MLS-TCO-JJA-global_ref.nc\n", + " * var_key: TCO\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/OMI-MLS/OMI-MLS-TCO-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/OMI-MLS/OMI-MLS-TCO-JJA-global_test.nc\n", + " * var_key: TCO\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/SST_CL_HadISST/HadISST_CL-SST-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/SST_CL_HadISST/HadISST_CL-SST-ANN-global_ref.nc\n", + " * var_key: SST\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/SST_CL_HadISST/HadISST_CL-SST-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/SST_CL_HadISST/HadISST_CL-SST-ANN-global_test.nc\n", + " * var_key: SST\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/SST_CL_HadISST/HadISST_CL-SST-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/SST_CL_HadISST/HadISST_CL-SST-JJA-global_ref.nc\n", + " * var_key: SST\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/SST_CL_HadISST/HadISST_CL-SST-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/SST_CL_HadISST/HadISST_CL-SST-JJA-global_test.nc\n", + " * var_key: SST\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/SST_HadISST/HadISST-SST-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/SST_HadISST/HadISST-SST-ANN-global_test.nc\n", + " * var_key: SST\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/SST_HadISST/HadISST-SST-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/SST_HadISST/HadISST-SST-JJA-global_test.nc\n", + " * var_key: SST\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/SST_PD_HadISST/HadISST_PD-SST-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/SST_PD_HadISST/HadISST_PD-SST-ANN-global_ref.nc\n", + " * var_key: SST\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/SST_PD_HadISST/HadISST_PD-SST-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/SST_PD_HadISST/HadISST_PD-SST-ANN-global_test.nc\n", + " * var_key: SST\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/SST_PD_HadISST/HadISST_PD-SST-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/SST_PD_HadISST/HadISST_PD-SST-JJA-global_ref.nc\n", + " * var_key: SST\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/SST_PD_HadISST/HadISST_PD-SST-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/SST_PD_HadISST/HadISST_PD-SST-JJA-global_test.nc\n", + " * var_key: SST\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/SST_PI_HadISST/HadISST_PI-SST-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/SST_PI_HadISST/HadISST_PI-SST-ANN-global_ref.nc\n", + " * var_key: SST\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/SST_PI_HadISST/HadISST_PI-SST-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/SST_PI_HadISST/HadISST_PI-SST-ANN-global_test.nc\n", + " * var_key: SST\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/SST_PI_HadISST/HadISST_PI-SST-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/SST_PI_HadISST/HadISST_PI-SST-JJA-global_ref.nc\n", + " * var_key: SST\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/SST_PI_HadISST/HadISST_PI-SST-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/SST_PI_HadISST/HadISST_PI-SST-JJA-global_test.nc\n", + " * var_key: SST\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/WHOI-OAFlux/OAFlux-LHFLX-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/WHOI-OAFlux/OAFlux-LHFLX-ANN-global_ref.nc\n", + " * var_key: LHFLX\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/WHOI-OAFlux/OAFlux-LHFLX-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/WHOI-OAFlux/OAFlux-LHFLX-ANN-global_test.nc\n", + " * var_key: LHFLX\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/WHOI-OAFlux/OAFlux-LHFLX-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/WHOI-OAFlux/OAFlux-LHFLX-JJA-global_ref.nc\n", + " * var_key: LHFLX\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/WHOI-OAFlux/OAFlux-LHFLX-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/WHOI-OAFlux/OAFlux-LHFLX-JJA-global_test.nc\n", + " * var_key: LHFLX\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/WHOI-OAFlux/OAFlux-SHFLX-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/WHOI-OAFlux/OAFlux-SHFLX-ANN-global_ref.nc\n", + " * var_key: SHFLX\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/WHOI-OAFlux/OAFlux-SHFLX-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/WHOI-OAFlux/OAFlux-SHFLX-ANN-global_test.nc\n", + " * var_key: SHFLX\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/WHOI-OAFlux/OAFlux-SHFLX-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/WHOI-OAFlux/OAFlux-SHFLX-JJA-global_ref.nc\n", + " * var_key: SHFLX\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/WHOI-OAFlux/OAFlux-SHFLX-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/WHOI-OAFlux/OAFlux-SHFLX-JJA-global_test.nc\n", + " * var_key: SHFLX\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/meridional_mean_2d/ERA5/ERA5-OMEGA-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/meridional_mean_2d/ERA5/ERA5-OMEGA-ANN-global_ref.nc\n", + " * var_key: OMEGA\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/meridional_mean_2d/ERA5/ERA5-OMEGA-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/meridional_mean_2d/ERA5/ERA5-OMEGA-ANN-global_test.nc\n", + " * var_key: OMEGA\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/meridional_mean_2d/ERA5/ERA5-OMEGA-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/meridional_mean_2d/ERA5/ERA5-OMEGA-JJA-global_ref.nc\n", + " * var_key: OMEGA\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/meridional_mean_2d/ERA5/ERA5-OMEGA-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/meridional_mean_2d/ERA5/ERA5-OMEGA-JJA-global_test.nc\n", + " * var_key: OMEGA\n", + " \n", + "Not equal to tolerance rtol=0.0001, atol=0\n", + "\n", + "Mismatched elements: 1 / 6120 (0.0163%)\n", + "Max absolute difference: 3.39774408e-07\n", + "Max relative difference: 0.00015039\n", + " x: array([[ 1.150119, 1.168407, 1.16202 , ..., 1.153911, 1.138019,\n", + " 1.152851],\n", + " [ 1.567948, 1.599667, 1.601973, ..., 1.42647 , 1.435826,...\n", + " y: array([[ 1.150119, 1.168407, 1.16202 , ..., 1.153911, 1.138019,\n", + " 1.152851],\n", + " [ 1.567948, 1.599667, 1.601973, ..., 1.42647 , 1.435826,...\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/meridional_mean_2d/ERA5/ERA5-RELHUM-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/meridional_mean_2d/ERA5/ERA5-RELHUM-ANN-global_ref.nc\n", + " * var_key: RELHUM\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/meridional_mean_2d/ERA5/ERA5-RELHUM-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/meridional_mean_2d/ERA5/ERA5-RELHUM-ANN-global_test.nc\n", + " * var_key: RELHUM\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/meridional_mean_2d/ERA5/ERA5-RELHUM-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/meridional_mean_2d/ERA5/ERA5-RELHUM-JJA-global_ref.nc\n", + " * var_key: RELHUM\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/meridional_mean_2d/ERA5/ERA5-RELHUM-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/meridional_mean_2d/ERA5/ERA5-RELHUM-JJA-global_test.nc\n", + " * var_key: RELHUM\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/meridional_mean_2d/ERA5/ERA5-T-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/meridional_mean_2d/ERA5/ERA5-T-ANN-global_ref.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/meridional_mean_2d/ERA5/ERA5-T-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/meridional_mean_2d/ERA5/ERA5-T-ANN-global_test.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/meridional_mean_2d/ERA5/ERA5-T-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/meridional_mean_2d/ERA5/ERA5-T-JJA-global_ref.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/meridional_mean_2d/ERA5/ERA5-T-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/meridional_mean_2d/ERA5/ERA5-T-JJA-global_test.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/meridional_mean_2d/ERA5/ERA5-U-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/meridional_mean_2d/ERA5/ERA5-U-ANN-global_ref.nc\n", + " * var_key: U\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/meridional_mean_2d/ERA5/ERA5-U-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/meridional_mean_2d/ERA5/ERA5-U-ANN-global_test.nc\n", + " * var_key: U\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/meridional_mean_2d/ERA5/ERA5-U-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/meridional_mean_2d/ERA5/ERA5-U-JJA-global_ref.nc\n", + " * var_key: U\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/meridional_mean_2d/ERA5/ERA5-U-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/meridional_mean_2d/ERA5/ERA5-U-JJA-global_test.nc\n", + " * var_key: U\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/meridional_mean_2d/MERRA2/MERRA2-OMEGA-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/meridional_mean_2d/MERRA2/MERRA2-OMEGA-ANN-global_ref.nc\n", + " * var_key: OMEGA\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/meridional_mean_2d/MERRA2/MERRA2-OMEGA-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/meridional_mean_2d/MERRA2/MERRA2-OMEGA-ANN-global_test.nc\n", + " * var_key: OMEGA\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/meridional_mean_2d/MERRA2/MERRA2-OMEGA-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/meridional_mean_2d/MERRA2/MERRA2-OMEGA-JJA-global_ref.nc\n", + " * var_key: OMEGA\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/meridional_mean_2d/MERRA2/MERRA2-OMEGA-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/meridional_mean_2d/MERRA2/MERRA2-OMEGA-JJA-global_test.nc\n", + " * var_key: OMEGA\n", + " \n", + "Not equal to tolerance rtol=0.0001, atol=0\n", + "\n", + "Mismatched elements: 1 / 6120 (0.0163%)\n", + "Max absolute difference: 3.39774408e-07\n", + "Max relative difference: 0.00015039\n", + " x: array([[ 1.150119, 1.168407, 1.16202 , ..., 1.153911, 1.138019,\n", + " 1.152851],\n", + " [ 1.567948, 1.599667, 1.601973, ..., 1.42647 , 1.435826,...\n", + " y: array([[ 1.150119, 1.168407, 1.16202 , ..., 1.153911, 1.138019,\n", + " 1.152851],\n", + " [ 1.567948, 1.599667, 1.601973, ..., 1.42647 , 1.435826,...\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/meridional_mean_2d/MERRA2/MERRA2-RELHUM-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/meridional_mean_2d/MERRA2/MERRA2-RELHUM-ANN-global_ref.nc\n", + " * var_key: RELHUM\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/meridional_mean_2d/MERRA2/MERRA2-RELHUM-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/meridional_mean_2d/MERRA2/MERRA2-RELHUM-ANN-global_test.nc\n", + " * var_key: RELHUM\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/meridional_mean_2d/MERRA2/MERRA2-RELHUM-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/meridional_mean_2d/MERRA2/MERRA2-RELHUM-JJA-global_ref.nc\n", + " * var_key: RELHUM\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/meridional_mean_2d/MERRA2/MERRA2-RELHUM-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/meridional_mean_2d/MERRA2/MERRA2-RELHUM-JJA-global_test.nc\n", + " * var_key: RELHUM\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/meridional_mean_2d/MERRA2/MERRA2-T-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/meridional_mean_2d/MERRA2/MERRA2-T-ANN-global_ref.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/meridional_mean_2d/MERRA2/MERRA2-T-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/meridional_mean_2d/MERRA2/MERRA2-T-ANN-global_test.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/meridional_mean_2d/MERRA2/MERRA2-T-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/meridional_mean_2d/MERRA2/MERRA2-T-JJA-global_ref.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/meridional_mean_2d/MERRA2/MERRA2-T-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/meridional_mean_2d/MERRA2/MERRA2-T-JJA-global_test.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/meridional_mean_2d/MERRA2/MERRA2-U-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/meridional_mean_2d/MERRA2/MERRA2-U-ANN-global_ref.nc\n", + " * var_key: U\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/meridional_mean_2d/MERRA2/MERRA2-U-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/meridional_mean_2d/MERRA2/MERRA2-U-ANN-global_test.nc\n", + " * var_key: U\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/meridional_mean_2d/MERRA2/MERRA2-U-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/meridional_mean_2d/MERRA2/MERRA2-U-JJA-global_ref.nc\n", + " * var_key: U\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/meridional_mean_2d/MERRA2/MERRA2-U-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/meridional_mean_2d/MERRA2/MERRA2-U-JJA-global_test.nc\n", + " * var_key: U\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-ALBEDO_SRF-ANN-polar_N_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-ALBEDO_SRF-ANN-polar_N_ref.nc\n", + " * var_key: ALBEDO_SRF\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-ALBEDO_SRF-ANN-polar_N_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-ALBEDO_SRF-ANN-polar_N_test.nc\n", + " * var_key: ALBEDO_SRF\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-ALBEDO_SRF-ANN-polar_S_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-ALBEDO_SRF-ANN-polar_S_ref.nc\n", + " * var_key: ALBEDO_SRF\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-ALBEDO_SRF-ANN-polar_S_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-ALBEDO_SRF-ANN-polar_S_test.nc\n", + " * var_key: ALBEDO_SRF\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-ALBEDO_SRF-JJA-polar_N_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-ALBEDO_SRF-JJA-polar_N_ref.nc\n", + " * var_key: ALBEDO_SRF\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-ALBEDO_SRF-JJA-polar_N_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-ALBEDO_SRF-JJA-polar_N_test.nc\n", + " * var_key: ALBEDO_SRF\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-ALBEDO_SRF-JJA-polar_S_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-ALBEDO_SRF-JJA-polar_S_ref.nc\n", + " * var_key: ALBEDO_SRF\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-ALBEDO_SRF-JJA-polar_S_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-ALBEDO_SRF-JJA-polar_S_test.nc\n", + " * var_key: ALBEDO_SRF\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLDS-ANN-polar_N_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLDS-ANN-polar_N_ref.nc\n", + " * var_key: FLDS\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLDS-ANN-polar_N_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLDS-ANN-polar_N_test.nc\n", + " * var_key: FLDS\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLDS-ANN-polar_S_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLDS-ANN-polar_S_ref.nc\n", + " * var_key: FLDS\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLDS-ANN-polar_S_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLDS-ANN-polar_S_test.nc\n", + " * var_key: FLDS\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLDS-JJA-polar_N_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLDS-JJA-polar_N_ref.nc\n", + " * var_key: FLDS\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLDS-JJA-polar_N_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLDS-JJA-polar_N_test.nc\n", + " * var_key: FLDS\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLDS-JJA-polar_S_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLDS-JJA-polar_S_ref.nc\n", + " * var_key: FLDS\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLDS-JJA-polar_S_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLDS-JJA-polar_S_test.nc\n", + " * var_key: FLDS\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLDSC-ANN-polar_N_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLDSC-ANN-polar_N_ref.nc\n", + " * var_key: FLDSC\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLDSC-ANN-polar_N_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLDSC-ANN-polar_N_test.nc\n", + " * var_key: FLDSC\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLDSC-ANN-polar_S_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLDSC-ANN-polar_S_ref.nc\n", + " * var_key: FLDSC\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLDSC-ANN-polar_S_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLDSC-ANN-polar_S_test.nc\n", + " * var_key: FLDSC\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLDSC-JJA-polar_N_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLDSC-JJA-polar_N_ref.nc\n", + " * var_key: FLDSC\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLDSC-JJA-polar_N_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLDSC-JJA-polar_N_test.nc\n", + " * var_key: FLDSC\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLDSC-JJA-polar_S_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLDSC-JJA-polar_S_ref.nc\n", + " * var_key: FLDSC\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLDSC-JJA-polar_S_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLDSC-JJA-polar_S_test.nc\n", + " * var_key: FLDSC\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLNS-ANN-polar_N_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLNS-ANN-polar_N_ref.nc\n", + " * var_key: FLNS\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLNS-ANN-polar_N_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLNS-ANN-polar_N_test.nc\n", + " * var_key: FLNS\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLNS-ANN-polar_S_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLNS-ANN-polar_S_ref.nc\n", + " * var_key: FLNS\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLNS-ANN-polar_S_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLNS-ANN-polar_S_test.nc\n", + " * var_key: FLNS\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLNS-JJA-polar_N_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLNS-JJA-polar_N_ref.nc\n", + " * var_key: FLNS\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLNS-JJA-polar_N_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLNS-JJA-polar_N_test.nc\n", + " * var_key: FLNS\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLNS-JJA-polar_S_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLNS-JJA-polar_S_ref.nc\n", + " * var_key: FLNS\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLNS-JJA-polar_S_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLNS-JJA-polar_S_test.nc\n", + " * var_key: FLNS\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLNSC-ANN-polar_N_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLNSC-ANN-polar_N_ref.nc\n", + " * var_key: FLNSC\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLNSC-ANN-polar_N_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLNSC-ANN-polar_N_test.nc\n", + " * var_key: FLNSC\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLNSC-ANN-polar_S_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLNSC-ANN-polar_S_ref.nc\n", + " * var_key: FLNSC\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLNSC-ANN-polar_S_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLNSC-ANN-polar_S_test.nc\n", + " * var_key: FLNSC\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLNSC-JJA-polar_N_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLNSC-JJA-polar_N_ref.nc\n", + " * var_key: FLNSC\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLNSC-JJA-polar_N_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLNSC-JJA-polar_N_test.nc\n", + " * var_key: FLNSC\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLNSC-JJA-polar_S_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLNSC-JJA-polar_S_ref.nc\n", + " * var_key: FLNSC\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLNSC-JJA-polar_S_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLNSC-JJA-polar_S_test.nc\n", + " * var_key: FLNSC\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSDS-ANN-polar_N_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSDS-ANN-polar_N_ref.nc\n", + " * var_key: FSDS\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSDS-ANN-polar_N_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSDS-ANN-polar_N_test.nc\n", + " * var_key: FSDS\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSDS-ANN-polar_S_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSDS-ANN-polar_S_ref.nc\n", + " * var_key: FSDS\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSDS-ANN-polar_S_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSDS-ANN-polar_S_test.nc\n", + " * var_key: FSDS\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSDS-JJA-polar_N_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSDS-JJA-polar_N_ref.nc\n", + " * var_key: FSDS\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSDS-JJA-polar_N_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSDS-JJA-polar_N_test.nc\n", + " * var_key: FSDS\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSDS-JJA-polar_S_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSDS-JJA-polar_S_ref.nc\n", + " * var_key: FSDS\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSDS-JJA-polar_S_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSDS-JJA-polar_S_test.nc\n", + " * var_key: FSDS\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSDSC-ANN-polar_N_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSDSC-ANN-polar_N_ref.nc\n", + " * var_key: FSDSC\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSDSC-ANN-polar_N_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSDSC-ANN-polar_N_test.nc\n", + " * var_key: FSDSC\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSDSC-ANN-polar_S_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSDSC-ANN-polar_S_ref.nc\n", + " * var_key: FSDSC\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSDSC-ANN-polar_S_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSDSC-ANN-polar_S_test.nc\n", + " * var_key: FSDSC\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSDSC-JJA-polar_N_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSDSC-JJA-polar_N_ref.nc\n", + " * var_key: FSDSC\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSDSC-JJA-polar_N_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSDSC-JJA-polar_N_test.nc\n", + " * var_key: FSDSC\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSDSC-JJA-polar_S_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSDSC-JJA-polar_S_ref.nc\n", + " * var_key: FSDSC\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSDSC-JJA-polar_S_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSDSC-JJA-polar_S_test.nc\n", + " * var_key: FSDSC\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSNS-ANN-polar_N_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSNS-ANN-polar_N_ref.nc\n", + " * var_key: FSNS\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSNS-ANN-polar_N_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSNS-ANN-polar_N_test.nc\n", + " * var_key: FSNS\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSNS-ANN-polar_S_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSNS-ANN-polar_S_ref.nc\n", + " * var_key: FSNS\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSNS-ANN-polar_S_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSNS-ANN-polar_S_test.nc\n", + " * var_key: FSNS\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSNS-JJA-polar_N_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSNS-JJA-polar_N_ref.nc\n", + " * var_key: FSNS\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSNS-JJA-polar_N_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSNS-JJA-polar_N_test.nc\n", + " * var_key: FSNS\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSNS-JJA-polar_S_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSNS-JJA-polar_S_ref.nc\n", + " * var_key: FSNS\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSNS-JJA-polar_S_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSNS-JJA-polar_S_test.nc\n", + " * var_key: FSNS\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSNSC-ANN-polar_N_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSNSC-ANN-polar_N_ref.nc\n", + " * var_key: FSNSC\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSNSC-ANN-polar_N_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSNSC-ANN-polar_N_test.nc\n", + " * var_key: FSNSC\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSNSC-ANN-polar_S_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSNSC-ANN-polar_S_ref.nc\n", + " * var_key: FSNSC\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSNSC-ANN-polar_S_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSNSC-ANN-polar_S_test.nc\n", + " * var_key: FSNSC\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSNSC-JJA-polar_N_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSNSC-JJA-polar_N_ref.nc\n", + " * var_key: FSNSC\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSNSC-JJA-polar_N_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSNSC-JJA-polar_N_test.nc\n", + " * var_key: FSNSC\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSNSC-JJA-polar_S_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSNSC-JJA-polar_S_ref.nc\n", + " * var_key: FSNSC\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSNSC-JJA-polar_S_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSNSC-JJA-polar_S_test.nc\n", + " * var_key: FSNSC\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-LWCFSRF-ANN-polar_N_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-LWCFSRF-ANN-polar_N_ref.nc\n", + " * var_key: LWCFSRF\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-LWCFSRF-ANN-polar_N_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-LWCFSRF-ANN-polar_N_test.nc\n", + " * var_key: LWCFSRF\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-LWCFSRF-ANN-polar_S_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-LWCFSRF-ANN-polar_S_ref.nc\n", + " * var_key: LWCFSRF\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-LWCFSRF-ANN-polar_S_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-LWCFSRF-ANN-polar_S_test.nc\n", + " * var_key: LWCFSRF\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-LWCFSRF-JJA-polar_N_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-LWCFSRF-JJA-polar_N_ref.nc\n", + " * var_key: LWCFSRF\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-LWCFSRF-JJA-polar_N_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-LWCFSRF-JJA-polar_N_test.nc\n", + " * var_key: LWCFSRF\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-LWCFSRF-JJA-polar_S_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-LWCFSRF-JJA-polar_S_ref.nc\n", + " * var_key: LWCFSRF\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-LWCFSRF-JJA-polar_S_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-LWCFSRF-JJA-polar_S_test.nc\n", + " * var_key: LWCFSRF\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-SWCFSRF-ANN-polar_N_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-SWCFSRF-ANN-polar_N_ref.nc\n", + " * var_key: SWCFSRF\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-SWCFSRF-ANN-polar_N_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-SWCFSRF-ANN-polar_N_test.nc\n", + " * var_key: SWCFSRF\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-SWCFSRF-ANN-polar_S_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-SWCFSRF-ANN-polar_S_ref.nc\n", + " * var_key: SWCFSRF\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-SWCFSRF-ANN-polar_S_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-SWCFSRF-ANN-polar_S_test.nc\n", + " * var_key: SWCFSRF\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-SWCFSRF-JJA-polar_N_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-SWCFSRF-JJA-polar_N_ref.nc\n", + " * var_key: SWCFSRF\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-SWCFSRF-JJA-polar_N_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-SWCFSRF-JJA-polar_N_test.nc\n", + " * var_key: SWCFSRF\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-SWCFSRF-JJA-polar_S_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-SWCFSRF-JJA-polar_S_ref.nc\n", + " * var_key: SWCFSRF\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-SWCFSRF-JJA-polar_S_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-SWCFSRF-JJA-polar_S_test.nc\n", + " * var_key: SWCFSRF\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CRU_IPCC/CRU-TREFHT-ANN-polar_N_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/CRU_IPCC/CRU-TREFHT-ANN-polar_N_ref.nc\n", + " * var_key: TREFHT\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CRU_IPCC/CRU-TREFHT-ANN-polar_N_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/CRU_IPCC/CRU-TREFHT-ANN-polar_N_test.nc\n", + " * var_key: TREFHT\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CRU_IPCC/CRU-TREFHT-JJA-polar_N_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/CRU_IPCC/CRU-TREFHT-JJA-polar_N_ref.nc\n", + " * var_key: TREFHT\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CRU_IPCC/CRU-TREFHT-JJA-polar_N_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/CRU_IPCC/CRU-TREFHT-JJA-polar_N_test.nc\n", + " * var_key: TREFHT\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/ERA5/ERA5-LHFLX-ANN-polar_N_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/ERA5/ERA5-LHFLX-ANN-polar_N_ref.nc\n", + " * var_key: LHFLX\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/ERA5/ERA5-LHFLX-ANN-polar_N_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/ERA5/ERA5-LHFLX-ANN-polar_N_test.nc\n", + " * var_key: LHFLX\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/ERA5/ERA5-LHFLX-ANN-polar_S_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/ERA5/ERA5-LHFLX-ANN-polar_S_ref.nc\n", + " * var_key: LHFLX\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/ERA5/ERA5-LHFLX-ANN-polar_S_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/ERA5/ERA5-LHFLX-ANN-polar_S_test.nc\n", + " * var_key: LHFLX\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/ERA5/ERA5-LHFLX-JJA-polar_N_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/ERA5/ERA5-LHFLX-JJA-polar_N_ref.nc\n", + " * var_key: LHFLX\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/ERA5/ERA5-LHFLX-JJA-polar_N_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/ERA5/ERA5-LHFLX-JJA-polar_N_test.nc\n", + " * var_key: LHFLX\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/ERA5/ERA5-LHFLX-JJA-polar_S_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/ERA5/ERA5-LHFLX-JJA-polar_S_ref.nc\n", + " * var_key: LHFLX\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/ERA5/ERA5-LHFLX-JJA-polar_S_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/ERA5/ERA5-LHFLX-JJA-polar_S_test.nc\n", + " * var_key: LHFLX\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/ERA5/ERA5-PRECT-ANN-polar_N_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/ERA5/ERA5-PRECT-ANN-polar_N_ref.nc\n", + " * var_key: PRECT\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/ERA5/ERA5-PRECT-ANN-polar_N_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/ERA5/ERA5-PRECT-ANN-polar_N_test.nc\n", + " * var_key: PRECT\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/ERA5/ERA5-PRECT-ANN-polar_S_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/ERA5/ERA5-PRECT-ANN-polar_S_ref.nc\n", + " * var_key: PRECT\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/ERA5/ERA5-PRECT-ANN-polar_S_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/ERA5/ERA5-PRECT-ANN-polar_S_test.nc\n", + " * var_key: PRECT\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/ERA5/ERA5-PRECT-JJA-polar_N_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/ERA5/ERA5-PRECT-JJA-polar_N_ref.nc\n", + " * var_key: PRECT\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/ERA5/ERA5-PRECT-JJA-polar_N_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/ERA5/ERA5-PRECT-JJA-polar_N_test.nc\n", + " * var_key: PRECT\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/ERA5/ERA5-PRECT-JJA-polar_S_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/ERA5/ERA5-PRECT-JJA-polar_S_ref.nc\n", + " * var_key: PRECT\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/ERA5/ERA5-PRECT-JJA-polar_S_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/ERA5/ERA5-PRECT-JJA-polar_S_test.nc\n", + " * var_key: PRECT\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/ERA5/ERA5-PSL-ANN-polar_N_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/ERA5/ERA5-PSL-ANN-polar_N_ref.nc\n", + " * var_key: PSL\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/ERA5/ERA5-PSL-ANN-polar_N_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/ERA5/ERA5-PSL-ANN-polar_N_test.nc\n", + " * var_key: PSL\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/ERA5/ERA5-PSL-ANN-polar_S_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/ERA5/ERA5-PSL-ANN-polar_S_ref.nc\n", + " * var_key: PSL\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/ERA5/ERA5-PSL-ANN-polar_S_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/ERA5/ERA5-PSL-ANN-polar_S_test.nc\n", + " * var_key: PSL\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/ERA5/ERA5-PSL-JJA-polar_N_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/ERA5/ERA5-PSL-JJA-polar_N_ref.nc\n", + " * var_key: PSL\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/ERA5/ERA5-PSL-JJA-polar_N_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/ERA5/ERA5-PSL-JJA-polar_N_test.nc\n", + " * var_key: PSL\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/ERA5/ERA5-PSL-JJA-polar_S_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/ERA5/ERA5-PSL-JJA-polar_S_ref.nc\n", + " * var_key: PSL\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/ERA5/ERA5-PSL-JJA-polar_S_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/ERA5/ERA5-PSL-JJA-polar_S_test.nc\n", + " * var_key: PSL\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/ERA5/ERA5-T-200-ANN-polar_N_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/ERA5/ERA5-T-200-ANN-polar_N_ref.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/ERA5/ERA5-T-200-ANN-polar_N_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/ERA5/ERA5-T-200-ANN-polar_N_test.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/ERA5/ERA5-T-200-ANN-polar_S_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/ERA5/ERA5-T-200-ANN-polar_S_ref.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/ERA5/ERA5-T-200-ANN-polar_S_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/ERA5/ERA5-T-200-ANN-polar_S_test.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/ERA5/ERA5-T-200-JJA-polar_N_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/ERA5/ERA5-T-200-JJA-polar_N_ref.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/ERA5/ERA5-T-200-JJA-polar_N_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/ERA5/ERA5-T-200-JJA-polar_N_test.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/ERA5/ERA5-T-200-JJA-polar_S_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/ERA5/ERA5-T-200-JJA-polar_S_ref.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/ERA5/ERA5-T-200-JJA-polar_S_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/ERA5/ERA5-T-200-JJA-polar_S_test.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/ERA5/ERA5-T-850-ANN-polar_N_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/ERA5/ERA5-T-850-ANN-polar_N_ref.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/ERA5/ERA5-T-850-ANN-polar_N_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/ERA5/ERA5-T-850-ANN-polar_N_test.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/ERA5/ERA5-T-850-ANN-polar_S_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/ERA5/ERA5-T-850-ANN-polar_S_ref.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/ERA5/ERA5-T-850-ANN-polar_S_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/ERA5/ERA5-T-850-ANN-polar_S_test.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/ERA5/ERA5-T-850-JJA-polar_N_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/ERA5/ERA5-T-850-JJA-polar_N_ref.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/ERA5/ERA5-T-850-JJA-polar_N_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/ERA5/ERA5-T-850-JJA-polar_N_test.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/ERA5/ERA5-T-850-JJA-polar_S_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/ERA5/ERA5-T-850-JJA-polar_S_ref.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/ERA5/ERA5-T-850-JJA-polar_S_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/ERA5/ERA5-T-850-JJA-polar_S_test.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/ERA5/ERA5-TAUXY-ANN-polar_N_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/ERA5/ERA5-TAUXY-ANN-polar_N_ref.nc\n", + " * var_key: TAUXY\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/ERA5/ERA5-TAUXY-ANN-polar_N_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/ERA5/ERA5-TAUXY-ANN-polar_N_test.nc\n", + " * var_key: TAUXY\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/ERA5/ERA5-TAUXY-ANN-polar_S_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/ERA5/ERA5-TAUXY-ANN-polar_S_ref.nc\n", + " * var_key: TAUXY\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/ERA5/ERA5-TAUXY-ANN-polar_S_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/ERA5/ERA5-TAUXY-ANN-polar_S_test.nc\n", + " * var_key: TAUXY\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/ERA5/ERA5-TAUXY-JJA-polar_N_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/ERA5/ERA5-TAUXY-JJA-polar_N_ref.nc\n", + " * var_key: TAUXY\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/ERA5/ERA5-TAUXY-JJA-polar_N_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/ERA5/ERA5-TAUXY-JJA-polar_N_test.nc\n", + " * var_key: TAUXY\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/ERA5/ERA5-TAUXY-JJA-polar_S_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/ERA5/ERA5-TAUXY-JJA-polar_S_ref.nc\n", + " * var_key: TAUXY\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/ERA5/ERA5-TAUXY-JJA-polar_S_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/ERA5/ERA5-TAUXY-JJA-polar_S_test.nc\n", + " * var_key: TAUXY\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/ERA5/ERA5-TMQ-ANN-polar_N_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/ERA5/ERA5-TMQ-ANN-polar_N_ref.nc\n", + " * var_key: TMQ\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/ERA5/ERA5-TMQ-ANN-polar_N_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/ERA5/ERA5-TMQ-ANN-polar_N_test.nc\n", + " * var_key: TMQ\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/ERA5/ERA5-TMQ-ANN-polar_S_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/ERA5/ERA5-TMQ-ANN-polar_S_ref.nc\n", + " * var_key: TMQ\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/ERA5/ERA5-TMQ-ANN-polar_S_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/ERA5/ERA5-TMQ-ANN-polar_S_test.nc\n", + " * var_key: TMQ\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/ERA5/ERA5-TMQ-JJA-polar_N_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/ERA5/ERA5-TMQ-JJA-polar_N_ref.nc\n", + " * var_key: TMQ\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/ERA5/ERA5-TMQ-JJA-polar_N_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/ERA5/ERA5-TMQ-JJA-polar_N_test.nc\n", + " * var_key: TMQ\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/ERA5/ERA5-TMQ-JJA-polar_S_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/ERA5/ERA5-TMQ-JJA-polar_S_ref.nc\n", + " * var_key: TMQ\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/ERA5/ERA5-TMQ-JJA-polar_S_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/ERA5/ERA5-TMQ-JJA-polar_S_test.nc\n", + " * var_key: TMQ\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/ERA5/ERA5-TREFHT-ANN-polar_N_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/ERA5/ERA5-TREFHT-ANN-polar_N_ref.nc\n", + " * var_key: TREFHT\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/ERA5/ERA5-TREFHT-ANN-polar_N_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/ERA5/ERA5-TREFHT-ANN-polar_N_test.nc\n", + " * var_key: TREFHT\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/ERA5/ERA5-TREFHT-ANN-polar_S_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/ERA5/ERA5-TREFHT-ANN-polar_S_ref.nc\n", + " * var_key: TREFHT\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/ERA5/ERA5-TREFHT-ANN-polar_S_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/ERA5/ERA5-TREFHT-ANN-polar_S_test.nc\n", + " * var_key: TREFHT\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/ERA5/ERA5-TREFHT-JJA-polar_N_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/ERA5/ERA5-TREFHT-JJA-polar_N_ref.nc\n", + " * var_key: TREFHT\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/ERA5/ERA5-TREFHT-JJA-polar_N_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/ERA5/ERA5-TREFHT-JJA-polar_N_test.nc\n", + " * var_key: TREFHT\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/ERA5/ERA5-TREFHT-JJA-polar_S_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/ERA5/ERA5-TREFHT-JJA-polar_S_ref.nc\n", + " * var_key: TREFHT\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/ERA5/ERA5-TREFHT-JJA-polar_S_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/ERA5/ERA5-TREFHT-JJA-polar_S_test.nc\n", + " * var_key: TREFHT\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/ERA5/ERA5-U-200-ANN-polar_N_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/ERA5/ERA5-U-200-ANN-polar_N_ref.nc\n", + " * var_key: U\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/ERA5/ERA5-U-200-ANN-polar_N_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/ERA5/ERA5-U-200-ANN-polar_N_test.nc\n", + " * var_key: U\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/ERA5/ERA5-U-200-ANN-polar_S_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/ERA5/ERA5-U-200-ANN-polar_S_ref.nc\n", + " * var_key: U\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/ERA5/ERA5-U-200-ANN-polar_S_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/ERA5/ERA5-U-200-ANN-polar_S_test.nc\n", + " * var_key: U\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/ERA5/ERA5-U-200-JJA-polar_N_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/ERA5/ERA5-U-200-JJA-polar_N_ref.nc\n", + " * var_key: U\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/ERA5/ERA5-U-200-JJA-polar_N_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/ERA5/ERA5-U-200-JJA-polar_N_test.nc\n", + " * var_key: U\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/ERA5/ERA5-U-200-JJA-polar_S_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/ERA5/ERA5-U-200-JJA-polar_S_ref.nc\n", + " * var_key: U\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/ERA5/ERA5-U-200-JJA-polar_S_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/ERA5/ERA5-U-200-JJA-polar_S_test.nc\n", + " * var_key: U\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/ERA5/ERA5-U-850-ANN-polar_N_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/ERA5/ERA5-U-850-ANN-polar_N_ref.nc\n", + " * var_key: U\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/ERA5/ERA5-U-850-ANN-polar_N_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/ERA5/ERA5-U-850-ANN-polar_N_test.nc\n", + " * var_key: U\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/ERA5/ERA5-U-850-ANN-polar_S_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/ERA5/ERA5-U-850-ANN-polar_S_ref.nc\n", + " * var_key: U\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/ERA5/ERA5-U-850-ANN-polar_S_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/ERA5/ERA5-U-850-ANN-polar_S_test.nc\n", + " * var_key: U\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/ERA5/ERA5-U-850-JJA-polar_N_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/ERA5/ERA5-U-850-JJA-polar_N_ref.nc\n", + " * var_key: U\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/ERA5/ERA5-U-850-JJA-polar_N_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/ERA5/ERA5-U-850-JJA-polar_N_test.nc\n", + " * var_key: U\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/ERA5/ERA5-U-850-JJA-polar_S_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/ERA5/ERA5-U-850-JJA-polar_S_ref.nc\n", + " * var_key: U\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/ERA5/ERA5-U-850-JJA-polar_S_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/ERA5/ERA5-U-850-JJA-polar_S_test.nc\n", + " * var_key: U\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/ERA5/ERA5-Z3-500-ANN-polar_N_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/ERA5/ERA5-Z3-500-ANN-polar_N_ref.nc\n", + " * var_key: Z3\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/ERA5/ERA5-Z3-500-ANN-polar_N_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/ERA5/ERA5-Z3-500-ANN-polar_N_test.nc\n", + " * var_key: Z3\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/ERA5/ERA5-Z3-500-ANN-polar_S_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/ERA5/ERA5-Z3-500-ANN-polar_S_ref.nc\n", + " * var_key: Z3\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/ERA5/ERA5-Z3-500-ANN-polar_S_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/ERA5/ERA5-Z3-500-ANN-polar_S_test.nc\n", + " * var_key: Z3\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/ERA5/ERA5-Z3-500-JJA-polar_N_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/ERA5/ERA5-Z3-500-JJA-polar_N_ref.nc\n", + " * var_key: Z3\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/ERA5/ERA5-Z3-500-JJA-polar_N_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/ERA5/ERA5-Z3-500-JJA-polar_N_test.nc\n", + " * var_key: Z3\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/ERA5/ERA5-Z3-500-JJA-polar_S_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/ERA5/ERA5-Z3-500-JJA-polar_S_ref.nc\n", + " * var_key: Z3\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/ERA5/ERA5-Z3-500-JJA-polar_S_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/ERA5/ERA5-Z3-500-JJA-polar_S_test.nc\n", + " * var_key: Z3\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/GPCP_v2.3/GPCP_v2.3-PRECT-ANN-polar_N_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/GPCP_v2.3/GPCP_v2.3-PRECT-ANN-polar_N_ref.nc\n", + " * var_key: PRECT\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/GPCP_v2.3/GPCP_v2.3-PRECT-ANN-polar_N_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/GPCP_v2.3/GPCP_v2.3-PRECT-ANN-polar_N_test.nc\n", + " * var_key: PRECT\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/GPCP_v2.3/GPCP_v2.3-PRECT-ANN-polar_S_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/GPCP_v2.3/GPCP_v2.3-PRECT-ANN-polar_S_ref.nc\n", + " * var_key: PRECT\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/GPCP_v2.3/GPCP_v2.3-PRECT-ANN-polar_S_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/GPCP_v2.3/GPCP_v2.3-PRECT-ANN-polar_S_test.nc\n", + " * var_key: PRECT\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/GPCP_v2.3/GPCP_v2.3-PRECT-JJA-polar_N_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/GPCP_v2.3/GPCP_v2.3-PRECT-JJA-polar_N_ref.nc\n", + " * var_key: PRECT\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/GPCP_v2.3/GPCP_v2.3-PRECT-JJA-polar_N_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/GPCP_v2.3/GPCP_v2.3-PRECT-JJA-polar_N_test.nc\n", + " * var_key: PRECT\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/GPCP_v2.3/GPCP_v2.3-PRECT-JJA-polar_S_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/GPCP_v2.3/GPCP_v2.3-PRECT-JJA-polar_S_ref.nc\n", + " * var_key: PRECT\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/GPCP_v2.3/GPCP_v2.3-PRECT-JJA-polar_S_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/GPCP_v2.3/GPCP_v2.3-PRECT-JJA-polar_S_test.nc\n", + " * var_key: PRECT\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/GPCP_v3.2/GPCP_v3.2-PRECT-ANN-polar_N_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/GPCP_v3.2/GPCP_v3.2-PRECT-ANN-polar_N_ref.nc\n", + " * var_key: PRECT\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/GPCP_v3.2/GPCP_v3.2-PRECT-ANN-polar_N_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/GPCP_v3.2/GPCP_v3.2-PRECT-ANN-polar_N_test.nc\n", + " * var_key: PRECT\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/GPCP_v3.2/GPCP_v3.2-PRECT-ANN-polar_S_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/GPCP_v3.2/GPCP_v3.2-PRECT-ANN-polar_S_ref.nc\n", + " * var_key: PRECT\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/GPCP_v3.2/GPCP_v3.2-PRECT-ANN-polar_S_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/GPCP_v3.2/GPCP_v3.2-PRECT-ANN-polar_S_test.nc\n", + " * var_key: PRECT\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/GPCP_v3.2/GPCP_v3.2-PRECT-JJA-polar_N_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/GPCP_v3.2/GPCP_v3.2-PRECT-JJA-polar_N_ref.nc\n", + " * var_key: PRECT\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/GPCP_v3.2/GPCP_v3.2-PRECT-JJA-polar_N_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/GPCP_v3.2/GPCP_v3.2-PRECT-JJA-polar_N_test.nc\n", + " * var_key: PRECT\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/GPCP_v3.2/GPCP_v3.2-PRECT-JJA-polar_S_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/GPCP_v3.2/GPCP_v3.2-PRECT-JJA-polar_S_ref.nc\n", + " * var_key: PRECT\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/GPCP_v3.2/GPCP_v3.2-PRECT-JJA-polar_S_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/GPCP_v3.2/GPCP_v3.2-PRECT-JJA-polar_S_test.nc\n", + " * var_key: PRECT\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2/MERRA2-LHFLX-ANN-polar_N_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/MERRA2/MERRA2-LHFLX-ANN-polar_N_ref.nc\n", + " * var_key: LHFLX\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2/MERRA2-LHFLX-ANN-polar_N_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/MERRA2/MERRA2-LHFLX-ANN-polar_N_test.nc\n", + " * var_key: LHFLX\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2/MERRA2-LHFLX-ANN-polar_S_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/MERRA2/MERRA2-LHFLX-ANN-polar_S_ref.nc\n", + " * var_key: LHFLX\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2/MERRA2-LHFLX-ANN-polar_S_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/MERRA2/MERRA2-LHFLX-ANN-polar_S_test.nc\n", + " * var_key: LHFLX\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2/MERRA2-LHFLX-JJA-polar_N_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/MERRA2/MERRA2-LHFLX-JJA-polar_N_ref.nc\n", + " * var_key: LHFLX\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2/MERRA2-LHFLX-JJA-polar_N_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/MERRA2/MERRA2-LHFLX-JJA-polar_N_test.nc\n", + " * var_key: LHFLX\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2/MERRA2-LHFLX-JJA-polar_S_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/MERRA2/MERRA2-LHFLX-JJA-polar_S_ref.nc\n", + " * var_key: LHFLX\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2/MERRA2-LHFLX-JJA-polar_S_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/MERRA2/MERRA2-LHFLX-JJA-polar_S_test.nc\n", + " * var_key: LHFLX\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2/MERRA2-PRECT-ANN-polar_N_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/MERRA2/MERRA2-PRECT-ANN-polar_N_ref.nc\n", + " * var_key: PRECT\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2/MERRA2-PRECT-ANN-polar_N_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/MERRA2/MERRA2-PRECT-ANN-polar_N_test.nc\n", + " * var_key: PRECT\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2/MERRA2-PRECT-ANN-polar_S_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/MERRA2/MERRA2-PRECT-ANN-polar_S_ref.nc\n", + " * var_key: PRECT\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2/MERRA2-PRECT-ANN-polar_S_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/MERRA2/MERRA2-PRECT-ANN-polar_S_test.nc\n", + " * var_key: PRECT\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2/MERRA2-PRECT-JJA-polar_N_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/MERRA2/MERRA2-PRECT-JJA-polar_N_ref.nc\n", + " * var_key: PRECT\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2/MERRA2-PRECT-JJA-polar_N_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/MERRA2/MERRA2-PRECT-JJA-polar_N_test.nc\n", + " * var_key: PRECT\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2/MERRA2-PRECT-JJA-polar_S_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/MERRA2/MERRA2-PRECT-JJA-polar_S_ref.nc\n", + " * var_key: PRECT\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2/MERRA2-PRECT-JJA-polar_S_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/MERRA2/MERRA2-PRECT-JJA-polar_S_test.nc\n", + " * var_key: PRECT\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2/MERRA2-PSL-ANN-polar_N_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/MERRA2/MERRA2-PSL-ANN-polar_N_ref.nc\n", + " * var_key: PSL\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2/MERRA2-PSL-ANN-polar_N_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/MERRA2/MERRA2-PSL-ANN-polar_N_test.nc\n", + " * var_key: PSL\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2/MERRA2-PSL-ANN-polar_S_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/MERRA2/MERRA2-PSL-ANN-polar_S_ref.nc\n", + " * var_key: PSL\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2/MERRA2-PSL-ANN-polar_S_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/MERRA2/MERRA2-PSL-ANN-polar_S_test.nc\n", + " * var_key: PSL\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2/MERRA2-PSL-JJA-polar_N_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/MERRA2/MERRA2-PSL-JJA-polar_N_ref.nc\n", + " * var_key: PSL\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2/MERRA2-PSL-JJA-polar_N_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/MERRA2/MERRA2-PSL-JJA-polar_N_test.nc\n", + " * var_key: PSL\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2/MERRA2-PSL-JJA-polar_S_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/MERRA2/MERRA2-PSL-JJA-polar_S_ref.nc\n", + " * var_key: PSL\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2/MERRA2-PSL-JJA-polar_S_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/MERRA2/MERRA2-PSL-JJA-polar_S_test.nc\n", + " * var_key: PSL\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2/MERRA2-T-200-ANN-polar_N_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/MERRA2/MERRA2-T-200-ANN-polar_N_ref.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2/MERRA2-T-200-ANN-polar_N_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/MERRA2/MERRA2-T-200-ANN-polar_N_test.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2/MERRA2-T-200-ANN-polar_S_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/MERRA2/MERRA2-T-200-ANN-polar_S_ref.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2/MERRA2-T-200-ANN-polar_S_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/MERRA2/MERRA2-T-200-ANN-polar_S_test.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2/MERRA2-T-200-JJA-polar_N_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/MERRA2/MERRA2-T-200-JJA-polar_N_ref.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2/MERRA2-T-200-JJA-polar_N_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/MERRA2/MERRA2-T-200-JJA-polar_N_test.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2/MERRA2-T-200-JJA-polar_S_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/MERRA2/MERRA2-T-200-JJA-polar_S_ref.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2/MERRA2-T-200-JJA-polar_S_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/MERRA2/MERRA2-T-200-JJA-polar_S_test.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2/MERRA2-T-850-ANN-polar_N_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/MERRA2/MERRA2-T-850-ANN-polar_N_ref.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2/MERRA2-T-850-ANN-polar_N_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/MERRA2/MERRA2-T-850-ANN-polar_N_test.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2/MERRA2-T-850-ANN-polar_S_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/MERRA2/MERRA2-T-850-ANN-polar_S_ref.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2/MERRA2-T-850-ANN-polar_S_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/MERRA2/MERRA2-T-850-ANN-polar_S_test.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2/MERRA2-T-850-JJA-polar_N_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/MERRA2/MERRA2-T-850-JJA-polar_N_ref.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2/MERRA2-T-850-JJA-polar_N_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/MERRA2/MERRA2-T-850-JJA-polar_N_test.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2/MERRA2-T-850-JJA-polar_S_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/MERRA2/MERRA2-T-850-JJA-polar_S_ref.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2/MERRA2-T-850-JJA-polar_S_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/MERRA2/MERRA2-T-850-JJA-polar_S_test.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2/MERRA2-TAUXY-ANN-polar_N_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/MERRA2/MERRA2-TAUXY-ANN-polar_N_ref.nc\n", + " * var_key: TAUXY\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2/MERRA2-TAUXY-ANN-polar_N_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/MERRA2/MERRA2-TAUXY-ANN-polar_N_test.nc\n", + " * var_key: TAUXY\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2/MERRA2-TAUXY-ANN-polar_S_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/MERRA2/MERRA2-TAUXY-ANN-polar_S_ref.nc\n", + " * var_key: TAUXY\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2/MERRA2-TAUXY-ANN-polar_S_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/MERRA2/MERRA2-TAUXY-ANN-polar_S_test.nc\n", + " * var_key: TAUXY\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2/MERRA2-TAUXY-JJA-polar_N_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/MERRA2/MERRA2-TAUXY-JJA-polar_N_ref.nc\n", + " * var_key: TAUXY\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2/MERRA2-TAUXY-JJA-polar_N_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/MERRA2/MERRA2-TAUXY-JJA-polar_N_test.nc\n", + " * var_key: TAUXY\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2/MERRA2-TAUXY-JJA-polar_S_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/MERRA2/MERRA2-TAUXY-JJA-polar_S_ref.nc\n", + " * var_key: TAUXY\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2/MERRA2-TAUXY-JJA-polar_S_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/MERRA2/MERRA2-TAUXY-JJA-polar_S_test.nc\n", + " * var_key: TAUXY\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2/MERRA2-TMQ-ANN-polar_N_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/MERRA2/MERRA2-TMQ-ANN-polar_N_ref.nc\n", + " * var_key: TMQ\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2/MERRA2-TMQ-ANN-polar_N_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/MERRA2/MERRA2-TMQ-ANN-polar_N_test.nc\n", + " * var_key: TMQ\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2/MERRA2-TMQ-ANN-polar_S_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/MERRA2/MERRA2-TMQ-ANN-polar_S_ref.nc\n", + " * var_key: TMQ\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2/MERRA2-TMQ-ANN-polar_S_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/MERRA2/MERRA2-TMQ-ANN-polar_S_test.nc\n", + " * var_key: TMQ\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2/MERRA2-TMQ-JJA-polar_N_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/MERRA2/MERRA2-TMQ-JJA-polar_N_ref.nc\n", + " * var_key: TMQ\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2/MERRA2-TMQ-JJA-polar_N_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/MERRA2/MERRA2-TMQ-JJA-polar_N_test.nc\n", + " * var_key: TMQ\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2/MERRA2-TMQ-JJA-polar_S_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/MERRA2/MERRA2-TMQ-JJA-polar_S_ref.nc\n", + " * var_key: TMQ\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2/MERRA2-TMQ-JJA-polar_S_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/MERRA2/MERRA2-TMQ-JJA-polar_S_test.nc\n", + " * var_key: TMQ\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2/MERRA2-TREFHT-ANN-polar_N_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/MERRA2/MERRA2-TREFHT-ANN-polar_N_ref.nc\n", + " * var_key: TREFHT\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2/MERRA2-TREFHT-ANN-polar_N_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/MERRA2/MERRA2-TREFHT-ANN-polar_N_test.nc\n", + " * var_key: TREFHT\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2/MERRA2-TREFHT-ANN-polar_S_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/MERRA2/MERRA2-TREFHT-ANN-polar_S_ref.nc\n", + " * var_key: TREFHT\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2/MERRA2-TREFHT-ANN-polar_S_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/MERRA2/MERRA2-TREFHT-ANN-polar_S_test.nc\n", + " * var_key: TREFHT\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2/MERRA2-TREFHT-JJA-polar_N_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/MERRA2/MERRA2-TREFHT-JJA-polar_N_ref.nc\n", + " * var_key: TREFHT\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2/MERRA2-TREFHT-JJA-polar_N_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/MERRA2/MERRA2-TREFHT-JJA-polar_N_test.nc\n", + " * var_key: TREFHT\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2/MERRA2-TREFHT-JJA-polar_S_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/MERRA2/MERRA2-TREFHT-JJA-polar_S_ref.nc\n", + " * var_key: TREFHT\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2/MERRA2-TREFHT-JJA-polar_S_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/MERRA2/MERRA2-TREFHT-JJA-polar_S_test.nc\n", + " * var_key: TREFHT\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2/MERRA2-TREFMNAV-ANN-polar_N_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/MERRA2/MERRA2-TREFMNAV-ANN-polar_N_ref.nc\n", + " * var_key: TREFMNAV\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2/MERRA2-TREFMNAV-ANN-polar_N_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/MERRA2/MERRA2-TREFMNAV-ANN-polar_N_test.nc\n", + " * var_key: TREFMNAV\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2/MERRA2-TREFMNAV-ANN-polar_S_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/MERRA2/MERRA2-TREFMNAV-ANN-polar_S_ref.nc\n", + " * var_key: TREFMNAV\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2/MERRA2-TREFMNAV-ANN-polar_S_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/MERRA2/MERRA2-TREFMNAV-ANN-polar_S_test.nc\n", + " * var_key: TREFMNAV\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2/MERRA2-TREFMNAV-JJA-polar_N_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/MERRA2/MERRA2-TREFMNAV-JJA-polar_N_ref.nc\n", + " * var_key: TREFMNAV\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2/MERRA2-TREFMNAV-JJA-polar_N_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/MERRA2/MERRA2-TREFMNAV-JJA-polar_N_test.nc\n", + " * var_key: TREFMNAV\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2/MERRA2-TREFMNAV-JJA-polar_S_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/MERRA2/MERRA2-TREFMNAV-JJA-polar_S_ref.nc\n", + " * var_key: TREFMNAV\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2/MERRA2-TREFMNAV-JJA-polar_S_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/MERRA2/MERRA2-TREFMNAV-JJA-polar_S_test.nc\n", + " * var_key: TREFMNAV\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2/MERRA2-TREFMXAV-ANN-polar_N_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/MERRA2/MERRA2-TREFMXAV-ANN-polar_N_ref.nc\n", + " * var_key: TREFMXAV\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2/MERRA2-TREFMXAV-ANN-polar_N_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/MERRA2/MERRA2-TREFMXAV-ANN-polar_N_test.nc\n", + " * var_key: TREFMXAV\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2/MERRA2-TREFMXAV-ANN-polar_S_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/MERRA2/MERRA2-TREFMXAV-ANN-polar_S_ref.nc\n", + " * var_key: TREFMXAV\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2/MERRA2-TREFMXAV-ANN-polar_S_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/MERRA2/MERRA2-TREFMXAV-ANN-polar_S_test.nc\n", + " * var_key: TREFMXAV\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2/MERRA2-TREFMXAV-JJA-polar_N_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/MERRA2/MERRA2-TREFMXAV-JJA-polar_N_ref.nc\n", + " * var_key: TREFMXAV\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2/MERRA2-TREFMXAV-JJA-polar_N_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/MERRA2/MERRA2-TREFMXAV-JJA-polar_N_test.nc\n", + " * var_key: TREFMXAV\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2/MERRA2-TREFMXAV-JJA-polar_S_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/MERRA2/MERRA2-TREFMXAV-JJA-polar_S_ref.nc\n", + " * var_key: TREFMXAV\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2/MERRA2-TREFMXAV-JJA-polar_S_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/MERRA2/MERRA2-TREFMXAV-JJA-polar_S_test.nc\n", + " * var_key: TREFMXAV\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2/MERRA2-U-200-ANN-polar_N_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/MERRA2/MERRA2-U-200-ANN-polar_N_ref.nc\n", + " * var_key: U\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2/MERRA2-U-200-ANN-polar_N_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/MERRA2/MERRA2-U-200-ANN-polar_N_test.nc\n", + " * var_key: U\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2/MERRA2-U-200-ANN-polar_S_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/MERRA2/MERRA2-U-200-ANN-polar_S_ref.nc\n", + " * var_key: U\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2/MERRA2-U-200-ANN-polar_S_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/MERRA2/MERRA2-U-200-ANN-polar_S_test.nc\n", + " * var_key: U\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2/MERRA2-U-200-JJA-polar_N_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/MERRA2/MERRA2-U-200-JJA-polar_N_ref.nc\n", + " * var_key: U\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2/MERRA2-U-200-JJA-polar_N_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/MERRA2/MERRA2-U-200-JJA-polar_N_test.nc\n", + " * var_key: U\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2/MERRA2-U-200-JJA-polar_S_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/MERRA2/MERRA2-U-200-JJA-polar_S_ref.nc\n", + " * var_key: U\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2/MERRA2-U-200-JJA-polar_S_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/MERRA2/MERRA2-U-200-JJA-polar_S_test.nc\n", + " * var_key: U\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2/MERRA2-U-850-ANN-polar_N_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/MERRA2/MERRA2-U-850-ANN-polar_N_ref.nc\n", + " * var_key: U\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2/MERRA2-U-850-ANN-polar_N_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/MERRA2/MERRA2-U-850-ANN-polar_N_test.nc\n", + " * var_key: U\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2/MERRA2-U-850-ANN-polar_S_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/MERRA2/MERRA2-U-850-ANN-polar_S_ref.nc\n", + " * var_key: U\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2/MERRA2-U-850-ANN-polar_S_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/MERRA2/MERRA2-U-850-ANN-polar_S_test.nc\n", + " * var_key: U\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2/MERRA2-U-850-JJA-polar_N_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/MERRA2/MERRA2-U-850-JJA-polar_N_ref.nc\n", + " * var_key: U\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2/MERRA2-U-850-JJA-polar_N_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/MERRA2/MERRA2-U-850-JJA-polar_N_test.nc\n", + " * var_key: U\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2/MERRA2-U-850-JJA-polar_S_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/MERRA2/MERRA2-U-850-JJA-polar_S_ref.nc\n", + " * var_key: U\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2/MERRA2-U-850-JJA-polar_S_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/MERRA2/MERRA2-U-850-JJA-polar_S_test.nc\n", + " * var_key: U\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2/MERRA2-Z3-500-ANN-polar_N_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/MERRA2/MERRA2-Z3-500-ANN-polar_N_ref.nc\n", + " * var_key: Z3\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2/MERRA2-Z3-500-ANN-polar_N_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/MERRA2/MERRA2-Z3-500-ANN-polar_N_test.nc\n", + " * var_key: Z3\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2/MERRA2-Z3-500-ANN-polar_S_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/MERRA2/MERRA2-Z3-500-ANN-polar_S_ref.nc\n", + " * var_key: Z3\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2/MERRA2-Z3-500-ANN-polar_S_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/MERRA2/MERRA2-Z3-500-ANN-polar_S_test.nc\n", + " * var_key: Z3\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2/MERRA2-Z3-500-JJA-polar_N_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/MERRA2/MERRA2-Z3-500-JJA-polar_N_ref.nc\n", + " * var_key: Z3\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2/MERRA2-Z3-500-JJA-polar_N_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/MERRA2/MERRA2-Z3-500-JJA-polar_N_test.nc\n", + " * var_key: Z3\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2/MERRA2-Z3-500-JJA-polar_S_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/MERRA2/MERRA2-Z3-500-JJA-polar_S_ref.nc\n", + " * var_key: Z3\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2/MERRA2-Z3-500-JJA-polar_S_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/MERRA2/MERRA2-Z3-500-JJA-polar_S_test.nc\n", + " * var_key: Z3\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/SST_CL_HadISST/HadISST_CL-SST-ANN-polar_N_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/SST_CL_HadISST/HadISST_CL-SST-ANN-polar_N_ref.nc\n", + " * var_key: SST\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/SST_CL_HadISST/HadISST_CL-SST-ANN-polar_N_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/SST_CL_HadISST/HadISST_CL-SST-ANN-polar_N_test.nc\n", + " * var_key: SST\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/SST_CL_HadISST/HadISST_CL-SST-ANN-polar_S_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/SST_CL_HadISST/HadISST_CL-SST-ANN-polar_S_ref.nc\n", + " * var_key: SST\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/SST_CL_HadISST/HadISST_CL-SST-ANN-polar_S_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/SST_CL_HadISST/HadISST_CL-SST-ANN-polar_S_test.nc\n", + " * var_key: SST\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/SST_CL_HadISST/HadISST_CL-SST-JJA-polar_N_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/SST_CL_HadISST/HadISST_CL-SST-JJA-polar_N_ref.nc\n", + " * var_key: SST\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/SST_CL_HadISST/HadISST_CL-SST-JJA-polar_N_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/SST_CL_HadISST/HadISST_CL-SST-JJA-polar_N_test.nc\n", + " * var_key: SST\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/SST_CL_HadISST/HadISST_CL-SST-JJA-polar_S_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/SST_CL_HadISST/HadISST_CL-SST-JJA-polar_S_ref.nc\n", + " * var_key: SST\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/SST_CL_HadISST/HadISST_CL-SST-JJA-polar_S_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/SST_CL_HadISST/HadISST_CL-SST-JJA-polar_S_test.nc\n", + " * var_key: SST\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/SST_PD_HadISST/HadISST_PD-SST-ANN-polar_N_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/SST_PD_HadISST/HadISST_PD-SST-ANN-polar_N_ref.nc\n", + " * var_key: SST\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/SST_PD_HadISST/HadISST_PD-SST-ANN-polar_N_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/SST_PD_HadISST/HadISST_PD-SST-ANN-polar_N_test.nc\n", + " * var_key: SST\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/SST_PD_HadISST/HadISST_PD-SST-ANN-polar_S_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/SST_PD_HadISST/HadISST_PD-SST-ANN-polar_S_ref.nc\n", + " * var_key: SST\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/SST_PD_HadISST/HadISST_PD-SST-ANN-polar_S_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/SST_PD_HadISST/HadISST_PD-SST-ANN-polar_S_test.nc\n", + " * var_key: SST\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/SST_PD_HadISST/HadISST_PD-SST-JJA-polar_N_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/SST_PD_HadISST/HadISST_PD-SST-JJA-polar_N_ref.nc\n", + " * var_key: SST\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/SST_PD_HadISST/HadISST_PD-SST-JJA-polar_N_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/SST_PD_HadISST/HadISST_PD-SST-JJA-polar_N_test.nc\n", + " * var_key: SST\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/SST_PD_HadISST/HadISST_PD-SST-JJA-polar_S_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/SST_PD_HadISST/HadISST_PD-SST-JJA-polar_S_ref.nc\n", + " * var_key: SST\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/SST_PD_HadISST/HadISST_PD-SST-JJA-polar_S_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/SST_PD_HadISST/HadISST_PD-SST-JJA-polar_S_test.nc\n", + " * var_key: SST\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/SST_PI_HadISST/HadISST_PI-SST-ANN-polar_N_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/SST_PI_HadISST/HadISST_PI-SST-ANN-polar_N_ref.nc\n", + " * var_key: SST\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/SST_PI_HadISST/HadISST_PI-SST-ANN-polar_N_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/SST_PI_HadISST/HadISST_PI-SST-ANN-polar_N_test.nc\n", + " * var_key: SST\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/SST_PI_HadISST/HadISST_PI-SST-ANN-polar_S_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/SST_PI_HadISST/HadISST_PI-SST-ANN-polar_S_ref.nc\n", + " * var_key: SST\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/SST_PI_HadISST/HadISST_PI-SST-ANN-polar_S_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/SST_PI_HadISST/HadISST_PI-SST-ANN-polar_S_test.nc\n", + " * var_key: SST\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/SST_PI_HadISST/HadISST_PI-SST-JJA-polar_N_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/SST_PI_HadISST/HadISST_PI-SST-JJA-polar_N_ref.nc\n", + " * var_key: SST\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/SST_PI_HadISST/HadISST_PI-SST-JJA-polar_N_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/SST_PI_HadISST/HadISST_PI-SST-JJA-polar_N_test.nc\n", + " * var_key: SST\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/SST_PI_HadISST/HadISST_PI-SST-JJA-polar_S_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/SST_PI_HadISST/HadISST_PI-SST-JJA-polar_S_ref.nc\n", + " * var_key: SST\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/SST_PI_HadISST/HadISST_PI-SST-JJA-polar_S_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/SST_PI_HadISST/HadISST_PI-SST-JJA-polar_S_test.nc\n", + " * var_key: SST\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d/ERA5/ERA5-OMEGA-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d/ERA5/ERA5-OMEGA-ANN-global_ref.nc\n", + " * var_key: OMEGA\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d/ERA5/ERA5-OMEGA-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d/ERA5/ERA5-OMEGA-ANN-global_test.nc\n", + " * var_key: OMEGA\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d/ERA5/ERA5-OMEGA-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d/ERA5/ERA5-OMEGA-JJA-global_ref.nc\n", + " * var_key: OMEGA\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d/ERA5/ERA5-OMEGA-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d/ERA5/ERA5-OMEGA-JJA-global_test.nc\n", + " * var_key: OMEGA\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d/ERA5/ERA5-Q-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d/ERA5/ERA5-Q-ANN-global_ref.nc\n", + " * var_key: Q\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d/ERA5/ERA5-Q-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d/ERA5/ERA5-Q-ANN-global_test.nc\n", + " * var_key: Q\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d/ERA5/ERA5-Q-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d/ERA5/ERA5-Q-JJA-global_ref.nc\n", + " * var_key: Q\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d/ERA5/ERA5-Q-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d/ERA5/ERA5-Q-JJA-global_test.nc\n", + " * var_key: Q\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d/ERA5/ERA5-RELHUM-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d/ERA5/ERA5-RELHUM-ANN-global_ref.nc\n", + " * var_key: RELHUM\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d/ERA5/ERA5-RELHUM-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d/ERA5/ERA5-RELHUM-ANN-global_test.nc\n", + " * var_key: RELHUM\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d/ERA5/ERA5-RELHUM-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d/ERA5/ERA5-RELHUM-JJA-global_ref.nc\n", + " * var_key: RELHUM\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d/ERA5/ERA5-RELHUM-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d/ERA5/ERA5-RELHUM-JJA-global_test.nc\n", + " * var_key: RELHUM\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d/ERA5/ERA5-T-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d/ERA5/ERA5-T-ANN-global_ref.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d/ERA5/ERA5-T-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d/ERA5/ERA5-T-ANN-global_test.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d/ERA5/ERA5-T-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d/ERA5/ERA5-T-JJA-global_ref.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d/ERA5/ERA5-T-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d/ERA5/ERA5-T-JJA-global_test.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d/ERA5/ERA5-U-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d/ERA5/ERA5-U-ANN-global_ref.nc\n", + " * var_key: U\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d/ERA5/ERA5-U-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d/ERA5/ERA5-U-ANN-global_test.nc\n", + " * var_key: U\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d/ERA5/ERA5-U-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d/ERA5/ERA5-U-JJA-global_ref.nc\n", + " * var_key: U\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d/ERA5/ERA5-U-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d/ERA5/ERA5-U-JJA-global_test.nc\n", + " * var_key: U\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d/MERRA2/MERRA2-OMEGA-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d/MERRA2/MERRA2-OMEGA-ANN-global_ref.nc\n", + " * var_key: OMEGA\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d/MERRA2/MERRA2-OMEGA-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d/MERRA2/MERRA2-OMEGA-ANN-global_test.nc\n", + " * var_key: OMEGA\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d/MERRA2/MERRA2-OMEGA-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d/MERRA2/MERRA2-OMEGA-JJA-global_ref.nc\n", + " * var_key: OMEGA\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d/MERRA2/MERRA2-OMEGA-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d/MERRA2/MERRA2-OMEGA-JJA-global_test.nc\n", + " * var_key: OMEGA\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d/MERRA2/MERRA2-Q-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d/MERRA2/MERRA2-Q-ANN-global_ref.nc\n", + " * var_key: Q\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d/MERRA2/MERRA2-Q-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d/MERRA2/MERRA2-Q-ANN-global_test.nc\n", + " * var_key: Q\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d/MERRA2/MERRA2-Q-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d/MERRA2/MERRA2-Q-JJA-global_ref.nc\n", + " * var_key: Q\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d/MERRA2/MERRA2-Q-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d/MERRA2/MERRA2-Q-JJA-global_test.nc\n", + " * var_key: Q\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d/MERRA2/MERRA2-RELHUM-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d/MERRA2/MERRA2-RELHUM-ANN-global_ref.nc\n", + " * var_key: RELHUM\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d/MERRA2/MERRA2-RELHUM-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d/MERRA2/MERRA2-RELHUM-ANN-global_test.nc\n", + " * var_key: RELHUM\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d/MERRA2/MERRA2-RELHUM-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d/MERRA2/MERRA2-RELHUM-JJA-global_ref.nc\n", + " * var_key: RELHUM\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d/MERRA2/MERRA2-RELHUM-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d/MERRA2/MERRA2-RELHUM-JJA-global_test.nc\n", + " * var_key: RELHUM\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d/MERRA2/MERRA2-T-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d/MERRA2/MERRA2-T-ANN-global_ref.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d/MERRA2/MERRA2-T-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d/MERRA2/MERRA2-T-ANN-global_test.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d/MERRA2/MERRA2-T-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d/MERRA2/MERRA2-T-JJA-global_ref.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d/MERRA2/MERRA2-T-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d/MERRA2/MERRA2-T-JJA-global_test.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d/MERRA2/MERRA2-U-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d/MERRA2/MERRA2-U-ANN-global_ref.nc\n", + " * var_key: U\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d/MERRA2/MERRA2-U-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d/MERRA2/MERRA2-U-ANN-global_test.nc\n", + " * var_key: U\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d/MERRA2/MERRA2-U-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d/MERRA2/MERRA2-U-JJA-global_ref.nc\n", + " * var_key: U\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d/MERRA2/MERRA2-U-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d/MERRA2/MERRA2-U-JJA-global_test.nc\n", + " * var_key: U\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/ERA5/ERA5-OMEGA-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d_stratosphere/ERA5/ERA5-OMEGA-ANN-global_ref.nc\n", + " * var_key: OMEGA\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/ERA5/ERA5-OMEGA-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d_stratosphere/ERA5/ERA5-OMEGA-ANN-global_test.nc\n", + " * var_key: OMEGA\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/ERA5/ERA5-OMEGA-DJF-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d_stratosphere/ERA5/ERA5-OMEGA-DJF-global_ref.nc\n", + " * var_key: OMEGA\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/ERA5/ERA5-OMEGA-DJF-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d_stratosphere/ERA5/ERA5-OMEGA-DJF-global_test.nc\n", + " * var_key: OMEGA\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/ERA5/ERA5-OMEGA-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d_stratosphere/ERA5/ERA5-OMEGA-JJA-global_ref.nc\n", + " * var_key: OMEGA\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/ERA5/ERA5-OMEGA-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d_stratosphere/ERA5/ERA5-OMEGA-JJA-global_test.nc\n", + " * var_key: OMEGA\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/ERA5/ERA5-OMEGA-MAM-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d_stratosphere/ERA5/ERA5-OMEGA-MAM-global_ref.nc\n", + " * var_key: OMEGA\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/ERA5/ERA5-OMEGA-MAM-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d_stratosphere/ERA5/ERA5-OMEGA-MAM-global_test.nc\n", + " * var_key: OMEGA\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/ERA5/ERA5-OMEGA-SON-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d_stratosphere/ERA5/ERA5-OMEGA-SON-global_ref.nc\n", + " * var_key: OMEGA\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/ERA5/ERA5-OMEGA-SON-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d_stratosphere/ERA5/ERA5-OMEGA-SON-global_test.nc\n", + " * var_key: OMEGA\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/ERA5/ERA5-Q-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d_stratosphere/ERA5/ERA5-Q-ANN-global_ref.nc\n", + " * var_key: Q\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/ERA5/ERA5-Q-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d_stratosphere/ERA5/ERA5-Q-ANN-global_test.nc\n", + " * var_key: Q\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/ERA5/ERA5-Q-DJF-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d_stratosphere/ERA5/ERA5-Q-DJF-global_ref.nc\n", + " * var_key: Q\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/ERA5/ERA5-Q-DJF-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d_stratosphere/ERA5/ERA5-Q-DJF-global_test.nc\n", + " * var_key: Q\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/ERA5/ERA5-Q-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d_stratosphere/ERA5/ERA5-Q-JJA-global_ref.nc\n", + " * var_key: Q\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/ERA5/ERA5-Q-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d_stratosphere/ERA5/ERA5-Q-JJA-global_test.nc\n", + " * var_key: Q\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/ERA5/ERA5-Q-MAM-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d_stratosphere/ERA5/ERA5-Q-MAM-global_ref.nc\n", + " * var_key: Q\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/ERA5/ERA5-Q-MAM-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d_stratosphere/ERA5/ERA5-Q-MAM-global_test.nc\n", + " * var_key: Q\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/ERA5/ERA5-Q-SON-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d_stratosphere/ERA5/ERA5-Q-SON-global_ref.nc\n", + " * var_key: Q\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/ERA5/ERA5-Q-SON-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d_stratosphere/ERA5/ERA5-Q-SON-global_test.nc\n", + " * var_key: Q\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/ERA5/ERA5-RELHUM-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d_stratosphere/ERA5/ERA5-RELHUM-ANN-global_ref.nc\n", + " * var_key: RELHUM\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/ERA5/ERA5-RELHUM-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d_stratosphere/ERA5/ERA5-RELHUM-ANN-global_test.nc\n", + " * var_key: RELHUM\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/ERA5/ERA5-RELHUM-DJF-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d_stratosphere/ERA5/ERA5-RELHUM-DJF-global_ref.nc\n", + " * var_key: RELHUM\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/ERA5/ERA5-RELHUM-DJF-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d_stratosphere/ERA5/ERA5-RELHUM-DJF-global_test.nc\n", + " * var_key: RELHUM\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/ERA5/ERA5-RELHUM-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d_stratosphere/ERA5/ERA5-RELHUM-JJA-global_ref.nc\n", + " * var_key: RELHUM\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/ERA5/ERA5-RELHUM-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d_stratosphere/ERA5/ERA5-RELHUM-JJA-global_test.nc\n", + " * var_key: RELHUM\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/ERA5/ERA5-RELHUM-MAM-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d_stratosphere/ERA5/ERA5-RELHUM-MAM-global_ref.nc\n", + " * var_key: RELHUM\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/ERA5/ERA5-RELHUM-MAM-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d_stratosphere/ERA5/ERA5-RELHUM-MAM-global_test.nc\n", + " * var_key: RELHUM\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/ERA5/ERA5-RELHUM-SON-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d_stratosphere/ERA5/ERA5-RELHUM-SON-global_ref.nc\n", + " * var_key: RELHUM\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/ERA5/ERA5-RELHUM-SON-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d_stratosphere/ERA5/ERA5-RELHUM-SON-global_test.nc\n", + " * var_key: RELHUM\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/ERA5/ERA5-T-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d_stratosphere/ERA5/ERA5-T-ANN-global_ref.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/ERA5/ERA5-T-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d_stratosphere/ERA5/ERA5-T-ANN-global_test.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/ERA5/ERA5-T-DJF-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d_stratosphere/ERA5/ERA5-T-DJF-global_ref.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/ERA5/ERA5-T-DJF-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d_stratosphere/ERA5/ERA5-T-DJF-global_test.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/ERA5/ERA5-T-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d_stratosphere/ERA5/ERA5-T-JJA-global_ref.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/ERA5/ERA5-T-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d_stratosphere/ERA5/ERA5-T-JJA-global_test.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/ERA5/ERA5-T-MAM-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d_stratosphere/ERA5/ERA5-T-MAM-global_ref.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/ERA5/ERA5-T-MAM-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d_stratosphere/ERA5/ERA5-T-MAM-global_test.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/ERA5/ERA5-T-SON-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d_stratosphere/ERA5/ERA5-T-SON-global_ref.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/ERA5/ERA5-T-SON-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d_stratosphere/ERA5/ERA5-T-SON-global_test.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/ERA5/ERA5-U-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d_stratosphere/ERA5/ERA5-U-ANN-global_ref.nc\n", + " * var_key: U\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/ERA5/ERA5-U-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d_stratosphere/ERA5/ERA5-U-ANN-global_test.nc\n", + " * var_key: U\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/ERA5/ERA5-U-DJF-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d_stratosphere/ERA5/ERA5-U-DJF-global_ref.nc\n", + " * var_key: U\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/ERA5/ERA5-U-DJF-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d_stratosphere/ERA5/ERA5-U-DJF-global_test.nc\n", + " * var_key: U\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/ERA5/ERA5-U-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d_stratosphere/ERA5/ERA5-U-JJA-global_ref.nc\n", + " * var_key: U\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/ERA5/ERA5-U-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d_stratosphere/ERA5/ERA5-U-JJA-global_test.nc\n", + " * var_key: U\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/ERA5/ERA5-U-MAM-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d_stratosphere/ERA5/ERA5-U-MAM-global_ref.nc\n", + " * var_key: U\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/ERA5/ERA5-U-MAM-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d_stratosphere/ERA5/ERA5-U-MAM-global_test.nc\n", + " * var_key: U\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/ERA5/ERA5-U-SON-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d_stratosphere/ERA5/ERA5-U-SON-global_ref.nc\n", + " * var_key: U\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/ERA5/ERA5-U-SON-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d_stratosphere/ERA5/ERA5-U-SON-global_test.nc\n", + " * var_key: U\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/MERRA2/MERRA2-OMEGA-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d_stratosphere/MERRA2/MERRA2-OMEGA-ANN-global_ref.nc\n", + " * var_key: OMEGA\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/MERRA2/MERRA2-OMEGA-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d_stratosphere/MERRA2/MERRA2-OMEGA-ANN-global_test.nc\n", + " * var_key: OMEGA\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/MERRA2/MERRA2-OMEGA-DJF-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d_stratosphere/MERRA2/MERRA2-OMEGA-DJF-global_ref.nc\n", + " * var_key: OMEGA\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/MERRA2/MERRA2-OMEGA-DJF-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d_stratosphere/MERRA2/MERRA2-OMEGA-DJF-global_test.nc\n", + " * var_key: OMEGA\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/MERRA2/MERRA2-OMEGA-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d_stratosphere/MERRA2/MERRA2-OMEGA-JJA-global_ref.nc\n", + " * var_key: OMEGA\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/MERRA2/MERRA2-OMEGA-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d_stratosphere/MERRA2/MERRA2-OMEGA-JJA-global_test.nc\n", + " * var_key: OMEGA\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/MERRA2/MERRA2-OMEGA-MAM-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d_stratosphere/MERRA2/MERRA2-OMEGA-MAM-global_ref.nc\n", + " * var_key: OMEGA\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/MERRA2/MERRA2-OMEGA-MAM-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d_stratosphere/MERRA2/MERRA2-OMEGA-MAM-global_test.nc\n", + " * var_key: OMEGA\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/MERRA2/MERRA2-OMEGA-SON-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d_stratosphere/MERRA2/MERRA2-OMEGA-SON-global_ref.nc\n", + " * var_key: OMEGA\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/MERRA2/MERRA2-OMEGA-SON-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d_stratosphere/MERRA2/MERRA2-OMEGA-SON-global_test.nc\n", + " * var_key: OMEGA\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/MERRA2/MERRA2-Q-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d_stratosphere/MERRA2/MERRA2-Q-ANN-global_ref.nc\n", + " * var_key: Q\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/MERRA2/MERRA2-Q-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d_stratosphere/MERRA2/MERRA2-Q-ANN-global_test.nc\n", + " * var_key: Q\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/MERRA2/MERRA2-Q-DJF-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d_stratosphere/MERRA2/MERRA2-Q-DJF-global_ref.nc\n", + " * var_key: Q\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/MERRA2/MERRA2-Q-DJF-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d_stratosphere/MERRA2/MERRA2-Q-DJF-global_test.nc\n", + " * var_key: Q\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/MERRA2/MERRA2-Q-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d_stratosphere/MERRA2/MERRA2-Q-JJA-global_ref.nc\n", + " * var_key: Q\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/MERRA2/MERRA2-Q-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d_stratosphere/MERRA2/MERRA2-Q-JJA-global_test.nc\n", + " * var_key: Q\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/MERRA2/MERRA2-Q-MAM-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d_stratosphere/MERRA2/MERRA2-Q-MAM-global_ref.nc\n", + " * var_key: Q\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/MERRA2/MERRA2-Q-MAM-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d_stratosphere/MERRA2/MERRA2-Q-MAM-global_test.nc\n", + " * var_key: Q\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/MERRA2/MERRA2-Q-SON-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d_stratosphere/MERRA2/MERRA2-Q-SON-global_ref.nc\n", + " * var_key: Q\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/MERRA2/MERRA2-Q-SON-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d_stratosphere/MERRA2/MERRA2-Q-SON-global_test.nc\n", + " * var_key: Q\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/MERRA2/MERRA2-RELHUM-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d_stratosphere/MERRA2/MERRA2-RELHUM-ANN-global_ref.nc\n", + " * var_key: RELHUM\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/MERRA2/MERRA2-RELHUM-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d_stratosphere/MERRA2/MERRA2-RELHUM-ANN-global_test.nc\n", + " * var_key: RELHUM\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/MERRA2/MERRA2-RELHUM-DJF-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d_stratosphere/MERRA2/MERRA2-RELHUM-DJF-global_ref.nc\n", + " * var_key: RELHUM\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/MERRA2/MERRA2-RELHUM-DJF-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d_stratosphere/MERRA2/MERRA2-RELHUM-DJF-global_test.nc\n", + " * var_key: RELHUM\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/MERRA2/MERRA2-RELHUM-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d_stratosphere/MERRA2/MERRA2-RELHUM-JJA-global_ref.nc\n", + " * var_key: RELHUM\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/MERRA2/MERRA2-RELHUM-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d_stratosphere/MERRA2/MERRA2-RELHUM-JJA-global_test.nc\n", + " * var_key: RELHUM\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/MERRA2/MERRA2-RELHUM-MAM-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d_stratosphere/MERRA2/MERRA2-RELHUM-MAM-global_ref.nc\n", + " * var_key: RELHUM\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/MERRA2/MERRA2-RELHUM-MAM-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d_stratosphere/MERRA2/MERRA2-RELHUM-MAM-global_test.nc\n", + " * var_key: RELHUM\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/MERRA2/MERRA2-RELHUM-SON-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d_stratosphere/MERRA2/MERRA2-RELHUM-SON-global_ref.nc\n", + " * var_key: RELHUM\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/MERRA2/MERRA2-RELHUM-SON-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d_stratosphere/MERRA2/MERRA2-RELHUM-SON-global_test.nc\n", + " * var_key: RELHUM\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/MERRA2/MERRA2-T-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d_stratosphere/MERRA2/MERRA2-T-ANN-global_ref.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/MERRA2/MERRA2-T-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d_stratosphere/MERRA2/MERRA2-T-ANN-global_test.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/MERRA2/MERRA2-T-DJF-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d_stratosphere/MERRA2/MERRA2-T-DJF-global_ref.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/MERRA2/MERRA2-T-DJF-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d_stratosphere/MERRA2/MERRA2-T-DJF-global_test.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/MERRA2/MERRA2-T-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d_stratosphere/MERRA2/MERRA2-T-JJA-global_ref.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/MERRA2/MERRA2-T-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d_stratosphere/MERRA2/MERRA2-T-JJA-global_test.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/MERRA2/MERRA2-T-MAM-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d_stratosphere/MERRA2/MERRA2-T-MAM-global_ref.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/MERRA2/MERRA2-T-MAM-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d_stratosphere/MERRA2/MERRA2-T-MAM-global_test.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/MERRA2/MERRA2-T-SON-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d_stratosphere/MERRA2/MERRA2-T-SON-global_ref.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/MERRA2/MERRA2-T-SON-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d_stratosphere/MERRA2/MERRA2-T-SON-global_test.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/MERRA2/MERRA2-U-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d_stratosphere/MERRA2/MERRA2-U-ANN-global_ref.nc\n", + " * var_key: U\n", + " \n", + "Not equal to tolerance rtol=0.0001, atol=0\n", + "\n", + "Mismatched elements: 16 / 3610 (0.443%)\n", + "Max absolute difference: 1.0069872e-07\n", + "Max relative difference: 1.48305291\n", + " x: array([[-8.003553e-08, 8.746594e-01, 1.610782e+00, ..., 9.277452e-01,\n", + " 4.884759e-01, 6.868504e-08],\n", + " [ 2.653300e-08, 8.899245e-01, 1.641026e+00, ..., 9.164927e-01,...\n", + " y: array([[-8.003553e-08, 8.746594e-01, 1.610782e+00, ..., 9.277452e-01,\n", + " 4.884759e-01, 6.868504e-08],\n", + " [ 3.507194e-08, 8.899245e-01, 1.641026e+00, ..., 9.164927e-01,...\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/MERRA2/MERRA2-U-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d_stratosphere/MERRA2/MERRA2-U-ANN-global_test.nc\n", + " * var_key: U\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/MERRA2/MERRA2-U-DJF-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d_stratosphere/MERRA2/MERRA2-U-DJF-global_ref.nc\n", + " * var_key: U\n", + " \n", + "Not equal to tolerance rtol=0.0001, atol=0\n", + "\n", + "Mismatched elements: 15 / 3610 (0.416%)\n", + "Max absolute difference: 1.27445411e-07\n", + "Max relative difference: 4.23812583\n", + " x: array([[-3.806716e-07, -6.959164e-01, -1.271045e+00, ..., 2.137929e+00,\n", + " 1.128679e+00, -2.220170e-07],\n", + " [-1.990935e-07, -4.508903e-01, -8.158624e-01, ..., 2.182571e+00,...\n", + " y: array([[-3.806716e-07, -6.959164e-01, -1.271045e+00, ..., 2.137929e+00,\n", + " 1.128679e+00, -2.220170e-07],\n", + " [-1.990864e-07, -4.508903e-01, -8.158624e-01, ..., 2.182571e+00,...\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/MERRA2/MERRA2-U-DJF-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d_stratosphere/MERRA2/MERRA2-U-DJF-global_test.nc\n", + " * var_key: U\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/MERRA2/MERRA2-U-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d_stratosphere/MERRA2/MERRA2-U-JJA-global_ref.nc\n", + " * var_key: U\n", + " \n", + "Not equal to tolerance rtol=0.0001, atol=0\n", + "\n", + "Mismatched elements: 14 / 3610 (0.388%)\n", + "Max absolute difference: 2.09578261e-07\n", + "Max relative difference: 0.00898989\n", + " x: array([[-9.994902e-07, 1.855954e+00, 3.415055e+00, ..., -1.025078e+00,\n", + " -5.548744e-01, -9.440600e-07],\n", + " [-9.595097e-07, 1.685548e+00, 3.103145e+00, ..., -8.308557e-01,...\n", + " y: array([[-9.994902e-07, 1.855954e+00, 3.415055e+00, ..., -1.025078e+00,\n", + " -5.548744e-01, -9.440600e-07],\n", + " [-9.595177e-07, 1.685548e+00, 3.103145e+00, ..., -8.308557e-01,...\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/MERRA2/MERRA2-U-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d_stratosphere/MERRA2/MERRA2-U-JJA-global_test.nc\n", + " * var_key: U\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/MERRA2/MERRA2-U-MAM-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d_stratosphere/MERRA2/MERRA2-U-MAM-global_ref.nc\n", + " * var_key: U\n", + " \n", + "Not equal to tolerance rtol=0.0001, atol=0\n", + "\n", + "Mismatched elements: 16 / 3610 (0.443%)\n", + "Max absolute difference: 1.09033987e-07\n", + "Max relative difference: 0.60114253\n", + " x: array([[ 3.487318e-07, 1.428209e+00, 2.630427e+00, ..., 1.707806e-01,\n", + " 9.107631e-02, -9.528271e-08],\n", + " [ 6.441070e-09, 1.292262e+00, 2.379988e+00, ..., 1.910028e-01,...\n", + " y: array([[ 3.487318e-07, 1.428209e+00, 2.630427e+00, ..., 1.707806e-01,\n", + " 9.107631e-02, -9.528271e-08],\n", + " [ 4.022796e-09, 1.292262e+00, 2.379988e+00, ..., 1.910028e-01,...\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/MERRA2/MERRA2-U-MAM-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d_stratosphere/MERRA2/MERRA2-U-MAM-global_test.nc\n", + " * var_key: U\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/MERRA2/MERRA2-U-SON-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d_stratosphere/MERRA2/MERRA2-U-SON-global_ref.nc\n", + " * var_key: U\n", + " \n", + "Not equal to tolerance rtol=0.0001, atol=0\n", + "\n", + "Mismatched elements: 16 / 3610 (0.443%)\n", + "Max absolute difference: 1.12679693e-07\n", + "Max relative difference: 0.06101062\n", + " x: array([[ 6.962348e-07, 8.762654e-01, 1.605988e+00, ..., 2.470426e+00,\n", + " 1.311890e+00, 1.454603e-06],\n", + " [ 1.235800e-06, 1.004880e+00, 1.845646e+00, ..., 2.164340e+00,...\n", + " y: array([[ 6.962348e-07, 8.762654e-01, 1.605988e+00, ..., 2.470426e+00,\n", + " 1.311890e+00, 1.454603e-06],\n", + " [ 1.227703e-06, 1.004880e+00, 1.845646e+00, ..., 2.164340e+00,...\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/MERRA2/MERRA2-U-SON-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d_stratosphere/MERRA2/MERRA2-U-SON-global_test.nc\n", + " * var_key: U\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-ALBEDO-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-ALBEDO-ANN-global_ref.nc\n", + " * var_key: ALBEDO\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-ALBEDO-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-ALBEDO-ANN-global_test.nc\n", + " * var_key: ALBEDO\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-ALBEDO-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-ALBEDO-JJA-global_ref.nc\n", + " * var_key: ALBEDO\n", + " \n", + "Not equal to tolerance rtol=0.0001, atol=0\n", + "\n", + "x and y nan location mismatch:\n", + " x: array([ inf, inf, inf, inf, inf, inf,\n", + " inf, inf, inf, 4.905806, 1.104448, 0.486332,\n", + " 1.070643, 0.9697 , 0.895325, 0.848754, 0.816032, 0.794203,...\n", + " y: array([ nan, nan, nan, nan,\n", + " nan, nan, nan, nan,\n", + " 2.497374e+06, 4.905807e+00, 1.104448e+00, 4.863323e-01,...\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-ALBEDO-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-ALBEDO-JJA-global_test.nc\n", + " * var_key: ALBEDO\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-ALBEDOC-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-ALBEDOC-ANN-global_ref.nc\n", + " * var_key: ALBEDOC\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-ALBEDOC-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-ALBEDOC-ANN-global_test.nc\n", + " * var_key: ALBEDOC\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-ALBEDOC-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-ALBEDOC-JJA-global_ref.nc\n", + " * var_key: ALBEDOC\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-ALBEDOC-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-ALBEDOC-JJA-global_test.nc\n", + " * var_key: ALBEDOC\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FLUT-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FLUT-ANN-global_ref.nc\n", + " * var_key: FLUT\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FLUT-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FLUT-ANN-global_test.nc\n", + " * var_key: FLUT\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FLUT-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FLUT-JJA-global_ref.nc\n", + " * var_key: FLUT\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FLUT-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FLUT-JJA-global_test.nc\n", + " * var_key: FLUT\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FLUTC-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FLUTC-ANN-global_ref.nc\n", + " * var_key: FLUTC\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FLUTC-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FLUTC-ANN-global_test.nc\n", + " * var_key: FLUTC\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FLUTC-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FLUTC-JJA-global_ref.nc\n", + " * var_key: FLUTC\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FLUTC-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FLUTC-JJA-global_test.nc\n", + " * var_key: FLUTC\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FSNTOA-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FSNTOA-ANN-global_ref.nc\n", + " * var_key: FSNTOA\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FSNTOA-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FSNTOA-ANN-global_test.nc\n", + " * var_key: FSNTOA\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FSNTOA-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FSNTOA-JJA-global_ref.nc\n", + " * var_key: FSNTOA\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FSNTOA-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FSNTOA-JJA-global_test.nc\n", + " * var_key: FSNTOA\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FSNTOAC-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FSNTOAC-ANN-global_ref.nc\n", + " * var_key: FSNTOAC\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FSNTOAC-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FSNTOAC-ANN-global_test.nc\n", + " * var_key: FSNTOAC\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FSNTOAC-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FSNTOAC-JJA-global_ref.nc\n", + " * var_key: FSNTOAC\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FSNTOAC-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FSNTOAC-JJA-global_test.nc\n", + " * var_key: FSNTOAC\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-LWCF-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-LWCF-ANN-global_ref.nc\n", + " * var_key: LWCF\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-LWCF-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-LWCF-ANN-global_test.nc\n", + " * var_key: LWCF\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-LWCF-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-LWCF-JJA-global_ref.nc\n", + " * var_key: LWCF\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-LWCF-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-LWCF-JJA-global_test.nc\n", + " * var_key: LWCF\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-NETCF-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-NETCF-ANN-global_ref.nc\n", + " * var_key: NETCF\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-NETCF-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-NETCF-ANN-global_test.nc\n", + " * var_key: NETCF\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-NETCF-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-NETCF-JJA-global_ref.nc\n", + " * var_key: NETCF\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-NETCF-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-NETCF-JJA-global_test.nc\n", + " * var_key: NETCF\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-RESTOM-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-RESTOM-ANN-global_ref.nc\n", + " * var_key: RESTOM\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-RESTOM-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-RESTOM-ANN-global_test.nc\n", + " * var_key: RESTOM\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-RESTOM-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-RESTOM-JJA-global_ref.nc\n", + " * var_key: RESTOM\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-RESTOM-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-RESTOM-JJA-global_test.nc\n", + " * var_key: RESTOM\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-SOLIN-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-SOLIN-ANN-global_ref.nc\n", + " * var_key: SOLIN\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-SOLIN-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-SOLIN-ANN-global_test.nc\n", + " * var_key: SOLIN\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-SOLIN-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-SOLIN-JJA-global_ref.nc\n", + " * var_key: SOLIN\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-SOLIN-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-SOLIN-JJA-global_test.nc\n", + " * var_key: SOLIN\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-SWCF-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-SWCF-ANN-global_ref.nc\n", + " * var_key: SWCF\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-SWCF-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-SWCF-ANN-global_test.nc\n", + " * var_key: SWCF\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-SWCF-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-SWCF-JJA-global_ref.nc\n", + " * var_key: SWCF\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-SWCF-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-SWCF-JJA-global_test.nc\n", + " * var_key: SWCF\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-ALBEDO_SRF-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-ALBEDO_SRF-ANN-global_ref.nc\n", + " * var_key: ALBEDO_SRF\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-ALBEDO_SRF-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-ALBEDO_SRF-ANN-global_test.nc\n", + " * var_key: ALBEDO_SRF\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-ALBEDO_SRF-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-ALBEDO_SRF-JJA-global_ref.nc\n", + " * var_key: ALBEDO_SRF\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-ALBEDO_SRF-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-ALBEDO_SRF-JJA-global_test.nc\n", + " * var_key: ALBEDO_SRF\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLDS-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLDS-ANN-global_ref.nc\n", + " * var_key: FLDS\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLDS-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLDS-ANN-global_test.nc\n", + " * var_key: FLDS\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLDS-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLDS-JJA-global_ref.nc\n", + " * var_key: FLDS\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLDS-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLDS-JJA-global_test.nc\n", + " * var_key: FLDS\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLDSC-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLDSC-ANN-global_ref.nc\n", + " * var_key: FLDSC\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLDSC-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLDSC-ANN-global_test.nc\n", + " * var_key: FLDSC\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLDSC-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLDSC-JJA-global_ref.nc\n", + " * var_key: FLDSC\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLDSC-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLDSC-JJA-global_test.nc\n", + " * var_key: FLDSC\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLNS-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLNS-ANN-global_ref.nc\n", + " * var_key: FLNS\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLNS-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLNS-ANN-global_test.nc\n", + " * var_key: FLNS\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLNS-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLNS-JJA-global_ref.nc\n", + " * var_key: FLNS\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLNS-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLNS-JJA-global_test.nc\n", + " * var_key: FLNS\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLNSC-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLNSC-ANN-global_ref.nc\n", + " * var_key: FLNSC\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLNSC-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLNSC-ANN-global_test.nc\n", + " * var_key: FLNSC\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLNSC-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLNSC-JJA-global_ref.nc\n", + " * var_key: FLNSC\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLNSC-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLNSC-JJA-global_test.nc\n", + " * var_key: FLNSC\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSDS-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSDS-ANN-global_ref.nc\n", + " * var_key: FSDS\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSDS-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSDS-ANN-global_test.nc\n", + " * var_key: FSDS\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSDS-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSDS-JJA-global_ref.nc\n", + " * var_key: FSDS\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSDS-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSDS-JJA-global_test.nc\n", + " * var_key: FSDS\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSDSC-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSDSC-ANN-global_ref.nc\n", + " * var_key: FSDSC\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSDSC-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSDSC-ANN-global_test.nc\n", + " * var_key: FSDSC\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSDSC-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSDSC-JJA-global_ref.nc\n", + " * var_key: FSDSC\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSDSC-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSDSC-JJA-global_test.nc\n", + " * var_key: FSDSC\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSNS-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSNS-ANN-global_ref.nc\n", + " * var_key: FSNS\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSNS-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSNS-ANN-global_test.nc\n", + " * var_key: FSNS\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSNS-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSNS-JJA-global_ref.nc\n", + " * var_key: FSNS\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSNS-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSNS-JJA-global_test.nc\n", + " * var_key: FSNS\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSNSC-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSNSC-ANN-global_ref.nc\n", + " * var_key: FSNSC\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSNSC-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSNSC-ANN-global_test.nc\n", + " * var_key: FSNSC\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSNSC-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSNSC-JJA-global_ref.nc\n", + " * var_key: FSNSC\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSNSC-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSNSC-JJA-global_test.nc\n", + " * var_key: FSNSC\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-LWCFSRF-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-LWCFSRF-ANN-global_ref.nc\n", + " * var_key: LWCFSRF\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-LWCFSRF-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-LWCFSRF-ANN-global_test.nc\n", + " * var_key: LWCFSRF\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-LWCFSRF-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-LWCFSRF-JJA-global_ref.nc\n", + " * var_key: LWCFSRF\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-LWCFSRF-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-LWCFSRF-JJA-global_test.nc\n", + " * var_key: LWCFSRF\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-SWCFSRF-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-SWCFSRF-ANN-global_ref.nc\n", + " * var_key: SWCFSRF\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-SWCFSRF-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-SWCFSRF-ANN-global_test.nc\n", + " * var_key: SWCFSRF\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-SWCFSRF-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-SWCFSRF-JJA-global_ref.nc\n", + " * var_key: SWCFSRF\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-SWCFSRF-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-SWCFSRF-JJA-global_test.nc\n", + " * var_key: SWCFSRF\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/COREv2_Flux/COREv2_Flux-PminusE-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/COREv2_Flux/COREv2_Flux-PminusE-ANN-global_ref.nc\n", + " * var_key: PminusE\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/COREv2_Flux/COREv2_Flux-PminusE-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/COREv2_Flux/COREv2_Flux-PminusE-ANN-global_test.nc\n", + " * var_key: PminusE\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/COREv2_Flux/COREv2_Flux-PminusE-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/COREv2_Flux/COREv2_Flux-PminusE-JJA-global_ref.nc\n", + " * var_key: PminusE\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/COREv2_Flux/COREv2_Flux-PminusE-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/COREv2_Flux/COREv2_Flux-PminusE-JJA-global_test.nc\n", + " * var_key: PminusE\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/Cloud Calipso/CALIPSOCOSP-CLDHGH_CAL-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/Cloud Calipso/CALIPSOCOSP-CLDHGH_CAL-ANN-global_ref.nc\n", + " * var_key: CLDHGH_CAL\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/Cloud Calipso/CALIPSOCOSP-CLDHGH_CAL-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/Cloud Calipso/CALIPSOCOSP-CLDHGH_CAL-ANN-global_test.nc\n", + " * var_key: CLDHGH_CAL\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/Cloud Calipso/CALIPSOCOSP-CLDHGH_CAL-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/Cloud Calipso/CALIPSOCOSP-CLDHGH_CAL-JJA-global_ref.nc\n", + " * var_key: CLDHGH_CAL\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/Cloud Calipso/CALIPSOCOSP-CLDHGH_CAL-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/Cloud Calipso/CALIPSOCOSP-CLDHGH_CAL-JJA-global_test.nc\n", + " * var_key: CLDHGH_CAL\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/Cloud Calipso/CALIPSOCOSP-CLDLOW_CAL-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/Cloud Calipso/CALIPSOCOSP-CLDLOW_CAL-ANN-global_ref.nc\n", + " * var_key: CLDLOW_CAL\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/Cloud Calipso/CALIPSOCOSP-CLDLOW_CAL-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/Cloud Calipso/CALIPSOCOSP-CLDLOW_CAL-ANN-global_test.nc\n", + " * var_key: CLDLOW_CAL\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/Cloud Calipso/CALIPSOCOSP-CLDLOW_CAL-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/Cloud Calipso/CALIPSOCOSP-CLDLOW_CAL-JJA-global_ref.nc\n", + " * var_key: CLDLOW_CAL\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/Cloud Calipso/CALIPSOCOSP-CLDLOW_CAL-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/Cloud Calipso/CALIPSOCOSP-CLDLOW_CAL-JJA-global_test.nc\n", + " * var_key: CLDLOW_CAL\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/Cloud Calipso/CALIPSOCOSP-CLDMED_CAL-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/Cloud Calipso/CALIPSOCOSP-CLDMED_CAL-ANN-global_ref.nc\n", + " * var_key: CLDMED_CAL\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/Cloud Calipso/CALIPSOCOSP-CLDMED_CAL-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/Cloud Calipso/CALIPSOCOSP-CLDMED_CAL-ANN-global_test.nc\n", + " * var_key: CLDMED_CAL\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/Cloud Calipso/CALIPSOCOSP-CLDMED_CAL-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/Cloud Calipso/CALIPSOCOSP-CLDMED_CAL-JJA-global_ref.nc\n", + " * var_key: CLDMED_CAL\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/Cloud Calipso/CALIPSOCOSP-CLDMED_CAL-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/Cloud Calipso/CALIPSOCOSP-CLDMED_CAL-JJA-global_test.nc\n", + " * var_key: CLDMED_CAL\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/Cloud Calipso/CALIPSOCOSP-CLDTOT_CAL-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/Cloud Calipso/CALIPSOCOSP-CLDTOT_CAL-ANN-global_ref.nc\n", + " * var_key: CLDTOT_CAL\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/Cloud Calipso/CALIPSOCOSP-CLDTOT_CAL-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/Cloud Calipso/CALIPSOCOSP-CLDTOT_CAL-ANN-global_test.nc\n", + " * var_key: CLDTOT_CAL\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/Cloud Calipso/CALIPSOCOSP-CLDTOT_CAL-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/Cloud Calipso/CALIPSOCOSP-CLDTOT_CAL-JJA-global_ref.nc\n", + " * var_key: CLDTOT_CAL\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/Cloud Calipso/CALIPSOCOSP-CLDTOT_CAL-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/Cloud Calipso/CALIPSOCOSP-CLDTOT_CAL-JJA-global_test.nc\n", + " * var_key: CLDTOT_CAL\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/Cloud ISCCP/ISCCPCOSP-CLDTOT_TAU1.3_9.4_ISCCP-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/Cloud ISCCP/ISCCPCOSP-CLDTOT_TAU1.3_9.4_ISCCP-ANN-global_ref.nc\n", + " * var_key: CLDTOT_TAU1.3_9.4_ISCCP\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/Cloud ISCCP/ISCCPCOSP-CLDTOT_TAU1.3_9.4_ISCCP-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/Cloud ISCCP/ISCCPCOSP-CLDTOT_TAU1.3_9.4_ISCCP-ANN-global_test.nc\n", + " * var_key: CLDTOT_TAU1.3_9.4_ISCCP\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/Cloud ISCCP/ISCCPCOSP-CLDTOT_TAU1.3_9.4_ISCCP-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/Cloud ISCCP/ISCCPCOSP-CLDTOT_TAU1.3_9.4_ISCCP-JJA-global_ref.nc\n", + " * var_key: CLDTOT_TAU1.3_9.4_ISCCP\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/Cloud ISCCP/ISCCPCOSP-CLDTOT_TAU1.3_9.4_ISCCP-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/Cloud ISCCP/ISCCPCOSP-CLDTOT_TAU1.3_9.4_ISCCP-JJA-global_test.nc\n", + " * var_key: CLDTOT_TAU1.3_9.4_ISCCP\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/Cloud ISCCP/ISCCPCOSP-CLDTOT_TAU1.3_ISCCP-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/Cloud ISCCP/ISCCPCOSP-CLDTOT_TAU1.3_ISCCP-ANN-global_ref.nc\n", + " * var_key: CLDTOT_TAU1.3_ISCCP\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/Cloud ISCCP/ISCCPCOSP-CLDTOT_TAU1.3_ISCCP-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/Cloud ISCCP/ISCCPCOSP-CLDTOT_TAU1.3_ISCCP-ANN-global_test.nc\n", + " * var_key: CLDTOT_TAU1.3_ISCCP\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/Cloud ISCCP/ISCCPCOSP-CLDTOT_TAU1.3_ISCCP-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/Cloud ISCCP/ISCCPCOSP-CLDTOT_TAU1.3_ISCCP-JJA-global_ref.nc\n", + " * var_key: CLDTOT_TAU1.3_ISCCP\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/Cloud ISCCP/ISCCPCOSP-CLDTOT_TAU1.3_ISCCP-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/Cloud ISCCP/ISCCPCOSP-CLDTOT_TAU1.3_ISCCP-JJA-global_test.nc\n", + " * var_key: CLDTOT_TAU1.3_ISCCP\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/Cloud ISCCP/ISCCPCOSP-CLDTOT_TAU9.4_ISCCP-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/Cloud ISCCP/ISCCPCOSP-CLDTOT_TAU9.4_ISCCP-ANN-global_ref.nc\n", + " * var_key: CLDTOT_TAU9.4_ISCCP\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/Cloud ISCCP/ISCCPCOSP-CLDTOT_TAU9.4_ISCCP-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/Cloud ISCCP/ISCCPCOSP-CLDTOT_TAU9.4_ISCCP-ANN-global_test.nc\n", + " * var_key: CLDTOT_TAU9.4_ISCCP\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/Cloud ISCCP/ISCCPCOSP-CLDTOT_TAU9.4_ISCCP-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/Cloud ISCCP/ISCCPCOSP-CLDTOT_TAU9.4_ISCCP-JJA-global_ref.nc\n", + " * var_key: CLDTOT_TAU9.4_ISCCP\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/Cloud ISCCP/ISCCPCOSP-CLDTOT_TAU9.4_ISCCP-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/Cloud ISCCP/ISCCPCOSP-CLDTOT_TAU9.4_ISCCP-JJA-global_test.nc\n", + " * var_key: CLDTOT_TAU9.4_ISCCP\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/Cloud MISR/MISRCOSP-CLDLOW_TAU1.3_9.4_MISR-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/Cloud MISR/MISRCOSP-CLDLOW_TAU1.3_9.4_MISR-ANN-global_ref.nc\n", + " * var_key: CLDLOW_TAU1.3_9.4_MISR\n", + " \n", + "Not equal to tolerance rtol=0.0001, atol=0\n", + "\n", + "Mismatched elements: 161 / 180 (89.4%)\n", + "Max absolute difference: 5.22607951\n", + "Max relative difference: 0.14372237\n", + " x: array([ nan, nan, nan, nan, nan, nan,\n", + " nan, nan, nan, nan, nan, nan,\n", + " 27.607403, 26.281943, 26.594026, 25.62963 , 24.946797, 25.409239,...\n", + " y: array([ nan, nan, nan, nan, nan, nan,\n", + " nan, nan, nan, nan, nan, nan,\n", + " 29.236507, 28.109412, 28.533893, 27.251634, 26.469386, 26.97218 ,...\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/Cloud MISR/MISRCOSP-CLDLOW_TAU1.3_9.4_MISR-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/Cloud MISR/MISRCOSP-CLDLOW_TAU1.3_9.4_MISR-ANN-global_test.nc\n", + " * var_key: CLDLOW_TAU1.3_9.4_MISR\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/Cloud MISR/MISRCOSP-CLDLOW_TAU1.3_9.4_MISR-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/Cloud MISR/MISRCOSP-CLDLOW_TAU1.3_9.4_MISR-JJA-global_ref.nc\n", + " * var_key: CLDLOW_TAU1.3_9.4_MISR\n", + " \n", + "Not equal to tolerance rtol=0.0001, atol=0\n", + "\n", + "Mismatched elements: 147 / 180 (81.7%)\n", + "Max absolute difference: 3.96731239\n", + "Max relative difference: 0.13233952\n", + " x: array([ nan, nan, nan, nan, nan, nan,\n", + " nan, nan, nan, nan, nan, nan,\n", + " nan, nan, nan, nan, nan, nan,...\n", + " y: array([ nan, nan, nan, nan, nan, nan,\n", + " nan, nan, nan, nan, nan, nan,\n", + " nan, nan, nan, nan, nan, nan,...\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/Cloud MISR/MISRCOSP-CLDLOW_TAU1.3_9.4_MISR-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/Cloud MISR/MISRCOSP-CLDLOW_TAU1.3_9.4_MISR-JJA-global_test.nc\n", + " * var_key: CLDLOW_TAU1.3_9.4_MISR\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/Cloud MISR/MISRCOSP-CLDLOW_TAU1.3_MISR-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/Cloud MISR/MISRCOSP-CLDLOW_TAU1.3_MISR-ANN-global_ref.nc\n", + " * var_key: CLDLOW_TAU1.3_MISR\n", + " \n", + "Not equal to tolerance rtol=0.0001, atol=0\n", + "\n", + "Mismatched elements: 161 / 180 (89.4%)\n", + "Max absolute difference: 9.42316729\n", + "Max relative difference: 0.20406107\n", + " x: array([ nan, nan, nan, nan, nan, nan,\n", + " nan, nan, nan, nan, nan, nan,\n", + " 50.525568, 52.10918 , 52.191102, 52.493405, 50.181182, 50.357442,...\n", + " y: array([ nan, nan, nan, nan, nan, nan,\n", + " nan, nan, nan, nan, nan, nan,\n", + " 53.769157, 55.229167, 55.455046, 55.463217, 53.257188, 53.239823,...\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/Cloud MISR/MISRCOSP-CLDLOW_TAU1.3_MISR-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/Cloud MISR/MISRCOSP-CLDLOW_TAU1.3_MISR-ANN-global_test.nc\n", + " * var_key: CLDLOW_TAU1.3_MISR\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/Cloud MISR/MISRCOSP-CLDLOW_TAU1.3_MISR-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/Cloud MISR/MISRCOSP-CLDLOW_TAU1.3_MISR-JJA-global_ref.nc\n", + " * var_key: CLDLOW_TAU1.3_MISR\n", + " \n", + "Not equal to tolerance rtol=0.0001, atol=0\n", + "\n", + "Mismatched elements: 147 / 180 (81.7%)\n", + "Max absolute difference: 12.14821824\n", + "Max relative difference: 0.23597697\n", + " x: array([ nan, nan, nan, nan, nan, nan,\n", + " nan, nan, nan, nan, nan, nan,\n", + " nan, nan, nan, nan, nan, nan,...\n", + " y: array([ nan, nan, nan, nan, nan, nan,\n", + " nan, nan, nan, nan, nan, nan,\n", + " nan, nan, nan, nan, nan, nan,...\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/Cloud MISR/MISRCOSP-CLDLOW_TAU1.3_MISR-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/Cloud MISR/MISRCOSP-CLDLOW_TAU1.3_MISR-JJA-global_test.nc\n", + " * var_key: CLDLOW_TAU1.3_MISR\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/Cloud MISR/MISRCOSP-CLDLOW_TAU9.4_MISR-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/Cloud MISR/MISRCOSP-CLDLOW_TAU9.4_MISR-ANN-global_ref.nc\n", + " * var_key: CLDLOW_TAU9.4_MISR\n", + " \n", + "Not equal to tolerance rtol=0.0001, atol=0\n", + "\n", + "Mismatched elements: 161 / 180 (89.4%)\n", + "Max absolute difference: 4.19708782\n", + "Max relative difference: 0.42758281\n", + " x: array([ nan, nan, nan, nan, nan, nan,\n", + " nan, nan, nan, nan, nan, nan,\n", + " 22.918165, 25.827236, 25.597075, 26.863775, 25.234384, 24.948203,...\n", + " y: array([ nan, nan, nan, nan, nan, nan,\n", + " nan, nan, nan, nan, nan, nan,\n", + " 24.53265 , 27.119755, 26.921153, 28.211582, 26.787802, 26.267643,...\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/Cloud MISR/MISRCOSP-CLDLOW_TAU9.4_MISR-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/Cloud MISR/MISRCOSP-CLDLOW_TAU9.4_MISR-ANN-global_test.nc\n", + " * var_key: CLDLOW_TAU9.4_MISR\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/Cloud MISR/MISRCOSP-CLDLOW_TAU9.4_MISR-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/Cloud MISR/MISRCOSP-CLDLOW_TAU9.4_MISR-JJA-global_ref.nc\n", + " * var_key: CLDLOW_TAU9.4_MISR\n", + " \n", + "Not equal to tolerance rtol=0.0001, atol=0\n", + "\n", + "Mismatched elements: 147 / 180 (81.7%)\n", + "Max absolute difference: 8.34271828\n", + "Max relative difference: 0.45474497\n", + " x: array([ nan, nan, nan, nan, nan, nan,\n", + " nan, nan, nan, nan, nan, nan,\n", + " nan, nan, nan, nan, nan, nan,...\n", + " y: array([ nan, nan, nan, nan, nan, nan,\n", + " nan, nan, nan, nan, nan, nan,\n", + " nan, nan, nan, nan, nan, nan,...\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/Cloud MISR/MISRCOSP-CLDLOW_TAU9.4_MISR-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/Cloud MISR/MISRCOSP-CLDLOW_TAU9.4_MISR-JJA-global_test.nc\n", + " * var_key: CLDLOW_TAU9.4_MISR\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/Cloud MISR/MISRCOSP-CLDTOT_TAU1.3_9.4_MISR-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/Cloud MISR/MISRCOSP-CLDTOT_TAU1.3_9.4_MISR-ANN-global_ref.nc\n", + " * var_key: CLDTOT_TAU1.3_9.4_MISR\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/Cloud MISR/MISRCOSP-CLDTOT_TAU1.3_9.4_MISR-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/Cloud MISR/MISRCOSP-CLDTOT_TAU1.3_9.4_MISR-ANN-global_test.nc\n", + " * var_key: CLDTOT_TAU1.3_9.4_MISR\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/Cloud MISR/MISRCOSP-CLDTOT_TAU1.3_9.4_MISR-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/Cloud MISR/MISRCOSP-CLDTOT_TAU1.3_9.4_MISR-JJA-global_ref.nc\n", + " * var_key: CLDTOT_TAU1.3_9.4_MISR\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/Cloud MISR/MISRCOSP-CLDTOT_TAU1.3_9.4_MISR-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/Cloud MISR/MISRCOSP-CLDTOT_TAU1.3_9.4_MISR-JJA-global_test.nc\n", + " * var_key: CLDTOT_TAU1.3_9.4_MISR\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/Cloud MISR/MISRCOSP-CLDTOT_TAU1.3_MISR-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/Cloud MISR/MISRCOSP-CLDTOT_TAU1.3_MISR-ANN-global_ref.nc\n", + " * var_key: CLDTOT_TAU1.3_MISR\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/Cloud MISR/MISRCOSP-CLDTOT_TAU1.3_MISR-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/Cloud MISR/MISRCOSP-CLDTOT_TAU1.3_MISR-ANN-global_test.nc\n", + " * var_key: CLDTOT_TAU1.3_MISR\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/Cloud MISR/MISRCOSP-CLDTOT_TAU1.3_MISR-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/Cloud MISR/MISRCOSP-CLDTOT_TAU1.3_MISR-JJA-global_ref.nc\n", + " * var_key: CLDTOT_TAU1.3_MISR\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/Cloud MISR/MISRCOSP-CLDTOT_TAU1.3_MISR-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/Cloud MISR/MISRCOSP-CLDTOT_TAU1.3_MISR-JJA-global_test.nc\n", + " * var_key: CLDTOT_TAU1.3_MISR\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/Cloud MISR/MISRCOSP-CLDTOT_TAU9.4_MISR-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/Cloud MISR/MISRCOSP-CLDTOT_TAU9.4_MISR-ANN-global_ref.nc\n", + " * var_key: CLDTOT_TAU9.4_MISR\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/Cloud MISR/MISRCOSP-CLDTOT_TAU9.4_MISR-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/Cloud MISR/MISRCOSP-CLDTOT_TAU9.4_MISR-ANN-global_test.nc\n", + " * var_key: CLDTOT_TAU9.4_MISR\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/Cloud MISR/MISRCOSP-CLDTOT_TAU9.4_MISR-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/Cloud MISR/MISRCOSP-CLDTOT_TAU9.4_MISR-JJA-global_ref.nc\n", + " * var_key: CLDTOT_TAU9.4_MISR\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/Cloud MISR/MISRCOSP-CLDTOT_TAU9.4_MISR-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/Cloud MISR/MISRCOSP-CLDTOT_TAU9.4_MISR-JJA-global_test.nc\n", + " * var_key: CLDTOT_TAU9.4_MISR\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/Cloud MODIS/MODISCOSP-CLDHGH_TAU1.3_9.4_MODIS-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/Cloud MODIS/MODISCOSP-CLDHGH_TAU1.3_9.4_MODIS-ANN-global_ref.nc\n", + " * var_key: CLDHGH_TAU1.3_9.4_MODIS\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/Cloud MODIS/MODISCOSP-CLDHGH_TAU1.3_9.4_MODIS-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/Cloud MODIS/MODISCOSP-CLDHGH_TAU1.3_9.4_MODIS-ANN-global_test.nc\n", + " * var_key: CLDHGH_TAU1.3_9.4_MODIS\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/Cloud MODIS/MODISCOSP-CLDHGH_TAU1.3_9.4_MODIS-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/Cloud MODIS/MODISCOSP-CLDHGH_TAU1.3_9.4_MODIS-JJA-global_ref.nc\n", + " * var_key: CLDHGH_TAU1.3_9.4_MODIS\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/Cloud MODIS/MODISCOSP-CLDHGH_TAU1.3_9.4_MODIS-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/Cloud MODIS/MODISCOSP-CLDHGH_TAU1.3_9.4_MODIS-JJA-global_test.nc\n", + " * var_key: CLDHGH_TAU1.3_9.4_MODIS\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/Cloud MODIS/MODISCOSP-CLDHGH_TAU1.3_MODIS-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/Cloud MODIS/MODISCOSP-CLDHGH_TAU1.3_MODIS-ANN-global_ref.nc\n", + " * var_key: CLDHGH_TAU1.3_MODIS\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/Cloud MODIS/MODISCOSP-CLDHGH_TAU1.3_MODIS-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/Cloud MODIS/MODISCOSP-CLDHGH_TAU1.3_MODIS-ANN-global_test.nc\n", + " * var_key: CLDHGH_TAU1.3_MODIS\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/Cloud MODIS/MODISCOSP-CLDHGH_TAU1.3_MODIS-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/Cloud MODIS/MODISCOSP-CLDHGH_TAU1.3_MODIS-JJA-global_ref.nc\n", + " * var_key: CLDHGH_TAU1.3_MODIS\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/Cloud MODIS/MODISCOSP-CLDHGH_TAU1.3_MODIS-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/Cloud MODIS/MODISCOSP-CLDHGH_TAU1.3_MODIS-JJA-global_test.nc\n", + " * var_key: CLDHGH_TAU1.3_MODIS\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/Cloud MODIS/MODISCOSP-CLDHGH_TAU9.4_MODIS-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/Cloud MODIS/MODISCOSP-CLDHGH_TAU9.4_MODIS-ANN-global_ref.nc\n", + " * var_key: CLDHGH_TAU9.4_MODIS\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/Cloud MODIS/MODISCOSP-CLDHGH_TAU9.4_MODIS-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/Cloud MODIS/MODISCOSP-CLDHGH_TAU9.4_MODIS-ANN-global_test.nc\n", + " * var_key: CLDHGH_TAU9.4_MODIS\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/Cloud MODIS/MODISCOSP-CLDHGH_TAU9.4_MODIS-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/Cloud MODIS/MODISCOSP-CLDHGH_TAU9.4_MODIS-JJA-global_ref.nc\n", + " * var_key: CLDHGH_TAU9.4_MODIS\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/Cloud MODIS/MODISCOSP-CLDHGH_TAU9.4_MODIS-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/Cloud MODIS/MODISCOSP-CLDHGH_TAU9.4_MODIS-JJA-global_test.nc\n", + " * var_key: CLDHGH_TAU9.4_MODIS\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/Cloud MODIS/MODISCOSP-CLDTOT_TAU1.3_9.4_MODIS-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/Cloud MODIS/MODISCOSP-CLDTOT_TAU1.3_9.4_MODIS-ANN-global_ref.nc\n", + " * var_key: CLDTOT_TAU1.3_9.4_MODIS\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/Cloud MODIS/MODISCOSP-CLDTOT_TAU1.3_9.4_MODIS-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/Cloud MODIS/MODISCOSP-CLDTOT_TAU1.3_9.4_MODIS-ANN-global_test.nc\n", + " * var_key: CLDTOT_TAU1.3_9.4_MODIS\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/Cloud MODIS/MODISCOSP-CLDTOT_TAU1.3_9.4_MODIS-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/Cloud MODIS/MODISCOSP-CLDTOT_TAU1.3_9.4_MODIS-JJA-global_ref.nc\n", + " * var_key: CLDTOT_TAU1.3_9.4_MODIS\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/Cloud MODIS/MODISCOSP-CLDTOT_TAU1.3_9.4_MODIS-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/Cloud MODIS/MODISCOSP-CLDTOT_TAU1.3_9.4_MODIS-JJA-global_test.nc\n", + " * var_key: CLDTOT_TAU1.3_9.4_MODIS\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/Cloud MODIS/MODISCOSP-CLDTOT_TAU1.3_MODIS-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/Cloud MODIS/MODISCOSP-CLDTOT_TAU1.3_MODIS-ANN-global_ref.nc\n", + " * var_key: CLDTOT_TAU1.3_MODIS\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/Cloud MODIS/MODISCOSP-CLDTOT_TAU1.3_MODIS-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/Cloud MODIS/MODISCOSP-CLDTOT_TAU1.3_MODIS-ANN-global_test.nc\n", + " * var_key: CLDTOT_TAU1.3_MODIS\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/Cloud MODIS/MODISCOSP-CLDTOT_TAU1.3_MODIS-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/Cloud MODIS/MODISCOSP-CLDTOT_TAU1.3_MODIS-JJA-global_ref.nc\n", + " * var_key: CLDTOT_TAU1.3_MODIS\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/Cloud MODIS/MODISCOSP-CLDTOT_TAU1.3_MODIS-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/Cloud MODIS/MODISCOSP-CLDTOT_TAU1.3_MODIS-JJA-global_test.nc\n", + " * var_key: CLDTOT_TAU1.3_MODIS\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/Cloud MODIS/MODISCOSP-CLDTOT_TAU9.4_MODIS-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/Cloud MODIS/MODISCOSP-CLDTOT_TAU9.4_MODIS-ANN-global_ref.nc\n", + " * var_key: CLDTOT_TAU9.4_MODIS\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/Cloud MODIS/MODISCOSP-CLDTOT_TAU9.4_MODIS-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/Cloud MODIS/MODISCOSP-CLDTOT_TAU9.4_MODIS-ANN-global_test.nc\n", + " * var_key: CLDTOT_TAU9.4_MODIS\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/Cloud MODIS/MODISCOSP-CLDTOT_TAU9.4_MODIS-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/Cloud MODIS/MODISCOSP-CLDTOT_TAU9.4_MODIS-JJA-global_ref.nc\n", + " * var_key: CLDTOT_TAU9.4_MODIS\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/Cloud MODIS/MODISCOSP-CLDTOT_TAU9.4_MODIS-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/Cloud MODIS/MODISCOSP-CLDTOT_TAU9.4_MODIS-JJA-global_test.nc\n", + " * var_key: CLDTOT_TAU9.4_MODIS\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/ERA5/ERA5-LHFLX-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/ERA5/ERA5-LHFLX-ANN-global_ref.nc\n", + " * var_key: LHFLX\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/ERA5/ERA5-LHFLX-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/ERA5/ERA5-LHFLX-ANN-global_test.nc\n", + " * var_key: LHFLX\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/ERA5/ERA5-LHFLX-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/ERA5/ERA5-LHFLX-JJA-global_ref.nc\n", + " * var_key: LHFLX\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/ERA5/ERA5-LHFLX-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/ERA5/ERA5-LHFLX-JJA-global_test.nc\n", + " * var_key: LHFLX\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/ERA5/ERA5-PRECT-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/ERA5/ERA5-PRECT-ANN-global_ref.nc\n", + " * var_key: PRECT\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/ERA5/ERA5-PRECT-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/ERA5/ERA5-PRECT-ANN-global_test.nc\n", + " * var_key: PRECT\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/ERA5/ERA5-PRECT-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/ERA5/ERA5-PRECT-JJA-global_ref.nc\n", + " * var_key: PRECT\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/ERA5/ERA5-PRECT-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/ERA5/ERA5-PRECT-JJA-global_test.nc\n", + " * var_key: PRECT\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/ERA5/ERA5-T-200-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/ERA5/ERA5-T-200-ANN-global_ref.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/ERA5/ERA5-T-200-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/ERA5/ERA5-T-200-ANN-global_test.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/ERA5/ERA5-T-200-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/ERA5/ERA5-T-200-JJA-global_ref.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/ERA5/ERA5-T-200-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/ERA5/ERA5-T-200-JJA-global_test.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/ERA5/ERA5-T-850-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/ERA5/ERA5-T-850-ANN-global_ref.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/ERA5/ERA5-T-850-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/ERA5/ERA5-T-850-ANN-global_test.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/ERA5/ERA5-T-850-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/ERA5/ERA5-T-850-JJA-global_ref.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/ERA5/ERA5-T-850-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/ERA5/ERA5-T-850-JJA-global_test.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/ERA5/ERA5-TMQ-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/ERA5/ERA5-TMQ-ANN-global_ref.nc\n", + " * var_key: TMQ\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/ERA5/ERA5-TMQ-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/ERA5/ERA5-TMQ-ANN-global_test.nc\n", + " * var_key: TMQ\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/ERA5/ERA5-TMQ-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/ERA5/ERA5-TMQ-JJA-global_ref.nc\n", + " * var_key: TMQ\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/ERA5/ERA5-TMQ-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/ERA5/ERA5-TMQ-JJA-global_test.nc\n", + " * var_key: TMQ\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/ERA5/ERA5-TREFHT-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/ERA5/ERA5-TREFHT-ANN-global_ref.nc\n", + " * var_key: TREFHT\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/ERA5/ERA5-TREFHT-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/ERA5/ERA5-TREFHT-ANN-global_test.nc\n", + " * var_key: TREFHT\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/ERA5/ERA5-TREFHT-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/ERA5/ERA5-TREFHT-JJA-global_ref.nc\n", + " * var_key: TREFHT\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/ERA5/ERA5-TREFHT-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/ERA5/ERA5-TREFHT-JJA-global_test.nc\n", + " * var_key: TREFHT\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/ERA5/ERA5-Z3-500-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/ERA5/ERA5-Z3-500-ANN-global_ref.nc\n", + " * var_key: Z3\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/ERA5/ERA5-Z3-500-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/ERA5/ERA5-Z3-500-ANN-global_test.nc\n", + " * var_key: Z3\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/ERA5/ERA5-Z3-500-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/ERA5/ERA5-Z3-500-JJA-global_ref.nc\n", + " * var_key: Z3\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/ERA5/ERA5-Z3-500-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/ERA5/ERA5-Z3-500-JJA-global_test.nc\n", + " * var_key: Z3\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/GPCP_OAFLux/GPCP_OAFLux-PminusE-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/GPCP_OAFLux/GPCP_OAFLux-PminusE-ANN-global_ref.nc\n", + " * var_key: PminusE\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/GPCP_OAFLux/GPCP_OAFLux-PminusE-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/GPCP_OAFLux/GPCP_OAFLux-PminusE-ANN-global_test.nc\n", + " * var_key: PminusE\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/GPCP_OAFLux/GPCP_OAFLux-PminusE-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/GPCP_OAFLux/GPCP_OAFLux-PminusE-JJA-global_ref.nc\n", + " * var_key: PminusE\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/GPCP_OAFLux/GPCP_OAFLux-PminusE-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/GPCP_OAFLux/GPCP_OAFLux-PminusE-JJA-global_test.nc\n", + " * var_key: PminusE\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/GPCP_v2.3/GPCP_v2.3-PRECT-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/GPCP_v2.3/GPCP_v2.3-PRECT-ANN-global_ref.nc\n", + " * var_key: PRECT\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/GPCP_v2.3/GPCP_v2.3-PRECT-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/GPCP_v2.3/GPCP_v2.3-PRECT-ANN-global_test.nc\n", + " * var_key: PRECT\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/GPCP_v2.3/GPCP_v2.3-PRECT-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/GPCP_v2.3/GPCP_v2.3-PRECT-JJA-global_ref.nc\n", + " * var_key: PRECT\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/GPCP_v2.3/GPCP_v2.3-PRECT-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/GPCP_v2.3/GPCP_v2.3-PRECT-JJA-global_test.nc\n", + " * var_key: PRECT\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/GPCP_v3.2/GPCP_v3.2-PRECT-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/GPCP_v3.2/GPCP_v3.2-PRECT-ANN-global_ref.nc\n", + " * var_key: PRECT\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/GPCP_v3.2/GPCP_v3.2-PRECT-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/GPCP_v3.2/GPCP_v3.2-PRECT-ANN-global_test.nc\n", + " * var_key: PRECT\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/GPCP_v3.2/GPCP_v3.2-PRECT-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/GPCP_v3.2/GPCP_v3.2-PRECT-JJA-global_ref.nc\n", + " * var_key: PRECT\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/GPCP_v3.2/GPCP_v3.2-PRECT-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/GPCP_v3.2/GPCP_v3.2-PRECT-JJA-global_test.nc\n", + " * var_key: PRECT\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/MERRA2/MERRA2-PRECT-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/MERRA2/MERRA2-PRECT-ANN-global_ref.nc\n", + " * var_key: PRECT\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/MERRA2/MERRA2-PRECT-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/MERRA2/MERRA2-PRECT-ANN-global_test.nc\n", + " * var_key: PRECT\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/MERRA2/MERRA2-PRECT-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/MERRA2/MERRA2-PRECT-JJA-global_ref.nc\n", + " * var_key: PRECT\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/MERRA2/MERRA2-PRECT-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/MERRA2/MERRA2-PRECT-JJA-global_test.nc\n", + " * var_key: PRECT\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/MERRA2/MERRA2-T-200-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/MERRA2/MERRA2-T-200-ANN-global_ref.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/MERRA2/MERRA2-T-200-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/MERRA2/MERRA2-T-200-ANN-global_test.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/MERRA2/MERRA2-T-200-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/MERRA2/MERRA2-T-200-JJA-global_ref.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/MERRA2/MERRA2-T-200-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/MERRA2/MERRA2-T-200-JJA-global_test.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/MERRA2/MERRA2-T-850-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/MERRA2/MERRA2-T-850-ANN-global_ref.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/MERRA2/MERRA2-T-850-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/MERRA2/MERRA2-T-850-ANN-global_test.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/MERRA2/MERRA2-T-850-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/MERRA2/MERRA2-T-850-JJA-global_ref.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/MERRA2/MERRA2-T-850-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/MERRA2/MERRA2-T-850-JJA-global_test.nc\n", + " * var_key: T\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/MERRA2/MERRA2-TMQ-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/MERRA2/MERRA2-TMQ-ANN-global_ref.nc\n", + " * var_key: TMQ\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/MERRA2/MERRA2-TMQ-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/MERRA2/MERRA2-TMQ-ANN-global_test.nc\n", + " * var_key: TMQ\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/MERRA2/MERRA2-TMQ-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/MERRA2/MERRA2-TMQ-JJA-global_ref.nc\n", + " * var_key: TMQ\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/MERRA2/MERRA2-TMQ-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/MERRA2/MERRA2-TMQ-JJA-global_test.nc\n", + " * var_key: TMQ\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/MERRA2/MERRA2-TREFHT-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/MERRA2/MERRA2-TREFHT-ANN-global_ref.nc\n", + " * var_key: TREFHT\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/MERRA2/MERRA2-TREFHT-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/MERRA2/MERRA2-TREFHT-ANN-global_test.nc\n", + " * var_key: TREFHT\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/MERRA2/MERRA2-TREFHT-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/MERRA2/MERRA2-TREFHT-JJA-global_ref.nc\n", + " * var_key: TREFHT\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/MERRA2/MERRA2-TREFHT-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/MERRA2/MERRA2-TREFHT-JJA-global_test.nc\n", + " * var_key: TREFHT\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/MERRA2/MERRA2-TREFMNAV-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/MERRA2/MERRA2-TREFMNAV-ANN-global_ref.nc\n", + " * var_key: TREFMNAV\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/MERRA2/MERRA2-TREFMNAV-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/MERRA2/MERRA2-TREFMNAV-ANN-global_test.nc\n", + " * var_key: TREFMNAV\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/MERRA2/MERRA2-TREFMNAV-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/MERRA2/MERRA2-TREFMNAV-JJA-global_ref.nc\n", + " * var_key: TREFMNAV\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/MERRA2/MERRA2-TREFMNAV-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/MERRA2/MERRA2-TREFMNAV-JJA-global_test.nc\n", + " * var_key: TREFMNAV\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/MERRA2/MERRA2-TREFMXAV-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/MERRA2/MERRA2-TREFMXAV-ANN-global_ref.nc\n", + " * var_key: TREFMXAV\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/MERRA2/MERRA2-TREFMXAV-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/MERRA2/MERRA2-TREFMXAV-ANN-global_test.nc\n", + " * var_key: TREFMXAV\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/MERRA2/MERRA2-TREFMXAV-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/MERRA2/MERRA2-TREFMXAV-JJA-global_ref.nc\n", + " * var_key: TREFMXAV\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/MERRA2/MERRA2-TREFMXAV-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/MERRA2/MERRA2-TREFMXAV-JJA-global_test.nc\n", + " * var_key: TREFMXAV\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/MERRA2/MERRA2-U-200-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/MERRA2/MERRA2-U-200-ANN-global_ref.nc\n", + " * var_key: U\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/MERRA2/MERRA2-U-200-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/MERRA2/MERRA2-U-200-ANN-global_test.nc\n", + " * var_key: U\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/MERRA2/MERRA2-U-200-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/MERRA2/MERRA2-U-200-JJA-global_ref.nc\n", + " * var_key: U\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/MERRA2/MERRA2-U-200-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/MERRA2/MERRA2-U-200-JJA-global_test.nc\n", + " * var_key: U\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/MERRA2/MERRA2-U-850-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/MERRA2/MERRA2-U-850-ANN-global_ref.nc\n", + " * var_key: U\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/MERRA2/MERRA2-U-850-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/MERRA2/MERRA2-U-850-ANN-global_test.nc\n", + " * var_key: U\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/MERRA2/MERRA2-U-850-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/MERRA2/MERRA2-U-850-JJA-global_ref.nc\n", + " * var_key: U\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/MERRA2/MERRA2-U-850-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/MERRA2/MERRA2-U-850-JJA-global_test.nc\n", + " * var_key: U\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/MERRA2/MERRA2-Z3-500-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/MERRA2/MERRA2-Z3-500-ANN-global_ref.nc\n", + " * var_key: Z3\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/MERRA2/MERRA2-Z3-500-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/MERRA2/MERRA2-Z3-500-ANN-global_test.nc\n", + " * var_key: Z3\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/MERRA2/MERRA2-Z3-500-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/MERRA2/MERRA2-Z3-500-JJA-global_ref.nc\n", + " * var_key: Z3\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/MERRA2/MERRA2-Z3-500-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/MERRA2/MERRA2-Z3-500-JJA-global_test.nc\n", + " * var_key: Z3\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/SST_CL_HadISST/HadISST_CL-SST-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/SST_CL_HadISST/HadISST_CL-SST-ANN-global_ref.nc\n", + " * var_key: SST\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/SST_CL_HadISST/HadISST_CL-SST-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/SST_CL_HadISST/HadISST_CL-SST-ANN-global_test.nc\n", + " * var_key: SST\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/SST_CL_HadISST/HadISST_CL-SST-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/SST_CL_HadISST/HadISST_CL-SST-JJA-global_ref.nc\n", + " * var_key: SST\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/SST_CL_HadISST/HadISST_CL-SST-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/SST_CL_HadISST/HadISST_CL-SST-JJA-global_test.nc\n", + " * var_key: SST\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/SST_PD_HadISST/HadISST_PD-SST-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/SST_PD_HadISST/HadISST_PD-SST-ANN-global_ref.nc\n", + " * var_key: SST\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/SST_PD_HadISST/HadISST_PD-SST-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/SST_PD_HadISST/HadISST_PD-SST-ANN-global_test.nc\n", + " * var_key: SST\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/SST_PD_HadISST/HadISST_PD-SST-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/SST_PD_HadISST/HadISST_PD-SST-JJA-global_ref.nc\n", + " * var_key: SST\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/SST_PD_HadISST/HadISST_PD-SST-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/SST_PD_HadISST/HadISST_PD-SST-JJA-global_test.nc\n", + " * var_key: SST\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/SST_PI_HadISST/HadISST_PI-SST-ANN-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/SST_PI_HadISST/HadISST_PI-SST-ANN-global_ref.nc\n", + " * var_key: SST\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/SST_PI_HadISST/HadISST_PI-SST-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/SST_PI_HadISST/HadISST_PI-SST-ANN-global_test.nc\n", + " * var_key: SST\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/SST_PI_HadISST/HadISST_PI-SST-JJA-global_ref.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/SST_PI_HadISST/HadISST_PI-SST-JJA-global_ref.nc\n", + " * var_key: SST\n", + " * All close and within relative tolerance (0.0001)\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/SST_PI_HadISST/HadISST_PI-SST-JJA-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/SST_PI_HadISST/HadISST_PI-SST-JJA-global_test.nc\n", + " * var_key: SST\n", + " * All close and within relative tolerance (0.0001)\n" + ] + } + ], + "source": [ + "results = _get_relative_diffs()" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "metadata": {}, + "outputs": [], + "source": [ + "import pandas as pd\n", + "\n", + "# Statistics\n", + "(\n", + " missing_files,\n", + " missing_vars,\n", + " matching_files,\n", + " mismatch_errors,\n", + " not_equal_errors,\n", + " key_errors,\n", + ") = results.values()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Missing Files\n" + ] + }, + { + "cell_type": "code", + "execution_count": 24, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "['/global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/annual_cycle_zonal_mean/AOD_550/AOD_550-AODVIS-ANNUALCYCLE-global_test.nc',\n", + " '/global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/annual_cycle_zonal_mean/AOD_550/AOD_550-AODVIS-ANNUALCYCLE-global_ref.nc']" + ] + }, + "execution_count": 24, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "missing_files" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "- AOD_550 files were retired (https://github.com/E3SM-Project/e3sm_diags/issues/852)\n" + ] + }, + { + "cell_type": "code", + "execution_count": 25, + "metadata": {}, + "outputs": [], + "source": [ + "missing_files = []" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### `NaN` Mismatching Errors\n", + "\n", + "I found these `nan` mismatch errors occur due to either:\n", + "\n", + "1. Regional subsetting on \"ccb\" flag in CDAT adding a coordinate points -- removing these coordinates results in matching results\n", + "2. Slightly different masking in the data between xCDAT and CDAT via xESMF/ESMF -- same number of nans just slightly shifted over some coordinates points\n", + "\n", + "- Refer to PR [#794](https://github.com/E3SM-Project/e3sm_diags/pull/794)\n" + ] + }, + { + "cell_type": "code", + "execution_count": 26, + "metadata": {}, + "outputs": [], + "source": [ + "mismatch_errors = [\n", + " f\n", + " for f in mismatch_errors\n", + " # https://github.com/E3SM-Project/e3sm_diags/pull/794\n", + " if \"TAUXY\" not in f and \"ERA5-TREFHT\" not in f and \"MERRA2-TREFHT\" not in f\n", + " # https://github.com/E3SM-Project/e3sm_diags/pull/798#issuecomment-2251287986\n", + " and \"ceres_ebaf_toa_v4.1-ALBEDO\" not in f\n", + "]" + ] + }, + { + "cell_type": "code", + "execution_count": 27, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "[]" + ] + }, + "execution_count": 27, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "mismatch_errors" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Not Equal Errors\n", + "\n", + "- Note, some files are omitted due to known root causes to the diffs (not a concern)\n" + ] + }, + { + "cell_type": "code", + "execution_count": 28, + "metadata": {}, + "outputs": [], + "source": [ + "not_equal_errors = [\n", + " f\n", + " for f in not_equal_errors\n", + " # https://github.com/E3SM-Project/e3sm_diags/issues/797\n", + " if \"MISRCOSP-CLDLOW_TAU1.3_9.4_MISR\" not in f\n", + " and \"MISRCOSP-CLDLOW_TAU1.3_MISR\" not in f\n", + " and \"MISRCOSP-CLDLOW_TAU9.4_MISR\" not in f\n", + " # only 1 mismatching element with 1e-4 tolerance\n", + " and \"ERA5-OMEGA-JJA\" not in f and \"MERRA2-OMEGA-JJA\" not in f\n", + " # https://github.com/E3SM-Project/e3sm_diags/issues/787\n", + " and \"MERRA2-U\" not in f\n", + " # https://github.com/E3SM-Project/e3sm_diags/issues/852\n", + " and \"AOD_550\" not in f\n", + "]" + ] + }, + { + "cell_type": "code", + "execution_count": 29, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "['/global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/Cloud MISR/MISRCOSP-CLDTOT_TAU1.3_9.4_MISR-ANN-global_test.nc',\n", + " '/global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/Cloud MISR/MISRCOSP-CLDTOT_TAU1.3_MISR-ANN-global_test.nc']" + ] + }, + "execution_count": 29, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "not_equal_errors" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Note, the two files have less than 10 elements that mismatch.\n", + "This does not seem to be of a concern since the rtol is 0.04% and 1.2%.\n" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "```python\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/Cloud MISR/MISRCOSP-CLDTOT_TAU1.3_9.4_MISR-ANN-global_test.nc\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/Cloud MISR/MISRCOSP-CLDTOT_TAU1.3_9.4_MISR-ANN-global_test.nc\n", + " * var_key: CLDTOT_TAU1.3_9.4_MISR\n", + "\n", + "Not equal to tolerance rtol=0.0001, atol=0\n", + "\n", + "Mismatched elements: 7 / 64800 (0.0108%)\n", + "Max absolute difference: 0.0970192\n", + "Max relative difference: 0.00456364\n", + " x: array([[ 4.128816, 4.128816, 4.128816, ..., 7.77411 , 7.77411 ,\n", + " 7.77411 ],\n", + " [ 4.164101, 4.164073, 4.164018, ..., 7.538528, 7.538158,...\n", + " y: array([[ 4.128816, 4.128816, 4.128816, ..., 7.774109, 7.774109,\n", + " 7.774109],\n", + " [ 4.164101, 4.164073, 4.164018, ..., 7.538528, 7.538157,...\n", + "\n", + "Not equal to tolerance rtol=0.0001, atol=0\n", + "\n", + "Mismatched elements: 8 / 64800 (0.0123%)\n", + "Max absolute difference: 0.0970192\n", + "Max relative difference: 0.01244658\n", + " x: array([[ 0.056777, 0.056777, 0.056777, ..., 1.274017, 1.274017,\n", + " 1.274017],\n", + " [ 0.207892, 0.207774, 0.207536, ..., 1.675944, 1.676576,...\n", + " y: array([[ 0.056777, 0.056777, 0.056777, ..., 1.274017, 1.274017,\n", + " 1.274017],\n", + " [ 0.207892, 0.207774, 0.207536, ..., 1.675944, 1.676576,...\n", + "```\n" + ] + }, + { + "cell_type": "code", + "execution_count": 30, + "metadata": {}, + "outputs": [], + "source": [ + "ds1 = xr.open_dataset(\n", + " \"/global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/Cloud MISR/MISRCOSP-CLDTOT_TAU1.3_9.4_MISR-ANN-global_test.nc\"\n", + ")\n", + "ds2 = xr.open_dataset(\n", + " \"/global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/Cloud MISR/MISRCOSP-CLDTOT_TAU1.3_9.4_MISR-ANN-global_test.nc\"\n", + ")" + ] + }, + { + "cell_type": "code", + "execution_count": 31, + "metadata": {}, + "outputs": [ + { + "ename": "AssertionError", + "evalue": "\nNot equal to tolerance rtol=0.0001, atol=0\n\nMismatched elements: 7 / 64800 (0.0108%)\nMax absolute difference: 0.0970192\nMax relative difference: 0.00456364\n x: array([[ 4.128816, 4.128816, 4.128816, ..., 7.77411 , 7.77411 ,\n 7.77411 ],\n [ 4.164101, 4.164073, 4.164018, ..., 7.538528, 7.538158,...\n y: array([[ 4.128816, 4.128816, 4.128816, ..., 7.774109, 7.774109,\n 7.774109],\n [ 4.164101, 4.164073, 4.164018, ..., 7.538528, 7.538157,...", + "output_type": "error", + "traceback": [ + "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", + "\u001b[0;31mAssertionError\u001b[0m Traceback (most recent call last)", + "Cell \u001b[0;32mIn[31], line 1\u001b[0m\n\u001b[0;32m----> 1\u001b[0m \u001b[43mnp\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mtesting\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43massert_allclose\u001b[49m\u001b[43m(\u001b[49m\n\u001b[1;32m 2\u001b[0m \u001b[43m \u001b[49m\u001b[43mds1\u001b[49m\u001b[43m[\u001b[49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[38;5;124;43mCLDTOT_TAU1.3_9.4_MISR\u001b[39;49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[43m]\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mds2\u001b[49m\u001b[43m[\u001b[49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[38;5;124;43mCLDTOT_TAU1.3_9.4_MISR\u001b[39;49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[43m]\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43matol\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[38;5;241;43m0\u001b[39;49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mrtol\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[38;5;241;43m1e-4\u001b[39;49m\n\u001b[1;32m 3\u001b[0m \u001b[43m)\u001b[49m\n", + " \u001b[0;31m[... skipping hidden 1 frame]\u001b[0m\n", + "File \u001b[0;32m/global/u2/v/vo13/mambaforge/envs/e3sm_diags_dev_cm/lib/python3.10/contextlib.py:79\u001b[0m, in \u001b[0;36mContextDecorator.__call__..inner\u001b[0;34m(*args, **kwds)\u001b[0m\n\u001b[1;32m 76\u001b[0m \u001b[38;5;129m@wraps\u001b[39m(func)\n\u001b[1;32m 77\u001b[0m \u001b[38;5;28;01mdef\u001b[39;00m \u001b[38;5;21minner\u001b[39m(\u001b[38;5;241m*\u001b[39margs, \u001b[38;5;241m*\u001b[39m\u001b[38;5;241m*\u001b[39mkwds):\n\u001b[1;32m 78\u001b[0m \u001b[38;5;28;01mwith\u001b[39;00m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_recreate_cm():\n\u001b[0;32m---> 79\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[43mfunc\u001b[49m\u001b[43m(\u001b[49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[43margs\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[43mkwds\u001b[49m\u001b[43m)\u001b[49m\n", + "File \u001b[0;32m/global/u2/v/vo13/mambaforge/envs/e3sm_diags_dev_cm/lib/python3.10/site-packages/numpy/testing/_private/utils.py:797\u001b[0m, in \u001b[0;36massert_array_compare\u001b[0;34m(comparison, x, y, err_msg, verbose, header, precision, equal_nan, equal_inf, strict)\u001b[0m\n\u001b[1;32m 793\u001b[0m err_msg \u001b[38;5;241m+\u001b[39m\u001b[38;5;241m=\u001b[39m \u001b[38;5;124m'\u001b[39m\u001b[38;5;130;01m\\n\u001b[39;00m\u001b[38;5;124m'\u001b[39m \u001b[38;5;241m+\u001b[39m \u001b[38;5;124m'\u001b[39m\u001b[38;5;130;01m\\n\u001b[39;00m\u001b[38;5;124m'\u001b[39m\u001b[38;5;241m.\u001b[39mjoin(remarks)\n\u001b[1;32m 794\u001b[0m msg \u001b[38;5;241m=\u001b[39m build_err_msg([ox, oy], err_msg,\n\u001b[1;32m 795\u001b[0m verbose\u001b[38;5;241m=\u001b[39mverbose, header\u001b[38;5;241m=\u001b[39mheader,\n\u001b[1;32m 796\u001b[0m names\u001b[38;5;241m=\u001b[39m(\u001b[38;5;124m'\u001b[39m\u001b[38;5;124mx\u001b[39m\u001b[38;5;124m'\u001b[39m, \u001b[38;5;124m'\u001b[39m\u001b[38;5;124my\u001b[39m\u001b[38;5;124m'\u001b[39m), precision\u001b[38;5;241m=\u001b[39mprecision)\n\u001b[0;32m--> 797\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m \u001b[38;5;167;01mAssertionError\u001b[39;00m(msg)\n\u001b[1;32m 798\u001b[0m \u001b[38;5;28;01mexcept\u001b[39;00m \u001b[38;5;167;01mValueError\u001b[39;00m:\n\u001b[1;32m 799\u001b[0m \u001b[38;5;28;01mimport\u001b[39;00m \u001b[38;5;21;01mtraceback\u001b[39;00m\n", + "\u001b[0;31mAssertionError\u001b[0m: \nNot equal to tolerance rtol=0.0001, atol=0\n\nMismatched elements: 7 / 64800 (0.0108%)\nMax absolute difference: 0.0970192\nMax relative difference: 0.00456364\n x: array([[ 4.128816, 4.128816, 4.128816, ..., 7.77411 , 7.77411 ,\n 7.77411 ],\n [ 4.164101, 4.164073, 4.164018, ..., 7.538528, 7.538158,...\n y: array([[ 4.128816, 4.128816, 4.128816, ..., 7.774109, 7.774109,\n 7.774109],\n [ 4.164101, 4.164073, 4.164018, ..., 7.538528, 7.538157,..." + ] + } + ], + "source": [ + "np.testing.assert_allclose(\n", + " ds1[\"CLDTOT_TAU1.3_9.4_MISR\"], ds2[\"CLDTOT_TAU1.3_9.4_MISR\"], atol=0, rtol=1e-4\n", + ")" + ] + }, + { + "cell_type": "code", + "execution_count": 33, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "1579673.1" + ] + }, + "execution_count": 33, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "ds1[\"CLDTOT_TAU1.3_9.4_MISR\"].values.sum()" + ] + }, + { + "cell_type": "code", + "execution_count": 34, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "1579672.9" + ] + }, + "execution_count": 34, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "ds2[\"CLDTOT_TAU1.3_9.4_MISR\"].values.sum()" + ] + }, + { + "cell_type": "code", + "execution_count": 32, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + " stat_name value pct\n", + "0 matching_files_count 1213 0.998354\n", + "1 missing_vars_count 0 0.000000\n", + "2 mismatch_errors_count 0 0.000000\n", + "3 not_equal_errors_count 2 0.001646\n", + "4 key_errors_count 0 0.000000\n", + "5 missing_files_count 0 0.000000\n" + ] + } + ], + "source": [ + "# Assuming these variables are defined in your notebook\n", + "matching_files_count = len(matching_files)\n", + "missing_vars_count = len(missing_vars)\n", + "mismatch_errors_count = len(mismatch_errors)\n", + "not_equal_errors_count = len(not_equal_errors)\n", + "key_errors_count = len(key_errors)\n", + "missing_files_count = len(missing_files)\n", + "\n", + "sum_files_compared = (\n", + " matching_files_count\n", + " + missing_vars_count\n", + " + mismatch_errors_count\n", + " + not_equal_errors_count\n", + " + key_errors_count\n", + " + missing_files_count\n", + ")\n", + "\n", + "pct_match = (matching_files_count / sum_files_compared) * 100\n", + "\n", + "# Collect statistics into a dictionary\n", + "statistics = {\n", + " \"stat_name\": [\n", + " \"matching_files_count\",\n", + " \"missing_vars_count\",\n", + " \"mismatch_errors_count\",\n", + " \"not_equal_errors_count\",\n", + " \"key_errors_count\",\n", + " \"missing_files_count\",\n", + " ],\n", + " \"value\": [\n", + " matching_files_count,\n", + " missing_vars_count,\n", + " mismatch_errors_count,\n", + " not_equal_errors_count,\n", + " key_errors_count,\n", + " missing_files_count,\n", + " ],\n", + " \"pct\": [\n", + " matching_files_count / sum_files_compared,\n", + " missing_vars_count / sum_files_compared,\n", + " mismatch_errors_count / sum_files_compared,\n", + " not_equal_errors_count / sum_files_compared,\n", + " key_errors_count / sum_files_compared,\n", + " missing_files_count / sum_files_compared,\n", + " ],\n", + "}\n", + "\n", + "# Convert the dictionary to a pandas DataFrame\n", + "df = pd.DataFrame(statistics)\n", + "\n", + "# Display the DataFrame\n", + "print(df)" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "cdat_regression_test", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.10.14" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/auxiliary_tools/cdat_regression_testing/843-migration-phase3/run-script-model-vs-obs/model_vs_obs_png.ipynb b/auxiliary_tools/cdat_regression_testing/843-migration-phase3/run-script-model-vs-obs/model_vs_obs_png.ipynb new file mode 100644 index 000000000..ce18996b3 --- /dev/null +++ b/auxiliary_tools/cdat_regression_testing/843-migration-phase3/run-script-model-vs-obs/model_vs_obs_png.ipynb @@ -0,0 +1,2846 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# CDAT Migration Regression Testing Notebook (`.png` files)\n", + "\n", + "This notebook is used to perform regression testing between the development and\n", + "production versions of a diagnostic set.\n", + "\n", + "## How to use\n", + "\n", + "PREREQUISITE: The diagnostic set's netCDF stored in `.json` files in two directories\n", + "(dev and `main` branches).\n", + "\n", + "1. Make a copy of this notebook under `auxiliary_tools/cdat_regression_testing/`.\n", + "2. Run `mamba create -n cdat_regression_test -y -c conda-forge \"python<3.12\" xarray netcdf4 dask pandas matplotlib-base ipykernel`\n", + "3. Run `mamba activate cdat_regression_test`\n", + "4. Update `SET_DIR` and `SET_NAME` in the copy of your notebook.\n", + "5. Run all cells IN ORDER.\n" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Setup Code\n" + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [], + "source": [ + "import glob\n", + "from typing import List\n", + "\n", + "from auxiliary_tools.cdat_regression_testing.utils import get_image_diffs\n", + "\n", + "\n", + "DEV_DIR = \"843-migration-phase3-model-vs-obs\"\n", + "DEV_PATH = f\"/global/cfs/cdirs/e3sm/www/cdat-migration-fy24/{DEV_DIR}/\"\n", + "\n", + "DEV_GLOB = sorted(glob.glob(DEV_PATH + \"**/**/*.png\"))\n", + "DEV_NUM_FILES = len(DEV_GLOB)\n", + "\n", + "MAIN_DIR = \"main\"\n", + "MAIN_PATH = f\"/global/cfs/cdirs/e3sm/www/cdat-migration-fy24/{MAIN_DIR}/\"\n", + "MAIN_GLOB = sorted(glob.glob(MAIN_PATH + \"**/**/*.png\"))\n", + "MAIN_NUM_FILES = len(MAIN_GLOB)\n", + "\n", + "\n", + "def _remove_unwanted_files(file_glob: List[str]) -> List[str]:\n", + " \"\"\"Remove files that we don't want to compare.\n", + "\n", + " * area_mean_time_series -- `main` does not generate netCDF\n", + " * enso_diags -- `main` does not generate netCDF\n", + " * qbo -- variable name differs\n", + " * diurnal_cycle -- variable name differs\n", + " * diff -- comparing the difference between regridded files is not helpful\n", + " between branches because of the influence in floating point errors.\n", + " * ERA5_ext-U10-ANN-global_ref and ERA5_ext-U10-JJA-global_ref -- dev\n", + " branch does not generate these files because it is a model-only run.\n", + "\n", + " Parameters\n", + " ----------\n", + " file_glob : List[str]\n", + " _description_\n", + "\n", + " Returns\n", + " -------\n", + " List[str]\n", + " _description_\n", + " \"\"\"\n", + "\n", + " new_glob = []\n", + "\n", + " for fp in file_glob:\n", + " if (\n", + " \"area_mean_time_series\" in fp\n", + " or \"enso_diags\" in fp\n", + " or \"qbo\" in fp\n", + " or \"diurnal_cycle\" in fp\n", + " or \"diff\" in fp\n", + " or \"ERA5_ext-U10-ANN-global_ref\" in fp\n", + " or \"ERA5_ext-U10-JJA-global_ref\" in fp\n", + " ):\n", + " continue\n", + "\n", + " new_glob.append(fp)\n", + "\n", + " return new_glob\n", + "\n", + "\n", + "DEV_GLOB = _remove_unwanted_files(DEV_GLOB)\n", + "MAIN_GLOB = _remove_unwanted_files(MAIN_GLOB)" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": {}, + "outputs": [], + "source": [ + "def _check_if_files_found():\n", + " if DEV_NUM_FILES == 0 or MAIN_NUM_FILES == 0:\n", + " raise IOError(\n", + " \"No files found at DEV_PATH and/or MAIN_PATH. \"\n", + " f\"Please check {DEV_PATH} and {MAIN_PATH}.\"\n", + " )\n", + "\n", + "\n", + "def _check_if_matching_filecount():\n", + " if DEV_NUM_FILES != MAIN_NUM_FILES:\n", + " raise IOError(\n", + " \"Number of files do not match at DEV_PATH and MAIN_PATH \"\n", + " f\"({DEV_NUM_FILES} vs. {MAIN_NUM_FILES}).\"\n", + " )\n", + "\n", + " print(f\"Matching file count ({DEV_NUM_FILES} and {MAIN_NUM_FILES}).\")\n", + "\n", + "\n", + "def _check_if_missing_files():\n", + " missing_dev_files = []\n", + " missing_main_files = []\n", + "\n", + " for fp_main in MAIN_GLOB:\n", + " fp_dev = fp_main.replace(MAIN_PATH, DEV_PATH)\n", + "\n", + " if fp_dev not in DEV_GLOB:\n", + " missing_dev_files.append(fp_dev)\n", + "\n", + " for fp_dev in DEV_GLOB:\n", + " fp_main = fp_dev.replace(DEV_PATH, MAIN_PATH)\n", + "\n", + " if fp_main not in MAIN_GLOB:\n", + " missing_main_files.append(fp_main)\n", + "\n", + " return missing_dev_files, missing_main_files" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "(641, 639)" + ] + }, + "execution_count": 3, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "len(DEV_GLOB), len(MAIN_GLOB)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## 1. Check for matching and equal number of files\n" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": {}, + "outputs": [], + "source": [ + "_check_if_files_found()" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": {}, + "outputs": [], + "source": [ + "missing_dev_files, missing_main_files = _check_if_missing_files()" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "['/global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/annual_cycle_zonal_mean/AOD_550/AOD_550-AODVIS-ANNUALCYCLE-global.png']" + ] + }, + "execution_count": 6, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "missing_dev_files" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "['/global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/annual_cycle_zonal_mean/MACv2/MACv2-AODVIS-ANNUALCYCLE-global.png',\n", + " '/global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/annual_cycle_zonal_mean/MERRA2_Aerosols/MERRA2_Aerosols-AODVIS-ANNUALCYCLE-global.png',\n", + " '/global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/viewer/viewer/e3sm_logo.png']" + ] + }, + "execution_count": 7, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "missing_main_files" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": {}, + "outputs": [ + { + "ename": "OSError", + "evalue": "Number of files do not match at DEV_PATH and MAIN_PATH (697 vs. 695).", + "output_type": "error", + "traceback": [ + "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", + "\u001b[0;31mOSError\u001b[0m Traceback (most recent call last)", + "Cell \u001b[0;32mIn[8], line 1\u001b[0m\n\u001b[0;32m----> 1\u001b[0m \u001b[43m_check_if_matching_filecount\u001b[49m\u001b[43m(\u001b[49m\u001b[43m)\u001b[49m\n", + "Cell \u001b[0;32mIn[2], line 11\u001b[0m, in \u001b[0;36m_check_if_matching_filecount\u001b[0;34m()\u001b[0m\n\u001b[1;32m 9\u001b[0m \u001b[38;5;28;01mdef\u001b[39;00m \u001b[38;5;21m_check_if_matching_filecount\u001b[39m():\n\u001b[1;32m 10\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m DEV_NUM_FILES \u001b[38;5;241m!=\u001b[39m MAIN_NUM_FILES:\n\u001b[0;32m---> 11\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m \u001b[38;5;167;01mIOError\u001b[39;00m(\n\u001b[1;32m 12\u001b[0m \u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mNumber of files do not match at DEV_PATH and MAIN_PATH \u001b[39m\u001b[38;5;124m\"\u001b[39m\n\u001b[1;32m 13\u001b[0m \u001b[38;5;124mf\u001b[39m\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124m(\u001b[39m\u001b[38;5;132;01m{\u001b[39;00mDEV_NUM_FILES\u001b[38;5;132;01m}\u001b[39;00m\u001b[38;5;124m vs. \u001b[39m\u001b[38;5;132;01m{\u001b[39;00mMAIN_NUM_FILES\u001b[38;5;132;01m}\u001b[39;00m\u001b[38;5;124m).\u001b[39m\u001b[38;5;124m\"\u001b[39m\n\u001b[1;32m 14\u001b[0m )\n\u001b[1;32m 16\u001b[0m \u001b[38;5;28mprint\u001b[39m(\u001b[38;5;124mf\u001b[39m\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mMatching file count (\u001b[39m\u001b[38;5;132;01m{\u001b[39;00mDEV_NUM_FILES\u001b[38;5;132;01m}\u001b[39;00m\u001b[38;5;124m and \u001b[39m\u001b[38;5;132;01m{\u001b[39;00mMAIN_NUM_FILES\u001b[38;5;132;01m}\u001b[39;00m\u001b[38;5;124m).\u001b[39m\u001b[38;5;124m\"\u001b[39m)\n", + "\u001b[0;31mOSError\u001b[0m: Number of files do not match at DEV_PATH and MAIN_PATH (697 vs. 695)." + ] + } + ], + "source": [ + "_check_if_matching_filecount()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## 2 Compare the plots between branches\n", + "\n", + "- Compare \"ref\" and \"test\" files\n", + "- \"diff\" files are ignored because getting relative diffs for these does not make sense (relative diff will be above tolerance)\n" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/aerosol_aeronet/AERONET/AERONET-AODABS-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/aerosol_aeronet/AERONET/AERONET-AODABS-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/aerosol_aeronet/AERONET_diff/AERONET-AODABS-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/aerosol_aeronet/AERONET/AERONET-AODVIS-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/aerosol_aeronet/AERONET/AERONET-AODVIS-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/aerosol_aeronet/AERONET_diff/AERONET-AODVIS-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/annual_cycle_zonal_mean/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-ALBEDO-ANNUALCYCLE-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/annual_cycle_zonal_mean/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-ALBEDO-ANNUALCYCLE-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/annual_cycle_zonal_mean/CERES-EBAF-TOA-v4.1_diff/ceres_ebaf_toa_v4.1-ALBEDO-ANNUALCYCLE-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/annual_cycle_zonal_mean/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-ALBEDOC-ANNUALCYCLE-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/annual_cycle_zonal_mean/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-ALBEDOC-ANNUALCYCLE-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/annual_cycle_zonal_mean/CERES-EBAF-TOA-v4.1_diff/ceres_ebaf_toa_v4.1-ALBEDOC-ANNUALCYCLE-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/annual_cycle_zonal_mean/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FLUT-ANNUALCYCLE-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/annual_cycle_zonal_mean/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FLUT-ANNUALCYCLE-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/annual_cycle_zonal_mean/CERES-EBAF-TOA-v4.1_diff/ceres_ebaf_toa_v4.1-FLUT-ANNUALCYCLE-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/annual_cycle_zonal_mean/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FLUTC-ANNUALCYCLE-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/annual_cycle_zonal_mean/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FLUTC-ANNUALCYCLE-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/annual_cycle_zonal_mean/CERES-EBAF-TOA-v4.1_diff/ceres_ebaf_toa_v4.1-FLUTC-ANNUALCYCLE-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/annual_cycle_zonal_mean/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FSNTOA-ANNUALCYCLE-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/annual_cycle_zonal_mean/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FSNTOA-ANNUALCYCLE-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/annual_cycle_zonal_mean/CERES-EBAF-TOA-v4.1_diff/ceres_ebaf_toa_v4.1-FSNTOA-ANNUALCYCLE-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/annual_cycle_zonal_mean/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FSNTOAC-ANNUALCYCLE-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/annual_cycle_zonal_mean/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FSNTOAC-ANNUALCYCLE-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/annual_cycle_zonal_mean/CERES-EBAF-TOA-v4.1_diff/ceres_ebaf_toa_v4.1-FSNTOAC-ANNUALCYCLE-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/annual_cycle_zonal_mean/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-LWCF-ANNUALCYCLE-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/annual_cycle_zonal_mean/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-LWCF-ANNUALCYCLE-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/annual_cycle_zonal_mean/CERES-EBAF-TOA-v4.1_diff/ceres_ebaf_toa_v4.1-LWCF-ANNUALCYCLE-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/annual_cycle_zonal_mean/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-NETCF-ANNUALCYCLE-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/annual_cycle_zonal_mean/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-NETCF-ANNUALCYCLE-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/annual_cycle_zonal_mean/CERES-EBAF-TOA-v4.1_diff/ceres_ebaf_toa_v4.1-NETCF-ANNUALCYCLE-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/annual_cycle_zonal_mean/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-RESTOM-ANNUALCYCLE-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/annual_cycle_zonal_mean/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-RESTOM-ANNUALCYCLE-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/annual_cycle_zonal_mean/CERES-EBAF-TOA-v4.1_diff/ceres_ebaf_toa_v4.1-RESTOM-ANNUALCYCLE-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/annual_cycle_zonal_mean/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-SOLIN-ANNUALCYCLE-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/annual_cycle_zonal_mean/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-SOLIN-ANNUALCYCLE-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/annual_cycle_zonal_mean/CERES-EBAF-TOA-v4.1_diff/ceres_ebaf_toa_v4.1-SOLIN-ANNUALCYCLE-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/annual_cycle_zonal_mean/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-SWCF-ANNUALCYCLE-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/annual_cycle_zonal_mean/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-SWCF-ANNUALCYCLE-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/annual_cycle_zonal_mean/CERES-EBAF-TOA-v4.1_diff/ceres_ebaf_toa_v4.1-SWCF-ANNUALCYCLE-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/annual_cycle_zonal_mean/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-ALBEDO_SRF-ANNUALCYCLE-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/annual_cycle_zonal_mean/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-ALBEDO_SRF-ANNUALCYCLE-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/annual_cycle_zonal_mean/CERES-EBAF-surface-v4.1_diff/ceres_ebaf_surface_v4.1-ALBEDO_SRF-ANNUALCYCLE-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/annual_cycle_zonal_mean/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLDS-ANNUALCYCLE-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/annual_cycle_zonal_mean/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLDS-ANNUALCYCLE-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/annual_cycle_zonal_mean/CERES-EBAF-surface-v4.1_diff/ceres_ebaf_surface_v4.1-FLDS-ANNUALCYCLE-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/annual_cycle_zonal_mean/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLDSC-ANNUALCYCLE-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/annual_cycle_zonal_mean/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLDSC-ANNUALCYCLE-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/annual_cycle_zonal_mean/CERES-EBAF-surface-v4.1_diff/ceres_ebaf_surface_v4.1-FLDSC-ANNUALCYCLE-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/annual_cycle_zonal_mean/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLNS-ANNUALCYCLE-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/annual_cycle_zonal_mean/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLNS-ANNUALCYCLE-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/annual_cycle_zonal_mean/CERES-EBAF-surface-v4.1_diff/ceres_ebaf_surface_v4.1-FLNS-ANNUALCYCLE-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/annual_cycle_zonal_mean/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLNSC-ANNUALCYCLE-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/annual_cycle_zonal_mean/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLNSC-ANNUALCYCLE-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/annual_cycle_zonal_mean/CERES-EBAF-surface-v4.1_diff/ceres_ebaf_surface_v4.1-FLNSC-ANNUALCYCLE-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/annual_cycle_zonal_mean/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSDS-ANNUALCYCLE-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/annual_cycle_zonal_mean/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSDS-ANNUALCYCLE-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/annual_cycle_zonal_mean/CERES-EBAF-surface-v4.1_diff/ceres_ebaf_surface_v4.1-FSDS-ANNUALCYCLE-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/annual_cycle_zonal_mean/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSDSC-ANNUALCYCLE-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/annual_cycle_zonal_mean/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSDSC-ANNUALCYCLE-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/annual_cycle_zonal_mean/CERES-EBAF-surface-v4.1_diff/ceres_ebaf_surface_v4.1-FSDSC-ANNUALCYCLE-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/annual_cycle_zonal_mean/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSNS-ANNUALCYCLE-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/annual_cycle_zonal_mean/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSNS-ANNUALCYCLE-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/annual_cycle_zonal_mean/CERES-EBAF-surface-v4.1_diff/ceres_ebaf_surface_v4.1-FSNS-ANNUALCYCLE-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/annual_cycle_zonal_mean/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSNSC-ANNUALCYCLE-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/annual_cycle_zonal_mean/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSNSC-ANNUALCYCLE-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/annual_cycle_zonal_mean/CERES-EBAF-surface-v4.1_diff/ceres_ebaf_surface_v4.1-FSNSC-ANNUALCYCLE-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/annual_cycle_zonal_mean/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-LWCFSRF-ANNUALCYCLE-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/annual_cycle_zonal_mean/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-LWCFSRF-ANNUALCYCLE-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/annual_cycle_zonal_mean/CERES-EBAF-surface-v4.1_diff/ceres_ebaf_surface_v4.1-LWCFSRF-ANNUALCYCLE-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/annual_cycle_zonal_mean/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-NETCF_SRF-ANNUALCYCLE-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/annual_cycle_zonal_mean/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-NETCF_SRF-ANNUALCYCLE-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/annual_cycle_zonal_mean/CERES-EBAF-surface-v4.1_diff/ceres_ebaf_surface_v4.1-NETCF_SRF-ANNUALCYCLE-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/annual_cycle_zonal_mean/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-SWCFSRF-ANNUALCYCLE-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/annual_cycle_zonal_mean/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-SWCFSRF-ANNUALCYCLE-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/annual_cycle_zonal_mean/CERES-EBAF-surface-v4.1_diff/ceres_ebaf_surface_v4.1-SWCFSRF-ANNUALCYCLE-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/annual_cycle_zonal_mean/COREv2_Flux/COREv2_Flux-PminusE-ANNUALCYCLE-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/annual_cycle_zonal_mean/COREv2_Flux/COREv2_Flux-PminusE-ANNUALCYCLE-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/annual_cycle_zonal_mean/COREv2_Flux_diff/COREv2_Flux-PminusE-ANNUALCYCLE-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/annual_cycle_zonal_mean/ERA5/ERA5-LHFLX-ANNUALCYCLE-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/annual_cycle_zonal_mean/ERA5/ERA5-LHFLX-ANNUALCYCLE-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/annual_cycle_zonal_mean/ERA5_diff/ERA5-LHFLX-ANNUALCYCLE-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/annual_cycle_zonal_mean/ERA5/ERA5-PRECT-ANNUALCYCLE-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/annual_cycle_zonal_mean/ERA5/ERA5-PRECT-ANNUALCYCLE-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/annual_cycle_zonal_mean/ERA5_diff/ERA5-PRECT-ANNUALCYCLE-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/annual_cycle_zonal_mean/ERA5/ERA5-PSL-ANNUALCYCLE-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/annual_cycle_zonal_mean/ERA5/ERA5-PSL-ANNUALCYCLE-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/annual_cycle_zonal_mean/ERA5_diff/ERA5-PSL-ANNUALCYCLE-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/annual_cycle_zonal_mean/ERA5/ERA5-SHFLX-ANNUALCYCLE-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/annual_cycle_zonal_mean/ERA5/ERA5-SHFLX-ANNUALCYCLE-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/annual_cycle_zonal_mean/ERA5_diff/ERA5-SHFLX-ANNUALCYCLE-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/annual_cycle_zonal_mean/ERA5/ERA5-TMQ-ANNUALCYCLE-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/annual_cycle_zonal_mean/ERA5/ERA5-TMQ-ANNUALCYCLE-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/annual_cycle_zonal_mean/ERA5_diff/ERA5-TMQ-ANNUALCYCLE-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/annual_cycle_zonal_mean/ERA5/ERA5-TREFHT-ANNUALCYCLE-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/annual_cycle_zonal_mean/ERA5/ERA5-TREFHT-ANNUALCYCLE-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/annual_cycle_zonal_mean/ERA5_diff/ERA5-TREFHT-ANNUALCYCLE-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/annual_cycle_zonal_mean/GPCP_OAFLux/GPCP_OAFLux-PminusE-ANNUALCYCLE-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/annual_cycle_zonal_mean/GPCP_OAFLux/GPCP_OAFLux-PminusE-ANNUALCYCLE-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/annual_cycle_zonal_mean/GPCP_OAFLux_diff/GPCP_OAFLux-PminusE-ANNUALCYCLE-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/annual_cycle_zonal_mean/GPCP_v2.3/GPCP_v2.3-PRECT-ANNUALCYCLE-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/annual_cycle_zonal_mean/GPCP_v2.3/GPCP_v2.3-PRECT-ANNUALCYCLE-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/annual_cycle_zonal_mean/GPCP_v2.3_diff/GPCP_v2.3-PRECT-ANNUALCYCLE-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/annual_cycle_zonal_mean/GPCP_v3.2/GPCP_v3.2-PRECT-ANNUALCYCLE-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/annual_cycle_zonal_mean/GPCP_v3.2/GPCP_v3.2-PRECT-ANNUALCYCLE-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/annual_cycle_zonal_mean/GPCP_v3.2_diff/GPCP_v3.2-PRECT-ANNUALCYCLE-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/annual_cycle_zonal_mean/MERRA2/MERRA2-LHFLX-ANNUALCYCLE-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/annual_cycle_zonal_mean/MERRA2/MERRA2-LHFLX-ANNUALCYCLE-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/annual_cycle_zonal_mean/MERRA2_diff/MERRA2-LHFLX-ANNUALCYCLE-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/annual_cycle_zonal_mean/MERRA2/MERRA2-PRECT-ANNUALCYCLE-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/annual_cycle_zonal_mean/MERRA2/MERRA2-PRECT-ANNUALCYCLE-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/annual_cycle_zonal_mean/MERRA2_diff/MERRA2-PRECT-ANNUALCYCLE-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/annual_cycle_zonal_mean/MERRA2/MERRA2-PSL-ANNUALCYCLE-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/annual_cycle_zonal_mean/MERRA2/MERRA2-PSL-ANNUALCYCLE-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/annual_cycle_zonal_mean/MERRA2_diff/MERRA2-PSL-ANNUALCYCLE-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/annual_cycle_zonal_mean/MERRA2/MERRA2-SHFLX-ANNUALCYCLE-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/annual_cycle_zonal_mean/MERRA2/MERRA2-SHFLX-ANNUALCYCLE-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/annual_cycle_zonal_mean/MERRA2_diff/MERRA2-SHFLX-ANNUALCYCLE-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/annual_cycle_zonal_mean/MERRA2/MERRA2-TMQ-ANNUALCYCLE-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/annual_cycle_zonal_mean/MERRA2/MERRA2-TMQ-ANNUALCYCLE-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/annual_cycle_zonal_mean/MERRA2_diff/MERRA2-TMQ-ANNUALCYCLE-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/annual_cycle_zonal_mean/MERRA2/MERRA2-TREFHT-ANNUALCYCLE-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/annual_cycle_zonal_mean/MERRA2/MERRA2-TREFHT-ANNUALCYCLE-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/annual_cycle_zonal_mean/MERRA2_diff/MERRA2-TREFHT-ANNUALCYCLE-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/annual_cycle_zonal_mean/OMI-MLS/OMI-MLS-SCO-ANNUALCYCLE-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/annual_cycle_zonal_mean/OMI-MLS/OMI-MLS-SCO-ANNUALCYCLE-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/annual_cycle_zonal_mean/OMI-MLS_diff/OMI-MLS-SCO-ANNUALCYCLE-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/annual_cycle_zonal_mean/OMI-MLS/OMI-MLS-TCO-ANNUALCYCLE-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/annual_cycle_zonal_mean/OMI-MLS/OMI-MLS-TCO-ANNUALCYCLE-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/annual_cycle_zonal_mean/OMI-MLS_diff/OMI-MLS-TCO-ANNUALCYCLE-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/annual_cycle_zonal_mean/SST_CL_HadISST/HadISST_CL-SST-ANNUALCYCLE-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/annual_cycle_zonal_mean/SST_CL_HadISST/HadISST_CL-SST-ANNUALCYCLE-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/annual_cycle_zonal_mean/SST_CL_HadISST_diff/HadISST_CL-SST-ANNUALCYCLE-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/cosp_histogram/ISCCP-COSP/ISCCPCOSP-COSP_HISTOGRAM_ISCCP-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/cosp_histogram/ISCCP-COSP/ISCCPCOSP-COSP_HISTOGRAM_ISCCP-ANN-global.png\n", + " * Plots are identical\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/cosp_histogram/ISCCP-COSP/ISCCPCOSP-COSP_HISTOGRAM_ISCCP-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/cosp_histogram/ISCCP-COSP/ISCCPCOSP-COSP_HISTOGRAM_ISCCP-JJA-global.png\n", + " * Plots are identical\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/cosp_histogram/MISR-COSP/MISRCOSP-COSP_HISTOGRAM_MISR-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/cosp_histogram/MISR-COSP/MISRCOSP-COSP_HISTOGRAM_MISR-ANN-global.png\n", + " * Plots are identical\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/cosp_histogram/MISR-COSP/MISRCOSP-COSP_HISTOGRAM_MISR-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/cosp_histogram/MISR-COSP/MISRCOSP-COSP_HISTOGRAM_MISR-JJA-global.png\n", + " * Plots are identical\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/cosp_histogram/MODIS-COSP/MODISCOSP-COSP_HISTOGRAM_MODIS-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/cosp_histogram/MODIS-COSP/MODISCOSP-COSP_HISTOGRAM_MODIS-ANN-global.png\n", + " * Plots are identical\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/cosp_histogram/MODIS-COSP/MODISCOSP-COSP_HISTOGRAM_MODIS-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/cosp_histogram/MODIS-COSP/MODISCOSP-COSP_HISTOGRAM_MODIS-JJA-global.png\n", + " * Plots are identical\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-ALBEDO-ANN-75S75N.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-ALBEDO-ANN-75S75N.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-TOA-v4.1_diff/ceres_ebaf_toa_v4.1-ALBEDO-ANN-75S75N.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-ALBEDO-JJA-75S75N.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-ALBEDO-JJA-75S75N.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-TOA-v4.1_diff/ceres_ebaf_toa_v4.1-ALBEDO-JJA-75S75N.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-ALBEDOC-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-ALBEDOC-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-TOA-v4.1_diff/ceres_ebaf_toa_v4.1-ALBEDOC-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-ALBEDOC-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-ALBEDOC-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-TOA-v4.1_diff/ceres_ebaf_toa_v4.1-ALBEDOC-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FLUT-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FLUT-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-TOA-v4.1_diff/ceres_ebaf_toa_v4.1-FLUT-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FLUT-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FLUT-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-TOA-v4.1_diff/ceres_ebaf_toa_v4.1-FLUT-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FLUTC-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FLUTC-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-TOA-v4.1_diff/ceres_ebaf_toa_v4.1-FLUTC-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FLUTC-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FLUTC-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-TOA-v4.1_diff/ceres_ebaf_toa_v4.1-FLUTC-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FSNTOA-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FSNTOA-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-TOA-v4.1_diff/ceres_ebaf_toa_v4.1-FSNTOA-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FSNTOA-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FSNTOA-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-TOA-v4.1_diff/ceres_ebaf_toa_v4.1-FSNTOA-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FSNTOAC-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FSNTOAC-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-TOA-v4.1_diff/ceres_ebaf_toa_v4.1-FSNTOAC-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FSNTOAC-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FSNTOAC-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-TOA-v4.1_diff/ceres_ebaf_toa_v4.1-FSNTOAC-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-LWCF-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-LWCF-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-TOA-v4.1_diff/ceres_ebaf_toa_v4.1-LWCF-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-LWCF-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-LWCF-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-TOA-v4.1_diff/ceres_ebaf_toa_v4.1-LWCF-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-NETCF-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-NETCF-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-TOA-v4.1_diff/ceres_ebaf_toa_v4.1-NETCF-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-NETCF-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-NETCF-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-TOA-v4.1_diff/ceres_ebaf_toa_v4.1-NETCF-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-RESTOM-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-RESTOM-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-TOA-v4.1_diff/ceres_ebaf_toa_v4.1-RESTOM-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-RESTOM-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-RESTOM-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-TOA-v4.1_diff/ceres_ebaf_toa_v4.1-RESTOM-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-SOLIN-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-SOLIN-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-TOA-v4.1_diff/ceres_ebaf_toa_v4.1-SOLIN-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-SOLIN-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-SOLIN-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-TOA-v4.1_diff/ceres_ebaf_toa_v4.1-SOLIN-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-SWCF-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-SWCF-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-TOA-v4.1_diff/ceres_ebaf_toa_v4.1-SWCF-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-SWCF-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-SWCF-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-TOA-v4.1_diff/ceres_ebaf_toa_v4.1-SWCF-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-ALBEDO_SRF-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-ALBEDO_SRF-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-surface-v4.1_diff/ceres_ebaf_surface_v4.1-ALBEDO_SRF-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-ALBEDO_SRF-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-ALBEDO_SRF-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-surface-v4.1_diff/ceres_ebaf_surface_v4.1-ALBEDO_SRF-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLDS-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLDS-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-surface-v4.1_diff/ceres_ebaf_surface_v4.1-FLDS-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLDS-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLDS-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-surface-v4.1_diff/ceres_ebaf_surface_v4.1-FLDS-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLDSC-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLDSC-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-surface-v4.1_diff/ceres_ebaf_surface_v4.1-FLDSC-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLDSC-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLDSC-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-surface-v4.1_diff/ceres_ebaf_surface_v4.1-FLDSC-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLNS-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLNS-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-surface-v4.1_diff/ceres_ebaf_surface_v4.1-FLNS-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLNS-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLNS-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-surface-v4.1_diff/ceres_ebaf_surface_v4.1-FLNS-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLNSC-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLNSC-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-surface-v4.1_diff/ceres_ebaf_surface_v4.1-FLNSC-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLNSC-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLNSC-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-surface-v4.1_diff/ceres_ebaf_surface_v4.1-FLNSC-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSDS-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSDS-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-surface-v4.1_diff/ceres_ebaf_surface_v4.1-FSDS-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSDS-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSDS-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-surface-v4.1_diff/ceres_ebaf_surface_v4.1-FSDS-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSDSC-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSDSC-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-surface-v4.1_diff/ceres_ebaf_surface_v4.1-FSDSC-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSDSC-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSDSC-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-surface-v4.1_diff/ceres_ebaf_surface_v4.1-FSDSC-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSNS-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSNS-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-surface-v4.1_diff/ceres_ebaf_surface_v4.1-FSNS-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSNS-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSNS-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-surface-v4.1_diff/ceres_ebaf_surface_v4.1-FSNS-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSNSC-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSNSC-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-surface-v4.1_diff/ceres_ebaf_surface_v4.1-FSNSC-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSNSC-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSNSC-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-surface-v4.1_diff/ceres_ebaf_surface_v4.1-FSNSC-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-LWCFSRF-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-LWCFSRF-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-surface-v4.1_diff/ceres_ebaf_surface_v4.1-LWCFSRF-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-LWCFSRF-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-LWCFSRF-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-surface-v4.1_diff/ceres_ebaf_surface_v4.1-LWCFSRF-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-NETCF_SRF-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-NETCF_SRF-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-surface-v4.1_diff/ceres_ebaf_surface_v4.1-NETCF_SRF-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-NETCF_SRF-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-NETCF_SRF-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-surface-v4.1_diff/ceres_ebaf_surface_v4.1-NETCF_SRF-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-SWCFSRF-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-SWCFSRF-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-surface-v4.1_diff/ceres_ebaf_surface_v4.1-SWCFSRF-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-SWCFSRF-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-SWCFSRF-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CERES-EBAF-surface-v4.1_diff/ceres_ebaf_surface_v4.1-SWCFSRF-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/COREv2_Flux/COREv2_Flux-PminusE-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/COREv2_Flux/COREv2_Flux-PminusE-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/COREv2_Flux_diff/COREv2_Flux-PminusE-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/COREv2_Flux/COREv2_Flux-PminusE-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/COREv2_Flux/COREv2_Flux-PminusE-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/COREv2_Flux_diff/COREv2_Flux-PminusE-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/CRU_IPCC/CRU-TREFHT-ANN-land_60S90N.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CRU_IPCC/CRU-TREFHT-ANN-land_60S90N.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CRU_IPCC_diff/CRU-TREFHT-ANN-land_60S90N.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/CRU_IPCC/CRU-TREFHT-JJA-land_60S90N.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CRU_IPCC/CRU-TREFHT-JJA-land_60S90N.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/CRU_IPCC_diff/CRU-TREFHT-JJA-land_60S90N.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/Cloud Calipso/CALIPSOCOSP-CLDHGH_CAL-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/Cloud Calipso/CALIPSOCOSP-CLDHGH_CAL-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/Cloud Calipso_diff/CALIPSOCOSP-CLDHGH_CAL-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/Cloud Calipso/CALIPSOCOSP-CLDHGH_CAL-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/Cloud Calipso/CALIPSOCOSP-CLDHGH_CAL-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/Cloud Calipso_diff/CALIPSOCOSP-CLDHGH_CAL-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/Cloud Calipso/CALIPSOCOSP-CLDLOW_CAL-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/Cloud Calipso/CALIPSOCOSP-CLDLOW_CAL-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/Cloud Calipso_diff/CALIPSOCOSP-CLDLOW_CAL-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/Cloud Calipso/CALIPSOCOSP-CLDLOW_CAL-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/Cloud Calipso/CALIPSOCOSP-CLDLOW_CAL-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/Cloud Calipso_diff/CALIPSOCOSP-CLDLOW_CAL-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/Cloud Calipso/CALIPSOCOSP-CLDMED_CAL-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/Cloud Calipso/CALIPSOCOSP-CLDMED_CAL-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/Cloud Calipso_diff/CALIPSOCOSP-CLDMED_CAL-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/Cloud Calipso/CALIPSOCOSP-CLDMED_CAL-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/Cloud Calipso/CALIPSOCOSP-CLDMED_CAL-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/Cloud Calipso_diff/CALIPSOCOSP-CLDMED_CAL-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/Cloud Calipso/CALIPSOCOSP-CLDTOT_CAL-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/Cloud Calipso/CALIPSOCOSP-CLDTOT_CAL-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/Cloud Calipso_diff/CALIPSOCOSP-CLDTOT_CAL-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/Cloud Calipso/CALIPSOCOSP-CLDTOT_CAL-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/Cloud Calipso/CALIPSOCOSP-CLDTOT_CAL-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/Cloud Calipso_diff/CALIPSOCOSP-CLDTOT_CAL-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/Cloud ISCCP/ISCCPCOSP-CLDTOT_TAU1.3_9.4_ISCCP-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/Cloud ISCCP/ISCCPCOSP-CLDTOT_TAU1.3_9.4_ISCCP-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/Cloud ISCCP_diff/ISCCPCOSP-CLDTOT_TAU1.3_9.4_ISCCP-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/Cloud ISCCP/ISCCPCOSP-CLDTOT_TAU1.3_9.4_ISCCP-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/Cloud ISCCP/ISCCPCOSP-CLDTOT_TAU1.3_9.4_ISCCP-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/Cloud ISCCP_diff/ISCCPCOSP-CLDTOT_TAU1.3_9.4_ISCCP-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/Cloud ISCCP/ISCCPCOSP-CLDTOT_TAU1.3_ISCCP-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/Cloud ISCCP/ISCCPCOSP-CLDTOT_TAU1.3_ISCCP-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/Cloud ISCCP_diff/ISCCPCOSP-CLDTOT_TAU1.3_ISCCP-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/Cloud ISCCP/ISCCPCOSP-CLDTOT_TAU1.3_ISCCP-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/Cloud ISCCP/ISCCPCOSP-CLDTOT_TAU1.3_ISCCP-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/Cloud ISCCP_diff/ISCCPCOSP-CLDTOT_TAU1.3_ISCCP-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/Cloud ISCCP/ISCCPCOSP-CLDTOT_TAU9.4_ISCCP-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/Cloud ISCCP/ISCCPCOSP-CLDTOT_TAU9.4_ISCCP-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/Cloud ISCCP_diff/ISCCPCOSP-CLDTOT_TAU9.4_ISCCP-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/Cloud ISCCP/ISCCPCOSP-CLDTOT_TAU9.4_ISCCP-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/Cloud ISCCP/ISCCPCOSP-CLDTOT_TAU9.4_ISCCP-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/Cloud ISCCP_diff/ISCCPCOSP-CLDTOT_TAU9.4_ISCCP-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/Cloud MISR/MISRCOSP-CLDLOW_TAU1.3_9.4_MISR-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/Cloud MISR/MISRCOSP-CLDLOW_TAU1.3_9.4_MISR-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/Cloud MISR_diff/MISRCOSP-CLDLOW_TAU1.3_9.4_MISR-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/Cloud MISR/MISRCOSP-CLDLOW_TAU1.3_9.4_MISR-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/Cloud MISR/MISRCOSP-CLDLOW_TAU1.3_9.4_MISR-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/Cloud MISR_diff/MISRCOSP-CLDLOW_TAU1.3_9.4_MISR-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/Cloud MISR/MISRCOSP-CLDLOW_TAU1.3_MISR-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/Cloud MISR/MISRCOSP-CLDLOW_TAU1.3_MISR-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/Cloud MISR_diff/MISRCOSP-CLDLOW_TAU1.3_MISR-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/Cloud MISR/MISRCOSP-CLDLOW_TAU1.3_MISR-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/Cloud MISR/MISRCOSP-CLDLOW_TAU1.3_MISR-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/Cloud MISR_diff/MISRCOSP-CLDLOW_TAU1.3_MISR-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/Cloud MISR/MISRCOSP-CLDLOW_TAU9.4_MISR-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/Cloud MISR/MISRCOSP-CLDLOW_TAU9.4_MISR-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/Cloud MISR_diff/MISRCOSP-CLDLOW_TAU9.4_MISR-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/Cloud MISR/MISRCOSP-CLDLOW_TAU9.4_MISR-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/Cloud MISR/MISRCOSP-CLDLOW_TAU9.4_MISR-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/Cloud MISR_diff/MISRCOSP-CLDLOW_TAU9.4_MISR-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/Cloud MISR/MISRCOSP-CLDTOT_TAU1.3_9.4_MISR-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/Cloud MISR/MISRCOSP-CLDTOT_TAU1.3_9.4_MISR-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/Cloud MISR_diff/MISRCOSP-CLDTOT_TAU1.3_9.4_MISR-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/Cloud MISR/MISRCOSP-CLDTOT_TAU1.3_9.4_MISR-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/Cloud MISR/MISRCOSP-CLDTOT_TAU1.3_9.4_MISR-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/Cloud MISR_diff/MISRCOSP-CLDTOT_TAU1.3_9.4_MISR-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/Cloud MISR/MISRCOSP-CLDTOT_TAU1.3_MISR-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/Cloud MISR/MISRCOSP-CLDTOT_TAU1.3_MISR-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/Cloud MISR_diff/MISRCOSP-CLDTOT_TAU1.3_MISR-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/Cloud MISR/MISRCOSP-CLDTOT_TAU1.3_MISR-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/Cloud MISR/MISRCOSP-CLDTOT_TAU1.3_MISR-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/Cloud MISR_diff/MISRCOSP-CLDTOT_TAU1.3_MISR-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/Cloud MISR/MISRCOSP-CLDTOT_TAU9.4_MISR-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/Cloud MISR/MISRCOSP-CLDTOT_TAU9.4_MISR-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/Cloud MISR_diff/MISRCOSP-CLDTOT_TAU9.4_MISR-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/Cloud MISR/MISRCOSP-CLDTOT_TAU9.4_MISR-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/Cloud MISR/MISRCOSP-CLDTOT_TAU9.4_MISR-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/Cloud MISR_diff/MISRCOSP-CLDTOT_TAU9.4_MISR-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/Cloud MODIS/MODISCOSP-CLDHGH_TAU1.3_9.4_MODIS-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/Cloud MODIS/MODISCOSP-CLDHGH_TAU1.3_9.4_MODIS-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/Cloud MODIS_diff/MODISCOSP-CLDHGH_TAU1.3_9.4_MODIS-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/Cloud MODIS/MODISCOSP-CLDHGH_TAU1.3_9.4_MODIS-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/Cloud MODIS/MODISCOSP-CLDHGH_TAU1.3_9.4_MODIS-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/Cloud MODIS_diff/MODISCOSP-CLDHGH_TAU1.3_9.4_MODIS-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/Cloud MODIS/MODISCOSP-CLDHGH_TAU1.3_MODIS-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/Cloud MODIS/MODISCOSP-CLDHGH_TAU1.3_MODIS-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/Cloud MODIS_diff/MODISCOSP-CLDHGH_TAU1.3_MODIS-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/Cloud MODIS/MODISCOSP-CLDHGH_TAU1.3_MODIS-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/Cloud MODIS/MODISCOSP-CLDHGH_TAU1.3_MODIS-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/Cloud MODIS_diff/MODISCOSP-CLDHGH_TAU1.3_MODIS-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/Cloud MODIS/MODISCOSP-CLDHGH_TAU9.4_MODIS-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/Cloud MODIS/MODISCOSP-CLDHGH_TAU9.4_MODIS-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/Cloud MODIS_diff/MODISCOSP-CLDHGH_TAU9.4_MODIS-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/Cloud MODIS/MODISCOSP-CLDHGH_TAU9.4_MODIS-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/Cloud MODIS/MODISCOSP-CLDHGH_TAU9.4_MODIS-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/Cloud MODIS_diff/MODISCOSP-CLDHGH_TAU9.4_MODIS-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/Cloud MODIS/MODISCOSP-CLDTOT_TAU1.3_9.4_MODIS-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/Cloud MODIS/MODISCOSP-CLDTOT_TAU1.3_9.4_MODIS-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/Cloud MODIS_diff/MODISCOSP-CLDTOT_TAU1.3_9.4_MODIS-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/Cloud MODIS/MODISCOSP-CLDTOT_TAU1.3_9.4_MODIS-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/Cloud MODIS/MODISCOSP-CLDTOT_TAU1.3_9.4_MODIS-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/Cloud MODIS_diff/MODISCOSP-CLDTOT_TAU1.3_9.4_MODIS-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/Cloud MODIS/MODISCOSP-CLDTOT_TAU1.3_MODIS-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/Cloud MODIS/MODISCOSP-CLDTOT_TAU1.3_MODIS-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/Cloud MODIS_diff/MODISCOSP-CLDTOT_TAU1.3_MODIS-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/Cloud MODIS/MODISCOSP-CLDTOT_TAU1.3_MODIS-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/Cloud MODIS/MODISCOSP-CLDTOT_TAU1.3_MODIS-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/Cloud MODIS_diff/MODISCOSP-CLDTOT_TAU1.3_MODIS-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/Cloud MODIS/MODISCOSP-CLDTOT_TAU9.4_MODIS-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/Cloud MODIS/MODISCOSP-CLDTOT_TAU9.4_MODIS-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/Cloud MODIS_diff/MODISCOSP-CLDTOT_TAU9.4_MODIS-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/Cloud MODIS/MODISCOSP-CLDTOT_TAU9.4_MODIS-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/Cloud MODIS/MODISCOSP-CLDTOT_TAU9.4_MODIS-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/Cloud MODIS_diff/MODISCOSP-CLDTOT_TAU9.4_MODIS-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/ERA5/ERA5-FLNS-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/ERA5/ERA5-FLNS-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/ERA5_diff/ERA5-FLNS-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/ERA5/ERA5-FLNS-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/ERA5/ERA5-FLNS-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/ERA5_diff/ERA5-FLNS-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/ERA5/ERA5-FSNS-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/ERA5/ERA5-FSNS-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/ERA5_diff/ERA5-FSNS-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/ERA5/ERA5-FSNS-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/ERA5/ERA5-FSNS-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/ERA5_diff/ERA5-FSNS-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/ERA5/ERA5-LHFLX-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/ERA5/ERA5-LHFLX-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/ERA5_diff/ERA5-LHFLX-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/ERA5/ERA5-LHFLX-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/ERA5/ERA5-LHFLX-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/ERA5_diff/ERA5-LHFLX-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/ERA5/ERA5-NET_FLUX_SRF-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/ERA5/ERA5-NET_FLUX_SRF-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/ERA5_diff/ERA5-NET_FLUX_SRF-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/ERA5/ERA5-NET_FLUX_SRF-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/ERA5/ERA5-NET_FLUX_SRF-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/ERA5_diff/ERA5-NET_FLUX_SRF-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/ERA5/ERA5-OMEGA-200-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/ERA5/ERA5-OMEGA-200-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/ERA5_diff/ERA5-OMEGA-200-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/ERA5/ERA5-OMEGA-200-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/ERA5/ERA5-OMEGA-200-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/ERA5_diff/ERA5-OMEGA-200-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/ERA5/ERA5-OMEGA-500-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/ERA5/ERA5-OMEGA-500-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/ERA5_diff/ERA5-OMEGA-500-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/ERA5/ERA5-OMEGA-500-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/ERA5/ERA5-OMEGA-500-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/ERA5_diff/ERA5-OMEGA-500-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/ERA5/ERA5-OMEGA-850-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/ERA5/ERA5-OMEGA-850-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/ERA5_diff/ERA5-OMEGA-850-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/ERA5/ERA5-OMEGA-850-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/ERA5/ERA5-OMEGA-850-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/ERA5_diff/ERA5-OMEGA-850-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/ERA5/ERA5-PRECT-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/ERA5/ERA5-PRECT-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/ERA5_diff/ERA5-PRECT-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/ERA5/ERA5-PRECT-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/ERA5/ERA5-PRECT-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/ERA5_diff/ERA5-PRECT-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/ERA5/ERA5-PSL-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/ERA5/ERA5-PSL-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/ERA5_diff/ERA5-PSL-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/ERA5/ERA5-PSL-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/ERA5/ERA5-PSL-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/ERA5_diff/ERA5-PSL-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/ERA5/ERA5-SHFLX-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/ERA5/ERA5-SHFLX-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/ERA5_diff/ERA5-SHFLX-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/ERA5/ERA5-SHFLX-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/ERA5/ERA5-SHFLX-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/ERA5_diff/ERA5-SHFLX-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/ERA5/ERA5-T-200-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/ERA5/ERA5-T-200-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/ERA5_diff/ERA5-T-200-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/ERA5/ERA5-T-200-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/ERA5/ERA5-T-200-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/ERA5_diff/ERA5-T-200-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/ERA5/ERA5-T-850-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/ERA5/ERA5-T-850-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/ERA5_diff/ERA5-T-850-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/ERA5/ERA5-T-850-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/ERA5/ERA5-T-850-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/ERA5_diff/ERA5-T-850-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/ERA5/ERA5-TAUXY-ANN-ocean.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/ERA5/ERA5-TAUXY-ANN-ocean.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/ERA5_diff/ERA5-TAUXY-ANN-ocean.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/ERA5/ERA5-TAUXY-JJA-ocean.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/ERA5/ERA5-TAUXY-JJA-ocean.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/ERA5_diff/ERA5-TAUXY-JJA-ocean.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/ERA5/ERA5-TMQ-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/ERA5/ERA5-TMQ-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/ERA5_diff/ERA5-TMQ-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/ERA5/ERA5-TMQ-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/ERA5/ERA5-TMQ-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/ERA5_diff/ERA5-TMQ-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/ERA5/ERA5-TREFHT-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/ERA5/ERA5-TREFHT-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/ERA5_diff/ERA5-TREFHT-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/ERA5/ERA5-TREFHT-ANN-land.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/ERA5/ERA5-TREFHT-ANN-land.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/ERA5_diff/ERA5-TREFHT-ANN-land.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/ERA5/ERA5-TREFHT-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/ERA5/ERA5-TREFHT-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/ERA5_diff/ERA5-TREFHT-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/ERA5/ERA5-TREFHT-JJA-land.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/ERA5/ERA5-TREFHT-JJA-land.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/ERA5_diff/ERA5-TREFHT-JJA-land.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/ERA5/ERA5-U-200-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/ERA5/ERA5-U-200-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/ERA5_diff/ERA5-U-200-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/ERA5/ERA5-U-200-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/ERA5/ERA5-U-200-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/ERA5_diff/ERA5-U-200-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/ERA5/ERA5-U-850-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/ERA5/ERA5-U-850-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/ERA5_diff/ERA5-U-850-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/ERA5/ERA5-U-850-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/ERA5/ERA5-U-850-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/ERA5_diff/ERA5-U-850-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/ERA5/ERA5-Z3-500-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/ERA5/ERA5-Z3-500-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/ERA5_diff/ERA5-Z3-500-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/ERA5/ERA5-Z3-500-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/ERA5/ERA5-Z3-500-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/ERA5_diff/ERA5-Z3-500-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/ERA5/ERA5_ext-QREFHT-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/ERA5/ERA5_ext-QREFHT-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/ERA5_diff/ERA5_ext-QREFHT-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/ERA5/ERA5_ext-QREFHT-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/ERA5/ERA5_ext-QREFHT-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/ERA5_diff/ERA5_ext-QREFHT-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/ERA5/ERA5_ext-U10-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/ERA5/ERA5_ext-U10-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/ERA5_diff/ERA5_ext-U10-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/ERA5/ERA5_ext-U10-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/ERA5/ERA5_ext-U10-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/ERA5_diff/ERA5_ext-U10-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/GPCP_OAFLux/GPCP_OAFLux-PminusE-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/GPCP_OAFLux/GPCP_OAFLux-PminusE-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/GPCP_OAFLux_diff/GPCP_OAFLux-PminusE-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/GPCP_OAFLux/GPCP_OAFLux-PminusE-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/GPCP_OAFLux/GPCP_OAFLux-PminusE-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/GPCP_OAFLux_diff/GPCP_OAFLux-PminusE-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/GPCP_v2.3/GPCP_v2.3-PRECT-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/GPCP_v2.3/GPCP_v2.3-PRECT-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/GPCP_v2.3_diff/GPCP_v2.3-PRECT-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/GPCP_v2.3/GPCP_v2.3-PRECT-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/GPCP_v2.3/GPCP_v2.3-PRECT-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/GPCP_v2.3_diff/GPCP_v2.3-PRECT-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/GPCP_v3.2/GPCP_v3.2-PRECT-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/GPCP_v3.2/GPCP_v3.2-PRECT-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/GPCP_v3.2_diff/GPCP_v3.2-PRECT-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/GPCP_v3.2/GPCP_v3.2-PRECT-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/GPCP_v3.2/GPCP_v3.2-PRECT-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/GPCP_v3.2_diff/GPCP_v3.2-PRECT-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/MERRA2/MERRA2-FLNS-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/MERRA2/MERRA2-FLNS-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/MERRA2_diff/MERRA2-FLNS-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/MERRA2/MERRA2-FLNS-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/MERRA2/MERRA2-FLNS-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/MERRA2_diff/MERRA2-FLNS-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/MERRA2/MERRA2-FSNS-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/MERRA2/MERRA2-FSNS-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/MERRA2_diff/MERRA2-FSNS-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/MERRA2/MERRA2-FSNS-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/MERRA2/MERRA2-FSNS-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/MERRA2_diff/MERRA2-FSNS-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/MERRA2/MERRA2-LHFLX-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/MERRA2/MERRA2-LHFLX-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/MERRA2_diff/MERRA2-LHFLX-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/MERRA2/MERRA2-LHFLX-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/MERRA2/MERRA2-LHFLX-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/MERRA2_diff/MERRA2-LHFLX-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/MERRA2/MERRA2-NET_FLUX_SRF-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/MERRA2/MERRA2-NET_FLUX_SRF-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/MERRA2_diff/MERRA2-NET_FLUX_SRF-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/MERRA2/MERRA2-NET_FLUX_SRF-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/MERRA2/MERRA2-NET_FLUX_SRF-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/MERRA2_diff/MERRA2-NET_FLUX_SRF-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/MERRA2/MERRA2-OMEGA-200-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/MERRA2/MERRA2-OMEGA-200-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/MERRA2_diff/MERRA2-OMEGA-200-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/MERRA2/MERRA2-OMEGA-200-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/MERRA2/MERRA2-OMEGA-200-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/MERRA2_diff/MERRA2-OMEGA-200-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/MERRA2/MERRA2-OMEGA-500-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/MERRA2/MERRA2-OMEGA-500-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/MERRA2_diff/MERRA2-OMEGA-500-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/MERRA2/MERRA2-OMEGA-500-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/MERRA2/MERRA2-OMEGA-500-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/MERRA2_diff/MERRA2-OMEGA-500-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/MERRA2/MERRA2-OMEGA-850-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/MERRA2/MERRA2-OMEGA-850-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/MERRA2_diff/MERRA2-OMEGA-850-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/MERRA2/MERRA2-OMEGA-850-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/MERRA2/MERRA2-OMEGA-850-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/MERRA2_diff/MERRA2-OMEGA-850-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/MERRA2/MERRA2-PRECT-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/MERRA2/MERRA2-PRECT-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/MERRA2_diff/MERRA2-PRECT-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/MERRA2/MERRA2-PRECT-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/MERRA2/MERRA2-PRECT-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/MERRA2_diff/MERRA2-PRECT-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/MERRA2/MERRA2-PSL-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/MERRA2/MERRA2-PSL-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/MERRA2_diff/MERRA2-PSL-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/MERRA2/MERRA2-PSL-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/MERRA2/MERRA2-PSL-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/MERRA2_diff/MERRA2-PSL-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/MERRA2/MERRA2-SHFLX-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/MERRA2/MERRA2-SHFLX-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/MERRA2_diff/MERRA2-SHFLX-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/MERRA2/MERRA2-SHFLX-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/MERRA2/MERRA2-SHFLX-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/MERRA2_diff/MERRA2-SHFLX-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/MERRA2/MERRA2-T-200-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/MERRA2/MERRA2-T-200-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/MERRA2_diff/MERRA2-T-200-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/MERRA2/MERRA2-T-200-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/MERRA2/MERRA2-T-200-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/MERRA2_diff/MERRA2-T-200-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/MERRA2/MERRA2-T-850-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/MERRA2/MERRA2-T-850-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/MERRA2_diff/MERRA2-T-850-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/MERRA2/MERRA2-T-850-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/MERRA2/MERRA2-T-850-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/MERRA2_diff/MERRA2-T-850-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/MERRA2/MERRA2-TAUXY-ANN-ocean.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/MERRA2/MERRA2-TAUXY-ANN-ocean.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/MERRA2_diff/MERRA2-TAUXY-ANN-ocean.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/MERRA2/MERRA2-TAUXY-JJA-ocean.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/MERRA2/MERRA2-TAUXY-JJA-ocean.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/MERRA2_diff/MERRA2-TAUXY-JJA-ocean.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/MERRA2/MERRA2-TMQ-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/MERRA2/MERRA2-TMQ-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/MERRA2_diff/MERRA2-TMQ-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/MERRA2/MERRA2-TMQ-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/MERRA2/MERRA2-TMQ-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/MERRA2_diff/MERRA2-TMQ-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/MERRA2/MERRA2-TREFHT-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/MERRA2/MERRA2-TREFHT-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/MERRA2_diff/MERRA2-TREFHT-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/MERRA2/MERRA2-TREFHT-ANN-land.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/MERRA2/MERRA2-TREFHT-ANN-land.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/MERRA2_diff/MERRA2-TREFHT-ANN-land.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/MERRA2/MERRA2-TREFHT-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/MERRA2/MERRA2-TREFHT-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/MERRA2_diff/MERRA2-TREFHT-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/MERRA2/MERRA2-TREFHT-JJA-land.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/MERRA2/MERRA2-TREFHT-JJA-land.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/MERRA2_diff/MERRA2-TREFHT-JJA-land.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/MERRA2/MERRA2-TREFMNAV-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/MERRA2/MERRA2-TREFMNAV-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/MERRA2_diff/MERRA2-TREFMNAV-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/MERRA2/MERRA2-TREFMNAV-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/MERRA2/MERRA2-TREFMNAV-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/MERRA2_diff/MERRA2-TREFMNAV-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/MERRA2/MERRA2-TREFMXAV-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/MERRA2/MERRA2-TREFMXAV-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/MERRA2_diff/MERRA2-TREFMXAV-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/MERRA2/MERRA2-TREFMXAV-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/MERRA2/MERRA2-TREFMXAV-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/MERRA2_diff/MERRA2-TREFMXAV-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/MERRA2/MERRA2-TREF_range-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/MERRA2/MERRA2-TREF_range-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/MERRA2_diff/MERRA2-TREF_range-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/MERRA2/MERRA2-TREF_range-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/MERRA2/MERRA2-TREF_range-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/MERRA2_diff/MERRA2-TREF_range-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/MERRA2/MERRA2-U-200-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/MERRA2/MERRA2-U-200-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/MERRA2_diff/MERRA2-U-200-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/MERRA2/MERRA2-U-200-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/MERRA2/MERRA2-U-200-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/MERRA2_diff/MERRA2-U-200-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/MERRA2/MERRA2-U-850-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/MERRA2/MERRA2-U-850-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/MERRA2_diff/MERRA2-U-850-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/MERRA2/MERRA2-U-850-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/MERRA2/MERRA2-U-850-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/MERRA2_diff/MERRA2-U-850-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/MERRA2/MERRA2-Z3-500-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/MERRA2/MERRA2-Z3-500-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/MERRA2_diff/MERRA2-Z3-500-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/MERRA2/MERRA2-Z3-500-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/MERRA2/MERRA2-Z3-500-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/MERRA2_diff/MERRA2-Z3-500-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/OMI-MLS/OMI-MLS-TCO-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/OMI-MLS/OMI-MLS-TCO-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/OMI-MLS_diff/OMI-MLS-TCO-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/OMI-MLS/OMI-MLS-TCO-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/OMI-MLS/OMI-MLS-TCO-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/OMI-MLS_diff/OMI-MLS-TCO-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/SST_CL_HadISST/HadISST_CL-SST-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/SST_CL_HadISST/HadISST_CL-SST-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/SST_CL_HadISST_diff/HadISST_CL-SST-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/SST_CL_HadISST/HadISST_CL-SST-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/SST_CL_HadISST/HadISST_CL-SST-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/SST_CL_HadISST_diff/HadISST_CL-SST-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/SST_HadISST/HadISST-SST-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/SST_HadISST/HadISST-SST-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/SST_HadISST_diff/HadISST-SST-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/SST_HadISST/HadISST-SST-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/SST_HadISST/HadISST-SST-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/SST_HadISST_diff/HadISST-SST-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/SST_PD_HadISST/HadISST_PD-SST-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/SST_PD_HadISST/HadISST_PD-SST-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/SST_PD_HadISST_diff/HadISST_PD-SST-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/SST_PD_HadISST/HadISST_PD-SST-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/SST_PD_HadISST/HadISST_PD-SST-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/SST_PD_HadISST_diff/HadISST_PD-SST-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/SST_PI_HadISST/HadISST_PI-SST-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/SST_PI_HadISST/HadISST_PI-SST-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/SST_PI_HadISST_diff/HadISST_PI-SST-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/SST_PI_HadISST/HadISST_PI-SST-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/SST_PI_HadISST/HadISST_PI-SST-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/SST_PI_HadISST_diff/HadISST_PI-SST-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/WHOI-OAFlux/OAFlux-LHFLX-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/WHOI-OAFlux/OAFlux-LHFLX-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/WHOI-OAFlux_diff/OAFlux-LHFLX-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/WHOI-OAFlux/OAFlux-LHFLX-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/WHOI-OAFlux/OAFlux-LHFLX-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/WHOI-OAFlux_diff/OAFlux-LHFLX-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/WHOI-OAFlux/OAFlux-SHFLX-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/WHOI-OAFlux/OAFlux-SHFLX-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/WHOI-OAFlux_diff/OAFlux-SHFLX-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/lat_lon/WHOI-OAFlux/OAFlux-SHFLX-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/WHOI-OAFlux/OAFlux-SHFLX-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/lat_lon/WHOI-OAFlux_diff/OAFlux-SHFLX-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/meridional_mean_2d/ERA5/ERA5-OMEGA-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/meridional_mean_2d/ERA5/ERA5-OMEGA-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/meridional_mean_2d/ERA5_diff/ERA5-OMEGA-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/meridional_mean_2d/ERA5/ERA5-OMEGA-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/meridional_mean_2d/ERA5/ERA5-OMEGA-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/meridional_mean_2d/ERA5_diff/ERA5-OMEGA-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/meridional_mean_2d/ERA5/ERA5-RELHUM-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/meridional_mean_2d/ERA5/ERA5-RELHUM-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/meridional_mean_2d/ERA5_diff/ERA5-RELHUM-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/meridional_mean_2d/ERA5/ERA5-RELHUM-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/meridional_mean_2d/ERA5/ERA5-RELHUM-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/meridional_mean_2d/ERA5_diff/ERA5-RELHUM-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/meridional_mean_2d/ERA5/ERA5-T-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/meridional_mean_2d/ERA5/ERA5-T-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/meridional_mean_2d/ERA5_diff/ERA5-T-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/meridional_mean_2d/ERA5/ERA5-T-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/meridional_mean_2d/ERA5/ERA5-T-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/meridional_mean_2d/ERA5_diff/ERA5-T-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/meridional_mean_2d/ERA5/ERA5-U-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/meridional_mean_2d/ERA5/ERA5-U-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/meridional_mean_2d/ERA5_diff/ERA5-U-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/meridional_mean_2d/ERA5/ERA5-U-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/meridional_mean_2d/ERA5/ERA5-U-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/meridional_mean_2d/ERA5_diff/ERA5-U-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/meridional_mean_2d/MERRA2/MERRA2-OMEGA-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/meridional_mean_2d/MERRA2/MERRA2-OMEGA-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/meridional_mean_2d/MERRA2_diff/MERRA2-OMEGA-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/meridional_mean_2d/MERRA2/MERRA2-OMEGA-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/meridional_mean_2d/MERRA2/MERRA2-OMEGA-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/meridional_mean_2d/MERRA2_diff/MERRA2-OMEGA-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/meridional_mean_2d/MERRA2/MERRA2-RELHUM-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/meridional_mean_2d/MERRA2/MERRA2-RELHUM-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/meridional_mean_2d/MERRA2_diff/MERRA2-RELHUM-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/meridional_mean_2d/MERRA2/MERRA2-RELHUM-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/meridional_mean_2d/MERRA2/MERRA2-RELHUM-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/meridional_mean_2d/MERRA2_diff/MERRA2-RELHUM-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/meridional_mean_2d/MERRA2/MERRA2-T-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/meridional_mean_2d/MERRA2/MERRA2-T-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/meridional_mean_2d/MERRA2_diff/MERRA2-T-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/meridional_mean_2d/MERRA2/MERRA2-T-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/meridional_mean_2d/MERRA2/MERRA2-T-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/meridional_mean_2d/MERRA2_diff/MERRA2-T-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/meridional_mean_2d/MERRA2/MERRA2-U-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/meridional_mean_2d/MERRA2/MERRA2-U-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/meridional_mean_2d/MERRA2_diff/MERRA2-U-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/meridional_mean_2d/MERRA2/MERRA2-U-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/meridional_mean_2d/MERRA2/MERRA2-U-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/meridional_mean_2d/MERRA2_diff/MERRA2-U-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/mp_partition/mixed-phase_partition/mixed-phase_partition.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/mp_partition/mixed-phase_partition/mixed-phase_partition.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/mp_partition/mixed-phase_partition_diff/mixed-phase_partition.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-ALBEDO_SRF-ANN-polar_N.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-ALBEDO_SRF-ANN-polar_N.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CERES-EBAF-surface-v4.1_diff/ceres_ebaf_surface_v4.1-ALBEDO_SRF-ANN-polar_N.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-ALBEDO_SRF-ANN-polar_S.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-ALBEDO_SRF-ANN-polar_S.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CERES-EBAF-surface-v4.1_diff/ceres_ebaf_surface_v4.1-ALBEDO_SRF-ANN-polar_S.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-ALBEDO_SRF-JJA-polar_N.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-ALBEDO_SRF-JJA-polar_N.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CERES-EBAF-surface-v4.1_diff/ceres_ebaf_surface_v4.1-ALBEDO_SRF-JJA-polar_N.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-ALBEDO_SRF-JJA-polar_S.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-ALBEDO_SRF-JJA-polar_S.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CERES-EBAF-surface-v4.1_diff/ceres_ebaf_surface_v4.1-ALBEDO_SRF-JJA-polar_S.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLDS-ANN-polar_N.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLDS-ANN-polar_N.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CERES-EBAF-surface-v4.1_diff/ceres_ebaf_surface_v4.1-FLDS-ANN-polar_N.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLDS-ANN-polar_S.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLDS-ANN-polar_S.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CERES-EBAF-surface-v4.1_diff/ceres_ebaf_surface_v4.1-FLDS-ANN-polar_S.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLDS-JJA-polar_N.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLDS-JJA-polar_N.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CERES-EBAF-surface-v4.1_diff/ceres_ebaf_surface_v4.1-FLDS-JJA-polar_N.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLDS-JJA-polar_S.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLDS-JJA-polar_S.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CERES-EBAF-surface-v4.1_diff/ceres_ebaf_surface_v4.1-FLDS-JJA-polar_S.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLDSC-ANN-polar_N.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLDSC-ANN-polar_N.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CERES-EBAF-surface-v4.1_diff/ceres_ebaf_surface_v4.1-FLDSC-ANN-polar_N.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLDSC-ANN-polar_S.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLDSC-ANN-polar_S.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CERES-EBAF-surface-v4.1_diff/ceres_ebaf_surface_v4.1-FLDSC-ANN-polar_S.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLDSC-JJA-polar_N.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLDSC-JJA-polar_N.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CERES-EBAF-surface-v4.1_diff/ceres_ebaf_surface_v4.1-FLDSC-JJA-polar_N.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLDSC-JJA-polar_S.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLDSC-JJA-polar_S.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CERES-EBAF-surface-v4.1_diff/ceres_ebaf_surface_v4.1-FLDSC-JJA-polar_S.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLNS-ANN-polar_N.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLNS-ANN-polar_N.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CERES-EBAF-surface-v4.1_diff/ceres_ebaf_surface_v4.1-FLNS-ANN-polar_N.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLNS-ANN-polar_S.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLNS-ANN-polar_S.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CERES-EBAF-surface-v4.1_diff/ceres_ebaf_surface_v4.1-FLNS-ANN-polar_S.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLNS-JJA-polar_N.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLNS-JJA-polar_N.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CERES-EBAF-surface-v4.1_diff/ceres_ebaf_surface_v4.1-FLNS-JJA-polar_N.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLNS-JJA-polar_S.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLNS-JJA-polar_S.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CERES-EBAF-surface-v4.1_diff/ceres_ebaf_surface_v4.1-FLNS-JJA-polar_S.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLNSC-ANN-polar_N.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLNSC-ANN-polar_N.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CERES-EBAF-surface-v4.1_diff/ceres_ebaf_surface_v4.1-FLNSC-ANN-polar_N.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLNSC-ANN-polar_S.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLNSC-ANN-polar_S.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CERES-EBAF-surface-v4.1_diff/ceres_ebaf_surface_v4.1-FLNSC-ANN-polar_S.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLNSC-JJA-polar_N.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLNSC-JJA-polar_N.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CERES-EBAF-surface-v4.1_diff/ceres_ebaf_surface_v4.1-FLNSC-JJA-polar_N.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLNSC-JJA-polar_S.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLNSC-JJA-polar_S.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CERES-EBAF-surface-v4.1_diff/ceres_ebaf_surface_v4.1-FLNSC-JJA-polar_S.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSDS-ANN-polar_N.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSDS-ANN-polar_N.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CERES-EBAF-surface-v4.1_diff/ceres_ebaf_surface_v4.1-FSDS-ANN-polar_N.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSDS-ANN-polar_S.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSDS-ANN-polar_S.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CERES-EBAF-surface-v4.1_diff/ceres_ebaf_surface_v4.1-FSDS-ANN-polar_S.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSDS-JJA-polar_N.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSDS-JJA-polar_N.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CERES-EBAF-surface-v4.1_diff/ceres_ebaf_surface_v4.1-FSDS-JJA-polar_N.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSDS-JJA-polar_S.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSDS-JJA-polar_S.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CERES-EBAF-surface-v4.1_diff/ceres_ebaf_surface_v4.1-FSDS-JJA-polar_S.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSDSC-ANN-polar_N.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSDSC-ANN-polar_N.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CERES-EBAF-surface-v4.1_diff/ceres_ebaf_surface_v4.1-FSDSC-ANN-polar_N.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSDSC-ANN-polar_S.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSDSC-ANN-polar_S.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CERES-EBAF-surface-v4.1_diff/ceres_ebaf_surface_v4.1-FSDSC-ANN-polar_S.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSDSC-JJA-polar_N.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSDSC-JJA-polar_N.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CERES-EBAF-surface-v4.1_diff/ceres_ebaf_surface_v4.1-FSDSC-JJA-polar_N.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSDSC-JJA-polar_S.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSDSC-JJA-polar_S.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CERES-EBAF-surface-v4.1_diff/ceres_ebaf_surface_v4.1-FSDSC-JJA-polar_S.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSNS-ANN-polar_N.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSNS-ANN-polar_N.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CERES-EBAF-surface-v4.1_diff/ceres_ebaf_surface_v4.1-FSNS-ANN-polar_N.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSNS-ANN-polar_S.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSNS-ANN-polar_S.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CERES-EBAF-surface-v4.1_diff/ceres_ebaf_surface_v4.1-FSNS-ANN-polar_S.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSNS-JJA-polar_N.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSNS-JJA-polar_N.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CERES-EBAF-surface-v4.1_diff/ceres_ebaf_surface_v4.1-FSNS-JJA-polar_N.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSNS-JJA-polar_S.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSNS-JJA-polar_S.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CERES-EBAF-surface-v4.1_diff/ceres_ebaf_surface_v4.1-FSNS-JJA-polar_S.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSNSC-ANN-polar_N.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSNSC-ANN-polar_N.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CERES-EBAF-surface-v4.1_diff/ceres_ebaf_surface_v4.1-FSNSC-ANN-polar_N.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSNSC-ANN-polar_S.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSNSC-ANN-polar_S.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CERES-EBAF-surface-v4.1_diff/ceres_ebaf_surface_v4.1-FSNSC-ANN-polar_S.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSNSC-JJA-polar_N.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSNSC-JJA-polar_N.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CERES-EBAF-surface-v4.1_diff/ceres_ebaf_surface_v4.1-FSNSC-JJA-polar_N.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSNSC-JJA-polar_S.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSNSC-JJA-polar_S.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CERES-EBAF-surface-v4.1_diff/ceres_ebaf_surface_v4.1-FSNSC-JJA-polar_S.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-LWCFSRF-ANN-polar_N.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-LWCFSRF-ANN-polar_N.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CERES-EBAF-surface-v4.1_diff/ceres_ebaf_surface_v4.1-LWCFSRF-ANN-polar_N.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-LWCFSRF-ANN-polar_S.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-LWCFSRF-ANN-polar_S.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CERES-EBAF-surface-v4.1_diff/ceres_ebaf_surface_v4.1-LWCFSRF-ANN-polar_S.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-LWCFSRF-JJA-polar_N.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-LWCFSRF-JJA-polar_N.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CERES-EBAF-surface-v4.1_diff/ceres_ebaf_surface_v4.1-LWCFSRF-JJA-polar_N.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-LWCFSRF-JJA-polar_S.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-LWCFSRF-JJA-polar_S.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CERES-EBAF-surface-v4.1_diff/ceres_ebaf_surface_v4.1-LWCFSRF-JJA-polar_S.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-SWCFSRF-ANN-polar_N.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-SWCFSRF-ANN-polar_N.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CERES-EBAF-surface-v4.1_diff/ceres_ebaf_surface_v4.1-SWCFSRF-ANN-polar_N.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-SWCFSRF-ANN-polar_S.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-SWCFSRF-ANN-polar_S.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CERES-EBAF-surface-v4.1_diff/ceres_ebaf_surface_v4.1-SWCFSRF-ANN-polar_S.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-SWCFSRF-JJA-polar_N.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-SWCFSRF-JJA-polar_N.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CERES-EBAF-surface-v4.1_diff/ceres_ebaf_surface_v4.1-SWCFSRF-JJA-polar_N.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-SWCFSRF-JJA-polar_S.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-SWCFSRF-JJA-polar_S.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CERES-EBAF-surface-v4.1_diff/ceres_ebaf_surface_v4.1-SWCFSRF-JJA-polar_S.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/CRU_IPCC/CRU-TREFHT-ANN-polar_N.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CRU_IPCC/CRU-TREFHT-ANN-polar_N.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CRU_IPCC_diff/CRU-TREFHT-ANN-polar_N.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/CRU_IPCC/CRU-TREFHT-JJA-polar_N.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CRU_IPCC/CRU-TREFHT-JJA-polar_N.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/CRU_IPCC_diff/CRU-TREFHT-JJA-polar_N.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/ERA5/ERA5-LHFLX-ANN-polar_N.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/ERA5/ERA5-LHFLX-ANN-polar_N.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/ERA5_diff/ERA5-LHFLX-ANN-polar_N.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/ERA5/ERA5-LHFLX-ANN-polar_S.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/ERA5/ERA5-LHFLX-ANN-polar_S.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/ERA5_diff/ERA5-LHFLX-ANN-polar_S.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/ERA5/ERA5-LHFLX-JJA-polar_N.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/ERA5/ERA5-LHFLX-JJA-polar_N.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/ERA5_diff/ERA5-LHFLX-JJA-polar_N.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/ERA5/ERA5-LHFLX-JJA-polar_S.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/ERA5/ERA5-LHFLX-JJA-polar_S.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/ERA5_diff/ERA5-LHFLX-JJA-polar_S.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/ERA5/ERA5-PRECT-ANN-polar_N.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/ERA5/ERA5-PRECT-ANN-polar_N.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/ERA5_diff/ERA5-PRECT-ANN-polar_N.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/ERA5/ERA5-PRECT-ANN-polar_S.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/ERA5/ERA5-PRECT-ANN-polar_S.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/ERA5_diff/ERA5-PRECT-ANN-polar_S.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/ERA5/ERA5-PRECT-JJA-polar_N.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/ERA5/ERA5-PRECT-JJA-polar_N.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/ERA5_diff/ERA5-PRECT-JJA-polar_N.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/ERA5/ERA5-PRECT-JJA-polar_S.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/ERA5/ERA5-PRECT-JJA-polar_S.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/ERA5_diff/ERA5-PRECT-JJA-polar_S.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/ERA5/ERA5-PSL-ANN-polar_N.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/ERA5/ERA5-PSL-ANN-polar_N.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/ERA5_diff/ERA5-PSL-ANN-polar_N.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/ERA5/ERA5-PSL-ANN-polar_S.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/ERA5/ERA5-PSL-ANN-polar_S.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/ERA5_diff/ERA5-PSL-ANN-polar_S.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/ERA5/ERA5-PSL-JJA-polar_N.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/ERA5/ERA5-PSL-JJA-polar_N.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/ERA5_diff/ERA5-PSL-JJA-polar_N.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/ERA5/ERA5-PSL-JJA-polar_S.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/ERA5/ERA5-PSL-JJA-polar_S.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/ERA5_diff/ERA5-PSL-JJA-polar_S.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/ERA5/ERA5-T-200-ANN-polar_N.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/ERA5/ERA5-T-200-ANN-polar_N.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/ERA5_diff/ERA5-T-200-ANN-polar_N.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/ERA5/ERA5-T-200-ANN-polar_S.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/ERA5/ERA5-T-200-ANN-polar_S.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/ERA5_diff/ERA5-T-200-ANN-polar_S.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/ERA5/ERA5-T-200-JJA-polar_N.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/ERA5/ERA5-T-200-JJA-polar_N.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/ERA5_diff/ERA5-T-200-JJA-polar_N.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/ERA5/ERA5-T-200-JJA-polar_S.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/ERA5/ERA5-T-200-JJA-polar_S.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/ERA5_diff/ERA5-T-200-JJA-polar_S.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/ERA5/ERA5-T-850-ANN-polar_N.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/ERA5/ERA5-T-850-ANN-polar_N.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/ERA5_diff/ERA5-T-850-ANN-polar_N.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/ERA5/ERA5-T-850-ANN-polar_S.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/ERA5/ERA5-T-850-ANN-polar_S.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/ERA5_diff/ERA5-T-850-ANN-polar_S.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/ERA5/ERA5-T-850-JJA-polar_N.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/ERA5/ERA5-T-850-JJA-polar_N.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/ERA5_diff/ERA5-T-850-JJA-polar_N.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/ERA5/ERA5-T-850-JJA-polar_S.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/ERA5/ERA5-T-850-JJA-polar_S.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/ERA5_diff/ERA5-T-850-JJA-polar_S.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/ERA5/ERA5-TAUXY-ANN-polar_N.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/ERA5/ERA5-TAUXY-ANN-polar_N.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/ERA5_diff/ERA5-TAUXY-ANN-polar_N.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/ERA5/ERA5-TAUXY-ANN-polar_S.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/ERA5/ERA5-TAUXY-ANN-polar_S.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/ERA5_diff/ERA5-TAUXY-ANN-polar_S.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/ERA5/ERA5-TAUXY-JJA-polar_N.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/ERA5/ERA5-TAUXY-JJA-polar_N.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/ERA5_diff/ERA5-TAUXY-JJA-polar_N.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/ERA5/ERA5-TAUXY-JJA-polar_S.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/ERA5/ERA5-TAUXY-JJA-polar_S.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/ERA5_diff/ERA5-TAUXY-JJA-polar_S.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/ERA5/ERA5-TMQ-ANN-polar_N.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/ERA5/ERA5-TMQ-ANN-polar_N.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/ERA5_diff/ERA5-TMQ-ANN-polar_N.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/ERA5/ERA5-TMQ-ANN-polar_S.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/ERA5/ERA5-TMQ-ANN-polar_S.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/ERA5_diff/ERA5-TMQ-ANN-polar_S.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/ERA5/ERA5-TMQ-JJA-polar_N.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/ERA5/ERA5-TMQ-JJA-polar_N.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/ERA5_diff/ERA5-TMQ-JJA-polar_N.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/ERA5/ERA5-TMQ-JJA-polar_S.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/ERA5/ERA5-TMQ-JJA-polar_S.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/ERA5_diff/ERA5-TMQ-JJA-polar_S.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/ERA5/ERA5-TREFHT-ANN-polar_N.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/ERA5/ERA5-TREFHT-ANN-polar_N.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/ERA5_diff/ERA5-TREFHT-ANN-polar_N.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/ERA5/ERA5-TREFHT-ANN-polar_S.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/ERA5/ERA5-TREFHT-ANN-polar_S.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/ERA5_diff/ERA5-TREFHT-ANN-polar_S.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/ERA5/ERA5-TREFHT-JJA-polar_N.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/ERA5/ERA5-TREFHT-JJA-polar_N.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/ERA5_diff/ERA5-TREFHT-JJA-polar_N.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/ERA5/ERA5-TREFHT-JJA-polar_S.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/ERA5/ERA5-TREFHT-JJA-polar_S.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/ERA5_diff/ERA5-TREFHT-JJA-polar_S.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/ERA5/ERA5-U-200-ANN-polar_N.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/ERA5/ERA5-U-200-ANN-polar_N.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/ERA5_diff/ERA5-U-200-ANN-polar_N.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/ERA5/ERA5-U-200-ANN-polar_S.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/ERA5/ERA5-U-200-ANN-polar_S.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/ERA5_diff/ERA5-U-200-ANN-polar_S.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/ERA5/ERA5-U-200-JJA-polar_N.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/ERA5/ERA5-U-200-JJA-polar_N.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/ERA5_diff/ERA5-U-200-JJA-polar_N.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/ERA5/ERA5-U-200-JJA-polar_S.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/ERA5/ERA5-U-200-JJA-polar_S.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/ERA5_diff/ERA5-U-200-JJA-polar_S.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/ERA5/ERA5-U-850-ANN-polar_N.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/ERA5/ERA5-U-850-ANN-polar_N.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/ERA5_diff/ERA5-U-850-ANN-polar_N.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/ERA5/ERA5-U-850-ANN-polar_S.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/ERA5/ERA5-U-850-ANN-polar_S.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/ERA5_diff/ERA5-U-850-ANN-polar_S.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/ERA5/ERA5-U-850-JJA-polar_N.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/ERA5/ERA5-U-850-JJA-polar_N.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/ERA5_diff/ERA5-U-850-JJA-polar_N.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/ERA5/ERA5-U-850-JJA-polar_S.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/ERA5/ERA5-U-850-JJA-polar_S.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/ERA5_diff/ERA5-U-850-JJA-polar_S.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/ERA5/ERA5-Z3-500-ANN-polar_N.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/ERA5/ERA5-Z3-500-ANN-polar_N.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/ERA5_diff/ERA5-Z3-500-ANN-polar_N.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/ERA5/ERA5-Z3-500-ANN-polar_S.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/ERA5/ERA5-Z3-500-ANN-polar_S.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/ERA5_diff/ERA5-Z3-500-ANN-polar_S.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/ERA5/ERA5-Z3-500-JJA-polar_N.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/ERA5/ERA5-Z3-500-JJA-polar_N.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/ERA5_diff/ERA5-Z3-500-JJA-polar_N.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/ERA5/ERA5-Z3-500-JJA-polar_S.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/ERA5/ERA5-Z3-500-JJA-polar_S.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/ERA5_diff/ERA5-Z3-500-JJA-polar_S.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/GPCP_v2.3/GPCP_v2.3-PRECT-ANN-polar_N.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/GPCP_v2.3/GPCP_v2.3-PRECT-ANN-polar_N.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/GPCP_v2.3_diff/GPCP_v2.3-PRECT-ANN-polar_N.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/GPCP_v2.3/GPCP_v2.3-PRECT-ANN-polar_S.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/GPCP_v2.3/GPCP_v2.3-PRECT-ANN-polar_S.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/GPCP_v2.3_diff/GPCP_v2.3-PRECT-ANN-polar_S.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/GPCP_v2.3/GPCP_v2.3-PRECT-JJA-polar_N.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/GPCP_v2.3/GPCP_v2.3-PRECT-JJA-polar_N.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/GPCP_v2.3_diff/GPCP_v2.3-PRECT-JJA-polar_N.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/GPCP_v2.3/GPCP_v2.3-PRECT-JJA-polar_S.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/GPCP_v2.3/GPCP_v2.3-PRECT-JJA-polar_S.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/GPCP_v2.3_diff/GPCP_v2.3-PRECT-JJA-polar_S.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/GPCP_v3.2/GPCP_v3.2-PRECT-ANN-polar_N.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/GPCP_v3.2/GPCP_v3.2-PRECT-ANN-polar_N.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/GPCP_v3.2_diff/GPCP_v3.2-PRECT-ANN-polar_N.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/GPCP_v3.2/GPCP_v3.2-PRECT-ANN-polar_S.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/GPCP_v3.2/GPCP_v3.2-PRECT-ANN-polar_S.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/GPCP_v3.2_diff/GPCP_v3.2-PRECT-ANN-polar_S.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/GPCP_v3.2/GPCP_v3.2-PRECT-JJA-polar_N.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/GPCP_v3.2/GPCP_v3.2-PRECT-JJA-polar_N.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/GPCP_v3.2_diff/GPCP_v3.2-PRECT-JJA-polar_N.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/GPCP_v3.2/GPCP_v3.2-PRECT-JJA-polar_S.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/GPCP_v3.2/GPCP_v3.2-PRECT-JJA-polar_S.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/GPCP_v3.2_diff/GPCP_v3.2-PRECT-JJA-polar_S.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/MERRA2/MERRA2-LHFLX-ANN-polar_N.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2/MERRA2-LHFLX-ANN-polar_N.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2_diff/MERRA2-LHFLX-ANN-polar_N.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/MERRA2/MERRA2-LHFLX-ANN-polar_S.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2/MERRA2-LHFLX-ANN-polar_S.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2_diff/MERRA2-LHFLX-ANN-polar_S.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/MERRA2/MERRA2-LHFLX-JJA-polar_N.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2/MERRA2-LHFLX-JJA-polar_N.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2_diff/MERRA2-LHFLX-JJA-polar_N.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/MERRA2/MERRA2-LHFLX-JJA-polar_S.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2/MERRA2-LHFLX-JJA-polar_S.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2_diff/MERRA2-LHFLX-JJA-polar_S.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/MERRA2/MERRA2-PRECT-ANN-polar_N.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2/MERRA2-PRECT-ANN-polar_N.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2_diff/MERRA2-PRECT-ANN-polar_N.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/MERRA2/MERRA2-PRECT-ANN-polar_S.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2/MERRA2-PRECT-ANN-polar_S.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2_diff/MERRA2-PRECT-ANN-polar_S.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/MERRA2/MERRA2-PRECT-JJA-polar_N.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2/MERRA2-PRECT-JJA-polar_N.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2_diff/MERRA2-PRECT-JJA-polar_N.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/MERRA2/MERRA2-PRECT-JJA-polar_S.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2/MERRA2-PRECT-JJA-polar_S.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2_diff/MERRA2-PRECT-JJA-polar_S.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/MERRA2/MERRA2-PSL-ANN-polar_N.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2/MERRA2-PSL-ANN-polar_N.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2_diff/MERRA2-PSL-ANN-polar_N.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/MERRA2/MERRA2-PSL-ANN-polar_S.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2/MERRA2-PSL-ANN-polar_S.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2_diff/MERRA2-PSL-ANN-polar_S.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/MERRA2/MERRA2-PSL-JJA-polar_N.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2/MERRA2-PSL-JJA-polar_N.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2_diff/MERRA2-PSL-JJA-polar_N.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/MERRA2/MERRA2-PSL-JJA-polar_S.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2/MERRA2-PSL-JJA-polar_S.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2_diff/MERRA2-PSL-JJA-polar_S.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/MERRA2/MERRA2-T-200-ANN-polar_N.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2/MERRA2-T-200-ANN-polar_N.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2_diff/MERRA2-T-200-ANN-polar_N.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/MERRA2/MERRA2-T-200-ANN-polar_S.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2/MERRA2-T-200-ANN-polar_S.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2_diff/MERRA2-T-200-ANN-polar_S.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/MERRA2/MERRA2-T-200-JJA-polar_N.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2/MERRA2-T-200-JJA-polar_N.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2_diff/MERRA2-T-200-JJA-polar_N.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/MERRA2/MERRA2-T-200-JJA-polar_S.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2/MERRA2-T-200-JJA-polar_S.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2_diff/MERRA2-T-200-JJA-polar_S.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/MERRA2/MERRA2-T-850-ANN-polar_N.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2/MERRA2-T-850-ANN-polar_N.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2_diff/MERRA2-T-850-ANN-polar_N.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/MERRA2/MERRA2-T-850-ANN-polar_S.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2/MERRA2-T-850-ANN-polar_S.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2_diff/MERRA2-T-850-ANN-polar_S.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/MERRA2/MERRA2-T-850-JJA-polar_N.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2/MERRA2-T-850-JJA-polar_N.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2_diff/MERRA2-T-850-JJA-polar_N.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/MERRA2/MERRA2-T-850-JJA-polar_S.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2/MERRA2-T-850-JJA-polar_S.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2_diff/MERRA2-T-850-JJA-polar_S.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/MERRA2/MERRA2-TAUXY-ANN-polar_N.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2/MERRA2-TAUXY-ANN-polar_N.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2_diff/MERRA2-TAUXY-ANN-polar_N.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/MERRA2/MERRA2-TAUXY-ANN-polar_S.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2/MERRA2-TAUXY-ANN-polar_S.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2_diff/MERRA2-TAUXY-ANN-polar_S.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/MERRA2/MERRA2-TAUXY-JJA-polar_N.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2/MERRA2-TAUXY-JJA-polar_N.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2_diff/MERRA2-TAUXY-JJA-polar_N.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/MERRA2/MERRA2-TAUXY-JJA-polar_S.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2/MERRA2-TAUXY-JJA-polar_S.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2_diff/MERRA2-TAUXY-JJA-polar_S.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/MERRA2/MERRA2-TMQ-ANN-polar_N.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2/MERRA2-TMQ-ANN-polar_N.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2_diff/MERRA2-TMQ-ANN-polar_N.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/MERRA2/MERRA2-TMQ-ANN-polar_S.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2/MERRA2-TMQ-ANN-polar_S.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2_diff/MERRA2-TMQ-ANN-polar_S.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/MERRA2/MERRA2-TMQ-JJA-polar_N.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2/MERRA2-TMQ-JJA-polar_N.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2_diff/MERRA2-TMQ-JJA-polar_N.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/MERRA2/MERRA2-TMQ-JJA-polar_S.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2/MERRA2-TMQ-JJA-polar_S.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2_diff/MERRA2-TMQ-JJA-polar_S.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/MERRA2/MERRA2-TREFHT-ANN-polar_N.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2/MERRA2-TREFHT-ANN-polar_N.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2_diff/MERRA2-TREFHT-ANN-polar_N.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/MERRA2/MERRA2-TREFHT-ANN-polar_S.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2/MERRA2-TREFHT-ANN-polar_S.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2_diff/MERRA2-TREFHT-ANN-polar_S.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/MERRA2/MERRA2-TREFHT-JJA-polar_N.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2/MERRA2-TREFHT-JJA-polar_N.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2_diff/MERRA2-TREFHT-JJA-polar_N.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/MERRA2/MERRA2-TREFHT-JJA-polar_S.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2/MERRA2-TREFHT-JJA-polar_S.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2_diff/MERRA2-TREFHT-JJA-polar_S.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/MERRA2/MERRA2-TREFMNAV-ANN-polar_N.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2/MERRA2-TREFMNAV-ANN-polar_N.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2_diff/MERRA2-TREFMNAV-ANN-polar_N.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/MERRA2/MERRA2-TREFMNAV-ANN-polar_S.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2/MERRA2-TREFMNAV-ANN-polar_S.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2_diff/MERRA2-TREFMNAV-ANN-polar_S.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/MERRA2/MERRA2-TREFMNAV-JJA-polar_N.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2/MERRA2-TREFMNAV-JJA-polar_N.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2_diff/MERRA2-TREFMNAV-JJA-polar_N.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/MERRA2/MERRA2-TREFMNAV-JJA-polar_S.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2/MERRA2-TREFMNAV-JJA-polar_S.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2_diff/MERRA2-TREFMNAV-JJA-polar_S.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/MERRA2/MERRA2-TREFMXAV-ANN-polar_N.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2/MERRA2-TREFMXAV-ANN-polar_N.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2_diff/MERRA2-TREFMXAV-ANN-polar_N.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/MERRA2/MERRA2-TREFMXAV-ANN-polar_S.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2/MERRA2-TREFMXAV-ANN-polar_S.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2_diff/MERRA2-TREFMXAV-ANN-polar_S.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/MERRA2/MERRA2-TREFMXAV-JJA-polar_N.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2/MERRA2-TREFMXAV-JJA-polar_N.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2_diff/MERRA2-TREFMXAV-JJA-polar_N.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/MERRA2/MERRA2-TREFMXAV-JJA-polar_S.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2/MERRA2-TREFMXAV-JJA-polar_S.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2_diff/MERRA2-TREFMXAV-JJA-polar_S.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/MERRA2/MERRA2-U-200-ANN-polar_N.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2/MERRA2-U-200-ANN-polar_N.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2_diff/MERRA2-U-200-ANN-polar_N.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/MERRA2/MERRA2-U-200-ANN-polar_S.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2/MERRA2-U-200-ANN-polar_S.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2_diff/MERRA2-U-200-ANN-polar_S.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/MERRA2/MERRA2-U-200-JJA-polar_N.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2/MERRA2-U-200-JJA-polar_N.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2_diff/MERRA2-U-200-JJA-polar_N.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/MERRA2/MERRA2-U-200-JJA-polar_S.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2/MERRA2-U-200-JJA-polar_S.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2_diff/MERRA2-U-200-JJA-polar_S.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/MERRA2/MERRA2-U-850-ANN-polar_N.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2/MERRA2-U-850-ANN-polar_N.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2_diff/MERRA2-U-850-ANN-polar_N.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/MERRA2/MERRA2-U-850-ANN-polar_S.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2/MERRA2-U-850-ANN-polar_S.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2_diff/MERRA2-U-850-ANN-polar_S.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/MERRA2/MERRA2-U-850-JJA-polar_N.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2/MERRA2-U-850-JJA-polar_N.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2_diff/MERRA2-U-850-JJA-polar_N.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/MERRA2/MERRA2-U-850-JJA-polar_S.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2/MERRA2-U-850-JJA-polar_S.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2_diff/MERRA2-U-850-JJA-polar_S.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/MERRA2/MERRA2-Z3-500-ANN-polar_N.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2/MERRA2-Z3-500-ANN-polar_N.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2_diff/MERRA2-Z3-500-ANN-polar_N.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/MERRA2/MERRA2-Z3-500-ANN-polar_S.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2/MERRA2-Z3-500-ANN-polar_S.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2_diff/MERRA2-Z3-500-ANN-polar_S.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/MERRA2/MERRA2-Z3-500-JJA-polar_N.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2/MERRA2-Z3-500-JJA-polar_N.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2_diff/MERRA2-Z3-500-JJA-polar_N.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/MERRA2/MERRA2-Z3-500-JJA-polar_S.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2/MERRA2-Z3-500-JJA-polar_S.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/MERRA2_diff/MERRA2-Z3-500-JJA-polar_S.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/SST_CL_HadISST/HadISST_CL-SST-ANN-polar_N.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/SST_CL_HadISST/HadISST_CL-SST-ANN-polar_N.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/SST_CL_HadISST_diff/HadISST_CL-SST-ANN-polar_N.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/SST_CL_HadISST/HadISST_CL-SST-ANN-polar_S.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/SST_CL_HadISST/HadISST_CL-SST-ANN-polar_S.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/SST_CL_HadISST_diff/HadISST_CL-SST-ANN-polar_S.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/SST_CL_HadISST/HadISST_CL-SST-JJA-polar_N.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/SST_CL_HadISST/HadISST_CL-SST-JJA-polar_N.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/SST_CL_HadISST_diff/HadISST_CL-SST-JJA-polar_N.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/SST_CL_HadISST/HadISST_CL-SST-JJA-polar_S.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/SST_CL_HadISST/HadISST_CL-SST-JJA-polar_S.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/SST_CL_HadISST_diff/HadISST_CL-SST-JJA-polar_S.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/SST_PD_HadISST/HadISST_PD-SST-ANN-polar_N.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/SST_PD_HadISST/HadISST_PD-SST-ANN-polar_N.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/SST_PD_HadISST_diff/HadISST_PD-SST-ANN-polar_N.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/SST_PD_HadISST/HadISST_PD-SST-ANN-polar_S.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/SST_PD_HadISST/HadISST_PD-SST-ANN-polar_S.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/SST_PD_HadISST_diff/HadISST_PD-SST-ANN-polar_S.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/SST_PD_HadISST/HadISST_PD-SST-JJA-polar_N.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/SST_PD_HadISST/HadISST_PD-SST-JJA-polar_N.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/SST_PD_HadISST_diff/HadISST_PD-SST-JJA-polar_N.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/SST_PD_HadISST/HadISST_PD-SST-JJA-polar_S.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/SST_PD_HadISST/HadISST_PD-SST-JJA-polar_S.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/SST_PD_HadISST_diff/HadISST_PD-SST-JJA-polar_S.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/SST_PI_HadISST/HadISST_PI-SST-ANN-polar_N.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/SST_PI_HadISST/HadISST_PI-SST-ANN-polar_N.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/SST_PI_HadISST_diff/HadISST_PI-SST-ANN-polar_N.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/SST_PI_HadISST/HadISST_PI-SST-ANN-polar_S.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/SST_PI_HadISST/HadISST_PI-SST-ANN-polar_S.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/SST_PI_HadISST_diff/HadISST_PI-SST-ANN-polar_S.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/SST_PI_HadISST/HadISST_PI-SST-JJA-polar_N.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/SST_PI_HadISST/HadISST_PI-SST-JJA-polar_N.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/SST_PI_HadISST_diff/HadISST_PI-SST-JJA-polar_N.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/polar/SST_PI_HadISST/HadISST_PI-SST-JJA-polar_S.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/SST_PI_HadISST/HadISST_PI-SST-JJA-polar_S.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/polar/SST_PI_HadISST_diff/HadISST_PI-SST-JJA-polar_S.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/streamflow/RIVER_DISCHARGE_OVER_LAND_LIQ_GSIM/annual_map.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/streamflow/RIVER_DISCHARGE_OVER_LAND_LIQ_GSIM/annual_map.png\n", + " * Plots are identical\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/streamflow/RIVER_DISCHARGE_OVER_LAND_LIQ_GSIM/annual_scatter.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/streamflow/RIVER_DISCHARGE_OVER_LAND_LIQ_GSIM/annual_scatter.png\n", + " * Plots are identical\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/streamflow/RIVER_DISCHARGE_OVER_LAND_LIQ_GSIM/seasonality_map.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/streamflow/RIVER_DISCHARGE_OVER_LAND_LIQ_GSIM/seasonality_map.png\n", + " * Plots are identical\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/viewer/cmip6-comparison-data/cmip6_amip.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/viewer/cmip6-comparison-data/cmip6_amip.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/viewer/cmip6-comparison-data_diff/cmip6_amip.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/viewer/cmip6-comparison-data/cmip6_historical.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/viewer/cmip6-comparison-data/cmip6_historical.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/viewer/cmip6-comparison-data_diff/cmip6_historical.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/viewer/taylor-diagram-data/ANN_metrics_taylor_diag_amip.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/viewer/taylor-diagram-data/ANN_metrics_taylor_diag_amip.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/viewer/taylor-diagram-data_diff/ANN_metrics_taylor_diag_amip.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/viewer/taylor-diagram-data/ANN_metrics_taylor_diag_historical.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/viewer/taylor-diagram-data/ANN_metrics_taylor_diag_historical.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/viewer/taylor-diagram-data_diff/ANN_metrics_taylor_diag_historical.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/viewer/taylor-diagram-data/JJA_metrics_taylor_diag_amip.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/viewer/taylor-diagram-data/JJA_metrics_taylor_diag_amip.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/viewer/taylor-diagram-data_diff/JJA_metrics_taylor_diag_amip.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/viewer/taylor-diagram-data/JJA_metrics_taylor_diag_historical.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/viewer/taylor-diagram-data/JJA_metrics_taylor_diag_historical.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/viewer/taylor-diagram-data_diff/JJA_metrics_taylor_diag_historical.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d/ERA5/ERA5-OMEGA-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d/ERA5/ERA5-OMEGA-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d/ERA5_diff/ERA5-OMEGA-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d/ERA5/ERA5-OMEGA-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d/ERA5/ERA5-OMEGA-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d/ERA5_diff/ERA5-OMEGA-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d/ERA5/ERA5-Q-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d/ERA5/ERA5-Q-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d/ERA5_diff/ERA5-Q-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d/ERA5/ERA5-Q-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d/ERA5/ERA5-Q-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d/ERA5_diff/ERA5-Q-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d/ERA5/ERA5-RELHUM-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d/ERA5/ERA5-RELHUM-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d/ERA5_diff/ERA5-RELHUM-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d/ERA5/ERA5-RELHUM-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d/ERA5/ERA5-RELHUM-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d/ERA5_diff/ERA5-RELHUM-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d/ERA5/ERA5-T-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d/ERA5/ERA5-T-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d/ERA5_diff/ERA5-T-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d/ERA5/ERA5-T-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d/ERA5/ERA5-T-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d/ERA5_diff/ERA5-T-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d/ERA5/ERA5-U-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d/ERA5/ERA5-U-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d/ERA5_diff/ERA5-U-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d/ERA5/ERA5-U-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d/ERA5/ERA5-U-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d/ERA5_diff/ERA5-U-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d/MERRA2/MERRA2-OMEGA-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d/MERRA2/MERRA2-OMEGA-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d/MERRA2_diff/MERRA2-OMEGA-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d/MERRA2/MERRA2-OMEGA-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d/MERRA2/MERRA2-OMEGA-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d/MERRA2_diff/MERRA2-OMEGA-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d/MERRA2/MERRA2-Q-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d/MERRA2/MERRA2-Q-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d/MERRA2_diff/MERRA2-Q-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d/MERRA2/MERRA2-Q-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d/MERRA2/MERRA2-Q-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d/MERRA2_diff/MERRA2-Q-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d/MERRA2/MERRA2-RELHUM-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d/MERRA2/MERRA2-RELHUM-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d/MERRA2_diff/MERRA2-RELHUM-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d/MERRA2/MERRA2-RELHUM-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d/MERRA2/MERRA2-RELHUM-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d/MERRA2_diff/MERRA2-RELHUM-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d/MERRA2/MERRA2-T-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d/MERRA2/MERRA2-T-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d/MERRA2_diff/MERRA2-T-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d/MERRA2/MERRA2-T-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d/MERRA2/MERRA2-T-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d/MERRA2_diff/MERRA2-T-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d/MERRA2/MERRA2-U-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d/MERRA2/MERRA2-U-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d/MERRA2_diff/MERRA2-U-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d/MERRA2/MERRA2-U-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d/MERRA2/MERRA2-U-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d/MERRA2_diff/MERRA2-U-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d_stratosphere/ERA5/ERA5-OMEGA-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/ERA5/ERA5-OMEGA-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/ERA5_diff/ERA5-OMEGA-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d_stratosphere/ERA5/ERA5-OMEGA-DJF-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/ERA5/ERA5-OMEGA-DJF-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/ERA5_diff/ERA5-OMEGA-DJF-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d_stratosphere/ERA5/ERA5-OMEGA-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/ERA5/ERA5-OMEGA-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/ERA5_diff/ERA5-OMEGA-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d_stratosphere/ERA5/ERA5-OMEGA-MAM-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/ERA5/ERA5-OMEGA-MAM-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/ERA5_diff/ERA5-OMEGA-MAM-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d_stratosphere/ERA5/ERA5-OMEGA-SON-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/ERA5/ERA5-OMEGA-SON-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/ERA5_diff/ERA5-OMEGA-SON-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d_stratosphere/ERA5/ERA5-Q-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/ERA5/ERA5-Q-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/ERA5_diff/ERA5-Q-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d_stratosphere/ERA5/ERA5-Q-DJF-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/ERA5/ERA5-Q-DJF-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/ERA5_diff/ERA5-Q-DJF-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d_stratosphere/ERA5/ERA5-Q-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/ERA5/ERA5-Q-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/ERA5_diff/ERA5-Q-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d_stratosphere/ERA5/ERA5-Q-MAM-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/ERA5/ERA5-Q-MAM-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/ERA5_diff/ERA5-Q-MAM-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d_stratosphere/ERA5/ERA5-Q-SON-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/ERA5/ERA5-Q-SON-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/ERA5_diff/ERA5-Q-SON-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d_stratosphere/ERA5/ERA5-RELHUM-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/ERA5/ERA5-RELHUM-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/ERA5_diff/ERA5-RELHUM-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d_stratosphere/ERA5/ERA5-RELHUM-DJF-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/ERA5/ERA5-RELHUM-DJF-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/ERA5_diff/ERA5-RELHUM-DJF-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d_stratosphere/ERA5/ERA5-RELHUM-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/ERA5/ERA5-RELHUM-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/ERA5_diff/ERA5-RELHUM-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d_stratosphere/ERA5/ERA5-RELHUM-MAM-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/ERA5/ERA5-RELHUM-MAM-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/ERA5_diff/ERA5-RELHUM-MAM-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d_stratosphere/ERA5/ERA5-RELHUM-SON-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/ERA5/ERA5-RELHUM-SON-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/ERA5_diff/ERA5-RELHUM-SON-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d_stratosphere/ERA5/ERA5-T-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/ERA5/ERA5-T-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/ERA5_diff/ERA5-T-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d_stratosphere/ERA5/ERA5-T-DJF-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/ERA5/ERA5-T-DJF-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/ERA5_diff/ERA5-T-DJF-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d_stratosphere/ERA5/ERA5-T-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/ERA5/ERA5-T-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/ERA5_diff/ERA5-T-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d_stratosphere/ERA5/ERA5-T-MAM-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/ERA5/ERA5-T-MAM-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/ERA5_diff/ERA5-T-MAM-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d_stratosphere/ERA5/ERA5-T-SON-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/ERA5/ERA5-T-SON-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/ERA5_diff/ERA5-T-SON-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d_stratosphere/ERA5/ERA5-U-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/ERA5/ERA5-U-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/ERA5_diff/ERA5-U-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d_stratosphere/ERA5/ERA5-U-DJF-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/ERA5/ERA5-U-DJF-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/ERA5_diff/ERA5-U-DJF-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d_stratosphere/ERA5/ERA5-U-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/ERA5/ERA5-U-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/ERA5_diff/ERA5-U-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d_stratosphere/ERA5/ERA5-U-MAM-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/ERA5/ERA5-U-MAM-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/ERA5_diff/ERA5-U-MAM-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d_stratosphere/ERA5/ERA5-U-SON-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/ERA5/ERA5-U-SON-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/ERA5_diff/ERA5-U-SON-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d_stratosphere/MERRA2/MERRA2-OMEGA-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/MERRA2/MERRA2-OMEGA-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/MERRA2_diff/MERRA2-OMEGA-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d_stratosphere/MERRA2/MERRA2-OMEGA-DJF-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/MERRA2/MERRA2-OMEGA-DJF-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/MERRA2_diff/MERRA2-OMEGA-DJF-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d_stratosphere/MERRA2/MERRA2-OMEGA-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/MERRA2/MERRA2-OMEGA-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/MERRA2_diff/MERRA2-OMEGA-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d_stratosphere/MERRA2/MERRA2-OMEGA-MAM-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/MERRA2/MERRA2-OMEGA-MAM-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/MERRA2_diff/MERRA2-OMEGA-MAM-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d_stratosphere/MERRA2/MERRA2-OMEGA-SON-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/MERRA2/MERRA2-OMEGA-SON-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/MERRA2_diff/MERRA2-OMEGA-SON-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d_stratosphere/MERRA2/MERRA2-Q-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/MERRA2/MERRA2-Q-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/MERRA2_diff/MERRA2-Q-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d_stratosphere/MERRA2/MERRA2-Q-DJF-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/MERRA2/MERRA2-Q-DJF-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/MERRA2_diff/MERRA2-Q-DJF-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d_stratosphere/MERRA2/MERRA2-Q-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/MERRA2/MERRA2-Q-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/MERRA2_diff/MERRA2-Q-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d_stratosphere/MERRA2/MERRA2-Q-MAM-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/MERRA2/MERRA2-Q-MAM-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/MERRA2_diff/MERRA2-Q-MAM-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d_stratosphere/MERRA2/MERRA2-Q-SON-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/MERRA2/MERRA2-Q-SON-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/MERRA2_diff/MERRA2-Q-SON-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d_stratosphere/MERRA2/MERRA2-RELHUM-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/MERRA2/MERRA2-RELHUM-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/MERRA2_diff/MERRA2-RELHUM-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d_stratosphere/MERRA2/MERRA2-RELHUM-DJF-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/MERRA2/MERRA2-RELHUM-DJF-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/MERRA2_diff/MERRA2-RELHUM-DJF-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d_stratosphere/MERRA2/MERRA2-RELHUM-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/MERRA2/MERRA2-RELHUM-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/MERRA2_diff/MERRA2-RELHUM-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d_stratosphere/MERRA2/MERRA2-RELHUM-MAM-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/MERRA2/MERRA2-RELHUM-MAM-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/MERRA2_diff/MERRA2-RELHUM-MAM-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d_stratosphere/MERRA2/MERRA2-RELHUM-SON-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/MERRA2/MERRA2-RELHUM-SON-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/MERRA2_diff/MERRA2-RELHUM-SON-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d_stratosphere/MERRA2/MERRA2-T-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/MERRA2/MERRA2-T-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/MERRA2_diff/MERRA2-T-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d_stratosphere/MERRA2/MERRA2-T-DJF-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/MERRA2/MERRA2-T-DJF-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/MERRA2_diff/MERRA2-T-DJF-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d_stratosphere/MERRA2/MERRA2-T-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/MERRA2/MERRA2-T-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/MERRA2_diff/MERRA2-T-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d_stratosphere/MERRA2/MERRA2-T-MAM-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/MERRA2/MERRA2-T-MAM-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/MERRA2_diff/MERRA2-T-MAM-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d_stratosphere/MERRA2/MERRA2-T-SON-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/MERRA2/MERRA2-T-SON-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/MERRA2_diff/MERRA2-T-SON-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d_stratosphere/MERRA2/MERRA2-U-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/MERRA2/MERRA2-U-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/MERRA2_diff/MERRA2-U-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d_stratosphere/MERRA2/MERRA2-U-DJF-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/MERRA2/MERRA2-U-DJF-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/MERRA2_diff/MERRA2-U-DJF-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d_stratosphere/MERRA2/MERRA2-U-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/MERRA2/MERRA2-U-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/MERRA2_diff/MERRA2-U-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d_stratosphere/MERRA2/MERRA2-U-MAM-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/MERRA2/MERRA2-U-MAM-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/MERRA2_diff/MERRA2-U-MAM-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_2d_stratosphere/MERRA2/MERRA2-U-SON-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/MERRA2/MERRA2-U-SON-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_2d_stratosphere/MERRA2_diff/MERRA2-U-SON-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-ALBEDO-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-ALBEDO-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/CERES-EBAF-TOA-v4.1_diff/ceres_ebaf_toa_v4.1-ALBEDO-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-ALBEDO-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-ALBEDO-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/CERES-EBAF-TOA-v4.1_diff/ceres_ebaf_toa_v4.1-ALBEDO-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-ALBEDOC-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-ALBEDOC-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/CERES-EBAF-TOA-v4.1_diff/ceres_ebaf_toa_v4.1-ALBEDOC-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-ALBEDOC-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-ALBEDOC-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/CERES-EBAF-TOA-v4.1_diff/ceres_ebaf_toa_v4.1-ALBEDOC-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FLUT-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FLUT-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/CERES-EBAF-TOA-v4.1_diff/ceres_ebaf_toa_v4.1-FLUT-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FLUT-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FLUT-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/CERES-EBAF-TOA-v4.1_diff/ceres_ebaf_toa_v4.1-FLUT-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FLUTC-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FLUTC-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/CERES-EBAF-TOA-v4.1_diff/ceres_ebaf_toa_v4.1-FLUTC-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FLUTC-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FLUTC-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/CERES-EBAF-TOA-v4.1_diff/ceres_ebaf_toa_v4.1-FLUTC-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FSNTOA-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FSNTOA-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/CERES-EBAF-TOA-v4.1_diff/ceres_ebaf_toa_v4.1-FSNTOA-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FSNTOA-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FSNTOA-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/CERES-EBAF-TOA-v4.1_diff/ceres_ebaf_toa_v4.1-FSNTOA-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FSNTOAC-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FSNTOAC-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/CERES-EBAF-TOA-v4.1_diff/ceres_ebaf_toa_v4.1-FSNTOAC-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FSNTOAC-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-FSNTOAC-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/CERES-EBAF-TOA-v4.1_diff/ceres_ebaf_toa_v4.1-FSNTOAC-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-LWCF-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-LWCF-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/CERES-EBAF-TOA-v4.1_diff/ceres_ebaf_toa_v4.1-LWCF-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-LWCF-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-LWCF-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/CERES-EBAF-TOA-v4.1_diff/ceres_ebaf_toa_v4.1-LWCF-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-NETCF-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-NETCF-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/CERES-EBAF-TOA-v4.1_diff/ceres_ebaf_toa_v4.1-NETCF-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-NETCF-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-NETCF-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/CERES-EBAF-TOA-v4.1_diff/ceres_ebaf_toa_v4.1-NETCF-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-RESTOM-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-RESTOM-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/CERES-EBAF-TOA-v4.1_diff/ceres_ebaf_toa_v4.1-RESTOM-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-RESTOM-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-RESTOM-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/CERES-EBAF-TOA-v4.1_diff/ceres_ebaf_toa_v4.1-RESTOM-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-SOLIN-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-SOLIN-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/CERES-EBAF-TOA-v4.1_diff/ceres_ebaf_toa_v4.1-SOLIN-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-SOLIN-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-SOLIN-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/CERES-EBAF-TOA-v4.1_diff/ceres_ebaf_toa_v4.1-SOLIN-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-SWCF-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-SWCF-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/CERES-EBAF-TOA-v4.1_diff/ceres_ebaf_toa_v4.1-SWCF-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-SWCF-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/CERES-EBAF-TOA-v4.1/ceres_ebaf_toa_v4.1-SWCF-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/CERES-EBAF-TOA-v4.1_diff/ceres_ebaf_toa_v4.1-SWCF-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-ALBEDO_SRF-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-ALBEDO_SRF-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/CERES-EBAF-surface-v4.1_diff/ceres_ebaf_surface_v4.1-ALBEDO_SRF-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-ALBEDO_SRF-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-ALBEDO_SRF-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/CERES-EBAF-surface-v4.1_diff/ceres_ebaf_surface_v4.1-ALBEDO_SRF-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLDS-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLDS-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/CERES-EBAF-surface-v4.1_diff/ceres_ebaf_surface_v4.1-FLDS-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLDS-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLDS-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/CERES-EBAF-surface-v4.1_diff/ceres_ebaf_surface_v4.1-FLDS-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLDSC-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLDSC-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/CERES-EBAF-surface-v4.1_diff/ceres_ebaf_surface_v4.1-FLDSC-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLDSC-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLDSC-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/CERES-EBAF-surface-v4.1_diff/ceres_ebaf_surface_v4.1-FLDSC-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLNS-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLNS-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/CERES-EBAF-surface-v4.1_diff/ceres_ebaf_surface_v4.1-FLNS-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLNS-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLNS-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/CERES-EBAF-surface-v4.1_diff/ceres_ebaf_surface_v4.1-FLNS-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLNSC-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLNSC-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/CERES-EBAF-surface-v4.1_diff/ceres_ebaf_surface_v4.1-FLNSC-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLNSC-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FLNSC-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/CERES-EBAF-surface-v4.1_diff/ceres_ebaf_surface_v4.1-FLNSC-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSDS-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSDS-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/CERES-EBAF-surface-v4.1_diff/ceres_ebaf_surface_v4.1-FSDS-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSDS-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSDS-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/CERES-EBAF-surface-v4.1_diff/ceres_ebaf_surface_v4.1-FSDS-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSDSC-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSDSC-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/CERES-EBAF-surface-v4.1_diff/ceres_ebaf_surface_v4.1-FSDSC-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSDSC-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSDSC-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/CERES-EBAF-surface-v4.1_diff/ceres_ebaf_surface_v4.1-FSDSC-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSNS-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSNS-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/CERES-EBAF-surface-v4.1_diff/ceres_ebaf_surface_v4.1-FSNS-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSNS-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSNS-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/CERES-EBAF-surface-v4.1_diff/ceres_ebaf_surface_v4.1-FSNS-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSNSC-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSNSC-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/CERES-EBAF-surface-v4.1_diff/ceres_ebaf_surface_v4.1-FSNSC-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSNSC-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-FSNSC-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/CERES-EBAF-surface-v4.1_diff/ceres_ebaf_surface_v4.1-FSNSC-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-LWCFSRF-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-LWCFSRF-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/CERES-EBAF-surface-v4.1_diff/ceres_ebaf_surface_v4.1-LWCFSRF-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-LWCFSRF-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-LWCFSRF-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/CERES-EBAF-surface-v4.1_diff/ceres_ebaf_surface_v4.1-LWCFSRF-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-SWCFSRF-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-SWCFSRF-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/CERES-EBAF-surface-v4.1_diff/ceres_ebaf_surface_v4.1-SWCFSRF-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-SWCFSRF-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/CERES-EBAF-surface-v4.1/ceres_ebaf_surface_v4.1-SWCFSRF-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/CERES-EBAF-surface-v4.1_diff/ceres_ebaf_surface_v4.1-SWCFSRF-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/COREv2_Flux/COREv2_Flux-PminusE-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/COREv2_Flux/COREv2_Flux-PminusE-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/COREv2_Flux_diff/COREv2_Flux-PminusE-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/COREv2_Flux/COREv2_Flux-PminusE-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/COREv2_Flux/COREv2_Flux-PminusE-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/COREv2_Flux_diff/COREv2_Flux-PminusE-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/Cloud Calipso/CALIPSOCOSP-CLDHGH_CAL-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/Cloud Calipso/CALIPSOCOSP-CLDHGH_CAL-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/Cloud Calipso_diff/CALIPSOCOSP-CLDHGH_CAL-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/Cloud Calipso/CALIPSOCOSP-CLDHGH_CAL-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/Cloud Calipso/CALIPSOCOSP-CLDHGH_CAL-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/Cloud Calipso_diff/CALIPSOCOSP-CLDHGH_CAL-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/Cloud Calipso/CALIPSOCOSP-CLDLOW_CAL-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/Cloud Calipso/CALIPSOCOSP-CLDLOW_CAL-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/Cloud Calipso_diff/CALIPSOCOSP-CLDLOW_CAL-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/Cloud Calipso/CALIPSOCOSP-CLDLOW_CAL-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/Cloud Calipso/CALIPSOCOSP-CLDLOW_CAL-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/Cloud Calipso_diff/CALIPSOCOSP-CLDLOW_CAL-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/Cloud Calipso/CALIPSOCOSP-CLDMED_CAL-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/Cloud Calipso/CALIPSOCOSP-CLDMED_CAL-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/Cloud Calipso_diff/CALIPSOCOSP-CLDMED_CAL-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/Cloud Calipso/CALIPSOCOSP-CLDMED_CAL-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/Cloud Calipso/CALIPSOCOSP-CLDMED_CAL-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/Cloud Calipso_diff/CALIPSOCOSP-CLDMED_CAL-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/Cloud Calipso/CALIPSOCOSP-CLDTOT_CAL-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/Cloud Calipso/CALIPSOCOSP-CLDTOT_CAL-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/Cloud Calipso_diff/CALIPSOCOSP-CLDTOT_CAL-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/Cloud Calipso/CALIPSOCOSP-CLDTOT_CAL-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/Cloud Calipso/CALIPSOCOSP-CLDTOT_CAL-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/Cloud Calipso_diff/CALIPSOCOSP-CLDTOT_CAL-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/Cloud ISCCP/ISCCPCOSP-CLDTOT_TAU1.3_9.4_ISCCP-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/Cloud ISCCP/ISCCPCOSP-CLDTOT_TAU1.3_9.4_ISCCP-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/Cloud ISCCP_diff/ISCCPCOSP-CLDTOT_TAU1.3_9.4_ISCCP-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/Cloud ISCCP/ISCCPCOSP-CLDTOT_TAU1.3_9.4_ISCCP-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/Cloud ISCCP/ISCCPCOSP-CLDTOT_TAU1.3_9.4_ISCCP-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/Cloud ISCCP_diff/ISCCPCOSP-CLDTOT_TAU1.3_9.4_ISCCP-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/Cloud ISCCP/ISCCPCOSP-CLDTOT_TAU1.3_ISCCP-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/Cloud ISCCP/ISCCPCOSP-CLDTOT_TAU1.3_ISCCP-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/Cloud ISCCP_diff/ISCCPCOSP-CLDTOT_TAU1.3_ISCCP-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/Cloud ISCCP/ISCCPCOSP-CLDTOT_TAU1.3_ISCCP-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/Cloud ISCCP/ISCCPCOSP-CLDTOT_TAU1.3_ISCCP-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/Cloud ISCCP_diff/ISCCPCOSP-CLDTOT_TAU1.3_ISCCP-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/Cloud ISCCP/ISCCPCOSP-CLDTOT_TAU9.4_ISCCP-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/Cloud ISCCP/ISCCPCOSP-CLDTOT_TAU9.4_ISCCP-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/Cloud ISCCP_diff/ISCCPCOSP-CLDTOT_TAU9.4_ISCCP-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/Cloud ISCCP/ISCCPCOSP-CLDTOT_TAU9.4_ISCCP-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/Cloud ISCCP/ISCCPCOSP-CLDTOT_TAU9.4_ISCCP-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/Cloud ISCCP_diff/ISCCPCOSP-CLDTOT_TAU9.4_ISCCP-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/Cloud MISR/MISRCOSP-CLDLOW_TAU1.3_9.4_MISR-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/Cloud MISR/MISRCOSP-CLDLOW_TAU1.3_9.4_MISR-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/Cloud MISR_diff/MISRCOSP-CLDLOW_TAU1.3_9.4_MISR-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/Cloud MISR/MISRCOSP-CLDLOW_TAU1.3_9.4_MISR-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/Cloud MISR/MISRCOSP-CLDLOW_TAU1.3_9.4_MISR-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/Cloud MISR_diff/MISRCOSP-CLDLOW_TAU1.3_9.4_MISR-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/Cloud MISR/MISRCOSP-CLDLOW_TAU1.3_MISR-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/Cloud MISR/MISRCOSP-CLDLOW_TAU1.3_MISR-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/Cloud MISR_diff/MISRCOSP-CLDLOW_TAU1.3_MISR-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/Cloud MISR/MISRCOSP-CLDLOW_TAU1.3_MISR-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/Cloud MISR/MISRCOSP-CLDLOW_TAU1.3_MISR-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/Cloud MISR_diff/MISRCOSP-CLDLOW_TAU1.3_MISR-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/Cloud MISR/MISRCOSP-CLDLOW_TAU9.4_MISR-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/Cloud MISR/MISRCOSP-CLDLOW_TAU9.4_MISR-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/Cloud MISR_diff/MISRCOSP-CLDLOW_TAU9.4_MISR-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/Cloud MISR/MISRCOSP-CLDLOW_TAU9.4_MISR-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/Cloud MISR/MISRCOSP-CLDLOW_TAU9.4_MISR-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/Cloud MISR_diff/MISRCOSP-CLDLOW_TAU9.4_MISR-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/Cloud MISR/MISRCOSP-CLDTOT_TAU1.3_9.4_MISR-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/Cloud MISR/MISRCOSP-CLDTOT_TAU1.3_9.4_MISR-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/Cloud MISR_diff/MISRCOSP-CLDTOT_TAU1.3_9.4_MISR-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/Cloud MISR/MISRCOSP-CLDTOT_TAU1.3_9.4_MISR-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/Cloud MISR/MISRCOSP-CLDTOT_TAU1.3_9.4_MISR-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/Cloud MISR_diff/MISRCOSP-CLDTOT_TAU1.3_9.4_MISR-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/Cloud MISR/MISRCOSP-CLDTOT_TAU1.3_MISR-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/Cloud MISR/MISRCOSP-CLDTOT_TAU1.3_MISR-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/Cloud MISR_diff/MISRCOSP-CLDTOT_TAU1.3_MISR-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/Cloud MISR/MISRCOSP-CLDTOT_TAU1.3_MISR-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/Cloud MISR/MISRCOSP-CLDTOT_TAU1.3_MISR-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/Cloud MISR_diff/MISRCOSP-CLDTOT_TAU1.3_MISR-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/Cloud MISR/MISRCOSP-CLDTOT_TAU9.4_MISR-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/Cloud MISR/MISRCOSP-CLDTOT_TAU9.4_MISR-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/Cloud MISR_diff/MISRCOSP-CLDTOT_TAU9.4_MISR-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/Cloud MISR/MISRCOSP-CLDTOT_TAU9.4_MISR-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/Cloud MISR/MISRCOSP-CLDTOT_TAU9.4_MISR-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/Cloud MISR_diff/MISRCOSP-CLDTOT_TAU9.4_MISR-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/Cloud MODIS/MODISCOSP-CLDHGH_TAU1.3_9.4_MODIS-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/Cloud MODIS/MODISCOSP-CLDHGH_TAU1.3_9.4_MODIS-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/Cloud MODIS_diff/MODISCOSP-CLDHGH_TAU1.3_9.4_MODIS-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/Cloud MODIS/MODISCOSP-CLDHGH_TAU1.3_9.4_MODIS-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/Cloud MODIS/MODISCOSP-CLDHGH_TAU1.3_9.4_MODIS-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/Cloud MODIS_diff/MODISCOSP-CLDHGH_TAU1.3_9.4_MODIS-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/Cloud MODIS/MODISCOSP-CLDHGH_TAU1.3_MODIS-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/Cloud MODIS/MODISCOSP-CLDHGH_TAU1.3_MODIS-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/Cloud MODIS_diff/MODISCOSP-CLDHGH_TAU1.3_MODIS-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/Cloud MODIS/MODISCOSP-CLDHGH_TAU1.3_MODIS-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/Cloud MODIS/MODISCOSP-CLDHGH_TAU1.3_MODIS-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/Cloud MODIS_diff/MODISCOSP-CLDHGH_TAU1.3_MODIS-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/Cloud MODIS/MODISCOSP-CLDHGH_TAU9.4_MODIS-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/Cloud MODIS/MODISCOSP-CLDHGH_TAU9.4_MODIS-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/Cloud MODIS_diff/MODISCOSP-CLDHGH_TAU9.4_MODIS-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/Cloud MODIS/MODISCOSP-CLDHGH_TAU9.4_MODIS-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/Cloud MODIS/MODISCOSP-CLDHGH_TAU9.4_MODIS-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/Cloud MODIS_diff/MODISCOSP-CLDHGH_TAU9.4_MODIS-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/Cloud MODIS/MODISCOSP-CLDTOT_TAU1.3_9.4_MODIS-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/Cloud MODIS/MODISCOSP-CLDTOT_TAU1.3_9.4_MODIS-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/Cloud MODIS_diff/MODISCOSP-CLDTOT_TAU1.3_9.4_MODIS-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/Cloud MODIS/MODISCOSP-CLDTOT_TAU1.3_9.4_MODIS-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/Cloud MODIS/MODISCOSP-CLDTOT_TAU1.3_9.4_MODIS-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/Cloud MODIS_diff/MODISCOSP-CLDTOT_TAU1.3_9.4_MODIS-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/Cloud MODIS/MODISCOSP-CLDTOT_TAU1.3_MODIS-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/Cloud MODIS/MODISCOSP-CLDTOT_TAU1.3_MODIS-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/Cloud MODIS_diff/MODISCOSP-CLDTOT_TAU1.3_MODIS-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/Cloud MODIS/MODISCOSP-CLDTOT_TAU1.3_MODIS-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/Cloud MODIS/MODISCOSP-CLDTOT_TAU1.3_MODIS-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/Cloud MODIS_diff/MODISCOSP-CLDTOT_TAU1.3_MODIS-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/Cloud MODIS/MODISCOSP-CLDTOT_TAU9.4_MODIS-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/Cloud MODIS/MODISCOSP-CLDTOT_TAU9.4_MODIS-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/Cloud MODIS_diff/MODISCOSP-CLDTOT_TAU9.4_MODIS-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/Cloud MODIS/MODISCOSP-CLDTOT_TAU9.4_MODIS-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/Cloud MODIS/MODISCOSP-CLDTOT_TAU9.4_MODIS-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/Cloud MODIS_diff/MODISCOSP-CLDTOT_TAU9.4_MODIS-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/ERA5/ERA5-LHFLX-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/ERA5/ERA5-LHFLX-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/ERA5_diff/ERA5-LHFLX-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/ERA5/ERA5-LHFLX-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/ERA5/ERA5-LHFLX-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/ERA5_diff/ERA5-LHFLX-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/ERA5/ERA5-PRECT-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/ERA5/ERA5-PRECT-ANN-global.png\n", + " * Plots are identical\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/ERA5/ERA5-PRECT-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/ERA5/ERA5-PRECT-JJA-global.png\n", + " * Plots are identical\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/ERA5/ERA5-T-200-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/ERA5/ERA5-T-200-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/ERA5_diff/ERA5-T-200-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/ERA5/ERA5-T-200-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/ERA5/ERA5-T-200-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/ERA5_diff/ERA5-T-200-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/ERA5/ERA5-T-850-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/ERA5/ERA5-T-850-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/ERA5_diff/ERA5-T-850-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/ERA5/ERA5-T-850-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/ERA5/ERA5-T-850-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/ERA5_diff/ERA5-T-850-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/ERA5/ERA5-TMQ-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/ERA5/ERA5-TMQ-ANN-global.png\n", + " * Plots are identical\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/ERA5/ERA5-TMQ-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/ERA5/ERA5-TMQ-JJA-global.png\n", + " * Plots are identical\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/ERA5/ERA5-TREFHT-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/ERA5/ERA5-TREFHT-ANN-global.png\n", + " * Plots are identical\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/ERA5/ERA5-TREFHT-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/ERA5/ERA5-TREFHT-JJA-global.png\n", + " * Plots are identical\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/ERA5/ERA5-Z3-500-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/ERA5/ERA5-Z3-500-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/ERA5_diff/ERA5-Z3-500-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/ERA5/ERA5-Z3-500-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/ERA5/ERA5-Z3-500-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/ERA5_diff/ERA5-Z3-500-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/GPCP_OAFLux/GPCP_OAFLux-PminusE-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/GPCP_OAFLux/GPCP_OAFLux-PminusE-ANN-global.png\n", + " * Plots are identical\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/GPCP_OAFLux/GPCP_OAFLux-PminusE-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/GPCP_OAFLux/GPCP_OAFLux-PminusE-JJA-global.png\n", + " * Plots are identical\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/GPCP_v2.3/GPCP_v2.3-PRECT-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/GPCP_v2.3/GPCP_v2.3-PRECT-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/GPCP_v2.3_diff/GPCP_v2.3-PRECT-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/GPCP_v2.3/GPCP_v2.3-PRECT-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/GPCP_v2.3/GPCP_v2.3-PRECT-JJA-global.png\n", + " * Plots are identical\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/GPCP_v3.2/GPCP_v3.2-PRECT-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/GPCP_v3.2/GPCP_v3.2-PRECT-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/GPCP_v3.2_diff/GPCP_v3.2-PRECT-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/GPCP_v3.2/GPCP_v3.2-PRECT-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/GPCP_v3.2/GPCP_v3.2-PRECT-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/GPCP_v3.2_diff/GPCP_v3.2-PRECT-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/MERRA2/MERRA2-PRECT-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/MERRA2/MERRA2-PRECT-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/MERRA2_diff/MERRA2-PRECT-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/MERRA2/MERRA2-PRECT-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/MERRA2/MERRA2-PRECT-JJA-global.png\n", + " * Plots are identical\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/MERRA2/MERRA2-T-200-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/MERRA2/MERRA2-T-200-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/MERRA2_diff/MERRA2-T-200-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/MERRA2/MERRA2-T-200-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/MERRA2/MERRA2-T-200-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/MERRA2_diff/MERRA2-T-200-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/MERRA2/MERRA2-T-850-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/MERRA2/MERRA2-T-850-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/MERRA2_diff/MERRA2-T-850-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/MERRA2/MERRA2-T-850-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/MERRA2/MERRA2-T-850-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/MERRA2_diff/MERRA2-T-850-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/MERRA2/MERRA2-TMQ-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/MERRA2/MERRA2-TMQ-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/MERRA2_diff/MERRA2-TMQ-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/MERRA2/MERRA2-TMQ-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/MERRA2/MERRA2-TMQ-JJA-global.png\n", + " * Plots are identical\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/MERRA2/MERRA2-TREFHT-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/MERRA2/MERRA2-TREFHT-ANN-global.png\n", + " * Plots are identical\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/MERRA2/MERRA2-TREFHT-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/MERRA2/MERRA2-TREFHT-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/MERRA2_diff/MERRA2-TREFHT-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/MERRA2/MERRA2-TREFMNAV-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/MERRA2/MERRA2-TREFMNAV-ANN-global.png\n", + " * Plots are identical\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/MERRA2/MERRA2-TREFMNAV-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/MERRA2/MERRA2-TREFMNAV-JJA-global.png\n", + " * Plots are identical\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/MERRA2/MERRA2-TREFMXAV-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/MERRA2/MERRA2-TREFMXAV-ANN-global.png\n", + " * Plots are identical\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/MERRA2/MERRA2-TREFMXAV-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/MERRA2/MERRA2-TREFMXAV-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/MERRA2_diff/MERRA2-TREFMXAV-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/MERRA2/MERRA2-U-200-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/MERRA2/MERRA2-U-200-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/MERRA2_diff/MERRA2-U-200-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/MERRA2/MERRA2-U-200-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/MERRA2/MERRA2-U-200-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/MERRA2_diff/MERRA2-U-200-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/MERRA2/MERRA2-U-850-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/MERRA2/MERRA2-U-850-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/MERRA2_diff/MERRA2-U-850-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/MERRA2/MERRA2-U-850-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/MERRA2/MERRA2-U-850-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/MERRA2_diff/MERRA2-U-850-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/MERRA2/MERRA2-Z3-500-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/MERRA2/MERRA2-Z3-500-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/MERRA2_diff/MERRA2-Z3-500-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/MERRA2/MERRA2-Z3-500-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/MERRA2/MERRA2-Z3-500-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/MERRA2_diff/MERRA2-Z3-500-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/SST_CL_HadISST/HadISST_CL-SST-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/SST_CL_HadISST/HadISST_CL-SST-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/SST_CL_HadISST_diff/HadISST_CL-SST-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/SST_CL_HadISST/HadISST_CL-SST-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/SST_CL_HadISST/HadISST_CL-SST-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/SST_CL_HadISST_diff/HadISST_CL-SST-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/SST_PD_HadISST/HadISST_PD-SST-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/SST_PD_HadISST/HadISST_PD-SST-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/SST_PD_HadISST_diff/HadISST_PD-SST-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/SST_PD_HadISST/HadISST_PD-SST-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/SST_PD_HadISST/HadISST_PD-SST-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/SST_PD_HadISST_diff/HadISST_PD-SST-JJA-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/SST_PI_HadISST/HadISST_PI-SST-ANN-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/SST_PI_HadISST/HadISST_PI-SST-ANN-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/SST_PI_HadISST_diff/HadISST_PI-SST-ANN-global.png\n", + "Comparing:\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/main/zonal_mean_xy/SST_PI_HadISST/HadISST_PI-SST-JJA-global.png\n", + " * /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/SST_PI_HadISST/HadISST_PI-SST-JJA-global.png\n", + " * Difference path /global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-model-vs-obs/zonal_mean_xy/SST_PI_HadISST_diff/HadISST_PI-SST-JJA-global.png\n" + ] + } + ], + "source": [ + "MAIN_GLOB = [f for f in MAIN_GLOB if \"AOD_550\" not in f]\n", + "\n", + "for main_path in MAIN_GLOB:\n", + " dev_path = main_path.replace(MAIN_PATH, DEV_PATH)\n", + " print(\"Comparing:\")\n", + " print(f\" * {main_path}\")\n", + " print(f\" * {dev_path}\")\n", + "\n", + " get_image_diffs(dev_path, main_path)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Results\n", + "\n", + "All the plots are virtually identical. There looks like one red dot that is different, which creates a diff plot.\n" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "cdat_regression_test", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.10.14" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/examples/run_v2_7_0_all_sets_E3SM_machines.py b/auxiliary_tools/cdat_regression_testing/843-migration-phase3/run-script-model-vs-obs/run_script.py similarity index 86% rename from examples/run_v2_7_0_all_sets_E3SM_machines.py rename to auxiliary_tools/cdat_regression_testing/843-migration-phase3/run-script-model-vs-obs/run_script.py index 97fdb2d8e..6f82084c2 100644 --- a/examples/run_v2_7_0_all_sets_E3SM_machines.py +++ b/auxiliary_tools/cdat_regression_testing/843-migration-phase3/run-script-model-vs-obs/run_script.py @@ -11,9 +11,9 @@ source /lcrc/soft/climate/e3sm-unified/load_latest_e3sm_unified_chrysalis.sh Or: source /lcrc/soft/climate/e3sm-unified/load_latest_e3sm_unified_anvil.sh -NERSC: - salloc --nodes=1 --partition=regular --time=01:00:00 -C haswell - source /global/common/software/e3sm/anaconda_envs/load_latest_e3sm_unified_cori-haswell.sh +NERSC perlmutter cpu: + salloc --nodes 1 --qos interactive --time 01:00:00 --constraint cpu --account=e3sm + source /global/common/software/e3sm/anaconda_envs/load_latest_e3sm_unified_pm-cpu.sh """ # flake8: noqa E501 @@ -30,6 +30,7 @@ from e3sm_diags.parameter.core_parameter import CoreParameter from e3sm_diags.parameter.diurnal_cycle_parameter import DiurnalCycleParameter from e3sm_diags.parameter.enso_diags_parameter import EnsoDiagsParameter +from e3sm_diags.parameter.mp_partition_parameter import MPpartitionParameter from e3sm_diags.parameter.qbo_parameter import QboParameter from e3sm_diags.parameter.streamflow_parameter import StreamflowParameter from e3sm_diags.parameter.tc_analysis_parameter import TCAnalysisParameter @@ -37,6 +38,7 @@ ZonalMean2dStratosphereParameter, ) from e3sm_diags.run import runner +import timeit class MachinePaths(TypedDict): @@ -65,10 +67,9 @@ def run_all_sets(): "ANN", "JJA", ] # Default setting: seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] - - param.results_dir = f"{machine_paths['html_path']}/v2_7_0_all_sets" + param.results_dir = "/global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-migration-phase3-perf-benchmark" param.multiprocessing = True - param.num_workers = 5 + param.num_workers = 24 # Set specific parameters for new sets enso_param = EnsoDiagsParameter() @@ -121,8 +122,10 @@ def run_all_sets(): arm_param.ref_name = "armdiags" arm_param.test_data_path = machine_paths["arm_test"] arm_param.test_name = "e3sm_v2" - arm_param.test_start_yr = "1996" - arm_param.test_end_yr = "2010" + # arm_param.test_start_yr = "1996" + # arm_param.test_end_yr = "2010" + arm_param.test_start_yr = "1985" + arm_param.test_end_yr = "2014" # For model vs obs, the ref start and end year can be any four digit strings. # For now, will use all available years form obs arm_param.ref_start_yr = "0001" @@ -140,8 +143,17 @@ def run_all_sets(): tc_param.ref_end_yr = "2018" ac_param = ACzonalmeanParameter() + zm_param = ZonalMean2dStratosphereParameter() + mp_param = MPpartitionParameter() + # mp_param.reference_data_path = machine_paths["obs_ts"] + mp_param.test_data_path = machine_paths["test_ts"] + mp_param.short_test_name = "e3sm_v2" + mp_param.test_start_yr = "0051" + mp_param.test_end_yr = "0060" + + param.save_netcdf = True runner.sets_to_run = [ "lat_lon", "zonal_mean_xy", @@ -159,6 +171,8 @@ def run_all_sets(): "arm_diags", "tc_analysis", "aerosol_aeronet", + "aerosol_budget", + "mp_partition", ] runner.run_diags( @@ -173,6 +187,7 @@ def run_all_sets(): streamflow_param, arm_param, tc_param, + mp_param, ] ) @@ -192,7 +207,14 @@ def _get_machine_paths() -> MachinePaths: machine_info = MachineInfo() machine = machine_info.machine - if machine not in ["anvil", "chrysalis", "compy", "cori-haswell", "cori-knl"]: + if machine not in [ + "anvil", + "chrysalis", + "compy", + "pm-cpu", + "cori-haswell", + "cori-knl", + ]: raise ValueError(f"e3sm_diags is not supported on this machine ({machine}).") # Path to the HTML outputs for the current user. @@ -247,16 +269,21 @@ def _get_test_data_dirs(machine: str) -> Tuple[str, str]: base = "/lcrc/group/e3sm/public_html/e3sm_diags_test_data/postprocessed_e3sm_v2_data_for_e3sm_diags" elif machine in ["compy"]: base = "/compyfs/e3sm_diags_data/postprocessed_e3sm_v2_data_for_e3sm_diags" - elif machine in ["cori-haswell", "cori-knl"]: + elif machine in ["cori-haswell", "cori-knl", "pm-cpu"]: base = "/global/cfs/cdirs/e3sm/e3sm_diags/postprocessed_e3sm_v2_data_for_e3sm_diags" test_data_dirs = ( f"{base}/20210528.v2rc3e.piControl.ne30pg2_EC30to60E2r2.chrysalis", - f"{base}/20210719.PhaseII.F20TR-P3.NGD.ne30pg2.compy", + # f"{base}/20210719.PhaseII.F20TR-P3.NGD.ne30pg2.compy", + f"{base}/20221103.v2.LR.amip.NGD_v3atm.chrysalis", ) return test_data_dirs # type: ignore if __name__ == "__main__": + start_time = timeit.default_timer() run_all_sets() + end_time = timeit.default_timer() + elapsed_time = end_time - start_time + print(f"Elapsed time: {elapsed_time} seconds") diff --git a/auxiliary_tools/cdat_regression_testing/843-migration-phase3/run-script-model-vs-obs/run_script_main.py b/auxiliary_tools/cdat_regression_testing/843-migration-phase3/run-script-model-vs-obs/run_script_main.py new file mode 100644 index 000000000..9b8a107b4 --- /dev/null +++ b/auxiliary_tools/cdat_regression_testing/843-migration-phase3/run-script-model-vs-obs/run_script_main.py @@ -0,0 +1,295 @@ +""" +Make sure to run the machine-specific commands below before +running this script: + +Compy: + srun --pty --nodes=1 --time=01:00:00 /bin/bash + source /share/apps/E3SM/conda_envs/load_latest_e3sm_unified_compy.sh + +LCRC: + srun --pty --nodes=1 --time=01:00:00 /bin/bash + source /lcrc/soft/climate/e3sm-unified/load_latest_e3sm_unified_chrysalis.sh + Or: source /lcrc/soft/climate/e3sm-unified/load_latest_e3sm_unified_anvil.sh + +NERSC perlmutter cpu: + salloc --nodes 1 --qos interactive --time 01:00:00 --constraint cpu --account=e3sm + source /global/common/software/e3sm/anaconda_envs/load_latest_e3sm_unified_pm-cpu.sh +""" +# flake8: noqa E501 + +import os +from typing import Tuple, TypedDict + +from mache import MachineInfo + +from e3sm_diags.parameter.annual_cycle_zonal_mean_parameter import ACzonalmeanParameter +from e3sm_diags.parameter.area_mean_time_series_parameter import ( + AreaMeanTimeSeriesParameter, +) +from e3sm_diags.parameter.arm_diags_parameter import ARMDiagsParameter +from e3sm_diags.parameter.core_parameter import CoreParameter +from e3sm_diags.parameter.diurnal_cycle_parameter import DiurnalCycleParameter +from e3sm_diags.parameter.enso_diags_parameter import EnsoDiagsParameter +from e3sm_diags.parameter.mp_partition_parameter import MPpartitionParameter +from e3sm_diags.parameter.qbo_parameter import QboParameter +from e3sm_diags.parameter.streamflow_parameter import StreamflowParameter +from e3sm_diags.parameter.tc_analysis_parameter import TCAnalysisParameter +from e3sm_diags.parameter.zonal_mean_2d_stratosphere_parameter import ( + ZonalMean2dStratosphereParameter, +) +from e3sm_diags.run import runner +import timeit + + +class MachinePaths(TypedDict): + html_path: str + obs_climo: str + test_climo: str + obs_ts: str + test_ts: str + dc_obs_climo: str + dc_test_climo: str + arm_obs: str + arm_test: str + tc_obs: str + tc_test: str + + +def run_all_sets(): + machine_paths: MachinePaths = _get_machine_paths() + + param = CoreParameter() + + param.reference_data_path = machine_paths["obs_climo"] + param.test_data_path = machine_paths["test_climo"] + param.test_name = "20210528.v2rc3e.piControl.ne30pg2_EC30to60E2r2.chrysalis" + param.seasons = [ + "ANN", + "JJA", + ] # Default setting: seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] + param.results_dir = ( + "/global/cfs/cdirs/e3sm/www/cdat-migration-fy24/843-main-perf-benchmark" + ) + param.multiprocessing = True + param.num_workers = 24 + + # Set specific parameters for new sets + enso_param = EnsoDiagsParameter() + enso_param.reference_data_path = machine_paths["obs_ts"] + enso_param.test_data_path = machine_paths["test_ts"] + enso_param.test_name = "e3sm_v2" + enso_param.test_start_yr = "0051" + enso_param.test_end_yr = "0060" + # Enso obs data range from year 1979 to 2016 + enso_param.ref_start_yr = "2001" + enso_param.ref_end_yr = "2010" + + qbo_param = QboParameter() + qbo_param.reference_data_path = machine_paths["obs_ts"] + qbo_param.test_data_path = machine_paths["test_ts"] + qbo_param.test_name = "e3sm_v2" + qbo_param.start_yr = "0051" + qbo_param.end_yr = "0060" + # Qbo obs data range from year 1979 to 2019 + # Number of years of test and ref should match + qbo_param.ref_start_yr = "2001" + qbo_param.ref_end_yr = "2010" + + ts_param = AreaMeanTimeSeriesParameter() + ts_param.reference_data_path = machine_paths["obs_ts"] + ts_param.test_data_path = machine_paths["test_ts"] + ts_param.test_name = "e3sm_v2" + ts_param.start_yr = "0051" + ts_param.end_yr = "0060" + + dc_param = DiurnalCycleParameter() + dc_param.reference_data_path = machine_paths["dc_obs_climo"] + dc_param.test_data_path = machine_paths["dc_test_climo"] + dc_param.short_test_name = "e3sm_v2" + # Plotting diurnal cycle amplitude on different scales. Default is True + dc_param.normalize_test_amp = False + + streamflow_param = StreamflowParameter() + streamflow_param.reference_data_path = machine_paths["obs_ts"] + streamflow_param.test_data_path = machine_paths["test_ts"] + streamflow_param.short_test_name = "e3sm_v2" + streamflow_param.test_start_yr = "0051" + streamflow_param.test_end_yr = "0060" + # Streamflow gauge station data range from year 1986 to 1995 + streamflow_param.ref_start_yr = "1986" + streamflow_param.ref_end_yr = "1995" + + arm_param = ARMDiagsParameter() + arm_param.reference_data_path = machine_paths["arm_obs"] + arm_param.ref_name = "armdiags" + arm_param.test_data_path = machine_paths["arm_test"] + arm_param.test_name = "e3sm_v2" + # arm_param.test_start_yr = "1996" + # arm_param.test_end_yr = "2010" + arm_param.test_start_yr = "1985" + arm_param.test_end_yr = "2014" + # For model vs obs, the ref start and end year can be any four digit strings. + # For now, will use all available years form obs + arm_param.ref_start_yr = "0001" + arm_param.ref_end_yr = "0001" + + tc_param = TCAnalysisParameter() + tc_param.reference_data_path = machine_paths["tc_obs"] + tc_param.test_data_path = machine_paths["tc_test"] + tc_param.short_test_name = "e3sm_v2" + tc_param.test_start_yr = "0051" + tc_param.test_end_yr = "0060" + # For model vs obs, the ref start and end year can be any four digit strings. + # For now, use all available years form obs by default. + tc_param.ref_start_yr = "1979" + tc_param.ref_end_yr = "2018" + + ac_param = ACzonalmeanParameter() + + zm_param = ZonalMean2dStratosphereParameter() + + mp_param = MPpartitionParameter() + # mp_param.reference_data_path = machine_paths["obs_ts"] + mp_param.test_data_path = machine_paths["test_ts"] + mp_param.short_test_name = "e3sm_v2" + mp_param.test_start_yr = "0051" + mp_param.test_end_yr = "0060" + + param.save_netcdf = True + runner.sets_to_run = [ + "lat_lon", + "zonal_mean_xy", + "zonal_mean_2d", + "zonal_mean_2d_stratosphere", + "polar", + "cosp_histogram", + "meridional_mean_2d", + "annual_cycle_zonal_mean", + "enso_diags", + "qbo", + "area_mean_time_series", + "diurnal_cycle", + "streamflow", + "arm_diags", + "tc_analysis", + "aerosol_aeronet", + "aerosol_budget", + "mp_partition", + ] + + runner.run_diags( + [ + param, + zm_param, + ac_param, + enso_param, + qbo_param, + ts_param, + dc_param, + streamflow_param, + arm_param, + tc_param, + mp_param, + ] + ) + + return param.results_dir + + +def _get_machine_paths() -> MachinePaths: + """Returns the paths on the machine that are required to run e3sm_diags. + + Returns + ------- + MachinePaths + A dictionary of paths on the machine, with the key being the path type + and the value being the absolute path string. + """ + # Get the current machine's configuration info. + machine_info = MachineInfo() + machine = machine_info.machine + + if machine not in [ + "anvil", + "chrysalis", + "compy", + "pm-cpu", + "cori-haswell", + "cori-knl", + ]: + raise ValueError(f"e3sm_diags is not supported on this machine ({machine}).") + + # Path to the HTML outputs for the current user. + web_portal_base_path = machine_info.config.get("web_portal", "base_path") + html_path = f"{web_portal_base_path}/{machine_info.username}/" + + # Path to the reference data directory. + diags_base_path = machine_info.diagnostics_base + ref_data_dir = f"{diags_base_path}/observations/Atm" + + # Paths to the test data directories. + test_data_dir, test_data_dir2 = _get_test_data_dirs(machine) + + # Construct the paths required by e3sm_diags using the base paths above. + machine_paths: MachinePaths = { + "html_path": html_path, + "obs_climo": f"{ref_data_dir}/climatology", + "test_climo": f"{test_data_dir}/climatology/rgr/", + "obs_ts": f"{ref_data_dir}/time-series/", + "test_ts": f"{test_data_dir}/time-series/rgr/", + "dc_obs_climo": f"{ref_data_dir}/climatology", + "dc_test_climo": f"{test_data_dir}/diurnal_climatology/rgr", + "arm_obs": f"{ref_data_dir}/arm-diags-data/", + "arm_test": f"{test_data_dir2}/arm-diags-data/", + "tc_obs": f"{ref_data_dir}/tc-analysis/", + "tc_test": f"{test_data_dir}/tc-analysis/", + } + + return machine_paths + + +def _get_test_data_dirs(machine: str) -> Tuple[str, str]: + """Get the directories for test data based on the machine. + + The second path is for using the high frequency grid box output at ARM sites + from another simulation when the output is available. + + Parameters + ---------- + machine : str + The name of the machine. + + Returns + ------- + Tuple[str, str] + A tuple of two strings, each representing a test data directory path. + """ + test_data_dirs = None + + # TODO: Update this function to use `mache` after the directories are updated. + if machine in ["chrysalis", "anvil"]: + base = "/lcrc/group/e3sm/public_html/e3sm_diags_test_data/postprocessed_e3sm_v2_data_for_e3sm_diags" + elif machine in ["compy"]: + base = "/compyfs/e3sm_diags_data/postprocessed_e3sm_v2_data_for_e3sm_diags" + elif machine in ["cori-haswell", "cori-knl", "pm-cpu"]: + base = "/global/cfs/cdirs/e3sm/e3sm_diags/postprocessed_e3sm_v2_data_for_e3sm_diags" + + test_data_dirs = ( + f"{base}/20210528.v2rc3e.piControl.ne30pg2_EC30to60E2r2.chrysalis", + # f"{base}/20210719.PhaseII.F20TR-P3.NGD.ne30pg2.compy", + f"{base}/20221103.v2.LR.amip.NGD_v3atm.chrysalis", + ) + + return test_data_dirs # type: ignore + + +if __name__ == "__main__": + # Run the function 3 times and measure the execution time + execution_times = [] + for _ in range(3): + execution_time = timeit.timeit(run_all_sets, number=1) + execution_times.append(execution_time) + + # Calculate the average execution time + average_execution_time = sum(execution_times) / len(execution_times) + print(f"Average execution time: {average_execution_time} seconds") diff --git a/auxiliary_tools/cdat_regression_testing/base_run_script.py b/auxiliary_tools/cdat_regression_testing/base_run_script.py index c24693229..0aaa6a70a 100644 --- a/auxiliary_tools/cdat_regression_testing/base_run_script.py +++ b/auxiliary_tools/cdat_regression_testing/base_run_script.py @@ -6,7 +6,7 @@ import os import sys -from typing import List, Tuple, TypedDict +from typing import Literal, List, Tuple, TypedDict from mache import MachineInfo @@ -50,6 +50,7 @@ def run_set( set_dir: str, cfg_path: str | None = None, multiprocessing: bool = True, + run_type: Literal["model_vs_model", "model_vs_obs"] = "model_vs_obs", ): if cfg_path is not None: sys.argv.extend(["--diags", cfg_path]) @@ -69,6 +70,7 @@ def run_set( param.results_dir = os.path.join(BASE_RESULTS_DIR, set_dir) param.multiprocessing = multiprocessing param.num_workers = 5 + param.run_type = run_type # Make sure to save the netCDF files to compare outputs. param.save_netcdf = True @@ -83,6 +85,7 @@ def run_set( # Enso obs data range from year 1979 to 2016 enso_param.ref_start_yr = "2001" enso_param.ref_end_yr = "2010" + enso_param.run_type = run_type qbo_param = QboParameter() qbo_param.reference_data_path = machine_paths["obs_ts"] @@ -94,6 +97,7 @@ def run_set( # Number of years of test and ref should match qbo_param.ref_start_yr = "2001" qbo_param.ref_end_yr = "2010" + qbo_param.run_type = run_type ts_param = AreaMeanTimeSeriesParameter() ts_param.reference_data_path = machine_paths["obs_ts"] @@ -101,6 +105,7 @@ def run_set( ts_param.test_name = "e3sm_v2" ts_param.start_yr = "0051" ts_param.end_yr = "0060" + ts_param.run_type = run_type dc_param = DiurnalCycleParameter() dc_param.reference_data_path = machine_paths["dc_obs_climo"] @@ -108,6 +113,7 @@ def run_set( dc_param.short_test_name = "e3sm_v2" # Plotting diurnal cycle amplitude on different scales. Default is True dc_param.normalize_test_amp = False + dc_param.run_type = run_type streamflow_param = StreamflowParameter() streamflow_param.reference_data_path = machine_paths["obs_ts"] @@ -118,6 +124,7 @@ def run_set( # Streamflow gauge station data range from year 1986 to 1995 streamflow_param.ref_start_yr = "1986" streamflow_param.ref_end_yr = "1995" + streamflow_param.run_type = run_type arm_param = ARMDiagsParameter() arm_param.reference_data_path = machine_paths["arm_obs"] @@ -132,6 +139,7 @@ def run_set( # For now, will use all available years form obs arm_param.ref_start_yr = "0001" arm_param.ref_end_yr = "0001" + arm_param.run_type = run_type tc_param = TCAnalysisParameter() tc_param.reference_data_path = machine_paths["tc_obs"] @@ -143,9 +151,13 @@ def run_set( # For now, use all available years form obs by default. tc_param.ref_start_yr = "1979" tc_param.ref_end_yr = "2018" + tc_param.run_type = run_type ac_param = ACzonalmeanParameter() + ac_param.run_type = run_type + zm_param = ZonalMean2dStratosphereParameter() + zm_param.run_type = run_type mp_param = MPpartitionParameter() # mp_param.reference_data_path = machine_paths["obs_ts"] @@ -153,6 +165,7 @@ def run_set( mp_param.short_test_name = "e3sm_v2" mp_param.test_start_yr = "0051" mp_param.test_end_yr = "0060" + zm_param.run_type = run_type if isinstance(set_name, str): runner.sets_to_run = [set_name] diff --git a/docs/source/dev_guide/_static/viewer_example.png b/docs/source/dev_guide/_static/viewer_example.png new file mode 100755 index 000000000..69b3cf037 Binary files /dev/null and b/docs/source/dev_guide/_static/viewer_example.png differ diff --git a/docs/source/dev_guide/_static/viewer_index_page.png b/docs/source/dev_guide/_static/viewer_index_page.png new file mode 100755 index 000000000..ab68343fc Binary files /dev/null and b/docs/source/dev_guide/_static/viewer_index_page.png differ diff --git a/docs/source/dev_guide/_static/viewer_page.png b/docs/source/dev_guide/_static/viewer_page.png new file mode 100755 index 000000000..705766c07 Binary files /dev/null and b/docs/source/dev_guide/_static/viewer_page.png differ diff --git a/docs/source/dev_guide/adding-new-diags-sets.rst b/docs/source/dev_guide/adding-new-diags-sets.rst index 480af91f1..fe047309c 100644 --- a/docs/source/dev_guide/adding-new-diags-sets.rst +++ b/docs/source/dev_guide/adding-new-diags-sets.rst @@ -680,7 +680,7 @@ Open ``e3sm_diags/viewer/main.py`` and edit ``SET_TO_VIEWER``. } -We use the CDP Viewer to create the webpages. +We use the E3SM Diagnostics Output Viewer to create the webpages. **This is not needed! Use whatever you want to create the webpages.** Just make sure that your function that's mapped to the plotset in ``SET_TO_VIEWER``: diff --git a/docs/source/dev_guide/index.rst b/docs/source/dev_guide/index.rst index 94b3f8813..7f0f478c3 100644 --- a/docs/source/dev_guide/index.rst +++ b/docs/source/dev_guide/index.rst @@ -8,5 +8,5 @@ Developer Guide project-standards testing adding-new-diags-sets - using-cdp-output-viewer + using-output-viewer releasing-e3sm-diags diff --git a/docs/source/dev_guide/using-cdp-output-viewer.rst b/docs/source/dev_guide/using-output-viewer.rst similarity index 73% rename from docs/source/dev_guide/using-cdp-output-viewer.rst rename to docs/source/dev_guide/using-output-viewer.rst index 2bc076161..4645f9894 100644 --- a/docs/source/dev_guide/using-cdp-output-viewer.rst +++ b/docs/source/dev_guide/using-output-viewer.rst @@ -1,30 +1,32 @@ -How to use the CDP Output Viewer -================================ +How to use the E3SM Diagnostics Output Viewer +============================================== In this guide, we will cover: -- The basic framework of the `ESGF Output Viewer `__, consisting of indices, pages, groups, rows, and columns. -- The process of using the `CDP Output Viewer `__ (``cdp_viewer``), including explanations and examples related to the relevant functions. +- The basic framework of the E3SM Diagnostics Output Viewer consisting of indices, pages, groups, rows, and columns. +- The process of `using the Output Viewer `__ (``CoreViewer``), including explanations and examples related to the relevant functions. - - CDP Output Viewer is based on the ESGF Output Viewer The Output Viewer Framework --------------------------- -The Output Viewer is a framework that allows for the visualization of -files. These files include output images from diagnostics, -scripts used to run diagnostics, etc. It also provides a way to create -an HTML file to easily view the results. +The Output Viewer is a framework that allows for the visualization of files. +The core API, ``CoreViewer``, wraps the `ESGF Output Viewer `__ +package (``output_viewer``). It simplifies creating a working viewer specifically for +the needs of E3SM Diagnostics. + +These files include output images from diagnostics, scripts used to run diagnostics, etc. +It also provides a way to create an HTML file to easily view the results. Below is an example of a webpage created with the Output Viewer: -.. figure:: _static/cdp_example.png +.. figure:: _static/viewer_example.png :alt: Example of a webpage generated by the Output Viewer. Figure 1: An example of a webpage generated by the Output Viewer. -The Output Viewer framework consists of five base components that are required for a working viewer: `indices, pages, -groups, rows, and columns.` +The Output Viewer framework consists of five base components that are required for a +working viewer: `indices, pages, groups, rows, and columns.` 1. Indices ~~~~~~~~~~ @@ -34,18 +36,18 @@ An index is what you see when you first go on the HTML page created from the Out An index is consists of one or more pages. The index name is what appears on the top left hand corner. -.. figure:: _static/cdp_index_page.png +.. figure:: _static/viewer_index_page.png :alt: Index page of the Output Viewer - Figure 2: The index is the first page one sees. All of the links below ‘Output Sets’ are individual pages. + Figure 2: The index is the first page one sees. All of the links below 'Output Sets' are individual pages. 2. Pages ~~~~~~~~ Pages are where the user can view the output. A page consists of at least one group. -.. figure:: _static/cdp_page.png - :alt: A page with two groups: ‘Results of addition’ and ‘Results of subtraction’ +.. figure:: _static/viewer_page.png + :alt: A page with two groups: 'Results of addition' and 'Results of subtraction' Figure 3: A page with two groups: 'Results of addition' and 'Results of subtraction'. @@ -84,18 +86,17 @@ To create a viewer with the Output Viewer: - A group must have at least one row - A row must have at least one column -Using CDP Output Viewer (``cdp_viewer``) ----------------------------------------- - -``cdp_viewer`` is a wrapper of the Output Viewer to simplify the API for creating a working viewer. +Using the Output Viewer +----------------------- -If `cdp_viewer` is too abstract/limited, you can instead use the Output Viewer to create your own viewer. +If the ``OutputViewer`` class is too abstract/limited, you can instead use the +ESGF Output Viewer package directly (``import output_viewer``) to create your own viewer. Please be aware that there is no official documentation for the Output Viewer, so you will need refer to the `codebase `__ directly. The code below was used to create the figures above. .. note:: - If you plan on running this example code, you’ll need a file titled ``output.png`` in your current directory. + If you plan on running this example code, you'll need a file titled ``output.png`` in your current directory. .. code:: python @@ -125,10 +126,10 @@ The code below was used to create the figures above. Viewer HTML generated at /Users/shaheen2/github/cdp/jupyter/index.html. Would you like to open in a browser? y/[n]: y -Functions of ``cdp_viewer`` +Functions of ``CoreViewer`` ~~~~~~~~~~~~~~~~~~~~~~~~~~~ -The ``cdp_viewer`` five functions: +The ``CoreViewer`` five functions: - ``add_page(name, columns)`` - Add a page to the viewer's index diff --git a/docs/source/index.rst b/docs/source/index.rst index 54297ee35..482107d68 100644 --- a/docs/source/index.rst +++ b/docs/source/index.rst @@ -51,9 +51,6 @@ that: sensing, reanalysis and in-situ datasets; - interfaces with diagnostics developed from different E3SM focus groups: atmosphere group, coupled simulation group, land group; -- interacts effectively with the PCMDI's metrics package and the ARM - diagnostics package through a unifying framework: `Community - Diagnostics Package (CDP) `_. - is flexible for user-specified diagnostics and configuration for use by other climate models. diff --git a/e3sm_diags/driver/annual_cycle_zonal_mean_driver.py b/e3sm_diags/driver/annual_cycle_zonal_mean_driver.py index 4dc468740..672282547 100755 --- a/e3sm_diags/driver/annual_cycle_zonal_mean_driver.py +++ b/e3sm_diags/driver/annual_cycle_zonal_mean_driver.py @@ -60,7 +60,7 @@ def run_diag(parameter: CoreParameter) -> CoreParameter: parameter._set_name_yrs_attrs(test_ds, ref_ds, "01") ds_test = test_ds.get_climo_dataset(var_key, "ANNUALCYCLE") - ds_ref = ref_ds.get_ref_climo_dataset(var_key, "ANNUALCYCLE", ds_test) + ds_ref = ref_ds.get_climo_dataset(var_key, "ANNUALCYCLE") # Encode the time coordinate to month integer (1 to 12). This is # necessary to avoid cases where "months since ..." units are used diff --git a/e3sm_diags/driver/cosp_histogram_driver.py b/e3sm_diags/driver/cosp_histogram_driver.py index effd4c14f..3de596487 100755 --- a/e3sm_diags/driver/cosp_histogram_driver.py +++ b/e3sm_diags/driver/cosp_histogram_driver.py @@ -53,7 +53,7 @@ def run_diag(parameter: CoreParameter) -> CoreParameter: parameter._set_name_yrs_attrs(test_ds, ref_ds, season) ds_test = test_ds.get_climo_dataset(var_key, season) - ds_ref = ref_ds.get_ref_climo_dataset(var_key, season, ds_test) + ds_ref = ref_ds.get_climo_dataset(var_key, season) for region in regions: logger.info("Selected region: {}".format(region)) diff --git a/e3sm_diags/driver/lat_lon_driver.py b/e3sm_diags/driver/lat_lon_driver.py index 05715e2c8..1d36631bd 100755 --- a/e3sm_diags/driver/lat_lon_driver.py +++ b/e3sm_diags/driver/lat_lon_driver.py @@ -1,12 +1,15 @@ from __future__ import annotations -from typing import TYPE_CHECKING, List +from typing import TYPE_CHECKING, List, Tuple import xarray as xr +from e3sm_diags.driver.utils.climo_xr import ClimoFreq from e3sm_diags.driver.utils.dataset_xr import Dataset from e3sm_diags.driver.utils.io import _save_data_metrics_and_plots from e3sm_diags.driver.utils.regrid import ( + _apply_land_sea_mask, + _subset_on_region, get_z_axis, has_z_axis, regrid_z_axis_to_plevs, @@ -22,6 +25,12 @@ if TYPE_CHECKING: from e3sm_diags.parameter.core_parameter import CoreParameter +# The default value for metrics if it is not calculated. This value was +# preserved from the legacy CDAT codebase because the viewer expects this +# value for metrics that aren't calculated. +# TODO: Update `lat_lon_viewer.py` to handle missing metrics with None value. +METRICS_DEFAULT_VALUE = 999.999 + def run_diag(parameter: CoreParameter) -> CoreParameter: """Get metrics for the lat_lon diagnostic set. @@ -63,51 +72,219 @@ def run_diag(parameter: CoreParameter) -> CoreParameter: for season in seasons: parameter._set_name_yrs_attrs(test_ds, ref_ds, season) - # The land sea mask dataset that is used for masking if the region - # is either land or sea. This variable is instantiated here to get - # it once per season in case it needs to be reused. + ds_test = test_ds.get_climo_dataset(var_key, season) + ds_ref = _get_ref_climo_dataset(ref_ds, var_key, season) ds_land_sea_mask: xr.Dataset = test_ds._get_land_sea_mask(season) - ds_test = test_ds.get_climo_dataset(var_key, season) - ds_ref = ref_ds.get_ref_climo_dataset(var_key, season, ds_test) - - # Store the variable's DataArray objects for reuse. - dv_test = ds_test[var_key] - dv_ref = ds_ref[var_key] - - is_vars_3d = has_z_axis(dv_test) and has_z_axis(dv_ref) - is_dims_diff = has_z_axis(dv_test) != has_z_axis(dv_ref) - - if is_dims_diff: - raise RuntimeError( - "Dimensions of the two variables are different. Aborting." - ) - elif not is_vars_3d: - _run_diags_2d( - parameter, - ds_test, - ds_ref, - ds_land_sea_mask, - season, - regions, - var_key, - ref_name, - ) - elif is_vars_3d: - _run_diags_3d( - parameter, - ds_test, - ds_ref, - ds_land_sea_mask, - season, - regions, - var_key, - ref_name, - ) + if ds_ref is None: + is_vars_3d = has_z_axis(ds_test[var_key]) + + if not is_vars_3d: + _run_diags_2d_model_only( + parameter, + ds_test, + ds_land_sea_mask, + season, + regions, + var_key, + ref_name, + ) + else: + _run_diags_3d_model_only( + parameter, + ds_test, + ds_land_sea_mask, + season, + regions, + var_key, + ref_name, + ) + else: + is_vars_3d, is_dims_diff = _check_var_dims(ds_test, ds_ref, var_key) + + if is_dims_diff: + raise RuntimeError( + "Dimensions of the two variables are different. Aborting." + ) + elif not is_vars_3d: + _run_diags_2d( + parameter, + ds_test, + ds_ref, + ds_land_sea_mask, + season, + regions, + var_key, + ref_name, + ) + elif is_vars_3d: + _run_diags_3d( + parameter, + ds_test, + ds_ref, + ds_land_sea_mask, + season, + regions, + var_key, + ref_name, + ) return parameter +def _run_diags_2d_model_only( + parameter: CoreParameter, + ds_test: xr.Dataset, + ds_land_sea_mask: xr.Dataset, + season: str, + regions: List[str], + var_key: str, + ref_name: str, +): + """Run a model-only diagnostics on a 2D variable. + + This function gets the variable's metrics by region, then saves the + metrics, metric plots, and data (optional, `CoreParameter.save_netcdf`). + + Parameters + ---------- + parameter : CoreParameter + The parameter object. + ds_test : xr.Dataset + The dataset containing the test variable. + ds_land_sea_mask : xr.Dataset + The land sea mask dataset, which is only used for masking if the region + is "land" or "ocean". + season : str + The season. + regions : List[str] + The list of regions. + var_key : str + The key of the variable. + ref_name : str + The reference name. + """ + for region in regions: + ds_test_region = _process_test_dataset( + parameter, ds_test, ds_land_sea_mask, var_key, region + ) + + metrics_dict = _create_metrics_dict( + var_key, + ds_test_region, + None, + None, + None, + None, + ) + + parameter._set_param_output_attrs(var_key, season, region, ref_name, ilev=None) + _save_data_metrics_and_plots( + parameter, + plot_func, + var_key, + ds_test_region, + None, + None, + metrics_dict, + ) + + +def _run_diags_3d_model_only( + parameter: CoreParameter, + ds_test: xr.Dataset, + ds_land_sea_mask: xr.Dataset, + season: str, + regions: List[str], + var_key: str, + ref_name: str, +): + """Run a model-only diagnostics on a 3D variable. + + This function gets the variable's metrics by region, then saves the + metrics, metric plots, and data (optional, `CoreParameter.save_netcdf`). + + Parameters + ---------- + parameter : CoreParameter + The parameter object. + ds_test : xr.Dataset + The dataset containing the test variable. + ds_land_sea_mask : xr.Dataset + The land sea mask dataset, which is only used for masking if the region + is "land" or "ocean". + season : str + The season. + regions : List[str] + The list of regions. + var_key : str + The key of the variable. + ref_name : str + The reference name. + """ + plev = parameter.plevs + logger.info("Selected pressure level(s): {}".format(plev)) + + ds_test_rg = regrid_z_axis_to_plevs(ds_test, var_key, parameter.plevs) + + for ilev in plev: + z_axis_key = get_z_axis(ds_test_rg[var_key]).name + ds_test_ilev = ds_test_rg.sel({z_axis_key: ilev}) + + for region in regions: + ds_test_region = _process_test_dataset( + parameter, ds_test_ilev, ds_land_sea_mask, var_key, region + ) + metrics_dict = _create_metrics_dict( + var_key, + ds_test_region, + None, + None, + None, + None, + ) + parameter._set_param_output_attrs(var_key, season, region, ref_name, ilev) + _save_data_metrics_and_plots( + parameter, + plot_func, + var_key, + ds_test_region, + None, + None, + metrics_dict, + ) + + +def _check_var_dims( + ds_test: xr.Dataset, ds_ref: xr.Dataset, var_key: str +) -> Tuple[bool, bool]: + """Check if the variables have 3D dimensions and if their dimensions are different. + + Parameters + ---------- + ds_test : xr.Dataset + The test dataset. + ds_ref : xr.Dataset + The reference dataset. + var_key : str + The key of the variable. + + Returns + ------- + Tuple[bool, bool] + A tuple containing two boolean values: + - is_vars_3d: True if both variables have 3D dimensions, False otherwise. + - is_dims_diff: True if the dimensions of the two variables are different, False otherwise. + """ + dv_test = ds_test[var_key] + dv_ref = ds_ref[var_key] + + is_vars_3d = has_z_axis(dv_test) and has_z_axis(dv_ref) + is_dims_diff = has_z_axis(dv_test) != has_z_axis(dv_ref) + + return is_vars_3d, is_dims_diff + + def _run_diags_2d( parameter: CoreParameter, ds_test: xr.Dataset, @@ -130,8 +307,7 @@ def _run_diags_2d( ds_test : xr.Dataset The dataset containing the test variable. ds_ref : xr.Dataset - The dataset containing the ref variable. If this is a model-only run - then it will be the same dataset as ``ds_test``. + The dataset containing the ref variable. ds_land_sea_mask : xr.Dataset The land sea mask dataset, which is only used for masking if the region is "land" or "ocean". @@ -203,8 +379,7 @@ def _run_diags_3d( ds_test : xr.Dataset The dataset containing the test variable. ds_ref : xr.Dataset - The dataset containing the ref variable. If this is a model-only run - then it will be the same dataset as ``ds_test``. + The dataset containing the ref variable. ds_land_sea_mask : xr.Dataset The land sea mask dataset, which is only used for masking if the region is "land" or "ocean". @@ -265,10 +440,99 @@ def _run_diags_3d( ) +def _get_ref_climo_dataset( + dataset: Dataset, var_key: str, season: ClimoFreq +) -> xr.Dataset | None: + """Get the reference climatology dataset for the variable and season. + + If the reference climatatology does not exist or could not be found, it + will be considered a model-only run and return `None`. + + Parameters + ---------- + dataset : Dataset + The dataset object. + var_key : str + The key of the variable. + season : CLIMO_FREQ + The climatology frequency. + + Returns + ------- + xr.Dataset | None + The reference climatology if it exists or None if it does not. + None indicates a model-only run. + + Raises + ------ + RuntimeError + If `self.data_type` is not "ref". + """ + if dataset.data_type == "ref": + try: + ds_ref = dataset.get_climo_dataset(var_key, season) + except (RuntimeError, IOError): + ds_ref = None + + logger.info("Cannot process reference data, analyzing test data only.") + else: + raise RuntimeError( + "`Dataset._get_ref_dataset` only works with " + f"`parameter.data_type == 'ref'`, not {dataset.data_type}." + ) + + return ds_ref + + +def _process_test_dataset( + parameter: CoreParameter, + ds_test: xr.Dataset, + ds_land_sea_mask: xr.Dataset, + var_key: str, + region: str, +) -> xr.Dataset: + """Process the test dataset for the given region. + + Parameters + ---------- + parameter : CoreParameter + The core parameter object. + ds_test : xr.Dataset + The test dataset. + ds_land_sea_mask : xr.Dataset + The dataset for land-sea mask. + var_key : str + The variable key. + region : str + The region to process. + + Returns: + -------- + xr.Dataset + The processed test dataset for the region. + """ + ds_test_region = ds_test.copy() + + if "land" in region or "ocean" in region: + ds_test_region = _apply_land_sea_mask( + ds_test, + ds_land_sea_mask, + var_key, + region, # type: ignore + parameter.regrid_tool, + parameter.regrid_method, + ) + + if "global" not in region: + ds_test_region = _subset_on_region(ds_test_region, var_key, region) + + return ds_test_region + + def _create_metrics_dict( var_key: str, ds_test: xr.Dataset, - ds_test_regrid: xr.Dataset, + ds_test_regrid: xr.Dataset | None, ds_ref: xr.Dataset | None, ds_ref_regrid: xr.Dataset | None, ds_diff: xr.Dataset | None, @@ -285,9 +549,9 @@ def _create_metrics_dict( The variable key. ds_test : xr.Dataset The test dataset. - ds_test_regrid : xr.Dataset - The regridded test Dataset. If there is no reference dataset, then this - object is the same as ``ds_test``. + ds_test_regrid : xr.Dataset | None + The regridded test Dataset. This arg will be None if a model only + run is performed. ds_ref : xr.Dataset | None The optional reference dataset. This arg will be None if a model only run is performed. @@ -307,44 +571,18 @@ def _create_metrics_dict( """ # Extract these variables for reuse. var_test = ds_test[var_key] - var_test_regrid = ds_test_regrid[var_key] # xarray.DataArray.min() and max() returns a `np.ndarray` with a single # int/float element. Using `.item()` returns that single element. - metrics_dict = { + metrics_dict: MetricsDict = { "test": { "min": var_test.min().item(), "max": var_test.max().item(), - "mean": spatial_avg(ds_test, var_key), - }, - "test_regrid": { - "min": var_test_regrid.min().item(), - "max": var_test_regrid.max().item(), - "mean": spatial_avg(ds_test_regrid, var_key), - "std": std(ds_test_regrid, var_key), - }, - "ref": { - "min": None, - "max": None, - "mean": None, - }, - "ref_regrid": { - "min": None, - "max": None, - "mean": None, - "std": None, - }, - "misc": { - "rmse": None, - "corr": None, - }, - "diff": { - "min": None, - "max": None, - "mean": None, + "mean": spatial_avg(ds_test, var_key), # type: ignore }, "unit": ds_test[var_key].attrs["units"], } + metrics_dict = _set_default_metric_values(metrics_dict) if ds_ref is not None: var_ref = ds_ref[var_key] @@ -352,16 +590,23 @@ def _create_metrics_dict( metrics_dict["ref"] = { "min": var_ref.min().item(), "max": var_ref.max().item(), - "mean": spatial_avg(ds_ref, var_key), + "mean": spatial_avg(ds_ref, var_key), # type: ignore } - if ds_ref_regrid is not None: - var_ref_regrid = ds_ref_regrid[var_key] + if ds_test_regrid is not None and ds_ref_regrid is not None: + var_test_regrid = ds_test_regrid[var_key] + metrics_dict["test_regrid"] = { + "min": var_test_regrid.min().item(), + "max": var_test_regrid.max().item(), + "mean": spatial_avg(ds_test_regrid, var_key), # type: ignore + "std": std(ds_test_regrid, var_key), + } + var_ref_regrid = ds_ref_regrid[var_key] metrics_dict["ref_regrid"] = { "min": var_ref_regrid.min().item(), "max": var_ref_regrid.max().item(), - "mean": spatial_avg(ds_ref_regrid, var_key), + "mean": spatial_avg(ds_ref_regrid, var_key), # type: ignore "std": std(ds_ref_regrid, var_key), } @@ -376,7 +621,35 @@ def _create_metrics_dict( metrics_dict["diff"] = { "min": var_diff.min().item(), "max": var_diff.max().item(), - "mean": spatial_avg(ds_diff, var_key), + "mean": spatial_avg(ds_diff, var_key), # type: ignore + } + + return metrics_dict + + +def _set_default_metric_values(metrics_dict: MetricsDict) -> MetricsDict: + """Set the default values for the metrics in case they are not calculated. + + Parameters + ---------- + metrics_dict : MetricsDict + The dictionary containing the metrics. + + Returns + ------- + MetricsDict + The dictionary containing the metrics with default values. + """ + var_keys = ["test_regrid", "ref", "ref_regrid", "diff"] + metric_keys = ["min", "max", "mean", "std"] + for var_key in var_keys: + metrics_dict[var_key] = { + metric_key: METRICS_DEFAULT_VALUE for metric_key in metric_keys } + metrics_dict["misc"] = { + "rmse": METRICS_DEFAULT_VALUE, + "corr": METRICS_DEFAULT_VALUE, + } + return metrics_dict diff --git a/e3sm_diags/driver/meridional_mean_2d_driver.py b/e3sm_diags/driver/meridional_mean_2d_driver.py index e4cbec5b8..d7447db60 100644 --- a/e3sm_diags/driver/meridional_mean_2d_driver.py +++ b/e3sm_diags/driver/meridional_mean_2d_driver.py @@ -64,7 +64,7 @@ def run_diag(parameter: MeridionalMean2dParameter) -> MeridionalMean2dParameter: parameter._set_name_yrs_attrs(test_ds, ref_ds, season) ds_test = test_ds.get_climo_dataset(var_key, season) - ds_ref = ref_ds.get_ref_climo_dataset(var_key, season, ds_test) + ds_ref = ref_ds.get_climo_dataset(var_key, season) dv_test = ds_test[var_key] dv_ref = ds_ref[var_key] diff --git a/e3sm_diags/driver/polar_driver.py b/e3sm_diags/driver/polar_driver.py index c35fc03c4..453280d71 100755 --- a/e3sm_diags/driver/polar_driver.py +++ b/e3sm_diags/driver/polar_driver.py @@ -43,7 +43,7 @@ def run_diag(parameter: CoreParameter) -> CoreParameter: ds_land_sea_mask: xr.Dataset = test_ds._get_land_sea_mask(season) ds_test = test_ds.get_climo_dataset(var_key, season) - ds_ref = ref_ds.get_ref_climo_dataset(var_key, season, ds_test) + ds_ref = ref_ds.get_climo_dataset(var_key, season) # Store the variable's DataArray objects for reuse. dv_test = ds_test[var_key] diff --git a/e3sm_diags/driver/utils/dataset_xr.py b/e3sm_diags/driver/utils/dataset_xr.py index 0850f1fb2..98ce68c43 100644 --- a/e3sm_diags/driver/utils/dataset_xr.py +++ b/e3sm_diags/driver/utils/dataset_xr.py @@ -315,59 +315,6 @@ def _get_global_attr_from_climo_dataset( # -------------------------------------------------------------------------- # Climatology related methods # -------------------------------------------------------------------------- - def get_ref_climo_dataset( - self, var_key: str, season: ClimoFreq, ds_test: xr.Dataset - ): - """Get the reference climatology dataset for the variable and season. - - If the reference climatatology does not exist or could not be found, it - will be considered a model-only run. For this case the test dataset - is returned as a default value and subsequent metrics calculations will - only be performed on the original test dataset. - - Parameters - ---------- - var_key : str - The key of the variable. - season : CLIMO_FREQ - The climatology frequency. - ds_test : xr.Dataset - The test dataset, which is returned if the reference climatology - does not exist or could not be found. - - Returns - ------- - xr.Dataset - The reference climatology if it exists or a copy of the test dataset - if it does not exist. - - Raises - ------ - RuntimeError - If `self.data_type` is not "ref". - """ - # TODO: This logic was carried over from legacy implementation. It - # can probably be improved on by setting `ds_ref = None` and not - # performing unnecessary operations on `ds_ref` for model-only runs, - # since it is the same as `ds_test`. In addition, returning ds_test - # makes it difficult for debugging. - if self.data_type == "ref": - try: - ds_ref = self.get_climo_dataset(var_key, season) - self.model_only = False - except (RuntimeError, IOError): - ds_ref = ds_test.copy() - self.model_only = True - - logger.info("Cannot process reference data, analyzing test data only.") - else: - raise RuntimeError( - "`Dataset._get_ref_dataset` only works with " - f"`self.data_type == 'ref'`, not {self.data_type}." - ) - - return ds_ref - def get_climo_dataset(self, var: str, season: ClimoFreq) -> xr.Dataset: """Get the dataset containing the climatology variable. @@ -815,11 +762,16 @@ def _subset_vars_and_load(self, ds: xr.Dataset) -> xr.Dataset: ds = ds.drop_dims(["slat", "slon"]) all_vars_keys = list(ds.data_vars.keys()) + hybrid_var_keys = set(list(sum(HYBRID_SIGMA_KEYS.values(), ()))) + misc_vars = ["area"] keep_vars = [ var for var in all_vars_keys - if "bnd" in var or "bounds" in var or var in hybrid_var_keys + if "bnd" in var + or "bounds" in var + or var in hybrid_var_keys + or var in misc_vars ] ds = ds[[self.var] + keep_vars] diff --git a/e3sm_diags/driver/zonal_mean_2d_driver.py b/e3sm_diags/driver/zonal_mean_2d_driver.py index 90f2a34e7..c9f66f2a6 100755 --- a/e3sm_diags/driver/zonal_mean_2d_driver.py +++ b/e3sm_diags/driver/zonal_mean_2d_driver.py @@ -46,7 +46,7 @@ def run_diag( parameter._set_name_yrs_attrs(test_ds, ref_ds, season) ds_test = test_ds.get_climo_dataset(var_key, season) - ds_ref = ref_ds.get_ref_climo_dataset(var_key, season, ds_test) + ds_ref = ref_ds.get_climo_dataset(var_key, season) # Store the variable's DataArray objects for reuse. dv_test = ds_test[var_key] diff --git a/e3sm_diags/driver/zonal_mean_xy_driver.py b/e3sm_diags/driver/zonal_mean_xy_driver.py index df7b93845..7baebf2ec 100755 --- a/e3sm_diags/driver/zonal_mean_xy_driver.py +++ b/e3sm_diags/driver/zonal_mean_xy_driver.py @@ -72,8 +72,7 @@ def run_diag(parameter: CoreParameter) -> CoreParameter: parameter._set_name_yrs_attrs(test_ds, ref_ds, season) ds_test = test_ds.get_climo_dataset(var_key, season) - # TODO consider to refactor the behavior of get_ref_climo_dataset - ds_ref = ref_ds.get_ref_climo_dataset(var_key, season, ds_test) + ds_ref = ref_ds.get_climo_dataset(var_key, season) # Store the variable's DataArray objects for reuse. dv_test = ds_test[var_key] diff --git a/examples/run_v2_9_0_all_sets_E3SM_machines.py b/examples/run_all_sets_E3SM_machines.py similarity index 100% rename from examples/run_v2_9_0_all_sets_E3SM_machines.py rename to examples/run_all_sets_E3SM_machines.py diff --git a/examples/run_v2_3_0_all_sets.py b/examples/run_v2_3_0_all_sets.py deleted file mode 100644 index 4832b2122..000000000 --- a/examples/run_v2_3_0_all_sets.py +++ /dev/null @@ -1,108 +0,0 @@ -import os - -from e3sm_diags.parameter.area_mean_time_series_parameter import ( - AreaMeanTimeSeriesParameter, -) -from e3sm_diags.parameter.core_parameter import CoreParameter -from e3sm_diags.parameter.diurnal_cycle_parameter import DiurnalCycleParameter -from e3sm_diags.parameter.enso_diags_parameter import EnsoDiagsParameter -from e3sm_diags.parameter.qbo_parameter import QboParameter -from e3sm_diags.parameter.streamflow_parameter import StreamflowParameter -from e3sm_diags.run import runner - -# Define data paths for obs -input_prefix = "/global/cfs/cdirs/e3sm/e3sm_diags" -obs_climo = "/global/cfs/cdirs/e3sm/e3sm_diags/obs_for_e3sm_diags/climatology" -obs_ts = "/global/cfs/cdirs/e3sm/e3sm_diags/obs_for_e3sm_diags/time-series" - -# Define data paths for test model -test_prefix = "/global/cfs/cdirs/e3sm/zhang40/postprocessing_for_e3sm_diags" -case = "20180215.DECKv1b_H1.ne30_oEC.edison" -casename = case.split(".")[1] + "." + case.split(".")[2] - -climo_path = os.path.join(test_prefix, "climo/" + case + "/1980-2014/rgr") -ts_path = os.path.join(test_prefix, "monthly_ts/" + case + "/1980-2014/rgr") -dc_climo_path = os.path.join(test_prefix, "diurnal_climo/" + case + "/1980-2014/rgr") - -# Define parameters for core sets: 'lat_lon','zonal_mean_xy', 'zonal_mean_2d', 'polar', 'cosp_histogram', 'meridional_mean_2d' -param = CoreParameter() -param.reference_data_path = obs_climo -param.test_data_path = climo_path -param.test_name = case -param.test_short_name = casename - -# Define results path. -prefix = "/global/cfs/cdirs/e3sm/www/zhang40/tutorials/" -param.results_dir = os.path.join(prefix, "run_v230_allsets") - -param.multiprocessing = True -param.num_workers = 30 -param.seasons = ["ANN", "JJA"] - -# Additional parameters: -# Short version of test model name being printed as plot titles -# param.short_test_name = 'beta0.FC5COSP.ne30' -# Specify run_type. Defualt is 'model_vs_obs' -# param.run_type = 'model_vs_model' -# Specify title of the 3rd panel plot. Defualt is 'Model - Observation' -# param.diff_title = 'Difference' -# Save subplots as pdf files. -# param.output_format_subplot = ['pdf'] -# Save netcdf files being plotted. -# param.save_netcdf = True - - -# Set specific parameters for new sets -qbo_param = QboParameter() -qbo_param.reference_data_path = obs_ts -qbo_param.test_data_path = ts_path -qbo_param.test_name = casename -qbo_param.start_yr = "1980" -qbo_param.end_yr = "2014" - - -dc_param = DiurnalCycleParameter() -dc_param.reference_data_path = obs_climo -dc_param.test_data_path = dc_climo_path -dc_param.test_name = case -dc_param.short_test_name = casename -# Plotting diurnal cycle amplitude on different scales. Default is True -dc_param.normalize_test_amp = False - -enso_param = EnsoDiagsParameter() -enso_param.reference_data_path = obs_ts -enso_param.test_data_path = ts_path -enso_param.test_name = casename -enso_param.start_yr = "1980" -enso_param.end_yr = "2014" - -ts_param = AreaMeanTimeSeriesParameter() -ts_param.reference_data_path = obs_ts -ts_param.test_data_path = ts_path -ts_param.test_name = casename -ts_param.start_yr = "1980" -ts_param.end_yr = "2014" - -streamflow_param = StreamflowParameter() -streamflow_param.reference_data_path = obs_ts -streamflow_param.test_data_path = ts_path -streamflow_param.test_start_yr = "1980" -streamflow_param.test_end_yr = "2014" -# Streamflow gauge station data range from year 1986 to 1995 -streamflow_param.ref_start_yr = "1986" -streamflow_param.ref_end_yr = "1995" -# -runner.sets_to_run = [ - "lat_lon", - "zonal_mean_xy", - "zonal_mean_2d", - "polar", - "cosp_histogram", - "meridional_mean_2d", - "enso_diags", - "qbo", - "area_mean_time_series", - "diurnal_cycle", - "streamflow", -] -runner.run_diags([param, enso_param, qbo_param, ts_param, dc_param, streamflow_param]) diff --git a/examples/run_v2_3_0_all_sets_E3SM_machines.py b/examples/run_v2_3_0_all_sets_E3SM_machines.py deleted file mode 100644 index 6c20d4798..000000000 --- a/examples/run_v2_3_0_all_sets_E3SM_machines.py +++ /dev/null @@ -1,200 +0,0 @@ -import os - -from e3sm_diags.parameter.area_mean_time_series_parameter import ( - AreaMeanTimeSeriesParameter, -) -from e3sm_diags.parameter.core_parameter import CoreParameter -from e3sm_diags.parameter.diurnal_cycle_parameter import DiurnalCycleParameter -from e3sm_diags.parameter.enso_diags_parameter import EnsoDiagsParameter -from e3sm_diags.parameter.qbo_parameter import QboParameter -from e3sm_diags.parameter.streamflow_parameter import StreamflowParameter -from e3sm_diags.run import runner - - -def run_compy(html_prefix): - # Run the following first: - # srun --pty --nodes=1 --time=01:00:00 /bin/bash - # source /share/apps/E3SM/conda_envs/load_latest_e3sm_unified_compy.sh - ref_data_prefix = "/compyfs/e3sm_diags_data/obs_for_e3sm_diags" - test_data_prefix = "/compyfs/e3sm_diags_data/test_model_data_for_acme_diags" - - test_data_prefix2 = "/compyfs/fors729" - - d = dict() - - d["obs_climo"] = os.path.join(ref_data_prefix, "climatology/") - d["test_climo"] = os.path.join(test_data_prefix, "climatology/") - - d["obs_ts"] = os.path.join(ref_data_prefix, "time-series/") - d["test_ts"] = os.path.join(test_data_prefix, "time-series/E3SM_v1/") - - d["dc_obs_climo"] = d["obs_climo"] - d["dc_test_climo"] = os.path.join( - test_data_prefix, "climatology/diurnal_cycle_climatology/" - ) - - d["streamflow_obs_ts"] = d["obs_ts"] - d["streamflow_test_ts"] = os.path.join( - test_data_prefix2, "time-series/streamflow_ts_postprocessed/" - ) - - return run_all_sets(html_prefix, d) - - -def run_lcrc(html_prefix): - # Run the following first: - # srun --pty --nodes=1 --time=01:00:00 /bin/bash - # source /lcrc/soft/climate/e3sm-unified/load_latest_e3sm_unified_chrysalis.sh - # Or: source /lcrc/soft/climate/e3sm-unified/load_latest_e3sm_unified_anvil.sh - ref_data_prefix = "/lcrc/group/e3sm/public_html/diagnostics/observations/Atm" - test_data_prefix = "/lcrc/group/e3sm/public_html/e3sm_diags_test_data" - - ref_data_prefix2 = ( - "/lcrc/group/e3sm/public_html/e3sm_diags_test_data/unit_test_complete_run/obs" - ) - test_data_prefix2 = ( - "/lcrc/group/e3sm/public_html/e3sm_diags_test_data/unit_test_complete_run/test" - ) - - d = dict() - - d["obs_climo"] = os.path.join(ref_data_prefix, "climatology/") - d["test_climo"] = os.path.join(test_data_prefix, "climatology/") - - d["obs_ts"] = os.path.join(ref_data_prefix, "time-series/") - d["test_ts"] = os.path.join(test_data_prefix, "time-series/E3SM_v1/") - - d["dc_obs_climo"] = os.path.join(ref_data_prefix2, "climatology/") - d["dc_test_climo"] = os.path.join( - test_data_prefix2, "climatology/dc_climo_postprocessed/" - ) - - d["streamflow_obs_ts"] = os.path.join(ref_data_prefix2, "time-series/") - d["streamflow_test_ts"] = os.path.join( - test_data_prefix2, "time-series/streamflow_ts_postprocessed/" - ) - - return run_all_sets(html_prefix, d) - - -def run_nersc(html_prefix): - # Run the following first: - # salloc --nodes=1 --partition=regular --time=01:00:00 -C haswell - # source /global/cfs/cdirs/e3sm/software/anaconda_envs/load_latest_e3sm_unified_cori-haswell.sh - ref_data_prefix = "/global/cfs/cdirs/e3sm/e3sm_diags/obs_for_e3sm_diags" - test_data_prefix = ( - "/global/cfs/cdirs/e3sm/e3sm_diags/test_model_data_for_acme_diags" - ) - - test_data_prefix2 = "/global/cfs/cdirs/e3sm/zhang40/postprocessing_for_e3sm_diags" - - d = dict() - - d["obs_climo"] = os.path.join(ref_data_prefix, "climatology/") - d["test_climo"] = os.path.join(test_data_prefix, "climatology/") - - d["obs_ts"] = os.path.join(ref_data_prefix, "time-series/") - d["test_ts"] = os.path.join(test_data_prefix, "time-series/E3SM_v1/") - - d["dc_obs_climo"] = d["obs_climo"] - d["dc_test_climo"] = os.path.join( - test_data_prefix2, - "diurnal_climo/20180215.DECKv1b_H1.ne30_oEC.edison/1980-2014/rgr/", - ) - - d["streamflow_obs_ts"] = d["obs_ts"] - d["streamflow_test_ts"] = os.path.join( - test_data_prefix2, - "monthly_ts/20180215.DECKv1b_H1.ne30_oEC.edison/1980-2014/rgr/", - ) - - return run_all_sets(html_prefix, d) - - -def run_all_sets(html_prefix, d): - param = CoreParameter() - - param.reference_data_path = d["obs_climo"] - param.test_data_path = d["test_climo"] - param.test_name = "20161118.beta0.FC5COSP.ne30_ne30.edison" - param.seasons = [ - "ANN", - "JJA", - ] # Default setting: seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] - - param.results_dir = os.path.join(html_prefix, "v2_3_0_all_sets") - param.multiprocessing = True - param.num_workers = 30 - - # Set specific parameters for new sets - enso_param = EnsoDiagsParameter() - enso_param.reference_data_path = d["obs_ts"] - enso_param.test_data_path = d["test_ts"] - enso_param.test_name = "e3sm_v1" - enso_param.start_yr = "1990" - enso_param.end_yr = "1999" - - qbo_param = QboParameter() - qbo_param.reference_data_path = d["obs_ts"] - qbo_param.test_data_path = d["test_ts"] - qbo_param.test_name = "e3sm_v1" - qbo_param.start_yr = "1990" - qbo_param.end_yr = "1999" - - ts_param = AreaMeanTimeSeriesParameter() - ts_param.reference_data_path = d["obs_ts"] - ts_param.test_data_path = d["test_ts"] - ts_param.test_name = "e3sm_v1" - ts_param.start_yr = "1990" - ts_param.end_yr = "1999" - - dc_param = DiurnalCycleParameter() - dc_param.reference_data_path = d["dc_obs_climo"] - dc_param.test_data_path = d["dc_test_climo"] - dc_param.test_name = "20180215.DECKv1b_H1.ne30_oEC.edison" - dc_param.short_test_name = "DECKv1b_H1.ne30_oEC" - # Plotting diurnal cycle amplitude on different scales. Default is True - dc_param.normalize_test_amp = False - - streamflow_param = StreamflowParameter() - streamflow_param.reference_data_path = d["streamflow_obs_ts"] - streamflow_param.test_data_path = d["streamflow_test_ts"] - streamflow_param.test_name = "20180215.DECKv1b_H1.ne30_oEC.edison" - streamflow_param.test_start_yr = "1980" - streamflow_param.test_end_yr = "2014" - # Streamflow gauge station data range from year 1986 to 1995 - streamflow_param.ref_start_yr = "1986" - streamflow_param.ref_end_yr = "1995" - - runner.sets_to_run = [ - "lat_lon", - "zonal_mean_xy", - "zonal_mean_2d", - "polar", - "cosp_histogram", - "meridional_mean_2d", - "enso_diags", - "qbo", - "area_mean_time_series", - "diurnal_cycle", - "streamflow", - ] - runner.run_diags( - [param, enso_param, qbo_param, ts_param, dc_param, streamflow_param] - ) - - return param.results_dir - - -if __name__ == "__main__": - # Choose the `run` function based on what machine you're on. - # Change - - # Results will be at https://compy-dtn.pnl.gov//v2_3_0_all_sets/viewer/ - # run_compy('/compyfs/www//') - - # Results will be at https://web.lcrc.anl.gov/public/e3sm/diagnostic_output//v2_3_0_all_sets/viewer/ - # run_lcrc('/lcrc/group/e3sm/public_html/diagnostic_output//') - - # Results will be at https://portal.nersc.gov/project/e3sm//v2_3_0_all_sets/viewer/ - run_nersc("/global/cfs/cdirs/e3sm/www//") diff --git a/examples/run_v2_4_0_all_sets_E3SM_machines.py b/examples/run_v2_4_0_all_sets_E3SM_machines.py deleted file mode 100644 index 407d5b086..000000000 --- a/examples/run_v2_4_0_all_sets_E3SM_machines.py +++ /dev/null @@ -1,222 +0,0 @@ -import os - -from e3sm_diags.parameter.area_mean_time_series_parameter import ( - AreaMeanTimeSeriesParameter, -) -from e3sm_diags.parameter.arm_diags_parameter import ARMDiagsParameter -from e3sm_diags.parameter.core_parameter import CoreParameter -from e3sm_diags.parameter.diurnal_cycle_parameter import DiurnalCycleParameter -from e3sm_diags.parameter.enso_diags_parameter import EnsoDiagsParameter -from e3sm_diags.parameter.qbo_parameter import QboParameter -from e3sm_diags.parameter.streamflow_parameter import StreamflowParameter -from e3sm_diags.run import runner - - -def run_compy(html_prefix): - # Run the following first: - # srun --pty --nodes=1 --time=01:00:00 /bin/bash - # source /share/apps/E3SM/conda_envs/load_latest_e3sm_unified_compy.sh - ref_data_prefix = "/compyfs/e3sm_diags_data/obs_for_e3sm_diags" - test_data_prefix = "/compyfs/e3sm_diags_data/test_model_data_for_acme_diags" - - test_data_prefix2 = "/compyfs/fors729" - - d = dict() - - d["obs_climo"] = os.path.join(ref_data_prefix, "climatology/") - d["test_climo"] = os.path.join(test_data_prefix, "climatology/") - - d["obs_ts"] = os.path.join(ref_data_prefix, "time-series/") - d["test_ts"] = os.path.join(test_data_prefix, "time-series/E3SM_v1/") - - d["dc_obs_climo"] = d["obs_climo"] - d["dc_test_climo"] = os.path.join( - test_data_prefix, "climatology/diurnal_cycle_climatology/" - ) - - d["streamflow_obs_ts"] = d["obs_ts"] - d["streamflow_test_ts"] = os.path.join( - test_data_prefix2, "time-series/streamflow_ts_postprocessed/" - ) - - d["arm_obs"] = os.path.join(ref_data_prefix, "arm-diags-data/") - d["arm_test"] = os.path.join(test_data_prefix2, "20210122.F2010.armsites/") - - return run_all_sets(html_prefix, d) - - -def run_lcrc(html_prefix): - # Run the following first: - # srun --pty --nodes=1 --time=01:00:00 /bin/bash - # source /lcrc/soft/climate/e3sm-unified/load_latest_e3sm_unified_chrysalis.sh - # Or: source /lcrc/soft/climate/e3sm-unified/load_latest_e3sm_unified_anvil.sh - ref_data_prefix = "/lcrc/group/e3sm/public_html/diagnostics/observations/Atm" - test_data_prefix = "/lcrc/group/e3sm/public_html/e3sm_diags_test_data" - - ref_data_prefix2 = ( - "/lcrc/group/e3sm/public_html/e3sm_diags_test_data/unit_test_complete_run/obs" - ) - test_data_prefix2 = ( - "/lcrc/group/e3sm/public_html/e3sm_diags_test_data/unit_test_complete_run/test" - ) - - d = dict() - - d["obs_climo"] = os.path.join(ref_data_prefix, "climatology/") - d["test_climo"] = os.path.join(test_data_prefix, "climatology/") - - d["obs_ts"] = os.path.join(ref_data_prefix, "time-series/") - d["test_ts"] = os.path.join(test_data_prefix, "time-series/E3SM_v1/") - - d["dc_obs_climo"] = os.path.join(ref_data_prefix2, "climatology/") - d["dc_test_climo"] = os.path.join( - test_data_prefix2, "climatology/dc_climo_postprocessed/" - ) - - d["streamflow_obs_ts"] = os.path.join(ref_data_prefix2, "time-series/") - d["streamflow_test_ts"] = os.path.join( - test_data_prefix2, "time-series/streamflow_ts_postprocessed/" - ) - - d["arm_obs"] = os.path.join(ref_data_prefix, "arm-diags-data/") - d["arm_test"] = os.path.join(test_data_prefix, "20210122.F2010.armsites/") - - return run_all_sets(html_prefix, d) - - -def run_nersc(html_prefix): - # Run the following first: - # salloc --nodes=1 --partition=regular --time=01:00:00 -C haswell - # source /global/cfs/cdirs/e3sm/software/anaconda_envs/load_latest_e3sm_unified_cori-haswell.sh - ref_data_prefix = "/global/cfs/cdirs/e3sm/e3sm_diags/obs_for_e3sm_diags" - test_data_prefix = ( - "/global/cfs/cdirs/e3sm/e3sm_diags/test_model_data_for_acme_diags" - ) - - test_data_prefix2 = "/global/cfs/cdirs/e3sm/zhang40/postprocessing_for_e3sm_diags" - - d = dict() - - d["obs_climo"] = os.path.join(ref_data_prefix, "climatology/") - d["test_climo"] = os.path.join(test_data_prefix, "climatology/") - - d["obs_ts"] = os.path.join(ref_data_prefix, "time-series/") - d["test_ts"] = os.path.join(test_data_prefix, "time-series/E3SM_v1/") - - d["dc_obs_climo"] = d["obs_climo"] - d["dc_test_climo"] = os.path.join( - test_data_prefix2, - "diurnal_climo/20180215.DECKv1b_H1.ne30_oEC.edison/1980-2014/rgr/", - ) - - d["streamflow_obs_ts"] = d["obs_ts"] - d["streamflow_test_ts"] = os.path.join( - test_data_prefix2, - "monthly_ts/20180215.DECKv1b_H1.ne30_oEC.edison/1980-2014/rgr/", - ) - - d["arm_obs"] = os.path.join(ref_data_prefix, "arm-diags-data/") - d["arm_test"] = os.path.join(test_data_prefix, "20210122.F2010.armsites/") - - return run_all_sets(html_prefix, d) - - -def run_all_sets(html_prefix, d): - param = CoreParameter() - - param.reference_data_path = d["obs_climo"] - param.test_data_path = d["test_climo"] - param.test_name = "20161118.beta0.FC5COSP.ne30_ne30.edison" - param.seasons = [ - "ANN", - "JJA", - ] # Default setting: seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] - - param.results_dir = os.path.join(html_prefix, "v2_4_0_all_sets") - param.multiprocessing = True - param.num_workers = 30 - - # Set specific parameters for new sets - enso_param = EnsoDiagsParameter() - enso_param.reference_data_path = d["obs_ts"] - enso_param.test_data_path = d["test_ts"] - enso_param.test_name = "e3sm_v1" - enso_param.start_yr = "1990" - enso_param.end_yr = "1999" - - qbo_param = QboParameter() - qbo_param.reference_data_path = d["obs_ts"] - qbo_param.test_data_path = d["test_ts"] - qbo_param.test_name = "e3sm_v1" - qbo_param.start_yr = "1990" - qbo_param.end_yr = "1999" - - ts_param = AreaMeanTimeSeriesParameter() - ts_param.reference_data_path = d["obs_ts"] - ts_param.test_data_path = d["test_ts"] - ts_param.test_name = "e3sm_v1" - ts_param.start_yr = "1990" - ts_param.end_yr = "1999" - - dc_param = DiurnalCycleParameter() - dc_param.reference_data_path = d["dc_obs_climo"] - dc_param.test_data_path = d["dc_test_climo"] - dc_param.test_name = "20180215.DECKv1b_H1.ne30_oEC.edison" - dc_param.short_test_name = "DECKv1b_H1.ne30_oEC" - # Plotting diurnal cycle amplitude on different scales. Default is True - dc_param.normalize_test_amp = False - - streamflow_param = StreamflowParameter() - streamflow_param.reference_data_path = d["streamflow_obs_ts"] - streamflow_param.test_data_path = d["streamflow_test_ts"] - streamflow_param.test_name = "20180215.DECKv1b_H1.ne30_oEC.edison" - streamflow_param.test_start_yr = "1980" - streamflow_param.test_end_yr = "2014" - # Streamflow gauge station data range from year 1986 to 1995 - streamflow_param.ref_start_yr = "1986" - streamflow_param.ref_end_yr = "1995" - - arm_param = ARMDiagsParameter() - arm_param.reference_data_path = d["arm_obs"] - arm_param.ref_name = "armdiags" - arm_param.test_data_path = d["arm_test"] - arm_param.test_name = "20210122.F2010.armsites" - arm_param.run_type = "model_vs_obs" - arm_param.test_start_yr = "0001" - arm_param.test_end_yr = "0001" - arm_param.ref_start_yr = "0001" - arm_param.ref_end_yr = "0001" - - runner.sets_to_run = [ - "lat_lon", - "zonal_mean_xy", - "zonal_mean_2d", - "polar", - "cosp_histogram", - "meridional_mean_2d", - "enso_diags", - "qbo", - "area_mean_time_series", - "diurnal_cycle", - "streamflow", - "arm_diags", - ] - runner.run_diags( - [param, enso_param, qbo_param, ts_param, dc_param, streamflow_param, arm_param] - ) - - return param.results_dir - - -if __name__ == "__main__": - # Choose the `run` function based on what machine you're on. - # Change - - # Results will be at https://compy-dtn.pnl.gov//v2_4_0_all_sets/viewer/ - # run_compy('/compyfs/www//') - - # Results will be at https://web.lcrc.anl.gov/public/e3sm/diagnostic_output//v2_4_0_all_sets/viewer/ - # run_lcrc('/lcrc/group/e3sm/public_html/diagnostic_output//') - - # Results will be at https://portal.nersc.gov/project/e3sm//v2_4_0_all_sets/viewer/ - run_nersc("/global/cfs/cdirs/e3sm/www//") diff --git a/examples/run_v2_5_0_all_sets_E3SM_machines.py b/examples/run_v2_5_0_all_sets_E3SM_machines.py deleted file mode 100644 index a1e085e52..000000000 --- a/examples/run_v2_5_0_all_sets_E3SM_machines.py +++ /dev/null @@ -1,236 +0,0 @@ -import os - -from acme_diags.parameter.annual_cycle_zonal_mean_parameter import ACzonalmeanParameter -from acme_diags.parameter.area_mean_time_series_parameter import ( - AreaMeanTimeSeriesParameter, -) -from acme_diags.parameter.arm_diags_parameter import ARMDiagsParameter -from acme_diags.parameter.core_parameter import CoreParameter -from acme_diags.parameter.diurnal_cycle_parameter import DiurnalCycleParameter -from acme_diags.parameter.enso_diags_parameter import EnsoDiagsParameter -from acme_diags.parameter.qbo_parameter import QboParameter -from acme_diags.parameter.streamflow_parameter import StreamflowParameter -from acme_diags.parameter.tc_analysis_parameter import TCAnalysisParameter -from acme_diags.run import runner - - -def run_compy(html_prefix): - # Run the following first: - # srun --pty --nodes=1 --time=01:00:00 /bin/bash - # source /share/apps/E3SM/conda_envs/load_latest_e3sm_unified_compy.sh - - ref_data_prefix = "/compyfs/e3sm_diags_data/obs_for_e3sm_diags" - test_data_prefix = "/compyfs/e3sm_diags_data/postprocessed_e3sm_v2_data_for_e3sm_diags/20210528.v2rc3e.piControl.ne30pg2_EC30to60E2r2.chrysalis" - # use highrequency grid box output at ARM sites from another simulation when the output is available - test_data_prefix2 = "/compyfs/e3sm_diags_data/postprocessed_e3sm_v2_data_for_e3sm_diags/20210719.PhaseII.F20TR-P3.NGD.ne30pg2.compy" - - d = dict() - - d["obs_climo"] = os.path.join(ref_data_prefix, "climatology/") - d["test_climo"] = os.path.join(test_data_prefix, "climatology/rgr/") - - d["obs_ts"] = os.path.join(ref_data_prefix, "time-series/") - d["test_ts"] = os.path.join(test_data_prefix, "time-series/rgr/") - - d["dc_obs_climo"] = os.path.join(ref_data_prefix, "climatology/") - d["dc_test_climo"] = os.path.join(test_data_prefix, "diurnal_climatology/rgr") - - d["arm_obs"] = os.path.join(ref_data_prefix, "arm-diags-data/") - d["arm_test"] = os.path.join(test_data_prefix2, "arm-diags-data/") - - d["tc_obs"] = os.path.join(ref_data_prefix, "tc-analysis/") - d["tc_test"] = os.path.join(test_data_prefix, "tc-analysis/") - - return run_all_sets(html_prefix, d) - - -def run_lcrc(html_prefix): - # Run the following first: - # srun --pty --nodes=1 --time=01:00:00 /bin/bash - # source /lcrc/soft/climate/e3sm-unified/load_latest_e3sm_unified_chrysalis.sh - # Or: source /lcrc/soft/climate/e3sm-unified/load_latest_e3sm_unified_anvil.sh - - ref_data_prefix = "/lcrc/group/e3sm/public_html/diagnostics/observations/Atm" - test_data_prefix = "/lcrc/group/e3sm/public_html/e3sm_diags_test_data/postprocessed_e3sm_v2_data_for_e3sm_diags/20210528.v2rc3e.piControl.ne30pg2_EC30to60E2r2.chrysalis" - # use highrequency grid box output at ARM sites from another simulation when the output is available - test_data_prefix2 = "/lcrc/group/e3sm/public_html/e3sm_diags_test_data/postprocessed_e3sm_v2_data_for_e3sm_diags/20210719.PhaseII.F20TR-P3.NGD.ne30pg2.compy" - - d = dict() - - d["obs_climo"] = os.path.join(ref_data_prefix, "climatology/") - d["test_climo"] = os.path.join(test_data_prefix, "climatology/rgr/") - - d["obs_ts"] = os.path.join(ref_data_prefix, "time-series/") - d["test_ts"] = os.path.join(test_data_prefix, "time-series/rgr/") - - d["dc_obs_climo"] = os.path.join(ref_data_prefix, "climatology/") - d["dc_test_climo"] = os.path.join(test_data_prefix, "diurnal_climatology/rgr") - - d["arm_obs"] = os.path.join(ref_data_prefix, "arm-diags-data/") - d["arm_test"] = os.path.join(test_data_prefix2, "arm-diags-data/") - - d["tc_obs"] = os.path.join(ref_data_prefix, "tc-analysis/") - d["tc_test"] = os.path.join(test_data_prefix, "tc-analysis/") - - return run_all_sets(html_prefix, d) - - -def run_nersc(html_prefix): - # Run the following first: - # salloc --nodes=1 --partition=regular --time=01:00:00 -C haswell - # source /global/common/software/e3sm/anaconda_envs/load_latest_e3sm_unified_cori-haswell.sh - ref_data_prefix = "/global/cfs/cdirs/e3sm/e3sm_diags/obs_for_e3sm_diags" - test_data_prefix = "/global/cfs/cdirs/e3sm/e3sm_diags/postprocessed_e3sm_v2_data_for_e3sm_diags/20210528.v2rc3e.piControl.ne30pg2_EC30to60E2r2.chrysalis" - # use highrequency grid box output at ARM sites from another simulation when the output is available - test_data_prefix2 = "/global/cfs/cdirs/e3sm/e3sm_diags/postprocessed_e3sm_v2_data_for_e3sm_diags/20210719.PhaseII.F20TR-P3.NGD.ne30pg2.compy" - - d = dict() - - d["obs_climo"] = os.path.join(ref_data_prefix, "climatology/") - d["test_climo"] = os.path.join(test_data_prefix, "climatology/rgr/") - - d["obs_ts"] = os.path.join(ref_data_prefix, "time-series/") - d["test_ts"] = os.path.join(test_data_prefix, "time-series/rgr/") - - d["dc_obs_climo"] = os.path.join(ref_data_prefix, "climatology/") - d["dc_test_climo"] = os.path.join(test_data_prefix, "diurnal_climatology/rgr") - - d["arm_obs"] = os.path.join(ref_data_prefix, "arm-diags-data/") - d["arm_test"] = os.path.join(test_data_prefix2, "arm-diags-data/") - - d["tc_obs"] = os.path.join(ref_data_prefix, "tc-analysis/") - d["tc_test"] = os.path.join(test_data_prefix, "tc-analysis/") - - return run_all_sets(html_prefix, d) - - -def run_all_sets(html_prefix, d): - param = CoreParameter() - - param.reference_data_path = d["obs_climo"] - param.test_data_path = d["test_climo"] - param.test_name = "20210528.v2rc3e.piControl.ne30pg2_EC30to60E2r2.chrysalis" - param.seasons = [ - "ANN", - "JJA", - ] # Default setting: seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] - - param.results_dir = os.path.join(html_prefix, "v2_5_0_all_sets") - param.multiprocessing = True - param.num_workers = 5 - - # Set specific parameters for new sets - enso_param = EnsoDiagsParameter() - enso_param.reference_data_path = d["obs_ts"] - enso_param.test_data_path = d["test_ts"] - enso_param.test_name = "e3sm_v2" - enso_param.test_start_yr = "0051" - enso_param.test_end_yr = "0060" - # Enso obs data range from year 1979 to 2016 - enso_param.ref_start_yr = "2001" - enso_param.ref_end_yr = "2010" - - qbo_param = QboParameter() - qbo_param.reference_data_path = d["obs_ts"] - qbo_param.test_data_path = d["test_ts"] - qbo_param.test_name = "e3sm_v2" - qbo_param.start_yr = "0051" - qbo_param.end_yr = "0060" - # Qbo obs data range from year 1979 to 2019 - # Number of years of test and ref should match - qbo_param.ref_start_yr = "2001" - qbo_param.ref_end_yr = "2010" - - ts_param = AreaMeanTimeSeriesParameter() - ts_param.reference_data_path = d["obs_ts"] - ts_param.test_data_path = d["test_ts"] - ts_param.test_name = "e3sm_v2" - ts_param.start_yr = "0051" - ts_param.end_yr = "0060" - - dc_param = DiurnalCycleParameter() - dc_param.reference_data_path = d["dc_obs_climo"] - dc_param.test_data_path = d["dc_test_climo"] - dc_param.short_test_name = "e3sm_v2" - # Plotting diurnal cycle amplitude on different scales. Default is True - dc_param.normalize_test_amp = False - - streamflow_param = StreamflowParameter() - streamflow_param.reference_data_path = d["obs_ts"] - streamflow_param.test_data_path = d["test_ts"] - streamflow_param.short_test_name = "e3sm_v2" - streamflow_param.test_start_yr = "0051" - streamflow_param.test_end_yr = "0060" - # Streamflow gauge station data range from year 1986 to 1995 - streamflow_param.ref_start_yr = "1986" - streamflow_param.ref_end_yr = "1995" - - arm_param = ARMDiagsParameter() - arm_param.reference_data_path = d["arm_obs"] - arm_param.ref_name = "armdiags" - arm_param.test_data_path = d["arm_test"] - arm_param.test_name = "e3sm_v2" - arm_param.test_start_yr = "1996" - arm_param.test_end_yr = "2010" - # For model vs obs, the ref start and end year can be any four digit strings for now, will use all available years form obs - arm_param.ref_start_yr = "0001" - arm_param.ref_end_yr = "0001" - - tc_param = TCAnalysisParameter() - tc_param.reference_data_path = d["tc_obs"] - tc_param.test_data_path = d["tc_test"] - tc_param.short_test_name = "e3sm_v2" - tc_param.test_start_yr = "0051" - tc_param.test_end_yr = "0060" - # For model vs obs, the ref start and end year can be any four digit strings for now, use all available years form obs by default - tc_param.ref_start_yr = "1979" - tc_param.ref_end_yr = "2018" - - ac_param = ACzonalmeanParameter() - - runner.sets_to_run = [ - "lat_lon", - "zonal_mean_xy", - "zonal_mean_2d", - "polar", - "cosp_histogram", - "meridional_mean_2d", - "annual_cycle_zonal_mean", - "enso_diags", - "qbo", - "area_mean_time_series", - "diurnal_cycle", - "streamflow", - "arm_diags", - "tc_analysis", - ] - runner.run_diags( - [ - param, - ac_param, - enso_param, - qbo_param, - ts_param, - dc_param, - streamflow_param, - arm_param, - tc_param, - ] - ) - - return param.results_dir - - -if __name__ == "__main__": - # Choose the `run` function based on what machine you're on. - # Change - - # Results will be at https://compy-dtn.pnl.gov//v2_5_0_all_sets/viewer/ - # run_compy('/compyfs/www//') - - # Results will be at https://web.lcrc.anl.gov/public/e3sm/diagnostic_output//v2_5_0_all_sets/viewer/ - # run_lcrc('/lcrc/group/e3sm/public_html/diagnostic_output//') - - # Results will be at https://portal.nersc.gov/project/e3sm//v2_5_0_all_sets/viewer/ - # run_nersc("/global/cfs/cdirs/e3sm/www//") - run_nersc("/global/cfs/cdirs/e3sm/www/chengzhu/v2_5_0") diff --git a/examples/run_v2_6_0_all_sets_E3SM_machines.py b/examples/run_v2_6_0_all_sets_E3SM_machines.py deleted file mode 100644 index b12a09871..000000000 --- a/examples/run_v2_6_0_all_sets_E3SM_machines.py +++ /dev/null @@ -1,240 +0,0 @@ -import os - -from e3sm_diags.parameter.annual_cycle_zonal_mean_parameter import ACzonalmeanParameter -from e3sm_diags.parameter.area_mean_time_series_parameter import ( - AreaMeanTimeSeriesParameter, -) -from e3sm_diags.parameter.arm_diags_parameter import ARMDiagsParameter -from e3sm_diags.parameter.core_parameter import CoreParameter -from e3sm_diags.parameter.diurnal_cycle_parameter import DiurnalCycleParameter -from e3sm_diags.parameter.enso_diags_parameter import EnsoDiagsParameter -from e3sm_diags.parameter.qbo_parameter import QboParameter -from e3sm_diags.parameter.streamflow_parameter import StreamflowParameter -from e3sm_diags.parameter.tc_analysis_parameter import TCAnalysisParameter -from e3sm_diags.parameter.zonal_mean_2d_stratosphere_parameter import ZonalMean2dStratosphereParameter - -from e3sm_diags.run import runner - - -def run_compy(html_prefix): - # Run the following first: - # srun --pty --nodes=1 --time=01:00:00 /bin/bash - # source /share/apps/E3SM/conda_envs/load_latest_e3sm_unified_compy.sh - - ref_data_prefix = "/compyfs/e3sm_diags_data/obs_for_e3sm_diags" - test_data_prefix = "/compyfs/e3sm_diags_data/postprocessed_e3sm_v2_data_for_e3sm_diags/20210528.v2rc3e.piControl.ne30pg2_EC30to60E2r2.chrysalis" - # use highrequency grid box output at ARM sites from another simulation when the output is available - test_data_prefix2 = "/compyfs/e3sm_diags_data/postprocessed_e3sm_v2_data_for_e3sm_diags/20210719.PhaseII.F20TR-P3.NGD.ne30pg2.compy" - - d = dict() - - d["obs_climo"] = os.path.join(ref_data_prefix, "climatology/") - d["test_climo"] = os.path.join(test_data_prefix, "climatology/rgr/") - - d["obs_ts"] = os.path.join(ref_data_prefix, "time-series/") - d["test_ts"] = os.path.join(test_data_prefix, "time-series/rgr/") - - d["dc_obs_climo"] = os.path.join(ref_data_prefix, "climatology/") - d["dc_test_climo"] = os.path.join(test_data_prefix, "diurnal_climatology/rgr") - - d["arm_obs"] = os.path.join(ref_data_prefix, "arm-diags-data/") - d["arm_test"] = os.path.join(test_data_prefix2, "arm-diags-data/") - - d["tc_obs"] = os.path.join(ref_data_prefix, "tc-analysis/") - d["tc_test"] = os.path.join(test_data_prefix, "tc-analysis/") - - return run_all_sets(html_prefix, d) - - -def run_lcrc(html_prefix): - # Run the following first: - # srun --pty --nodes=1 --time=01:00:00 /bin/bash - # source /lcrc/soft/climate/e3sm-unified/load_latest_e3sm_unified_chrysalis.sh - # Or: source /lcrc/soft/climate/e3sm-unified/load_latest_e3sm_unified_anvil.sh - - ref_data_prefix = "/lcrc/group/e3sm/public_html/diagnostics/observations/Atm" - test_data_prefix = "/lcrc/group/e3sm/public_html/e3sm_diags_test_data/postprocessed_e3sm_v2_data_for_e3sm_diags/20210528.v2rc3e.piControl.ne30pg2_EC30to60E2r2.chrysalis" - # use highrequency grid box output at ARM sites from another simulation when the output is available - test_data_prefix2 = "/lcrc/group/e3sm/public_html/e3sm_diags_test_data/postprocessed_e3sm_v2_data_for_e3sm_diags/20210719.PhaseII.F20TR-P3.NGD.ne30pg2.compy" - - d = dict() - - d["obs_climo"] = os.path.join(ref_data_prefix, "climatology/") - d["test_climo"] = os.path.join(test_data_prefix, "climatology/rgr/") - - d["obs_ts"] = os.path.join(ref_data_prefix, "time-series/") - d["test_ts"] = os.path.join(test_data_prefix, "time-series/rgr/") - - d["dc_obs_climo"] = os.path.join(ref_data_prefix, "climatology/") - d["dc_test_climo"] = os.path.join(test_data_prefix, "diurnal_climatology/rgr") - - d["arm_obs"] = os.path.join(ref_data_prefix, "arm-diags-data/") - d["arm_test"] = os.path.join(test_data_prefix2, "arm-diags-data/") - - d["tc_obs"] = os.path.join(ref_data_prefix, "tc-analysis/") - d["tc_test"] = os.path.join(test_data_prefix, "tc-analysis/") - - return run_all_sets(html_prefix, d) - - -def run_nersc(html_prefix): - # Run the following first: - # salloc --nodes=1 --partition=regular --time=01:00:00 -C haswell - # source /global/common/software/e3sm/anaconda_envs/load_latest_e3sm_unified_cori-haswell.sh - ref_data_prefix = "/global/cfs/cdirs/e3sm/e3sm_diags/obs_for_e3sm_diags" - test_data_prefix = "/global/cfs/cdirs/e3sm/e3sm_diags/postprocessed_e3sm_v2_data_for_e3sm_diags/20210528.v2rc3e.piControl.ne30pg2_EC30to60E2r2.chrysalis" - # use highrequency grid box output at ARM sites from another simulation when the output is available - test_data_prefix2 = "/global/cfs/cdirs/e3sm/e3sm_diags/postprocessed_e3sm_v2_data_for_e3sm_diags/20210719.PhaseII.F20TR-P3.NGD.ne30pg2.compy" - - d = dict() - - d["obs_climo"] = os.path.join(ref_data_prefix, "climatology/") - d["test_climo"] = os.path.join(test_data_prefix, "climatology/rgr/") - - d["obs_ts"] = os.path.join(ref_data_prefix, "time-series/") - d["test_ts"] = os.path.join(test_data_prefix, "time-series/rgr/") - - d["dc_obs_climo"] = os.path.join(ref_data_prefix, "climatology/") - d["dc_test_climo"] = os.path.join(test_data_prefix, "diurnal_climatology/rgr") - - d["arm_obs"] = os.path.join(ref_data_prefix, "arm-diags-data/") - d["arm_test"] = os.path.join(test_data_prefix2, "arm-diags-data/") - - d["tc_obs"] = os.path.join(ref_data_prefix, "tc-analysis/") - d["tc_test"] = os.path.join(test_data_prefix, "tc-analysis/") - - return run_all_sets(html_prefix, d) - - -def run_all_sets(html_prefix, d): - param = CoreParameter() - - param.reference_data_path = d["obs_climo"] - param.test_data_path = d["test_climo"] - param.test_name = "20210528.v2rc3e.piControl.ne30pg2_EC30to60E2r2.chrysalis" - param.seasons = [ - "ANN", - "JJA", - ] # Default setting: seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] - - param.results_dir = os.path.join(html_prefix, "v2_6_0_all_sets") - param.multiprocessing = True - param.num_workers = 5 - - # Set specific parameters for new sets - enso_param = EnsoDiagsParameter() - enso_param.reference_data_path = d["obs_ts"] - enso_param.test_data_path = d["test_ts"] - enso_param.test_name = "e3sm_v2" - enso_param.test_start_yr = "0051" - enso_param.test_end_yr = "0060" - # Enso obs data range from year 1979 to 2016 - enso_param.ref_start_yr = "2001" - enso_param.ref_end_yr = "2010" - - qbo_param = QboParameter() - qbo_param.reference_data_path = d["obs_ts"] - qbo_param.test_data_path = d["test_ts"] - qbo_param.test_name = "e3sm_v2" - qbo_param.start_yr = "0051" - qbo_param.end_yr = "0060" - # Qbo obs data range from year 1979 to 2019 - # Number of years of test and ref should match - qbo_param.ref_start_yr = "2001" - qbo_param.ref_end_yr = "2010" - - ts_param = AreaMeanTimeSeriesParameter() - ts_param.reference_data_path = d["obs_ts"] - ts_param.test_data_path = d["test_ts"] - ts_param.test_name = "e3sm_v2" - ts_param.start_yr = "0051" - ts_param.end_yr = "0060" - - dc_param = DiurnalCycleParameter() - dc_param.reference_data_path = d["dc_obs_climo"] - dc_param.test_data_path = d["dc_test_climo"] - dc_param.short_test_name = "e3sm_v2" - # Plotting diurnal cycle amplitude on different scales. Default is True - dc_param.normalize_test_amp = False - - streamflow_param = StreamflowParameter() - streamflow_param.reference_data_path = d["obs_ts"] - streamflow_param.test_data_path = d["test_ts"] - streamflow_param.short_test_name = "e3sm_v2" - streamflow_param.test_start_yr = "0051" - streamflow_param.test_end_yr = "0060" - # Streamflow gauge station data range from year 1986 to 1995 - streamflow_param.ref_start_yr = "1986" - streamflow_param.ref_end_yr = "1995" - - arm_param = ARMDiagsParameter() - arm_param.reference_data_path = d["arm_obs"] - arm_param.ref_name = "armdiags" - arm_param.test_data_path = d["arm_test"] - arm_param.test_name = "e3sm_v2" - arm_param.test_start_yr = "1996" - arm_param.test_end_yr = "2010" - # For model vs obs, the ref start and end year can be any four digit strings for now, will use all available years form obs - arm_param.ref_start_yr = "0001" - arm_param.ref_end_yr = "0001" - - tc_param = TCAnalysisParameter() - tc_param.reference_data_path = d["tc_obs"] - tc_param.test_data_path = d["tc_test"] - tc_param.short_test_name = "e3sm_v2" - tc_param.test_start_yr = "0051" - tc_param.test_end_yr = "0060" - # For model vs obs, the ref start and end year can be any four digit strings for now, use all available years form obs by default - tc_param.ref_start_yr = "1979" - tc_param.ref_end_yr = "2018" - - ac_param = ACzonalmeanParameter() - zm_param = ZonalMean2dStratosphereParameter() - - runner.sets_to_run = [ - "lat_lon", - "zonal_mean_xy", - "zonal_mean_2d", - "zonal_mean_2d_stratosphere", - "polar", - "cosp_histogram", - "meridional_mean_2d", - "annual_cycle_zonal_mean", - "enso_diags", - "qbo", - "area_mean_time_series", - "diurnal_cycle", - "streamflow", - "arm_diags", - "tc_analysis", - ] - runner.run_diags( - [ - param, - zm_param, - ac_param, - enso_param, - qbo_param, - ts_param, - dc_param, - streamflow_param, - arm_param, - tc_param, - ] - ) - - return param.results_dir - - -if __name__ == "__main__": - # Choose the `run` function based on what machine you're on. - # Change - - # Results will be at https://compy-dtn.pnl.gov//v2_5_0_all_sets/viewer/ - # run_compy("/compyfs/www//") - - # Results will be at https://web.lcrc.anl.gov/public/e3sm/diagnostic_output//v2_5_0_all_sets/viewer/ - run_lcrc("/lcrc/group/e3sm/public_html/diagnostic_output//") - - # Results will be at https://portal.nersc.gov/project/e3sm//v2_5_0_all_sets/viewer/ - # run_nersc("/global/cfs/cdirs/e3sm/www//") diff --git a/tests/e3sm_diags/driver/test_lat_lon_driver.py b/tests/e3sm_diags/driver/test_lat_lon_driver.py new file mode 100644 index 000000000..fca03cfe9 --- /dev/null +++ b/tests/e3sm_diags/driver/test_lat_lon_driver.py @@ -0,0 +1,183 @@ +import cftime +import numpy as np +import pytest +import xarray as xr + +from e3sm_diags.driver.lat_lon_driver import _get_ref_climo_dataset +from e3sm_diags.driver.utils.dataset_xr import Dataset +from tests.e3sm_diags.driver.utils.test_dataset_xr import ( + _create_parameter_object, + spatial_bounds, + spatial_coords, +) + + +class TestGetReferenceClimoDataset: + @pytest.fixture(autouse=True) + def setup(self, tmp_path): + # Create temporary directory to save files. + self.data_path = tmp_path / "input_data" + self.data_path.mkdir() + + # Set up climatology dataset and save to a temp file. + self.ds_climo = xr.Dataset( + coords={ + **spatial_coords, + "time": xr.DataArray( + dims="time", + data=np.array( + [ + cftime.DatetimeGregorian( + 2000, 1, 1, 12, 0, 0, 0, has_year_zero=False + ) + ], + dtype="object", + ), + attrs={ + "axis": "T", + "long_name": "time", + "standard_name": "time", + "bounds": "time_bnds", + }, + ), + }, + data_vars={ + **spatial_bounds, + "ts": xr.DataArray( + name="ts", + data=np.array( + [ + [[1.0, 1.0], [1.0, 1.0]], + ] + ), + dims=["time", "lat", "lon"], + ), + }, + ) + self.ds_climo.time.encoding = {"units": "days since 2000-01-01"} + + # Set up time series dataset and save to a temp file. + self.ds_ts = xr.Dataset( + coords={ + "lat": [-90, 90], + "lon": [0, 180], + "time": xr.DataArray( + dims="time", + data=np.array( + [ + cftime.DatetimeGregorian( + 2000, 1, 1, 12, 0, 0, 0, has_year_zero=False + ), + cftime.DatetimeGregorian( + 2000, 2, 1, 12, 0, 0, 0, has_year_zero=False + ), + cftime.DatetimeGregorian( + 2000, 3, 1, 12, 0, 0, 0, has_year_zero=False + ), + cftime.DatetimeGregorian( + 2001, 1, 1, 12, 0, 0, 0, has_year_zero=False + ), + ], + dtype="object", + ), + attrs={ + "axis": "T", + "long_name": "time", + "standard_name": "time", + "bounds": "time_bnds", + }, + ), + }, + data_vars={ + "time_bnds": xr.DataArray( + name="time_bnds", + data=np.array( + [ + [ + cftime.DatetimeGregorian( + 2000, 1, 1, 0, 0, 0, 0, has_year_zero=False + ), + cftime.DatetimeGregorian( + 2000, 2, 1, 0, 0, 0, 0, has_year_zero=False + ), + ], + [ + cftime.DatetimeGregorian( + 2000, 2, 1, 0, 0, 0, 0, has_year_zero=False + ), + cftime.DatetimeGregorian( + 2000, 3, 1, 0, 0, 0, 0, has_year_zero=False + ), + ], + [ + cftime.DatetimeGregorian( + 2000, 3, 1, 0, 0, 0, 0, has_year_zero=False + ), + cftime.DatetimeGregorian( + 2000, 4, 1, 0, 0, 0, 0, has_year_zero=False + ), + ], + [ + cftime.DatetimeGregorian( + 2001, 1, 1, 0, 0, 0, 0, has_year_zero=False + ), + cftime.DatetimeGregorian( + 2001, 2, 1, 0, 0, 0, 0, has_year_zero=False + ), + ], + ], + dtype=object, + ), + dims=["time", "bnds"], + ), + "ts": xr.DataArray( + xr.DataArray( + data=np.array( + [ + [[1.0, 1.0], [1.0, 1.0]], + [[1.0, 1.0], [1.0, 1.0]], + [[1.0, 1.0], [1.0, 1.0]], + [[1.0, 1.0], [1.0, 1.0]], + ] + ), + dims=["time", "lat", "lon"], + ) + ), + }, + ) + self.ds_ts.time.encoding = {"units": "days since 2000-01-01"} + + def test_raises_error_if_dataset_data_type_is_not_ref(self): + parameter = _create_parameter_object( + "test", "climo", self.data_path, "2000", "2001" + ) + parameter.ref_file = "test.nc" + ds = Dataset(parameter, data_type="test") + + with pytest.raises(RuntimeError): + _get_ref_climo_dataset(ds, "ts", "ANN") + + def test_returns_reference_climo_dataset_from_file(self): + parameter = _create_parameter_object( + "ref", "climo", self.data_path, "2000", "2001" + ) + parameter.ref_file = "ref_file.nc" + + self.ds_climo.to_netcdf(f"{self.data_path}/{parameter.ref_file}") + + ds = Dataset(parameter, data_type="ref") + result = _get_ref_climo_dataset(ds, "ts", "ANN") + expected = self.ds_climo.squeeze(dim="time").drop_vars("time") + + xr.testing.assert_identical(result, expected) + + def test_returns_None_if_climo_dataset_not_found(self): + parameter = _create_parameter_object( + "ref", "climo", self.data_path, "2000", "2001" + ) + parameter.ref_file = "ref_file.nc" + ds = Dataset(parameter, data_type="ref") + + result = _get_ref_climo_dataset(ds, "ts", "ANN") + + assert result is None diff --git a/tests/e3sm_diags/driver/utils/test_dataset_xr.py b/tests/e3sm_diags/driver/utils/test_dataset_xr.py index 79bf48770..33e3c9860 100644 --- a/tests/e3sm_diags/driver/utils/test_dataset_xr.py +++ b/tests/e3sm_diags/driver/utils/test_dataset_xr.py @@ -246,180 +246,6 @@ def test_property_is_timeseries_returns_false_and_is_climo_returns_true_for_ref( assert ds.is_climo -class TestGetReferenceClimoDataset: - @pytest.fixture(autouse=True) - def setup(self, tmp_path): - # Create temporary directory to save files. - self.data_path = tmp_path / "input_data" - self.data_path.mkdir() - - # Set up climatology dataset and save to a temp file. - self.ds_climo = xr.Dataset( - coords={ - **spatial_coords, - "time": xr.DataArray( - dims="time", - data=np.array( - [ - cftime.DatetimeGregorian( - 2000, 1, 1, 12, 0, 0, 0, has_year_zero=False - ) - ], - dtype="object", - ), - attrs={ - "axis": "T", - "long_name": "time", - "standard_name": "time", - "bounds": "time_bnds", - }, - ), - }, - data_vars={ - **spatial_bounds, - "ts": xr.DataArray( - name="ts", - data=np.array( - [ - [[1.0, 1.0], [1.0, 1.0]], - ] - ), - dims=["time", "lat", "lon"], - ), - }, - ) - self.ds_climo.time.encoding = {"units": "days since 2000-01-01"} - - # Set up time series dataset and save to a temp file. - self.ds_ts = xr.Dataset( - coords={ - "lat": [-90, 90], - "lon": [0, 180], - "time": xr.DataArray( - dims="time", - data=np.array( - [ - cftime.DatetimeGregorian( - 2000, 1, 1, 12, 0, 0, 0, has_year_zero=False - ), - cftime.DatetimeGregorian( - 2000, 2, 1, 12, 0, 0, 0, has_year_zero=False - ), - cftime.DatetimeGregorian( - 2000, 3, 1, 12, 0, 0, 0, has_year_zero=False - ), - cftime.DatetimeGregorian( - 2001, 1, 1, 12, 0, 0, 0, has_year_zero=False - ), - ], - dtype="object", - ), - attrs={ - "axis": "T", - "long_name": "time", - "standard_name": "time", - "bounds": "time_bnds", - }, - ), - }, - data_vars={ - "time_bnds": xr.DataArray( - name="time_bnds", - data=np.array( - [ - [ - cftime.DatetimeGregorian( - 2000, 1, 1, 0, 0, 0, 0, has_year_zero=False - ), - cftime.DatetimeGregorian( - 2000, 2, 1, 0, 0, 0, 0, has_year_zero=False - ), - ], - [ - cftime.DatetimeGregorian( - 2000, 2, 1, 0, 0, 0, 0, has_year_zero=False - ), - cftime.DatetimeGregorian( - 2000, 3, 1, 0, 0, 0, 0, has_year_zero=False - ), - ], - [ - cftime.DatetimeGregorian( - 2000, 3, 1, 0, 0, 0, 0, has_year_zero=False - ), - cftime.DatetimeGregorian( - 2000, 4, 1, 0, 0, 0, 0, has_year_zero=False - ), - ], - [ - cftime.DatetimeGregorian( - 2001, 1, 1, 0, 0, 0, 0, has_year_zero=False - ), - cftime.DatetimeGregorian( - 2001, 2, 1, 0, 0, 0, 0, has_year_zero=False - ), - ], - ], - dtype=object, - ), - dims=["time", "bnds"], - ), - "ts": xr.DataArray( - xr.DataArray( - data=np.array( - [ - [[1.0, 1.0], [1.0, 1.0]], - [[1.0, 1.0], [1.0, 1.0]], - [[1.0, 1.0], [1.0, 1.0]], - [[1.0, 1.0], [1.0, 1.0]], - ] - ), - dims=["time", "lat", "lon"], - ) - ), - }, - ) - self.ds_ts.time.encoding = {"units": "days since 2000-01-01"} - - def test_raises_error_if_dataset_data_type_is_not_ref(self): - parameter = _create_parameter_object( - "test", "climo", self.data_path, "2000", "2001" - ) - parameter.ref_file = "test.nc" - ds = Dataset(parameter, data_type="test") - - with pytest.raises(RuntimeError): - ds.get_ref_climo_dataset("ts", "ANN", self.ds_climo.copy()) - - def test_returns_reference_climo_dataset_from_file(self): - parameter = _create_parameter_object( - "ref", "climo", self.data_path, "2000", "2001" - ) - parameter.ref_file = "ref_file.nc" - - self.ds_climo.to_netcdf(f"{self.data_path}/{parameter.ref_file}") - - ds = Dataset(parameter, data_type="ref") - result = ds.get_ref_climo_dataset("ts", "ANN", self.ds_climo.copy()) - expected = self.ds_climo.squeeze(dim="time").drop_vars("time") - - xr.testing.assert_identical(result, expected) - assert not ds.model_only - - def test_returns_test_dataset_as_default_value_if_climo_dataset_not_found(self): - parameter = _create_parameter_object( - "ref", "climo", self.data_path, "2000", "2001" - ) - parameter.ref_file = "ref_file.nc" - ds = Dataset(parameter, data_type="ref") - - ds_test = self.ds_climo.copy() - result = ds.get_ref_climo_dataset("ts", "ANN", ds_test) - - assert result.identical(ds_test) - assert ds.model_only - - class TestGetClimoDataset: @pytest.fixture(autouse=True) def setup(self, tmp_path): diff --git a/tests/integration/complete_run.py b/tests/integration/complete_run.py index cd8af9f7e..5d62836c7 100644 --- a/tests/integration/complete_run.py +++ b/tests/integration/complete_run.py @@ -3,6 +3,8 @@ Due to the large amount of data required to run, this test will be run manually on Anvil (rather than as part of the CI tests). +This test should be run with the latest E3SM Diags tutorial code. + Run the following first: - srun --pty --nodes=1 --time=01:00:00 /bin/bash - source /lcrc/soft/climate/e3sm-unified/load_latest_e3sm_unified_chrysalis.sh @@ -10,8 +12,21 @@ """ import os -# This test should be run with the latest E3SM Diags tutorial code. -from examples.run_v2_6_0_all_sets_E3SM_machines import run_lcrc +from e3sm_diags.parameter.annual_cycle_zonal_mean_parameter import ACzonalmeanParameter +from e3sm_diags.parameter.area_mean_time_series_parameter import ( + AreaMeanTimeSeriesParameter, +) +from e3sm_diags.parameter.arm_diags_parameter import ARMDiagsParameter +from e3sm_diags.parameter.core_parameter import CoreParameter +from e3sm_diags.parameter.diurnal_cycle_parameter import DiurnalCycleParameter +from e3sm_diags.parameter.enso_diags_parameter import EnsoDiagsParameter +from e3sm_diags.parameter.qbo_parameter import QboParameter +from e3sm_diags.parameter.streamflow_parameter import StreamflowParameter +from e3sm_diags.parameter.tc_analysis_parameter import TCAnalysisParameter +from e3sm_diags.parameter.zonal_mean_2d_stratosphere_parameter import ( + ZonalMean2dStratosphereParameter, +) +from e3sm_diags.run import runner from tests.integration.utils import _compare_images @@ -39,3 +54,154 @@ def test_complete_run(self): ) assert len(mismatched_images) == 0 + + +def run_lcrc(html_prefix): + # Run the following first: + # srun --pty --nodes=1 --time=01:00:00 /bin/bash + # source /lcrc/soft/climate/e3sm-unified/load_latest_e3sm_unified_chrysalis.sh + # Or: source /lcrc/soft/climate/e3sm-unified/load_latest_e3sm_unified_anvil.sh + + ref_data_prefix = "/lcrc/group/e3sm/public_html/diagnostics/observations/Atm" + test_data_prefix = "/lcrc/group/e3sm/public_html/e3sm_diags_test_data/postprocessed_e3sm_v2_data_for_e3sm_diags/20210528.v2rc3e.piControl.ne30pg2_EC30to60E2r2.chrysalis" + # use highrequency grid box output at ARM sites from another simulation when the output is available + test_data_prefix2 = "/lcrc/group/e3sm/public_html/e3sm_diags_test_data/postprocessed_e3sm_v2_data_for_e3sm_diags/20210719.PhaseII.F20TR-P3.NGD.ne30pg2.compy" + + d = dict() + + d["obs_climo"] = os.path.join(ref_data_prefix, "climatology/") + d["test_climo"] = os.path.join(test_data_prefix, "climatology/rgr/") + + d["obs_ts"] = os.path.join(ref_data_prefix, "time-series/") + d["test_ts"] = os.path.join(test_data_prefix, "time-series/rgr/") + + d["dc_obs_climo"] = os.path.join(ref_data_prefix, "climatology/") + d["dc_test_climo"] = os.path.join(test_data_prefix, "diurnal_climatology/rgr") + + d["arm_obs"] = os.path.join(ref_data_prefix, "arm-diags-data/") + d["arm_test"] = os.path.join(test_data_prefix2, "arm-diags-data/") + + d["tc_obs"] = os.path.join(ref_data_prefix, "tc-analysis/") + d["tc_test"] = os.path.join(test_data_prefix, "tc-analysis/") + + return run_all_sets(html_prefix, d) + + +def run_all_sets(html_prefix, d): + param = CoreParameter() + + param.reference_data_path = d["obs_climo"] + param.test_data_path = d["test_climo"] + param.test_name = "20210528.v2rc3e.piControl.ne30pg2_EC30to60E2r2.chrysalis" + param.seasons = [ + "ANN", + "JJA", + ] # Default setting: seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] + + param.results_dir = os.path.join(html_prefix, "v2_6_0_all_sets") + param.multiprocessing = True + param.num_workers = 5 + + # Set specific parameters for new sets + enso_param = EnsoDiagsParameter() + enso_param.reference_data_path = d["obs_ts"] + enso_param.test_data_path = d["test_ts"] + enso_param.test_name = "e3sm_v2" + enso_param.test_start_yr = "0051" + enso_param.test_end_yr = "0060" + # Enso obs data range from year 1979 to 2016 + enso_param.ref_start_yr = "2001" + enso_param.ref_end_yr = "2010" + + qbo_param = QboParameter() + qbo_param.reference_data_path = d["obs_ts"] + qbo_param.test_data_path = d["test_ts"] + qbo_param.test_name = "e3sm_v2" + qbo_param.start_yr = "0051" + qbo_param.end_yr = "0060" + # Qbo obs data range from year 1979 to 2019 + # Number of years of test and ref should match + qbo_param.ref_start_yr = "2001" + qbo_param.ref_end_yr = "2010" + + ts_param = AreaMeanTimeSeriesParameter() + ts_param.reference_data_path = d["obs_ts"] + ts_param.test_data_path = d["test_ts"] + ts_param.test_name = "e3sm_v2" + ts_param.start_yr = "0051" + ts_param.end_yr = "0060" + + dc_param = DiurnalCycleParameter() + dc_param.reference_data_path = d["dc_obs_climo"] + dc_param.test_data_path = d["dc_test_climo"] + dc_param.short_test_name = "e3sm_v2" + # Plotting diurnal cycle amplitude on different scales. Default is True + dc_param.normalize_test_amp = False + + streamflow_param = StreamflowParameter() + streamflow_param.reference_data_path = d["obs_ts"] + streamflow_param.test_data_path = d["test_ts"] + streamflow_param.short_test_name = "e3sm_v2" + streamflow_param.test_start_yr = "0051" + streamflow_param.test_end_yr = "0060" + # Streamflow gauge station data range from year 1986 to 1995 + streamflow_param.ref_start_yr = "1986" + streamflow_param.ref_end_yr = "1995" + + arm_param = ARMDiagsParameter() + arm_param.reference_data_path = d["arm_obs"] + arm_param.ref_name = "armdiags" + arm_param.test_data_path = d["arm_test"] + arm_param.test_name = "e3sm_v2" + arm_param.test_start_yr = "1996" + arm_param.test_end_yr = "2010" + # For model vs obs, the ref start and end year can be any four digit strings for now, will use all available years form obs + arm_param.ref_start_yr = "0001" + arm_param.ref_end_yr = "0001" + + tc_param = TCAnalysisParameter() + tc_param.reference_data_path = d["tc_obs"] + tc_param.test_data_path = d["tc_test"] + tc_param.short_test_name = "e3sm_v2" + tc_param.test_start_yr = "0051" + tc_param.test_end_yr = "0060" + # For model vs obs, the ref start and end year can be any four digit strings for now, use all available years form obs by default + tc_param.ref_start_yr = "1979" + tc_param.ref_end_yr = "2018" + + ac_param = ACzonalmeanParameter() + zm_param = ZonalMean2dStratosphereParameter() + + runner.sets_to_run = [ + "lat_lon", + "zonal_mean_xy", + "zonal_mean_2d", + "zonal_mean_2d_stratosphere", + "polar", + "cosp_histogram", + "meridional_mean_2d", + "annual_cycle_zonal_mean", + "enso_diags", + "qbo", + "area_mean_time_series", + "diurnal_cycle", + "streamflow", + "arm_diags", + "tc_analysis", + ] + runner.run_diags( + [ + param, + zm_param, + ac_param, + enso_param, + qbo_param, + ts_param, + dc_param, + streamflow_param, + arm_param, + tc_param, + ] + ) + + return param.results_dir