Skip to content
Snippets Groups Projects

Move from .md to .yaml inputs

Merged Florian Ziemen requested to merge md_inputs into main
+ 384
5
%% Cell type:code id: tags:
``` python
import yaml
from pathlib import Path
import re
import logging
import xarray as xr
import warnings
import glob
```
%% Cell type:code id: tags:
``` python
logging.basicConfig()
logger = logging.getLogger("catalog_netcdf")
logger.setLevel(logging.INFO)
warnings.filterwarnings("ignore", category=xr.SerializationWarning)
```
%% Cell type:code id: tags:
``` python
class BadDataset(RuntimeError):
pass
def process_yaml_file(yaml_file: Path):
output_dir = Path("../public") / yaml_file.stem
output_dir.mkdir(exist_ok=True, parents=True)
with open(yaml_file) as infile:
list_of_simulations = yaml.safe_load(infile)
catalog = dict(sources=process_simulations(output_dir, list_of_simulations))
with open(output_dir / Path("main.yaml"), "w") as outfile:
yaml.dump(catalog, outfile)
def process_simulations(output_dir, list_of_simulations):
sources = {}
bad_datasets = {}
for id, properties in list_of_simulations["simulations"].items():
try:
sources[id] = create_entry(id, properties, output_dir)
except BadDataset as bds:
bad_datasets[id] = bds
handle_bad_datasets(bad_datasets)
return sources
def create_entry(id, properties, output_dir: Path):
entry_filename = output_dir / Path(f"{id}.yaml")
entry_content = {"sources": dict()}
filegroups = analyze_dataset(id, properties["path"])
for filegroup, files in filegroups.items():
streams = analyze_dataset(id, properties["path"])
logger.info(f"processing {id} with file streams {sorted(streams.keys())}")
for filegroup, files in streams.items():
entry_content["sources"][filegroup] = create_stream(
files,
properties.get("metadata", dict()),
)
with open(entry_filename, "w") as outfile:
yaml.dump(entry_content, outfile)
entry = dict(
driver="yaml_file_cat",
args=dict(path="{{CATALOG_DIR}}/" + f"{id}.yaml"),
)
if properties.get("description", False):
entry["description"] = properties["description"]
return entry
def handle_bad_datasets(bad_datasets):
if len(bad_datasets):
bad_list = "\n" + "\n".join(f"{k} : {v}" for k, v in bad_datasets.items())
raise BadDataset(
f"Encountered bad Datasets in processing of simulations: {bad_list}"
)
def analyze_dataset(id, input_dir: Path):
files = gen_files(id, input_dir)
id, parts = split_filenamens(id, files)
patterns = get_patterns(parts)
logger.debug(f"{id=} {patterns=}")
filelist = gen_filelist(input_dir, id, patterns)
return filelist
def gen_files(id, input_dir):
search_pattern = str(input_dir / Path(f"{id}*.nc"))
files = glob.glob(search_pattern)
if len(files) == 0:
raise BadDataset(f"Could not find any files for {search_pattern}")
files = [x for x in files if "restart" not in x]
return [Path(x) for x in files]
def split_filenamens(id, files):
stems = list(f.stem for f in files)
parts = [x[len(id) :] for x in stems]
return id, parts
def gen_filelist(input_dir, id, patterns):
filelist = {}
for pattern in patterns:
search_pattern = str(input_dir / Path(f"{id}*{pattern}*.nc"))
filelist[pattern] = list(glob.glob(search_pattern))
if len(filelist[pattern]) == 0:
raise BadDataset(
f"No files found for {id=}, {input_dir=} {search_pattern=}"
)
return filelist
def get_patterns(parts):
patterns = {
re.sub(r"\d{4}-\d{2}-\d{2}_", "", x) for x in parts
} # r'\\d\{4\}-\\d\{2\}-\\d\{2\}'
patterns = {
re.sub(r"\d{8}T\d{6}Z", "", x) for x in patterns
} # r'\\d\{8\}T\\d\{6\}Z'
patterns = {re.sub(r"^_", "", x) for x in patterns}
patterns = {re.sub(r"_$", "", x) for x in patterns}
return patterns
def create_stream(files, metadata):
stream = dict(driver="netcdf")
stream["args"] = dict(
chunks=dict(time=1),
xarray_kwargs=dict(use_cftime=True),
urlpath=[str(x) for x in files],
)
stream["metadata"] = metadata
stream["metadata"] |= get_variable_metadata(files)
return stream
def get_variable_metadata(files):
try:
ds = xr.open_dataset(files[0])
except RuntimeError as e:
raise BadDataset(f"Loading metadata from {files[0]} yielded {e}")
variables = sorted(x for x in ds)
long_names = [ds[x].attrs.get("long_name", x) for x in variables]
return dict(variables=variables, variable_long_names=long_names)
```
%% Cell type:code id: tags:
``` python
yaml_files = sorted(Path("../inputs").glob("*.yaml"))
main_cat = dict(sources=dict())
for yaml_file in yaml_files:
stem = yaml_file.stem
process_yaml_file(yaml_file)
main_cat["sources"][stem] = dict(
driver="yaml_file_cat",
args=dict(path="{{CATALOG_DIR}}/" + f"{stem}/main.yaml"),
)
with open(Path("../public/main.yaml"), "w") as outfile:
yaml.dump(main_cat, outfile)
```
%% Cell type:code id: tags:
%% Output
``` python
```
INFO:catalog_netcdf:processing slo1774 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_mon', 'jsb_2d', 'lnd_mon', 'oce_dbg', 'oce_def', 'oce_fx', 'oce_ice', 'oce_moc', 'oce_mon']
INFO:catalog_netcdf:processing slo1781 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_mon', 'jsb_2d', 'lnd_mon', 'oce_dbg', 'oce_def', 'oce_ice', 'oce_moc', 'oce_mon']
INFO:catalog_netcdf:processing slo1782 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_mon', 'jsb_2d', 'lnd_mon', 'oce_dbg', 'oce_def', 'oce_ice', 'oce_moc', 'oce_mon']
INFO:catalog_netcdf:processing slo1826 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_mon', 'hd_meanflow', 'jsb_2d', 'lnd_mon', 'oce_dbg', 'oce_def', 'oce_fx', 'oce_ice', 'oce_moc', 'oce_mon']
INFO:catalog_netcdf:processing slo1827 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_mon', 'hd_meanflow', 'jsb_2d', 'lnd_mon', 'oce_dbg', 'oce_def', 'oce_ice', 'oce_moc', 'oce_mon']
INFO:catalog_netcdf:processing slo1828 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_mon', 'hd_meanflow', 'jsb_2d', 'lnd_mon', 'oce_dbg', 'oce_def', 'oce_ice', 'oce_moc', 'oce_mon']
INFO:catalog_netcdf:processing tvp1774_001 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_hfreq_inst_ml', 'atm_hfreq_mean_ml', 'atm_mon', 'jsb_2d', 'lnd_mon', 'oce_dbg', 'oce_def', 'oce_ice', 'oce_moc', 'oce_mon']
INFO:catalog_netcdf:processing tvp1774_002 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_hfreq_inst_ml', 'atm_hfreq_mean_ml', 'atm_mon', 'jsb_2d', 'lnd_mon', 'oce_dbg', 'oce_def', 'oce_ice', 'oce_moc', 'oce_mon']
INFO:catalog_netcdf:processing tvp1774_003 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_hfreq_inst_ml', 'atm_hfreq_mean_ml', 'atm_mon', 'jsb_2d', 'lnd_mon', 'oce_dbg', 'oce_def', 'oce_ice', 'oce_moc', 'oce_mon']
INFO:catalog_netcdf:processing tvp1826_001 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_day_pl', 'atm_hfreq_inst_ml', 'atm_hfreq_mean_ml', 'atm_mon', 'hd_meanflow', 'jsb_2d', 'lnd_mon', 'oce_day_pl', 'oce_dbg', 'oce_def', 'oce_ice', 'oce_moc', 'oce_mon']
INFO:catalog_netcdf:processing tvp1826_002 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_day_pl', 'atm_hfreq_inst_ml', 'atm_hfreq_mean_ml', 'atm_mon', 'hd_meanflow', 'jsb_2d', 'lnd_mon', 'oce_day_pl', 'oce_dbg', 'oce_def', 'oce_ice', 'oce_moc', 'oce_mon']
INFO:catalog_netcdf:processing tvp1826_003 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_day_pl', 'atm_hfreq_inst_ml', 'atm_hfreq_mean_ml', 'atm_mon', 'hd_meanflow', 'jsb_2d', 'lnd_mon', 'oce_day_pl', 'oce_dbg', 'oce_def', 'oce_ice', 'oce_moc', 'oce_mon']
INFO:catalog_netcdf:processing dap010_r3b7-r2b9 with file streams ['atm_2d_hfq', 'atm_2d_ml', 'atm_3d_ml', 'atm_mon', 'hd_meanflow', 'lnd_mon', 'oce_kin', 'oce_moc', 'oce_mon', 'oce_qps']
INFO:catalog_netcdf:processing hel24312_r5b7_ctrl with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_mon', 'hd_meanflow', 'oce_fx', 'oce_mon', 'oce_qps']
INFO:catalog_netcdf:processing hel24315_r5b7_ctrl with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_mon', 'hd_meanflow', 'oce_fx', 'oce_mon', 'oce_qps']
INFO:catalog_netcdf:processing hel24316_r5b7_ctrl with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_mon', 'hd_meanflow', 'oce_fx', 'oce_mon', 'oce_qps']
INFO:catalog_netcdf:processing hel24317_r5b7_ctrl with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_mon', 'hd_meanflow', 'oce_fx', 'oce_mon', 'oce_qps']
INFO:catalog_netcdf:processing epoc2_004 with file streams ['atm_mon', 'lnd_mon', 'oce_mon']
INFO:catalog_netcdf:processing epoc2_010 with file streams ['atm_mon', 'lnd_mon', 'oce_mon']
INFO:catalog_netcdf:processing FC001_XPPslo1774 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_mon', 'hamocc', 'hamocc_2d_tendencies', 'hamocc_EU_tendencies', 'hamocc_monitor', 'hamocc_sediment', 'jsb_2d', 'lnd_mon', 'oce_dbg', 'oce_def', 'oce_ice', 'oce_moc', 'oce_mon']
INFO:catalog_netcdf:processing FC04_XPPslo1802 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_mon', 'hamocc', 'hamocc_2d_tendencies', 'hamocc_3d_tendencies', 'hamocc_EU_tendencies', 'hamocc_monitor', 'hamocc_sediment', 'hd_meanflow', 'jsb_2d', 'lnd_mon', 'oce_dbg', 'oce_def', 'oce_ice', 'oce_moc', 'oce_mon', 'oce_ssh', 'oce_zos']
INFO:catalog_netcdf:processing slo1774 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_mon', 'jsb_2d', 'lnd_mon', 'oce_dbg', 'oce_def', 'oce_fx', 'oce_ice', 'oce_moc', 'oce_mon']
INFO:catalog_netcdf:processing slo1802 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_mon', 'hd_meanflow', 'jsb_2d', 'lnd_mon', 'oce_dbg', 'oce_def', 'oce_ice', 'oce_moc', 'oce_mon', 'oce_ssh', 'oce_zos']
INFO:catalog_netcdf:processing dy1001 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1002 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1003 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1004 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1005 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1006 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1007 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1008 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1009 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1010 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1011 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1012 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1013 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1014 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1015 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1016 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1017 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1018 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1019 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1020 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1021 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1022 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1023 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1024 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1025 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1026 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1027 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1028 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1029 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1030 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1031 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1032 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1033 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1034 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1035 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1036 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1037 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1038 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1039 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1040 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1041 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1042 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1043 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1044 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1045 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1046 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1047 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1048 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1049 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1050 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1051 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1052 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1053 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1054 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1055 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1056 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1057 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1058 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1059 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1060 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1061 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1062 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1063 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1064 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1065 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1066 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1067 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1068 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1069 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1070 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1071 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1072 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1073 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1074 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1075 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1076 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1077 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1078 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1079 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1080 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1081 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1082 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1083 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1084 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1085 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1086 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1087 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1088 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1089 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1090 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1091 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1092 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1093 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1094 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1095 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1096 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1097 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1098 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1099 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1100 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1101 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1102 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1103 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1104 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1105 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1106 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1107 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1108 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1109 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1110 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1111 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1112 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1113 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1114 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1115 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1116 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1117 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1118 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1119 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1120 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1121 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1122 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1123 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1124 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1125 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1126 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1127 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1128 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1129 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1130 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1131 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1132 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1133 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1134 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1135 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1136 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1137 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1138 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1139 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1140 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1141 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1142 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1143 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1144 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1145 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1146 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1147 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1148 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1149 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1150 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_mon', 'jsb_2d', 'lnd_mon', 'oce_dbg', 'oce_def', 'oce_ice', 'oce_moc', 'oce_mon']
INFO:catalog_netcdf:processing dy1150_cmip with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_mon', 'jsb_2d', 'lnd_mon', 'oce_dbg', 'oce_def', 'oce_ice', 'oce_moc', 'oce_mon']
INFO:catalog_netcdf:processing dy1151 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_mon', 'jsb_2d', 'lnd_mon', 'oce_dbg', 'oce_def', 'oce_ice', 'oce_moc', 'oce_mon']
INFO:catalog_netcdf:processing dy1151_cmip with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_mon', 'jsb_2d', 'lnd_mon', 'oce_dbg', 'oce_def', 'oce_ice', 'oce_moc', 'oce_mon']
INFO:catalog_netcdf:processing dy1152 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_mon', 'jsb_2d', 'lnd_mon', 'oce_dbg', 'oce_def', 'oce_ice', 'oce_moc', 'oce_mon']
INFO:catalog_netcdf:processing dy1152_cmip with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_mon', 'jsb_2d', 'lnd_mon', 'oce_dbg', 'oce_def', 'oce_ice', 'oce_moc', 'oce_mon']
INFO:catalog_netcdf:processing dy1153_cmip with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_mon', 'jsb_2d', 'lnd_mon', 'oce_dbg', 'oce_def', 'oce_ice', 'oce_moc', 'oce_mon']
INFO:catalog_netcdf:processing dy1154 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1155 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1156 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1157 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1158 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1159 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1160 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1161 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1162 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1163 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1164 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1165 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1166 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1167 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1168 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1169 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1170 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1171 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1172 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1173 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1174 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1175 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1176 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1177 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1178 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1179 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1180 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1181 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1182 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1183 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1184 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1185 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1186 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1187 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1188 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1189 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1190 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1191 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1192 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1193 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1194 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1195 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1196 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1197 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1198 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1199 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1200 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1201 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1202 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1203 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1204 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1205 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1206 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1207 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1208 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1209 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1210 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1211 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1212 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1213 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1214 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1215 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1216 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1217 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1218 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1219 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1220 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1221 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1222 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1223 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1224 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1225 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1226 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1227 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1228 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1229 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1230 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1231 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1232 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1233 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1234 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1235 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1236 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1237 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1238 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1239 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1240 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1241 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1242 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1243 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1244 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1245 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1246 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1247 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1248 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1249 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1250 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1251 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1252 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1253 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1254 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1255 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1256 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1257 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1258 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1259 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1260 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1261 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1262_cmip with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_mon', 'jsb_2d', 'lnd_mon', 'oce_dbg', 'oce_def', 'oce_ice', 'oce_moc', 'oce_mon']
INFO:catalog_netcdf:processing dy1263_cmip with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_mon', 'jsb_2d', 'lnd_mon', 'oce_dbg', 'oce_def', 'oce_ice', 'oce_moc', 'oce_mon']
INFO:catalog_netcdf:processing dy1264_cmip with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_mon', 'jsb_2d', 'lnd_mon', 'oce_dbg', 'oce_def', 'oce_ice', 'oce_moc', 'oce_mon']
INFO:catalog_netcdf:processing dy1265_cmip with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_mon', 'jsb_2d', 'lnd_mon', 'oce_dbg', 'oce_def', 'oce_ice', 'oce_moc', 'oce_mon']
INFO:catalog_netcdf:processing dy1267_cmip with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_mon', 'jsb_2d', 'lnd_mon', 'oce_dbg', 'oce_def', 'oce_ice', 'oce_moc', 'oce_mon']
INFO:catalog_netcdf:processing dy1269 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1270 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1272 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1274_cmip with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_mon', 'jsb_2d', 'lnd_mon', 'oce_dbg', 'oce_def', 'oce_ice', 'oce_moc', 'oce_mon']
INFO:catalog_netcdf:processing dy1275_cmip with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_mon', 'jsb_2d', 'lnd_mon', 'oce_dbg', 'oce_def', 'oce_ice', 'oce_moc', 'oce_mon']
INFO:catalog_netcdf:processing dy1276_cmip with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_mon', 'jsb_2d', 'lnd_mon', 'oce_dbg', 'oce_def', 'oce_ice', 'oce_moc', 'oce_mon']
INFO:catalog_netcdf:processing dy1277_cmip with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_mon', 'jsb_2d', 'lnd_mon', 'oce_dbg', 'oce_def', 'oce_ice', 'oce_moc', 'oce_mon']
INFO:catalog_netcdf:processing dy1278_cmip with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_mon', 'jsb_2d', 'lnd_mon', 'oce_dbg', 'oce_def', 'oce_ice', 'oce_moc', 'oce_mon']
INFO:catalog_netcdf:processing dy1279_cmip with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_mon', 'jsb_2d', 'lnd_mon', 'oce_dbg', 'oce_def', 'oce_ice', 'oce_moc', 'oce_mon']
INFO:catalog_netcdf:processing dy1280_cmip with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_mon', 'jsb_2d', 'lnd_mon', 'oce_dbg', 'oce_def', 'oce_ice', 'oce_moc', 'oce_mon']
INFO:catalog_netcdf:processing dy1281_cmip with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_mon', 'jsb_2d', 'lnd_mon', 'oce_dbg', 'oce_def', 'oce_ice', 'oce_moc', 'oce_mon']
INFO:catalog_netcdf:processing dy1282_cmip with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_mon', 'jsb_2d', 'lnd_mon', 'oce_dbg', 'oce_def', 'oce_ice', 'oce_moc', 'oce_mon']
INFO:catalog_netcdf:processing dy1283_cmip with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_mon', 'jsb_2d', 'lnd_mon', 'oce_dbg', 'oce_def', 'oce_ice', 'oce_moc', 'oce_mon']
INFO:catalog_netcdf:processing dy1284_cmip with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_mon', 'jsb_2d', 'lnd_mon', 'oce_dbg', 'oce_def', 'oce_ice', 'oce_moc', 'oce_mon']
INFO:catalog_netcdf:processing dy1285_cmip with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_mon', 'jsb_2d', 'lnd_mon', 'oce_dbg', 'oce_def', 'oce_ice', 'oce_moc', 'oce_mon']
INFO:catalog_netcdf:processing dy1286 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1287 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1288 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1289 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1290 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1291 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1292 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1293 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1294 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1295 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1296 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1297 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1298 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1299 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1300 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1301_cmip with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_mon', 'jsb_2d', 'lnd_mon', 'oce_dbg', 'oce_def', 'oce_ice', 'oce_moc', 'oce_mon']
INFO:catalog_netcdf:processing dy1302_cmip with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_mon', 'jsb_2d', 'lnd_mon', 'oce_dbg', 'oce_def', 'oce_ice', 'oce_moc', 'oce_mon']
INFO:catalog_netcdf:processing dy1303_cmip with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_mon', 'jsb_2d', 'lnd_mon', 'oce_dbg', 'oce_def', 'oce_ice', 'oce_moc', 'oce_mon']
INFO:catalog_netcdf:processing dy1304_cmip with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_mon', 'jsb_2d', 'lnd_mon', 'oce_dbg', 'oce_def', 'oce_ice', 'oce_moc', 'oce_mon']
INFO:catalog_netcdf:processing dy1305_cmip with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_mon', 'jsb_2d', 'lnd_mon', 'oce_dbg', 'oce_def', 'oce_ice', 'oce_moc', 'oce_mon']
INFO:catalog_netcdf:processing dy1306_cmip with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_mon', 'jsb_2d', 'lnd_mon', 'oce_dbg', 'oce_def', 'oce_ice', 'oce_moc', 'oce_mon']
INFO:catalog_netcdf:processing dy1307_cmip with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_mon', 'jsb_2d', 'lnd_mon', 'oce_dbg', 'oce_def', 'oce_ice', 'oce_moc', 'oce_mon']
INFO:catalog_netcdf:processing dy1308_cmip with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_mon', 'jsb_2d', 'lnd_mon', 'oce_dbg', 'oce_def', 'oce_ice', 'oce_moc', 'oce_mon']
INFO:catalog_netcdf:processing dy1309_cmip with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_mon', 'jsb_2d', 'lnd_mon', 'oce_dbg', 'oce_def', 'oce_ice', 'oce_moc', 'oce_mon']
INFO:catalog_netcdf:processing dy1310_cmip with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_mon', 'jsb_2d', 'lnd_mon', 'oce_dbg', 'oce_def', 'oce_ice', 'oce_moc', 'oce_mon']
INFO:catalog_netcdf:processing dy1311_cmip with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_mon', 'jsb_2d', 'lnd_mon', 'oce_dbg', 'oce_def', 'oce_ice', 'oce_moc', 'oce_mon']
INFO:catalog_netcdf:processing dy1312_cmip with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_mon', 'jsb_2d', 'lnd_mon', 'oce_dbg', 'oce_def', 'oce_ice', 'oce_moc', 'oce_mon']
INFO:catalog_netcdf:processing dy1313_cmip with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_mon', 'jsb_2d', 'lnd_mon', 'oce_dbg', 'oce_def', 'oce_ice', 'oce_moc', 'oce_mon']
INFO:catalog_netcdf:processing dy1314_cmip with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_mon', 'jsb_2d', 'lnd_mon', 'oce_dbg', 'oce_def', 'oce_ice', 'oce_moc', 'oce_mon']
INFO:catalog_netcdf:processing dy1315_cmip with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_mon', 'jsb_2d', 'lnd_mon', 'oce_dbg', 'oce_def', 'oce_ice', 'oce_moc', 'oce_mon']
INFO:catalog_netcdf:processing dy1316_cmip with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_mon', 'jsb_2d', 'lnd_mon', 'oce_dbg', 'oce_def', 'oce_ice', 'oce_moc', 'oce_mon']
INFO:catalog_netcdf:processing dy1317_cmip with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_mon', 'jsb_2d', 'lnd_mon', 'oce_dbg', 'oce_def', 'oce_ice', 'oce_moc', 'oce_mon']
INFO:catalog_netcdf:processing dy1318_cmip with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_mon', 'jsb_2d', 'lnd_mon', 'oce_dbg', 'oce_def', 'oce_ice', 'oce_moc', 'oce_mon']
INFO:catalog_netcdf:processing dy1319_cmip with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_mon', 'jsb_2d', 'lnd_mon', 'oce_dbg', 'oce_def', 'oce_ice', 'oce_moc', 'oce_mon']
INFO:catalog_netcdf:processing dy1320_cmip with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_mon', 'jsb_2d', 'lnd_mon', 'oce_dbg', 'oce_def', 'oce_ice', 'oce_moc', 'oce_mon']
INFO:catalog_netcdf:processing dy1321_cmip with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_mon', 'jsb_2d', 'lnd_mon', 'oce_dbg', 'oce_def', 'oce_ice', 'oce_moc', 'oce_mon']
INFO:catalog_netcdf:processing dy1322_cmip with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_mon', 'jsb_2d', 'lnd_mon', 'oce_dbg', 'oce_def', 'oce_ice', 'oce_moc', 'oce_mon']
INFO:catalog_netcdf:processing dy1323_cmip with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_mon', 'jsb_2d', 'lnd_mon', 'oce_dbg', 'oce_def', 'oce_ice', 'oce_moc', 'oce_mon']
INFO:catalog_netcdf:processing dy1340_cmip with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_mon', 'jsb_2d', 'lnd_mon', 'oce_dbg', 'oce_def', 'oce_ice', 'oce_moc', 'oce_mon']
INFO:catalog_netcdf:processing dy1341_cmip with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_mon', 'jsb_2d', 'lnd_mon', 'oce_dbg', 'oce_def', 'oce_ice', 'oce_moc', 'oce_mon']
INFO:catalog_netcdf:processing dy1342_cmip with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_mon', 'jsb_2d', 'lnd_mon', 'oce_dbg', 'oce_def', 'oce_ice', 'oce_moc', 'oce_mon']
INFO:catalog_netcdf:processing dy1343_cmip with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_mon', 'jsb_2d', 'lnd_mon', 'oce_dbg', 'oce_def', 'oce_ice', 'oce_moc', 'oce_mon']
INFO:catalog_netcdf:processing dy1344_cmip with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_mon', 'jsb_2d', 'lnd_mon', 'oce_dbg', 'oce_def', 'oce_ice', 'oce_moc', 'oce_mon']
INFO:catalog_netcdf:processing dy1345_cmip with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_mon', 'jsb_2d', 'lnd_mon', 'oce_dbg', 'oce_def', 'oce_ice', 'oce_moc', 'oce_mon']
INFO:catalog_netcdf:processing dy1354_cmip with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_mon', 'jsb_2d', 'lnd_mon', 'oce_dbg', 'oce_def', 'oce_ice', 'oce_moc', 'oce_mon']
INFO:catalog_netcdf:processing dy1355_cmip with file streams ['oce_dbg', 'oce_def', 'oce_ice', 'oce_moc', 'oce_mon']
INFO:catalog_netcdf:processing dy1356_cmip with file streams ['oce_dbg', 'oce_def', 'oce_ice', 'oce_moc', 'oce_mon']
INFO:catalog_netcdf:processing dy1357_cmip with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_mon', 'jsb_2d', 'lnd_mon', 'oce_dbg', 'oce_def', 'oce_ice', 'oce_moc', 'oce_mon']
INFO:catalog_netcdf:processing dy1358_cmip with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_mon', 'jsb_2d', 'lnd_mon', 'oce_dbg', 'oce_def', 'oce_ice', 'oce_moc', 'oce_mon']
INFO:catalog_netcdf:processing dy1359_cmip with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_mon', 'jsb_2d', 'lnd_mon', 'oce_dbg', 'oce_def', 'oce_ice', 'oce_moc', 'oce_mon']
INFO:catalog_netcdf:processing dy1360_cmip with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_mon', 'jsb_2d', 'lnd_mon', 'oce_dbg', 'oce_def', 'oce_ice', 'oce_moc', 'oce_mon']
INFO:catalog_netcdf:processing dy1361 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1364 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1365 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1366_cmip with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_mon', 'jsb_2d', 'lnd_mon', 'oce_dbg', 'oce_def', 'oce_ice', 'oce_moc', 'oce_mon']
INFO:catalog_netcdf:processing dy1367_cmip with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_mon', 'jsb_2d', 'lnd_mon', 'oce_dbg', 'oce_def', 'oce_ice', 'oce_moc', 'oce_mon']
INFO:catalog_netcdf:processing dy1368 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1369 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1370_cmip with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso', 'atm_mon', 'jsb_2d', 'lnd_mon', 'oce_dbg', 'oce_def', 'oce_ice', 'oce_moc', 'oce_mon']
INFO:catalog_netcdf:processing dy1371_cmip with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_mon', 'jsb_2d', 'lnd_mon', 'oce_dbg', 'oce_def', 'oce_ice', 'oce_moc', 'oce_mon']
INFO:catalog_netcdf:processing dy1372_cmip with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso', 'atm_mon', 'enso', 'enso_1x1', 'jsb_2d', 'lnd_mon', 'oce_dbg', 'oce_def', 'oce_ice', 'oce_moc', 'oce_mon']
INFO:catalog_netcdf:processing dy1373_cmip with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso', 'atm_mon', 'enso', 'enso_1x1', 'jsb_2d', 'lnd_mon', 'oce_dbg', 'oce_def', 'oce_ice', 'oce_moc', 'oce_mon']
INFO:catalog_netcdf:processing dy1374_cmip with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso', 'atm_mon', 'enso', 'enso_1x1', 'jsb_2d', 'lnd_mon', 'oce_dbg', 'oce_def', 'oce_ice', 'oce_moc', 'oce_mon']
INFO:catalog_netcdf:processing dy1375_cmip with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso', 'atm_mon', 'enso', 'enso_1x1', 'jsb_2d', 'lnd_mon', 'oce_dbg', 'oce_def', 'oce_ice', 'oce_moc', 'oce_mon']
INFO:catalog_netcdf:processing dy1376 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1377 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1378 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1379 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1380 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing dy1381 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_enso_ml', 'atm_enso_ml_1x1', 'atm_mon_ml', 'atm_tend_gwd_3d_ml', 'atm_w_ml', 'pres_ml', 'rho_ml', 'temp_ml', 'u_ml', 'v_ml', 'w_ml', 'z_ifc_ml', 'z_mc_ml']
INFO:catalog_netcdf:processing mss0008_r5b8_ctrl with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_mon', 'hd_meanflow', 'oce_flx', 'oce_mon', 'oce_qps', 'oce_tke']
INFO:catalog_netcdf:processing mss0009_r5b8 with file streams ['atm_2d_ml', 'atm_3d_ml', 'atm_mon', 'hd_meanflow', 'oce_flx', 'oce_mon', 'oce_qps', 'oce_tke']
Loading